
/* 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_9775487291fc.woff")format("woff");}.ff1{font-family:ff1;line-height:0.975000;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_b36f27f105c6.woff")format("woff");}.ff2{font-family:ff2;line-height:0.079000;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_6a1ca537bc41.woff")format("woff");}.ff3{font-family:ff3;line-height:0.928000;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_7ea7da60e364.woff")format("woff");}.ff4{font-family:ff4;line-height:1.134000;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_f3bfbacf471b.woff")format("woff");}.ff5{font-family:ff5;line-height:0.057000;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_eae6ba1aaf84.woff")format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_b9f2ad98d661.woff")format("woff");}.ff7{font-family:ff7;line-height:0.243000;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_1065dbd9c36c.woff")format("woff");}.ff8{font-family:ff8;line-height:0.481000;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_0e37daf2077c.woff")format("woff");}.ff9{font-family:ff9;line-height:0.666000;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_7cd257708927.woff")format("woff");}.ffa{font-family:ffa;line-height:0.900000;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_956c5e34f03c.woff")format("woff");}.ffb{font-family:ffb;line-height:0.883000;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_dd8c8edc568e.woff")format("woff");}.ffc{font-family:ffc;line-height:0.487000;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.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,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);}
.m6{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);}
.v2{vertical-align:-45.921000px;}
.v3{vertical-align:-33.335400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.709800px;}
.v1{vertical-align:21.787379px;}
.lsd{letter-spacing:-1.002010px;}
.lsf{letter-spacing:-0.811919px;}
.lse{letter-spacing:-0.767923px;}
.ls32{letter-spacing:-0.007200px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.010200px;}
.ls44{letter-spacing:0.025500px;}
.ls15{letter-spacing:0.039996px;}
.ls3e{letter-spacing:0.045900px;}
.ls34{letter-spacing:0.057600px;}
.lsa{letter-spacing:0.060001px;}
.ls1{letter-spacing:0.086400px;}
.ls3{letter-spacing:0.088199px;}
.ls1f{letter-spacing:0.090001px;}
.ls16{letter-spacing:0.096001px;}
.ls10{letter-spacing:0.132001px;}
.ls3c{letter-spacing:0.163200px;}
.ls42{letter-spacing:0.168300px;}
.ls39{letter-spacing:0.232500px;}
.ls4e{letter-spacing:0.234600px;}
.ls1b{letter-spacing:0.252003px;}
.ls35{letter-spacing:0.252739px;}
.ls41{letter-spacing:0.260100px;}
.ls2{letter-spacing:0.276003px;}
.ls37{letter-spacing:0.343966px;}
.ls20{letter-spacing:1.296013px;}
.ls2b{letter-spacing:2.811300px;}
.ls3a{letter-spacing:2.900100px;}
.ls19{letter-spacing:3.151500px;}
.ls2c{letter-spacing:3.152100px;}
.ls51{letter-spacing:5.910059px;}
.ls4f{letter-spacing:5.928059px;}
.ls53{letter-spacing:5.958060px;}
.ls50{letter-spacing:6.030060px;}
.ls1c{letter-spacing:7.171140px;}
.ls48{letter-spacing:7.178340px;}
.ls11{letter-spacing:7.192740px;}
.lsc{letter-spacing:7.221540px;}
.ls46{letter-spacing:7.338900px;}
.ls1d{letter-spacing:7.425600px;}
.ls13{letter-spacing:7.456200px;}
.ls6{letter-spacing:9.451082px;}
.ls23{letter-spacing:10.725600px;}
.ls0{letter-spacing:11.367000px;}
.ls3b{letter-spacing:13.091700px;}
.ls4d{letter-spacing:13.101900px;}
.ls43{letter-spacing:13.229400px;}
.ls3f{letter-spacing:13.428300px;}
.ls4b{letter-spacing:13.443600px;}
.ls47{letter-spacing:14.137200px;}
.ls52{letter-spacing:15.612156px;}
.ls38{letter-spacing:15.918159px;}
.ls27{letter-spacing:16.578166px;}
.ls18{letter-spacing:16.728167px;}
.ls17{letter-spacing:16.920169px;}
.ls28{letter-spacing:17.070171px;}
.ls5{letter-spacing:17.322173px;}
.ls21{letter-spacing:17.604176px;}
.lsb{letter-spacing:17.658177px;}
.ls24{letter-spacing:17.868600px;}
.ls31{letter-spacing:18.798300px;}
.ls2e{letter-spacing:18.798900px;}
.ls2a{letter-spacing:19.478700px;}
.ls29{letter-spacing:19.479300px;}
.ls36{letter-spacing:20.499300px;}
.ls4c{letter-spacing:22.287000px;}
.ls25{letter-spacing:23.651400px;}
.ls30{letter-spacing:24.241500px;}
.ls2d{letter-spacing:25.261500px;}
.ls26{letter-spacing:27.982500px;}
.ls4a{letter-spacing:28.884289px;}
.ls45{letter-spacing:31.266313px;}
.ls3d{letter-spacing:31.944319px;}
.ls1a{letter-spacing:32.835000px;}
.ls22{letter-spacing:36.917400px;}
.ls2f{letter-spacing:39.548100px;}
.ls40{letter-spacing:54.396544px;}
.ls49{letter-spacing:56.778568px;}
.ls33{letter-spacing:57.792578px;}
.ls12{letter-spacing:70.739410px;}
.ls1e{letter-spacing:71.085008px;}
.ls8{letter-spacing:71.265006px;}
.ls9{letter-spacing:71.423405px;}
.ls14{letter-spacing:2668.713275px;}
.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;}
}
.ws192{word-spacing:-57.852579px;}
.ws2b3{word-spacing:-13.494600px;}
.ws4b{word-spacing:-9.499081px;}
.ws29b{word-spacing:-5.988060px;}
.ws2b2{word-spacing:-5.970060px;}
.ws2{word-spacing:-0.108000px;}
.ws10c{word-spacing:-0.071999px;}
.ws1e{word-spacing:-0.060001px;}
.ws134{word-spacing:-0.051000px;}
.wsf{word-spacing:-0.047999px;}
.ws45{word-spacing:-0.041999px;}
.ws56{word-spacing:-0.039996px;}
.ws27c{word-spacing:-0.033995px;}
.ws47{word-spacing:0.000000px;}
.ws9b{word-spacing:0.727927px;}
.ws9c{word-spacing:0.771923px;}
.ws0{word-spacing:2.338200px;}
.wse2{word-spacing:5.666100px;}
.ws136{word-spacing:5.727300px;}
.ws27b{word-spacing:5.900700px;}
.ws2e8{word-spacing:9.936099px;}
.ws42{word-spacing:10.709847px;}
.wsbc{word-spacing:10.754686px;}
.ws40{word-spacing:10.760246px;}
.ws41{word-spacing:10.819045px;}
.ws43{word-spacing:10.890444px;}
.ws3f{word-spacing:10.949244px;}
.ws18{word-spacing:11.097461px;}
.wsbd{word-spacing:11.103700px;}
.wsec{word-spacing:11.248781px;}
.ws1c{word-spacing:11.251059px;}
.ws34{word-spacing:11.340113px;}
.ws109{word-spacing:11.411905px;}
.wsd2{word-spacing:11.440705px;}
.ws3a{word-spacing:11.454115px;}
.ws143{word-spacing:11.573846px;}
.ws33{word-spacing:11.604116px;}
.ws142{word-spacing:11.641345px;}
.ws10{word-spacing:11.879852px;}
.ws12{word-spacing:11.884651px;}
.ws14{word-spacing:11.947051px;}
.ws4a{word-spacing:11.958120px;}
.ws3c{word-spacing:11.966250px;}
.wse{word-spacing:11.975850px;}
.wsd{word-spacing:12.033450px;}
.ws13{word-spacing:12.038250px;}
.ws15{word-spacing:12.119848px;}
.ws2f{word-spacing:12.168122px;}
.ws16{word-spacing:12.187048px;}
.ws28{word-spacing:12.282123px;}
.ws31{word-spacing:12.294123px;}
.ws11{word-spacing:12.340646px;}
.ws2c{word-spacing:12.468125px;}
.ws30{word-spacing:12.510125px;}
.ws137{word-spacing:12.887700px;}
.ws131{word-spacing:12.938700px;}
.wse8{word-spacing:12.959100px;}
.wseb{word-spacing:12.964200px;}
.wse7{word-spacing:12.974400px;}
.ws138{word-spacing:13.015200px;}
.wse6{word-spacing:13.020300px;}
.ws237{word-spacing:13.030500px;}
.ws242{word-spacing:13.035600px;}
.ws23d{word-spacing:13.050900px;}
.ws1ea{word-spacing:13.056000px;}
.ws241{word-spacing:13.071300px;}
.ws2ba{word-spacing:13.076400px;}
.ws23c{word-spacing:13.081500px;}
.ws135{word-spacing:13.101900px;}
.ws2bd{word-spacing:13.107000px;}
.ws2e3{word-spacing:13.112100px;}
.wsea{word-spacing:13.122300px;}
.ws139{word-spacing:13.127400px;}
.ws23f{word-spacing:13.132500px;}
.ws36{word-spacing:13.140131px;}
.ws2bf{word-spacing:13.142700px;}
.ws4c{word-spacing:13.147800px;}
.ws133{word-spacing:13.152900px;}
.ws245{word-spacing:13.158000px;}
.wse9{word-spacing:13.173300px;}
.ws2b9{word-spacing:13.183500px;}
.ws2c7{word-spacing:13.188600px;}
.ws280{word-spacing:13.203900px;}
.ws23e{word-spacing:13.209000px;}
.ws132{word-spacing:13.214100px;}
.ws240{word-spacing:13.224300px;}
.ws244{word-spacing:13.229400px;}
.ws13a{word-spacing:13.234500px;}
.wse4{word-spacing:13.239600px;}
.ws2da{word-spacing:13.249800px;}
.ws23a{word-spacing:13.254900px;}
.ws238{word-spacing:13.260000px;}
.wse5{word-spacing:13.285500px;}
.wse3{word-spacing:13.290600px;}
.ws27a{word-spacing:13.295700px;}
.ws1e8{word-spacing:13.300800px;}
.ws22{word-spacing:13.302133px;}
.ws2df{word-spacing:13.326300px;}
.ws2bc{word-spacing:13.341600px;}
.ws21c{word-spacing:13.346700px;}
.ws27d{word-spacing:13.362000px;}
.ws246{word-spacing:13.372200px;}
.ws141{word-spacing:13.392600px;}
.ws279{word-spacing:13.397700px;}
.ws243{word-spacing:13.407900px;}
.ws13f{word-spacing:13.438500px;}
.ws23b{word-spacing:13.443600px;}
.ws13c{word-spacing:13.453800px;}
.ws239{word-spacing:13.458900px;}
.ws1e9{word-spacing:13.464000px;}
.ws278{word-spacing:13.479300px;}
.ws35{word-spacing:13.482135px;}
.ws21d{word-spacing:13.494600px;}
.ws13b{word-spacing:13.515000px;}
.ws2e5{word-spacing:13.550700px;}
.ws2c9{word-spacing:13.560900px;}
.ws37{word-spacing:13.644136px;}
.ws2d0{word-spacing:13.719000px;}
.ws44{word-spacing:13.927001px;}
.ws2d7{word-spacing:13.933200px;}
.ws27e{word-spacing:13.994400px;}
.ws3d{word-spacing:14.057199px;}
.ws3e{word-spacing:14.304996px;}
.ws14c{word-spacing:14.856149px;}
.ws2dc{word-spacing:14.932800px;}
.ws2dd{word-spacing:14.994000px;}
.ws15d{word-spacing:15.006150px;}
.ws129{word-spacing:15.042150px;}
.ws2de{word-spacing:15.090900px;}
.ws14b{word-spacing:15.096151px;}
.ws18a{word-spacing:15.126151px;}
.wsb9{word-spacing:15.168152px;}
.ws262{word-spacing:15.192152px;}
.ws26b{word-spacing:15.204152px;}
.ws14a{word-spacing:15.234152px;}
.ws1bf{word-spacing:15.258153px;}
.ws1c7{word-spacing:15.264153px;}
.ws1d{word-spacing:15.283009px;}
.ws2e2{word-spacing:15.305100px;}
.wsa4{word-spacing:15.342153px;}
.ws165{word-spacing:15.348153px;}
.ws19{word-spacing:15.359808px;}
.ws2ed{word-spacing:15.360154px;}
.ws2e1{word-spacing:15.361200px;}
.wsa5{word-spacing:15.432154px;}
.ws84{word-spacing:15.444154px;}
.ws2eb{word-spacing:15.450154px;}
.ws203{word-spacing:15.468155px;}
.ws29a{word-spacing:15.480155px;}
.ws2ec{word-spacing:15.492155px;}
.ws28a{word-spacing:15.498155px;}
.ws10f{word-spacing:15.510155px;}
.ws61{word-spacing:15.516155px;}
.ws86{word-spacing:15.522155px;}
.ws102{word-spacing:15.552156px;}
.ws1a{word-spacing:15.556606px;}
.ws2ef{word-spacing:15.558156px;}
.ws26e{word-spacing:15.564156px;}
.ws18b{word-spacing:15.570156px;}
.ws2ea{word-spacing:15.576156px;}
.ws2c8{word-spacing:15.585600px;}
.ws1b9{word-spacing:15.606156px;}
.wsde{word-spacing:15.612156px;}
.ws17{word-spacing:15.619005px;}
.wsb8{word-spacing:15.630156px;}
.ws2b1{word-spacing:15.648156px;}
.wsd1{word-spacing:15.684157px;}
.ws101{word-spacing:15.690157px;}
.ws21{word-spacing:15.696157px;}
.ws1b{word-spacing:15.705404px;}
.ws24{word-spacing:15.726157px;}
.ws263{word-spacing:15.738157px;}
.ws1a6{word-spacing:15.750157px;}
.ws54{word-spacing:15.756158px;}
.ws117{word-spacing:15.762158px;}
.wsdb{word-spacing:15.774158px;}
.ws2ee{word-spacing:15.792158px;}
.ws11f{word-spacing:15.798158px;}
.ws92{word-spacing:15.810158px;}
.ws2b4{word-spacing:15.825300px;}
.ws260{word-spacing:15.834158px;}
.ws224{word-spacing:15.840158px;}
.wsfe{word-spacing:15.852159px;}
.ws22e{word-spacing:15.858159px;}
.ws261{word-spacing:15.912159px;}
.ws1d9{word-spacing:15.930159px;}
.ws22f{word-spacing:15.948159px;}
.ws2d1{word-spacing:15.973200px;}
.wsee{word-spacing:16.026160px;}
.ws1ad{word-spacing:16.032160px;}
.ws210{word-spacing:16.080161px;}
.ws1b5{word-spacing:16.092161px;}
.ws258{word-spacing:16.104161px;}
.ws1f5{word-spacing:16.110161px;}
.ws24b{word-spacing:16.176162px;}
.ws1de{word-spacing:16.194162px;}
.ws1f7{word-spacing:16.236162px;}
.ws2d2{word-spacing:16.253700px;}
.ws1ac{word-spacing:16.284163px;}
.wsc3{word-spacing:16.320163px;}
.ws185{word-spacing:16.368164px;}
.ws23{word-spacing:16.440164px;}
.ws1f6{word-spacing:16.452165px;}
.ws2b{word-spacing:16.494165px;}
.wsf5{word-spacing:16.518165px;}
.ws270{word-spacing:16.530165px;}
.ws9a{word-spacing:16.536165px;}
.ws169{word-spacing:16.542165px;}
.ws29{word-spacing:16.578166px;}
.ws186{word-spacing:16.608166px;}
.wsf3{word-spacing:16.638166px;}
.ws187{word-spacing:16.644166px;}
.ws1c6{word-spacing:16.668167px;}
.ws2a{word-spacing:16.686167px;}
.ws5d{word-spacing:16.692167px;}
.ws168{word-spacing:16.704167px;}
.wsf0{word-spacing:16.722167px;}
.ws183{word-spacing:16.734167px;}
.ws1c8{word-spacing:16.770168px;}
.wsf8{word-spacing:16.776168px;}
.ws77{word-spacing:16.782168px;}
.wsfd{word-spacing:16.872169px;}
.ws12e{word-spacing:16.884169px;}
.ws19c{word-spacing:16.890169px;}
.ws16f{word-spacing:16.914169px;}
.ws12d{word-spacing:16.950170px;}
.ws18d{word-spacing:16.968170px;}
.ws1eb{word-spacing:16.974170px;}
.ws1c5{word-spacing:16.980170px;}
.ws49{word-spacing:16.998170px;}
.ws191{word-spacing:17.028170px;}
.ws18c{word-spacing:17.046170px;}
.ws1db{word-spacing:17.064171px;}
.ws149{word-spacing:17.082171px;}
.wsf2{word-spacing:17.124171px;}
.ws48{word-spacing:17.130171px;}
.ws180{word-spacing:17.154172px;}
.ws7c{word-spacing:17.172172px;}
.ws26{word-spacing:17.220172px;}
.ws1d2{word-spacing:17.232172px;}
.ws96{word-spacing:17.292173px;}
.wsc1{word-spacing:17.334173px;}
.ws25{word-spacing:17.352174px;}
.ws16e{word-spacing:17.370174px;}
.ws28e{word-spacing:17.400174px;}
.ws67{word-spacing:17.424174px;}
.ws1bd{word-spacing:17.430174px;}
.ws1fa{word-spacing:17.448174px;}
.ws2d6{word-spacing:17.462400px;}
.ws181{word-spacing:17.490175px;}
.wsc2{word-spacing:17.502175px;}
.ws6e{word-spacing:17.550175px;}
.ws6f{word-spacing:17.562176px;}
.ws1a2{word-spacing:17.610176px;}
.ws25e{word-spacing:17.646176px;}
.ws8b{word-spacing:17.670177px;}
.ws8c{word-spacing:17.694177px;}
.ws2d4{word-spacing:17.707200px;}
.ws3b{word-spacing:17.724177px;}
.wsce{word-spacing:17.730177px;}
.ws247{word-spacing:17.778178px;}
.ws259{word-spacing:17.796178px;}
.wse0{word-spacing:17.802178px;}
.ws171{word-spacing:17.820178px;}
.wsa1{word-spacing:17.844178px;}
.ws161{word-spacing:17.892179px;}
.ws106{word-spacing:17.898179px;}
.ws26d{word-spacing:17.904179px;}
.ws194{word-spacing:17.934179px;}
.ws8a{word-spacing:17.958180px;}
.ws170{word-spacing:17.970180px;}
.ws15b{word-spacing:17.982180px;}
.ws207{word-spacing:17.988180px;}
.ws285{word-spacing:18.000180px;}
.ws24d{word-spacing:18.012180px;}
.ws2e0{word-spacing:18.013200px;}
.ws289{word-spacing:18.066181px;}
.wsed{word-spacing:18.084181px;}
.ws157{word-spacing:18.144181px;}
.wscb{word-spacing:18.156182px;}
.ws20c{word-spacing:18.162182px;}
.ws216{word-spacing:18.228182px;}
.ws114{word-spacing:18.234182px;}
.ws160{word-spacing:18.276183px;}
.wscc{word-spacing:18.294183px;}
.ws1cf{word-spacing:18.300183px;}
.ws188{word-spacing:18.324183px;}
.ws53{word-spacing:18.330183px;}
.wscd{word-spacing:18.336183px;}
.ws22d{word-spacing:18.354184px;}
.ws10b{word-spacing:18.388647px;}
.wsbe{word-spacing:18.390184px;}
.ws17a{word-spacing:18.408184px;}
.ws51{word-spacing:18.456185px;}
.ws15f{word-spacing:18.474185px;}
.ws95{word-spacing:18.486185px;}
.ws1ba{word-spacing:18.489446px;}
.ws1bb{word-spacing:18.503846px;}
.wsb{word-spacing:18.518246px;}
.ws52{word-spacing:18.600186px;}
.wsc{word-spacing:18.611845px;}
.ws10a{word-spacing:18.619045px;}
.ws1da{word-spacing:18.626245px;}
.ws7{word-spacing:18.647845px;}
.wsdf{word-spacing:18.655045px;}
.ws8{word-spacing:18.669444px;}
.ws1bc{word-spacing:18.676644px;}
.wsfc{word-spacing:18.702187px;}
.wsa{word-spacing:18.705444px;}
.wsfb{word-spacing:18.714187px;}
.ws9{word-spacing:18.734244px;}
.ws1f0{word-spacing:18.744187px;}
.wsd4{word-spacing:18.755844px;}
.ws11c{word-spacing:18.786188px;}
.wsc5{word-spacing:18.816188px;}
.ws72{word-spacing:18.822188px;}
.ws63{word-spacing:18.828188px;}
.ws6{word-spacing:18.835043px;}
.ws26f{word-spacing:18.852189px;}
.ws275{word-spacing:18.912189px;}
.wsac{word-spacing:18.918189px;}
.ws10d{word-spacing:18.957442px;}
.wsc4{word-spacing:19.086191px;}
.ws1b3{word-spacing:19.164192px;}
.ws12a{word-spacing:19.194192px;}
.ws25a{word-spacing:19.206192px;}
.wsd8{word-spacing:19.218192px;}
.wsd6{word-spacing:19.254193px;}
.ws1a8{word-spacing:19.278193px;}
.ws5a{word-spacing:19.314193px;}
.ws208{word-spacing:19.356194px;}
.ws21e{word-spacing:19.380194px;}
.ws25b{word-spacing:19.386194px;}
.wsd7{word-spacing:19.410194px;}
.wsf4{word-spacing:19.590196px;}
.ws145{word-spacing:19.602196px;}
.ws16a{word-spacing:19.620196px;}
.wsb6{word-spacing:19.656197px;}
.ws6a{word-spacing:19.680197px;}
.ws144{word-spacing:19.704197px;}
.ws128{word-spacing:19.710197px;}
.ws16b{word-spacing:19.848198px;}
.ws119{word-spacing:19.908199px;}
.ws148{word-spacing:19.932199px;}
.ws2e4{word-spacing:19.956300px;}
.ws2e{word-spacing:20.046200px;}
.ws1d1{word-spacing:20.058201px;}
.ws118{word-spacing:20.106201px;}
.ws2be{word-spacing:20.124600px;}
.ws2c2{word-spacing:20.196000px;}
.ws1a4{word-spacing:20.208202px;}
.ws2a3{word-spacing:20.220202px;}
.ws295{word-spacing:20.250202px;}
.ws1ce{word-spacing:20.316203px;}
.ws1cd{word-spacing:20.352204px;}
.ws1fd{word-spacing:20.382204px;}
.ws164{word-spacing:20.424204px;}
.ws189{word-spacing:20.448204px;}
.ws2d{word-spacing:20.472205px;}
.ws8f{word-spacing:20.478205px;}
.ws8e{word-spacing:20.520205px;}
.ws25c{word-spacing:20.532205px;}
.ws2cf{word-spacing:20.532600px;}
.ws25d{word-spacing:20.538205px;}
.ws7e{word-spacing:20.556206px;}
.ws7d{word-spacing:20.610206px;}
.ws1ee{word-spacing:20.670207px;}
.ws7f{word-spacing:20.676207px;}
.ws1ef{word-spacing:20.700207px;}
.wsf6{word-spacing:20.790208px;}
.ws264{word-spacing:20.796208px;}
.wsaa{word-spacing:20.814208px;}
.ws16d{word-spacing:20.826208px;}
.ws32{word-spacing:20.862209px;}
.ws90{word-spacing:20.886209px;}
.ws24e{word-spacing:20.892209px;}
.ws2b0{word-spacing:20.922209px;}
.wsbf{word-spacing:20.952210px;}
.wsc0{word-spacing:20.964210px;}
.wsfa{word-spacing:20.994210px;}
.ws1b0{word-spacing:21.012210px;}
.ws154{word-spacing:21.048210px;}
.ws276{word-spacing:21.084211px;}
.ws1af{word-spacing:21.192212px;}
.ws11a{word-spacing:21.216212px;}
.ws28b{word-spacing:21.294213px;}
.ws298{word-spacing:21.336213px;}
.ws27{word-spacing:21.354214px;}
.ws196{word-spacing:21.366214px;}
.ws176{word-spacing:21.390214px;}
.ws22a{word-spacing:21.546215px;}
.ws15e{word-spacing:21.552216px;}
.wsd9{word-spacing:21.618216px;}
.ws10e{word-spacing:21.624216px;}
.ws85{word-spacing:21.630216px;}
.ws80{word-spacing:21.696217px;}
.ws130{word-spacing:21.708217px;}
.ws1b8{word-spacing:21.714217px;}
.ws12f{word-spacing:21.720217px;}
.ws81{word-spacing:21.726217px;}
.ws82{word-spacing:21.732217px;}
.ws153{word-spacing:21.738217px;}
.ws297{word-spacing:21.774218px;}
.ws20d{word-spacing:21.810218px;}
.ws200{word-spacing:21.870219px;}
.ws20e{word-spacing:21.912219px;}
.ws1ff{word-spacing:21.924219px;}
.ws50{word-spacing:21.936219px;}
.ws256{word-spacing:21.954220px;}
.ws110{word-spacing:21.972220px;}
.ws2b5{word-spacing:21.975900px;}
.ws18e{word-spacing:22.020220px;}
.ws152{word-spacing:22.026220px;}
.ws290{word-spacing:22.050220px;}
.ws1f2{word-spacing:22.068221px;}
.wsc8{word-spacing:22.080221px;}
.ws291{word-spacing:22.134221px;}
.wsf1{word-spacing:22.146221px;}
.ws2db{word-spacing:22.149300px;}
.ws2b6{word-spacing:22.195200px;}
.ws4e{word-spacing:22.236222px;}
.ws60{word-spacing:22.266223px;}
.ws250{word-spacing:22.404224px;}
.ws1b1{word-spacing:22.464225px;}
.ws26c{word-spacing:22.488225px;}
.ws2e9{word-spacing:22.500225px;}
.ws97{word-spacing:22.536225px;}
.ws257{word-spacing:22.566226px;}
.ws1a5{word-spacing:22.572226px;}
.ws2a9{word-spacing:22.578226px;}
.ws1b7{word-spacing:22.590226px;}
.ws29f{word-spacing:22.644226px;}
.ws1f8{word-spacing:22.656227px;}
.wsc9{word-spacing:22.698227px;}
.ws158{word-spacing:22.782228px;}
.ws21b{word-spacing:22.806228px;}
.ws162{word-spacing:22.830228px;}
.ws1ab{word-spacing:22.848228px;}
.ws1dd{word-spacing:22.902229px;}
.ws1f9{word-spacing:22.926229px;}
.ws83{word-spacing:22.974230px;}
.wsdc{word-spacing:22.992230px;}
.ws17d{word-spacing:23.022230px;}
.ws299{word-spacing:23.058231px;}
.wsf7{word-spacing:23.076231px;}
.ws1cb{word-spacing:23.088231px;}
.ws223{word-spacing:23.118231px;}
.ws2ac{word-spacing:23.160232px;}
.ws1dc{word-spacing:23.166232px;}
.ws146{word-spacing:23.172232px;}
.ws26a{word-spacing:23.268233px;}
.ws115{word-spacing:23.298233px;}
.ws269{word-spacing:23.334233px;}
.ws1f{word-spacing:23.358234px;}
.ws38{word-spacing:23.394234px;}
.ws218{word-spacing:23.430234px;}
.ws20{word-spacing:23.436234px;}
.ws235{word-spacing:23.484235px;}
.ws116{word-spacing:23.508235px;}
.ws39{word-spacing:23.592236px;}
.ws5f{word-spacing:23.610236px;}
.ws277{word-spacing:23.616236px;}
.ws7b{word-spacing:23.676237px;}
.ws1ed{word-spacing:23.790238px;}
.ws1c9{word-spacing:23.796238px;}
.ws16c{word-spacing:23.826238px;}
.ws5e{word-spacing:23.880239px;}
.ws12b{word-spacing:23.946239px;}
.wsb5{word-spacing:23.976240px;}
.ws251{word-spacing:24.072241px;}
.ws1d8{word-spacing:24.096241px;}
.ws2a0{word-spacing:24.132241px;}
.ws100{word-spacing:24.264243px;}
.wsff{word-spacing:24.420244px;}
.ws1ae{word-spacing:24.444244px;}
.ws15a{word-spacing:24.528245px;}
.wsa3{word-spacing:24.558246px;}
.ws78{word-spacing:24.642246px;}
.ws1b6{word-spacing:24.678247px;}
.ws184{word-spacing:24.696247px;}
.ws1d3{word-spacing:24.738247px;}
.ws1d4{word-spacing:24.774248px;}
.ws222{word-spacing:24.870249px;}
.ws21f{word-spacing:24.924249px;}
.wsa2{word-spacing:24.942249px;}
.ws20a{word-spacing:25.020250px;}
.ws94{word-spacing:25.032250px;}
.ws4d{word-spacing:25.062251px;}
.ws20b{word-spacing:25.128251px;}
.ws58{word-spacing:25.212252px;}
.ws2c0{word-spacing:25.296000px;}
.ws93{word-spacing:25.374254px;}
.ws59{word-spacing:25.386254px;}
.ws2b7{word-spacing:25.443900px;}
.ws175{word-spacing:25.494255px;}
.ws120{word-spacing:25.500255px;}
.ws2bb{word-spacing:25.530600px;}
.ws174{word-spacing:25.542255px;}
.wsad{word-spacing:25.548255px;}
.ws2b8{word-spacing:25.586700px;}
.ws66{word-spacing:25.626256px;}
.ws2e6{word-spacing:25.637700px;}
.ws74{word-spacing:25.668257px;}
.ws121{word-spacing:25.716257px;}
.ws248{word-spacing:25.740257px;}
.ws65{word-spacing:25.842258px;}
.ws236{word-spacing:25.872259px;}
.ws2ad{word-spacing:25.878259px;}
.ws8d{word-spacing:25.890259px;}
.wsa0{word-spacing:26.004260px;}
.ws64{word-spacing:26.052261px;}
.ws273{word-spacing:26.058261px;}
.ws271{word-spacing:26.076261px;}
.ws2d3{word-spacing:26.091600px;}
.ws79{word-spacing:26.142261px;}
.ws2e7{word-spacing:26.173200px;}
.ws9f{word-spacing:26.232262px;}
.ws7a{word-spacing:26.244262px;}
.ws87{word-spacing:26.424264px;}
.ws272{word-spacing:26.556266px;}
.ws201{word-spacing:26.646266px;}
.ws215{word-spacing:26.694267px;}
.ws155{word-spacing:26.814268px;}
.ws111{word-spacing:26.940269px;}
.ws2c5{word-spacing:27.081000px;}
.ws112{word-spacing:27.084271px;}
.ws292{word-spacing:27.234272px;}
.wsa9{word-spacing:27.252273px;}
.ws268{word-spacing:27.540275px;}
.ws12c{word-spacing:27.618276px;}
.ws219{word-spacing:27.678277px;}
.ws177{word-spacing:27.756278px;}
.wscf{word-spacing:27.786278px;}
.ws1a1{word-spacing:27.816278px;}
.ws104{word-spacing:27.882279px;}
.ws1{word-spacing:27.918000px;}
.ws21a{word-spacing:27.930279px;}
.wsd0{word-spacing:27.954280px;}
.ws4{word-spacing:27.993600px;}
.ws17f{word-spacing:28.032280px;}
.ws122{word-spacing:28.044280px;}
.ws3{word-spacing:28.069200px;}
.ws123{word-spacing:28.098281px;}
.wsaf{word-spacing:28.104281px;}
.wsae{word-spacing:28.188282px;}
.ws15c{word-spacing:28.224282px;}
.ws5{word-spacing:28.285200px;}
.ws2cb{word-spacing:28.335600px;}
.ws2ca{word-spacing:28.412100px;}
.ws1cc{word-spacing:28.422284px;}
.ws1be{word-spacing:28.440284px;}
.ws1ca{word-spacing:28.566286px;}
.wsba{word-spacing:28.614286px;}
.ws286{word-spacing:28.728287px;}
.ws2c3{word-spacing:28.815000px;}
.ws98{word-spacing:28.836288px;}
.ws99{word-spacing:28.872289px;}
.ws1ec{word-spacing:28.926289px;}
.wsca{word-spacing:28.950290px;}
.ws62{word-spacing:28.968290px;}
.wsab{word-spacing:29.028290px;}
.ws2aa{word-spacing:29.046290px;}
.ws2c6{word-spacing:29.085300px;}
.ws178{word-spacing:29.118291px;}
.ws68{word-spacing:29.184292px;}
.wsb0{word-spacing:29.196292px;}
.wsef{word-spacing:29.292293px;}
.ws24a{word-spacing:29.418294px;}
.ws2ab{word-spacing:29.514295px;}
.ws19a{word-spacing:29.730297px;}
.ws265{word-spacing:29.748297px;}
.ws267{word-spacing:29.778298px;}
.ws6d{word-spacing:29.808298px;}
.ws266{word-spacing:29.826298px;}
.ws4f{word-spacing:29.874299px;}
.ws9d{word-spacing:30.042300px;}
.ws9e{word-spacing:30.198302px;}
.ws287{word-spacing:30.228302px;}
.ws190{word-spacing:30.414304px;}
.wsdd{word-spacing:30.420304px;}
.ws88{word-spacing:30.474305px;}
.ws199{word-spacing:30.504305px;}
.ws19d{word-spacing:30.582306px;}
.ws18f{word-spacing:30.654307px;}
.ws217{word-spacing:30.720307px;}
.ws2ae{word-spacing:30.762308px;}
.ws28f{word-spacing:31.110311px;}
.ws127{word-spacing:31.158312px;}
.ws126{word-spacing:31.164312px;}
.ws167{word-spacing:31.200312px;}
.ws24c{word-spacing:31.218312px;}
.ws166{word-spacing:31.260313px;}
.ws1e7{word-spacing:31.296313px;}
.ws29e{word-spacing:31.434314px;}
.ws17e{word-spacing:31.530315px;}
.wsf9{word-spacing:31.554316px;}
.ws1fc{word-spacing:31.590316px;}
.ws29d{word-spacing:31.614316px;}
.ws2c4{word-spacing:31.630200px;}
.ws1b4{word-spacing:31.974320px;}
.ws212{word-spacing:32.088321px;}
.ws213{word-spacing:32.106321px;}
.ws214{word-spacing:32.190322px;}
.ws1e0{word-spacing:32.214322px;}
.ws1c1{word-spacing:32.520325px;}
.wsda{word-spacing:32.580326px;}
.ws232{word-spacing:32.598326px;}
.ws233{word-spacing:32.610326px;}
.ws296{word-spacing:32.760328px;}
.ws124{word-spacing:32.850329px;}
.wsc7{word-spacing:32.928329px;}
.ws125{word-spacing:32.940329px;}
.wse1{word-spacing:32.988330px;}
.ws179{word-spacing:33.036330px;}
.ws156{word-spacing:33.246332px;}
.ws2d5{word-spacing:33.272400px;}
.ws1d0{word-spacing:33.276333px;}
.ws1a0{word-spacing:33.294333px;}
.ws20f{word-spacing:33.306333px;}
.ws22b{word-spacing:33.336333px;}
.ws19f{word-spacing:33.372334px;}
.ws282{word-spacing:33.486335px;}
.ws205{word-spacing:33.540335px;}
.ws163{word-spacing:33.594336px;}
.ws2af{word-spacing:33.600336px;}
.ws206{word-spacing:33.636336px;}
.ws14d{word-spacing:33.684337px;}
.ws253{word-spacing:33.690337px;}
.ws254{word-spacing:33.714337px;}
.ws17c{word-spacing:33.870339px;}
.ws252{word-spacing:33.882339px;}
.ws255{word-spacing:33.972340px;}
.ws113{word-spacing:34.176342px;}
.ws1e2{word-spacing:34.278343px;}
.ws1c2{word-spacing:34.404344px;}
.ws294{word-spacing:34.434344px;}
.ws28c{word-spacing:34.464345px;}
.ws2d9{word-spacing:34.470900px;}
.ws57{word-spacing:34.560346px;}
.ws1e1{word-spacing:34.578346px;}
.ws151{word-spacing:34.602346px;}
.ws1e3{word-spacing:34.656347px;}
.ws1df{word-spacing:34.746347px;}
.wsb1{word-spacing:34.758348px;}
.ws55{word-spacing:34.800348px;}
.ws11e{word-spacing:34.812348px;}
.ws204{word-spacing:35.004350px;}
.ws284{word-spacing:35.016350px;}
.ws11d{word-spacing:35.076351px;}
.wsa6{word-spacing:35.100351px;}
.ws293{word-spacing:35.214352px;}
.ws91{word-spacing:35.538355px;}
.ws29c{word-spacing:35.634356px;}
.ws1d7{word-spacing:35.706357px;}
.ws225{word-spacing:35.958360px;}
.ws1d6{word-spacing:36.096361px;}
.ws1d5{word-spacing:36.210362px;}
.ws1a7{word-spacing:36.318363px;}
.ws17b{word-spacing:36.468365px;}
.ws11b{word-spacing:36.522365px;}
.ws283{word-spacing:36.600366px;}
.ws288{word-spacing:36.660367px;}
.ws5b{word-spacing:36.852369px;}
.ws147{word-spacing:37.038370px;}
.ws5c{word-spacing:37.098371px;}
.ws24f{word-spacing:37.452375px;}
.wsb3{word-spacing:37.506375px;}
.ws2d8{word-spacing:37.622700px;}
.ws1c4{word-spacing:37.974380px;}
.wsb2{word-spacing:37.992380px;}
.ws2a2{word-spacing:38.064381px;}
.ws2cc{word-spacing:38.117400px;}
.ws1c3{word-spacing:38.130381px;}
.ws227{word-spacing:38.646386px;}
.ws28d{word-spacing:38.682387px;}
.ws105{word-spacing:39.156392px;}
.wsa8{word-spacing:40.176402px;}
.wsc6{word-spacing:40.566406px;}
.ws2cd{word-spacing:40.932600px;}
.ws2ce{word-spacing:41.361000px;}
.ws195{word-spacing:41.418414px;}
.ws1c0{word-spacing:41.760418px;}
.ws75{word-spacing:41.790418px;}
.ws6b{word-spacing:41.838418px;}
.ws76{word-spacing:41.940419px;}
.ws108{word-spacing:42.042420px;}
.ws6c{word-spacing:42.054421px;}
.wsb7{word-spacing:42.120421px;}
.ws249{word-spacing:42.132421px;}
.ws107{word-spacing:42.216422px;}
.ws226{word-spacing:42.240422px;}
.ws19e{word-spacing:42.408424px;}
.ws2c1{word-spacing:42.834900px;}
.ws220{word-spacing:42.978430px;}
.ws25f{word-spacing:43.284433px;}
.ws159{word-spacing:43.506435px;}
.ws209{word-spacing:43.662437px;}
.ws103{word-spacing:43.692437px;}
.wsa7{word-spacing:43.866439px;}
.ws19b{word-spacing:43.902439px;}
.ws70{word-spacing:44.364444px;}
.wsd5{word-spacing:44.766448px;}
.ws22c{word-spacing:45.156452px;}
.wsb4{word-spacing:45.312453px;}
.ws1f1{word-spacing:45.522455px;}
.ws1b2{word-spacing:45.618456px;}
.ws14e{word-spacing:46.122461px;}
.ws14f{word-spacing:46.188462px;}
.ws150{word-spacing:46.218462px;}
.ws211{word-spacing:47.322473px;}
.ws234{word-spacing:47.634476px;}
.ws69{word-spacing:47.682477px;}
.ws173{word-spacing:48.420484px;}
.ws172{word-spacing:48.552486px;}
.ws274{word-spacing:49.698497px;}
.ws1fb{word-spacing:50.850509px;}
.ws1e6{word-spacing:51.420514px;}
.ws1e4{word-spacing:51.558516px;}
.ws1e5{word-spacing:51.612516px;}
.ws182{word-spacing:52.584526px;}
.ws221{word-spacing:53.952540px;}
.ws198{word-spacing:54.456545px;}
.ws197{word-spacing:54.510545px;}
.ws2a8{word-spacing:56.880569px;}
.ws193{word-spacing:57.564576px;}
.ws73{word-spacing:57.690577px;}
.ws1a3{word-spacing:58.032580px;}
.ws1f4{word-spacing:60.144601px;}
.ws1aa{word-spacing:61.338613px;}
.ws1a9{word-spacing:62.034620px;}
.ws1f3{word-spacing:63.192632px;}
.ws2a4{word-spacing:63.240632px;}
.ws228{word-spacing:63.858639px;}
.ws229{word-spacing:63.990640px;}
.ws2a1{word-spacing:64.596646px;}
.ws230{word-spacing:66.090661px;}
.ws231{word-spacing:66.132661px;}
.ws202{word-spacing:67.206672px;}
.ws89{word-spacing:67.392674px;}
.wsd3{word-spacing:70.624211px;}
.ws71{word-spacing:75.690757px;}
.ws2a7{word-spacing:76.056761px;}
.ws2a6{word-spacing:87.480875px;}
.ws2a5{word-spacing:88.092881px;}
.ws1fe{word-spacing:102.199022px;}
.ws46{word-spacing:103.507521px;}
.ws13e{word-spacing:156.182400px;}
.ws13d{word-spacing:174.552600px;}
.ws27f{word-spacing:229.984500px;}
.ws281{word-spacing:308.101200px;}
.ws140{word-spacing:453.038100px;}
.wsbb{word-spacing:2668.671276px;}
._28{margin-left:-57.792578px;}
._37{margin-left:-13.064359px;}
._5{margin-left:-1.156786px;}
._1{width:1.717200px;}
._4{width:11.164660px;}
._3{width:13.060637px;}
._a{width:14.592146px;}
._6{width:16.530993px;}
._8{width:17.650520px;}
._10{width:19.650196px;}
._9{width:21.270213px;}
._1d{width:22.386224px;}
._e{width:23.412234px;}
._7{width:24.792248px;}
._2c{width:25.860259px;}
._d{width:26.904269px;}
._25{width:28.068281px;}
._0{width:29.160000px;}
._35{width:30.174302px;}
._f{width:31.188312px;}
._1b{width:32.267140px;}
._19{width:33.996340px;}
._1a{width:35.280353px;}
._15{width:36.342363px;}
._11{width:38.040380px;}
._34{width:39.984400px;}
._18{width:41.886419px;}
._1c{width:43.140431px;}
._16{width:44.952450px;}
._17{width:46.560466px;}
._12{width:48.816488px;}
._2e{width:50.826508px;}
._26{width:52.602526px;}
._29{width:55.782558px;}
._27{width:57.570576px;}
._14{width:58.866589px;}
._2f{width:60.240000px;}
._2a{width:63.678637px;}
._2d{width:68.328683px;}
._2{width:72.251398px;}
._36{width:75.500221px;}
._13{width:76.818768px;}
._b{width:87.640148px;}
._2b{width:103.357034px;}
._20{width:179.718900px;}
._23{width:237.338700px;}
._21{width:247.977300px;}
._31{width:308.208300px;}
._1e{width:318.938700px;}
._22{width:357.846600px;}
._32{width:419.230200px;}
._33{width:442.022100px;}
._1f{width:443.128800px;}
._30{width:484.030800px;}
._24{width:540.921300px;}
._c{width:1527.921948px;}
.fc2{color:rgb(35,80,162);}
.fc1{color:rgb(90,87,88);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.398200px;}
.fsd{font-size:29.995200px;}
.fs4{font-size:31.995000px;}
.fsb{font-size:33.995400px;}
.fse{font-size:35.699400px;}
.fs9{font-size:39.996000px;}
.fs7{font-size:41.999400px;}
.fsc{font-size:44.999400px;}
.fs3{font-size:47.994600px;}
.fs5{font-size:47.999400px;}
.fs8{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.000600px;}
.fs2{font-size:71.999400px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:35.972211px;}
.y44{bottom:66.246429px;}
.yb8{bottom:71.089845px;}
.y1fe{bottom:71.090490px;}
.y16f{bottom:71.091765px;}
.y85{bottom:71.092169px;}
.y1a9{bottom:71.092560px;}
.y13d{bottom:71.092950px;}
.y196{bottom:71.093354px;}
.y271{bottom:71.934225px;}
.y13c{bottom:76.110150px;}
.y1a0{bottom:77.811000px;}
.y43{bottom:81.212915px;}
.y13b{bottom:86.910150px;}
.y270{bottom:89.197725px;}
.yb7{bottom:90.648540px;}
.y1cf{bottom:90.648931px;}
.y1fd{bottom:90.649185px;}
.yce{bottom:90.650220px;}
.y16e{bottom:90.650461px;}
.y84{bottom:90.650865px;}
.yda{bottom:90.651255px;}
.y195{bottom:90.652050px;}
.y42{bottom:96.264450px;}
.y194{bottom:97.285050px;}
.y26f{bottom:106.375800px;}
.y19f{bottom:107.659800px;}
.yb6{bottom:110.123235px;}
.y1ce{bottom:110.123625px;}
.y1a8{bottom:110.123880px;}
.ycd{bottom:110.124915px;}
.y16d{bottom:110.125155px;}
.y83{bottom:110.125560px;}
.yd9{bottom:110.125950px;}
.y13a{bottom:112.762200px;}
.y138{bottom:112.762350px;}
.y19e{bottom:116.758950px;}
.y139{bottom:118.374750px;}
.y26e{bottom:123.639300px;}
.y1b6{bottom:129.597540px;}
.yb5{bottom:129.597930px;}
.y1cd{bottom:129.598320px;}
.y1a7{bottom:129.598575px;}
.ycc{bottom:129.599610px;}
.y16c{bottom:129.599850px;}
.y82{bottom:129.600254px;}
.y135{bottom:135.212325px;}
.y137{bottom:135.212550px;}
.y193{bottom:136.318050px;}
.y26d{bottom:140.902800px;}
.y136{bottom:140.910150px;}
.y3f{bottom:148.648800px;}
.y238{bottom:149.142240px;}
.y7f{bottom:149.156235px;}
.yb4{bottom:149.156625px;}
.y1cc{bottom:149.157016px;}
.y192{bottom:149.157270px;}
.y16b{bottom:149.157661px;}
.ycb{bottom:149.158305px;}
.y81{bottom:149.158950px;}
.y80{bottom:155.792100px;}
.y132{bottom:157.747725px;}
.y134{bottom:157.747950px;}
.y26c{bottom:158.166300px;}
.y12a{bottom:161.149650px;}
.y133{bottom:163.445550px;}
.y1f6{bottom:163.785600px;}
.y1fa{bottom:166.081800px;}
.y237{bottom:168.616935px;}
.yc8{bottom:168.627570px;}
.y7e{bottom:168.630930px;}
.yb3{bottom:168.631320px;}
.y1c2{bottom:168.631711px;}
.y191{bottom:168.631965px;}
.y16a{bottom:168.632355px;}
.yca{bottom:168.633000px;}
.yc9{bottom:175.266150px;}
.y26b{bottom:175.429800px;}
.y129{bottom:179.092725px;}
.y131{bottom:180.283350px;}
.y12f{bottom:180.283650px;}
.y1f5{bottom:181.814100px;}
.y1f3{bottom:181.814175px;}
.y167{bottom:185.640900px;}
.y130{bottom:185.895900px;}
.y1f4{bottom:187.511700px;}
.y236{bottom:188.091630px;}
.yc7{bottom:188.102265px;}
.y1c9{bottom:188.105370px;}
.y7d{bottom:188.105625px;}
.yb2{bottom:188.106015px;}
.y19d{bottom:188.106405px;}
.y166{bottom:188.106660px;}
.y168{bottom:188.107050px;}
.y26a{bottom:192.693300px;}
.y169{bottom:194.825100px;}
.y128{bottom:197.121225px;}
.y1f2{bottom:199.842675px;}
.y3e{bottom:200.511000px;}
.y12c{bottom:202.733775px;}
.y12e{bottom:202.733850px;}
.yd6{bottom:205.114950px;}
.y235{bottom:207.566325px;}
.yc6{bottom:207.576960px;}
.y1c1{bottom:207.579284px;}
.yd5{bottom:207.579675px;}
.y1c8{bottom:207.580065px;}
.y7c{bottom:207.580319px;}
.yb1{bottom:207.580710px;}
.yd7{bottom:207.581100px;}
.y165{bottom:207.581354px;}
.y12d{bottom:208.431450px;}
.y269{bottom:209.956800px;}
.yd8{bottom:214.299150px;}
.y127{bottom:215.149725px;}
.y1f0{bottom:217.785750px;}
.y3d{bottom:222.961725px;}
.y1f1{bottom:223.483350px;}
.y12b{bottom:226.374825px;}
.y234{bottom:227.125020px;}
.y268{bottom:227.134875px;}
.yc5{bottom:227.135655px;}
.y1c0{bottom:227.137980px;}
.yd4{bottom:227.138370px;}
.y162{bottom:227.138761px;}
.y7b{bottom:227.139015px;}
.yb0{bottom:227.139405px;}
.y164{bottom:227.140050px;}
.y126{bottom:233.092800px;}
.y163{bottom:233.773200px;}
.y1ee{bottom:235.814100px;}
.y1ef{bottom:241.511700px;}
.yae{bottom:244.147950px;}
.y267{bottom:244.398375px;}
.y3c{bottom:245.497950px;}
.y233{bottom:246.599715px;}
.yc4{bottom:246.610350px;}
.y1bf{bottom:246.612675px;}
.yad{bottom:246.613065px;}
.y161{bottom:246.613455px;}
.y7a{bottom:246.613710px;}
.yaf{bottom:246.614100px;}
.y1cb{bottom:246.614205px;}
.y190{bottom:253.247250px;}
.y266{bottom:261.661875px;}
.y15f{bottom:263.622000px;}
.y232{bottom:266.074410px;}
.yc3{bottom:266.085045px;}
.y1be{bottom:266.087369px;}
.yac{bottom:266.087760px;}
.y160{bottom:266.088150px;}
.y79{bottom:266.088404px;}
.y1a6{bottom:266.088463px;}
.y1ca{bottom:266.088900px;}
.y3b{bottom:267.948675px;}
.y265{bottom:278.925375px;}
.y29{bottom:281.485500px;}
.y231{bottom:285.633105px;}
.yc2{bottom:285.643740px;}
.y76{bottom:285.644775px;}
.y121{bottom:285.645811px;}
.y19c{bottom:285.646065px;}
.yab{bottom:285.646455px;}
.y78{bottom:285.647100px;}
.y125{bottom:285.647175px;}
.y3a{bottom:290.484900px;}
.y77{bottom:292.280250px;}
.y264{bottom:296.188875px;}
.y28{bottom:297.982894px;}
.y124{bottom:303.590250px;}
.y230{bottom:305.107800px;}
.ya8{bottom:305.116125px;}
.yc1{bottom:305.118435px;}
.y75{bottom:305.119470px;}
.y120{bottom:305.120505px;}
.y19b{bottom:305.120760px;}
.yaa{bottom:305.121150px;}
.ya9{bottom:311.754150px;}
.y39{bottom:312.935625px;}
.y263{bottom:313.452375px;}
.y27{bottom:314.480288px;}
.y1e5{bottom:315.325875px;}
.y15e{bottom:316.601400px;}
.y123{bottom:321.618750px;}
.y22f{bottom:324.582495px;}
.ya7{bottom:324.590819px;}
.yc0{bottom:324.593130px;}
.y74{bottom:324.594165px;}
.y11e{bottom:324.594569px;}
.y1f9{bottom:324.594810px;}
.y11f{bottom:324.595200px;}
.yd2{bottom:324.595454px;}
.y262{bottom:330.630450px;}
.y26{bottom:330.977681px;}
.yd3{bottom:331.313250px;}
.y15d{bottom:333.014100px;}
.y1e4{bottom:333.354375px;}
.y38{bottom:335.471850px;}
.y122{bottom:339.647250px;}
.y1b5{bottom:341.602950px;}
.y22e{bottom:344.141190px;}
.ya6{bottom:344.149515px;}
.y1b4{bottom:344.150550px;}
.y1bd{bottom:344.150790px;}
.ybf{bottom:344.151825px;}
.y73{bottom:344.152861px;}
.y11d{bottom:344.153265px;}
.y15b{bottom:344.153505px;}
.yd1{bottom:344.154150px;}
.y25{bottom:347.475075px;}
.y261{bottom:347.893950px;}
.y15c{bottom:350.787300px;}
.y1e2{bottom:351.297450px;}
.y1e3{bottom:356.995200px;}
.y37{bottom:358.008075px;}
.y159{bottom:361.162050px;}
.y22d{bottom:363.615885px;}
.ya5{bottom:363.624210px;}
.y158{bottom:363.624450px;}
.y1b3{bottom:363.625245px;}
.y1bc{bottom:363.625485px;}
.ybe{bottom:363.626520px;}
.y72{bottom:363.627555px;}
.y11c{bottom:363.627960px;}
.y15a{bottom:363.628200px;}
.y24{bottom:363.972469px;}
.y260{bottom:365.157450px;}
.y1df{bottom:369.325725px;}
.y1e1{bottom:369.325950px;}
.y19a{bottom:370.261350px;}
.y1e0{bottom:374.938500px;}
.y36{bottom:380.458800px;}
.y23{bottom:380.469863px;}
.y25f{bottom:382.420950px;}
.y22c{bottom:383.090580px;}
.ya4{bottom:383.098904px;}
.y157{bottom:383.099145px;}
.y1b2{bottom:383.099940px;}
.y1bb{bottom:383.100180px;}
.ybd{bottom:383.101215px;}
.y71{bottom:383.102250px;}
.yd0{bottom:383.102588px;}
.y6f{bottom:383.102654px;}
.y1de{bottom:387.354225px;}
.y70{bottom:389.820300px;}
.y22{bottom:396.967256px;}
.y25e{bottom:399.684450px;}
.y1f8{bottom:400.110150px;}
.y22b{bottom:402.649276px;}
.ya3{bottom:402.657600px;}
.y156{bottom:402.657840px;}
.y1b1{bottom:402.658635px;}
.y1ba{bottom:402.658875px;}
.y6c{bottom:402.659266px;}
.ybc{bottom:402.659911px;}
.y18f{bottom:402.660705px;}
.ycf{bottom:402.661225px;}
.y6e{bottom:402.661350px;}
.y1fc{bottom:402.662670px;}
.y35{bottom:402.995025px;}
.y1dd{bottom:405.297300px;}
.y6d{bottom:409.294350px;}
.y25d{bottom:416.947950px;}
.y22a{bottom:422.123970px;}
.ya2{bottom:422.132295px;}
.y155{bottom:422.132535px;}
.y1b0{bottom:422.133330px;}
.y1b9{bottom:422.133570px;}
.y6b{bottom:422.133961px;}
.ybb{bottom:422.134605px;}
.y1fb{bottom:422.137365px;}
.y1dc{bottom:423.325800px;}
.y1da{bottom:423.326025px;}
.y34{bottom:425.445750px;}
.y1db{bottom:428.938500px;}
.y21{bottom:429.962044px;}
.y25c{bottom:434.196375px;}
.y1d7{bottom:441.269025px;}
.y1d9{bottom:441.269100px;}
.y229{bottom:441.598665px;}
.ya1{bottom:441.606990px;}
.y154{bottom:441.607230px;}
.y1af{bottom:441.608025px;}
.y1b8{bottom:441.608265px;}
.y6a{bottom:441.608655px;}
.yba{bottom:441.609300px;}
.y199{bottom:441.609638px;}
.y20{bottom:446.459438px;}
.y1d8{bottom:446.966850px;}
.y33{bottom:447.981975px;}
.y11b{bottom:448.327500px;}
.y25b{bottom:451.374450px;}
.y11a{bottom:458.617200px;}
.y1d6{bottom:459.297525px;}
.y228{bottom:461.073360px;}
.ya0{bottom:461.081684px;}
.y153{bottom:461.081925px;}
.y67{bottom:461.082315px;}
.y18e{bottom:461.082719px;}
.y119{bottom:461.082960px;}
.y69{bottom:461.083350px;}
.y198{bottom:461.083675px;}
.y1a5{bottom:461.083754px;}
.y1f{bottom:462.956832px;}
.y68{bottom:467.801400px;}
.y25a{bottom:468.637950px;}
.y32{bottom:470.518201px;}
.y211{bottom:476.815350px;}
.y1d5{bottom:477.326025px;}
.y1e{bottom:479.454225px;}
.y227{bottom:480.632055px;}
.y9f{bottom:480.640380px;}
.y152{bottom:480.640620px;}
.y66{bottom:480.641011px;}
.y18d{bottom:480.641415px;}
.y118{bottom:480.641655px;}
.y197{bottom:480.642312px;}
.y1a4{bottom:480.642450px;}
.y259{bottom:485.901450px;}
.y1a3{bottom:487.275450px;}
.y31{bottom:492.968925px;}
.y1d2{bottom:495.268800px;}
.y1d4{bottom:495.269100px;}
.y1d{bottom:495.951619px;}
.y116{bottom:497.650200px;}
.y210{bottom:499.350975px;}
.y9e{bottom:500.115075px;}
.y151{bottom:500.115315px;}
.y65{bottom:500.115705px;}
.y115{bottom:500.116110px;}
.y117{bottom:500.116350px;}
.y1a1{bottom:500.118240px;}
.y1d3{bottom:500.966700px;}
.y258{bottom:503.164950px;}
.y1a2{bottom:506.749500px;}
.y1c{bottom:512.449013px;}
.y1d1{bottom:513.297300px;}
.y30{bottom:515.505150px;}
.y226{bottom:519.579945px;}
.y62{bottom:519.588090px;}
.y9d{bottom:519.589769px;}
.y150{bottom:519.590010px;}
.y64{bottom:519.590400px;}
.y114{bottom:519.590804px;}
.y257{bottom:520.428450px;}
.y20f{bottom:521.801175px;}
.y63{bottom:526.308450px;}
.y1d0{bottom:531.325800px;}
.y112{bottom:536.598300px;}
.y256{bottom:537.691950px;}
.y2f{bottom:537.955875px;}
.y225{bottom:539.138640px;}
.y61{bottom:539.146785px;}
.y1f7{bottom:539.147670px;}
.y111{bottom:539.148061px;}
.y9c{bottom:539.148465px;}
.y14f{bottom:539.148705px;}
.y1b7{bottom:539.149362px;}
.y113{bottom:539.149500px;}
.y20e{bottom:544.336800px;}
.y1b{bottom:545.443800px;}
.y1ae{bottom:545.782500px;}
.ye0{bottom:550.544550px;}
.y255{bottom:554.870025px;}
.ye1{bottom:556.242300px;}
.y224{bottom:558.613335px;}
.y60{bottom:558.621480px;}
.y18c{bottom:558.622365px;}
.y110{bottom:558.622755px;}
.y9b{bottom:558.623160px;}
.y14e{bottom:558.623400px;}
.y2e{bottom:560.492100px;}
.y1a{bottom:562.026393px;}
.y14d{bottom:565.256550px;}
.y20b{bottom:565.851900px;}
.y14c{bottom:566.957250px;}
.y20c{bottom:567.977850px;}
.y20a{bottom:567.978075px;}
.ydf{bottom:568.573050px;}
.ydd{bottom:568.573125px;}
.y14b{bottom:570.103800px;}
.y254{bottom:572.133525px;}
.y20d{bottom:573.590400px;}
.yde{bottom:574.270650px;}
.y223{bottom:578.088030px;}
.y5f{bottom:578.096175px;}
.y10d{bottom:578.097060px;}
.y10f{bottom:578.097450px;}
.y9a{bottom:578.097854px;}
.y19{bottom:578.523787px;}
.y2d{bottom:582.942825px;}
.y10e{bottom:584.815500px;}
.ydc{bottom:586.601625px;}
.y253{bottom:589.397025px;}
.y18{bottom:595.021181px;}
.y209{bottom:595.700400px;}
.y222{bottom:597.646725px;}
.y149{bottom:597.653835px;}
.y5e{bottom:597.654870px;}
.y10c{bottom:597.655755px;}
.y99{bottom:597.656550px;}
.y14a{bottom:604.289550px;}
.ydb{bottom:604.544700px;}
.y2c{bottom:605.479050px;}
.y252{bottom:606.660525px;}
.y17{bottom:611.518575px;}
.y208{bottom:611.602950px;}
.y1ad{bottom:611.858325px;}
.y207{bottom:613.728900px;}
.y10a{bottom:614.579400px;}
.y221{bottom:617.121420px;}
.y97{bottom:617.128530px;}
.y5d{bottom:617.129565px;}
.y18b{bottom:617.129805px;}
.y10b{bottom:617.130450px;}
.y98{bottom:623.763600px;}
.y251{bottom:623.924025px;}
.y2b{bottom:628.015275px;}
.y16{bottom:628.015968px;}
.y1ac{bottom:629.801100px;}
.y220{bottom:636.596115px;}
.y96{bottom:636.603225px;}
.y188{bottom:636.603855px;}
.y5c{bottom:636.604260px;}
.y18a{bottom:636.604500px;}
.y250{bottom:641.187525px;}
.y1c7{bottom:642.982275px;}
.y189{bottom:643.322700px;}
.y15{bottom:644.513362px;}
.y1ab{bottom:647.829600px;}
.y2a{bottom:650.466000px;}
.y21f{bottom:656.070810px;}
.y95{bottom:656.077919px;}
.y187{bottom:656.078550px;}
.y5b{bottom:656.078954px;}
.y24f{bottom:658.365600px;}
.y14{bottom:661.010756px;}
.y1c6{bottom:661.010775px;}
.y186{bottom:662.796600px;}
.y1eb{bottom:665.262450px;}
.y1ed{bottom:665.262750px;}
.y1aa{bottom:665.858100px;}
.y1ec{bottom:670.960350px;}
.y109{bottom:673.086450px;}
.y24e{bottom:675.629100px;}
.y21e{bottom:675.629505px;}
.y58{bottom:675.635970px;}
.y108{bottom:675.636211px;}
.y94{bottom:675.636615px;}
.y185{bottom:675.637005px;}
.y5a{bottom:675.637650px;}
.y1c5{bottom:679.039275px;}
.y59{bottom:682.270650px;}
.y1ea{bottom:683.290950px;}
.y24d{bottom:692.892600px;}
.y206{bottom:694.176000px;}
.y21d{bottom:695.104200px;}
.y57{bottom:695.110665px;}
.y107{bottom:695.110905px;}
.y93{bottom:695.111310px;}
.y184{bottom:695.111700px;}
.y1c4{bottom:696.982350px;}
.y1e9{bottom:701.319450px;}
.y1e7{bottom:701.319675px;}
.y183{bottom:701.744700px;}
.y1e8{bottom:706.932150px;}
.y24c{bottom:710.156100px;}
.y203{bottom:712.204350px;}
.y205{bottom:712.204500px;}
.y13{bottom:713.480100px;}
.y21c{bottom:714.578895px;}
.y104{bottom:714.584325px;}
.y56{bottom:714.585360px;}
.y106{bottom:714.585600px;}
.y92{bottom:714.586004px;}
.y1c3{bottom:715.010850px;}
.y204{bottom:717.902100px;}
.y12{bottom:718.837500px;}
.y1e6{bottom:719.262750px;}
.y105{bottom:721.303800px;}
.y24b{bottom:727.419600px;}
.y202{bottom:730.232850px;}
.y200{bottom:730.233075px;}
.y90{bottom:731.593500px;}
.y21b{bottom:734.137590px;}
.y103{bottom:734.143020px;}
.y147{bottom:734.143261px;}
.y8f{bottom:734.143800px;}
.y55{bottom:734.144055px;}
.y91{bottom:734.144700px;}
.y11{bottom:734.485106px;}
.y201{bottom:735.845550px;}
.y148{bottom:740.777700px;}
.y24a{bottom:744.683100px;}
.y1ff{bottom:748.176150px;}
.y10{bottom:750.982500px;}
.y21a{bottom:753.612285px;}
.y52{bottom:753.616680px;}
.yf5{bottom:753.617715px;}
.y146{bottom:753.617955px;}
.y8e{bottom:753.618495px;}
.y54{bottom:753.618750px;}
.yf{bottom:756.339900px;}
.y53{bottom:760.251750px;}
.y249{bottom:761.946600px;}
.yf6{bottom:765.099000px;}
.ye{bottom:771.987150px;}
.y219{bottom:773.086980px;}
.y51{bottom:773.091375px;}
.yf4{bottom:773.092410px;}
.y145{bottom:773.092650px;}
.y182{bottom:773.093054px;}
.y8d{bottom:773.093189px;}
.yd{bottom:777.344700px;}
.y248{bottom:779.124675px;}
.y144{bottom:779.810850px;}
.y218{bottom:792.645675px;}
.y50{bottom:792.650070px;}
.yf3{bottom:792.651105px;}
.y181{bottom:792.651750px;}
.y8c{bottom:792.651885px;}
.y247{bottom:796.388175px;}
.y180{bottom:799.284900px;}
.ya{bottom:806.512275px;}
.yc{bottom:806.513100px;}
.y217{bottom:812.120370px;}
.yf2{bottom:812.121405px;}
.y4f{bottom:812.124765px;}
.y102{bottom:812.125800px;}
.y8b{bottom:812.126580px;}
.y246{bottom:813.651675px;}
.yb{bottom:814.506900px;}
.y245{bottom:830.915175px;}
.y216{bottom:831.595065px;}
.yf1{bottom:831.596100px;}
.y4e{bottom:831.599460px;}
.y8a{bottom:831.601274px;}
.y7{bottom:833.470125px;}
.y9{bottom:833.470650px;}
.y8{bottom:841.464300px;}
.y244{bottom:848.178675px;}
.y215{bottom:851.153761px;}
.yf0{bottom:851.154796px;}
.y4d{bottom:851.158155px;}
.y101{bottom:851.158687px;}
.y143{bottom:851.158812px;}
.y89{bottom:851.159970px;}
.y5{bottom:860.513100px;}
.y243{bottom:865.442175px;}
.y6{bottom:868.506900px;}
.y214{bottom:870.628455px;}
.yef{bottom:870.629490px;}
.y17f{bottom:870.632055px;}
.y100{bottom:870.632725px;}
.y4c{bottom:870.632850px;}
.y88{bottom:870.634665px;}
.y242{bottom:882.620250px;}
.y213{bottom:890.103150px;}
.yee{bottom:890.104185px;}
.y17e{bottom:890.106510px;}
.y87{bottom:890.109359px;}
.y241{bottom:899.883750px;}
.y212{bottom:909.577845px;}
.yed{bottom:909.578880px;}
.y4b{bottom:909.580800px;}
.y17d{bottom:909.581204px;}
.y86{bottom:909.584054px;}
.y240{bottom:917.147250px;}
.y4{bottom:919.021050px;}
.y142{bottom:929.136540px;}
.yec{bottom:929.137575px;}
.y17a{bottom:929.138220px;}
.y17c{bottom:929.139900px;}
.y23f{bottom:934.410750px;}
.y17b{bottom:935.772900px;}
.y141{bottom:948.611235px;}
.yeb{bottom:948.612270px;}
.y179{bottom:948.612915px;}
.y23e{bottom:951.674250px;}
.y3{bottom:953.462250px;}
.y277{bottom:962.304315px;}
.y140{bottom:968.085930px;}
.yea{bottom:968.086965px;}
.y178{bottom:968.087610px;}
.yff{bottom:968.088254px;}
.y23d{bottom:968.937750px;}
.y4a{bottom:971.489550px;}
.y276{bottom:981.779010px;}
.y23c{bottom:986.201250px;}
.y27c{bottom:987.221850px;}
.y13f{bottom:987.644625px;}
.yfc{bottom:987.645090px;}
.ye9{bottom:987.645661px;}
.y177{bottom:987.646305px;}
.yfe{bottom:987.646950px;}
.y2{bottom:987.987150px;}
.y49{bottom:992.494200px;}
.yfd{bottom:994.280100px;}
.y275{bottom:1001.253704px;}
.y27b{bottom:1006.694259px;}
.y13e{bottom:1007.119320px;}
.yfb{bottom:1007.119785px;}
.ye8{bottom:1007.120355px;}
.y176{bottom:1007.121000px;}
.y174{bottom:1007.122125px;}
.y175{bottom:1013.754150px;}
.y274{bottom:1020.812400px;}
.y27a{bottom:1026.252954px;}
.ye5{bottom:1026.594015px;}
.yfa{bottom:1026.594480px;}
.ye7{bottom:1026.595050px;}
.y173{bottom:1026.596820px;}
.y48{bottom:1028.380799px;}
.ye6{bottom:1033.313100px;}
.y279{bottom:1045.727649px;}
.ye4{bottom:1046.152711px;}
.yf9{bottom:1046.153175px;}
.y23b{bottom:1046.153355px;}
.y172{bottom:1046.155515px;}
.y47{bottom:1050.915525px;}
.y1{bottom:1058.484750px;}
.y278{bottom:1065.202344px;}
.ye3{bottom:1065.627405px;}
.yf8{bottom:1065.627870px;}
.y171{bottom:1065.630210px;}
.y23a{bottom:1065.632115px;}
.y273{bottom:1069.539450px;}
.y46{bottom:1073.451750px;}
.ye2{bottom:1085.102100px;}
.yf7{bottom:1085.102565px;}
.y170{bottom:1085.104905px;}
.y239{bottom:1085.190810px;}
.y272{bottom:1086.802950px;}
.y41{bottom:1098.538189px;}
.y40{bottom:1118.777700px;}
.yb9{bottom:1129.662750px;}
.h1d{height:16.691741px;}
.h1b{height:19.638036px;}
.h13{height:20.621705px;}
.h20{height:24.123000px;}
.h1f{height:24.884633px;}
.h16{height:26.965685px;}
.hf{height:28.437156px;}
.h6{height:28.763505px;}
.h11{height:30.561865px;}
.h5{height:35.132047px;}
.h8{height:35.135561px;}
.he{height:35.956404px;}
.h14{height:37.332000px;}
.hb{height:37.757461px;}
.h2{height:39.528000px;}
.h15{height:40.454461px;}
.h1e{height:40.980410px;}
.h10{height:42.660427px;}
.h7{height:43.151461px;}
.h9{height:43.920439px;}
.hc{height:45.849000px;}
.h1c{height:45.850200px;}
.h4{height:52.703561px;}
.h21{height:53.924281px;}
.ha{height:53.940539px;}
.h17{height:53.941501px;}
.h19{height:53.943118px;}
.h18{height:53.943718px;}
.h22{height:53.946504px;}
.h1a{height:53.947259px;}
.h12{height:53.958118px;}
.hd{height:64.727461px;}
.h3{height:79.056000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.456700px;}
.x13{left:72.878700px;}
.xb1{left:75.174750px;}
.x49{left:78.914475px;}
.x51{left:80.192100px;}
.x52{left:86.059800px;}
.x19{left:90.993036px;}
.x53{left:94.648800px;}
.xcd{left:96.094875px;}
.x56{left:102.897600px;}
.x4a{left:107.914950px;}
.xa7{left:111.486600px;}
.x87{left:115.738500px;}
.x88{left:124.412550px;}
.x63{left:130.280250px;}
.x4b{left:132.661350px;}
.x1d{left:134.617350px;}
.xb3{left:137.168400px;}
.x1f{left:138.699150px;}
.x95{left:140.144850px;}
.x64{left:142.355850px;}
.xb4{left:144.056700px;}
.x94{left:146.182650px;}
.x20{left:149.669250px;}
.xc9{left:154.941750px;}
.x1e{left:158.938500px;}
.xca{left:160.469250px;}
.x4e{left:161.489700px;}
.xa1{left:164.466150px;}
.x10{left:167.952750px;}
.x59{left:171.184200px;}
.x9c{left:175.351200px;}
.x5a{left:176.626800px;}
.x5b{left:184.025100px;}
.x65{left:187.086600px;}
.x5c{left:189.552750px;}
.x11{left:192.529050px;}
.x5d{left:196.866150px;}
.x15{left:198.226800px;}
.x17{left:203.158950px;}
.x34{left:206.220450px;}
.x2{left:209.707050px;}
.xa9{left:212.428350px;}
.x89{left:214.979550px;}
.x8{left:217.020450px;}
.x9d{left:219.231450px;}
.xaa{left:221.102250px;}
.x18{left:222.377850px;}
.x82{left:224.844000px;}
.x35{left:225.949500px;}
.x60{left:229.606200px;}
.x16{left:231.307050px;}
.x3{left:234.283350px;}
.x21{left:238.195200px;}
.x22{left:239.555850px;}
.x83{left:244.913400px;}
.x7e{left:247.804650px;}
.xab{left:250.270800px;}
.x9{left:251.461350px;}
.x84{left:253.757400px;}
.xb6{left:257.414100px;}
.x7f{left:260.305500px;}
.x85{left:266.343300px;}
.x7d{left:268.384200px;}
.x7b{left:269.404650px;}
.x96{left:276.547950px;}
.x23{left:277.568400px;}
.x2c{left:282.075600px;}
.x7c{left:284.796750px;}
.xaf{left:289.048800px;}
.xb7{left:291.855000px;}
.xb8{left:299.338500px;}
.x9b{left:302.059800px;}
.xb0{left:303.250350px;}
.x2d{left:305.461350px;}
.x61{left:309.203100px;}
.x80{left:314.135400px;}
.x14{left:315.240900px;}
.x62{left:323.404650px;}
.xb9{left:330.122700px;}
.x81{left:332.503950px;}
.xac{left:338.626650px;}
.x79{left:340.412550px;}
.x1c{left:343.473900px;}
.x57{left:352.828200px;}
.xb5{left:354.699150px;}
.x4f{left:361.587300px;}
.x7a{left:366.859800px;}
.x12{left:368.050350px;}
.x58{left:369.581100px;}
.x86{left:371.622000px;}
.x5e{left:373.407750px;}
.x50{left:375.788850px;}
.x1a{left:380.296050px;}
.x32{left:383.357400px;}
.xae{left:388.204650px;}
.x4{left:393.902250px;}
.x4c{left:395.262900px;}
.x5f{left:397.133850px;}
.x1b{left:400.875450px;}
.x33{left:402.576300px;}
.xa{left:410.144850px;}
.xa8{left:411.675450px;}
.xb2{left:414.651900px;}
.x5{left:418.563750px;}
.x54{left:423.411000px;}
.x66{left:427.152600px;}
.x55{left:428.853450px;}
.xa4{left:431.574750px;}
.xb{left:434.721150px;}
.x4d{left:438.888150px;}
.xad{left:444.840900px;}
.xa5{left:457.341600px;}
.x25{left:460.318227px;}
.xcb{left:466.610850px;}
.xc1{left:470.777025px;}
.x71{left:475.625100px;}
.xce{left:479.793813px;}
.x72{left:480.982650px;}
.x24{left:482.768952px;}
.xcc{left:488.041050px;}
.xa0{left:494.333700px;}
.x6f{left:499.180950px;}
.x3f{left:504.538500px;}
.x3c{left:505.729050px;}
.x37{left:507.089700px;}
.x40{left:508.790400px;}
.x38{left:517.634550px;}
.x3d{left:519.930600px;}
.x39{left:523.162050px;}
.x73{left:528.689700px;}
.x6e{left:530.305350px;}
.x28{left:533.196750px;}
.x70{left:538.554150px;}
.x8f{left:541.275450px;}
.x36{left:547.908450px;}
.x77{left:550.629750px;}
.x74{left:552.500700px;}
.xc{left:555.392100px;}
.x29{left:559.048650px;}
.x2f{left:560.664450px;}
.x3e{left:565.256550px;}
.x26{left:567.807750px;}
.x2a{left:571.039200px;}
.x30{left:573.590400px;}
.x45{left:576.736800px;}
.xd{left:579.968400px;}
.xba{left:582.434550px;}
.x2b{left:585.921150px;}
.x67{left:588.812400px;}
.x31{left:590.003100px;}
.x6d{left:594.595200px;}
.xbb{left:596.976300px;}
.x46{left:603.694350px;}
.x6{left:608.286450px;}
.x99{left:610.837650px;}
.x68{left:613.303800px;}
.x8a{left:614.409300px;}
.x8c{left:620.787300px;}
.x75{left:622.743150px;}
.x3a{left:624.444000px;}
.xbc{left:627.080250px;}
.x8b{left:628.100700px;}
.x3b{left:629.801400px;}
.x8e{left:631.417200px;}
.x7{left:632.947950px;}
.x47{left:636.009300px;}
.x8d{left:639.410850px;}
.x76{left:641.026650px;}
.x69{left:643.833000px;}
.x41{left:646.044000px;}
.x42{left:650.210850px;}
.x97{left:652.081650px;}
.x98{left:657.694350px;}
.xbd{left:659.310000px;}
.xbe{left:667.643850px;}
.xc2{left:669.855000px;}
.x6a{left:671.130600px;}
.x48{left:673.596750px;}
.xc3{left:675.212400px;}
.xbf{left:696.812400px;}
.xc4{left:698.768400px;}
.xc0{left:703.190400px;}
.x9e{left:705.316350px;}
.xa6{left:712.459650px;}
.x92{left:723.514800px;}
.x93{left:733.379400px;}
.x43{left:740.012400px;}
.xe{left:742.393500px;}
.x44{left:745.455000px;}
.x6b{left:754.299000px;}
.xa2{left:757.870650px;}
.x90{left:760.932150px;}
.xf{left:767.054850px;}
.xc5{left:768.330600px;}
.xc6{left:774.793500px;}
.xc7{left:778.365150px;}
.x9f{left:779.725650px;}
.xa3{left:783.637500px;}
.x91{left:785.848650px;}
.x27{left:790.525800px;}
.x9a{left:794.097450px;}
.x6c{left:800.050200px;}
.xc8{left:801.921000px;}
.x2e{left:805.662750px;}
.x78{left:810.254850px;}
@media print{
.v2{vertical-align:-40.818667pt;}
.v3{vertical-align:-29.631467pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.630933pt;}
.v1{vertical-align:19.366559pt;}
.lsd{letter-spacing:-0.890676pt;}
.lsf{letter-spacing:-0.721706pt;}
.lse{letter-spacing:-0.682598pt;}
.ls32{letter-spacing:-0.006400pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.009067pt;}
.ls44{letter-spacing:0.022667pt;}
.ls15{letter-spacing:0.035552pt;}
.ls3e{letter-spacing:0.040800pt;}
.ls34{letter-spacing:0.051200pt;}
.lsa{letter-spacing:0.053334pt;}
.ls1{letter-spacing:0.076800pt;}
.ls3{letter-spacing:0.078399pt;}
.ls1f{letter-spacing:0.080001pt;}
.ls16{letter-spacing:0.085334pt;}
.ls10{letter-spacing:0.117335pt;}
.ls3c{letter-spacing:0.145067pt;}
.ls42{letter-spacing:0.149600pt;}
.ls39{letter-spacing:0.206667pt;}
.ls4e{letter-spacing:0.208533pt;}
.ls1b{letter-spacing:0.224002pt;}
.ls35{letter-spacing:0.224656pt;}
.ls41{letter-spacing:0.231200pt;}
.ls2{letter-spacing:0.245336pt;}
.ls37{letter-spacing:0.305747pt;}
.ls20{letter-spacing:1.152012pt;}
.ls2b{letter-spacing:2.498933pt;}
.ls3a{letter-spacing:2.577867pt;}
.ls19{letter-spacing:2.801333pt;}
.ls2c{letter-spacing:2.801867pt;}
.ls51{letter-spacing:5.253386pt;}
.ls4f{letter-spacing:5.269386pt;}
.ls53{letter-spacing:5.296053pt;}
.ls50{letter-spacing:5.360054pt;}
.ls1c{letter-spacing:6.374347pt;}
.ls48{letter-spacing:6.380747pt;}
.ls11{letter-spacing:6.393547pt;}
.lsc{letter-spacing:6.419147pt;}
.ls46{letter-spacing:6.523467pt;}
.ls1d{letter-spacing:6.600533pt;}
.ls13{letter-spacing:6.627733pt;}
.ls6{letter-spacing:8.400962pt;}
.ls23{letter-spacing:9.533867pt;}
.ls0{letter-spacing:10.104000pt;}
.ls3b{letter-spacing:11.637067pt;}
.ls4d{letter-spacing:11.646133pt;}
.ls43{letter-spacing:11.759467pt;}
.ls3f{letter-spacing:11.936267pt;}
.ls4b{letter-spacing:11.949867pt;}
.ls47{letter-spacing:12.566400pt;}
.ls52{letter-spacing:13.877472pt;}
.ls38{letter-spacing:14.149475pt;}
.ls27{letter-spacing:14.736147pt;}
.ls18{letter-spacing:14.869482pt;}
.ls17{letter-spacing:15.040150pt;}
.ls28{letter-spacing:15.173485pt;}
.ls5{letter-spacing:15.397487pt;}
.ls21{letter-spacing:15.648156pt;}
.lsb{letter-spacing:15.696157pt;}
.ls24{letter-spacing:15.883200pt;}
.ls31{letter-spacing:16.709600pt;}
.ls2e{letter-spacing:16.710133pt;}
.ls2a{letter-spacing:17.314400pt;}
.ls29{letter-spacing:17.314933pt;}
.ls36{letter-spacing:18.221600pt;}
.ls4c{letter-spacing:19.810667pt;}
.ls25{letter-spacing:21.023467pt;}
.ls30{letter-spacing:21.548000pt;}
.ls2d{letter-spacing:22.454667pt;}
.ls26{letter-spacing:24.873333pt;}
.ls4a{letter-spacing:25.674923pt;}
.ls45{letter-spacing:27.792278pt;}
.ls3d{letter-spacing:28.394951pt;}
.ls1a{letter-spacing:29.186667pt;}
.ls22{letter-spacing:32.815467pt;}
.ls2f{letter-spacing:35.153867pt;}
.ls40{letter-spacing:48.352484pt;}
.ls49{letter-spacing:50.469838pt;}
.ls33{letter-spacing:51.371180pt;}
.ls12{letter-spacing:62.879476pt;}
.ls1e{letter-spacing:63.186673pt;}
.ls8{letter-spacing:63.346672pt;}
.ls9{letter-spacing:63.487471pt;}
.ls14{letter-spacing:2372.189578pt;}
.ws192{word-spacing:-51.424514pt;}
.ws2b3{word-spacing:-11.995200pt;}
.ws4b{word-spacing:-8.443628pt;}
.ws29b{word-spacing:-5.322720pt;}
.ws2b2{word-spacing:-5.306720pt;}
.ws2{word-spacing:-0.096000pt;}
.ws10c{word-spacing:-0.063999pt;}
.ws1e{word-spacing:-0.053334pt;}
.ws134{word-spacing:-0.045333pt;}
.wsf{word-spacing:-0.042666pt;}
.ws45{word-spacing:-0.037333pt;}
.ws56{word-spacing:-0.035552pt;}
.ws27c{word-spacing:-0.030218pt;}
.ws47{word-spacing:0.000000pt;}
.ws9b{word-spacing:0.647046pt;}
.ws9c{word-spacing:0.686154pt;}
.ws0{word-spacing:2.078400pt;}
.wse2{word-spacing:5.036533pt;}
.ws136{word-spacing:5.090933pt;}
.ws27b{word-spacing:5.245067pt;}
.ws2e8{word-spacing:8.832088pt;}
.ws42{word-spacing:9.519864pt;}
.wsbc{word-spacing:9.559721pt;}
.ws40{word-spacing:9.564663pt;}
.ws41{word-spacing:9.616929pt;}
.ws43{word-spacing:9.680395pt;}
.ws3f{word-spacing:9.732661pt;}
.ws18{word-spacing:9.864410pt;}
.wsbd{word-spacing:9.869956pt;}
.wsec{word-spacing:9.998916pt;}
.ws1c{word-spacing:10.000942pt;}
.ws34{word-spacing:10.080101pt;}
.ws109{word-spacing:10.143915pt;}
.wsd2{word-spacing:10.169515pt;}
.ws3a{word-spacing:10.181435pt;}
.ws143{word-spacing:10.287863pt;}
.ws33{word-spacing:10.314770pt;}
.ws142{word-spacing:10.347862pt;}
.ws10{word-spacing:10.559868pt;}
.ws12{word-spacing:10.564135pt;}
.ws14{word-spacing:10.619601pt;}
.ws4a{word-spacing:10.629440pt;}
.ws3c{word-spacing:10.636667pt;}
.wse{word-spacing:10.645200pt;}
.wsd{word-spacing:10.696400pt;}
.ws13{word-spacing:10.700666pt;}
.ws15{word-spacing:10.773199pt;}
.ws2f{word-spacing:10.816108pt;}
.ws16{word-spacing:10.832931pt;}
.ws28{word-spacing:10.917443pt;}
.ws31{word-spacing:10.928109pt;}
.ws11{word-spacing:10.969463pt;}
.ws2c{word-spacing:11.082777pt;}
.ws30{word-spacing:11.120111pt;}
.ws137{word-spacing:11.455733pt;}
.ws131{word-spacing:11.501067pt;}
.wse8{word-spacing:11.519200pt;}
.wseb{word-spacing:11.523733pt;}
.wse7{word-spacing:11.532800pt;}
.ws138{word-spacing:11.569067pt;}
.wse6{word-spacing:11.573600pt;}
.ws237{word-spacing:11.582667pt;}
.ws242{word-spacing:11.587200pt;}
.ws23d{word-spacing:11.600800pt;}
.ws1ea{word-spacing:11.605333pt;}
.ws241{word-spacing:11.618933pt;}
.ws2ba{word-spacing:11.623467pt;}
.ws23c{word-spacing:11.628000pt;}
.ws135{word-spacing:11.646133pt;}
.ws2bd{word-spacing:11.650667pt;}
.ws2e3{word-spacing:11.655200pt;}
.wsea{word-spacing:11.664267pt;}
.ws139{word-spacing:11.668800pt;}
.ws23f{word-spacing:11.673333pt;}
.ws36{word-spacing:11.680117pt;}
.ws2bf{word-spacing:11.682400pt;}
.ws4c{word-spacing:11.686933pt;}
.ws133{word-spacing:11.691467pt;}
.ws245{word-spacing:11.696000pt;}
.wse9{word-spacing:11.709600pt;}
.ws2b9{word-spacing:11.718667pt;}
.ws2c7{word-spacing:11.723200pt;}
.ws280{word-spacing:11.736800pt;}
.ws23e{word-spacing:11.741333pt;}
.ws132{word-spacing:11.745867pt;}
.ws240{word-spacing:11.754933pt;}
.ws244{word-spacing:11.759467pt;}
.ws13a{word-spacing:11.764000pt;}
.wse4{word-spacing:11.768533pt;}
.ws2da{word-spacing:11.777600pt;}
.ws23a{word-spacing:11.782133pt;}
.ws238{word-spacing:11.786667pt;}
.wse5{word-spacing:11.809333pt;}
.wse3{word-spacing:11.813867pt;}
.ws27a{word-spacing:11.818400pt;}
.ws1e8{word-spacing:11.822933pt;}
.ws22{word-spacing:11.824118pt;}
.ws2df{word-spacing:11.845600pt;}
.ws2bc{word-spacing:11.859200pt;}
.ws21c{word-spacing:11.863733pt;}
.ws27d{word-spacing:11.877333pt;}
.ws246{word-spacing:11.886400pt;}
.ws141{word-spacing:11.904533pt;}
.ws279{word-spacing:11.909067pt;}
.ws243{word-spacing:11.918133pt;}
.ws13f{word-spacing:11.945333pt;}
.ws23b{word-spacing:11.949867pt;}
.ws13c{word-spacing:11.958933pt;}
.ws239{word-spacing:11.963467pt;}
.ws1e9{word-spacing:11.968000pt;}
.ws278{word-spacing:11.981600pt;}
.ws35{word-spacing:11.984120pt;}
.ws21d{word-spacing:11.995200pt;}
.ws13b{word-spacing:12.013333pt;}
.ws2e5{word-spacing:12.045067pt;}
.ws2c9{word-spacing:12.054133pt;}
.ws37{word-spacing:12.128121pt;}
.ws2d0{word-spacing:12.194667pt;}
.ws44{word-spacing:12.379556pt;}
.ws2d7{word-spacing:12.385067pt;}
.ws27e{word-spacing:12.439467pt;}
.ws3d{word-spacing:12.495288pt;}
.ws3e{word-spacing:12.715552pt;}
.ws14c{word-spacing:13.205465pt;}
.ws2dc{word-spacing:13.273600pt;}
.ws2dd{word-spacing:13.328000pt;}
.ws15d{word-spacing:13.338800pt;}
.ws129{word-spacing:13.370800pt;}
.ws2de{word-spacing:13.414133pt;}
.ws14b{word-spacing:13.418801pt;}
.ws18a{word-spacing:13.445468pt;}
.wsb9{word-spacing:13.482801pt;}
.ws262{word-spacing:13.504135pt;}
.ws26b{word-spacing:13.514802pt;}
.ws14a{word-spacing:13.541469pt;}
.ws1bf{word-spacing:13.562802pt;}
.ws1c7{word-spacing:13.568136pt;}
.ws1d{word-spacing:13.584897pt;}
.ws2e2{word-spacing:13.604533pt;}
.wsa4{word-spacing:13.637470pt;}
.ws165{word-spacing:13.642803pt;}
.ws19{word-spacing:13.653163pt;}
.ws2ed{word-spacing:13.653470pt;}
.ws2e1{word-spacing:13.654400pt;}
.wsa5{word-spacing:13.717471pt;}
.ws84{word-spacing:13.728137pt;}
.ws2eb{word-spacing:13.733471pt;}
.ws203{word-spacing:13.749471pt;}
.ws29a{word-spacing:13.760138pt;}
.ws2ec{word-spacing:13.770804pt;}
.ws28a{word-spacing:13.776138pt;}
.ws10f{word-spacing:13.786805pt;}
.ws61{word-spacing:13.792138pt;}
.ws86{word-spacing:13.797471pt;}
.ws102{word-spacing:13.824138pt;}
.ws1a{word-spacing:13.828094pt;}
.ws2ef{word-spacing:13.829472pt;}
.ws26e{word-spacing:13.834805pt;}
.ws18b{word-spacing:13.840138pt;}
.ws2ea{word-spacing:13.845472pt;}
.ws2c8{word-spacing:13.853867pt;}
.ws1b9{word-spacing:13.872139pt;}
.wsde{word-spacing:13.877472pt;}
.ws17{word-spacing:13.883560pt;}
.wsb8{word-spacing:13.893472pt;}
.ws2b1{word-spacing:13.909472pt;}
.wsd1{word-spacing:13.941473pt;}
.ws101{word-spacing:13.946806pt;}
.ws21{word-spacing:13.952140pt;}
.ws1b{word-spacing:13.960359pt;}
.ws24{word-spacing:13.978806pt;}
.ws263{word-spacing:13.989473pt;}
.ws1a6{word-spacing:14.000140pt;}
.ws54{word-spacing:14.005473pt;}
.ws117{word-spacing:14.010807pt;}
.wsdb{word-spacing:14.021474pt;}
.ws2ee{word-spacing:14.037474pt;}
.ws11f{word-spacing:14.042807pt;}
.ws92{word-spacing:14.053474pt;}
.ws2b4{word-spacing:14.066933pt;}
.ws260{word-spacing:14.074807pt;}
.ws224{word-spacing:14.080141pt;}
.wsfe{word-spacing:14.090808pt;}
.ws22e{word-spacing:14.096141pt;}
.ws261{word-spacing:14.144141pt;}
.ws1d9{word-spacing:14.160142pt;}
.ws22f{word-spacing:14.176142pt;}
.ws2d1{word-spacing:14.198400pt;}
.wsee{word-spacing:14.245476pt;}
.ws1ad{word-spacing:14.250809pt;}
.ws210{word-spacing:14.293476pt;}
.ws1b5{word-spacing:14.304143pt;}
.ws258{word-spacing:14.314810pt;}
.ws1f5{word-spacing:14.320143pt;}
.ws24b{word-spacing:14.378810pt;}
.ws1de{word-spacing:14.394811pt;}
.ws1f7{word-spacing:14.432144pt;}
.ws2d2{word-spacing:14.447733pt;}
.ws1ac{word-spacing:14.474811pt;}
.wsc3{word-spacing:14.506812pt;}
.ws185{word-spacing:14.549479pt;}
.ws23{word-spacing:14.613479pt;}
.ws1f6{word-spacing:14.624146pt;}
.ws2b{word-spacing:14.661480pt;}
.wsf5{word-spacing:14.682813pt;}
.ws270{word-spacing:14.693480pt;}
.ws9a{word-spacing:14.698814pt;}
.ws169{word-spacing:14.704147pt;}
.ws29{word-spacing:14.736147pt;}
.ws186{word-spacing:14.762814pt;}
.wsf3{word-spacing:14.789481pt;}
.ws187{word-spacing:14.794815pt;}
.ws1c6{word-spacing:14.816148pt;}
.ws2a{word-spacing:14.832148pt;}
.ws5d{word-spacing:14.837482pt;}
.ws168{word-spacing:14.848148pt;}
.wsf0{word-spacing:14.864149pt;}
.ws183{word-spacing:14.874815pt;}
.ws1c8{word-spacing:14.906816pt;}
.wsf8{word-spacing:14.912149pt;}
.ws77{word-spacing:14.917483pt;}
.wsfd{word-spacing:14.997483pt;}
.ws12e{word-spacing:15.008150pt;}
.ws19c{word-spacing:15.013483pt;}
.ws16f{word-spacing:15.034817pt;}
.ws12d{word-spacing:15.066817pt;}
.ws18d{word-spacing:15.082817pt;}
.ws1eb{word-spacing:15.088151pt;}
.ws1c5{word-spacing:15.093484pt;}
.ws49{word-spacing:15.109484pt;}
.ws191{word-spacing:15.136151pt;}
.ws18c{word-spacing:15.152152pt;}
.ws1db{word-spacing:15.168152pt;}
.ws149{word-spacing:15.184152pt;}
.wsf2{word-spacing:15.221486pt;}
.ws48{word-spacing:15.226819pt;}
.ws180{word-spacing:15.248152pt;}
.ws7c{word-spacing:15.264153pt;}
.ws26{word-spacing:15.306820pt;}
.ws1d2{word-spacing:15.317487pt;}
.ws96{word-spacing:15.370820pt;}
.wsc1{word-spacing:15.408154pt;}
.ws25{word-spacing:15.424154pt;}
.ws16e{word-spacing:15.440154pt;}
.ws28e{word-spacing:15.466821pt;}
.ws67{word-spacing:15.488155pt;}
.ws1bd{word-spacing:15.493488pt;}
.ws1fa{word-spacing:15.509488pt;}
.ws2d6{word-spacing:15.522133pt;}
.ws181{word-spacing:15.546822pt;}
.wsc2{word-spacing:15.557489pt;}
.ws6e{word-spacing:15.600156pt;}
.ws6f{word-spacing:15.610823pt;}
.ws1a2{word-spacing:15.653490pt;}
.ws25e{word-spacing:15.685490pt;}
.ws8b{word-spacing:15.706824pt;}
.ws8c{word-spacing:15.728157pt;}
.ws2d4{word-spacing:15.739733pt;}
.ws3b{word-spacing:15.754824pt;}
.wsce{word-spacing:15.760158pt;}
.ws247{word-spacing:15.802825pt;}
.ws259{word-spacing:15.818825pt;}
.wse0{word-spacing:15.824158pt;}
.ws171{word-spacing:15.840158pt;}
.wsa1{word-spacing:15.861492pt;}
.ws161{word-spacing:15.904159pt;}
.ws106{word-spacing:15.909492pt;}
.ws26d{word-spacing:15.914826pt;}
.ws194{word-spacing:15.941493pt;}
.ws8a{word-spacing:15.962826pt;}
.ws170{word-spacing:15.973493pt;}
.ws15b{word-spacing:15.984160pt;}
.ws207{word-spacing:15.989493pt;}
.ws285{word-spacing:16.000160pt;}
.ws24d{word-spacing:16.010827pt;}
.ws2e0{word-spacing:16.011733pt;}
.ws289{word-spacing:16.058827pt;}
.wsed{word-spacing:16.074827pt;}
.ws157{word-spacing:16.128161pt;}
.wscb{word-spacing:16.138828pt;}
.ws20c{word-spacing:16.144161pt;}
.ws216{word-spacing:16.202829pt;}
.ws114{word-spacing:16.208162pt;}
.ws160{word-spacing:16.245496pt;}
.wscc{word-spacing:16.261496pt;}
.ws1cf{word-spacing:16.266829pt;}
.ws188{word-spacing:16.288163pt;}
.ws53{word-spacing:16.293496pt;}
.wscd{word-spacing:16.298830pt;}
.ws22d{word-spacing:16.314830pt;}
.ws10b{word-spacing:16.345464pt;}
.wsbe{word-spacing:16.346830pt;}
.ws17a{word-spacing:16.362830pt;}
.ws51{word-spacing:16.405497pt;}
.ws15f{word-spacing:16.421498pt;}
.ws95{word-spacing:16.432164pt;}
.ws1ba{word-spacing:16.435063pt;}
.ws1bb{word-spacing:16.447863pt;}
.wsb{word-spacing:16.460663pt;}
.ws52{word-spacing:16.533499pt;}
.wsc{word-spacing:16.543862pt;}
.ws10a{word-spacing:16.550262pt;}
.ws1da{word-spacing:16.556662pt;}
.ws7{word-spacing:16.575862pt;}
.wsdf{word-spacing:16.582262pt;}
.ws8{word-spacing:16.595062pt;}
.ws1bc{word-spacing:16.601462pt;}
.wsfc{word-spacing:16.624166pt;}
.wsa{word-spacing:16.627061pt;}
.wsfb{word-spacing:16.634833pt;}
.ws9{word-spacing:16.652661pt;}
.ws1f0{word-spacing:16.661500pt;}
.wsd4{word-spacing:16.671861pt;}
.ws11c{word-spacing:16.698834pt;}
.wsc5{word-spacing:16.725501pt;}
.ws72{word-spacing:16.730834pt;}
.ws63{word-spacing:16.736167pt;}
.ws6{word-spacing:16.742260pt;}
.ws26f{word-spacing:16.757501pt;}
.ws275{word-spacing:16.810835pt;}
.wsac{word-spacing:16.816168pt;}
.ws10d{word-spacing:16.851060pt;}
.wsc4{word-spacing:16.965503pt;}
.ws1b3{word-spacing:17.034837pt;}
.ws12a{word-spacing:17.061504pt;}
.ws25a{word-spacing:17.072171pt;}
.wsd8{word-spacing:17.082837pt;}
.wsd6{word-spacing:17.114838pt;}
.ws1a8{word-spacing:17.136171pt;}
.ws5a{word-spacing:17.168172pt;}
.ws208{word-spacing:17.205505pt;}
.ws21e{word-spacing:17.226839pt;}
.ws25b{word-spacing:17.232172pt;}
.wsd7{word-spacing:17.253506pt;}
.wsf4{word-spacing:17.413507pt;}
.ws145{word-spacing:17.424174pt;}
.ws16a{word-spacing:17.440174pt;}
.wsb6{word-spacing:17.472175pt;}
.ws6a{word-spacing:17.493508pt;}
.ws144{word-spacing:17.514842pt;}
.ws128{word-spacing:17.520175pt;}
.ws16b{word-spacing:17.642843pt;}
.ws119{word-spacing:17.696177pt;}
.ws148{word-spacing:17.717511pt;}
.ws2e4{word-spacing:17.738933pt;}
.ws2e{word-spacing:17.818845pt;}
.ws1d1{word-spacing:17.829512pt;}
.ws118{word-spacing:17.872179pt;}
.ws2be{word-spacing:17.888533pt;}
.ws2c2{word-spacing:17.952000pt;}
.ws1a4{word-spacing:17.962846pt;}
.ws2a3{word-spacing:17.973513pt;}
.ws295{word-spacing:18.000180pt;}
.ws1ce{word-spacing:18.058847pt;}
.ws1cd{word-spacing:18.090848pt;}
.ws1fd{word-spacing:18.117515pt;}
.ws164{word-spacing:18.154848pt;}
.ws189{word-spacing:18.176182pt;}
.ws2d{word-spacing:18.197515pt;}
.ws8f{word-spacing:18.202849pt;}
.ws8e{word-spacing:18.240182pt;}
.ws25c{word-spacing:18.250849pt;}
.ws2cf{word-spacing:18.251200pt;}
.ws25d{word-spacing:18.256183pt;}
.ws7e{word-spacing:18.272183pt;}
.ws7d{word-spacing:18.320183pt;}
.ws1ee{word-spacing:18.373517pt;}
.ws7f{word-spacing:18.378850pt;}
.ws1ef{word-spacing:18.400184pt;}
.wsf6{word-spacing:18.480185pt;}
.ws264{word-spacing:18.485518pt;}
.wsaa{word-spacing:18.501518pt;}
.ws16d{word-spacing:18.512185pt;}
.ws32{word-spacing:18.544185pt;}
.ws90{word-spacing:18.565519pt;}
.ws24e{word-spacing:18.570852pt;}
.ws2b0{word-spacing:18.597519pt;}
.wsbf{word-spacing:18.624186pt;}
.wsc0{word-spacing:18.634853pt;}
.wsfa{word-spacing:18.661520pt;}
.ws1b0{word-spacing:18.677520pt;}
.ws154{word-spacing:18.709520pt;}
.ws276{word-spacing:18.741521pt;}
.ws1af{word-spacing:18.837522pt;}
.ws11a{word-spacing:18.858855pt;}
.ws28b{word-spacing:18.928189pt;}
.ws298{word-spacing:18.965523pt;}
.ws27{word-spacing:18.981523pt;}
.ws196{word-spacing:18.992190pt;}
.ws176{word-spacing:19.013523pt;}
.ws22a{word-spacing:19.152192pt;}
.ws15e{word-spacing:19.157525pt;}
.wsd9{word-spacing:19.216192pt;}
.ws10e{word-spacing:19.221526pt;}
.ws85{word-spacing:19.226859pt;}
.ws80{word-spacing:19.285526pt;}
.ws130{word-spacing:19.296193pt;}
.ws1b8{word-spacing:19.301526pt;}
.ws12f{word-spacing:19.306860pt;}
.ws81{word-spacing:19.312193pt;}
.ws82{word-spacing:19.317527pt;}
.ws153{word-spacing:19.322860pt;}
.ws297{word-spacing:19.354860pt;}
.ws20d{word-spacing:19.386861pt;}
.ws200{word-spacing:19.440194pt;}
.ws20e{word-spacing:19.477528pt;}
.ws1ff{word-spacing:19.488195pt;}
.ws50{word-spacing:19.498862pt;}
.ws256{word-spacing:19.514862pt;}
.ws110{word-spacing:19.530862pt;}
.ws2b5{word-spacing:19.534133pt;}
.ws18e{word-spacing:19.573529pt;}
.ws152{word-spacing:19.578862pt;}
.ws290{word-spacing:19.600196pt;}
.ws1f2{word-spacing:19.616196pt;}
.wsc8{word-spacing:19.626863pt;}
.ws291{word-spacing:19.674863pt;}
.wsf1{word-spacing:19.685530pt;}
.ws2db{word-spacing:19.688267pt;}
.ws2b6{word-spacing:19.729067pt;}
.ws4e{word-spacing:19.765531pt;}
.ws60{word-spacing:19.792198pt;}
.ws250{word-spacing:19.914866pt;}
.ws1b1{word-spacing:19.968200pt;}
.ws26c{word-spacing:19.989533pt;}
.ws2e9{word-spacing:20.000200pt;}
.ws97{word-spacing:20.032200pt;}
.ws257{word-spacing:20.058867pt;}
.ws1a5{word-spacing:20.064201pt;}
.ws2a9{word-spacing:20.069534pt;}
.ws1b7{word-spacing:20.080201pt;}
.ws29f{word-spacing:20.128201pt;}
.ws1f8{word-spacing:20.138868pt;}
.wsc9{word-spacing:20.176202pt;}
.ws158{word-spacing:20.250869pt;}
.ws21b{word-spacing:20.272203pt;}
.ws162{word-spacing:20.293536pt;}
.ws1ab{word-spacing:20.309536pt;}
.ws1dd{word-spacing:20.357537pt;}
.ws1f9{word-spacing:20.378870pt;}
.ws83{word-spacing:20.421538pt;}
.wsdc{word-spacing:20.437538pt;}
.ws17d{word-spacing:20.464205pt;}
.ws299{word-spacing:20.496205pt;}
.wsf7{word-spacing:20.512205pt;}
.ws1cb{word-spacing:20.522872pt;}
.ws223{word-spacing:20.549539pt;}
.ws2ac{word-spacing:20.586873pt;}
.ws1dc{word-spacing:20.592206pt;}
.ws146{word-spacing:20.597539pt;}
.ws26a{word-spacing:20.682873pt;}
.ws115{word-spacing:20.709540pt;}
.ws269{word-spacing:20.741541pt;}
.ws1f{word-spacing:20.762874pt;}
.ws38{word-spacing:20.794875pt;}
.ws218{word-spacing:20.826875pt;}
.ws20{word-spacing:20.832208pt;}
.ws235{word-spacing:20.874875pt;}
.ws116{word-spacing:20.896209pt;}
.ws39{word-spacing:20.970876pt;}
.ws5f{word-spacing:20.986877pt;}
.ws277{word-spacing:20.992210pt;}
.ws7b{word-spacing:21.045544pt;}
.ws1ed{word-spacing:21.146878pt;}
.ws1c9{word-spacing:21.152212pt;}
.ws16c{word-spacing:21.178878pt;}
.ws5e{word-spacing:21.226879pt;}
.ws12b{word-spacing:21.285546pt;}
.wsb5{word-spacing:21.312213pt;}
.ws251{word-spacing:21.397547pt;}
.ws1d8{word-spacing:21.418881pt;}
.ws2a0{word-spacing:21.450881pt;}
.ws100{word-spacing:21.568216pt;}
.wsff{word-spacing:21.706884pt;}
.ws1ae{word-spacing:21.728217pt;}
.ws15a{word-spacing:21.802885pt;}
.wsa3{word-spacing:21.829552pt;}
.ws78{word-spacing:21.904219pt;}
.ws1b6{word-spacing:21.936219pt;}
.ws184{word-spacing:21.952220pt;}
.ws1d3{word-spacing:21.989553pt;}
.ws1d4{word-spacing:22.021554pt;}
.ws222{word-spacing:22.106888pt;}
.ws21f{word-spacing:22.154888pt;}
.wsa2{word-spacing:22.170888pt;}
.ws20a{word-spacing:22.240222pt;}
.ws94{word-spacing:22.250889pt;}
.ws4d{word-spacing:22.277556pt;}
.ws20b{word-spacing:22.336223pt;}
.ws58{word-spacing:22.410891pt;}
.ws2c0{word-spacing:22.485333pt;}
.ws93{word-spacing:22.554892pt;}
.ws59{word-spacing:22.565559pt;}
.ws2b7{word-spacing:22.616800pt;}
.ws175{word-spacing:22.661560pt;}
.ws120{word-spacing:22.666893pt;}
.ws2bb{word-spacing:22.693867pt;}
.ws174{word-spacing:22.704227pt;}
.wsad{word-spacing:22.709560pt;}
.ws2b8{word-spacing:22.743733pt;}
.ws66{word-spacing:22.778894pt;}
.ws2e6{word-spacing:22.789067pt;}
.ws74{word-spacing:22.816228pt;}
.ws121{word-spacing:22.858895pt;}
.ws248{word-spacing:22.880229pt;}
.ws65{word-spacing:22.970896pt;}
.ws236{word-spacing:22.997563pt;}
.ws2ad{word-spacing:23.002897pt;}
.ws8d{word-spacing:23.013563pt;}
.wsa0{word-spacing:23.114898pt;}
.ws64{word-spacing:23.157565pt;}
.ws273{word-spacing:23.162898pt;}
.ws271{word-spacing:23.178898pt;}
.ws2d3{word-spacing:23.192533pt;}
.ws79{word-spacing:23.237566pt;}
.ws2e7{word-spacing:23.265067pt;}
.ws9f{word-spacing:23.317567pt;}
.ws7a{word-spacing:23.328233pt;}
.ws87{word-spacing:23.488235pt;}
.ws272{word-spacing:23.605569pt;}
.ws201{word-spacing:23.685570pt;}
.ws215{word-spacing:23.728237pt;}
.ws155{word-spacing:23.834905pt;}
.ws111{word-spacing:23.946906pt;}
.ws2c5{word-spacing:24.072000pt;}
.ws112{word-spacing:24.074907pt;}
.ws292{word-spacing:24.208242pt;}
.wsa9{word-spacing:24.224242pt;}
.ws268{word-spacing:24.480245pt;}
.ws12c{word-spacing:24.549579pt;}
.ws219{word-spacing:24.602913pt;}
.ws177{word-spacing:24.672247pt;}
.wscf{word-spacing:24.698914pt;}
.ws1a1{word-spacing:24.725581pt;}
.ws104{word-spacing:24.784248pt;}
.ws1{word-spacing:24.816000pt;}
.ws21a{word-spacing:24.826915pt;}
.wsd0{word-spacing:24.848248pt;}
.ws4{word-spacing:24.883200pt;}
.ws17f{word-spacing:24.917583pt;}
.ws122{word-spacing:24.928249pt;}
.ws3{word-spacing:24.950400pt;}
.ws123{word-spacing:24.976250pt;}
.wsaf{word-spacing:24.981583pt;}
.wsae{word-spacing:25.056251pt;}
.ws15c{word-spacing:25.088251pt;}
.ws5{word-spacing:25.142400pt;}
.ws2cb{word-spacing:25.187200pt;}
.ws2ca{word-spacing:25.255200pt;}
.ws1cc{word-spacing:25.264253pt;}
.ws1be{word-spacing:25.280253pt;}
.ws1ca{word-spacing:25.392254pt;}
.wsba{word-spacing:25.434921pt;}
.ws286{word-spacing:25.536255pt;}
.ws2c3{word-spacing:25.613333pt;}
.ws98{word-spacing:25.632256pt;}
.ws99{word-spacing:25.664257pt;}
.ws1ec{word-spacing:25.712257pt;}
.wsca{word-spacing:25.733591pt;}
.ws62{word-spacing:25.749591pt;}
.wsab{word-spacing:25.802925pt;}
.ws2aa{word-spacing:25.818925pt;}
.ws2c6{word-spacing:25.853600pt;}
.ws178{word-spacing:25.882925pt;}
.ws68{word-spacing:25.941593pt;}
.wsb0{word-spacing:25.952260pt;}
.wsef{word-spacing:26.037594pt;}
.ws24a{word-spacing:26.149595pt;}
.ws2ab{word-spacing:26.234929pt;}
.ws19a{word-spacing:26.426931pt;}
.ws265{word-spacing:26.442931pt;}
.ws267{word-spacing:26.469598pt;}
.ws6d{word-spacing:26.496265pt;}
.ws266{word-spacing:26.512265pt;}
.ws4f{word-spacing:26.554932pt;}
.ws9d{word-spacing:26.704267pt;}
.ws9e{word-spacing:26.842935pt;}
.ws287{word-spacing:26.869602pt;}
.ws190{word-spacing:27.034937pt;}
.wsdd{word-spacing:27.040270pt;}
.ws88{word-spacing:27.088271pt;}
.ws199{word-spacing:27.114938pt;}
.ws19d{word-spacing:27.184272pt;}
.ws18f{word-spacing:27.248272pt;}
.ws217{word-spacing:27.306940pt;}
.ws2ae{word-spacing:27.344273pt;}
.ws28f{word-spacing:27.653610pt;}
.ws127{word-spacing:27.696277pt;}
.ws126{word-spacing:27.701610pt;}
.ws167{word-spacing:27.733611pt;}
.ws24c{word-spacing:27.749611pt;}
.ws166{word-spacing:27.786945pt;}
.ws1e7{word-spacing:27.818945pt;}
.ws29e{word-spacing:27.941613pt;}
.ws17e{word-spacing:28.026947pt;}
.wsf9{word-spacing:28.048280pt;}
.ws1fc{word-spacing:28.080281pt;}
.ws29d{word-spacing:28.101614pt;}
.ws2c4{word-spacing:28.115733pt;}
.ws1b4{word-spacing:28.421618pt;}
.ws212{word-spacing:28.522952pt;}
.ws213{word-spacing:28.538952pt;}
.ws214{word-spacing:28.613619pt;}
.ws1e0{word-spacing:28.634953pt;}
.ws1c1{word-spacing:28.906956pt;}
.wsda{word-spacing:28.960290pt;}
.ws232{word-spacing:28.976290pt;}
.ws233{word-spacing:28.986957pt;}
.ws296{word-spacing:29.120291pt;}
.ws124{word-spacing:29.200292pt;}
.wsc7{word-spacing:29.269626pt;}
.ws125{word-spacing:29.280293pt;}
.wse1{word-spacing:29.322960pt;}
.ws179{word-spacing:29.365627pt;}
.ws156{word-spacing:29.552296pt;}
.ws2d5{word-spacing:29.575467pt;}
.ws1d0{word-spacing:29.578962pt;}
.ws1a0{word-spacing:29.594963pt;}
.ws20f{word-spacing:29.605629pt;}
.ws22b{word-spacing:29.632296pt;}
.ws19f{word-spacing:29.664297pt;}
.ws282{word-spacing:29.765631pt;}
.ws205{word-spacing:29.813631pt;}
.ws163{word-spacing:29.861632pt;}
.ws2af{word-spacing:29.866965pt;}
.ws206{word-spacing:29.898966pt;}
.ws14d{word-spacing:29.941633pt;}
.ws253{word-spacing:29.946966pt;}
.ws254{word-spacing:29.968300pt;}
.ws17c{word-spacing:30.106968pt;}
.ws252{word-spacing:30.117635pt;}
.ws255{word-spacing:30.197635pt;}
.ws113{word-spacing:30.378970pt;}
.ws1e2{word-spacing:30.469638pt;}
.ws1c2{word-spacing:30.581639pt;}
.ws294{word-spacing:30.608306pt;}
.ws28c{word-spacing:30.634973pt;}
.ws2d9{word-spacing:30.640800pt;}
.ws57{word-spacing:30.720307pt;}
.ws1e1{word-spacing:30.736307pt;}
.ws151{word-spacing:30.757641pt;}
.ws1e3{word-spacing:30.805641pt;}
.ws1df{word-spacing:30.885642pt;}
.wsb1{word-spacing:30.896309pt;}
.ws55{word-spacing:30.933643pt;}
.ws11e{word-spacing:30.944309pt;}
.ws204{word-spacing:31.114978pt;}
.ws284{word-spacing:31.125645pt;}
.ws11d{word-spacing:31.178978pt;}
.wsa6{word-spacing:31.200312pt;}
.ws293{word-spacing:31.301646pt;}
.ws91{word-spacing:31.589649pt;}
.ws29c{word-spacing:31.674983pt;}
.ws1d7{word-spacing:31.738984pt;}
.ws225{word-spacing:31.962986pt;}
.ws1d6{word-spacing:32.085654pt;}
.ws1d5{word-spacing:32.186989pt;}
.ws1a7{word-spacing:32.282989pt;}
.ws17b{word-spacing:32.416324pt;}
.ws11b{word-spacing:32.464325pt;}
.ws283{word-spacing:32.533659pt;}
.ws288{word-spacing:32.586993pt;}
.ws5b{word-spacing:32.757661pt;}
.ws147{word-spacing:32.922996pt;}
.ws5c{word-spacing:32.976330pt;}
.ws24f{word-spacing:33.291000pt;}
.wsb3{word-spacing:33.339000pt;}
.ws2d8{word-spacing:33.442400pt;}
.ws1c4{word-spacing:33.755004pt;}
.wsb2{word-spacing:33.771004pt;}
.ws2a2{word-spacing:33.835005pt;}
.ws2cc{word-spacing:33.882133pt;}
.ws1c3{word-spacing:33.893672pt;}
.ws227{word-spacing:34.352344pt;}
.ws28d{word-spacing:34.384344pt;}
.ws105{word-spacing:34.805681pt;}
.wsa8{word-spacing:35.712357pt;}
.wsc6{word-spacing:36.059027pt;}
.ws2cd{word-spacing:36.384533pt;}
.ws2ce{word-spacing:36.765333pt;}
.ws195{word-spacing:36.816368pt;}
.ws1c0{word-spacing:37.120371pt;}
.ws75{word-spacing:37.147038pt;}
.ws6b{word-spacing:37.189705pt;}
.ws76{word-spacing:37.280373pt;}
.ws108{word-spacing:37.371040pt;}
.ws6c{word-spacing:37.381707pt;}
.wsb7{word-spacing:37.440374pt;}
.ws249{word-spacing:37.451041pt;}
.ws107{word-spacing:37.525709pt;}
.ws226{word-spacing:37.547042pt;}
.ws19e{word-spacing:37.696377pt;}
.ws2c1{word-spacing:38.075467pt;}
.ws220{word-spacing:38.203049pt;}
.ws25f{word-spacing:38.475051pt;}
.ws159{word-spacing:38.672387pt;}
.ws209{word-spacing:38.811055pt;}
.ws103{word-spacing:38.837722pt;}
.wsa7{word-spacing:38.992390pt;}
.ws19b{word-spacing:39.024390pt;}
.ws70{word-spacing:39.435061pt;}
.wsd5{word-spacing:39.792398pt;}
.ws22c{word-spacing:40.139068pt;}
.wsb4{word-spacing:40.277736pt;}
.ws1f1{word-spacing:40.464405pt;}
.ws1b2{word-spacing:40.549739pt;}
.ws14e{word-spacing:40.997743pt;}
.ws14f{word-spacing:41.056411pt;}
.ws150{word-spacing:41.083077pt;}
.ws211{word-spacing:42.064421pt;}
.ws234{word-spacing:42.341757pt;}
.ws69{word-spacing:42.384424pt;}
.ws173{word-spacing:43.040430pt;}
.ws172{word-spacing:43.157765pt;}
.ws274{word-spacing:44.176442pt;}
.ws1fb{word-spacing:45.200452pt;}
.ws1e6{word-spacing:45.707124pt;}
.ws1e4{word-spacing:45.829792pt;}
.ws1e5{word-spacing:45.877792pt;}
.ws182{word-spacing:46.741801pt;}
.ws221{word-spacing:47.957813pt;}
.ws198{word-spacing:48.405817pt;}
.ws197{word-spacing:48.453818pt;}
.ws2a8{word-spacing:50.560506pt;}
.ws193{word-spacing:51.168512pt;}
.ws73{word-spacing:51.280513pt;}
.ws1a3{word-spacing:51.584516pt;}
.ws1f4{word-spacing:53.461868pt;}
.ws1aa{word-spacing:54.523212pt;}
.ws1a9{word-spacing:55.141885pt;}
.ws1f3{word-spacing:56.171228pt;}
.ws2a4{word-spacing:56.213895pt;}
.ws228{word-spacing:56.763234pt;}
.ws229{word-spacing:56.880569pt;}
.ws2a1{word-spacing:57.419241pt;}
.ws230{word-spacing:58.747254pt;}
.ws231{word-spacing:58.784588pt;}
.ws202{word-spacing:59.739264pt;}
.ws89{word-spacing:59.904599pt;}
.wsd3{word-spacing:62.777077pt;}
.ws71{word-spacing:67.280673pt;}
.ws2a7{word-spacing:67.606009pt;}
.ws2a6{word-spacing:77.760778pt;}
.ws2a5{word-spacing:78.304783pt;}
.ws1fe{word-spacing:90.843575pt;}
.ws46{word-spacing:92.006686pt;}
.ws13e{word-spacing:138.828800pt;}
.ws13d{word-spacing:155.157867pt;}
.ws27f{word-spacing:204.430667pt;}
.ws281{word-spacing:273.867733pt;}
.ws140{word-spacing:402.700533pt;}
.wsbb{word-spacing:2372.152245pt;}
._28{margin-left:-51.371180pt;}
._37{margin-left:-11.612763pt;}
._5{margin-left:-1.028254pt;}
._1{width:1.526400pt;}
._4{width:9.924143pt;}
._3{width:11.609455pt;}
._a{width:12.970796pt;}
._6{width:14.694216pt;}
._8{width:15.689351pt;}
._10{width:17.466841pt;}
._9{width:18.906856pt;}
._1d{width:19.898866pt;}
._e{width:20.810875pt;}
._7{width:22.037554pt;}
._2c{width:22.986897pt;}
._d{width:23.914906pt;}
._25{width:24.949583pt;}
._0{width:25.920000pt;}
._35{width:26.821602pt;}
._f{width:27.722944pt;}
._1b{width:28.681902pt;}
._19{width:30.218969pt;}
._1a{width:31.360314pt;}
._15{width:32.304323pt;}
._11{width:33.813671pt;}
._34{width:35.541689pt;}
._18{width:37.232372pt;}
._1c{width:38.347050pt;}
._16{width:39.957733pt;}
._17{width:41.387081pt;}
._12{width:43.392434pt;}
._2e{width:45.179118pt;}
._26{width:46.757801pt;}
._29{width:49.584496pt;}
._27{width:51.173845pt;}
._14{width:52.325857pt;}
._2f{width:53.546667pt;}
._2a{width:56.603233pt;}
._2d{width:60.736607pt;}
._2{width:64.223465pt;}
._36{width:67.111308pt;}
._13{width:68.283349pt;}
._b{width:77.902354pt;}
._2b{width:91.872919pt;}
._20{width:159.750133pt;}
._23{width:210.967733pt;}
._21{width:220.424267pt;}
._31{width:273.962933pt;}
._1e{width:283.501067pt;}
._22{width:318.085867pt;}
._32{width:372.649067pt;}
._33{width:392.908533pt;}
._1f{width:393.892267pt;}
._30{width:430.249600pt;}
._24{width:480.818933pt;}
._c{width:1358.152842pt;}
.fsa{font-size:26.131733pt;}
.fsd{font-size:26.662400pt;}
.fs4{font-size:28.440000pt;}
.fsb{font-size:30.218133pt;}
.fse{font-size:31.732800pt;}
.fs9{font-size:35.552000pt;}
.fs7{font-size:37.332800pt;}
.fsc{font-size:39.999467pt;}
.fs3{font-size:42.661867pt;}
.fs5{font-size:42.666133pt;}
.fs8{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.333867pt;}
.fs2{font-size:63.999467pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:31.975299pt;}
.y44{bottom:58.885715pt;}
.yb8{bottom:63.190973pt;}
.y1fe{bottom:63.191546pt;}
.y16f{bottom:63.192680pt;}
.y85{bottom:63.193039pt;}
.y1a9{bottom:63.193386pt;}
.y13d{bottom:63.193733pt;}
.y196{bottom:63.194093pt;}
.y271{bottom:63.941533pt;}
.y13c{bottom:67.653467pt;}
.y1a0{bottom:69.165333pt;}
.y43{bottom:72.189258pt;}
.y13b{bottom:77.253467pt;}
.y270{bottom:79.286867pt;}
.yb7{bottom:80.576480pt;}
.y1cf{bottom:80.576827pt;}
.y1fd{bottom:80.577053pt;}
.yce{bottom:80.577973pt;}
.y16e{bottom:80.578187pt;}
.y84{bottom:80.578547pt;}
.yda{bottom:80.578894pt;}
.y195{bottom:80.579600pt;}
.y42{bottom:85.568400pt;}
.y194{bottom:86.475600pt;}
.y26f{bottom:94.556267pt;}
.y19f{bottom:95.697600pt;}
.yb6{bottom:97.887320pt;}
.y1ce{bottom:97.887667pt;}
.y1a8{bottom:97.887893pt;}
.ycd{bottom:97.888813pt;}
.y16d{bottom:97.889027pt;}
.y83{bottom:97.889386pt;}
.yd9{bottom:97.889733pt;}
.y13a{bottom:100.233067pt;}
.y138{bottom:100.233200pt;}
.y19e{bottom:103.785733pt;}
.y139{bottom:105.222000pt;}
.y26e{bottom:109.901600pt;}
.y1b6{bottom:115.197813pt;}
.yb5{bottom:115.198160pt;}
.y1cd{bottom:115.198507pt;}
.y1a7{bottom:115.198733pt;}
.ycc{bottom:115.199653pt;}
.y16c{bottom:115.199867pt;}
.y82{bottom:115.200226pt;}
.y135{bottom:120.188733pt;}
.y137{bottom:120.188933pt;}
.y193{bottom:121.171600pt;}
.y26d{bottom:125.246933pt;}
.y136{bottom:125.253467pt;}
.y3f{bottom:132.132267pt;}
.y238{bottom:132.570880pt;}
.y7f{bottom:132.583320pt;}
.yb4{bottom:132.583667pt;}
.y1cc{bottom:132.584014pt;}
.y192{bottom:132.584240pt;}
.y16b{bottom:132.584587pt;}
.ycb{bottom:132.585160pt;}
.y81{bottom:132.585733pt;}
.y80{bottom:138.481867pt;}
.y132{bottom:140.220200pt;}
.y134{bottom:140.220400pt;}
.y26c{bottom:140.592267pt;}
.y12a{bottom:143.244133pt;}
.y133{bottom:145.284933pt;}
.y1f6{bottom:145.587200pt;}
.y1fa{bottom:147.628267pt;}
.y237{bottom:149.881720pt;}
.yc8{bottom:149.891174pt;}
.y7e{bottom:149.894160pt;}
.yb3{bottom:149.894507pt;}
.y1c2{bottom:149.894854pt;}
.y191{bottom:149.895080pt;}
.y16a{bottom:149.895427pt;}
.yca{bottom:149.896000pt;}
.yc9{bottom:155.792133pt;}
.y26b{bottom:155.937600pt;}
.y129{bottom:159.193533pt;}
.y131{bottom:160.251867pt;}
.y12f{bottom:160.252133pt;}
.y1f5{bottom:161.612533pt;}
.y1f3{bottom:161.612600pt;}
.y167{bottom:165.014133pt;}
.y130{bottom:165.240800pt;}
.y1f4{bottom:166.677067pt;}
.y236{bottom:167.192560pt;}
.yc7{bottom:167.202013pt;}
.y1c9{bottom:167.204773pt;}
.y7d{bottom:167.205000pt;}
.yb2{bottom:167.205347pt;}
.y19d{bottom:167.205694pt;}
.y166{bottom:167.205920pt;}
.y168{bottom:167.206267pt;}
.y26a{bottom:171.282933pt;}
.y169{bottom:173.177867pt;}
.y128{bottom:175.218867pt;}
.y1f2{bottom:177.637933pt;}
.y3e{bottom:178.232000pt;}
.y12c{bottom:180.207800pt;}
.y12e{bottom:180.207867pt;}
.yd6{bottom:182.324400pt;}
.y235{bottom:184.503400pt;}
.yc6{bottom:184.512853pt;}
.y1c1{bottom:184.514919pt;}
.yd5{bottom:184.515266pt;}
.y1c8{bottom:184.515613pt;}
.y7c{bottom:184.515839pt;}
.yb1{bottom:184.516186pt;}
.yd7{bottom:184.516533pt;}
.y165{bottom:184.516759pt;}
.y12d{bottom:185.272400pt;}
.y269{bottom:186.628267pt;}
.yd8{bottom:190.488133pt;}
.y127{bottom:191.244200pt;}
.y1f0{bottom:193.587333pt;}
.y3d{bottom:198.188200pt;}
.y1f1{bottom:198.651867pt;}
.y12b{bottom:201.222067pt;}
.y234{bottom:201.888907pt;}
.y268{bottom:201.897667pt;}
.yc5{bottom:201.898360pt;}
.y1c0{bottom:201.900427pt;}
.yd4{bottom:201.900773pt;}
.y162{bottom:201.901120pt;}
.y7b{bottom:201.901347pt;}
.yb0{bottom:201.901694pt;}
.y164{bottom:201.902267pt;}
.y126{bottom:207.193600pt;}
.y163{bottom:207.798400pt;}
.y1ee{bottom:209.612533pt;}
.y1ef{bottom:214.677067pt;}
.yae{bottom:217.020400pt;}
.y267{bottom:217.243000pt;}
.y3c{bottom:218.220400pt;}
.y233{bottom:219.199747pt;}
.yc4{bottom:219.209200pt;}
.y1bf{bottom:219.211266pt;}
.yad{bottom:219.211613pt;}
.y161{bottom:219.211960pt;}
.y7a{bottom:219.212186pt;}
.yaf{bottom:219.212533pt;}
.y1cb{bottom:219.212627pt;}
.y190{bottom:225.108667pt;}
.y266{bottom:232.588333pt;}
.y15f{bottom:234.330667pt;}
.y232{bottom:236.510586pt;}
.yc3{bottom:236.520040pt;}
.y1be{bottom:236.522106pt;}
.yac{bottom:236.522453pt;}
.y160{bottom:236.522800pt;}
.y79{bottom:236.523026pt;}
.y1a6{bottom:236.523078pt;}
.y1ca{bottom:236.523467pt;}
.y3b{bottom:238.176600pt;}
.y265{bottom:247.933667pt;}
.y29{bottom:250.209333pt;}
.y231{bottom:253.896094pt;}
.yc2{bottom:253.905547pt;}
.y76{bottom:253.906467pt;}
.y121{bottom:253.907387pt;}
.y19c{bottom:253.907613pt;}
.yab{bottom:253.907960pt;}
.y78{bottom:253.908533pt;}
.y125{bottom:253.908600pt;}
.y3a{bottom:258.208800pt;}
.y77{bottom:259.804667pt;}
.y264{bottom:263.279000pt;}
.y28{bottom:264.873683pt;}
.y124{bottom:269.858000pt;}
.y230{bottom:271.206933pt;}
.ya8{bottom:271.214333pt;}
.yc1{bottom:271.216387pt;}
.y75{bottom:271.217307pt;}
.y120{bottom:271.218227pt;}
.y19b{bottom:271.218453pt;}
.yaa{bottom:271.218800pt;}
.ya9{bottom:277.114800pt;}
.y39{bottom:278.165000pt;}
.y263{bottom:278.624333pt;}
.y27{bottom:279.538033pt;}
.y1e5{bottom:280.289667pt;}
.y15e{bottom:281.423467pt;}
.y123{bottom:285.883333pt;}
.y22f{bottom:288.517773pt;}
.ya7{bottom:288.525173pt;}
.yc0{bottom:288.527227pt;}
.y74{bottom:288.528147pt;}
.y11e{bottom:288.528506pt;}
.y1f9{bottom:288.528720pt;}
.y11f{bottom:288.529067pt;}
.yd2{bottom:288.529293pt;}
.y262{bottom:293.893733pt;}
.y26{bottom:294.202383pt;}
.yd3{bottom:294.500667pt;}
.y15d{bottom:296.012533pt;}
.y1e4{bottom:296.315000pt;}
.y38{bottom:298.197200pt;}
.y122{bottom:301.908667pt;}
.y1b5{bottom:303.647067pt;}
.y22e{bottom:305.903280pt;}
.ya6{bottom:305.910680pt;}
.y1b4{bottom:305.911600pt;}
.y1bd{bottom:305.911814pt;}
.ybf{bottom:305.912734pt;}
.y73{bottom:305.913654pt;}
.y11d{bottom:305.914013pt;}
.y15b{bottom:305.914227pt;}
.yd1{bottom:305.914800pt;}
.y25{bottom:308.866733pt;}
.y261{bottom:309.239067pt;}
.y15c{bottom:311.810933pt;}
.y1e2{bottom:312.264400pt;}
.y1e3{bottom:317.329067pt;}
.y37{bottom:318.229400pt;}
.y159{bottom:321.032933pt;}
.y22d{bottom:323.214120pt;}
.ya5{bottom:323.221520pt;}
.y158{bottom:323.221733pt;}
.y1b3{bottom:323.222440pt;}
.y1bc{bottom:323.222653pt;}
.ybe{bottom:323.223573pt;}
.y72{bottom:323.224494pt;}
.y11c{bottom:323.224853pt;}
.y15a{bottom:323.225067pt;}
.y24{bottom:323.531083pt;}
.y260{bottom:324.584400pt;}
.y1df{bottom:328.289533pt;}
.y1e1{bottom:328.289733pt;}
.y19a{bottom:329.121200pt;}
.y1e0{bottom:333.278667pt;}
.y36{bottom:338.185600pt;}
.y23{bottom:338.195433pt;}
.y25f{bottom:339.929733pt;}
.y22c{bottom:340.524960pt;}
.ya4{bottom:340.532360pt;}
.y157{bottom:340.532573pt;}
.y1b2{bottom:340.533280pt;}
.y1bb{bottom:340.533493pt;}
.ybd{bottom:340.534413pt;}
.y71{bottom:340.535333pt;}
.yd0{bottom:340.535633pt;}
.y6f{bottom:340.535693pt;}
.y1de{bottom:344.314867pt;}
.y70{bottom:346.506933pt;}
.y22{bottom:352.859784pt;}
.y25e{bottom:355.275067pt;}
.y1f8{bottom:355.653467pt;}
.y22b{bottom:357.910467pt;}
.ya3{bottom:357.917867pt;}
.y156{bottom:357.918080pt;}
.y1b1{bottom:357.918787pt;}
.y1ba{bottom:357.919000pt;}
.y6c{bottom:357.919347pt;}
.ybc{bottom:357.919920pt;}
.y18f{bottom:357.920627pt;}
.ycf{bottom:357.921089pt;}
.y6e{bottom:357.921200pt;}
.y1fc{bottom:357.922373pt;}
.y35{bottom:358.217800pt;}
.y1dd{bottom:360.264267pt;}
.y6d{bottom:363.817200pt;}
.y25d{bottom:370.620400pt;}
.y22a{bottom:375.221307pt;}
.ya2{bottom:375.228706pt;}
.y155{bottom:375.228920pt;}
.y1b0{bottom:375.229627pt;}
.y1b9{bottom:375.229840pt;}
.y6b{bottom:375.230187pt;}
.ybb{bottom:375.230760pt;}
.y1fb{bottom:375.233213pt;}
.y1dc{bottom:376.289600pt;}
.y1da{bottom:376.289800pt;}
.y34{bottom:378.174000pt;}
.y1db{bottom:381.278667pt;}
.y21{bottom:382.188484pt;}
.y25c{bottom:385.952333pt;}
.y1d7{bottom:392.239133pt;}
.y1d9{bottom:392.239200pt;}
.y229{bottom:392.532147pt;}
.ya1{bottom:392.539546pt;}
.y154{bottom:392.539760pt;}
.y1af{bottom:392.540466pt;}
.y1b8{bottom:392.540680pt;}
.y6a{bottom:392.541027pt;}
.yba{bottom:392.541600pt;}
.y199{bottom:392.541900pt;}
.y20{bottom:396.852834pt;}
.y1d8{bottom:397.303867pt;}
.y33{bottom:398.206200pt;}
.y11b{bottom:398.513333pt;}
.y25b{bottom:401.221733pt;}
.y11a{bottom:407.659733pt;}
.y1d6{bottom:408.264467pt;}
.y228{bottom:409.842986pt;}
.ya0{bottom:409.850386pt;}
.y153{bottom:409.850600pt;}
.y67{bottom:409.850947pt;}
.y18e{bottom:409.851306pt;}
.y119{bottom:409.851520pt;}
.y69{bottom:409.851867pt;}
.y198{bottom:409.852156pt;}
.y1a5{bottom:409.852226pt;}
.y1f{bottom:411.517184pt;}
.y68{bottom:415.823467pt;}
.y25a{bottom:416.567067pt;}
.y32{bottom:418.238400pt;}
.y211{bottom:423.835867pt;}
.y1d5{bottom:424.289800pt;}
.y1e{bottom:426.181534pt;}
.y227{bottom:427.228494pt;}
.y9f{bottom:427.235893pt;}
.y152{bottom:427.236107pt;}
.y66{bottom:427.236454pt;}
.y18d{bottom:427.236813pt;}
.y118{bottom:427.237027pt;}
.y197{bottom:427.237611pt;}
.y1a4{bottom:427.237733pt;}
.y259{bottom:431.912400pt;}
.y1a3{bottom:433.133733pt;}
.y31{bottom:438.194600pt;}
.y1d2{bottom:440.238933pt;}
.y1d4{bottom:440.239200pt;}
.y1d{bottom:440.845884pt;}
.y116{bottom:442.355733pt;}
.y210{bottom:443.867533pt;}
.y9e{bottom:444.546733pt;}
.y151{bottom:444.546947pt;}
.y65{bottom:444.547294pt;}
.y115{bottom:444.547653pt;}
.y117{bottom:444.547867pt;}
.y1a1{bottom:444.549547pt;}
.y1d3{bottom:445.303733pt;}
.y258{bottom:447.257733pt;}
.y1a2{bottom:450.444000pt;}
.y1c{bottom:455.510234pt;}
.y1d1{bottom:456.264267pt;}
.y30{bottom:458.226800pt;}
.y226{bottom:461.848840pt;}
.y62{bottom:461.856080pt;}
.y9d{bottom:461.857573pt;}
.y150{bottom:461.857786pt;}
.y64{bottom:461.858133pt;}
.y114{bottom:461.858493pt;}
.y257{bottom:462.603067pt;}
.y20f{bottom:463.823267pt;}
.y63{bottom:467.829733pt;}
.y1d0{bottom:472.289600pt;}
.y112{bottom:476.976267pt;}
.y256{bottom:477.948400pt;}
.y2f{bottom:478.183000pt;}
.y225{bottom:479.234347pt;}
.y61{bottom:479.241587pt;}
.y1f7{bottom:479.242373pt;}
.y111{bottom:479.242720pt;}
.y9c{bottom:479.243080pt;}
.y14f{bottom:479.243294pt;}
.y1b7{bottom:479.243878pt;}
.y113{bottom:479.244000pt;}
.y20e{bottom:483.854933pt;}
.y1b{bottom:484.838934pt;}
.y1ae{bottom:485.140000pt;}
.ye0{bottom:489.372933pt;}
.y255{bottom:493.217800pt;}
.ye1{bottom:494.437600pt;}
.y224{bottom:496.545187pt;}
.y60{bottom:496.552427pt;}
.y18c{bottom:496.553213pt;}
.y110{bottom:496.553560pt;}
.y9b{bottom:496.553920pt;}
.y14e{bottom:496.554133pt;}
.y2e{bottom:498.215200pt;}
.y1a{bottom:499.579016pt;}
.y14d{bottom:502.450267pt;}
.y20b{bottom:502.979467pt;}
.y14c{bottom:503.962000pt;}
.y20c{bottom:504.869200pt;}
.y20a{bottom:504.869400pt;}
.ydf{bottom:505.398267pt;}
.ydd{bottom:505.398333pt;}
.y14b{bottom:506.758933pt;}
.y254{bottom:508.563133pt;}
.y20d{bottom:509.858133pt;}
.yde{bottom:510.462800pt;}
.y223{bottom:513.856027pt;}
.y5f{bottom:513.863266pt;}
.y10d{bottom:513.864053pt;}
.y10f{bottom:513.864400pt;}
.y9a{bottom:513.864759pt;}
.y19{bottom:514.243366pt;}
.y2d{bottom:518.171400pt;}
.y10e{bottom:519.836000pt;}
.ydc{bottom:521.423667pt;}
.y253{bottom:523.908467pt;}
.y18{bottom:528.907716pt;}
.y209{bottom:529.511467pt;}
.y222{bottom:531.241534pt;}
.y149{bottom:531.247853pt;}
.y5e{bottom:531.248773pt;}
.y10c{bottom:531.249560pt;}
.y99{bottom:531.250267pt;}
.y14a{bottom:537.146267pt;}
.ydb{bottom:537.373067pt;}
.y2c{bottom:538.203600pt;}
.y252{bottom:539.253800pt;}
.y17{bottom:543.572066pt;}
.y208{bottom:543.647067pt;}
.y1ad{bottom:543.874067pt;}
.y207{bottom:545.536800pt;}
.y10a{bottom:546.292800pt;}
.y221{bottom:548.552374pt;}
.y97{bottom:548.558693pt;}
.y5d{bottom:548.559613pt;}
.y18b{bottom:548.559827pt;}
.y10b{bottom:548.560400pt;}
.y98{bottom:554.456533pt;}
.y251{bottom:554.599133pt;}
.y2b{bottom:558.235800pt;}
.y16{bottom:558.236416pt;}
.y1ac{bottom:559.823200pt;}
.y220{bottom:565.863213pt;}
.y96{bottom:565.869533pt;}
.y188{bottom:565.870094pt;}
.y5c{bottom:565.870453pt;}
.y18a{bottom:565.870667pt;}
.y250{bottom:569.944467pt;}
.y1c7{bottom:571.539800pt;}
.y189{bottom:571.842400pt;}
.y15{bottom:572.900766pt;}
.y1ab{bottom:575.848533pt;}
.y2a{bottom:578.192000pt;}
.y21f{bottom:583.174053pt;}
.y95{bottom:583.180373pt;}
.y187{bottom:583.180933pt;}
.y5b{bottom:583.181293pt;}
.y24f{bottom:585.213867pt;}
.y14{bottom:587.565116pt;}
.y1c6{bottom:587.565133pt;}
.y186{bottom:589.152533pt;}
.y1eb{bottom:591.344400pt;}
.y1ed{bottom:591.344667pt;}
.y1aa{bottom:591.873867pt;}
.y1ec{bottom:596.409200pt;}
.y109{bottom:598.299067pt;}
.y24e{bottom:600.559200pt;}
.y21e{bottom:600.559560pt;}
.y58{bottom:600.565307pt;}
.y108{bottom:600.565520pt;}
.y94{bottom:600.565880pt;}
.y185{bottom:600.566227pt;}
.y5a{bottom:600.566800pt;}
.y1c5{bottom:603.590467pt;}
.y59{bottom:606.462800pt;}
.y1ea{bottom:607.369733pt;}
.y24d{bottom:615.904533pt;}
.y206{bottom:617.045333pt;}
.y21d{bottom:617.870400pt;}
.y57{bottom:617.876147pt;}
.y107{bottom:617.876360pt;}
.y93{bottom:617.876720pt;}
.y184{bottom:617.877067pt;}
.y1c4{bottom:619.539867pt;}
.y1e9{bottom:623.395067pt;}
.y1e7{bottom:623.395267pt;}
.y183{bottom:623.773067pt;}
.y1e8{bottom:628.384133pt;}
.y24c{bottom:631.249867pt;}
.y203{bottom:633.070533pt;}
.y205{bottom:633.070667pt;}
.y13{bottom:634.204533pt;}
.y21c{bottom:635.181240pt;}
.y104{bottom:635.186066pt;}
.y56{bottom:635.186986pt;}
.y106{bottom:635.187200pt;}
.y92{bottom:635.187559pt;}
.y1c3{bottom:635.565200pt;}
.y204{bottom:638.135200pt;}
.y12{bottom:638.966667pt;}
.y1e6{bottom:639.344667pt;}
.y105{bottom:641.158933pt;}
.y24b{bottom:646.595200pt;}
.y202{bottom:649.095867pt;}
.y200{bottom:649.096067pt;}
.y90{bottom:650.305333pt;}
.y21b{bottom:652.566747pt;}
.y103{bottom:652.571573pt;}
.y147{bottom:652.571787pt;}
.y8f{bottom:652.572266pt;}
.y55{bottom:652.572494pt;}
.y91{bottom:652.573067pt;}
.y11{bottom:652.875650pt;}
.y201{bottom:654.084933pt;}
.y148{bottom:658.469067pt;}
.y24a{bottom:661.940533pt;}
.y1ff{bottom:665.045467pt;}
.y10{bottom:667.540000pt;}
.y21a{bottom:669.877587pt;}
.y52{bottom:669.881493pt;}
.yf5{bottom:669.882413pt;}
.y146{bottom:669.882627pt;}
.y8e{bottom:669.883106pt;}
.y54{bottom:669.883333pt;}
.yf{bottom:672.302133pt;}
.y53{bottom:675.779333pt;}
.y249{bottom:677.285867pt;}
.yf6{bottom:680.088000pt;}
.ye{bottom:686.210800pt;}
.y219{bottom:687.188427pt;}
.y51{bottom:687.192333pt;}
.yf4{bottom:687.193253pt;}
.y145{bottom:687.193467pt;}
.y182{bottom:687.193826pt;}
.y8d{bottom:687.193946pt;}
.yd{bottom:690.973067pt;}
.y248{bottom:692.555267pt;}
.y144{bottom:693.165200pt;}
.y218{bottom:704.573934pt;}
.y50{bottom:704.577840pt;}
.yf3{bottom:704.578760pt;}
.y181{bottom:704.579333pt;}
.y8c{bottom:704.579453pt;}
.y247{bottom:707.900600pt;}
.y180{bottom:710.475467pt;}
.ya{bottom:716.899800pt;}
.yc{bottom:716.900533pt;}
.y217{bottom:721.884774pt;}
.yf2{bottom:721.885694pt;}
.y4f{bottom:721.888680pt;}
.y102{bottom:721.889600pt;}
.y8b{bottom:721.890293pt;}
.y246{bottom:723.245933pt;}
.yb{bottom:724.006133pt;}
.y245{bottom:738.591267pt;}
.y216{bottom:739.195613pt;}
.yf1{bottom:739.196533pt;}
.y4e{bottom:739.199520pt;}
.y8a{bottom:739.201133pt;}
.y7{bottom:740.862334pt;}
.y9{bottom:740.862800pt;}
.y8{bottom:747.968267pt;}
.y244{bottom:753.936600pt;}
.y215{bottom:756.581120pt;}
.yf0{bottom:756.582041pt;}
.y4d{bottom:756.585027pt;}
.y101{bottom:756.585499pt;}
.y143{bottom:756.585611pt;}
.y89{bottom:756.586640pt;}
.y5{bottom:764.900533pt;}
.y243{bottom:769.281933pt;}
.y6{bottom:772.006133pt;}
.y214{bottom:773.891960pt;}
.yef{bottom:773.892880pt;}
.y17f{bottom:773.895160pt;}
.y100{bottom:773.895755pt;}
.y4c{bottom:773.895867pt;}
.y88{bottom:773.897480pt;}
.y242{bottom:784.551333pt;}
.y213{bottom:791.202800pt;}
.yee{bottom:791.203720pt;}
.y17e{bottom:791.205786pt;}
.y87{bottom:791.208319pt;}
.y241{bottom:799.896667pt;}
.y212{bottom:808.513640pt;}
.yed{bottom:808.514560pt;}
.y4b{bottom:808.516267pt;}
.y17d{bottom:808.516626pt;}
.y86{bottom:808.519159pt;}
.y240{bottom:815.242000pt;}
.y4{bottom:816.907600pt;}
.y142{bottom:825.899147pt;}
.yec{bottom:825.900067pt;}
.y17a{bottom:825.900640pt;}
.y17c{bottom:825.902133pt;}
.y23f{bottom:830.587333pt;}
.y17b{bottom:831.798133pt;}
.y141{bottom:843.209987pt;}
.yeb{bottom:843.210907pt;}
.y179{bottom:843.211480pt;}
.y23e{bottom:845.932667pt;}
.y3{bottom:847.522000pt;}
.y277{bottom:855.381613pt;}
.y140{bottom:860.520827pt;}
.yea{bottom:860.521747pt;}
.y178{bottom:860.522320pt;}
.yff{bottom:860.522893pt;}
.y23d{bottom:861.278000pt;}
.y4a{bottom:863.546267pt;}
.y276{bottom:872.692453pt;}
.y23c{bottom:876.623333pt;}
.y27c{bottom:877.530533pt;}
.y13f{bottom:877.906334pt;}
.yfc{bottom:877.906747pt;}
.ye9{bottom:877.907254pt;}
.y177{bottom:877.907827pt;}
.yfe{bottom:877.908400pt;}
.y2{bottom:878.210800pt;}
.y49{bottom:882.217067pt;}
.yfd{bottom:883.804533pt;}
.y275{bottom:890.003293pt;}
.y27b{bottom:894.839341pt;}
.y13e{bottom:895.217173pt;}
.yfb{bottom:895.217587pt;}
.ye8{bottom:895.218094pt;}
.y176{bottom:895.218667pt;}
.y174{bottom:895.219667pt;}
.y175{bottom:901.114800pt;}
.y274{bottom:907.388800pt;}
.y27a{bottom:912.224848pt;}
.ye5{bottom:912.528013pt;}
.yfa{bottom:912.528426pt;}
.ye7{bottom:912.528933pt;}
.y173{bottom:912.530507pt;}
.y48{bottom:914.116266pt;}
.ye6{bottom:918.500533pt;}
.y279{bottom:929.535688pt;}
.ye4{bottom:929.913520pt;}
.yf9{bottom:929.913934pt;}
.y23b{bottom:929.914094pt;}
.y172{bottom:929.916014pt;}
.y47{bottom:934.147133pt;}
.y1{bottom:940.875333pt;}
.y278{bottom:946.846528pt;}
.ye3{bottom:947.224360pt;}
.yf8{bottom:947.224773pt;}
.y171{bottom:947.226854pt;}
.y23a{bottom:947.228546pt;}
.y273{bottom:950.701733pt;}
.y46{bottom:954.179333pt;}
.ye2{bottom:964.535200pt;}
.yf7{bottom:964.535613pt;}
.y170{bottom:964.537693pt;}
.y239{bottom:964.614054pt;}
.y272{bottom:966.047067pt;}
.y41{bottom:976.478390pt;}
.y40{bottom:994.469067pt;}
.yb9{bottom:1004.144667pt;}
.h1d{height:14.837103pt;}
.h1b{height:17.456032pt;}
.h13{height:18.330405pt;}
.h20{height:21.442667pt;}
.h1f{height:22.119674pt;}
.h16{height:23.969498pt;}
.hf{height:25.277472pt;}
.h6{height:25.567560pt;}
.h11{height:27.166102pt;}
.h5{height:31.228486pt;}
.h8{height:31.231610pt;}
.he{height:31.961248pt;}
.h14{height:33.184000pt;}
.hb{height:33.562187pt;}
.h2{height:35.136000pt;}
.h15{height:35.959521pt;}
.h1e{height:36.427031pt;}
.h10{height:37.920379pt;}
.h7{height:38.356854pt;}
.h9{height:39.040390pt;}
.hc{height:40.754667pt;}
.h1c{height:40.755733pt;}
.h4{height:46.847610pt;}
.h21{height:47.932694pt;}
.ha{height:47.947146pt;}
.h17{height:47.948001pt;}
.h19{height:47.949439pt;}
.h18{height:47.949972pt;}
.h22{height:47.952448pt;}
.h1a{height:47.953119pt;}
.h12{height:47.962772pt;}
.hd{height:57.535521pt;}
.h3{height:70.272000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.850400pt;}
.x13{left:64.781067pt;}
.xb1{left:66.822000pt;}
.x49{left:70.146200pt;}
.x51{left:71.281867pt;}
.x52{left:76.497600pt;}
.x19{left:80.882699pt;}
.x53{left:84.132267pt;}
.xcd{left:85.417667pt;}
.x56{left:91.464533pt;}
.x4a{left:95.924400pt;}
.xa7{left:99.099200pt;}
.x87{left:102.878667pt;}
.x88{left:110.588933pt;}
.x63{left:115.804667pt;}
.x4b{left:117.921200pt;}
.x1d{left:119.659867pt;}
.xb3{left:121.927467pt;}
.x1f{left:123.288133pt;}
.x95{left:124.573200pt;}
.x64{left:126.538533pt;}
.xb4{left:128.050400pt;}
.x94{left:129.940133pt;}
.x20{left:133.039333pt;}
.xc9{left:137.726000pt;}
.x1e{left:141.278667pt;}
.xca{left:142.639333pt;}
.x4e{left:143.546400pt;}
.xa1{left:146.192133pt;}
.x10{left:149.291333pt;}
.x59{left:152.163733pt;}
.x9c{left:155.867733pt;}
.x5a{left:157.001600pt;}
.x5b{left:163.577867pt;}
.x65{left:166.299200pt;}
.x5c{left:168.491333pt;}
.x11{left:171.136933pt;}
.x5d{left:174.992133pt;}
.x15{left:176.201600pt;}
.x17{left:180.585733pt;}
.x34{left:183.307067pt;}
.x2{left:186.406267pt;}
.xa9{left:188.825200pt;}
.x89{left:191.092933pt;}
.x8{left:192.907067pt;}
.x9d{left:194.872400pt;}
.xaa{left:196.535333pt;}
.x18{left:197.669200pt;}
.x82{left:199.861333pt;}
.x35{left:200.844000pt;}
.x60{left:204.094400pt;}
.x16{left:205.606267pt;}
.x3{left:208.251867pt;}
.x21{left:211.729067pt;}
.x22{left:212.938533pt;}
.x83{left:217.700800pt;}
.x7e{left:220.270800pt;}
.xab{left:222.462933pt;}
.x9{left:223.521200pt;}
.x84{left:225.562133pt;}
.xb6{left:228.812533pt;}
.x7f{left:231.382667pt;}
.x85{left:236.749600pt;}
.x7d{left:238.563733pt;}
.x7b{left:239.470800pt;}
.x96{left:245.820400pt;}
.x23{left:246.727467pt;}
.x2c{left:250.733867pt;}
.x7c{left:253.152667pt;}
.xaf{left:256.932267pt;}
.xb7{left:259.426667pt;}
.xb8{left:266.078667pt;}
.x9b{left:268.497600pt;}
.xb0{left:269.555867pt;}
.x2d{left:271.521200pt;}
.x61{left:274.847200pt;}
.x80{left:279.231467pt;}
.x14{left:280.214133pt;}
.x62{left:287.470800pt;}
.xb9{left:293.442400pt;}
.x81{left:295.559067pt;}
.xac{left:301.001467pt;}
.x79{left:302.588933pt;}
.x1c{left:305.310133pt;}
.x57{left:313.625067pt;}
.xb5{left:315.288133pt;}
.x4f{left:321.410933pt;}
.x7a{left:326.097600pt;}
.x12{left:327.155867pt;}
.x58{left:328.516533pt;}
.x86{left:330.330667pt;}
.x5e{left:331.918000pt;}
.x50{left:334.034533pt;}
.x1a{left:338.040933pt;}
.x32{left:340.762133pt;}
.xae{left:345.070800pt;}
.x4{left:350.135333pt;}
.x4c{left:351.344800pt;}
.x5f{left:353.007867pt;}
.x1b{left:356.333733pt;}
.x33{left:357.845600pt;}
.xa{left:364.573200pt;}
.xa8{left:365.933733pt;}
.xb2{left:368.579467pt;}
.x5{left:372.056667pt;}
.x54{left:376.365333pt;}
.x66{left:379.691200pt;}
.x55{left:381.203067pt;}
.xa4{left:383.622000pt;}
.xb{left:386.418800pt;}
.x4d{left:390.122800pt;}
.xad{left:395.414133pt;}
.xa5{left:406.525867pt;}
.x25{left:409.171758pt;}
.xcb{left:414.765200pt;}
.xc1{left:418.468467pt;}
.x71{left:422.777867pt;}
.xce{left:426.483390pt;}
.x72{left:427.540133pt;}
.x24{left:429.127957pt;}
.xcc{left:433.814267pt;}
.xa0{left:439.407733pt;}
.x6f{left:443.716400pt;}
.x3f{left:448.478667pt;}
.x3c{left:449.536933pt;}
.x37{left:450.746400pt;}
.x40{left:452.258133pt;}
.x38{left:460.119600pt;}
.x3d{left:462.160533pt;}
.x39{left:465.032933pt;}
.x73{left:469.946400pt;}
.x6e{left:471.382533pt;}
.x28{left:473.952667pt;}
.x70{left:478.714800pt;}
.x8f{left:481.133733pt;}
.x36{left:487.029733pt;}
.x77{left:489.448667pt;}
.x74{left:491.111733pt;}
.xc{left:493.681867pt;}
.x29{left:496.932133pt;}
.x2f{left:498.368400pt;}
.x3e{left:502.450267pt;}
.x26{left:504.718000pt;}
.x2a{left:507.590400pt;}
.x30{left:509.858133pt;}
.x45{left:512.654933pt;}
.xd{left:515.527467pt;}
.xba{left:517.719600pt;}
.x2b{left:520.818800pt;}
.x67{left:523.388800pt;}
.x31{left:524.447200pt;}
.x6d{left:528.529067pt;}
.xbb{left:530.645600pt;}
.x46{left:536.617200pt;}
.x6{left:540.699067pt;}
.x99{left:542.966800pt;}
.x68{left:545.158933pt;}
.x8a{left:546.141600pt;}
.x8c{left:551.810933pt;}
.x75{left:553.549467pt;}
.x3a{left:555.061333pt;}
.xbc{left:557.404667pt;}
.x8b{left:558.311733pt;}
.x3b{left:559.823467pt;}
.x8e{left:561.259733pt;}
.x7{left:562.620400pt;}
.x47{left:565.341600pt;}
.x8d{left:568.365200pt;}
.x76{left:569.801467pt;}
.x69{left:572.296000pt;}
.x41{left:574.261333pt;}
.x42{left:577.965200pt;}
.x97{left:579.628133pt;}
.x98{left:584.617200pt;}
.xbd{left:586.053333pt;}
.xbe{left:593.461200pt;}
.xc2{left:595.426667pt;}
.x6a{left:596.560533pt;}
.x48{left:598.752667pt;}
.xc3{left:600.188800pt;}
.xbf{left:619.388800pt;}
.xc4{left:621.127467pt;}
.xc0{left:625.058133pt;}
.x9e{left:626.947867pt;}
.xa6{left:633.297467pt;}
.x92{left:643.124267pt;}
.x93{left:651.892800pt;}
.x43{left:657.788800pt;}
.xe{left:659.905333pt;}
.x44{left:662.626667pt;}
.x6b{left:670.488000pt;}
.xa2{left:673.662800pt;}
.x90{left:676.384133pt;}
.xf{left:681.826533pt;}
.xc5{left:682.960533pt;}
.xc6{left:688.705333pt;}
.xc7{left:691.880133pt;}
.x9f{left:693.089467pt;}
.xa3{left:696.566667pt;}
.x91{left:698.532133pt;}
.x27{left:702.689600pt;}
.x9a{left:705.864400pt;}
.x6c{left:711.155733pt;}
.xc8{left:712.818667pt;}
.x2e{left:716.144667pt;}
.x78{left:720.226533pt;}
}


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