
/* 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_84c4b048617a.woff")format("woff");}.ff1{font-family:ff1;line-height:0.965000;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_202dd02f48b5.woff")format("woff");}.ff2{font-family:ff2;line-height:1.015000;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_9217a003764c.woff")format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_e235ae8c6844.woff")format("woff");}.ff4{font-family:ff4;line-height:0.418000;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_c53891c7d4af.woff")format("woff");}.ff5{font-family:ff5;line-height:0.946021;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_0f7a0e7108ef.woff")format("woff");}.ff6{font-family:ff6;line-height:0.973000;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_c4d6b1ebbbdc.woff")format("woff");}.ff7{font-family:ff7;line-height:0.799000;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_43c832246e3e.woff")format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_2313df3a93b3.woff")format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_8413738fc5c7.woff")format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_8392116a78f7.woff")format("woff");}.ffb{font-family:ffb;line-height:0.978000;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_b67b76c0ec63.woff")format("woff");}.ffc{font-family:ffc;line-height:0.998000;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_559f425bba29.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_50cc542c0d14.woff")format("woff");}.ffe{font-family:ffe;line-height:0.663000;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_f95bed646d81.woff")format("woff");}.fff{font-family:fff;line-height:0.922000;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_36ce4a6229c8.woff")format("woff");}.ff10{font-family:ff10;line-height:0.590000;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_bf1e6e5a3b4d.woff")format("woff");}.ff11{font-family:ff11;line-height:2.999000;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_4d8aa1cec6f6.woff")format("woff");}.ff12{font-family:ff12;line-height:0.656000;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_b9fba90e7371.woff")format("woff");}.ff13{font-family:ff13;line-height:0.031000;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);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v9{vertical-align:-46.261800px;}
.vc{vertical-align:-19.389000px;}
.vf{vertical-align:-17.348400px;}
.v7{vertical-align:-11.225400px;}
.v4{vertical-align:-7.484400px;}
.v5{vertical-align:-6.462600px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.021486px;}
.v3{vertical-align:4.079949px;}
.v2{vertical-align:5.103000px;}
.v1{vertical-align:12.243600px;}
.vb{vertical-align:13.267034px;}
.va{vertical-align:14.968800px;}
.v6{vertical-align:19.737000px;}
.ve{vertical-align:21.430200px;}
.v8{vertical-align:46.261800px;}
.ls19{letter-spacing:-2.068774px;}
.ls1a{letter-spacing:-2.063974px;}
.ls2f{letter-spacing:-1.749600px;}
.ls3b{letter-spacing:-1.717200px;}
.ls3f{letter-spacing:-1.711800px;}
.ls34{letter-spacing:-1.674000px;}
.ls3a{letter-spacing:-1.668600px;}
.ls3d{letter-spacing:-1.625400px;}
.ls37{letter-spacing:-1.555200px;}
.ls31{letter-spacing:-1.549800px;}
.ls38{letter-spacing:-1.544400px;}
.ls32{letter-spacing:-1.518997px;}
.ls33{letter-spacing:-1.517400px;}
.ls2e{letter-spacing:-1.512000px;}
.ls35{letter-spacing:-1.506600px;}
.ls36{letter-spacing:-1.495800px;}
.ls5e{letter-spacing:-1.490400px;}
.ls3c{letter-spacing:-1.485000px;}
.ls5c{letter-spacing:-1.441800px;}
.ls39{letter-spacing:-1.377000px;}
.ls5d{letter-spacing:-1.371600px;}
.ls5a{letter-spacing:-1.339200px;}
.ls5b{letter-spacing:-1.328400px;}
.ls59{letter-spacing:-1.323000px;}
.ls30{letter-spacing:-1.216638px;}
.ls29{letter-spacing:-1.209600px;}
.ls13{letter-spacing:-1.150200px;}
.ls61{letter-spacing:-1.144800px;}
.ls16{letter-spacing:-1.139400px;}
.ls64{letter-spacing:-1.117800px;}
.ls28{letter-spacing:-1.112400px;}
.ls60{letter-spacing:-1.036800px;}
.ls2b{letter-spacing:-1.031400px;}
.ls6c{letter-spacing:-1.026000px;}
.ls66{letter-spacing:-0.999000px;}
.ls63{letter-spacing:-0.993600px;}
.ls65{letter-spacing:-0.988200px;}
.ls45{letter-spacing:-0.972000px;}
.ls62{letter-spacing:-0.950400px;}
.ls17{letter-spacing:-0.945000px;}
.ls14{letter-spacing:-0.939600px;}
.ls12{letter-spacing:-0.917878px;}
.lsa{letter-spacing:-0.914278px;}
.ls44{letter-spacing:-0.912600px;}
.lse{letter-spacing:-0.869400px;}
.ls69{letter-spacing:-0.864000px;}
.ls10{letter-spacing:-0.858600px;}
.ls2a{letter-spacing:-0.842400px;}
.ls7d{letter-spacing:-0.831600px;}
.ls58{letter-spacing:-0.815400px;}
.lsb{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.804600px;}
.ls41{letter-spacing:-0.799200px;}
.ls2c{letter-spacing:-0.793800px;}
.ls43{letter-spacing:-0.788400px;}
.ls7b{letter-spacing:-0.777600px;}
.ls18{letter-spacing:-0.772200px;}
.lsc{letter-spacing:-0.766800px;}
.ls7e{letter-spacing:-0.759780px;}
.ls6d{letter-spacing:-0.756000px;}
.ls68{letter-spacing:-0.745200px;}
.ls40{letter-spacing:-0.734400px;}
.lsd{letter-spacing:-0.696600px;}
.ls2d{letter-spacing:-0.691200px;}
.ls11{letter-spacing:-0.615518px;}
.lsf{letter-spacing:-0.611918px;}
.ls7{letter-spacing:-0.003600px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003200px;}
.ls85{letter-spacing:0.004192px;}
.ls74{letter-spacing:0.004200px;}
.ls6f{letter-spacing:0.005400px;}
.ls8a{letter-spacing:0.007661px;}
.ls72{letter-spacing:0.007800px;}
.ls27{letter-spacing:0.039920px;}
.ls21{letter-spacing:0.048600px;}
.ls77{letter-spacing:0.067200px;}
.ls81{letter-spacing:0.079576px;}
.ls25{letter-spacing:0.097187px;}
.ls56{letter-spacing:0.115199px;}
.ls24{letter-spacing:0.124200px;}
.ls52{letter-spacing:0.129000px;}
.ls1f{letter-spacing:0.147420px;}
.ls8d{letter-spacing:0.153598px;}
.ls82{letter-spacing:0.227233px;}
.ls4d{letter-spacing:0.259200px;}
.ls93{letter-spacing:0.361800px;}
.ls97{letter-spacing:0.421200px;}
.ls94{letter-spacing:0.491400px;}
.ls98{letter-spacing:0.529200px;}
.ls96{letter-spacing:0.540000px;}
.ls95{letter-spacing:0.545400px;}
.ls54{letter-spacing:0.550800px;}
.ls9b{letter-spacing:0.553493px;}
.ls91{letter-spacing:0.556200px;}
.ls92{letter-spacing:0.588600px;}
.ls9a{letter-spacing:0.629992px;}
.ls9d{letter-spacing:0.670491px;}
.ls9e{letter-spacing:0.706491px;}
.lsa0{letter-spacing:0.719990px;}
.ls73{letter-spacing:2.983200px;}
.ls70{letter-spacing:2.983800px;}
.ls89{letter-spacing:3.010820px;}
.ls1{letter-spacing:3.861000px;}
.ls2{letter-spacing:3.974400px;}
.ls53{letter-spacing:4.230600px;}
.ls4e{letter-spacing:4.633200px;}
.ls90{letter-spacing:7.939101px;}
.ls99{letter-spacing:8.049499px;}
.ls76{letter-spacing:8.089200px;}
.ls51{letter-spacing:8.764200px;}
.ls50{letter-spacing:9.104400px;}
.ls7f{letter-spacing:9.163800px;}
.ls71{letter-spacing:9.228600px;}
.ls8c{letter-spacing:10.319871px;}
.ls8e{letter-spacing:10.516669px;}
.ls88{letter-spacing:10.660667px;}
.ls87{letter-spacing:10.857464px;}
.ls1c{letter-spacing:11.826000px;}
.ls23{letter-spacing:11.827380px;}
.ls20{letter-spacing:11.827980px;}
.ls22{letter-spacing:11.890800px;}
.ls1e{letter-spacing:12.166200px;}
.ls1d{letter-spacing:12.168180px;}
.ls1b{letter-spacing:12.231000px;}
.ls75{letter-spacing:12.544200px;}
.ls46{letter-spacing:12.997800px;}
.ls84{letter-spacing:13.041437px;}
.ls80{letter-spacing:13.305600px;}
.ls0{letter-spacing:13.484875px;}
.ls4{letter-spacing:13.737600px;}
.ls4a{letter-spacing:14.887800px;}
.ls79{letter-spacing:15.228000px;}
.ls3e{letter-spacing:15.341400px;}
.ls6a{letter-spacing:15.832800px;}
.ls47{letter-spacing:16.200000px;}
.ls49{letter-spacing:16.540200px;}
.ls6e{letter-spacing:16.594200px;}
.ls55{letter-spacing:16.880400px;}
.ls83{letter-spacing:16.973287px;}
.ls7c{letter-spacing:17.139600px;}
.ls86{letter-spacing:17.653087px;}
.ls8b{letter-spacing:17.653687px;}
.ls8f{letter-spacing:18.658220px;}
.ls5f{letter-spacing:18.694800px;}
.ls78{letter-spacing:18.971400px;}
.ls26{letter-spacing:19.310400px;}
.ls4f{letter-spacing:19.602000px;}
.ls5{letter-spacing:20.013562px;}
.ls48{letter-spacing:20.023200px;}
.ls42{letter-spacing:20.822400px;}
.ls9c{letter-spacing:21.145218px;}
.ls67{letter-spacing:21.416400px;}
.ls57{letter-spacing:22.766115px;}
.ls6b{letter-spacing:23.263200px;}
.ls7a{letter-spacing:23.392980px;}
.ls3{letter-spacing:23.731618px;}
.ls9f{letter-spacing:23.872182px;}
.ls15{letter-spacing:30.942000px;}
.ls4b{letter-spacing:54.070200px;}
.ls4c{letter-spacing:92.269800px;}
.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;}
}
.ws4c{word-spacing:-30.996000px;}
.ws23e{word-spacing:-23.917181px;}
.ws11c{word-spacing:-23.317200px;}
.wsfb{word-spacing:-21.470400px;}
.ws239{word-spacing:-21.190217px;}
.ws9c{word-spacing:-20.876400px;}
.wsd3{word-spacing:-18.748800px;}
.ws14a{word-spacing:-17.193600px;}
.ws118{word-spacing:-15.886800px;}
.ws8a{word-spacing:-15.395400px;}
.ws141{word-spacing:-14.941800px;}
.ws186{word-spacing:-13.359600px;}
.wsb2{word-spacing:-13.051800px;}
.ws243{word-spacing:-0.598492px;}
.ws3{word-spacing:-0.054000px;}
.ws2b{word-spacing:-0.047999px;}
.ws1b8{word-spacing:-0.044999px;}
.ws83{word-spacing:-0.037800px;}
.ws226{word-spacing:-0.033599px;}
.wsb{word-spacing:-0.032396px;}
.ws22e{word-spacing:-0.031995px;}
.ws5a{word-spacing:0.000000px;}
.ws40{word-spacing:0.575923px;}
.ws6a{word-spacing:0.579523px;}
.ws103{word-spacing:0.642600px;}
.ws10d{word-spacing:0.691200px;}
.wsfe{word-spacing:0.718200px;}
.wsa2{word-spacing:0.734400px;}
.wsd9{word-spacing:0.756000px;}
.ws3f{word-spacing:0.815400px;}
.ws39{word-spacing:0.878283px;}
.ws48{word-spacing:0.881882px;}
.ws4b{word-spacing:0.885600px;}
.wsdc{word-spacing:0.982800px;}
.ws82{word-spacing:1.323000px;}
.ws7b{word-spacing:1.463400px;}
.ws86{word-spacing:1.614600px;}
.ws85{word-spacing:1.663200px;}
.ws55{word-spacing:2.015975px;}
.ws53{word-spacing:2.020775px;}
.ws198{word-spacing:7.382308px;}
.ws12d{word-spacing:7.723103px;}
.ws223{word-spacing:8.063899px;}
.wsa7{word-spacing:8.094600px;}
.wsc5{word-spacing:8.434800px;}
.ws142{word-spacing:8.883000px;}
.ws120{word-spacing:9.477000px;}
.wsa5{word-spacing:9.784800px;}
.ws11e{word-spacing:10.146600px;}
.wsd4{word-spacing:10.157400px;}
.ws7f{word-spacing:10.524600px;}
.ws89{word-spacing:10.659600px;}
.ws225{word-spacing:10.748274px;}
.ws145{word-spacing:10.891800px;}
.ws23f{word-spacing:10.916854px;}
.ws26c{word-spacing:10.925854px;}
.ws72{word-spacing:10.945800px;}
.ws236{word-spacing:10.979854px;}
.ws268{word-spacing:11.056353px;}
.ws79{word-spacing:11.059200px;}
.ws1c0{word-spacing:11.101352px;}
.ws1fd{word-spacing:11.110352px;}
.ws1da{word-spacing:11.119352px;}
.ws216{word-spacing:11.137352px;}
.ws267{word-spacing:11.150851px;}
.wse6{word-spacing:11.156400px;}
.ws203{word-spacing:11.173351px;}
.ws1d9{word-spacing:11.186851px;}
.ws181{word-spacing:11.188800px;}
.ws1d7{word-spacing:11.209351px;}
.ws1c8{word-spacing:11.213850px;}
.ws238{word-spacing:11.218350px;}
.ws1c7{word-spacing:11.227350px;}
.ws197{word-spacing:11.231860px;}
.ws1c2{word-spacing:11.236350px;}
.ws26d{word-spacing:11.272350px;}
.ws1de{word-spacing:11.285850px;}
.ws2a{word-spacing:11.289459px;}
.ws271{word-spacing:11.290349px;}
.ws196{word-spacing:11.294259px;}
.ws24a{word-spacing:11.348849px;}
.ws224{word-spacing:11.356658px;}
.ws24d{word-spacing:11.371348px;}
.ws21{word-spacing:11.375858px;}
.ws26e{word-spacing:11.389348px;}
.ws1c1{word-spacing:11.393848px;}
.ws1e5{word-spacing:11.398348px;}
.ws250{word-spacing:11.420848px;}
.ws1d4{word-spacing:11.425348px;}
.ws27{word-spacing:11.433457px;}
.ws227{word-spacing:11.438257px;}
.ws29{word-spacing:11.443057px;}
.ws215{word-spacing:11.443347px;}
.ws260{word-spacing:11.452347px;}
.ws66{word-spacing:11.458800px;}
.ws1fc{word-spacing:11.465847px;}
.ws26{word-spacing:11.476657px;}
.ws211{word-spacing:11.479347px;}
.ws24e{word-spacing:11.483847px;}
.ws237{word-spacing:11.488347px;}
.ws1d3{word-spacing:11.492847px;}
.ws6e{word-spacing:11.496600px;}
.ws28{word-spacing:11.519856px;}
.ws202{word-spacing:11.528846px;}
.ws93{word-spacing:11.529000px;}
.ws16b{word-spacing:11.550600px;}
.ws2c{word-spacing:11.553456px;}
.ws249{word-spacing:11.560346px;}
.ws25{word-spacing:11.572655px;}
.ws175{word-spacing:11.583000px;}
.ws1ec{word-spacing:11.596345px;}
.ws22{word-spacing:11.611055px;}
.ws230{word-spacing:11.630255px;}
.ws210{word-spacing:11.641345px;}
.ws134{word-spacing:11.687854px;}
.ws52{word-spacing:11.711854px;}
.ws265{word-spacing:11.731344px;}
.wsbf{word-spacing:11.764653px;}
.ws54{word-spacing:11.769453px;}
.ws177{word-spacing:11.772000px;}
.ws133{word-spacing:11.779053px;}
.ws23{word-spacing:11.831852px;}
.ws92{word-spacing:11.836800px;}
.ws26b{word-spacing:11.839342px;}
.ws234{word-spacing:11.879842px;}
.ws57{word-spacing:11.884651px;}
.ws137{word-spacing:11.890800px;}
.ws1ee{word-spacing:11.915841px;}
.ws56{word-spacing:11.937451px;}
.ws12f{word-spacing:11.956651px;}
.ws266{word-spacing:11.983340px;}
.ws24{word-spacing:11.990250px;}
.ws1a2{word-spacing:12.015000px;}
.ws1a3{word-spacing:12.020400px;}
.ws270{word-spacing:12.077839px;}
.ws43{word-spacing:12.112200px;}
.ws1b1{word-spacing:12.171600px;}
.wsb9{word-spacing:12.172648px;}
.ws1cd{word-spacing:12.176838px;}
.wsac{word-spacing:12.177000px;}
.ws25f{word-spacing:12.194837px;}
.ws1df{word-spacing:12.212837px;}
.ws20a{word-spacing:12.230837px;}
.wsae{word-spacing:12.263400px;}
.ws1ed{word-spacing:12.325336px;}
.wsbd{word-spacing:12.369445px;}
.ws1e0{word-spacing:12.478334px;}
.ws26f{word-spacing:12.482834px;}
.ws25e{word-spacing:12.487333px;}
.ws168{word-spacing:12.517200px;}
.ws25c{word-spacing:12.518833px;}
.ws1dd{word-spacing:12.541333px;}
.ws205{word-spacing:12.554833px;}
.ws129{word-spacing:12.571200px;}
.ws143{word-spacing:12.587400px;}
.ws199{word-spacing:12.592800px;}
.ws45{word-spacing:12.603600px;}
.ws1b4{word-spacing:12.608832px;}
.ws23b{word-spacing:12.613332px;}
.ws106{word-spacing:12.652200px;}
.ws99{word-spacing:12.673800px;}
.ws1af{word-spacing:12.700800px;}
.ws1db{word-spacing:12.730330px;}
.ws1c9{word-spacing:12.752830px;}
.wsb6{word-spacing:12.753441px;}
.ws1dc{word-spacing:12.757330px;}
.ws36{word-spacing:12.765600px;}
.ws162{word-spacing:12.776400px;}
.ws12c{word-spacing:12.806240px;}
.ws1c6{word-spacing:12.829329px;}
.ws190{word-spacing:12.835040px;}
.ws1c5{word-spacing:12.851829px;}
.ws128{word-spacing:12.857400px;}
.ws138{word-spacing:12.868200px;}
.ws10f{word-spacing:12.889800px;}
.ws206{word-spacing:12.910328px;}
.ws257{word-spacing:12.937328px;}
.ws10e{word-spacing:12.997800px;}
.ws204{word-spacing:13.004827px;}
.ws1c3{word-spacing:13.009327px;}
.ws20f{word-spacing:13.049826px;}
.ws20e{word-spacing:13.072326px;}
.ws1e{word-spacing:13.078800px;}
.ws18c{word-spacing:13.095000px;}
.ws4d{word-spacing:13.116600px;}
.ws6{word-spacing:13.170600px;}
.ws125{word-spacing:13.181400px;}
.ws8{word-spacing:13.192200px;}
.ws178{word-spacing:13.197600px;}
.ws18{word-spacing:13.203000px;}
.ws1a{word-spacing:13.219200px;}
.wsb7{word-spacing:13.223835px;}
.ws15{word-spacing:13.230000px;}
.ws2{word-spacing:13.251600px;}
.ws139{word-spacing:13.273200px;}
.ws11{word-spacing:13.278600px;}
.ws165{word-spacing:13.284000px;}
.ws7{word-spacing:13.289400px;}
.ws14{word-spacing:13.294800px;}
.ws76{word-spacing:13.305600px;}
.ws1f5{word-spacing:13.310823px;}
.ws184{word-spacing:13.310940px;}
.ws8c{word-spacing:13.311000px;}
.ws1f{word-spacing:13.321800px;}
.ws12{word-spacing:13.327200px;}
.wsf{word-spacing:13.332600px;}
.ws4{word-spacing:13.343400px;}
.wsd{word-spacing:13.348800px;}
.ws9{word-spacing:13.359600px;}
.ws1b{word-spacing:13.365000px;}
.ws10{word-spacing:13.375800px;}
.ws13{word-spacing:13.402800px;}
.ws1b2{word-spacing:13.413600px;}
.ws1d{word-spacing:13.419000px;}
.ws20{word-spacing:13.424400px;}
.ws17{word-spacing:13.429800px;}
.ws16{word-spacing:13.435200px;}
.ws5{word-spacing:13.446000px;}
.ws1c{word-spacing:13.456800px;}
.wsa{word-spacing:13.467600px;}
.ws19{word-spacing:13.489200px;}
.wse{word-spacing:13.510800px;}
.ws2e{word-spacing:13.516200px;}
.ws144{word-spacing:13.527000px;}
.ws173{word-spacing:13.543200px;}
.ws1cb{word-spacing:13.589819px;}
.ws16c{word-spacing:13.591800px;}
.ws8e{word-spacing:13.597200px;}
.ws1f3{word-spacing:13.598819px;}
.ws1f6{word-spacing:13.616818px;}
.ws34{word-spacing:13.618800px;}
.wsc{word-spacing:13.624200px;}
.ws18f{word-spacing:13.665429px;}
.ws21a{word-spacing:13.727828px;}
.ws172{word-spacing:13.732200px;}
.ws21c{word-spacing:13.761428px;}
.ws1cf{word-spacing:13.778816px;}
.ws15b{word-spacing:13.786200px;}
.ws188{word-spacing:13.791600px;}
.wsd5{word-spacing:13.797000px;}
.ws51{word-spacing:13.807800px;}
.ws19c{word-spacing:13.840200px;}
.ws15c{word-spacing:13.878000px;}
.ws1ce{word-spacing:13.913814px;}
.wsff{word-spacing:13.915800px;}
.ws1cc{word-spacing:13.927314px;}
.ws21d{word-spacing:13.929426px;}
.ws1f8{word-spacing:13.931814px;}
.ws1d0{word-spacing:13.954314px;}
.ws18e{word-spacing:13.964400px;}
.ws1d2{word-spacing:13.985814px;}
.ws262{word-spacing:13.994813px;}
.ws46{word-spacing:14.007600px;}
.ws1ff{word-spacing:14.017313px;}
.ws261{word-spacing:14.026313px;}
.ws1fe{word-spacing:14.030813px;}
.ws263{word-spacing:14.039813px;}
.ws1d1{word-spacing:14.093812px;}
.ws88{word-spacing:14.126400px;}
.ws81{word-spacing:14.131800px;}
.wsb5{word-spacing:14.145423px;}
.ws130{word-spacing:14.159823px;}
.ws15a{word-spacing:14.175000px;}
.ws25b{word-spacing:14.179311px;}
.ws25a{word-spacing:14.183811px;}
.ws218{word-spacing:14.188623px;}
.ws176{word-spacing:14.202000px;}
.wsa8{word-spacing:14.218200px;}
.ws84{word-spacing:14.239800px;}
.ws20d{word-spacing:14.269310px;}
.wsf2{word-spacing:14.272200px;}
.ws157{word-spacing:14.283000px;}
.wsed{word-spacing:14.293800px;}
.ws10b{word-spacing:14.304600px;}
.wsfc{word-spacing:14.326200px;}
.ws87{word-spacing:14.331600px;}
.ws1e4{word-spacing:14.336809px;}
.ws220{word-spacing:14.351821px;}
.ws14c{word-spacing:14.353200px;}
.ws180{word-spacing:14.364000px;}
.wsad{word-spacing:14.374800px;}
.ws2f{word-spacing:14.412600px;}
.ws1b5{word-spacing:14.413308px;}
.ws35{word-spacing:14.423400px;}
.wsfd{word-spacing:14.455800px;}
.ws222{word-spacing:14.486219px;}
.wsc3{word-spacing:14.488200px;}
.wsba{word-spacing:14.524618px;}
.ws21e{word-spacing:14.553418px;}
.wsc6{word-spacing:14.558400px;}
.ws1e3{word-spacing:14.584306px;}
.ws251{word-spacing:14.602305px;}
.ws44{word-spacing:14.628600px;}
.ws217{word-spacing:14.687816px;}
.ws20c{word-spacing:14.701304px;}
.ws22b{word-spacing:14.707016px;}
.ws5b{word-spacing:14.742000px;}
.wsc0{word-spacing:14.752800px;}
.ws6f{word-spacing:14.769000px;}
.ws20b{word-spacing:14.813802px;}
.ws14d{word-spacing:14.844600px;}
.ws14e{word-spacing:14.898600px;}
.ws22d{word-spacing:14.980613px;}
.wsa0{word-spacing:14.985000px;}
.ws22f{word-spacing:14.999812px;}
.ws248{word-spacing:15.011800px;}
.wsf5{word-spacing:15.044400px;}
.ws208{word-spacing:15.052299px;}
.wse9{word-spacing:15.071400px;}
.ws15d{word-spacing:15.093000px;}
.ws126{word-spacing:15.120000px;}
.wsf3{word-spacing:15.141600px;}
.wsf1{word-spacing:15.152400px;}
.ws25d{word-spacing:15.160298px;}
.ws1d6{word-spacing:15.169298px;}
.ws194{word-spacing:15.182210px;}
.ws19e{word-spacing:15.201000px;}
.ws247{word-spacing:15.205297px;}
.ws12e{word-spacing:15.206210px;}
.wsec{word-spacing:15.228000px;}
.wsa4{word-spacing:15.238800px;}
.ws74{word-spacing:15.260400px;}
.ws1aa{word-spacing:15.276600px;}
.ws1d5{word-spacing:15.290796px;}
.ws22a{word-spacing:15.316609px;}
.ws32{word-spacing:15.319800px;}
.wseb{word-spacing:15.330600px;}
.ws228{word-spacing:15.331008px;}
.ws19d{word-spacing:15.363000px;}
.ws150{word-spacing:15.368400px;}
.wsf7{word-spacing:15.373800px;}
.ws121{word-spacing:15.384600px;}
.ws207{word-spacing:15.389795px;}
.ws31{word-spacing:15.400800px;}
.ws15e{word-spacing:15.406200px;}
.wsea{word-spacing:15.422400px;}
.ws33{word-spacing:15.481800px;}
.ws153{word-spacing:15.487200px;}
.wsd8{word-spacing:15.498000px;}
.ws235{word-spacing:15.506793px;}
.ws193{word-spacing:15.566205px;}
.ws192{word-spacing:15.571005px;}
.ws6c{word-spacing:15.579000px;}
.wsf4{word-spacing:15.600600px;}
.ws71{word-spacing:15.616800px;}
.ws1bb{word-spacing:15.619292px;}
.ws116{word-spacing:15.633000px;}
.wsb3{word-spacing:15.652604px;}
.ws6b{word-spacing:15.681600px;}
.ws1ba{word-spacing:15.686791px;}
.ws69{word-spacing:15.708600px;}
.ws200{word-spacing:15.709291px;}
.wsb4{word-spacing:15.724603px;}
.ws114{word-spacing:15.784200px;}
.wsc7{word-spacing:15.827400px;}
.ws1b0{word-spacing:15.849000px;}
.ws21b{word-spacing:15.854202px;}
.ws8d{word-spacing:15.854400px;}
.ws152{word-spacing:15.919200px;}
.ws70{word-spacing:15.994800px;}
.ws1d8{word-spacing:16.028786px;}
.ws214{word-spacing:16.087286px;}
.wsd7{word-spacing:16.102800px;}
.ws62{word-spacing:16.167600px;}
.ws1e1{word-spacing:16.190784px;}
.ws233{word-spacing:16.217784px;}
.ws1a7{word-spacing:16.243200px;}
.ws22c{word-spacing:16.253762px;}
.ws108{word-spacing:16.259400px;}
.ws17c{word-spacing:16.264800px;}
.ws1f4{word-spacing:16.271783px;}
.ws258{word-spacing:16.294283px;}
.ws1c4{word-spacing:16.303283px;}
.ws1f7{word-spacing:16.375282px;}
.ws148{word-spacing:16.416000px;}
.wsa6{word-spacing:16.540200px;}
.ws16f{word-spacing:16.572600px;}
.ws9a{word-spacing:16.578000px;}
.ws4f{word-spacing:16.583400px;}
.wsdf{word-spacing:16.599600px;}
.ws10c{word-spacing:16.605000px;}
.ws1e2{word-spacing:16.649778px;}
.ws219{word-spacing:16.665392px;}
.ws8f{word-spacing:16.686000px;}
.ws1be{word-spacing:16.744277px;}
.ws113{word-spacing:16.745400px;}
.ws187{word-spacing:16.767000px;}
.wsb8{word-spacing:16.828590px;}
.ws18d{word-spacing:16.912800px;}
.ws3a{word-spacing:16.939800px;}
.wsdd{word-spacing:16.972200px;}
.ws1bd{word-spacing:16.991773px;}
.ws38{word-spacing:16.993800px;}
.ws245{word-spacing:16.996273px;}
.ws244{word-spacing:17.045773px;}
.ws13d{word-spacing:17.096400px;}
.ws246{word-spacing:17.099772px;}
.ws9b{word-spacing:17.123400px;}
.wsf0{word-spacing:17.188200px;}
.ws107{word-spacing:17.199000px;}
.ws6d{word-spacing:17.258400px;}
.ws132{word-spacing:17.270184px;}
.ws155{word-spacing:17.274600px;}
.ws191{word-spacing:17.274984px;}
.ws105{word-spacing:17.285400px;}
.wsef{word-spacing:17.312400px;}
.ws75{word-spacing:17.355600px;}
.ws110{word-spacing:17.366400px;}
.ws96{word-spacing:17.420400px;}
.ws1a5{word-spacing:17.442000px;}
.ws97{word-spacing:17.463600px;}
.wsf6{word-spacing:17.474400px;}
.ws131{word-spacing:17.514981px;}
.ws30{word-spacing:17.539200px;}
.wsb1{word-spacing:17.555400px;}
.ws221{word-spacing:17.610980px;}
.ws21f{word-spacing:17.613962px;}
.wsab{word-spacing:17.620200px;}
.wsbb{word-spacing:17.625380px;}
.wsbe{word-spacing:17.668579px;}
.ws1bc{word-spacing:17.671264px;}
.ws115{word-spacing:17.695800px;}
.wsf9{word-spacing:17.722800px;}
.ws13c{word-spacing:17.787600px;}
.ws12b{word-spacing:17.793378px;}
.wsbc{word-spacing:17.798178px;}
.ws151{word-spacing:17.803800px;}
.ws163{word-spacing:17.847000px;}
.ws13b{word-spacing:17.890200px;}
.ws18a{word-spacing:17.906400px;}
.wsaa{word-spacing:17.911800px;}
.ws232{word-spacing:17.918761px;}
.ws195{word-spacing:17.956576px;}
.ws4e{word-spacing:17.965800px;}
.ws117{word-spacing:17.976600px;}
.ws240{word-spacing:17.977260px;}
.ws169{word-spacing:17.992800px;}
.ws189{word-spacing:18.014400px;}
.ws147{word-spacing:18.068400px;}
.ws3b{word-spacing:18.117000px;}
.ws154{word-spacing:18.144000px;}
.ws17a{word-spacing:18.208800px;}
.ws68{word-spacing:18.219600px;}
.ws4a{word-spacing:18.252000px;}
.ws241{word-spacing:18.296756px;}
.wsaf{word-spacing:18.300600px;}
.ws15f{word-spacing:18.322200px;}
.ws1f2{word-spacing:18.350755px;}
.ws77{word-spacing:18.376200px;}
.ws12a{word-spacing:18.441369px;}
.wsd0{word-spacing:18.505800px;}
.wsee{word-spacing:18.554400px;}
.ws112{word-spacing:18.597600px;}
.wscd{word-spacing:18.613800px;}
.ws242{word-spacing:18.629752px;}
.ws185{word-spacing:18.657000px;}
.ws1fa{word-spacing:18.670251px;}
.ws1f9{word-spacing:18.692751px;}
.ws182{word-spacing:18.694800px;}
.ws146{word-spacing:18.711000px;}
.ws149{word-spacing:18.732600px;}
.ws98{word-spacing:18.743400px;}
.wse1{word-spacing:18.802800px;}
.ws161{word-spacing:18.824400px;}
.ws256{word-spacing:18.872748px;}
.ws160{word-spacing:18.878400px;}
.ws229{word-spacing:18.911874px;}
.ws1e8{word-spacing:18.940247px;}
.ws213{word-spacing:18.953747px;}
.ws65{word-spacing:18.981000px;}
.wsce{word-spacing:18.991800px;}
.ws1e7{word-spacing:19.030246px;}
.ws174{word-spacing:19.035000px;}
.ws16a{word-spacing:19.094400px;}
.ws1e6{word-spacing:19.129245px;}
.wscf{word-spacing:19.143000px;}
.ws183{word-spacing:19.207800px;}
.ws124{word-spacing:19.321200px;}
.wsa3{word-spacing:19.456200px;}
.ws14b{word-spacing:19.488600px;}
.ws17d{word-spacing:19.558800px;}
.ws170{word-spacing:19.569600px;}
.ws17f{word-spacing:19.602000px;}
.wsb0{word-spacing:19.693800px;}
.ws1e9{word-spacing:19.696237px;}
.ws18b{word-spacing:19.737000px;}
.wse0{word-spacing:19.747800px;}
.ws23a{word-spacing:19.840235px;}
.ws17e{word-spacing:19.845000px;}
.ws1ea{word-spacing:19.853735px;}
.ws1fb{word-spacing:19.885235px;}
.wsc4{word-spacing:19.888200px;}
.ws269{word-spacing:19.930234px;}
.ws9e{word-spacing:19.936800px;}
.ws1eb{word-spacing:20.047233px;}
.wsd6{word-spacing:20.055600px;}
.ws252{word-spacing:20.069732px;}
.ws90{word-spacing:20.088000px;}
.ws3e{word-spacing:20.201400px;}
.ws3c{word-spacing:20.320200px;}
.ws156{word-spacing:20.341800px;}
.ws63{word-spacing:20.428200px;}
.wse3{word-spacing:20.455200px;}
.ws209{word-spacing:20.551226px;}
.wse2{word-spacing:20.601000px;}
.ws167{word-spacing:20.768400px;}
.ws201{word-spacing:20.794223px;}
.ws159{word-spacing:20.833200px;}
.ws67{word-spacing:20.865600px;}
.ws24c{word-spacing:20.902221px;}
.wse5{word-spacing:20.946600px;}
.ws2d{word-spacing:21.000600px;}
.wsc1{word-spacing:21.022200px;}
.ws123{word-spacing:21.054600px;}
.ws24b{word-spacing:21.055219px;}
.ws127{word-spacing:21.076200px;}
.wsca{word-spacing:21.114000px;}
.ws212{word-spacing:21.149718px;}
.ws24f{word-spacing:21.212717px;}
.wse4{word-spacing:21.259800px;}
.ws231{word-spacing:21.289216px;}
.wscb{word-spacing:21.319200px;}
.wsc8{word-spacing:21.373200px;}
.wscc{word-spacing:21.384000px;}
.ws158{word-spacing:21.416400px;}
.ws91{word-spacing:21.621600px;}
.ws95{word-spacing:21.702600px;}
.wsc9{word-spacing:21.740400px;}
.ws1ad{word-spacing:21.934800px;}
.ws5e{word-spacing:21.940200px;}
.ws42{word-spacing:22.096800px;}
.ws255{word-spacing:22.121705px;}
.ws254{word-spacing:22.126205px;}
.ws253{word-spacing:22.144205px;}
.ws109{word-spacing:22.156200px;}
.ws179{word-spacing:22.172400px;}
.ws259{word-spacing:22.211704px;}
.wse8{word-spacing:22.221000px;}
.ws5d{word-spacing:22.248000px;}
.ws5c{word-spacing:22.253400px;}
.ws23c{word-spacing:22.409701px;}
.ws60{word-spacing:22.458600px;}
.ws94{word-spacing:22.469400px;}
.wsd1{word-spacing:22.491000px;}
.ws13e{word-spacing:22.512600px;}
.ws9d{word-spacing:22.566600px;}
.ws1a8{word-spacing:22.615200px;}
.ws111{word-spacing:22.631400px;}
.ws16d{word-spacing:22.653000px;}
.wsd2{word-spacing:22.734000px;}
.ws135{word-spacing:22.793400px;}
.ws58{word-spacing:22.797402px;}
.wsde{word-spacing:22.809600px;}
.ws166{word-spacing:22.836600px;}
.wsfa{word-spacing:22.912200px;}
.ws1a4{word-spacing:22.950000px;}
.ws11f{word-spacing:23.122800px;}
.ws119{word-spacing:23.149800px;}
.ws8b{word-spacing:23.198400px;}
.ws7e{word-spacing:23.247000px;}
.ws50{word-spacing:23.252400px;}
.wsa9{word-spacing:23.403600px;}
.ws17b{word-spacing:23.436000px;}
.ws7d{word-spacing:23.522400px;}
.wsf8{word-spacing:23.587200px;}
.ws136{word-spacing:23.662800px;}
.ws23d{word-spacing:23.822682px;}
.ws11b{word-spacing:23.873400px;}
.ws11a{word-spacing:24.003000px;}
.ws3d{word-spacing:24.197400px;}
.ws11d{word-spacing:24.213600px;}
.ws13a{word-spacing:24.386400px;}
.ws10a{word-spacing:24.591600px;}
.ws1b3{word-spacing:24.683400px;}
.ws41{word-spacing:24.769800px;}
.ws61{word-spacing:24.796800px;}
.ws1a9{word-spacing:25.012800px;}
.ws5f{word-spacing:25.023600px;}
.ws14f{word-spacing:25.110000px;}
.ws19a{word-spacing:25.785000px;}
.wse7{word-spacing:25.839000px;}
.ws171{word-spacing:25.903800px;}
.ws1ef{word-spacing:26.135652px;}
.ws1f1{word-spacing:26.203151px;}
.ws1f0{word-spacing:26.423648px;}
.ws37{word-spacing:26.492400px;}
.ws13f{word-spacing:26.859600px;}
.ws264{word-spacing:26.914141px;}
.ws73{word-spacing:27.145800px;}
.ws164{word-spacing:27.691200px;}
.ws7a{word-spacing:27.788400px;}
.ws1bf{word-spacing:27.818629px;}
.ws80{word-spacing:27.885600px;}
.wsc2{word-spacing:27.945000px;}
.ws1a6{word-spacing:28.414800px;}
.ws1b6{word-spacing:28.673618px;}
.ws1b9{word-spacing:28.921114px;}
.ws1b7{word-spacing:29.204611px;}
.ws100{word-spacing:29.370600px;}
.ws101{word-spacing:29.446200px;}
.ws122{word-spacing:29.527200px;}
.ws0{word-spacing:29.748149px;}
.ws1{word-spacing:29.796149px;}
.ws102{word-spacing:29.953800px;}
.ws104{word-spacing:29.991600px;}
.ws1ca{word-spacing:30.131598px;}
.ws140{word-spacing:30.207600px;}
.ws7c{word-spacing:30.240000px;}
.ws1ac{word-spacing:30.807000px;}
.ws9f{word-spacing:30.888000px;}
.ws1ae{word-spacing:31.525200px;}
.ws78{word-spacing:31.541400px;}
.ws19f{word-spacing:32.243400px;}
.ws1a1{word-spacing:32.356800px;}
.ws26a{word-spacing:32.368068px;}
.wsdb{word-spacing:32.659200px;}
.ws1a0{word-spacing:32.772600px;}
.wsda{word-spacing:32.821200px;}
.wsa1{word-spacing:32.961600px;}
.ws19b{word-spacing:33.550200px;}
.ws64{word-spacing:36.941400px;}
.ws1ab{word-spacing:37.611000px;}
.ws16e{word-spacing:38.421000px;}
.ws47{word-spacing:40.197600px;}
.ws49{word-spacing:40.716000px;}
.ws59{word-spacing:185.365800px;}
._c{margin-left:-31.941000px;}
._22{margin-left:-24.142387px;}
._21{margin-left:-22.808414px;}
._17{margin-left:-21.767400px;}
._18{margin-left:-20.649600px;}
._20{margin-left:-19.256882px;}
._15{margin-left:-17.547589px;}
._14{margin-left:-16.137611px;}
._1c{margin-left:-14.509800px;}
._1b{margin-left:-12.997800px;}
._1f{margin-left:-8.445600px;}
._9{margin-left:-2.521005px;}
._4{margin-left:-1.156786px;}
._6{width:1.454382px;}
._d{width:2.927963px;}
._2{width:4.066200px;}
._1a{width:7.905586px;}
._5{width:10.569468px;}
._1d{width:11.735853px;}
._3{width:12.743841px;}
._1{width:14.504400px;}
._8{width:15.573600px;}
._11{width:16.824810px;}
._b{width:18.446400px;}
._a{width:19.590405px;}
._1e{width:20.936176px;}
._7{width:22.107600px;}
._16{width:23.672805px;}
._12{width:26.182605px;}
._13{width:27.338473px;}
._24{width:28.386110px;}
._19{width:29.796528px;}
._0{width:30.936155px;}
._23{width:31.941000px;}
._25{width:33.502053px;}
._10{width:38.147820px;}
._f{width:1194.421098px;}
._e{width:1843.066561px;}
.fc4{color:rgb(244,107,23);}
.fc1{color:rgb(83,172,228);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:28.684800px;}
.fsd{font-size:29.995200px;}
.fs4{font-size:31.995000px;}
.fs7{font-size:32.270400px;}
.fsc{font-size:33.598800px;}
.fs3{font-size:35.995200px;}
.fsb{font-size:37.800000px;}
.fs8{font-size:41.831400px;}
.fse{font-size:44.999400px;}
.fs6{font-size:47.061000px;}
.fs5{font-size:47.999400px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.000600px;}
.fsa{font-size:68.999400px;}
.fs0{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y4a{bottom:72.538500px;}
.y4b{bottom:73.558950px;}
.y49{bottom:91.417200px;}
.y115{bottom:160.724400px;}
.y17c{bottom:162.676350px;}
.y10c{bottom:162.677700px;}
.y94{bottom:162.678300px;}
.y48{bottom:162.678450px;}
.y3f{bottom:162.679050px;}
.y114{bottom:162.679182px;}
.y9e{bottom:162.679650px;}
.y41{bottom:162.680250px;}
.y1a4{bottom:162.680416px;}
.y1f6{bottom:162.680953px;}
.y40{bottom:168.718050px;}
.y182{bottom:168.802593px;}
.y113{bottom:176.200613px;}
.y1a3{bottom:176.201611px;}
.y1f5{bottom:176.541894px;}
.y9b{bottom:178.496250px;}
.y9d{bottom:178.497600px;}
.y17b{bottom:178.664400px;}
.y10b{bottom:178.665750px;}
.y93{bottom:178.666350px;}
.y47{bottom:178.666500px;}
.y3e{bottom:178.667100px;}
.y181{bottom:182.238825px;}
.y9c{bottom:184.450350px;}
.y112{bottom:189.722044px;}
.y1a2{bottom:189.722805px;}
.y1f4{bottom:190.402834px;}
.y9a{bottom:194.229150px;}
.y17a{bottom:194.397300px;}
.y10a{bottom:194.568750px;}
.y92{bottom:194.654400px;}
.y3b{bottom:194.654550px;}
.y3d{bottom:194.655150px;}
.y180{bottom:195.760256px;}
.y3c{bottom:200.692800px;}
.y111{bottom:203.243475px;}
.y1a1{bottom:203.244000px;}
.y1f3{bottom:204.179400px;}
.y1a0{bottom:208.176300px;}
.y1f2{bottom:209.196750px;}
.y17f{bottom:209.281687px;}
.y99{bottom:209.962050px;}
.y179{bottom:210.385350px;}
.y109{bottom:210.556800px;}
.y8f{bottom:210.556950px;}
.y91{bottom:210.557400px;}
.y3a{bottom:210.642600px;}
.y90{bottom:216.595200px;}
.y110{bottom:216.679707px;}
.y1f1{bottom:217.702284px;}
.y19f{bottom:221.942550px;}
.y17e{bottom:222.803118px;}
.y98{bottom:223.483350px;}
.y97{bottom:225.690900px;}
.y107{bottom:226.287750px;}
.y178{bottom:226.288350px;}
.y108{bottom:226.289700px;}
.y8e{bottom:226.543650px;}
.y39{bottom:226.714350px;}
.y10f{bottom:230.201138px;}
.y1f0{bottom:231.478850px;}
.y17d{bottom:236.239350px;}
.y96{bottom:241.423800px;}
.y106{bottom:242.275800px;}
.y177{bottom:242.276400px;}
.y8d{bottom:242.276550px;}
.y36{bottom:242.701050px;}
.y38{bottom:242.702400px;}
.y10e{bottom:243.722569px;}
.y1ef{bottom:245.339790px;}
.y37{bottom:248.655150px;}
.y19e{bottom:256.298700px;}
.y95{bottom:257.241750px;}
.y10d{bottom:257.244000px;}
.y174{bottom:258.178200px;}
.y105{bottom:258.178800px;}
.y176{bottom:258.179400px;}
.y8c{bottom:258.264600px;}
.y35{bottom:258.689100px;}
.y1ee{bottom:259.200731px;}
.y175{bottom:264.217200px;}
.y19d{bottom:272.030250px;}
.y1ed{bottom:272.977297px;}
.y104{bottom:274.081800px;}
.y8b{bottom:274.166250px;}
.y46{bottom:274.675800px;}
.y32{bottom:274.676100px;}
.y34{bottom:274.677150px;}
.y33{bottom:280.629900px;}
.y1ec{bottom:286.838237px;}
.y103{bottom:290.068500px;}
.y173{bottom:290.069250px;}
.y8a{bottom:290.154300px;}
.y45{bottom:290.663850px;}
.y31{bottom:290.664150px;}
.y19c{bottom:292.439550px;}
.yab{bottom:297.977737px;}
.y1eb{bottom:300.614803px;}
.y100{bottom:305.970300px;}
.y102{bottom:305.971500px;}
.y172{bottom:306.057300px;}
.y89{bottom:306.142350px;}
.y44{bottom:306.651900px;}
.y30{bottom:306.652200px;}
.y42{bottom:306.652350px;}
.yaa{bottom:311.413969px;}
.y101{bottom:312.009450px;}
.y43{bottom:312.604650px;}
.y1ea{bottom:314.475744px;}
.y19b{bottom:316.676100px;}
.yff{bottom:321.958350px;}
.y171{bottom:321.958950px;}
.y88{bottom:322.045350px;}
.ya9{bottom:324.935400px;}
.y170{bottom:327.996750px;}
.y1e9{bottom:328.336684px;}
.y19a{bottom:332.409000px;}
.ya7{bottom:336.415650px;}
.yfe{bottom:337.861350px;}
.y16e{bottom:337.945800px;}
.y87{bottom:338.033400px;}
.ya6{bottom:338.455631px;}
.ya8{bottom:338.456700px;}
.y1e8{bottom:342.113250px;}
.y16f{bottom:342.793650px;}
.y1e7{bottom:347.130600px;}
.y199{bottom:348.141900px;}
.ya5{bottom:351.977062px;}
.yfd{bottom:353.848050px;}
.y16d{bottom:353.848800px;}
.y86{bottom:353.935050px;}
.y1e6{bottom:355.635253px;}
.y198{bottom:363.874800px;}
.ya4{bottom:365.413294px;}
.yfb{bottom:367.540050px;}
.y1e5{bottom:369.496194px;}
.yfa{bottom:369.749850px;}
.yfc{bottom:369.751050px;}
.y16c{bottom:369.836850px;}
.y85{bottom:369.921750px;}
.y2f{bottom:373.578450px;}
.ya3{bottom:378.934725px;}
.y197{bottom:379.607700px;}
.y1e4{bottom:383.272760px;}
.y16b{bottom:385.731000px;}
.yf9{bottom:385.737900px;}
.y84{bottom:385.908450px;}
.y2d{bottom:389.990400px;}
.y2e{bottom:391.266150px;}
.ya2{bottom:392.456156px;}
.y196{bottom:395.425650px;}
.y1e3{bottom:397.133700px;}
.yf6{bottom:401.638950px;}
.y82{bottom:401.639550px;}
.yf8{bottom:401.640900px;}
.y16a{bottom:401.719050px;}
.y1e2{bottom:402.151050px;}
.ya1{bottom:405.977587px;}
.y83{bottom:407.593650px;}
.yf7{bottom:407.678700px;}
.y1e1{bottom:410.655294px;}
.y195{bottom:411.158550px;}
.y2c{bottom:414.137100px;}
.y81{bottom:417.542550px;}
.y169{bottom:417.622050px;}
.yf5{bottom:417.627000px;}
.ya0{bottom:419.413819px;}
.y1e0{bottom:424.431860px;}
.y194{bottom:426.891450px;}
.y2b{bottom:429.870000px;}
.y9f{bottom:432.935250px;}
.yf4{bottom:433.530000px;}
.y7f{bottom:433.530600px;}
.y168{bottom:433.608750px;}
.y1df{bottom:438.292800px;}
.y80{bottom:439.483350px;}
.y193{bottom:442.624350px;}
.y1de{bottom:443.225100px;}
.y2a{bottom:445.602900px;}
.yf1{bottom:449.262300px;}
.yf3{bottom:449.262900px;}
.y167{bottom:449.511750px;}
.y7d{bottom:449.516850px;}
.y1dd{bottom:451.730020px;}
.yf2{bottom:455.300700px;}
.y7e{bottom:455.470800px;}
.y192{bottom:458.357250px;}
.y29{bottom:461.335800px;}
.yee{bottom:465.249000px;}
.y7c{bottom:465.249750px;}
.yf0{bottom:465.250350px;}
.y166{bottom:465.499800px;}
.y1dc{bottom:465.590960px;}
.yef{bottom:471.202950px;}
.y191{bottom:474.173850px;}
.y28{bottom:477.153750px;}
.y1db{bottom:479.451900px;}
.yed{bottom:481.152000px;}
.y7b{bottom:481.152750px;}
.y165{bottom:481.232700px;}
.y1da{bottom:484.384200px;}
.y190{bottom:489.906750px;}
.y27{bottom:492.886650px;}
.y1d9{bottom:492.889263px;}
.yea{bottom:497.138850px;}
.y7a{bottom:497.139450px;}
.yec{bottom:497.140050px;}
.y164{bottom:497.219400px;}
.y13d{bottom:498.583800px;}
.yeb{bottom:503.092800px;}
.y18f{bottom:505.639650px;}
.y1d8{bottom:506.750203px;}
.y26{bottom:508.619550px;}
.ye9{bottom:513.041850px;}
.y163{bottom:513.122400px;}
.y79{bottom:513.126150px;}
.y13c{bottom:514.486800px;}
.y1d7{bottom:520.611144px;}
.y18e{bottom:521.372550px;}
.y25{bottom:524.352450px;}
.ye8{bottom:529.028550px;}
.y78{bottom:529.029150px;}
.y162{bottom:529.110450px;}
.y13b{bottom:530.389800px;}
.y1d6{bottom:534.387710px;}
.ye7{bottom:544.931550px;}
.y161{bottom:545.013450px;}
.y77{bottom:545.016600px;}
.y13a{bottom:546.292800px;}
.y24{bottom:546.632850px;}
.y1d5{bottom:548.248650px;}
.y1d4{bottom:553.266000px;}
.y18d{bottom:554.538000px;}
.ye4{bottom:560.913600px;}
.y76{bottom:560.917650px;}
.ye6{bottom:560.919600px;}
.y160{bottom:561.000150px;}
.y1d3{bottom:561.770244px;}
.y138{bottom:562.012800px;}
.ye5{bottom:566.872350px;}
.y139{bottom:568.062900px;}
.y18c{bottom:570.270900px;}
.y1d2{bottom:575.546810px;}
.ye3{bottom:576.816600px;}
.y15f{bottom:576.903150px;}
.y75{bottom:576.905700px;}
.y137{bottom:577.915800px;}
.y18b{bottom:586.003800px;}
.y1d1{bottom:589.407750px;}
.y23{bottom:590.428200px;}
.ye2{bottom:592.803300px;}
.y15e{bottom:592.891200px;}
.y74{bottom:592.893750px;}
.y136{bottom:593.818800px;}
.y1d0{bottom:594.340050px;}
.y22{bottom:595.785750px;}
.y18a{bottom:601.820400px;}
.y1cf{bottom:602.844703px;}
.y21{bottom:605.395050px;}
.y72{bottom:606.585600px;}
.ye1{bottom:608.706300px;}
.y15d{bottom:608.794200px;}
.y73{bottom:608.796750px;}
.y71{bottom:608.797350px;}
.y135{bottom:609.806850px;}
.y20{bottom:610.752600px;}
.y1ce{bottom:616.705644px;}
.y189{bottom:617.553300px;}
.y1f{bottom:620.192018px;}
.y6f{bottom:622.488000px;}
.ye0{bottom:624.609300px;}
.y6e{bottom:624.779100px;}
.y15c{bottom:624.780900px;}
.y70{bottom:624.784050px;}
.y134{bottom:625.709850px;}
.y1cd{bottom:630.566584px;}
.y188{bottom:633.286200px;}
.ydf{bottom:640.427250px;}
.y15b{bottom:640.513800px;}
.y6d{bottom:640.682100px;}
.y133{bottom:641.612850px;}
.y1cc{bottom:644.343150px;}
.y187{bottom:649.019100px;}
.y1cb{bottom:649.360500px;}
.y1e{bottom:649.615650px;}
.y1d{bottom:654.888000px;}
.yde{bottom:656.330250px;}
.y15a{bottom:656.416800px;}
.y6c{bottom:656.500050px;}
.y132{bottom:657.515850px;}
.y1ca{bottom:657.865153px;}
.y186{bottom:664.752000px;}
.y1c{bottom:667.558800px;}
.y1c9{bottom:671.726094px;}
.ydd{bottom:672.318300px;}
.y6b{bottom:672.403050px;}
.y159{bottom:672.403500px;}
.y1b{bottom:672.916350px;}
.y131{bottom:673.418850px;}
.y185{bottom:680.568600px;}
.y1c8{bottom:685.502660px;}
.y1a{bottom:685.587150px;}
.ydc{bottom:688.221300px;}
.y158{bottom:688.306500px;}
.y6a{bottom:688.391100px;}
.y130{bottom:689.321850px;}
.y19{bottom:690.944700px;}
.y184{bottom:696.301500px;}
.y1c7{bottom:699.363600px;}
.y18{bottom:703.615500px;}
.ydb{bottom:704.208000px;}
.y69{bottom:704.294100px;}
.y157{bottom:704.294550px;}
.y1c6{bottom:704.380950px;}
.y12f{bottom:705.224850px;}
.y17{bottom:708.888000px;}
.y183{bottom:712.034400px;}
.y1c5{bottom:712.884634px;}
.y22a{bottom:719.093204px;}
.y247{bottom:719.093415px;}
.yda{bottom:720.111000px;}
.y156{bottom:720.197550px;}
.y68{bottom:720.280800px;}
.y12e{bottom:721.127850px;}
.y16{bottom:721.558800px;}
.y1c4{bottom:726.661200px;}
.y15{bottom:726.916350px;}
.y1c3{bottom:731.678550px;}
.y229{bottom:732.528900px;}
.y246{bottom:732.529111px;}
.yd9{bottom:736.014000px;}
.y154{bottom:736.185600px;}
.y67{bottom:736.267500px;}
.yc2{bottom:736.862100px;}
.y12d{bottom:737.030850px;}
.y228{bottom:737.546250px;}
.y14{bottom:739.587150px;}
.y1c2{bottom:740.182384px;}
.y155{bottom:742.138350px;}
.y13{bottom:744.944700px;}
.y227{bottom:746.049840px;}
.y245{bottom:746.050305px;}
.yd8{bottom:752.002050px;}
.y153{bottom:752.088600px;}
.y66{bottom:752.170500px;}
.yc1{bottom:752.850150px;}
.y12c{bottom:752.933850px;}
.y1c1{bottom:753.958950px;}
.y12{bottom:757.615500px;}
.y1c0{bottom:758.976150px;}
.y226{bottom:759.571034px;}
.y244{bottom:759.571500px;}
.y11{bottom:762.973050px;}
.y243{bottom:764.588700px;}
.y20a{bottom:766.119319px;}
.y1bf{bottom:767.480510px;}
.yd7{bottom:767.905050px;}
.y150{bottom:768.070800px;}
.y152{bottom:768.075300px;}
.y65{bottom:768.158550px;}
.yc0{bottom:768.753150px;}
.y12b{bottom:768.836850px;}
.y242{bottom:773.092184px;}
.y225{bottom:773.092229px;}
.y151{bottom:774.028050px;}
.y207{bottom:779.640619px;}
.y209{bottom:779.640750px;}
.y10{bottom:780.491100px;}
.y1be{bottom:781.341450px;}
.yd6{bottom:783.891750px;}
.y14f{bottom:783.973800px;}
.y64{bottom:784.061550px;}
.ybf{bottom:784.486050px;}
.y12a{bottom:784.569750px;}
.y208{bottom:784.998300px;}
.y1bd{bottom:786.358950px;}
.y241{bottom:786.529005px;}
.y224{bottom:786.529050px;}
.y223{bottom:791.546250px;}
.y204{bottom:793.161769px;}
.y205{bottom:793.162050px;}
.y1bc{bottom:794.862927px;}
.y206{bottom:797.499000px;}
.yd5{bottom:799.794750px;}
.y14e{bottom:799.960500px;}
.y63{bottom:800.049600px;}
.y240{bottom:800.050200px;}
.y222{bottom:800.050305px;}
.ybe{bottom:800.389050px;}
.y129{bottom:800.472750px;}
.y23f{bottom:805.067550px;}
.y202{bottom:806.683218px;}
.y1bb{bottom:808.639494px;}
.y203{bottom:811.020300px;}
.ye{bottom:813.061200px;}
.y221{bottom:813.571500px;}
.y23e{bottom:813.572009px;}
.y14d{bottom:815.693400px;}
.yd4{bottom:815.782800px;}
.y62{bottom:816.037650px;}
.ybc{bottom:816.292050px;}
.y128{bottom:816.460800px;}
.y220{bottom:818.588700px;}
.yf{bottom:819.099000px;}
.y201{bottom:820.119188px;}
.y1ba{bottom:822.500434px;}
.y21f{bottom:827.093204px;}
.ybd{bottom:827.857500px;}
.yc{bottom:829.558800px;}
.y14c{bottom:831.681450px;}
.yd3{bottom:831.685800px;}
.y61{bottom:831.769200px;}
.yb9{bottom:832.188750px;}
.ybb{bottom:832.195050px;}
.y127{bottom:832.363800px;}
.y200{bottom:833.640619px;}
.yd{bottom:835.596750px;}
.y1b9{bottom:836.277000px;}
.yba{bottom:838.232850px;}
.y21e{bottom:840.528900px;}
.y1b8{bottom:841.294350px;}
.y21d{bottom:845.546250px;}
.ya{bottom:846.141600px;}
.y1ff{bottom:847.161769px;}
.y14b{bottom:847.584450px;}
.y5e{bottom:847.671600px;}
.y60{bottom:847.672200px;}
.yd2{bottom:847.672500px;}
.yb8{bottom:848.176800px;}
.y126{bottom:848.266800px;}
.y1b7{bottom:849.799297px;}
.yb{bottom:852.094350px;}
.y5f{bottom:853.710000px;}
.y21c{bottom:854.050261px;}
.y23d{bottom:854.051025px;}
.y1fd{bottom:858.642300px;}
.y1fe{bottom:860.683200px;}
.y1fc{bottom:860.683218px;}
.y124{bottom:861.873750px;}
.y8{bottom:862.639200px;}
.y14a{bottom:863.572500px;}
.yd1{bottom:863.575500px;}
.y5d{bottom:863.659650px;}
.y1b6{bottom:863.660237px;}
.y5b{bottom:863.660700px;}
.yb7{bottom:864.079800px;}
.y123{bottom:864.169200px;}
.y125{bottom:864.169800px;}
.y21b{bottom:867.571455px;}
.y23c{bottom:867.572220px;}
.y9{bottom:868.591950px;}
.y5c{bottom:869.612400px;}
.y1fa{bottom:872.163600px;}
.y1f9{bottom:874.119188px;}
.y1fb{bottom:874.119450px;}
.y1b5{bottom:877.436803px;}
.y6{bottom:879.136800px;}
.y149{bottom:879.475500px;}
.yd0{bottom:879.562200px;}
.y5a{bottom:879.647400px;}
.yb6{bottom:879.982800px;}
.y122{bottom:880.075050px;}
.y21a{bottom:881.092650px;}
.y23b{bottom:881.093415px;}
.y7{bottom:885.089550px;}
.y219{bottom:886.024950px;}
.y1f8{bottom:887.640619px;}
.y1b4{bottom:891.297744px;}
.y23a{bottom:894.529111px;}
.y218{bottom:894.529725px;}
.y148{bottom:895.462200px;}
.ycf{bottom:895.465200px;}
.y59{bottom:895.550400px;}
.yb5{bottom:895.885800px;}
.y121{bottom:895.976700px;}
.y1f7{bottom:901.162050px;}
.y1b3{bottom:905.074310px;}
.y239{bottom:908.050305px;}
.y217{bottom:908.050920px;}
.y147{bottom:911.365200px;}
.yce{bottom:911.453250px;}
.y58{bottom:911.537100px;}
.yb4{bottom:911.787450px;}
.y120{bottom:911.878350px;}
.y5{bottom:917.234400px;}
.y1b2{bottom:918.935250px;}
.y238{bottom:921.571500px;}
.y216{bottom:921.572115px;}
.y1b1{bottom:923.952450px;}
.y237{bottom:926.588700px;}
.y146{bottom:927.353250px;}
.ycd{bottom:927.354900px;}
.y57{bottom:927.440100px;}
.yb3{bottom:927.520350px;}
.y11f{bottom:927.780000px;}
.y1b0{bottom:932.456987px;}
.y215{bottom:935.093309px;}
.y236{bottom:935.093370px;}
.y4{bottom:935.178150px;}
.y145{bottom:943.254900px;}
.ycc{bottom:943.256550px;}
.y56{bottom:943.426800px;}
.yb2{bottom:943.508400px;}
.y11e{bottom:943.681650px;}
.y1af{bottom:946.233553px;}
.y214{bottom:948.529005px;}
.y235{bottom:948.529066px;}
.y3{bottom:953.206050px;}
.y144{bottom:959.241600px;}
.ycb{bottom:959.243250px;}
.yb1{bottom:959.411400px;}
.y55{bottom:959.413500px;}
.y11c{bottom:959.586150px;}
.y1ae{bottom:960.094494px;}
.y212{bottom:962.050200px;}
.y234{bottom:962.050261px;}
.y213{bottom:962.220073px;}
.y11d{bottom:965.621850px;}
.y211{bottom:967.067550px;}
.y1ad{bottom:973.955434px;}
.y143{bottom:975.144600px;}
.yca{bottom:975.146250px;}
.yb0{bottom:975.314400px;}
.y54{bottom:975.315150px;}
.y11b{bottom:975.487800px;}
.y233{bottom:975.571455px;}
.y210{bottom:975.572579px;}
.y1ac{bottom:987.732000px;}
.y232{bottom:989.092650px;}
.y20f{bottom:989.093774px;}
.y142{bottom:991.131300px;}
.yc9{bottom:991.132950px;}
.yaf{bottom:991.217400px;}
.y53{bottom:991.303200px;}
.y11a{bottom:991.389450px;}
.y1ab{bottom:992.749350px;}
.y231{bottom:994.024950px;}
.y1aa{bottom:1001.253737px;}
.y230{bottom:1002.529111px;}
.y20e{bottom:1002.529470px;}
.yc6{bottom:1007.033550px;}
.y141{bottom:1007.034300px;}
.yc8{bottom:1007.035950px;}
.y52{bottom:1007.036100px;}
.yae{bottom:1007.120400px;}
.y119{bottom:1007.291100px;}
.y2{bottom:1009.416285px;}
.yc7{bottom:1013.073750px;}
.y1a9{bottom:1015.114677px;}
.y22f{bottom:1016.050305px;}
.y20d{bottom:1016.050665px;}
.yc5{bottom:1023.021600px;}
.y140{bottom:1023.022350px;}
.yad{bottom:1023.023400px;}
.y51{bottom:1023.024150px;}
.y118{bottom:1023.109050px;}
.y1a8{bottom:1028.891244px;}
.y22e{bottom:1029.571500px;}
.y20c{bottom:1029.571859px;}
.y22d{bottom:1034.588700px;}
.yc4{bottom:1038.923250px;}
.y13f{bottom:1038.924000px;}
.y50{bottom:1038.925800px;}
.y4e{bottom:1038.926400px;}
.yac{bottom:1039.010100px;}
.y117{bottom:1039.010700px;}
.y1{bottom:1042.497450px;}
.y1a7{bottom:1042.752184px;}
.y20b{bottom:1043.093054px;}
.y22c{bottom:1043.093384px;}
.y4f{bottom:1044.963450px;}
.yc3{bottom:1054.909950px;}
.y13e{bottom:1054.910700px;}
.y4d{bottom:1054.913100px;}
.y1a6{bottom:1056.528750px;}
.y22b{bottom:1056.529080px;}
.y116{bottom:1060.865850px;}
.y1a5{bottom:1061.546100px;}
.y4c{bottom:1135.105200px;}
.h1b{height:2.160000px;}
.h18{height:22.876425px;}
.h24{height:22.946328px;}
.h2e{height:23.996250px;}
.h7{height:24.476175px;}
.h2a{height:25.199100px;}
.h1d{height:25.628582px;}
.hf{height:25.772563px;}
.h16{height:26.996400px;}
.h23{height:28.350000px;}
.h12{height:28.480963px;}
.h5{height:29.372083px;}
.h11{height:30.871573px;}
.he{height:30.963600px;}
.h2f{height:31.409581px;}
.h25{height:32.219570px;}
.h26{height:32.431068px;}
.hd{height:34.731018px;}
.h10{height:34.943563px;}
.h27{height:34.944687px;}
.h8{height:35.952540px;}
.h1f{height:35.999550px;}
.h2d{height:36.000074px;}
.h28{height:36.000598px;}
.h9{height:37.583530px;}
.ha{height:37.924326px;}
.hc{height:38.664000px;}
.hb{height:39.167510px;}
.h1a{height:40.446000px;}
.h17{height:40.500000px;}
.h21{height:40.530000px;}
.h6{height:41.310000px;}
.h3{height:44.064000px;}
.h2c{height:45.889526px;}
.h29{height:45.890055px;}
.h2b{height:45.890650px;}
.h22{height:46.456200px;}
.h20{height:46.770615px;}
.h15{height:47.741400px;}
.h14{height:48.087000px;}
.h19{height:48.421800px;}
.h1c{height:52.660800px;}
.h1e{height:52.668600px;}
.h13{height:53.612534px;}
.h4{height:66.100090px;}
.h2{height:91.800459px;}
.h0{height:1214.958000px;}
.h1{height:1215.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x45{left:58.507050px;}
.x46{left:59.697600px;}
.x47{left:72.283500px;}
.x1{left:79.511850px;}
.x37{left:80.872350px;}
.x30{left:82.913400px;}
.x31{left:84.784200px;}
.x35{left:87.590550px;}
.xa6{left:89.291250px;}
.xa3{left:90.311850px;}
.x4f{left:94.308600px;}
.x50{left:103.237800px;}
.x38{left:106.469700px;}
.x51{left:115.143300px;}
.x4b{left:121.095150px;}
.x52{left:124.072350px;}
.x3c{left:127.133850px;}
.xa5{left:129.598576px;}
.x53{left:131.555850px;}
.x33{left:133.170748px;}
.x59{left:138.869250px;}
.x54{left:140.484900px;}
.x80{left:143.206200px;}
.x48{left:152.985750px;}
.xa1{left:155.451225px;}
.x3d{left:158.683350px;}
.x5a{left:164.211000px;}
.x49{left:167.442450px;}
.xa7{left:170.673341px;}
.xc{left:171.694350px;}
.xd{left:178.837650px;}
.x2{left:207.325950px;}
.x28{left:208.346400px;}
.x75{left:213.618900px;}
.x76{left:217.615650px;}
.x18{left:221.017200px;}
.x55{left:222.037650px;}
.x3b{left:228.925950px;}
.x56{left:230.966850px;}
.x3{left:233.092800px;}
.x29{left:236.154300px;}
.x19{left:248.825100px;}
.xe{left:263.536950px;}
.x9e{left:268.384200px;}
.x9f{left:275.527500px;}
.x20{left:277.823550px;}
.xa2{left:279.947690px;}
.x62{left:281.395200px;}
.x21{left:285.051900px;}
.xf{left:289.303800px;}
.xa4{left:291.428793px;}
.x3e{left:293.555850px;}
.x63{left:294.831450px;}
.x36{left:306.396576px;}
.x77{left:310.563750px;}
.x4{left:319.152600px;}
.x79{left:322.384200px;}
.x2a{left:324.084900px;}
.xa0{left:329.102250px;}
.x1a{left:333.354300px;}
.x7a{left:334.884900px;}
.x4a{left:338.711700px;}
.x1b{left:340.582650px;}
.x58{left:346.365300px;}
.x78{left:350.277000px;}
.x7c{left:354.018750px;}
.x5{left:355.974750px;}
.x4d{left:359.121150px;}
.x7d{left:363.203100px;}
.x4c{left:364.223550px;}
.x4e{left:372.557400px;}
.x39{left:374.173050px;}
.x22{left:376.129050px;}
.x10{left:381.060600px;}
.x9c{left:383.697450px;}
.x23{left:385.398300px;}
.x9d{left:391.351050px;}
.x3a{left:392.881800px;}
.x7e{left:397.644000px;}
.x6{left:399.514950px;}
.x7f{left:402.236100px;}
.x65{left:405.978300px;}
.x64{left:419.499900px;}
.x34{left:425.364696px;}
.x11{left:428.938500px;}
.x57{left:432.765150px;}
.x7b{left:435.996750px;}
.x7{left:443.990400px;}
.x1c{left:461.508600px;}
.x12{left:465.250200px;}
.x3f{left:472.479150px;}
.x5f{left:475.540050px;}
.x2b{left:476.985600px;}
.x89{left:478.346400px;}
.x8{left:479.791950px;}
.x93{left:481.492800px;}
.x8a{left:483.278550px;}
.x1d{left:487.275450px;}
.x66{left:488.636100px;}
.x72{left:492.462300px;}
.x83{left:496.884900px;}
.x5b{left:499.521300px;}
.x94{left:501.137288px;}
.x32{left:502.665627px;}
.x2c{left:504.623400px;}
.x24{left:507.174600px;}
.x68{left:517.379400px;}
.x67{left:519.760500px;}
.x8d{left:524.182556px;}
.x90{left:530.814570px;}
.x25{left:534.982500px;}
.x60{left:540.765150px;}
.x84{left:542.636100px;}
.x61{left:544.421850px;}
.x8c{left:549.269045px;}
.x44{left:551.820300px;}
.x6f{left:564.661650px;}
.x13{left:567.127350px;}
.x1e{left:569.167800px;}
.x14{left:576.396750px;}
.x42{left:577.927350px;}
.x6b{left:589.152600px;}
.x99{left:592.724334px;}
.x73{left:596.380950px;}
.x8b{left:598.336391px;}
.x1f{left:602.843850px;}
.x26{left:604.799850px;}
.x9{left:606.245550px;}
.x40{left:609.051750px;}
.x43{left:611.177700px;}
.x27{left:614.069100px;}
.x85{left:616.790400px;}
.x92{left:618.575326px;}
.x74{left:620.447100px;}
.x41{left:621.807750px;}
.x86{left:629.631300px;}
.xa{left:631.927350px;}
.x2d{left:639.495900px;}
.x8e{left:647.234540px;}
.x2e{left:648.765150px;}
.x15{left:662.456550px;}
.x16{left:671.810850px;}
.xa8{left:678.273236px;}
.x81{left:689.073900px;}
.x97{left:697.832281px;}
.x5d{left:698.853300px;}
.x5e{left:708.292650px;}
.x6e{left:710.843700px;}
.x8f{left:713.395135px;}
.x82{left:719.602950px;}
.x87{left:723.599700px;}
.x9b{left:728.530273px;}
.xb{left:737.036100px;}
.x95{left:738.651996px;}
.x88{left:744.264300px;}
.x9a{left:752.936823px;}
.x70{left:756.510000px;}
.x17{left:764.673900px;}
.x71{left:769.606050px;}
.x2f{left:775.133550px;}
.x98{left:790.865166px;}
.x6c{left:794.097450px;}
.x6d{left:798.944700px;}
.x69{left:807.023400px;}
.x91{left:808.468294px;}
.x96{left:815.526860px;}
.x6a{left:823.266000px;}
.x5c{left:833.640750px;}
@media print{
.v9{vertical-align:-41.121600pt;}
.vc{vertical-align:-17.234667pt;}
.vf{vertical-align:-15.420800pt;}
.v7{vertical-align:-9.978133pt;}
.v4{vertical-align:-6.652800pt;}
.v5{vertical-align:-5.744533pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:0.907988pt;}
.v3{vertical-align:3.626621pt;}
.v2{vertical-align:4.536000pt;}
.v1{vertical-align:10.883200pt;}
.vb{vertical-align:11.792919pt;}
.va{vertical-align:13.305600pt;}
.v6{vertical-align:17.544000pt;}
.ve{vertical-align:19.049067pt;}
.v8{vertical-align:41.121600pt;}
.ls19{letter-spacing:-1.838910pt;}
.ls1a{letter-spacing:-1.834644pt;}
.ls2f{letter-spacing:-1.555200pt;}
.ls3b{letter-spacing:-1.526400pt;}
.ls3f{letter-spacing:-1.521600pt;}
.ls34{letter-spacing:-1.488000pt;}
.ls3a{letter-spacing:-1.483200pt;}
.ls3d{letter-spacing:-1.444800pt;}
.ls37{letter-spacing:-1.382400pt;}
.ls31{letter-spacing:-1.377600pt;}
.ls38{letter-spacing:-1.372800pt;}
.ls32{letter-spacing:-1.350220pt;}
.ls33{letter-spacing:-1.348800pt;}
.ls2e{letter-spacing:-1.344000pt;}
.ls35{letter-spacing:-1.339200pt;}
.ls36{letter-spacing:-1.329600pt;}
.ls5e{letter-spacing:-1.324800pt;}
.ls3c{letter-spacing:-1.320000pt;}
.ls5c{letter-spacing:-1.281600pt;}
.ls39{letter-spacing:-1.224000pt;}
.ls5d{letter-spacing:-1.219200pt;}
.ls5a{letter-spacing:-1.190400pt;}
.ls5b{letter-spacing:-1.180800pt;}
.ls59{letter-spacing:-1.176000pt;}
.ls30{letter-spacing:-1.081456pt;}
.ls29{letter-spacing:-1.075200pt;}
.ls13{letter-spacing:-1.022400pt;}
.ls61{letter-spacing:-1.017600pt;}
.ls16{letter-spacing:-1.012800pt;}
.ls64{letter-spacing:-0.993600pt;}
.ls28{letter-spacing:-0.988800pt;}
.ls60{letter-spacing:-0.921600pt;}
.ls2b{letter-spacing:-0.916800pt;}
.ls6c{letter-spacing:-0.912000pt;}
.ls66{letter-spacing:-0.888000pt;}
.ls63{letter-spacing:-0.883200pt;}
.ls65{letter-spacing:-0.878400pt;}
.ls45{letter-spacing:-0.864000pt;}
.ls62{letter-spacing:-0.844800pt;}
.ls17{letter-spacing:-0.840000pt;}
.ls14{letter-spacing:-0.835200pt;}
.ls12{letter-spacing:-0.815891pt;}
.lsa{letter-spacing:-0.812692pt;}
.ls44{letter-spacing:-0.811200pt;}
.lse{letter-spacing:-0.772800pt;}
.ls69{letter-spacing:-0.768000pt;}
.ls10{letter-spacing:-0.763200pt;}
.ls2a{letter-spacing:-0.748800pt;}
.ls7d{letter-spacing:-0.739200pt;}
.ls58{letter-spacing:-0.724800pt;}
.lsb{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.715200pt;}
.ls41{letter-spacing:-0.710400pt;}
.ls2c{letter-spacing:-0.705600pt;}
.ls43{letter-spacing:-0.700800pt;}
.ls7b{letter-spacing:-0.691200pt;}
.ls18{letter-spacing:-0.686400pt;}
.lsc{letter-spacing:-0.681600pt;}
.ls7e{letter-spacing:-0.675360pt;}
.ls6d{letter-spacing:-0.672000pt;}
.ls68{letter-spacing:-0.662400pt;}
.ls40{letter-spacing:-0.652800pt;}
.lsd{letter-spacing:-0.619200pt;}
.ls2d{letter-spacing:-0.614400pt;}
.ls11{letter-spacing:-0.547127pt;}
.lsf{letter-spacing:-0.543927pt;}
.ls7{letter-spacing:-0.003200pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002844pt;}
.ls85{letter-spacing:0.003726pt;}
.ls74{letter-spacing:0.003733pt;}
.ls6f{letter-spacing:0.004800pt;}
.ls8a{letter-spacing:0.006810pt;}
.ls72{letter-spacing:0.006933pt;}
.ls27{letter-spacing:0.035485pt;}
.ls21{letter-spacing:0.043200pt;}
.ls77{letter-spacing:0.059733pt;}
.ls81{letter-spacing:0.070735pt;}
.ls25{letter-spacing:0.086388pt;}
.ls56{letter-spacing:0.102399pt;}
.ls24{letter-spacing:0.110400pt;}
.ls52{letter-spacing:0.114667pt;}
.ls1f{letter-spacing:0.131040pt;}
.ls8d{letter-spacing:0.136532pt;}
.ls82{letter-spacing:0.201985pt;}
.ls4d{letter-spacing:0.230400pt;}
.ls93{letter-spacing:0.321600pt;}
.ls97{letter-spacing:0.374400pt;}
.ls94{letter-spacing:0.436800pt;}
.ls98{letter-spacing:0.470400pt;}
.ls96{letter-spacing:0.480000pt;}
.ls95{letter-spacing:0.484800pt;}
.ls54{letter-spacing:0.489600pt;}
.ls9b{letter-spacing:0.491993pt;}
.ls91{letter-spacing:0.494400pt;}
.ls92{letter-spacing:0.523200pt;}
.ls9a{letter-spacing:0.559993pt;}
.ls9d{letter-spacing:0.595992pt;}
.ls9e{letter-spacing:0.627992pt;}
.lsa0{letter-spacing:0.639991pt;}
.ls73{letter-spacing:2.651733pt;}
.ls70{letter-spacing:2.652267pt;}
.ls89{letter-spacing:2.676284pt;}
.ls1{letter-spacing:3.432000pt;}
.ls2{letter-spacing:3.532800pt;}
.ls53{letter-spacing:3.760533pt;}
.ls4e{letter-spacing:4.118400pt;}
.ls90{letter-spacing:7.056978pt;}
.ls99{letter-spacing:7.155111pt;}
.ls76{letter-spacing:7.190400pt;}
.ls51{letter-spacing:7.790400pt;}
.ls50{letter-spacing:8.092800pt;}
.ls7f{letter-spacing:8.145600pt;}
.ls71{letter-spacing:8.203200pt;}
.ls8c{letter-spacing:9.173219pt;}
.ls8e{letter-spacing:9.348150pt;}
.ls88{letter-spacing:9.476148pt;}
.ls87{letter-spacing:9.651079pt;}
.ls1c{letter-spacing:10.512000pt;}
.ls23{letter-spacing:10.513227pt;}
.ls20{letter-spacing:10.513760pt;}
.ls22{letter-spacing:10.569600pt;}
.ls1e{letter-spacing:10.814400pt;}
.ls1d{letter-spacing:10.816160pt;}
.ls1b{letter-spacing:10.872000pt;}
.ls75{letter-spacing:11.150400pt;}
.ls46{letter-spacing:11.553600pt;}
.ls84{letter-spacing:11.592388pt;}
.ls80{letter-spacing:11.827200pt;}
.ls0{letter-spacing:11.986556pt;}
.ls4{letter-spacing:12.211200pt;}
.ls4a{letter-spacing:13.233600pt;}
.ls79{letter-spacing:13.536000pt;}
.ls3e{letter-spacing:13.636800pt;}
.ls6a{letter-spacing:14.073600pt;}
.ls47{letter-spacing:14.400000pt;}
.ls49{letter-spacing:14.702400pt;}
.ls6e{letter-spacing:14.750400pt;}
.ls55{letter-spacing:15.004800pt;}
.ls83{letter-spacing:15.087366pt;}
.ls7c{letter-spacing:15.235200pt;}
.ls86{letter-spacing:15.691633pt;}
.ls8b{letter-spacing:15.692166pt;}
.ls8f{letter-spacing:16.585084pt;}
.ls5f{letter-spacing:16.617600pt;}
.ls78{letter-spacing:16.863467pt;}
.ls26{letter-spacing:17.164800pt;}
.ls4f{letter-spacing:17.424000pt;}
.ls5{letter-spacing:17.789833pt;}
.ls48{letter-spacing:17.798400pt;}
.ls42{letter-spacing:18.508800pt;}
.ls9c{letter-spacing:18.795749pt;}
.ls67{letter-spacing:19.036800pt;}
.ls57{letter-spacing:20.236547pt;}
.ls6b{letter-spacing:20.678400pt;}
.ls7a{letter-spacing:20.793760pt;}
.ls3{letter-spacing:21.094771pt;}
.ls9f{letter-spacing:21.219717pt;}
.ls15{letter-spacing:27.504000pt;}
.ls4b{letter-spacing:48.062400pt;}
.ls4c{letter-spacing:82.017600pt;}
.ws4c{word-spacing:-27.552000pt;}
.ws23e{word-spacing:-21.259717pt;}
.ws11c{word-spacing:-20.726400pt;}
.wsfb{word-spacing:-19.084800pt;}
.ws239{word-spacing:-18.835749pt;}
.ws9c{word-spacing:-18.556800pt;}
.wsd3{word-spacing:-16.665600pt;}
.ws14a{word-spacing:-15.283200pt;}
.ws118{word-spacing:-14.121600pt;}
.ws8a{word-spacing:-13.684800pt;}
.ws141{word-spacing:-13.281600pt;}
.ws186{word-spacing:-11.875200pt;}
.wsb2{word-spacing:-11.601600pt;}
.ws243{word-spacing:-0.531993pt;}
.ws3{word-spacing:-0.048000pt;}
.ws2b{word-spacing:-0.042666pt;}
.ws1b8{word-spacing:-0.039999pt;}
.ws83{word-spacing:-0.033600pt;}
.ws226{word-spacing:-0.029866pt;}
.wsb{word-spacing:-0.028796pt;}
.ws22e{word-spacing:-0.028440pt;}
.ws5a{word-spacing:0.000000pt;}
.ws40{word-spacing:0.511932pt;}
.ws6a{word-spacing:0.515131pt;}
.ws103{word-spacing:0.571200pt;}
.ws10d{word-spacing:0.614400pt;}
.wsfe{word-spacing:0.638400pt;}
.wsa2{word-spacing:0.652800pt;}
.wsd9{word-spacing:0.672000pt;}
.ws3f{word-spacing:0.724800pt;}
.ws39{word-spacing:0.780696pt;}
.ws48{word-spacing:0.783895pt;}
.ws4b{word-spacing:0.787200pt;}
.wsdc{word-spacing:0.873600pt;}
.ws82{word-spacing:1.176000pt;}
.ws7b{word-spacing:1.300800pt;}
.ws86{word-spacing:1.435200pt;}
.ws85{word-spacing:1.478400pt;}
.ws55{word-spacing:1.791978pt;}
.ws53{word-spacing:1.796244pt;}
.ws198{word-spacing:6.562051pt;}
.ws12d{word-spacing:6.864981pt;}
.ws223{word-spacing:7.167910pt;}
.wsa7{word-spacing:7.195200pt;}
.wsc5{word-spacing:7.497600pt;}
.ws142{word-spacing:7.896000pt;}
.ws120{word-spacing:8.424000pt;}
.wsa5{word-spacing:8.697600pt;}
.ws11e{word-spacing:9.019200pt;}
.wsd4{word-spacing:9.028800pt;}
.ws7f{word-spacing:9.355200pt;}
.ws89{word-spacing:9.475200pt;}
.ws225{word-spacing:9.554021pt;}
.ws145{word-spacing:9.681600pt;}
.ws23f{word-spacing:9.703871pt;}
.ws26c{word-spacing:9.711871pt;}
.ws72{word-spacing:9.729600pt;}
.ws236{word-spacing:9.759870pt;}
.ws268{word-spacing:9.827869pt;}
.ws79{word-spacing:9.830400pt;}
.ws1c0{word-spacing:9.867868pt;}
.ws1fd{word-spacing:9.875868pt;}
.ws1da{word-spacing:9.883868pt;}
.ws216{word-spacing:9.899868pt;}
.ws267{word-spacing:9.911868pt;}
.wse6{word-spacing:9.916800pt;}
.ws203{word-spacing:9.931868pt;}
.ws1d9{word-spacing:9.943867pt;}
.ws181{word-spacing:9.945600pt;}
.ws1d7{word-spacing:9.963867pt;}
.ws1c8{word-spacing:9.967867pt;}
.ws238{word-spacing:9.971867pt;}
.ws1c7{word-spacing:9.979867pt;}
.ws197{word-spacing:9.983875pt;}
.ws1c2{word-spacing:9.987867pt;}
.ws26d{word-spacing:10.019866pt;}
.ws1de{word-spacing:10.031866pt;}
.ws2a{word-spacing:10.035075pt;}
.ws271{word-spacing:10.035866pt;}
.ws196{word-spacing:10.039341pt;}
.ws24a{word-spacing:10.087865pt;}
.ws224{word-spacing:10.094807pt;}
.ws24d{word-spacing:10.107865pt;}
.ws21{word-spacing:10.111874pt;}
.ws26e{word-spacing:10.123865pt;}
.ws1c1{word-spacing:10.127865pt;}
.ws1e5{word-spacing:10.131865pt;}
.ws250{word-spacing:10.151865pt;}
.ws1d4{word-spacing:10.155865pt;}
.ws27{word-spacing:10.163073pt;}
.ws227{word-spacing:10.167340pt;}
.ws29{word-spacing:10.171606pt;}
.ws215{word-spacing:10.171864pt;}
.ws260{word-spacing:10.179864pt;}
.ws66{word-spacing:10.185600pt;}
.ws1fc{word-spacing:10.191864pt;}
.ws26{word-spacing:10.201472pt;}
.ws211{word-spacing:10.203864pt;}
.ws24e{word-spacing:10.207864pt;}
.ws237{word-spacing:10.211864pt;}
.ws1d3{word-spacing:10.215864pt;}
.ws6e{word-spacing:10.219200pt;}
.ws28{word-spacing:10.239872pt;}
.ws202{word-spacing:10.247863pt;}
.ws93{word-spacing:10.248000pt;}
.ws16b{word-spacing:10.267200pt;}
.ws2c{word-spacing:10.269738pt;}
.ws249{word-spacing:10.275863pt;}
.ws25{word-spacing:10.286805pt;}
.ws175{word-spacing:10.296000pt;}
.ws1ec{word-spacing:10.307863pt;}
.ws22{word-spacing:10.320938pt;}
.ws230{word-spacing:10.338004pt;}
.ws210{word-spacing:10.347862pt;}
.ws134{word-spacing:10.389203pt;}
.ws52{word-spacing:10.410537pt;}
.ws265{word-spacing:10.427861pt;}
.wsbf{word-spacing:10.457469pt;}
.ws54{word-spacing:10.461736pt;}
.ws177{word-spacing:10.464000pt;}
.ws133{word-spacing:10.470269pt;}
.ws23{word-spacing:10.517202pt;}
.ws92{word-spacing:10.521600pt;}
.ws26b{word-spacing:10.523860pt;}
.ws234{word-spacing:10.559859pt;}
.ws57{word-spacing:10.564135pt;}
.ws137{word-spacing:10.569600pt;}
.ws1ee{word-spacing:10.591859pt;}
.ws56{word-spacing:10.611067pt;}
.ws12f{word-spacing:10.628134pt;}
.ws266{word-spacing:10.651858pt;}
.ws24{word-spacing:10.658000pt;}
.ws1a2{word-spacing:10.680000pt;}
.ws1a3{word-spacing:10.684800pt;}
.ws270{word-spacing:10.735857pt;}
.ws43{word-spacing:10.766400pt;}
.ws1b1{word-spacing:10.819200pt;}
.wsb9{word-spacing:10.820131pt;}
.ws1cd{word-spacing:10.823856pt;}
.wsac{word-spacing:10.824000pt;}
.ws25f{word-spacing:10.839855pt;}
.ws1df{word-spacing:10.855855pt;}
.ws20a{word-spacing:10.871855pt;}
.wsae{word-spacing:10.900800pt;}
.ws1ed{word-spacing:10.955854pt;}
.wsbd{word-spacing:10.995063pt;}
.ws1e0{word-spacing:11.091852pt;}
.ws26f{word-spacing:11.095852pt;}
.ws25e{word-spacing:11.099852pt;}
.ws168{word-spacing:11.126400pt;}
.ws25c{word-spacing:11.127852pt;}
.ws1dd{word-spacing:11.147851pt;}
.ws205{word-spacing:11.159851pt;}
.ws129{word-spacing:11.174400pt;}
.ws143{word-spacing:11.188800pt;}
.ws199{word-spacing:11.193600pt;}
.ws45{word-spacing:11.203200pt;}
.ws1b4{word-spacing:11.207851pt;}
.ws23b{word-spacing:11.211851pt;}
.ws106{word-spacing:11.246400pt;}
.ws99{word-spacing:11.265600pt;}
.ws1af{word-spacing:11.289600pt;}
.ws1db{word-spacing:11.315849pt;}
.ws1c9{word-spacing:11.335849pt;}
.wsb6{word-spacing:11.336392pt;}
.ws1dc{word-spacing:11.339849pt;}
.ws36{word-spacing:11.347200pt;}
.ws162{word-spacing:11.356800pt;}
.ws12c{word-spacing:11.383324pt;}
.ws1c6{word-spacing:11.403848pt;}
.ws190{word-spacing:11.408924pt;}
.ws1c5{word-spacing:11.423848pt;}
.ws128{word-spacing:11.428800pt;}
.ws138{word-spacing:11.438400pt;}
.ws10f{word-spacing:11.457600pt;}
.ws206{word-spacing:11.475847pt;}
.ws257{word-spacing:11.499847pt;}
.ws10e{word-spacing:11.553600pt;}
.ws204{word-spacing:11.559846pt;}
.ws1c3{word-spacing:11.563846pt;}
.ws20f{word-spacing:11.599845pt;}
.ws20e{word-spacing:11.619845pt;}
.ws1e{word-spacing:11.625600pt;}
.ws18c{word-spacing:11.640000pt;}
.ws4d{word-spacing:11.659200pt;}
.ws6{word-spacing:11.707200pt;}
.ws125{word-spacing:11.716800pt;}
.ws8{word-spacing:11.726400pt;}
.ws178{word-spacing:11.731200pt;}
.ws18{word-spacing:11.736000pt;}
.ws1a{word-spacing:11.750400pt;}
.wsb7{word-spacing:11.754520pt;}
.ws15{word-spacing:11.760000pt;}
.ws2{word-spacing:11.779200pt;}
.ws139{word-spacing:11.798400pt;}
.ws11{word-spacing:11.803200pt;}
.ws165{word-spacing:11.808000pt;}
.ws7{word-spacing:11.812800pt;}
.ws14{word-spacing:11.817600pt;}
.ws76{word-spacing:11.827200pt;}
.ws1f5{word-spacing:11.831842pt;}
.ws184{word-spacing:11.831947pt;}
.ws8c{word-spacing:11.832000pt;}
.ws1f{word-spacing:11.841600pt;}
.ws12{word-spacing:11.846400pt;}
.wsf{word-spacing:11.851200pt;}
.ws4{word-spacing:11.860800pt;}
.wsd{word-spacing:11.865600pt;}
.ws9{word-spacing:11.875200pt;}
.ws1b{word-spacing:11.880000pt;}
.ws10{word-spacing:11.889600pt;}
.ws13{word-spacing:11.913600pt;}
.ws1b2{word-spacing:11.923200pt;}
.ws1d{word-spacing:11.928000pt;}
.ws20{word-spacing:11.932800pt;}
.ws17{word-spacing:11.937600pt;}
.ws16{word-spacing:11.942400pt;}
.ws5{word-spacing:11.952000pt;}
.ws1c{word-spacing:11.961600pt;}
.wsa{word-spacing:11.971200pt;}
.ws19{word-spacing:11.990400pt;}
.wse{word-spacing:12.009600pt;}
.ws2e{word-spacing:12.014400pt;}
.ws144{word-spacing:12.024000pt;}
.ws173{word-spacing:12.038400pt;}
.ws1cb{word-spacing:12.079839pt;}
.ws16c{word-spacing:12.081600pt;}
.ws8e{word-spacing:12.086400pt;}
.ws1f3{word-spacing:12.087839pt;}
.ws1f6{word-spacing:12.103839pt;}
.ws34{word-spacing:12.105600pt;}
.wsc{word-spacing:12.110400pt;}
.ws18f{word-spacing:12.147048pt;}
.ws21a{word-spacing:12.202514pt;}
.ws172{word-spacing:12.206400pt;}
.ws21c{word-spacing:12.232380pt;}
.ws1cf{word-spacing:12.247837pt;}
.ws15b{word-spacing:12.254400pt;}
.ws188{word-spacing:12.259200pt;}
.wsd5{word-spacing:12.264000pt;}
.ws51{word-spacing:12.273600pt;}
.ws19c{word-spacing:12.302400pt;}
.ws15c{word-spacing:12.336000pt;}
.ws1ce{word-spacing:12.367835pt;}
.wsff{word-spacing:12.369600pt;}
.ws1cc{word-spacing:12.379835pt;}
.ws21d{word-spacing:12.381712pt;}
.ws1f8{word-spacing:12.383835pt;}
.ws1d0{word-spacing:12.403835pt;}
.ws18e{word-spacing:12.412800pt;}
.ws1d2{word-spacing:12.431834pt;}
.ws262{word-spacing:12.439834pt;}
.ws46{word-spacing:12.451200pt;}
.ws1ff{word-spacing:12.459834pt;}
.ws261{word-spacing:12.467834pt;}
.ws1fe{word-spacing:12.471834pt;}
.ws263{word-spacing:12.479834pt;}
.ws1d1{word-spacing:12.527833pt;}
.ws88{word-spacing:12.556800pt;}
.ws81{word-spacing:12.561600pt;}
.wsb5{word-spacing:12.573709pt;}
.ws130{word-spacing:12.586509pt;}
.ws15a{word-spacing:12.600000pt;}
.ws25b{word-spacing:12.603832pt;}
.ws25a{word-spacing:12.607832pt;}
.ws218{word-spacing:12.612109pt;}
.ws176{word-spacing:12.624000pt;}
.wsa8{word-spacing:12.638400pt;}
.ws84{word-spacing:12.657600pt;}
.ws20d{word-spacing:12.683831pt;}
.wsf2{word-spacing:12.686400pt;}
.ws157{word-spacing:12.696000pt;}
.wsed{word-spacing:12.705600pt;}
.ws10b{word-spacing:12.715200pt;}
.wsfc{word-spacing:12.734400pt;}
.ws87{word-spacing:12.739200pt;}
.ws1e4{word-spacing:12.743830pt;}
.ws220{word-spacing:12.757174pt;}
.ws14c{word-spacing:12.758400pt;}
.ws180{word-spacing:12.768000pt;}
.wsad{word-spacing:12.777600pt;}
.ws2f{word-spacing:12.811200pt;}
.ws1b5{word-spacing:12.811829pt;}
.ws35{word-spacing:12.820800pt;}
.wsfd{word-spacing:12.849600pt;}
.ws222{word-spacing:12.876639pt;}
.wsc3{word-spacing:12.878400pt;}
.wsba{word-spacing:12.910772pt;}
.ws21e{word-spacing:12.936372pt;}
.wsc6{word-spacing:12.940800pt;}
.ws1e3{word-spacing:12.963827pt;}
.ws251{word-spacing:12.979827pt;}
.ws44{word-spacing:13.003200pt;}
.ws217{word-spacing:13.055837pt;}
.ws20c{word-spacing:13.067826pt;}
.ws22b{word-spacing:13.072903pt;}
.ws5b{word-spacing:13.104000pt;}
.wsc0{word-spacing:13.113600pt;}
.ws6f{word-spacing:13.128000pt;}
.ws20b{word-spacing:13.167824pt;}
.ws14d{word-spacing:13.195200pt;}
.ws14e{word-spacing:13.243200pt;}
.ws22d{word-spacing:13.316100pt;}
.wsa0{word-spacing:13.320000pt;}
.ws22f{word-spacing:13.333167pt;}
.ws248{word-spacing:13.343822pt;}
.wsf5{word-spacing:13.372800pt;}
.ws208{word-spacing:13.379822pt;}
.wse9{word-spacing:13.396800pt;}
.ws15d{word-spacing:13.416000pt;}
.ws126{word-spacing:13.440000pt;}
.wsf3{word-spacing:13.459200pt;}
.wsf1{word-spacing:13.468800pt;}
.ws25d{word-spacing:13.475820pt;}
.ws1d6{word-spacing:13.483820pt;}
.ws194{word-spacing:13.495298pt;}
.ws19e{word-spacing:13.512000pt;}
.ws247{word-spacing:13.515820pt;}
.ws12e{word-spacing:13.516631pt;}
.wsec{word-spacing:13.536000pt;}
.wsa4{word-spacing:13.545600pt;}
.ws74{word-spacing:13.564800pt;}
.ws1aa{word-spacing:13.579200pt;}
.ws1d5{word-spacing:13.591819pt;}
.ws22a{word-spacing:13.614763pt;}
.ws32{word-spacing:13.617600pt;}
.wseb{word-spacing:13.627200pt;}
.ws228{word-spacing:13.627563pt;}
.ws19d{word-spacing:13.656000pt;}
.ws150{word-spacing:13.660800pt;}
.wsf7{word-spacing:13.665600pt;}
.ws121{word-spacing:13.675200pt;}
.ws207{word-spacing:13.679818pt;}
.ws31{word-spacing:13.689600pt;}
.ws15e{word-spacing:13.694400pt;}
.wsea{word-spacing:13.708800pt;}
.ws33{word-spacing:13.761600pt;}
.ws153{word-spacing:13.766400pt;}
.wsd8{word-spacing:13.776000pt;}
.ws235{word-spacing:13.783816pt;}
.ws193{word-spacing:13.836627pt;}
.ws192{word-spacing:13.840894pt;}
.ws6c{word-spacing:13.848000pt;}
.wsf4{word-spacing:13.867200pt;}
.ws71{word-spacing:13.881600pt;}
.ws1bb{word-spacing:13.883815pt;}
.ws116{word-spacing:13.896000pt;}
.wsb3{word-spacing:13.913426pt;}
.ws6b{word-spacing:13.939200pt;}
.ws1ba{word-spacing:13.943814pt;}
.ws69{word-spacing:13.963200pt;}
.ws200{word-spacing:13.963814pt;}
.wsb4{word-spacing:13.977425pt;}
.ws114{word-spacing:14.030400pt;}
.wsc7{word-spacing:14.068800pt;}
.ws1b0{word-spacing:14.088000pt;}
.ws21b{word-spacing:14.092624pt;}
.ws8d{word-spacing:14.092800pt;}
.ws152{word-spacing:14.150400pt;}
.ws70{word-spacing:14.217600pt;}
.ws1d8{word-spacing:14.247810pt;}
.ws214{word-spacing:14.299809pt;}
.wsd7{word-spacing:14.313600pt;}
.ws62{word-spacing:14.371200pt;}
.ws1e1{word-spacing:14.391808pt;}
.ws233{word-spacing:14.415808pt;}
.ws1a7{word-spacing:14.438400pt;}
.ws22c{word-spacing:14.447789pt;}
.ws108{word-spacing:14.452800pt;}
.ws17c{word-spacing:14.457600pt;}
.ws1f4{word-spacing:14.463807pt;}
.ws258{word-spacing:14.483807pt;}
.ws1c4{word-spacing:14.491807pt;}
.ws1f7{word-spacing:14.555806pt;}
.ws148{word-spacing:14.592000pt;}
.wsa6{word-spacing:14.702400pt;}
.ws16f{word-spacing:14.731200pt;}
.ws9a{word-spacing:14.736000pt;}
.ws4f{word-spacing:14.740800pt;}
.wsdf{word-spacing:14.755200pt;}
.ws10c{word-spacing:14.760000pt;}
.ws1e2{word-spacing:14.799803pt;}
.ws219{word-spacing:14.813681pt;}
.ws8f{word-spacing:14.832000pt;}
.ws1be{word-spacing:14.883802pt;}
.ws113{word-spacing:14.884800pt;}
.ws187{word-spacing:14.904000pt;}
.wsb8{word-spacing:14.958746pt;}
.ws18d{word-spacing:15.033600pt;}
.ws3a{word-spacing:15.057600pt;}
.wsdd{word-spacing:15.086400pt;}
.ws1bd{word-spacing:15.103799pt;}
.ws38{word-spacing:15.105600pt;}
.ws245{word-spacing:15.107799pt;}
.ws244{word-spacing:15.151798pt;}
.ws13d{word-spacing:15.196800pt;}
.ws246{word-spacing:15.199797pt;}
.ws9b{word-spacing:15.220800pt;}
.wsf0{word-spacing:15.278400pt;}
.ws107{word-spacing:15.288000pt;}
.ws6d{word-spacing:15.340800pt;}
.ws132{word-spacing:15.351275pt;}
.ws155{word-spacing:15.355200pt;}
.ws191{word-spacing:15.355541pt;}
.ws105{word-spacing:15.364800pt;}
.wsef{word-spacing:15.388800pt;}
.ws75{word-spacing:15.427200pt;}
.ws110{word-spacing:15.436800pt;}
.ws96{word-spacing:15.484800pt;}
.ws1a5{word-spacing:15.504000pt;}
.ws97{word-spacing:15.523200pt;}
.wsf6{word-spacing:15.532800pt;}
.ws131{word-spacing:15.568872pt;}
.ws30{word-spacing:15.590400pt;}
.wsb1{word-spacing:15.604800pt;}
.ws221{word-spacing:15.654204pt;}
.ws21f{word-spacing:15.656855pt;}
.wsab{word-spacing:15.662400pt;}
.wsbb{word-spacing:15.667004pt;}
.wsbe{word-spacing:15.705404pt;}
.ws1bc{word-spacing:15.707791pt;}
.ws115{word-spacing:15.729600pt;}
.wsf9{word-spacing:15.753600pt;}
.ws13c{word-spacing:15.811200pt;}
.ws12b{word-spacing:15.816336pt;}
.wsbc{word-spacing:15.820602pt;}
.ws151{word-spacing:15.825600pt;}
.ws163{word-spacing:15.864000pt;}
.ws13b{word-spacing:15.902400pt;}
.ws18a{word-spacing:15.916800pt;}
.wsaa{word-spacing:15.921600pt;}
.ws232{word-spacing:15.927788pt;}
.ws195{word-spacing:15.961400pt;}
.ws4e{word-spacing:15.969600pt;}
.ws117{word-spacing:15.979200pt;}
.ws240{word-spacing:15.979787pt;}
.ws169{word-spacing:15.993600pt;}
.ws189{word-spacing:16.012800pt;}
.ws147{word-spacing:16.060800pt;}
.ws3b{word-spacing:16.104000pt;}
.ws154{word-spacing:16.128000pt;}
.ws17a{word-spacing:16.185600pt;}
.ws68{word-spacing:16.195200pt;}
.ws4a{word-spacing:16.224000pt;}
.ws241{word-spacing:16.263783pt;}
.wsaf{word-spacing:16.267200pt;}
.ws15f{word-spacing:16.286400pt;}
.ws1f2{word-spacing:16.311783pt;}
.ws77{word-spacing:16.334400pt;}
.ws12a{word-spacing:16.392328pt;}
.wsd0{word-spacing:16.449600pt;}
.wsee{word-spacing:16.492800pt;}
.ws112{word-spacing:16.531200pt;}
.wscd{word-spacing:16.545600pt;}
.ws242{word-spacing:16.559779pt;}
.ws185{word-spacing:16.584000pt;}
.ws1fa{word-spacing:16.595779pt;}
.ws1f9{word-spacing:16.615778pt;}
.ws182{word-spacing:16.617600pt;}
.ws146{word-spacing:16.632000pt;}
.ws149{word-spacing:16.651200pt;}
.ws98{word-spacing:16.660800pt;}
.wse1{word-spacing:16.713600pt;}
.ws161{word-spacing:16.732800pt;}
.ws256{word-spacing:16.775776pt;}
.ws160{word-spacing:16.780800pt;}
.ws229{word-spacing:16.810555pt;}
.ws1e8{word-spacing:16.835776pt;}
.ws213{word-spacing:16.847775pt;}
.ws65{word-spacing:16.872000pt;}
.wsce{word-spacing:16.881600pt;}
.ws1e7{word-spacing:16.915774pt;}
.ws174{word-spacing:16.920000pt;}
.ws16a{word-spacing:16.972800pt;}
.ws1e6{word-spacing:17.003773pt;}
.wscf{word-spacing:17.016000pt;}
.ws183{word-spacing:17.073600pt;}
.ws124{word-spacing:17.174400pt;}
.wsa3{word-spacing:17.294400pt;}
.ws14b{word-spacing:17.323200pt;}
.ws17d{word-spacing:17.385600pt;}
.ws170{word-spacing:17.395200pt;}
.ws17f{word-spacing:17.424000pt;}
.wsb0{word-spacing:17.505600pt;}
.ws1e9{word-spacing:17.507767pt;}
.ws18b{word-spacing:17.544000pt;}
.wse0{word-spacing:17.553600pt;}
.ws23a{word-spacing:17.635765pt;}
.ws17e{word-spacing:17.640000pt;}
.ws1ea{word-spacing:17.647765pt;}
.ws1fb{word-spacing:17.675764pt;}
.wsc4{word-spacing:17.678400pt;}
.ws269{word-spacing:17.715764pt;}
.ws9e{word-spacing:17.721600pt;}
.ws1eb{word-spacing:17.819762pt;}
.wsd6{word-spacing:17.827200pt;}
.ws252{word-spacing:17.839762pt;}
.ws90{word-spacing:17.856000pt;}
.ws3e{word-spacing:17.956800pt;}
.ws3c{word-spacing:18.062400pt;}
.ws156{word-spacing:18.081600pt;}
.ws63{word-spacing:18.158400pt;}
.wse3{word-spacing:18.182400pt;}
.ws209{word-spacing:18.267756pt;}
.wse2{word-spacing:18.312000pt;}
.ws167{word-spacing:18.460800pt;}
.ws201{word-spacing:18.483754pt;}
.ws159{word-spacing:18.518400pt;}
.ws67{word-spacing:18.547200pt;}
.ws24c{word-spacing:18.579752pt;}
.wse5{word-spacing:18.619200pt;}
.ws2d{word-spacing:18.667200pt;}
.wsc1{word-spacing:18.686400pt;}
.ws123{word-spacing:18.715200pt;}
.ws24b{word-spacing:18.715750pt;}
.ws127{word-spacing:18.734400pt;}
.wsca{word-spacing:18.768000pt;}
.ws212{word-spacing:18.799749pt;}
.ws24f{word-spacing:18.855749pt;}
.wse4{word-spacing:18.897600pt;}
.ws231{word-spacing:18.923748pt;}
.wscb{word-spacing:18.950400pt;}
.wsc8{word-spacing:18.998400pt;}
.wscc{word-spacing:19.008000pt;}
.ws158{word-spacing:19.036800pt;}
.ws91{word-spacing:19.219200pt;}
.ws95{word-spacing:19.291200pt;}
.wsc9{word-spacing:19.324800pt;}
.ws1ad{word-spacing:19.497600pt;}
.ws5e{word-spacing:19.502400pt;}
.ws42{word-spacing:19.641600pt;}
.ws255{word-spacing:19.663738pt;}
.ws254{word-spacing:19.667738pt;}
.ws253{word-spacing:19.683738pt;}
.ws109{word-spacing:19.694400pt;}
.ws179{word-spacing:19.708800pt;}
.ws259{word-spacing:19.743737pt;}
.wse8{word-spacing:19.752000pt;}
.ws5d{word-spacing:19.776000pt;}
.ws5c{word-spacing:19.780800pt;}
.ws23c{word-spacing:19.919734pt;}
.ws60{word-spacing:19.963200pt;}
.ws94{word-spacing:19.972800pt;}
.wsd1{word-spacing:19.992000pt;}
.ws13e{word-spacing:20.011200pt;}
.ws9d{word-spacing:20.059200pt;}
.ws1a8{word-spacing:20.102400pt;}
.ws111{word-spacing:20.116800pt;}
.ws16d{word-spacing:20.136000pt;}
.wsd2{word-spacing:20.208000pt;}
.ws135{word-spacing:20.260800pt;}
.ws58{word-spacing:20.264357pt;}
.wsde{word-spacing:20.275200pt;}
.ws166{word-spacing:20.299200pt;}
.wsfa{word-spacing:20.366400pt;}
.ws1a4{word-spacing:20.400000pt;}
.ws11f{word-spacing:20.553600pt;}
.ws119{word-spacing:20.577600pt;}
.ws8b{word-spacing:20.620800pt;}
.ws7e{word-spacing:20.664000pt;}
.ws50{word-spacing:20.668800pt;}
.wsa9{word-spacing:20.803200pt;}
.ws17b{word-spacing:20.832000pt;}
.ws7d{word-spacing:20.908800pt;}
.wsf8{word-spacing:20.966400pt;}
.ws136{word-spacing:21.033600pt;}
.ws23d{word-spacing:21.175718pt;}
.ws11b{word-spacing:21.220800pt;}
.ws11a{word-spacing:21.336000pt;}
.ws3d{word-spacing:21.508800pt;}
.ws11d{word-spacing:21.523200pt;}
.ws13a{word-spacing:21.676800pt;}
.ws10a{word-spacing:21.859200pt;}
.ws1b3{word-spacing:21.940800pt;}
.ws41{word-spacing:22.017600pt;}
.ws61{word-spacing:22.041600pt;}
.ws1a9{word-spacing:22.233600pt;}
.ws5f{word-spacing:22.243200pt;}
.ws14f{word-spacing:22.320000pt;}
.ws19a{word-spacing:22.920000pt;}
.wse7{word-spacing:22.968000pt;}
.ws171{word-spacing:23.025600pt;}
.ws1ef{word-spacing:23.231690pt;}
.ws1f1{word-spacing:23.291689pt;}
.ws1f0{word-spacing:23.487687pt;}
.ws37{word-spacing:23.548800pt;}
.ws13f{word-spacing:23.875200pt;}
.ws264{word-spacing:23.923681pt;}
.ws73{word-spacing:24.129600pt;}
.ws164{word-spacing:24.614400pt;}
.ws7a{word-spacing:24.700800pt;}
.ws1bf{word-spacing:24.727670pt;}
.ws80{word-spacing:24.787200pt;}
.wsc2{word-spacing:24.840000pt;}
.ws1a6{word-spacing:25.257600pt;}
.ws1b6{word-spacing:25.487660pt;}
.ws1b9{word-spacing:25.707657pt;}
.ws1b7{word-spacing:25.959654pt;}
.ws100{word-spacing:26.107200pt;}
.ws101{word-spacing:26.174400pt;}
.ws122{word-spacing:26.246400pt;}
.ws0{word-spacing:26.442799pt;}
.ws1{word-spacing:26.485466pt;}
.ws102{word-spacing:26.625600pt;}
.ws104{word-spacing:26.659200pt;}
.ws1ca{word-spacing:26.783643pt;}
.ws140{word-spacing:26.851200pt;}
.ws7c{word-spacing:26.880000pt;}
.ws1ac{word-spacing:27.384000pt;}
.ws9f{word-spacing:27.456000pt;}
.ws1ae{word-spacing:28.022400pt;}
.ws78{word-spacing:28.036800pt;}
.ws19f{word-spacing:28.660800pt;}
.ws1a1{word-spacing:28.761600pt;}
.ws26a{word-spacing:28.771616pt;}
.wsdb{word-spacing:29.030400pt;}
.ws1a0{word-spacing:29.131200pt;}
.wsda{word-spacing:29.174400pt;}
.wsa1{word-spacing:29.299200pt;}
.ws19b{word-spacing:29.822400pt;}
.ws64{word-spacing:32.836800pt;}
.ws1ab{word-spacing:33.432000pt;}
.ws16e{word-spacing:34.152000pt;}
.ws47{word-spacing:35.731200pt;}
.ws49{word-spacing:36.192000pt;}
.ws59{word-spacing:164.769600pt;}
._c{margin-left:-28.392000pt;}
._22{margin-left:-21.459900pt;}
._21{margin-left:-20.274146pt;}
._17{margin-left:-19.348800pt;}
._18{margin-left:-18.355200pt;}
._20{margin-left:-17.117229pt;}
._15{margin-left:-15.597857pt;}
._14{margin-left:-14.344543pt;}
._1c{margin-left:-12.897600pt;}
._1b{margin-left:-11.553600pt;}
._1f{margin-left:-7.507200pt;}
._9{margin-left:-2.240893pt;}
._4{margin-left:-1.028254pt;}
._6{width:1.292784pt;}
._d{width:2.602634pt;}
._2{width:3.614400pt;}
._1a{width:7.027187pt;}
._5{width:9.395083pt;}
._1d{width:10.431870pt;}
._3{width:11.327858pt;}
._1{width:12.892800pt;}
._8{width:13.843200pt;}
._11{width:14.955386pt;}
._b{width:16.396800pt;}
._a{width:17.413693pt;}
._1e{width:18.609934pt;}
._7{width:19.651200pt;}
._16{width:21.042493pt;}
._12{width:23.273427pt;}
._13{width:24.300865pt;}
._24{width:25.232098pt;}
._19{width:26.485803pt;}
._0{width:27.498804pt;}
._23{width:28.392000pt;}
._25{width:29.779603pt;}
._10{width:33.909173pt;}
._f{width:1061.707643pt;}
._e{width:1638.281388pt;}
.fs9{font-size:25.497600pt;}
.fsd{font-size:26.662400pt;}
.fs4{font-size:28.440000pt;}
.fs7{font-size:28.684800pt;}
.fsc{font-size:29.865600pt;}
.fs3{font-size:31.995733pt;}
.fsb{font-size:33.600000pt;}
.fs8{font-size:37.183467pt;}
.fse{font-size:39.999467pt;}
.fs6{font-size:41.832000pt;}
.fs5{font-size:42.666133pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.667200pt;}
.fsa{font-size:61.332800pt;}
.fs0{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:64.478667pt;}
.y4b{bottom:65.385733pt;}
.y49{bottom:81.259733pt;}
.y115{bottom:142.866133pt;}
.y17c{bottom:144.601200pt;}
.y10c{bottom:144.602400pt;}
.y94{bottom:144.602933pt;}
.y48{bottom:144.603067pt;}
.y3f{bottom:144.603600pt;}
.y114{bottom:144.603717pt;}
.y9e{bottom:144.604133pt;}
.y41{bottom:144.604667pt;}
.y1a4{bottom:144.604814pt;}
.y1f6{bottom:144.605292pt;}
.y40{bottom:149.971600pt;}
.y182{bottom:150.046749pt;}
.y113{bottom:156.622767pt;}
.y1a3{bottom:156.623654pt;}
.y1f5{bottom:156.926128pt;}
.y9b{bottom:158.663333pt;}
.y9d{bottom:158.664533pt;}
.y17b{bottom:158.812800pt;}
.y10b{bottom:158.814000pt;}
.y93{bottom:158.814533pt;}
.y47{bottom:158.814667pt;}
.y3e{bottom:158.815200pt;}
.y181{bottom:161.990067pt;}
.y9c{bottom:163.955867pt;}
.y112{bottom:168.641817pt;}
.y1a2{bottom:168.642494pt;}
.y1f4{bottom:169.246963pt;}
.y9a{bottom:172.648133pt;}
.y17a{bottom:172.797600pt;}
.y10a{bottom:172.950000pt;}
.y92{bottom:173.026133pt;}
.y3b{bottom:173.026267pt;}
.y3d{bottom:173.026800pt;}
.y180{bottom:174.009116pt;}
.y3c{bottom:178.393600pt;}
.y111{bottom:180.660867pt;}
.y1a1{bottom:180.661333pt;}
.y1f3{bottom:181.492800pt;}
.y1a0{bottom:185.045600pt;}
.y1f2{bottom:185.952667pt;}
.y17f{bottom:186.028166pt;}
.y99{bottom:186.632933pt;}
.y179{bottom:187.009200pt;}
.y109{bottom:187.161600pt;}
.y8f{bottom:187.161733pt;}
.y91{bottom:187.162133pt;}
.y3a{bottom:187.237867pt;}
.y90{bottom:192.529067pt;}
.y110{bottom:192.604184pt;}
.y1f1{bottom:193.513141pt;}
.y19f{bottom:197.282267pt;}
.y17e{bottom:198.047216pt;}
.y98{bottom:198.651867pt;}
.y97{bottom:200.614133pt;}
.y107{bottom:201.144667pt;}
.y178{bottom:201.145200pt;}
.y108{bottom:201.146400pt;}
.y8e{bottom:201.372133pt;}
.y39{bottom:201.523867pt;}
.y10f{bottom:204.623234pt;}
.y1f0{bottom:205.758978pt;}
.y17d{bottom:209.990533pt;}
.y96{bottom:214.598933pt;}
.y106{bottom:215.356267pt;}
.y177{bottom:215.356800pt;}
.y8d{bottom:215.356933pt;}
.y36{bottom:215.734267pt;}
.y38{bottom:215.735467pt;}
.y10e{bottom:216.642284pt;}
.y1ef{bottom:218.079814pt;}
.y37{bottom:221.026800pt;}
.y19e{bottom:227.821067pt;}
.y95{bottom:228.659333pt;}
.y10d{bottom:228.661333pt;}
.y174{bottom:229.491733pt;}
.y105{bottom:229.492267pt;}
.y176{bottom:229.492800pt;}
.y8c{bottom:229.568533pt;}
.y35{bottom:229.945867pt;}
.y1ee{bottom:230.400649pt;}
.y175{bottom:234.859733pt;}
.y19d{bottom:241.804667pt;}
.y1ed{bottom:242.646486pt;}
.y104{bottom:243.628267pt;}
.y8b{bottom:243.703333pt;}
.y46{bottom:244.156267pt;}
.y32{bottom:244.156533pt;}
.y34{bottom:244.157467pt;}
.y33{bottom:249.448800pt;}
.y1ec{bottom:254.967322pt;}
.y103{bottom:257.838667pt;}
.y173{bottom:257.839333pt;}
.y8a{bottom:257.914933pt;}
.y45{bottom:258.367867pt;}
.y31{bottom:258.368133pt;}
.y19c{bottom:259.946267pt;}
.yab{bottom:264.869100pt;}
.y1eb{bottom:267.213159pt;}
.y100{bottom:271.973600pt;}
.y102{bottom:271.974667pt;}
.y172{bottom:272.050933pt;}
.y89{bottom:272.126533pt;}
.y44{bottom:272.579467pt;}
.y30{bottom:272.579733pt;}
.y42{bottom:272.579867pt;}
.yaa{bottom:276.812417pt;}
.y101{bottom:277.341733pt;}
.y43{bottom:277.870800pt;}
.y1ea{bottom:279.533994pt;}
.y19b{bottom:281.489867pt;}
.yff{bottom:286.185200pt;}
.y171{bottom:286.185733pt;}
.y88{bottom:286.262533pt;}
.ya9{bottom:288.831467pt;}
.y170{bottom:291.552667pt;}
.y1e9{bottom:291.854830pt;}
.y19a{bottom:295.474667pt;}
.ya7{bottom:299.036133pt;}
.yfe{bottom:300.321200pt;}
.y16e{bottom:300.396267pt;}
.y87{bottom:300.474133pt;}
.ya6{bottom:300.849450pt;}
.ya8{bottom:300.850400pt;}
.y1e8{bottom:304.100667pt;}
.y16f{bottom:304.705467pt;}
.y1e7{bottom:308.560533pt;}
.y199{bottom:309.459467pt;}
.ya5{bottom:312.868500pt;}
.yfd{bottom:314.531600pt;}
.y16d{bottom:314.532267pt;}
.y86{bottom:314.608933pt;}
.y1e6{bottom:316.120225pt;}
.y198{bottom:323.444267pt;}
.ya4{bottom:324.811817pt;}
.yfb{bottom:326.702267pt;}
.y1e5{bottom:328.441061pt;}
.yfa{bottom:328.666533pt;}
.yfc{bottom:328.667600pt;}
.y16c{bottom:328.743867pt;}
.y85{bottom:328.819333pt;}
.y2f{bottom:332.069733pt;}
.ya3{bottom:336.830867pt;}
.y197{bottom:337.429067pt;}
.y1e4{bottom:340.686898pt;}
.y16b{bottom:342.872000pt;}
.yf9{bottom:342.878133pt;}
.y84{bottom:343.029733pt;}
.y2d{bottom:346.658133pt;}
.y2e{bottom:347.792133pt;}
.ya2{bottom:348.849916pt;}
.y196{bottom:351.489467pt;}
.y1e3{bottom:353.007733pt;}
.yf6{bottom:357.012400pt;}
.y82{bottom:357.012933pt;}
.yf8{bottom:357.014133pt;}
.y16a{bottom:357.083600pt;}
.y1e2{bottom:357.467600pt;}
.ya1{bottom:360.868966pt;}
.y83{bottom:362.305467pt;}
.yf7{bottom:362.381067pt;}
.y1e1{bottom:365.026928pt;}
.y195{bottom:365.474267pt;}
.y2c{bottom:368.121867pt;}
.y81{bottom:371.148933pt;}
.y169{bottom:371.219600pt;}
.yf5{bottom:371.224000pt;}
.ya0{bottom:372.812284pt;}
.y1e0{bottom:377.272764pt;}
.y194{bottom:379.459067pt;}
.y2b{bottom:382.106667pt;}
.y9f{bottom:384.831333pt;}
.yf4{bottom:385.360000pt;}
.y7f{bottom:385.360533pt;}
.y168{bottom:385.430000pt;}
.y1df{bottom:389.593600pt;}
.y80{bottom:390.651867pt;}
.y193{bottom:393.443867pt;}
.y1de{bottom:393.977867pt;}
.y2a{bottom:396.091467pt;}
.yf1{bottom:399.344267pt;}
.yf3{bottom:399.344800pt;}
.y167{bottom:399.566000pt;}
.y7d{bottom:399.570533pt;}
.y1dd{bottom:401.537795pt;}
.yf2{bottom:404.711733pt;}
.y7e{bottom:404.862933pt;}
.y192{bottom:407.428667pt;}
.y29{bottom:410.076267pt;}
.yee{bottom:413.554667pt;}
.y7c{bottom:413.555333pt;}
.yf0{bottom:413.555867pt;}
.y166{bottom:413.777600pt;}
.y1dc{bottom:413.858631pt;}
.yef{bottom:418.847067pt;}
.y191{bottom:421.487867pt;}
.y28{bottom:424.136667pt;}
.y1db{bottom:426.179467pt;}
.yed{bottom:427.690667pt;}
.y7b{bottom:427.691333pt;}
.y165{bottom:427.762400pt;}
.y1da{bottom:430.563733pt;}
.y190{bottom:435.472667pt;}
.y27{bottom:438.121467pt;}
.y1d9{bottom:438.123789pt;}
.yea{bottom:441.901200pt;}
.y7a{bottom:441.901733pt;}
.yec{bottom:441.902267pt;}
.y164{bottom:441.972800pt;}
.y13d{bottom:443.185600pt;}
.yeb{bottom:447.193600pt;}
.y18f{bottom:449.457467pt;}
.y1d8{bottom:450.444625pt;}
.y26{bottom:452.106267pt;}
.ye9{bottom:456.037200pt;}
.y163{bottom:456.108800pt;}
.y79{bottom:456.112133pt;}
.y13c{bottom:457.321600pt;}
.y1d7{bottom:462.765461pt;}
.y18e{bottom:463.442267pt;}
.y25{bottom:466.091067pt;}
.ye8{bottom:470.247600pt;}
.y78{bottom:470.248133pt;}
.y162{bottom:470.320400pt;}
.y13b{bottom:471.457600pt;}
.y1d6{bottom:475.011298pt;}
.ye7{bottom:484.383600pt;}
.y161{bottom:484.456400pt;}
.y77{bottom:484.459200pt;}
.y13a{bottom:485.593600pt;}
.y24{bottom:485.895867pt;}
.y1d5{bottom:487.332133pt;}
.y1d4{bottom:491.792000pt;}
.y18d{bottom:492.922667pt;}
.ye4{bottom:498.589867pt;}
.y76{bottom:498.593467pt;}
.ye6{bottom:498.595200pt;}
.y160{bottom:498.666800pt;}
.y1d3{bottom:499.351328pt;}
.y138{bottom:499.566933pt;}
.ye5{bottom:503.886533pt;}
.y139{bottom:504.944800pt;}
.y18c{bottom:506.907467pt;}
.y1d2{bottom:511.597164pt;}
.ye3{bottom:512.725867pt;}
.y15f{bottom:512.802800pt;}
.y75{bottom:512.805067pt;}
.y137{bottom:513.702933pt;}
.y18b{bottom:520.892267pt;}
.y1d1{bottom:523.918000pt;}
.y23{bottom:524.825067pt;}
.ye2{bottom:526.936267pt;}
.y15e{bottom:527.014400pt;}
.y74{bottom:527.016667pt;}
.y136{bottom:527.838933pt;}
.y1d0{bottom:528.302267pt;}
.y22{bottom:529.587333pt;}
.y18a{bottom:534.951467pt;}
.y1cf{bottom:535.861959pt;}
.y21{bottom:538.128933pt;}
.y72{bottom:539.187200pt;}
.ye1{bottom:541.072267pt;}
.y15d{bottom:541.150400pt;}
.y73{bottom:541.152667pt;}
.y71{bottom:541.153200pt;}
.y135{bottom:542.050533pt;}
.y20{bottom:542.891200pt;}
.y1ce{bottom:548.182794pt;}
.y189{bottom:548.936267pt;}
.y1f{bottom:551.281794pt;}
.y6f{bottom:553.322667pt;}
.ye0{bottom:555.208267pt;}
.y6e{bottom:555.359200pt;}
.y15c{bottom:555.360800pt;}
.y70{bottom:555.363600pt;}
.y134{bottom:556.186533pt;}
.y1cd{bottom:560.503630pt;}
.y188{bottom:562.921067pt;}
.ydf{bottom:569.268667pt;}
.y15b{bottom:569.345600pt;}
.y6d{bottom:569.495200pt;}
.y133{bottom:570.322533pt;}
.y1cc{bottom:572.749467pt;}
.y187{bottom:576.905867pt;}
.y1cb{bottom:577.209333pt;}
.y1e{bottom:577.436133pt;}
.y1d{bottom:582.122667pt;}
.yde{bottom:583.404667pt;}
.y15a{bottom:583.481600pt;}
.y6c{bottom:583.555600pt;}
.y132{bottom:584.458533pt;}
.y1ca{bottom:584.769025pt;}
.y186{bottom:590.890667pt;}
.y1c{bottom:593.385600pt;}
.y1c9{bottom:597.089861pt;}
.ydd{bottom:597.616267pt;}
.y6b{bottom:597.691600pt;}
.y159{bottom:597.692000pt;}
.y1b{bottom:598.147867pt;}
.y131{bottom:598.594533pt;}
.y185{bottom:604.949867pt;}
.y1c8{bottom:609.335698pt;}
.y1a{bottom:609.410800pt;}
.ydc{bottom:611.752267pt;}
.y158{bottom:611.828000pt;}
.y6a{bottom:611.903200pt;}
.y130{bottom:612.730533pt;}
.y19{bottom:614.173067pt;}
.y184{bottom:618.934667pt;}
.y1c7{bottom:621.656533pt;}
.y18{bottom:625.436000pt;}
.ydb{bottom:625.962667pt;}
.y69{bottom:626.039200pt;}
.y157{bottom:626.039600pt;}
.y1c6{bottom:626.116400pt;}
.y12f{bottom:626.866533pt;}
.y17{bottom:630.122667pt;}
.y183{bottom:632.919467pt;}
.y1c5{bottom:633.675230pt;}
.y22a{bottom:639.193959pt;}
.y247{bottom:639.194146pt;}
.yda{bottom:640.098667pt;}
.y156{bottom:640.175600pt;}
.y68{bottom:640.249600pt;}
.y12e{bottom:641.002533pt;}
.y16{bottom:641.385600pt;}
.y1c4{bottom:645.921067pt;}
.y15{bottom:646.147867pt;}
.y1c3{bottom:650.380933pt;}
.y229{bottom:651.136800pt;}
.y246{bottom:651.136987pt;}
.yd9{bottom:654.234667pt;}
.y154{bottom:654.387200pt;}
.y67{bottom:654.460000pt;}
.yc2{bottom:654.988533pt;}
.y12d{bottom:655.138533pt;}
.y228{bottom:655.596667pt;}
.y14{bottom:657.410800pt;}
.y1c2{bottom:657.939897pt;}
.y155{bottom:659.678533pt;}
.y13{bottom:662.173067pt;}
.y227{bottom:663.155413pt;}
.y245{bottom:663.155827pt;}
.yd8{bottom:668.446267pt;}
.y153{bottom:668.523200pt;}
.y66{bottom:668.596000pt;}
.yc1{bottom:669.200133pt;}
.y12c{bottom:669.274533pt;}
.y1c1{bottom:670.185733pt;}
.y12{bottom:673.436000pt;}
.y1c0{bottom:674.645467pt;}
.y226{bottom:675.174253pt;}
.y244{bottom:675.174667pt;}
.y11{bottom:678.198267pt;}
.y243{bottom:679.634400pt;}
.y20a{bottom:680.994950pt;}
.y1bf{bottom:682.204898pt;}
.yd7{bottom:682.582267pt;}
.y150{bottom:682.729600pt;}
.y152{bottom:682.733600pt;}
.y65{bottom:682.807600pt;}
.yc0{bottom:683.336133pt;}
.y12b{bottom:683.410533pt;}
.y242{bottom:687.193053pt;}
.y225{bottom:687.193093pt;}
.y151{bottom:688.024933pt;}
.y207{bottom:693.013884pt;}
.y209{bottom:693.014000pt;}
.y10{bottom:693.769867pt;}
.y1be{bottom:694.525733pt;}
.yd6{bottom:696.792667pt;}
.y14f{bottom:696.865600pt;}
.y64{bottom:696.943600pt;}
.ybf{bottom:697.320933pt;}
.y12a{bottom:697.395333pt;}
.y208{bottom:697.776267pt;}
.y1bd{bottom:698.985733pt;}
.y241{bottom:699.136894pt;}
.y224{bottom:699.136933pt;}
.y223{bottom:703.596667pt;}
.y204{bottom:705.032684pt;}
.y205{bottom:705.032933pt;}
.y1bc{bottom:706.544824pt;}
.y206{bottom:708.888000pt;}
.yd5{bottom:710.928667pt;}
.y14e{bottom:711.076000pt;}
.y63{bottom:711.155200pt;}
.y240{bottom:711.155733pt;}
.y222{bottom:711.155827pt;}
.ybe{bottom:711.456933pt;}
.y129{bottom:711.531333pt;}
.y23f{bottom:715.615600pt;}
.y202{bottom:717.051749pt;}
.y1bb{bottom:718.790661pt;}
.y203{bottom:720.906933pt;}
.ye{bottom:722.721067pt;}
.y221{bottom:723.174667pt;}
.y23e{bottom:723.175119pt;}
.y14d{bottom:725.060800pt;}
.yd4{bottom:725.140267pt;}
.y62{bottom:725.366800pt;}
.ybc{bottom:725.592933pt;}
.y128{bottom:725.742933pt;}
.y220{bottom:727.634400pt;}
.yf{bottom:728.088000pt;}
.y201{bottom:728.994834pt;}
.y1ba{bottom:731.111497pt;}
.y21f{bottom:735.193959pt;}
.ybd{bottom:735.873333pt;}
.yc{bottom:737.385600pt;}
.y14c{bottom:739.272400pt;}
.yd3{bottom:739.276267pt;}
.y61{bottom:739.350400pt;}
.yb9{bottom:739.723333pt;}
.ybb{bottom:739.728933pt;}
.y127{bottom:739.878933pt;}
.y200{bottom:741.013884pt;}
.yd{bottom:742.752667pt;}
.y1b9{bottom:743.357333pt;}
.yba{bottom:745.095867pt;}
.y21e{bottom:747.136800pt;}
.y1b8{bottom:747.817200pt;}
.y21d{bottom:751.596667pt;}
.ya{bottom:752.125867pt;}
.y1ff{bottom:753.032684pt;}
.y14b{bottom:753.408400pt;}
.y5e{bottom:753.485867pt;}
.y60{bottom:753.486400pt;}
.yd2{bottom:753.486667pt;}
.yb8{bottom:753.934933pt;}
.y126{bottom:754.014933pt;}
.y1b7{bottom:755.377153pt;}
.yb{bottom:757.417200pt;}
.y5f{bottom:758.853333pt;}
.y21c{bottom:759.155787pt;}
.y23d{bottom:759.156467pt;}
.y1fd{bottom:763.237600pt;}
.y1fe{bottom:765.051733pt;}
.y1fc{bottom:765.051749pt;}
.y124{bottom:766.110000pt;}
.y8{bottom:766.790400pt;}
.y14a{bottom:767.620000pt;}
.yd1{bottom:767.622667pt;}
.y5d{bottom:767.697467pt;}
.y1b6{bottom:767.697988pt;}
.y5b{bottom:767.698400pt;}
.yb7{bottom:768.070933pt;}
.y123{bottom:768.150400pt;}
.y125{bottom:768.150933pt;}
.y21b{bottom:771.174627pt;}
.y23c{bottom:771.175307pt;}
.y9{bottom:772.081733pt;}
.y5c{bottom:772.988800pt;}
.y1fa{bottom:775.256533pt;}
.y1f9{bottom:776.994834pt;}
.y1fb{bottom:776.995067pt;}
.y1b5{bottom:779.943825pt;}
.y6{bottom:781.454933pt;}
.y149{bottom:781.756000pt;}
.yd0{bottom:781.833067pt;}
.y5a{bottom:781.908800pt;}
.yb6{bottom:782.206933pt;}
.y122{bottom:782.288933pt;}
.y21a{bottom:783.193467pt;}
.y23b{bottom:783.194146pt;}
.y7{bottom:786.746267pt;}
.y219{bottom:787.577733pt;}
.y1f8{bottom:789.013884pt;}
.y1b4{bottom:792.264661pt;}
.y23a{bottom:795.136987pt;}
.y218{bottom:795.137534pt;}
.y148{bottom:795.966400pt;}
.ycf{bottom:795.969067pt;}
.y59{bottom:796.044800pt;}
.yb5{bottom:796.342933pt;}
.y121{bottom:796.423733pt;}
.y1f7{bottom:801.032933pt;}
.y1b3{bottom:804.510498pt;}
.y239{bottom:807.155827pt;}
.y217{bottom:807.156373pt;}
.y147{bottom:810.102400pt;}
.yce{bottom:810.180667pt;}
.y58{bottom:810.255200pt;}
.yb4{bottom:810.477733pt;}
.y120{bottom:810.558533pt;}
.y5{bottom:815.319467pt;}
.y1b2{bottom:816.831333pt;}
.y238{bottom:819.174667pt;}
.y216{bottom:819.175213pt;}
.y1b1{bottom:821.291067pt;}
.y237{bottom:823.634400pt;}
.y146{bottom:824.314000pt;}
.ycd{bottom:824.315467pt;}
.y57{bottom:824.391200pt;}
.yb3{bottom:824.462533pt;}
.y11f{bottom:824.693333pt;}
.y1b0{bottom:828.850655pt;}
.y215{bottom:831.194053pt;}
.y236{bottom:831.194107pt;}
.y4{bottom:831.269467pt;}
.y145{bottom:838.448800pt;}
.ycc{bottom:838.450267pt;}
.y56{bottom:838.601600pt;}
.yb2{bottom:838.674133pt;}
.y11e{bottom:838.828133pt;}
.y1af{bottom:841.096492pt;}
.y214{bottom:843.136894pt;}
.y235{bottom:843.136947pt;}
.y3{bottom:847.294267pt;}
.y144{bottom:852.659200pt;}
.ycb{bottom:852.660667pt;}
.yb1{bottom:852.810133pt;}
.y55{bottom:852.812000pt;}
.y11c{bottom:852.965467pt;}
.y1ae{bottom:853.417328pt;}
.y212{bottom:855.155733pt;}
.y234{bottom:855.155787pt;}
.y213{bottom:855.306731pt;}
.y11d{bottom:858.330533pt;}
.y211{bottom:859.615600pt;}
.y1ad{bottom:865.738163pt;}
.y143{bottom:866.795200pt;}
.yca{bottom:866.796667pt;}
.yb0{bottom:866.946133pt;}
.y54{bottom:866.946800pt;}
.y11b{bottom:867.100267pt;}
.y233{bottom:867.174627pt;}
.y210{bottom:867.175626pt;}
.y1ac{bottom:877.984000pt;}
.y232{bottom:879.193467pt;}
.y20f{bottom:879.194466pt;}
.y142{bottom:881.005600pt;}
.yc9{bottom:881.007067pt;}
.yaf{bottom:881.082133pt;}
.y53{bottom:881.158400pt;}
.y11a{bottom:881.235067pt;}
.y1ab{bottom:882.443867pt;}
.y231{bottom:883.577733pt;}
.y1aa{bottom:890.003322pt;}
.y230{bottom:891.136987pt;}
.y20e{bottom:891.137307pt;}
.yc6{bottom:895.140933pt;}
.y141{bottom:895.141600pt;}
.yc8{bottom:895.143067pt;}
.y52{bottom:895.143200pt;}
.yae{bottom:895.218133pt;}
.y119{bottom:895.369867pt;}
.y2{bottom:897.258920pt;}
.yc7{bottom:900.510000pt;}
.y1a9{bottom:902.324158pt;}
.y22f{bottom:903.155827pt;}
.y20d{bottom:903.156146pt;}
.yc5{bottom:909.352533pt;}
.y140{bottom:909.353200pt;}
.yad{bottom:909.354133pt;}
.y51{bottom:909.354800pt;}
.y118{bottom:909.430267pt;}
.y1a8{bottom:914.569994pt;}
.y22e{bottom:915.174667pt;}
.y20c{bottom:915.174986pt;}
.y22d{bottom:919.634400pt;}
.yc4{bottom:923.487333pt;}
.y13f{bottom:923.488000pt;}
.y50{bottom:923.489600pt;}
.y4e{bottom:923.490133pt;}
.yac{bottom:923.564533pt;}
.y117{bottom:923.565067pt;}
.y1{bottom:926.664400pt;}
.y1a7{bottom:926.890830pt;}
.y20b{bottom:927.193826pt;}
.y22c{bottom:927.194119pt;}
.y4f{bottom:928.856400pt;}
.yc3{bottom:937.697733pt;}
.y13e{bottom:937.698400pt;}
.y4d{bottom:937.700533pt;}
.y1a6{bottom:939.136667pt;}
.y22b{bottom:939.136960pt;}
.y116{bottom:942.991867pt;}
.y1a5{bottom:943.596533pt;}
.y4c{bottom:1008.982400pt;}
.h1b{height:1.920000pt;}
.h18{height:20.334600pt;}
.h24{height:20.396736pt;}
.h2e{height:21.330000pt;}
.h7{height:21.756600pt;}
.h2a{height:22.399200pt;}
.h1d{height:22.780962pt;}
.hf{height:22.908945pt;}
.h16{height:23.996800pt;}
.h23{height:25.200000pt;}
.h12{height:25.316412pt;}
.h5{height:26.108518pt;}
.h11{height:27.441398pt;}
.he{height:27.523200pt;}
.h2f{height:27.919628pt;}
.h25{height:28.639618pt;}
.h26{height:28.827616pt;}
.hd{height:30.872016pt;}
.h10{height:31.060945pt;}
.h27{height:31.061944pt;}
.h8{height:31.957814pt;}
.h1f{height:31.999600pt;}
.h2d{height:32.000066pt;}
.h28{height:32.000531pt;}
.h9{height:33.407582pt;}
.ha{height:33.710512pt;}
.hc{height:34.368000pt;}
.hb{height:34.815565pt;}
.h1a{height:35.952000pt;}
.h17{height:36.000000pt;}
.h21{height:36.026667pt;}
.h6{height:36.720000pt;}
.h3{height:39.168000pt;}
.h2c{height:40.790690pt;}
.h29{height:40.791160pt;}
.h2b{height:40.791689pt;}
.h22{height:41.294400pt;}
.h20{height:41.573880pt;}
.h15{height:42.436800pt;}
.h14{height:42.744000pt;}
.h19{height:43.041600pt;}
.h1c{height:46.809600pt;}
.h1e{height:46.816533pt;}
.h13{height:47.655586pt;}
.h4{height:58.755635pt;}
.h2{height:81.600408pt;}
.h0{height:1079.962667pt;}
.h1{height:1080.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x45{left:52.006267pt;}
.x46{left:53.064533pt;}
.x47{left:64.252000pt;}
.x1{left:70.677200pt;}
.x37{left:71.886533pt;}
.x30{left:73.700800pt;}
.x31{left:75.363733pt;}
.x35{left:77.858267pt;}
.xa6{left:79.370000pt;}
.xa3{left:80.277200pt;}
.x4f{left:83.829867pt;}
.x50{left:91.766933pt;}
.x38{left:94.639733pt;}
.x51{left:102.349600pt;}
.x4b{left:107.640133pt;}
.x52{left:110.286533pt;}
.x3c{left:113.007867pt;}
.xa5{left:115.198734pt;}
.x53{left:116.938533pt;}
.x33{left:118.373999pt;}
.x59{left:123.439333pt;}
.x54{left:124.875467pt;}
.x80{left:127.294400pt;}
.x48{left:135.987333pt;}
.xa1{left:138.178866pt;}
.x3d{left:141.051867pt;}
.x5a{left:145.965333pt;}
.x49{left:148.837733pt;}
.xa7{left:151.709636pt;}
.xc{left:152.617200pt;}
.xd{left:158.966800pt;}
.x2{left:184.289733pt;}
.x28{left:185.196800pt;}
.x75{left:189.883467pt;}
.x76{left:193.436133pt;}
.x18{left:196.459733pt;}
.x55{left:197.366800pt;}
.x3b{left:203.489733pt;}
.x56{left:205.303867pt;}
.x3{left:207.193600pt;}
.x29{left:209.914933pt;}
.x19{left:221.177867pt;}
.xe{left:234.255067pt;}
.x9e{left:238.563733pt;}
.x9f{left:244.913333pt;}
.x20{left:246.954267pt;}
.xa2{left:248.842391pt;}
.x62{left:250.129067pt;}
.x21{left:253.379467pt;}
.xf{left:257.158933pt;}
.xa4{left:259.047816pt;}
.x3e{left:260.938533pt;}
.x63{left:262.072400pt;}
.x36{left:272.352512pt;}
.x77{left:276.056667pt;}
.x4{left:283.691200pt;}
.x79{left:286.563733pt;}
.x2a{left:288.075467pt;}
.xa0{left:292.535333pt;}
.x1a{left:296.314933pt;}
.x7a{left:297.675467pt;}
.x4a{left:301.077067pt;}
.x1b{left:302.740133pt;}
.x58{left:307.880267pt;}
.x78{left:311.357333pt;}
.x7c{left:314.683333pt;}
.x5{left:316.422000pt;}
.x4d{left:319.218800pt;}
.x7d{left:322.847200pt;}
.x4c{left:323.754267pt;}
.x4e{left:331.162133pt;}
.x39{left:332.598267pt;}
.x22{left:334.336933pt;}
.x10{left:338.720533pt;}
.x9c{left:341.064400pt;}
.x23{left:342.576267pt;}
.x9d{left:347.867600pt;}
.x3a{left:349.228267pt;}
.x7e{left:353.461333pt;}
.x6{left:355.124400pt;}
.x7f{left:357.543200pt;}
.x65{left:360.869600pt;}
.x64{left:372.888800pt;}
.x34{left:378.101952pt;}
.x11{left:381.278667pt;}
.x57{left:384.680133pt;}
.x7b{left:387.552667pt;}
.x7{left:394.658133pt;}
.x1c{left:410.229867pt;}
.x12{left:413.555733pt;}
.x3f{left:419.981467pt;}
.x5f{left:422.702267pt;}
.x2b{left:423.987200pt;}
.x89{left:425.196800pt;}
.x8{left:426.481733pt;}
.x93{left:427.993600pt;}
.x8a{left:429.580933pt;}
.x1d{left:433.133733pt;}
.x66{left:434.343200pt;}
.x72{left:437.744267pt;}
.x83{left:441.675467pt;}
.x5b{left:444.018933pt;}
.x94{left:445.455367pt;}
.x32{left:446.813891pt;}
.x2c{left:448.554133pt;}
.x24{left:450.821867pt;}
.x68{left:459.892800pt;}
.x67{left:462.009333pt;}
.x8d{left:465.940050pt;}
.x90{left:471.835173pt;}
.x25{left:475.540000pt;}
.x60{left:480.680133pt;}
.x84{left:482.343200pt;}
.x61{left:483.930533pt;}
.x8c{left:488.239151pt;}
.x44{left:490.506933pt;}
.x6f{left:501.921467pt;}
.x13{left:504.113200pt;}
.x1e{left:505.926933pt;}
.x14{left:512.352667pt;}
.x42{left:513.713200pt;}
.x6b{left:523.691200pt;}
.x99{left:526.866075pt;}
.x73{left:530.116400pt;}
.x8b{left:531.854570pt;}
.x1f{left:535.861200pt;}
.x26{left:537.599867pt;}
.x9{left:538.884933pt;}
.x40{left:541.379333pt;}
.x43{left:543.269067pt;}
.x27{left:545.839200pt;}
.x85{left:548.258133pt;}
.x92{left:549.844734pt;}
.x74{left:551.508533pt;}
.x41{left:552.718000pt;}
.x86{left:559.672267pt;}
.xa{left:561.713200pt;}
.x2d{left:568.440800pt;}
.x8e{left:575.319591pt;}
.x2e{left:576.680133pt;}
.x15{left:588.850267pt;}
.x16{left:597.165200pt;}
.xa8{left:602.909543pt;}
.x81{left:612.510133pt;}
.x97{left:620.295361pt;}
.x5d{left:621.202933pt;}
.x5e{left:629.593467pt;}
.x6e{left:631.861067pt;}
.x8f{left:634.129009pt;}
.x82{left:639.647067pt;}
.x87{left:643.199733pt;}
.x9b{left:647.582465pt;}
.xb{left:655.143200pt;}
.x95{left:656.579552pt;}
.x88{left:661.568267pt;}
.x9a{left:669.277176pt;}
.x70{left:672.453333pt;}
.x17{left:679.710133pt;}
.x71{left:684.094267pt;}
.x2f{left:689.007600pt;}
.x98{left:702.991259pt;}
.x6c{left:705.864400pt;}
.x6d{left:710.173067pt;}
.x69{left:717.354133pt;}
.x91{left:718.638483pt;}
.x96{left:724.912764pt;}
.x6a{left:731.792000pt;}
.x5c{left:741.014000pt;}
}


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