
/* 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_c32c2a8bd293.woff")format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_a044aa678919.woff")format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_11a544422466.woff")format("woff");}.ff3{font-family:ff3;line-height:0.913000;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_f767a4940fc0.woff")format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_4487980d5744.woff")format("woff");}.ff5{font-family:ff5;line-height:0.731000;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_72b2502b0988.woff")format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_00a9f3f6a401.woff")format("woff");}.ff7{font-family:ff7;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_2474493751b3.woff")format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_10eea6a852a6.woff")format("woff");}.ff9{font-family:ff9;line-height:0.970000;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_2474493751b3.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_b800b14297bb.woff")format("woff");}.ffb{font-family:ffb;line-height:0.954000;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_ec9b9054aec4.woff")format("woff");}.ffc{font-family:ffc;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_7d9e80ea17f9.woff")format("woff");}.ffd{font-family:ffd;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_6e4b5303c6a3.woff")format("woff");}.ffe{font-family:ffe;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_201156fc7a27.woff")format("woff");}.fff{font-family:fff;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_201156fc7a27.woff")format("woff");}.ff10{font-family:ff10;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_201156fc7a27.woff")format("woff");}.ff11{font-family:ff11;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_201156fc7a27.woff")format("woff");}.ff12{font-family:ff12;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_201156fc7a27.woff")format("woff");}.ff13{font-family:ff13;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_201156fc7a27.woff")format("woff");}.ff14{font-family:ff14;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_201156fc7a27.woff")format("woff");}.ff15{font-family:ff15;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_201156fc7a27.woff")format("woff");}.ff16{font-family:ff16;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-5.700000px;}
.ls30{letter-spacing:-4.446000px;}
.ls5d{letter-spacing:-3.150000px;}
.ls51{letter-spacing:-2.790000px;}
.ls4e{letter-spacing:-1.767000px;}
.ls49{letter-spacing:-1.710000px;}
.ls2a{letter-spacing:-1.653000px;}
.ls40{letter-spacing:-1.539000px;}
.ls20{letter-spacing:-1.482000px;}
.ls54{letter-spacing:-1.440000px;}
.ls1f{letter-spacing:-1.425000px;}
.ls55{letter-spacing:-1.395000px;}
.ls28{letter-spacing:-1.368000px;}
.ls48{letter-spacing:-1.311000px;}
.ls56{letter-spacing:-1.305000px;}
.ls2c{letter-spacing:-1.197000px;}
.ls32{letter-spacing:-1.140000px;}
.ls1b{letter-spacing:-1.083000px;}
.ls23{letter-spacing:-1.026000px;}
.ls3f{letter-spacing:-0.969000px;}
.ls31{letter-spacing:-0.912000px;}
.ls5f{letter-spacing:-0.900000px;}
.ls1e{letter-spacing:-0.855000px;}
.ls25{letter-spacing:-0.798000px;}
.ls2f{letter-spacing:-0.741000px;}
.ls50{letter-spacing:-0.684000px;}
.ls5a{letter-spacing:-0.675000px;}
.ls53{letter-spacing:-0.630000px;}
.ls27{letter-spacing:-0.627000px;}
.ls9{letter-spacing:-0.588000px;}
.ls52{letter-spacing:-0.585000px;}
.ls29{letter-spacing:-0.570000px;}
.ls22{letter-spacing:-0.513000px;}
.ls60{letter-spacing:-0.495000px;}
.lsd{letter-spacing:-0.480000px;}
.ls2e{letter-spacing:-0.456000px;}
.ls5e{letter-spacing:-0.450000px;}
.ls5c{letter-spacing:-0.405000px;}
.ls26{letter-spacing:-0.399000px;}
.ls1c{letter-spacing:-0.342000px;}
.ls58{letter-spacing:-0.315000px;}
.ls2d{letter-spacing:-0.285000px;}
.lse{letter-spacing:-0.240000px;}
.ls1d{letter-spacing:-0.228000px;}
.ls5b{letter-spacing:-0.225000px;}
.ls59{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.171000px;}
.lsc{letter-spacing:-0.120000px;}
.ls33{letter-spacing:-0.114000px;}
.ls4d{letter-spacing:-0.057000px;}
.lsa{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.032557px;}
.ls4{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.120000px;}
.ls4c{letter-spacing:0.171000px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.300000px;}
.ls3e{letter-spacing:0.342000px;}
.ls61{letter-spacing:0.405000px;}
.ls62{letter-spacing:0.495000px;}
.ls7{letter-spacing:0.540000px;}
.ls39{letter-spacing:0.569400px;}
.ls37{letter-spacing:0.570000px;}
.ls5{letter-spacing:0.600000px;}
.ls63{letter-spacing:0.810000px;}
.ls3b{letter-spacing:0.854400px;}
.ls3a{letter-spacing:0.855000px;}
.ls64{letter-spacing:0.900000px;}
.lsf{letter-spacing:3.988800px;}
.ls4f{letter-spacing:4.914600px;}
.ls57{letter-spacing:5.355000px;}
.ls18{letter-spacing:7.273200px;}
.ls17{letter-spacing:7.273800px;}
.ls24{letter-spacing:8.661000px;}
.ls3c{letter-spacing:8.736000px;}
.ls4b{letter-spacing:8.919000px;}
.ls4a{letter-spacing:8.920800px;}
.ls34{letter-spacing:8.952000px;}
.ls35{letter-spacing:9.324000px;}
.ls19{letter-spacing:10.725600px;}
.ls16{letter-spacing:10.953000px;}
.ls15{letter-spacing:11.365200px;}
.ls14{letter-spacing:11.365800px;}
.ls11{letter-spacing:11.923200px;}
.ls13{letter-spacing:12.643800px;}
.ls10{letter-spacing:13.284000px;}
.ls45{letter-spacing:13.813800px;}
.ls1a{letter-spacing:14.175600px;}
.ls38{letter-spacing:15.834600px;}
.ls8{letter-spacing:20.756400px;}
.ls12{letter-spacing:22.802400px;}
.ls41{letter-spacing:29.704200px;}
.ls43{letter-spacing:710.402400px;}
.ls0{letter-spacing:721.786200px;}
.ls44{letter-spacing:727.737600px;}
.ls1{letter-spacing:739.120800px;}
.ls36{letter-spacing:1353.552000px;}
.ls47{letter-spacing:1371.552000px;}
.ls42{letter-spacing:1383.552000px;}
.ls3d{letter-spacing:1389.552000px;}
.ls46{letter-spacing:1413.552000px;}
.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;}
}
.ws13d{word-spacing:-1413.552000px;}
.ws123{word-spacing:-1389.552000px;}
.ws139{word-spacing:-1383.552000px;}
.ws13e{word-spacing:-1371.552000px;}
.ws122{word-spacing:-1353.552000px;}
.wsf9{word-spacing:-20.016000px;}
.ws4{word-spacing:-16.980000px;}
.ws1b4{word-spacing:-15.570000px;}
.ws134{word-spacing:-13.224000px;}
.wsc0{word-spacing:-13.053000px;}
.ws5{word-spacing:-12.939000px;}
.ws166{word-spacing:-12.882000px;}
.wsc3{word-spacing:-12.825000px;}
.wsc1{word-spacing:-12.597000px;}
.ws10b{word-spacing:-12.483000px;}
.wsf8{word-spacing:-12.426000px;}
.ws79{word-spacing:-12.369000px;}
.wsc2{word-spacing:-12.312000px;}
.ws19{word-spacing:-12.084000px;}
.ws18{word-spacing:-11.970000px;}
.wsc5{word-spacing:-11.913000px;}
.ws2{word-spacing:-11.708557px;}
.ws1{word-spacing:-11.676000px;}
.ws13c{word-spacing:-11.628000px;}
.ws13a{word-spacing:-11.514000px;}
.wsc6{word-spacing:-11.457000px;}
.ws78{word-spacing:-11.400000px;}
.ws0{word-spacing:-11.088000px;}
.ws17f{word-spacing:-10.215000px;}
.ws1b1{word-spacing:-10.125000px;}
.ws1b2{word-spacing:-9.990000px;}
.ws1b5{word-spacing:-9.765000px;}
.ws181{word-spacing:-9.450000px;}
.ws182{word-spacing:-8.505000px;}
.ws180{word-spacing:-7.515000px;}
.ws1b3{word-spacing:-7.155000px;}
.wscf{word-spacing:-5.814000px;}
.ws112{word-spacing:-3.807600px;}
.wsa{word-spacing:-3.360000px;}
.wsd{word-spacing:-1.620000px;}
.ws13{word-spacing:-1.260000px;}
.ws6{word-spacing:-1.176000px;}
.ws12e{word-spacing:-0.855000px;}
.ws129{word-spacing:-0.570000px;}
.ws151{word-spacing:-0.171000px;}
.ws3{word-spacing:-0.060000px;}
.ws8{word-spacing:-0.032557px;}
.ws7{word-spacing:0.000000px;}
.ws35{word-spacing:0.057000px;}
.ws1a4{word-spacing:0.090000px;}
.wsd2{word-spacing:0.114000px;}
.ws6b{word-spacing:0.171000px;}
.ws164{word-spacing:0.285000px;}
.ws106{word-spacing:0.399000px;}
.ws1e7{word-spacing:0.405000px;}
.ws202{word-spacing:0.450000px;}
.ws1ce{word-spacing:0.495000px;}
.wsda{word-spacing:0.513000px;}
.ws1cf{word-spacing:0.540000px;}
.wsad{word-spacing:0.570000px;}
.ws18b{word-spacing:0.627000px;}
.ws1a0{word-spacing:0.630000px;}
.ws1e3{word-spacing:0.675000px;}
.ws1ef{word-spacing:0.765000px;}
.wsf6{word-spacing:0.798000px;}
.wsc4{word-spacing:0.849300px;}
.ws45{word-spacing:0.855000px;}
.ws15e{word-spacing:0.912000px;}
.ws175{word-spacing:0.969000px;}
.ws20{word-spacing:1.083000px;}
.ws1f3{word-spacing:1.125000px;}
.wsff{word-spacing:1.254000px;}
.ws161{word-spacing:1.311000px;}
.wsfd{word-spacing:1.368000px;}
.ws1a9{word-spacing:1.395000px;}
.ws44{word-spacing:1.425000px;}
.ws12b{word-spacing:1.482000px;}
.ws1da{word-spacing:1.575000px;}
.ws117{word-spacing:1.596000px;}
.ws8a{word-spacing:1.653000px;}
.ws77{word-spacing:1.710000px;}
.ws19c{word-spacing:1.755000px;}
.ws56{word-spacing:1.767000px;}
.wsfe{word-spacing:1.824000px;}
.ws130{word-spacing:1.881000px;}
.ws155{word-spacing:2.109000px;}
.ws192{word-spacing:2.115000px;}
.wsb3{word-spacing:2.166000px;}
.wse{word-spacing:2.220000px;}
.ws118{word-spacing:2.223000px;}
.ws13b{word-spacing:2.285700px;}
.ws1eb{word-spacing:2.295000px;}
.ws10c{word-spacing:2.337000px;}
.wsbf{word-spacing:2.451000px;}
.wsaf{word-spacing:2.508000px;}
.ws12{word-spacing:2.520000px;}
.ws14e{word-spacing:2.565000px;}
.ws9d{word-spacing:2.622000px;}
.ws170{word-spacing:2.679000px;}
.ws11b{word-spacing:2.736000px;}
.ws20b{word-spacing:2.790000px;}
.ws9{word-spacing:2.880000px;}
.ws7e{word-spacing:2.907000px;}
.ws1ac{word-spacing:3.150000px;}
.ws92{word-spacing:3.192000px;}
.ws3c{word-spacing:3.249000px;}
.ws1e1{word-spacing:3.285000px;}
.ws63{word-spacing:3.306000px;}
.ws1e2{word-spacing:3.330000px;}
.ws3e{word-spacing:3.420000px;}
.ws3f{word-spacing:3.477000px;}
.wsf{word-spacing:3.480000px;}
.ws1c{word-spacing:3.534000px;}
.ws73{word-spacing:3.648000px;}
.ws1fd{word-spacing:3.690000px;}
.ws126{word-spacing:3.705000px;}
.wse0{word-spacing:3.762000px;}
.ws91{word-spacing:3.933000px;}
.ws21{word-spacing:3.990000px;}
.ws5c{word-spacing:4.047000px;}
.wsa3{word-spacing:4.104000px;}
.ws5e{word-spacing:4.161000px;}
.ws15a{word-spacing:4.218000px;}
.ws10{word-spacing:4.259994px;}
.ws115{word-spacing:4.275000px;}
.ws127{word-spacing:4.389000px;}
.wsee{word-spacing:4.446000px;}
.ws1be{word-spacing:4.500000px;}
.ws14c{word-spacing:4.503000px;}
.ws29{word-spacing:4.560000px;}
.ws147{word-spacing:4.617000px;}
.ws1f5{word-spacing:4.635000px;}
.ws6f{word-spacing:4.731000px;}
.ws9a{word-spacing:4.845000px;}
.ws196{word-spacing:4.860000px;}
.wsbd{word-spacing:4.902000px;}
.ws197{word-spacing:4.905000px;}
.ws11{word-spacing:4.920000px;}
.wsc7{word-spacing:5.073000px;}
.ws69{word-spacing:5.130000px;}
.ws1c9{word-spacing:5.175000px;}
.wse1{word-spacing:5.301000px;}
.ws1a6{word-spacing:5.310000px;}
.ws1a5{word-spacing:5.355000px;}
.ws107{word-spacing:5.415000px;}
.ws1b9{word-spacing:5.445000px;}
.wsb{word-spacing:5.460000px;}
.ws1ba{word-spacing:5.490000px;}
.wsc{word-spacing:5.520000px;}
.ws14{word-spacing:5.529000px;}
.ws1f0{word-spacing:5.535000px;}
.ws10d{word-spacing:5.586000px;}
.ws9f{word-spacing:5.643000px;}
.ws4f{word-spacing:5.757000px;}
.ws1c1{word-spacing:5.760000px;}
.ws128{word-spacing:5.814000px;}
.ws1aa{word-spacing:5.850000px;}
.ws176{word-spacing:5.871000px;}
.ws209{word-spacing:5.895000px;}
.wse4{word-spacing:5.985000px;}
.ws57{word-spacing:6.042000px;}
.ws1d2{word-spacing:6.075000px;}
.ws27{word-spacing:6.099000px;}
.ws1d3{word-spacing:6.120000px;}
.ws1f6{word-spacing:6.210000px;}
.ws150{word-spacing:6.213000px;}
.ws86{word-spacing:6.270000px;}
.ws1fa{word-spacing:6.300000px;}
.ws7c{word-spacing:6.327000px;}
.ws50{word-spacing:6.384000px;}
.ws206{word-spacing:6.435000px;}
.ws60{word-spacing:6.441000px;}
.ws93{word-spacing:6.555000px;}
.ws4d{word-spacing:6.612000px;}
.ws1f2{word-spacing:6.615000px;}
.ws1af{word-spacing:6.660000px;}
.ws37{word-spacing:6.669000px;}
.ws142{word-spacing:6.726000px;}
.ws1b0{word-spacing:6.750000px;}
.wsd9{word-spacing:6.840000px;}
.ws4c{word-spacing:6.897000px;}
.ws12d{word-spacing:7.011000px;}
.ws1bc{word-spacing:7.020000px;}
.ws5b{word-spacing:7.068000px;}
.ws1bd{word-spacing:7.110000px;}
.ws62{word-spacing:7.125000px;}
.wsa4{word-spacing:7.239000px;}
.ws1cd{word-spacing:7.290000px;}
.ws32{word-spacing:7.296000px;}
.ws1ff{word-spacing:7.380000px;}
.ws172{word-spacing:7.410000px;}
.wsdb{word-spacing:7.467000px;}
.wsac{word-spacing:7.524000px;}
.wsbb{word-spacing:7.581000px;}
.ws75{word-spacing:7.638000px;}
.ws1a7{word-spacing:7.695000px;}
.ws119{word-spacing:7.752000px;}
.ws48{word-spacing:7.809000px;}
.ws58{word-spacing:7.866000px;}
.ws1c0{word-spacing:7.875000px;}
.wsb0{word-spacing:7.923000px;}
.ws1a2{word-spacing:7.965000px;}
.wsd4{word-spacing:8.037000px;}
.ws17a{word-spacing:8.094000px;}
.ws14d{word-spacing:8.151000px;}
.ws158{word-spacing:8.208000px;}
.ws19f{word-spacing:8.235000px;}
.ws85{word-spacing:8.265000px;}
.ws1c8{word-spacing:8.280000px;}
.ws70{word-spacing:8.322000px;}
.wse6{word-spacing:8.379000px;}
.ws3a{word-spacing:8.436000px;}
.ws1f1{word-spacing:8.460000px;}
.ws16c{word-spacing:8.493000px;}
.ws1d8{word-spacing:8.505000px;}
.wsd0{word-spacing:8.550000px;}
.ws19b{word-spacing:8.595000px;}
.ws1ca{word-spacing:8.640000px;}
.wsb2{word-spacing:8.664000px;}
.ws198{word-spacing:8.685000px;}
.ws10e{word-spacing:8.721000px;}
.ws1d1{word-spacing:8.730000px;}
.ws1fe{word-spacing:8.775000px;}
.wsa0{word-spacing:8.778000px;}
.ws108{word-spacing:8.835000px;}
.ws7b{word-spacing:8.892000px;}
.ws11f{word-spacing:8.949000px;}
.wscd{word-spacing:9.006000px;}
.ws149{word-spacing:9.063000px;}
.ws15f{word-spacing:9.120000px;}
.ws97{word-spacing:9.177000px;}
.wsa7{word-spacing:9.234000px;}
.wsf7{word-spacing:9.324000px;}
.ws103{word-spacing:9.348000px;}
.ws1e9{word-spacing:9.360000px;}
.wsdc{word-spacing:9.405000px;}
.ws36{word-spacing:9.519000px;}
.ws1de{word-spacing:9.540000px;}
.ws116{word-spacing:9.576000px;}
.ws1df{word-spacing:9.630000px;}
.wsa1{word-spacing:9.633000px;}
.ws25{word-spacing:9.690000px;}
.ws1e8{word-spacing:9.720000px;}
.wsf4{word-spacing:9.747000px;}
.ws205{word-spacing:9.765000px;}
.ws144{word-spacing:9.804000px;}
.ws1cc{word-spacing:9.810000px;}
.ws208{word-spacing:9.855000px;}
.ws200{word-spacing:9.900000px;}
.ws4e{word-spacing:9.918000px;}
.ws61{word-spacing:9.975000px;}
.ws163{word-spacing:10.032000px;}
.ws148{word-spacing:10.089000px;}
.ws12f{word-spacing:10.146000px;}
.ws179{word-spacing:10.203000px;}
.ws190{word-spacing:10.215000px;}
.wsd7{word-spacing:10.260000px;}
.ws191{word-spacing:10.305000px;}
.ws28{word-spacing:10.317000px;}
.ws185{word-spacing:10.374000px;}
.ws4a{word-spacing:10.431000px;}
.ws1e0{word-spacing:10.440000px;}
.ws3d{word-spacing:10.545000px;}
.ws99{word-spacing:10.602000px;}
.ws9e{word-spacing:10.659000px;}
.ws33{word-spacing:10.716000px;}
.ws41{word-spacing:10.773000px;}
.ws1ae{word-spacing:10.800000px;}
.wsf3{word-spacing:10.830000px;}
.ws1dd{word-spacing:10.845000px;}
.ws59{word-spacing:10.887000px;}
.ws31{word-spacing:10.944000px;}
.ws1f4{word-spacing:10.980000px;}
.ws5f{word-spacing:11.001000px;}
.ws1d9{word-spacing:11.025000px;}
.ws40{word-spacing:11.058000px;}
.ws82{word-spacing:11.115000px;}
.ws7f{word-spacing:11.172000px;}
.ws1c6{word-spacing:11.205000px;}
.ws46{word-spacing:11.229000px;}
.ws1d4{word-spacing:11.250000px;}
.ws1bb{word-spacing:11.295000px;}
.ws2f{word-spacing:11.343000px;}
.ws1b7{word-spacing:11.385000px;}
.ws64{word-spacing:11.400000px;}
.ws104{word-spacing:11.457000px;}
.ws207{word-spacing:11.475000px;}
.ws88{word-spacing:11.514000px;}
.ws201{word-spacing:11.520000px;}
.wsde{word-spacing:11.571000px;}
.ws1cb{word-spacing:11.610000px;}
.ws143{word-spacing:11.628000px;}
.ws51{word-spacing:11.685000px;}
.ws1d0{word-spacing:11.700000px;}
.wse5{word-spacing:11.742000px;}
.ws1a1{word-spacing:11.745000px;}
.ws1b8{word-spacing:11.790000px;}
.ws43{word-spacing:11.799000px;}
.wsd3{word-spacing:11.856000px;}
.ws1c7{word-spacing:11.880000px;}
.ws2c{word-spacing:11.913000px;}
.ws1ad{word-spacing:11.925000px;}
.ws83{word-spacing:11.970000px;}
.ws17{word-spacing:12.027000px;}
.wsef{word-spacing:12.084000px;}
.ws87{word-spacing:12.141000px;}
.wsb4{word-spacing:12.198000px;}
.ws101{word-spacing:12.255000px;}
.wsdd{word-spacing:12.312000px;}
.ws1d{word-spacing:12.369000px;}
.ws6a{word-spacing:12.426000px;}
.ws18d{word-spacing:12.465000px;}
.ws173{word-spacing:12.483000px;}
.ws1ec{word-spacing:12.510000px;}
.ws15b{word-spacing:12.597000px;}
.ws1b6{word-spacing:12.645000px;}
.ws2e{word-spacing:12.654000px;}
.wseb{word-spacing:12.711000px;}
.ws1f9{word-spacing:12.735000px;}
.wsb9{word-spacing:12.768000px;}
.wsd5{word-spacing:12.825000px;}
.ws26{word-spacing:12.882000px;}
.ws1e{word-spacing:12.939000px;}
.ws76{word-spacing:12.996000px;}
.ws167{word-spacing:13.053000px;}
.ws7a{word-spacing:13.058700px;}
.ws5a{word-spacing:13.110000px;}
.ws120{word-spacing:13.167000px;}
.ws53{word-spacing:13.224000px;}
.ws1e4{word-spacing:13.230000px;}
.ws2b{word-spacing:13.281000px;}
.ws199{word-spacing:13.320000px;}
.wsf0{word-spacing:13.338000px;}
.wsfc{word-spacing:13.395000px;}
.ws20a{word-spacing:13.410000px;}
.wsf1{word-spacing:13.452000px;}
.ws19a{word-spacing:13.455000px;}
.ws90{word-spacing:13.509000px;}
.wsf5{word-spacing:13.566000px;}
.ws1ed{word-spacing:13.590000px;}
.ws71{word-spacing:13.623000px;}
.ws65{word-spacing:13.680000px;}
.ws203{word-spacing:13.725000px;}
.wsb8{word-spacing:13.737000px;}
.ws16e{word-spacing:13.794000px;}
.ws1ea{word-spacing:13.815000px;}
.ws1ee{word-spacing:13.860000px;}
.wsec{word-spacing:13.908000px;}
.wse2{word-spacing:14.022000px;}
.ws34{word-spacing:14.079000px;}
.ws193{word-spacing:14.085000px;}
.ws17b{word-spacing:14.136000px;}
.ws1a8{word-spacing:14.175000px;}
.wsfa{word-spacing:14.193000px;}
.ws194{word-spacing:14.220000px;}
.ws1e5{word-spacing:14.265000px;}
.ws66{word-spacing:14.307000px;}
.ws133{word-spacing:14.358300px;}
.ws160{word-spacing:14.364000px;}
.ws11a{word-spacing:14.421000px;}
.ws111{word-spacing:14.478000px;}
.ws1bf{word-spacing:14.490000px;}
.ws14b{word-spacing:14.535000px;}
.ws96{word-spacing:14.592000px;}
.ws80{word-spacing:14.649000px;}
.wsd8{word-spacing:14.706000px;}
.ws19d{word-spacing:14.715000px;}
.wsb6{word-spacing:14.763000px;}
.ws102{word-spacing:14.820000px;}
.ws1ab{word-spacing:14.850000px;}
.wsba{word-spacing:14.934000px;}
.ws1c5{word-spacing:14.985000px;}
.wsdf{word-spacing:14.991000px;}
.ws49{word-spacing:15.048000px;}
.ws14a{word-spacing:15.105000px;}
.ws204{word-spacing:15.120000px;}
.ws110{word-spacing:15.162000px;}
.ws94{word-spacing:15.219000px;}
.ws1e6{word-spacing:15.255000px;}
.wsb7{word-spacing:15.276000px;}
.ws72{word-spacing:15.333000px;}
.ws19e{word-spacing:15.390000px;}
.ws184{word-spacing:15.447000px;}
.ws1c2{word-spacing:15.480000px;}
.ws11d{word-spacing:15.504000px;}
.ws11c{word-spacing:15.561000px;}
.ws1c3{word-spacing:15.615000px;}
.ws16b{word-spacing:15.618000px;}
.wsce{word-spacing:15.675000px;}
.wse7{word-spacing:15.732000px;}
.ws9c{word-spacing:15.789000px;}
.ws113{word-spacing:15.846000px;}
.ws7d{word-spacing:15.903000px;}
.ws1d5{word-spacing:15.930000px;}
.wsea{word-spacing:15.960000px;}
.ws189{word-spacing:16.017000px;}
.ws8f{word-spacing:16.074000px;}
.ws10a{word-spacing:16.131000px;}
.wsa6{word-spacing:16.416000px;}
.ws11e{word-spacing:16.473000px;}
.ws95{word-spacing:16.530000px;}
.wsa2{word-spacing:16.587000px;}
.ws1d6{word-spacing:16.605000px;}
.ws8c{word-spacing:16.644000px;}
.ws100{word-spacing:16.701000px;}
.wse8{word-spacing:16.758000px;}
.ws1d7{word-spacing:16.785000px;}
.ws8e{word-spacing:16.815000px;}
.ws171{word-spacing:16.872000px;}
.ws24{word-spacing:16.929000px;}
.ws1f8{word-spacing:16.965000px;}
.ws105{word-spacing:16.986000px;}
.ws15{word-spacing:17.043000px;}
.ws168{word-spacing:17.100000px;}
.ws1f7{word-spacing:17.145000px;}
.ws8d{word-spacing:17.157000px;}
.ws157{word-spacing:17.214000px;}
.ws162{word-spacing:17.271000px;}
.ws195{word-spacing:17.280000px;}
.ws140{word-spacing:17.328000px;}
.ws98{word-spacing:17.385000px;}
.ws9b{word-spacing:17.442000px;}
.wsbe{word-spacing:17.499000px;}
.ws89{word-spacing:17.556000px;}
.ws52{word-spacing:17.613000px;}
.wsfb{word-spacing:17.955000px;}
.ws10f{word-spacing:18.012000px;}
.wsa5{word-spacing:18.069000px;}
.ws141{word-spacing:18.183000px;}
.ws4b{word-spacing:18.240000px;}
.ws121{word-spacing:18.297000px;}
.ws174{word-spacing:18.354000px;}
.ws186{word-spacing:18.411000px;}
.wsf2{word-spacing:18.468000px;}
.ws42{word-spacing:18.582000px;}
.ws74{word-spacing:18.639000px;}
.wsaa{word-spacing:18.753000px;}
.ws84{word-spacing:18.810000px;}
.ws165{word-spacing:18.867000px;}
.ws1c4{word-spacing:18.900000px;}
.ws3b{word-spacing:18.924000px;}
.ws47{word-spacing:18.981000px;}
.ws1db{word-spacing:19.125000px;}
.ws55{word-spacing:19.152000px;}
.wsb5{word-spacing:19.209000px;}
.ws68{word-spacing:19.266000px;}
.ws1dc{word-spacing:19.305000px;}
.ws177{word-spacing:19.380000px;}
.ws15c{word-spacing:19.437000px;}
.wsab{word-spacing:19.494000px;}
.wse9{word-spacing:19.665000px;}
.ws81{word-spacing:19.722000px;}
.ws23{word-spacing:19.779000px;}
.ws2a{word-spacing:19.836000px;}
.ws124{word-spacing:19.893000px;}
.ws22{word-spacing:19.950000px;}
.wsed{word-spacing:20.007000px;}
.wsc9{word-spacing:20.016000px;}
.ws14f{word-spacing:20.121000px;}
.ws5d{word-spacing:20.178000px;}
.ws30{word-spacing:20.235000px;}
.ws188{word-spacing:20.292000px;}
.wsb1{word-spacing:20.349000px;}
.ws135{word-spacing:20.520000px;}
.ws15d{word-spacing:20.634000px;}
.ws183{word-spacing:20.691000px;}
.ws16{word-spacing:20.748000px;}
.ws54{word-spacing:20.805000px;}
.ws18e{word-spacing:20.835000px;}
.wsd1{word-spacing:20.919000px;}
.ws16a{word-spacing:20.976000px;}
.ws18f{word-spacing:21.015000px;}
.ws6d{word-spacing:21.204000px;}
.ws1a{word-spacing:21.546000px;}
.ws187{word-spacing:21.717000px;}
.ws18a{word-spacing:21.831000px;}
.ws39{word-spacing:21.945000px;}
.ws16f{word-spacing:22.002000px;}
.ws1a3{word-spacing:22.050000px;}
.ws131{word-spacing:22.116000px;}
.wsa8{word-spacing:22.287000px;}
.ws12c{word-spacing:22.344000px;}
.ws109{word-spacing:22.686000px;}
.ws156{word-spacing:22.743000px;}
.ws2d{word-spacing:22.800000px;}
.ws12a{word-spacing:22.914000px;}
.wsbc{word-spacing:23.028000px;}
.ws17d{word-spacing:23.142000px;}
.ws6c{word-spacing:23.256000px;}
.ws178{word-spacing:23.370000px;}
.ws138{word-spacing:23.427000px;}
.ws67{word-spacing:23.541000px;}
.wscc{word-spacing:23.655000px;}
.ws159{word-spacing:23.712000px;}
.ws17c{word-spacing:24.453000px;}
.ws13f{word-spacing:24.681000px;}
.ws146{word-spacing:25.251000px;}
.ws153{word-spacing:25.536000px;}
.wsae{word-spacing:25.935000px;}
.wse3{word-spacing:26.163000px;}
.wsc8{word-spacing:26.277000px;}
.ws38{word-spacing:26.505000px;}
.ws1f{word-spacing:26.733000px;}
.ws1fb{word-spacing:27.000000px;}
.ws169{word-spacing:27.588000px;}
.ws1fc{word-spacing:27.675000px;}
.ws16d{word-spacing:27.873000px;}
.ws137{word-spacing:28.842000px;}
.ws8b{word-spacing:29.013000px;}
.ws114{word-spacing:29.925000px;}
.wsa9{word-spacing:30.438000px;}
.wsd6{word-spacing:30.837000px;}
.ws145{word-spacing:31.464000px;}
.ws18c{word-spacing:32.625000px;}
.ws17e{word-spacing:32.889000px;}
.ws132{word-spacing:33.231000px;}
.ws152{word-spacing:34.200000px;}
.ws136{word-spacing:34.827000px;}
.ws1b{word-spacing:35.511000px;}
.wscb{word-spacing:38.418000px;}
.ws6e{word-spacing:38.532000px;}
.ws125{word-spacing:40.413000px;}
.ws154{word-spacing:41.211000px;}
.wsca{word-spacing:51.870000px;}
._35{margin-left:-47.823000px;}
._2e{margin-left:-46.227000px;}
._1f{margin-left:-37.335000px;}
._27{margin-left:-35.739000px;}
._34{margin-left:-31.982400px;}
._30{margin-left:-30.147600px;}
._2f{margin-left:-27.930000px;}
._18{margin-left:-25.536000px;}
._31{margin-left:-24.137400px;}
._1d{margin-left:-22.975800px;}
._17{margin-left:-21.204000px;}
._16{margin-left:-20.178000px;}
._2b{margin-left:-18.981600px;}
._15{margin-left:-17.784000px;}
._2a{margin-left:-16.633200px;}
._29{margin-left:-15.198000px;}
._5{margin-left:-13.986000px;}
._3{margin-left:-12.435000px;}
._2{margin-left:-11.062200px;}
._28{margin-left:-9.444000px;}
._10{margin-left:-7.992000px;}
._11{margin-left:-6.652200px;}
._4{margin-left:-4.807200px;}
._0{margin-left:-2.925000px;}
._1{margin-left:-1.267800px;}
._6{width:1.440000px;}
._7{width:3.055800px;}
._1b{width:4.625100px;}
._8{width:5.683800px;}
._f{width:6.701400px;}
._12{width:8.574300px;}
._32{width:9.804000px;}
._c{width:11.127900px;}
._b{width:12.702900px;}
._14{width:14.624100px;}
._19{width:15.982200px;}
._1a{width:17.242800px;}
._13{width:19.151100px;}
._e{width:20.200800px;}
._a{width:21.399600px;}
._d{width:22.427400px;}
._2c{width:23.723700px;}
._1c{width:25.847400px;}
._1e{width:27.378600px;}
._33{width:31.050600px;}
._2d{width:46.230000px;}
._22{width:52.027800px;}
._26{width:60.879600px;}
._21{width:99.144000px;}
._25{width:123.921600px;}
._23{width:142.569600px;}
._24{width:174.447600px;}
._20{width:224.404800px;}
._9{width:1976.515800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(109,110,113);}
.fsa{font-size:0.600000px;}
.fs6{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:43.125000px;}
.fsb{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:58.363101px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y14e{bottom:3.608100px;}
.y127{bottom:3.608850px;}
.yeb{bottom:3.609600px;}
.y14a{bottom:3.609750px;}
.y12c{bottom:3.610350px;}
.y14d{bottom:5.998800px;}
.y126{bottom:5.999550px;}
.yea{bottom:6.000300px;}
.y12b{bottom:6.001050px;}
.y14f{bottom:12.373256px;}
.y128{bottom:12.374006px;}
.yec{bottom:12.374756px;}
.y14b{bottom:12.374906px;}
.y12d{bottom:12.375506px;}
.y131{bottom:12.376050px;}
.y1{bottom:47.999400px;}
.y1f{bottom:98.293500px;}
.y76{bottom:98.293800px;}
.yaa{bottom:98.303100px;}
.y1cd{bottom:98.801550px;}
.yde{bottom:99.010650px;}
.yd0{bottom:99.921150px;}
.y1f8{bottom:103.301550px;}
.y20d{bottom:103.326300px;}
.y11b{bottom:106.918500px;}
.y11f{bottom:106.990500px;}
.y1e{bottom:113.293500px;}
.y3e{bottom:115.543500px;}
.y75{bottom:115.543800px;}
.ya9{bottom:115.553100px;}
.y1cc{bottom:116.051550px;}
.ydd{bottom:116.260650px;}
.ycf{bottom:117.171150px;}
.y1f7{bottom:117.551550px;}
.y20c{bottom:117.576300px;}
.y11a{bottom:121.168500px;}
.y11e{bottom:121.240500px;}
.y1d{bottom:128.293500px;}
.y1f6{bottom:131.801550px;}
.y20b{bottom:131.826300px;}
.y3d{bottom:132.793500px;}
.y74{bottom:132.793800px;}
.ya8{bottom:132.803100px;}
.y1cb{bottom:133.301550px;}
.ydc{bottom:133.510650px;}
.yce{bottom:134.421150px;}
.y1c{bottom:143.293500px;}
.y1f5{bottom:146.051550px;}
.y20a{bottom:146.076300px;}
.y3c{bottom:150.043500px;}
.y73{bottom:150.043800px;}
.ya7{bottom:150.053100px;}
.y11c{bottom:150.490500px;}
.y1ca{bottom:150.551550px;}
.ye2{bottom:150.760650px;}
.ycd{bottom:151.671150px;}
.y1b{bottom:158.293500px;}
.y1f4{bottom:160.301550px;}
.y209{bottom:160.326300px;}
.ydb{bottom:165.010650px;}
.y84{bottom:167.293500px;}
.y72{bottom:167.293800px;}
.ya6{bottom:167.303100px;}
.y1c9{bottom:167.801550px;}
.ye1{bottom:168.010650px;}
.y24d{bottom:168.724800px;}
.ycc{bottom:168.921150px;}
.y1a{bottom:173.293500px;}
.y1f3{bottom:174.551550px;}
.y208{bottom:174.576300px;}
.y3b{bottom:181.543500px;}
.y24c{bottom:182.974800px;}
.y83{bottom:184.543500px;}
.y71{bottom:184.543800px;}
.ya5{bottom:184.553100px;}
.y1c8{bottom:185.051550px;}
.ye0{bottom:185.260650px;}
.ycb{bottom:186.171150px;}
.y19{bottom:188.293500px;}
.y1f2{bottom:188.801550px;}
.y207{bottom:188.826300px;}
.y24b{bottom:197.224800px;}
.y15c{bottom:199.274850px;}
.y11d{bottom:200.128800px;}
.y82{bottom:201.793500px;}
.y70{bottom:201.793800px;}
.y1c7{bottom:202.301550px;}
.ydf{bottom:202.510650px;}
.y1f1{bottom:203.051550px;}
.y206{bottom:203.076300px;}
.y18{bottom:203.293500px;}
.yca{bottom:203.421150px;}
.y24a{bottom:211.474800px;}
.y1f0{bottom:217.301550px;}
.y205{bottom:217.326300px;}
.y81{bottom:219.043500px;}
.y6f{bottom:219.043800px;}
.y1c6{bottom:219.551550px;}
.yda{bottom:219.760650px;}
.yc9{bottom:220.671150px;}
.ya4{bottom:222.053100px;}
.y17{bottom:224.293500px;}
.y249{bottom:225.724800px;}
.y1ef{bottom:231.551550px;}
.y204{bottom:231.576300px;}
.y80{bottom:236.293500px;}
.y6e{bottom:236.293800px;}
.y1c5{bottom:236.801550px;}
.yd9{bottom:237.010650px;}
.y3a{bottom:237.043500px;}
.yc8{bottom:237.921150px;}
.y16{bottom:239.293500px;}
.ya3{bottom:239.303100px;}
.y248{bottom:239.974800px;}
.y1ee{bottom:245.801550px;}
.y203{bottom:245.826300px;}
.y7f{bottom:253.543500px;}
.y6d{bottom:253.543800px;}
.y1c4{bottom:254.051550px;}
.y247{bottom:254.224800px;}
.yd8{bottom:254.260650px;}
.y15{bottom:254.293500px;}
.yc7{bottom:255.171150px;}
.ya2{bottom:256.553100px;}
.y1ed{bottom:260.051550px;}
.y202{bottom:260.076300px;}
.y39{bottom:265.543500px;}
.y246{bottom:268.474800px;}
.y7e{bottom:270.793500px;}
.y6c{bottom:270.793800px;}
.y1c3{bottom:271.301550px;}
.yd7{bottom:271.510650px;}
.yc6{bottom:272.421150px;}
.ya1{bottom:273.803100px;}
.y1ec{bottom:274.301550px;}
.y201{bottom:274.326300px;}
.y14{bottom:275.293500px;}
.y245{bottom:282.724800px;}
.y38{bottom:286.543500px;}
.y7d{bottom:288.043500px;}
.y6b{bottom:288.043800px;}
.y1c2{bottom:288.551550px;}
.y200{bottom:288.576300px;}
.yc5{bottom:289.671150px;}
.y13{bottom:290.293500px;}
.ya0{bottom:291.053100px;}
.y244{bottom:296.974800px;}
.y1eb{bottom:302.801550px;}
.y1ff{bottom:302.826300px;}
.y197{bottom:304.543800px;}
.y12{bottom:305.293500px;}
.y6a{bottom:305.293800px;}
.y1c1{bottom:305.801550px;}
.yc4{bottom:306.921150px;}
.y37{bottom:307.543500px;}
.y9f{bottom:308.303100px;}
.y243{bottom:311.224650px;}
.ye4{bottom:311.307900px;}
.y1ea{bottom:317.051550px;}
.y1fe{bottom:317.076300px;}
.y11{bottom:320.293500px;}
.y196{bottom:321.793650px;}
.y7c{bottom:322.543500px;}
.y69{bottom:322.543650px;}
.y1ce{bottom:323.051550px;}
.yc3{bottom:324.171150px;}
.y242{bottom:325.474650px;}
.y9e{bottom:325.553100px;}
.y36{bottom:328.543500px;}
.y1e9{bottom:331.301550px;}
.y1fd{bottom:331.326300px;}
.y10{bottom:335.293500px;}
.y195{bottom:339.043650px;}
.y241{bottom:339.724650px;}
.y68{bottom:339.793650px;}
.yc2{bottom:341.421150px;}
.y9d{bottom:342.803100px;}
.y1e8{bottom:345.551550px;}
.y1fc{bottom:345.576300px;}
.y35{bottom:349.543500px;}
.y163{bottom:350.304750px;}
.y119{bottom:351.639300px;}
.y240{bottom:353.974650px;}
.y1c0{bottom:354.551550px;}
.y194{bottom:356.293650px;}
.y67{bottom:357.043650px;}
.yc1{bottom:358.671150px;}
.y1e7{bottom:359.801550px;}
.y1fb{bottom:359.826300px;}
.y9c{bottom:360.053100px;}
.yf{bottom:367.543500px;}
.y23f{bottom:368.224650px;}
.y34{bottom:370.543500px;}
.y1bf{bottom:371.801550px;}
.y193{bottom:373.543650px;}
.y1fa{bottom:374.076300px;}
.y66{bottom:374.293650px;}
.yc0{bottom:375.921150px;}
.y9b{bottom:377.303100px;}
.y23e{bottom:382.474650px;}
.ye{bottom:382.543500px;}
.y1e6{bottom:388.301550px;}
.y1f9{bottom:388.326300px;}
.y1be{bottom:389.051550px;}
.y192{bottom:390.793650px;}
.y33{bottom:391.543500px;}
.y65{bottom:391.543650px;}
.ybf{bottom:393.171150px;}
.y9a{bottom:394.553100px;}
.y23d{bottom:396.724650px;}
.yd{bottom:397.543500px;}
.y15f{bottom:402.670650px;}
.y1bd{bottom:406.301550px;}
.y158{bottom:407.350800px;}
.y191{bottom:408.043650px;}
.y64{bottom:408.793650px;}
.y1e5{bottom:409.301550px;}
.yd5{bottom:410.421150px;}
.y23c{bottom:410.974650px;}
.y99{bottom:411.803100px;}
.y32{bottom:412.543500px;}
.y10b{bottom:413.293650px;}
.y162{bottom:415.790400px;}
.y15e{bottom:416.920650px;}
.yc{bottom:418.543500px;}
.y1bc{bottom:423.551550px;}
.y23b{bottom:425.224650px;}
.y190{bottom:425.293650px;}
.y63{bottom:426.043650px;}
.yd4{bottom:427.671150px;}
.y98{bottom:429.053100px;}
.ybe{bottom:429.921150px;}
.y161{bottom:430.040400px;}
.y10a{bottom:430.543650px;}
.yb{bottom:433.543500px;}
.y23a{bottom:439.474650px;}
.y1bb{bottom:440.801550px;}
.y1e4{bottom:442.301550px;}
.y18f{bottom:442.543650px;}
.y7a{bottom:443.293650px;}
.y62{bottom:444.793650px;}
.yd3{bottom:444.921150px;}
.y97{bottom:446.303100px;}
.ybd{bottom:447.171150px;}
.y109{bottom:447.793650px;}
.ya{bottom:448.543500px;}
.y239{bottom:453.724650px;}
.y31{bottom:454.543500px;}
.y1ba{bottom:458.051550px;}
.y1e3{bottom:459.551550px;}
.y18e{bottom:459.793650px;}
.y79{bottom:460.543650px;}
.yd2{bottom:462.171150px;}
.y9{bottom:463.543500px;}
.y96{bottom:463.553100px;}
.ybc{bottom:464.421150px;}
.y108{bottom:465.043650px;}
.y238{bottom:467.974650px;}
.y1b9{bottom:475.301550px;}
.y30{bottom:475.543500px;}
.y107{bottom:476.293500px;}
.y1e2{bottom:476.801550px;}
.y18d{bottom:477.043650px;}
.y78{bottom:477.793650px;}
.y8{bottom:478.543500px;}
.yd1{bottom:479.421150px;}
.y95{bottom:480.803100px;}
.ybb{bottom:481.671150px;}
.y237{bottom:482.224650px;}
.y106{bottom:482.293650px;}
.y1b8{bottom:492.551550px;}
.y1e1{bottom:494.051550px;}
.y18c{bottom:494.293650px;}
.y61{bottom:495.043650px;}
.y236{bottom:496.474650px;}
.y2f{bottom:496.543500px;}
.y94{bottom:498.053100px;}
.yba{bottom:498.921150px;}
.y7{bottom:499.543500px;}
.y105{bottom:499.543650px;}
.y1b7{bottom:509.801550px;}
.y235{bottom:510.724650px;}
.y104{bottom:510.793500px;}
.y1e0{bottom:511.301550px;}
.y18b{bottom:511.543650px;}
.y60{bottom:512.293650px;}
.y6{bottom:514.543500px;}
.y93{bottom:515.303100px;}
.yb9{bottom:516.171150px;}
.y103{bottom:516.793650px;}
.y2e{bottom:517.543500px;}
.y234{bottom:524.974650px;}
.y1b6{bottom:527.051550px;}
.y102{bottom:528.043500px;}
.y18a{bottom:528.793650px;}
.y5{bottom:529.543500px;}
.y5f{bottom:529.543650px;}
.y92{bottom:532.553100px;}
.yb8{bottom:533.421150px;}
.y101{bottom:534.043650px;}
.y2d{bottom:538.543500px;}
.y233{bottom:539.224650px;}
.y1df{bottom:542.801550px;}
.y1b5{bottom:544.301550px;}
.y100{bottom:545.293500px;}
.y5e{bottom:546.793650px;}
.yff{bottom:551.293650px;}
.y232{bottom:553.474650px;}
.y2c{bottom:559.543500px;}
.y189{bottom:560.293650px;}
.y1b4{bottom:561.551550px;}
.y5d{bottom:564.043650px;}
.y91{bottom:566.303100px;}
.y231{bottom:567.724650px;}
.yfe{bottom:568.543650px;}
.y1b3{bottom:578.801550px;}
.yd6{bottom:579.218250px;}
.y2b{bottom:580.543500px;}
.y5c{bottom:581.293650px;}
.y230{bottom:581.974650px;}
.ye3{bottom:583.538250px;}
.y90{bottom:583.553100px;}
.yfd{bottom:585.793650px;}
.y1b2{bottom:596.051550px;}
.y22f{bottom:596.224650px;}
.y1de{bottom:598.301550px;}
.y5b{bottom:598.543650px;}
.y8f{bottom:600.803100px;}
.y2a{bottom:601.543500px;}
.yfc{bottom:603.043650px;}
.y188{bottom:609.793650px;}
.y22e{bottom:610.474650px;}
.y1b1{bottom:613.301550px;}
.y1dd{bottom:615.551550px;}
.y5a{bottom:615.793650px;}
.y8e{bottom:618.053100px;}
.y118{bottom:620.293650px;}
.yfb{bottom:621.793650px;}
.y29{bottom:622.543500px;}
.y22d{bottom:624.724650px;}
.y187{bottom:627.043650px;}
.y1b0{bottom:630.551550px;}
.y1dc{bottom:632.801550px;}
.y59{bottom:633.043650px;}
.y157{bottom:633.399150px;}
.y8d{bottom:635.303100px;}
.y117{bottom:637.543650px;}
.y22c{bottom:638.974650px;}
.yfa{bottom:640.543650px;}
.y28{bottom:643.543500px;}
.y186{bottom:644.293650px;}
.y15d{bottom:647.095800px;}
.y1af{bottom:647.801550px;}
.y58{bottom:650.293650px;}
.y8c{bottom:652.553100px;}
.y22b{bottom:653.224650px;}
.y116{bottom:654.793650px;}
.y185{bottom:661.543650px;}
.y160{bottom:663.089700px;}
.y1db{bottom:664.301550px;}
.y27{bottom:664.543500px;}
.y1ae{bottom:665.051550px;}
.y115{bottom:666.043500px;}
.y22a{bottom:667.474650px;}
.y57{bottom:667.543650px;}
.y8b{bottom:669.803100px;}
.y114{bottom:672.043650px;}
.y184{bottom:678.793650px;}
.yf9{bottom:679.543650px;}
.y143{bottom:680.801550px;}
.y156{bottom:681.043650px;}
.y229{bottom:681.724650px;}
.y1ad{bottom:682.301550px;}
.y113{bottom:683.293500px;}
.y56{bottom:684.793650px;}
.y26{bottom:685.543500px;}
.y77{bottom:686.293650px;}
.y8a{bottom:687.053100px;}
.y112{bottom:689.293650px;}
.y228{bottom:695.974650px;}
.y183{bottom:696.043650px;}
.yf8{bottom:696.793650px;}
.y142{bottom:698.051550px;}
.y155{bottom:698.293650px;}
.y1ac{bottom:699.551550px;}
.y111{bottom:700.543500px;}
.y55{bottom:702.043650px;}
.y15b{bottom:703.792800px;}
.y110{bottom:706.543650px;}
.y182{bottom:707.293500px;}
.y154{bottom:709.543500px;}
.y227{bottom:710.224650px;}
.y181{bottom:713.293650px;}
.yf7{bottom:714.043650px;}
.y141{bottom:715.301550px;}
.y153{bottom:715.543650px;}
.y1ab{bottom:716.801550px;}
.y15a{bottom:718.042800px;}
.y1da{bottom:718.301550px;}
.y16c{bottom:718.543650px;}
.y89{bottom:718.553100px;}
.y54{bottom:719.293650px;}
.y10f{bottom:723.793650px;}
.y226{bottom:724.474650px;}
.y151{bottom:725.295000px;}
.y25{bottom:727.543500px;}
.y16b{bottom:729.793500px;}
.y180{bottom:730.543650px;}
.yf6{bottom:731.293650px;}
.y140{bottom:732.551550px;}
.y152{bottom:732.793650px;}
.y1aa{bottom:734.051550px;}
.y1d9{bottom:735.551550px;}
.y16a{bottom:735.793650px;}
.y53{bottom:736.543650px;}
.y225{bottom:738.724650px;}
.y10e{bottom:741.043650px;}
.y17f{bottom:741.793500px;}
.y14c{bottom:745.545000px;}
.y169{bottom:747.043500px;}
.y17e{bottom:747.793650px;}
.yf5{bottom:748.543650px;}
.y13f{bottom:749.801550px;}
.y150{bottom:750.043650px;}
.y1a9{bottom:751.301550px;}
.y1d8{bottom:752.801550px;}
.y224{bottom:752.974650px;}
.y168{bottom:753.043650px;}
.y52{bottom:753.793650px;}
.y24{bottom:756.043500px;}
.y10d{bottom:758.293650px;}
.y149{bottom:761.293500px;}
.y17d{bottom:765.043650px;}
.yf4{bottom:765.793650px;}
.y13e{bottom:767.051550px;}
.y223{bottom:767.224650px;}
.y148{bottom:767.293650px;}
.y1a8{bottom:768.551550px;}
.y1d7{bottom:770.051550px;}
.y167{bottom:770.293800px;}
.y51{bottom:771.043800px;}
.y88{bottom:772.553100px;}
.y10c{bottom:777.043800px;}
.y222{bottom:781.474800px;}
.y17c{bottom:782.293800px;}
.yf3{bottom:783.043800px;}
.y13d{bottom:784.301550px;}
.y147{bottom:784.543800px;}
.y1a7{bottom:785.801550px;}
.y1d6{bottom:787.301550px;}
.y166{bottom:787.543800px;}
.y50{bottom:788.293800px;}
.y87{bottom:789.803100px;}
.y23{bottom:795.043500px;}
.y221{bottom:795.724800px;}
.y17b{bottom:799.543800px;}
.yf2{bottom:800.293800px;}
.y13c{bottom:801.551550px;}
.y146{bottom:801.793800px;}
.y1a6{bottom:803.051550px;}
.y165{bottom:804.793800px;}
.y4f{bottom:805.543800px;}
.y86{bottom:807.053100px;}
.y220{bottom:809.974800px;}
.yf1{bottom:817.543800px;}
.y17a{bottom:818.293800px;}
.y13b{bottom:818.801550px;}
.y145{bottom:819.043800px;}
.y1a5{bottom:820.301550px;}
.y4e{bottom:822.793800px;}
.y164{bottom:823.543800px;}
.y21f{bottom:824.224800px;}
.y85{bottom:824.303100px;}
.y22{bottom:829.543500px;}
.yf0{bottom:834.793800px;}
.y13a{bottom:836.051550px;}
.y1a4{bottom:837.551550px;}
.y144{bottom:837.793800px;}
.y21e{bottom:838.474800px;}
.y4d{bottom:840.043800px;}
.yef{bottom:852.043800px;}
.y21d{bottom:852.724800px;}
.y139{bottom:853.301550px;}
.y1a3{bottom:854.801550px;}
.y179{bottom:855.043800px;}
.yb7{bottom:856.412700px;}
.y4c{bottom:857.293800px;}
.y21{bottom:864.043500px;}
.y21c{bottom:866.974800px;}
.yee{bottom:869.293800px;}
.yb6{bottom:869.912700px;}
.y138{bottom:870.551550px;}
.y1a2{bottom:872.051550px;}
.y178{bottom:872.293800px;}
.y1d5{bottom:874.301550px;}
.y4b{bottom:874.543800px;}
.y21b{bottom:881.224800px;}
.yed{bottom:886.543800px;}
.y137{bottom:887.801550px;}
.y1a1{bottom:889.301550px;}
.y177{bottom:889.543800px;}
.y1d4{bottom:891.551550px;}
.y4a{bottom:891.793800px;}
.yb5{bottom:895.412700px;}
.y21a{bottom:895.474800px;}
.ye9{bottom:897.793500px;}
.y20{bottom:898.543500px;}
.y136{bottom:899.052000px;}
.ye8{bottom:903.793800px;}
.y135{bottom:905.051550px;}
.y1a0{bottom:906.551550px;}
.y176{bottom:906.793800px;}
.y1d3{bottom:908.801550px;}
.y49{bottom:909.043800px;}
.yb4{bottom:909.662700px;}
.y219{bottom:909.724800px;}
.y134{bottom:916.302000px;}
.ye7{bottom:921.043800px;}
.y133{bottom:922.301550px;}
.y19f{bottom:923.801550px;}
.yb3{bottom:923.912700px;}
.y218{bottom:923.974800px;}
.y175{bottom:924.043800px;}
.y1d2{bottom:926.051550px;}
.y48{bottom:926.293800px;}
.yb2{bottom:938.162700px;}
.y217{bottom:938.224800px;}
.ye6{bottom:938.293800px;}
.y132{bottom:939.551550px;}
.y19e{bottom:941.051550px;}
.y174{bottom:941.293800px;}
.y47{bottom:943.543800px;}
.y159{bottom:945.929400px;}
.y12f{bottom:950.800500px;}
.yb1{bottom:952.412700px;}
.y216{bottom:952.474800px;}
.y173{bottom:952.543500px;}
.y130{bottom:954.410850px;}
.y12e{bottom:956.801550px;}
.ye5{bottom:957.043800px;}
.y1d1{bottom:957.551550px;}
.y19d{bottom:958.301550px;}
.y172{bottom:958.543800px;}
.y46{bottom:960.793800px;}
.yb0{bottom:966.662700px;}
.y215{bottom:966.724800px;}
.y12a{bottom:968.050500px;}
.y129{bottom:974.051550px;}
.y19c{bottom:975.551550px;}
.y171{bottom:975.793800px;}
.y45{bottom:978.043800px;}
.yaf{bottom:980.912700px;}
.y214{bottom:980.974800px;}
.y125{bottom:985.302000px;}
.y124{bottom:991.301550px;}
.y19b{bottom:992.801550px;}
.y170{bottom:993.043800px;}
.yae{bottom:995.162700px;}
.y213{bottom:995.224800px;}
.y44{bottom:995.293800px;}
.y123{bottom:1008.551550px;}
.y212{bottom:1009.474800px;}
.y19a{bottom:1010.051550px;}
.y16f{bottom:1011.793800px;}
.y43{bottom:1012.543800px;}
.y1d0{bottom:1013.051550px;}
.y211{bottom:1023.724800px;}
.y16e{bottom:1023.793500px;}
.yad{bottom:1024.034550px;}
.y122{bottom:1025.801550px;}
.y199{bottom:1027.301550px;}
.y42{bottom:1029.793800px;}
.y1cf{bottom:1030.301550px;}
.y210{bottom:1037.974800px;}
.y16d{bottom:1041.045000px;}
.y121{bottom:1043.051550px;}
.y198{bottom:1044.551550px;}
.y41{bottom:1047.043800px;}
.y20f{bottom:1052.224800px;}
.yac{bottom:1052.906400px;}
.y120{bottom:1061.801550px;}
.y40{bottom:1064.293800px;}
.y20e{bottom:1066.474800px;}
.yab{bottom:1067.156400px;}
.y4{bottom:1084.644750px;}
.y3{bottom:1096.644750px;}
.y2{bottom:1108.644750px;}
.y7b{bottom:1116.794250px;}
.y3f{bottom:1116.794400px;}
.h12{height:0.471600px;}
.h11{height:20.998500px;}
.hb{height:21.000000px;}
.ha{height:28.431000px;}
.hd{height:28.742981px;}
.he{height:29.143066px;}
.h4{height:30.618000px;}
.h3{height:30.702000px;}
.h14{height:32.085000px;}
.h13{height:32.220000px;}
.h2{height:33.012000px;}
.hf{height:34.368000px;}
.h6{height:38.556000px;}
.hc{height:38.899235px;}
.h9{height:40.812000px;}
.h7{height:47.160000px;}
.h8{height:56.592000px;}
.h5{height:99.036000px;}
.h10{height:212.328000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w3{width:15.000000px;}
.w2{width:15.001500px;}
.w5{width:708.696000px;}
.w4{width:710.424000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x24{left:-1.968600px;}
.x0{left:0.000000px;}
.x35{left:4.373700px;}
.x25{left:8.343900px;}
.x1{left:68.031000px;}
.x18{left:71.089650px;}
.x19{left:74.366100px;}
.x1a{left:75.888450px;}
.xa{left:79.626750px;}
.x4f{left:83.031000px;}
.x1e{left:85.038900px;}
.x1c{left:88.308600px;}
.x34{left:91.245000px;}
.x14{left:95.145000px;}
.x33{left:99.925800px;}
.x16{left:101.305110px;}
.x15{left:107.986050px;}
.x11{left:108.994800px;}
.x7{left:112.480800px;}
.x1b{left:114.968550px;}
.xc{left:123.747000px;}
.x9{left:133.480200px;}
.x13{left:136.000350px;}
.xf{left:139.276350px;}
.x12{left:142.992900px;}
.xd{left:147.487200px;}
.x10{left:149.828700px;}
.xe{left:154.102050px;}
.xb{left:167.699250px;}
.x8{left:171.605400px;}
.x5{left:187.943100px;}
.x17{left:195.534750px;}
.x6{left:202.516800px;}
.x3a{left:208.947000px;}
.x4d{left:216.214500px;}
.x3b{left:217.291050px;}
.x48{left:220.323000px;}
.x3c{left:223.947300px;}
.x46{left:226.156500px;}
.x36{left:229.414500px;}
.x4e{left:231.214650px;}
.x38{left:233.745000px;}
.x49{left:235.322400px;}
.x47{left:241.156650px;}
.x37{left:244.415550px;}
.x39{left:248.746200px;}
.x21{left:257.178900px;}
.x1d{left:263.623350px;}
.x4c{left:272.898000px;}
.x27{left:297.954000px;}
.x3d{left:301.281000px;}
.x2b{left:303.522000px;}
.x28{left:312.954300px;}
.x3e{left:316.280250px;}
.x2c{left:318.522450px;}
.x22{left:349.502850px;}
.x3f{left:358.312500px;}
.x40{left:373.312650px;}
.x29{left:381.981000px;}
.x2a{left:396.981750px;}
.x23{left:420.826500px;}
.x26{left:435.826650px;}
.x1f{left:457.086600px;}
.x43{left:471.844500px;}
.x20{left:474.094500px;}
.x41{left:509.500500px;}
.x31{left:510.558000px;}
.x2f{left:513.583500px;}
.x2d{left:515.559000px;}
.x42{left:524.225700px;}
.x32{left:525.378300px;}
.x30{left:528.469800px;}
.x2e{left:530.445300px;}
.x4{left:675.079500px;}
.x3{left:698.552100px;}
.x2{left:714.847800px;}
.x4a{left:721.533000px;}
.x4b{left:736.533300px;}
.x44{left:750.646500px;}
.x45{left:765.403050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-5.066667pt;}
.ls30{letter-spacing:-3.952000pt;}
.ls5d{letter-spacing:-2.800000pt;}
.ls51{letter-spacing:-2.480000pt;}
.ls4e{letter-spacing:-1.570667pt;}
.ls49{letter-spacing:-1.520000pt;}
.ls2a{letter-spacing:-1.469333pt;}
.ls40{letter-spacing:-1.368000pt;}
.ls20{letter-spacing:-1.317333pt;}
.ls54{letter-spacing:-1.280000pt;}
.ls1f{letter-spacing:-1.266667pt;}
.ls55{letter-spacing:-1.240000pt;}
.ls28{letter-spacing:-1.216000pt;}
.ls48{letter-spacing:-1.165333pt;}
.ls56{letter-spacing:-1.160000pt;}
.ls2c{letter-spacing:-1.064000pt;}
.ls32{letter-spacing:-1.013333pt;}
.ls1b{letter-spacing:-0.962667pt;}
.ls23{letter-spacing:-0.912000pt;}
.ls3f{letter-spacing:-0.861333pt;}
.ls31{letter-spacing:-0.810667pt;}
.ls5f{letter-spacing:-0.800000pt;}
.ls1e{letter-spacing:-0.760000pt;}
.ls25{letter-spacing:-0.709333pt;}
.ls2f{letter-spacing:-0.658667pt;}
.ls50{letter-spacing:-0.608000pt;}
.ls5a{letter-spacing:-0.600000pt;}
.ls53{letter-spacing:-0.560000pt;}
.ls27{letter-spacing:-0.557333pt;}
.ls9{letter-spacing:-0.522667pt;}
.ls52{letter-spacing:-0.520000pt;}
.ls29{letter-spacing:-0.506667pt;}
.ls22{letter-spacing:-0.456000pt;}
.ls60{letter-spacing:-0.440000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls2e{letter-spacing:-0.405333pt;}
.ls5e{letter-spacing:-0.400000pt;}
.ls5c{letter-spacing:-0.360000pt;}
.ls26{letter-spacing:-0.354667pt;}
.ls1c{letter-spacing:-0.304000pt;}
.ls58{letter-spacing:-0.280000pt;}
.ls2d{letter-spacing:-0.253333pt;}
.lse{letter-spacing:-0.213333pt;}
.ls1d{letter-spacing:-0.202667pt;}
.ls5b{letter-spacing:-0.200000pt;}
.ls59{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.152000pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls33{letter-spacing:-0.101333pt;}
.ls4d{letter-spacing:-0.050667pt;}
.lsa{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.028939pt;}
.ls4{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.106667pt;}
.ls4c{letter-spacing:0.152000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.266667pt;}
.ls3e{letter-spacing:0.304000pt;}
.ls61{letter-spacing:0.360000pt;}
.ls62{letter-spacing:0.440000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls39{letter-spacing:0.506133pt;}
.ls37{letter-spacing:0.506667pt;}
.ls5{letter-spacing:0.533333pt;}
.ls63{letter-spacing:0.720000pt;}
.ls3b{letter-spacing:0.759467pt;}
.ls3a{letter-spacing:0.760000pt;}
.ls64{letter-spacing:0.800000pt;}
.lsf{letter-spacing:3.545600pt;}
.ls4f{letter-spacing:4.368533pt;}
.ls57{letter-spacing:4.760000pt;}
.ls18{letter-spacing:6.465067pt;}
.ls17{letter-spacing:6.465600pt;}
.ls24{letter-spacing:7.698667pt;}
.ls3c{letter-spacing:7.765333pt;}
.ls4b{letter-spacing:7.928000pt;}
.ls4a{letter-spacing:7.929600pt;}
.ls34{letter-spacing:7.957333pt;}
.ls35{letter-spacing:8.288000pt;}
.ls19{letter-spacing:9.533867pt;}
.ls16{letter-spacing:9.736000pt;}
.ls15{letter-spacing:10.102400pt;}
.ls14{letter-spacing:10.102933pt;}
.ls11{letter-spacing:10.598400pt;}
.ls13{letter-spacing:11.238933pt;}
.ls10{letter-spacing:11.808000pt;}
.ls45{letter-spacing:12.278933pt;}
.ls1a{letter-spacing:12.600533pt;}
.ls38{letter-spacing:14.075200pt;}
.ls8{letter-spacing:18.450133pt;}
.ls12{letter-spacing:20.268800pt;}
.ls41{letter-spacing:26.403733pt;}
.ls43{letter-spacing:631.468800pt;}
.ls0{letter-spacing:641.587733pt;}
.ls44{letter-spacing:646.877867pt;}
.ls1{letter-spacing:656.996267pt;}
.ls36{letter-spacing:1203.157333pt;}
.ls47{letter-spacing:1219.157333pt;}
.ls42{letter-spacing:1229.824000pt;}
.ls3d{letter-spacing:1235.157333pt;}
.ls46{letter-spacing:1256.490667pt;}
.ws13d{word-spacing:-1256.490667pt;}
.ws123{word-spacing:-1235.157333pt;}
.ws139{word-spacing:-1229.824000pt;}
.ws13e{word-spacing:-1219.157333pt;}
.ws122{word-spacing:-1203.157333pt;}
.wsf9{word-spacing:-17.792000pt;}
.ws4{word-spacing:-15.093333pt;}
.ws1b4{word-spacing:-13.840000pt;}
.ws134{word-spacing:-11.754667pt;}
.wsc0{word-spacing:-11.602667pt;}
.ws5{word-spacing:-11.501333pt;}
.ws166{word-spacing:-11.450667pt;}
.wsc3{word-spacing:-11.400000pt;}
.wsc1{word-spacing:-11.197333pt;}
.ws10b{word-spacing:-11.096000pt;}
.wsf8{word-spacing:-11.045333pt;}
.ws79{word-spacing:-10.994667pt;}
.wsc2{word-spacing:-10.944000pt;}
.ws19{word-spacing:-10.741333pt;}
.ws18{word-spacing:-10.640000pt;}
.wsc5{word-spacing:-10.589333pt;}
.ws2{word-spacing:-10.407606pt;}
.ws1{word-spacing:-10.378667pt;}
.ws13c{word-spacing:-10.336000pt;}
.ws13a{word-spacing:-10.234667pt;}
.wsc6{word-spacing:-10.184000pt;}
.ws78{word-spacing:-10.133333pt;}
.ws0{word-spacing:-9.856000pt;}
.ws17f{word-spacing:-9.080000pt;}
.ws1b1{word-spacing:-9.000000pt;}
.ws1b2{word-spacing:-8.880000pt;}
.ws1b5{word-spacing:-8.680000pt;}
.ws181{word-spacing:-8.400000pt;}
.ws182{word-spacing:-7.560000pt;}
.ws180{word-spacing:-6.680000pt;}
.ws1b3{word-spacing:-6.360000pt;}
.wscf{word-spacing:-5.168000pt;}
.ws112{word-spacing:-3.384533pt;}
.wsa{word-spacing:-2.986667pt;}
.wsd{word-spacing:-1.440000pt;}
.ws13{word-spacing:-1.120000pt;}
.ws6{word-spacing:-1.045333pt;}
.ws12e{word-spacing:-0.760000pt;}
.ws129{word-spacing:-0.506667pt;}
.ws151{word-spacing:-0.152000pt;}
.ws3{word-spacing:-0.053333pt;}
.ws8{word-spacing:-0.028939pt;}
.ws7{word-spacing:0.000000pt;}
.ws35{word-spacing:0.050667pt;}
.ws1a4{word-spacing:0.080000pt;}
.wsd2{word-spacing:0.101333pt;}
.ws6b{word-spacing:0.152000pt;}
.ws164{word-spacing:0.253333pt;}
.ws106{word-spacing:0.354667pt;}
.ws1e7{word-spacing:0.360000pt;}
.ws202{word-spacing:0.400000pt;}
.ws1ce{word-spacing:0.440000pt;}
.wsda{word-spacing:0.456000pt;}
.ws1cf{word-spacing:0.480000pt;}
.wsad{word-spacing:0.506667pt;}
.ws18b{word-spacing:0.557333pt;}
.ws1a0{word-spacing:0.560000pt;}
.ws1e3{word-spacing:0.600000pt;}
.ws1ef{word-spacing:0.680000pt;}
.wsf6{word-spacing:0.709333pt;}
.wsc4{word-spacing:0.754933pt;}
.ws45{word-spacing:0.760000pt;}
.ws15e{word-spacing:0.810667pt;}
.ws175{word-spacing:0.861333pt;}
.ws20{word-spacing:0.962667pt;}
.ws1f3{word-spacing:1.000000pt;}
.wsff{word-spacing:1.114667pt;}
.ws161{word-spacing:1.165333pt;}
.wsfd{word-spacing:1.216000pt;}
.ws1a9{word-spacing:1.240000pt;}
.ws44{word-spacing:1.266667pt;}
.ws12b{word-spacing:1.317333pt;}
.ws1da{word-spacing:1.400000pt;}
.ws117{word-spacing:1.418667pt;}
.ws8a{word-spacing:1.469333pt;}
.ws77{word-spacing:1.520000pt;}
.ws19c{word-spacing:1.560000pt;}
.ws56{word-spacing:1.570667pt;}
.wsfe{word-spacing:1.621333pt;}
.ws130{word-spacing:1.672000pt;}
.ws155{word-spacing:1.874667pt;}
.ws192{word-spacing:1.880000pt;}
.wsb3{word-spacing:1.925333pt;}
.wse{word-spacing:1.973333pt;}
.ws118{word-spacing:1.976000pt;}
.ws13b{word-spacing:2.031733pt;}
.ws1eb{word-spacing:2.040000pt;}
.ws10c{word-spacing:2.077333pt;}
.wsbf{word-spacing:2.178667pt;}
.wsaf{word-spacing:2.229333pt;}
.ws12{word-spacing:2.240000pt;}
.ws14e{word-spacing:2.280000pt;}
.ws9d{word-spacing:2.330667pt;}
.ws170{word-spacing:2.381333pt;}
.ws11b{word-spacing:2.432000pt;}
.ws20b{word-spacing:2.480000pt;}
.ws9{word-spacing:2.560000pt;}
.ws7e{word-spacing:2.584000pt;}
.ws1ac{word-spacing:2.800000pt;}
.ws92{word-spacing:2.837333pt;}
.ws3c{word-spacing:2.888000pt;}
.ws1e1{word-spacing:2.920000pt;}
.ws63{word-spacing:2.938667pt;}
.ws1e2{word-spacing:2.960000pt;}
.ws3e{word-spacing:3.040000pt;}
.ws3f{word-spacing:3.090667pt;}
.wsf{word-spacing:3.093333pt;}
.ws1c{word-spacing:3.141333pt;}
.ws73{word-spacing:3.242667pt;}
.ws1fd{word-spacing:3.280000pt;}
.ws126{word-spacing:3.293333pt;}
.wse0{word-spacing:3.344000pt;}
.ws91{word-spacing:3.496000pt;}
.ws21{word-spacing:3.546667pt;}
.ws5c{word-spacing:3.597333pt;}
.wsa3{word-spacing:3.648000pt;}
.ws5e{word-spacing:3.698667pt;}
.ws15a{word-spacing:3.749333pt;}
.ws10{word-spacing:3.786661pt;}
.ws115{word-spacing:3.800000pt;}
.ws127{word-spacing:3.901333pt;}
.wsee{word-spacing:3.952000pt;}
.ws1be{word-spacing:4.000000pt;}
.ws14c{word-spacing:4.002667pt;}
.ws29{word-spacing:4.053333pt;}
.ws147{word-spacing:4.104000pt;}
.ws1f5{word-spacing:4.120000pt;}
.ws6f{word-spacing:4.205333pt;}
.ws9a{word-spacing:4.306667pt;}
.ws196{word-spacing:4.320000pt;}
.wsbd{word-spacing:4.357333pt;}
.ws197{word-spacing:4.360000pt;}
.ws11{word-spacing:4.373333pt;}
.wsc7{word-spacing:4.509333pt;}
.ws69{word-spacing:4.560000pt;}
.ws1c9{word-spacing:4.600000pt;}
.wse1{word-spacing:4.712000pt;}
.ws1a6{word-spacing:4.720000pt;}
.ws1a5{word-spacing:4.760000pt;}
.ws107{word-spacing:4.813333pt;}
.ws1b9{word-spacing:4.840000pt;}
.wsb{word-spacing:4.853333pt;}
.ws1ba{word-spacing:4.880000pt;}
.wsc{word-spacing:4.906667pt;}
.ws14{word-spacing:4.914667pt;}
.ws1f0{word-spacing:4.920000pt;}
.ws10d{word-spacing:4.965333pt;}
.ws9f{word-spacing:5.016000pt;}
.ws4f{word-spacing:5.117333pt;}
.ws1c1{word-spacing:5.120000pt;}
.ws128{word-spacing:5.168000pt;}
.ws1aa{word-spacing:5.200000pt;}
.ws176{word-spacing:5.218667pt;}
.ws209{word-spacing:5.240000pt;}
.wse4{word-spacing:5.320000pt;}
.ws57{word-spacing:5.370667pt;}
.ws1d2{word-spacing:5.400000pt;}
.ws27{word-spacing:5.421333pt;}
.ws1d3{word-spacing:5.440000pt;}
.ws1f6{word-spacing:5.520000pt;}
.ws150{word-spacing:5.522667pt;}
.ws86{word-spacing:5.573333pt;}
.ws1fa{word-spacing:5.600000pt;}
.ws7c{word-spacing:5.624000pt;}
.ws50{word-spacing:5.674667pt;}
.ws206{word-spacing:5.720000pt;}
.ws60{word-spacing:5.725333pt;}
.ws93{word-spacing:5.826667pt;}
.ws4d{word-spacing:5.877333pt;}
.ws1f2{word-spacing:5.880000pt;}
.ws1af{word-spacing:5.920000pt;}
.ws37{word-spacing:5.928000pt;}
.ws142{word-spacing:5.978667pt;}
.ws1b0{word-spacing:6.000000pt;}
.wsd9{word-spacing:6.080000pt;}
.ws4c{word-spacing:6.130667pt;}
.ws12d{word-spacing:6.232000pt;}
.ws1bc{word-spacing:6.240000pt;}
.ws5b{word-spacing:6.282667pt;}
.ws1bd{word-spacing:6.320000pt;}
.ws62{word-spacing:6.333333pt;}
.wsa4{word-spacing:6.434667pt;}
.ws1cd{word-spacing:6.480000pt;}
.ws32{word-spacing:6.485333pt;}
.ws1ff{word-spacing:6.560000pt;}
.ws172{word-spacing:6.586667pt;}
.wsdb{word-spacing:6.637333pt;}
.wsac{word-spacing:6.688000pt;}
.wsbb{word-spacing:6.738667pt;}
.ws75{word-spacing:6.789333pt;}
.ws1a7{word-spacing:6.840000pt;}
.ws119{word-spacing:6.890667pt;}
.ws48{word-spacing:6.941333pt;}
.ws58{word-spacing:6.992000pt;}
.ws1c0{word-spacing:7.000000pt;}
.wsb0{word-spacing:7.042667pt;}
.ws1a2{word-spacing:7.080000pt;}
.wsd4{word-spacing:7.144000pt;}
.ws17a{word-spacing:7.194667pt;}
.ws14d{word-spacing:7.245333pt;}
.ws158{word-spacing:7.296000pt;}
.ws19f{word-spacing:7.320000pt;}
.ws85{word-spacing:7.346667pt;}
.ws1c8{word-spacing:7.360000pt;}
.ws70{word-spacing:7.397333pt;}
.wse6{word-spacing:7.448000pt;}
.ws3a{word-spacing:7.498667pt;}
.ws1f1{word-spacing:7.520000pt;}
.ws16c{word-spacing:7.549333pt;}
.ws1d8{word-spacing:7.560000pt;}
.wsd0{word-spacing:7.600000pt;}
.ws19b{word-spacing:7.640000pt;}
.ws1ca{word-spacing:7.680000pt;}
.wsb2{word-spacing:7.701333pt;}
.ws198{word-spacing:7.720000pt;}
.ws10e{word-spacing:7.752000pt;}
.ws1d1{word-spacing:7.760000pt;}
.ws1fe{word-spacing:7.800000pt;}
.wsa0{word-spacing:7.802667pt;}
.ws108{word-spacing:7.853333pt;}
.ws7b{word-spacing:7.904000pt;}
.ws11f{word-spacing:7.954667pt;}
.wscd{word-spacing:8.005333pt;}
.ws149{word-spacing:8.056000pt;}
.ws15f{word-spacing:8.106667pt;}
.ws97{word-spacing:8.157333pt;}
.wsa7{word-spacing:8.208000pt;}
.wsf7{word-spacing:8.288000pt;}
.ws103{word-spacing:8.309333pt;}
.ws1e9{word-spacing:8.320000pt;}
.wsdc{word-spacing:8.360000pt;}
.ws36{word-spacing:8.461333pt;}
.ws1de{word-spacing:8.480000pt;}
.ws116{word-spacing:8.512000pt;}
.ws1df{word-spacing:8.560000pt;}
.wsa1{word-spacing:8.562667pt;}
.ws25{word-spacing:8.613333pt;}
.ws1e8{word-spacing:8.640000pt;}
.wsf4{word-spacing:8.664000pt;}
.ws205{word-spacing:8.680000pt;}
.ws144{word-spacing:8.714667pt;}
.ws1cc{word-spacing:8.720000pt;}
.ws208{word-spacing:8.760000pt;}
.ws200{word-spacing:8.800000pt;}
.ws4e{word-spacing:8.816000pt;}
.ws61{word-spacing:8.866667pt;}
.ws163{word-spacing:8.917333pt;}
.ws148{word-spacing:8.968000pt;}
.ws12f{word-spacing:9.018667pt;}
.ws179{word-spacing:9.069333pt;}
.ws190{word-spacing:9.080000pt;}
.wsd7{word-spacing:9.120000pt;}
.ws191{word-spacing:9.160000pt;}
.ws28{word-spacing:9.170667pt;}
.ws185{word-spacing:9.221333pt;}
.ws4a{word-spacing:9.272000pt;}
.ws1e0{word-spacing:9.280000pt;}
.ws3d{word-spacing:9.373333pt;}
.ws99{word-spacing:9.424000pt;}
.ws9e{word-spacing:9.474667pt;}
.ws33{word-spacing:9.525333pt;}
.ws41{word-spacing:9.576000pt;}
.ws1ae{word-spacing:9.600000pt;}
.wsf3{word-spacing:9.626667pt;}
.ws1dd{word-spacing:9.640000pt;}
.ws59{word-spacing:9.677333pt;}
.ws31{word-spacing:9.728000pt;}
.ws1f4{word-spacing:9.760000pt;}
.ws5f{word-spacing:9.778667pt;}
.ws1d9{word-spacing:9.800000pt;}
.ws40{word-spacing:9.829333pt;}
.ws82{word-spacing:9.880000pt;}
.ws7f{word-spacing:9.930667pt;}
.ws1c6{word-spacing:9.960000pt;}
.ws46{word-spacing:9.981333pt;}
.ws1d4{word-spacing:10.000000pt;}
.ws1bb{word-spacing:10.040000pt;}
.ws2f{word-spacing:10.082667pt;}
.ws1b7{word-spacing:10.120000pt;}
.ws64{word-spacing:10.133333pt;}
.ws104{word-spacing:10.184000pt;}
.ws207{word-spacing:10.200000pt;}
.ws88{word-spacing:10.234667pt;}
.ws201{word-spacing:10.240000pt;}
.wsde{word-spacing:10.285333pt;}
.ws1cb{word-spacing:10.320000pt;}
.ws143{word-spacing:10.336000pt;}
.ws51{word-spacing:10.386667pt;}
.ws1d0{word-spacing:10.400000pt;}
.wse5{word-spacing:10.437333pt;}
.ws1a1{word-spacing:10.440000pt;}
.ws1b8{word-spacing:10.480000pt;}
.ws43{word-spacing:10.488000pt;}
.wsd3{word-spacing:10.538667pt;}
.ws1c7{word-spacing:10.560000pt;}
.ws2c{word-spacing:10.589333pt;}
.ws1ad{word-spacing:10.600000pt;}
.ws83{word-spacing:10.640000pt;}
.ws17{word-spacing:10.690667pt;}
.wsef{word-spacing:10.741333pt;}
.ws87{word-spacing:10.792000pt;}
.wsb4{word-spacing:10.842667pt;}
.ws101{word-spacing:10.893333pt;}
.wsdd{word-spacing:10.944000pt;}
.ws1d{word-spacing:10.994667pt;}
.ws6a{word-spacing:11.045333pt;}
.ws18d{word-spacing:11.080000pt;}
.ws173{word-spacing:11.096000pt;}
.ws1ec{word-spacing:11.120000pt;}
.ws15b{word-spacing:11.197333pt;}
.ws1b6{word-spacing:11.240000pt;}
.ws2e{word-spacing:11.248000pt;}
.wseb{word-spacing:11.298667pt;}
.ws1f9{word-spacing:11.320000pt;}
.wsb9{word-spacing:11.349333pt;}
.wsd5{word-spacing:11.400000pt;}
.ws26{word-spacing:11.450667pt;}
.ws1e{word-spacing:11.501333pt;}
.ws76{word-spacing:11.552000pt;}
.ws167{word-spacing:11.602667pt;}
.ws7a{word-spacing:11.607733pt;}
.ws5a{word-spacing:11.653333pt;}
.ws120{word-spacing:11.704000pt;}
.ws53{word-spacing:11.754667pt;}
.ws1e4{word-spacing:11.760000pt;}
.ws2b{word-spacing:11.805333pt;}
.ws199{word-spacing:11.840000pt;}
.wsf0{word-spacing:11.856000pt;}
.wsfc{word-spacing:11.906667pt;}
.ws20a{word-spacing:11.920000pt;}
.wsf1{word-spacing:11.957333pt;}
.ws19a{word-spacing:11.960000pt;}
.ws90{word-spacing:12.008000pt;}
.wsf5{word-spacing:12.058667pt;}
.ws1ed{word-spacing:12.080000pt;}
.ws71{word-spacing:12.109333pt;}
.ws65{word-spacing:12.160000pt;}
.ws203{word-spacing:12.200000pt;}
.wsb8{word-spacing:12.210667pt;}
.ws16e{word-spacing:12.261333pt;}
.ws1ea{word-spacing:12.280000pt;}
.ws1ee{word-spacing:12.320000pt;}
.wsec{word-spacing:12.362667pt;}
.wse2{word-spacing:12.464000pt;}
.ws34{word-spacing:12.514667pt;}
.ws193{word-spacing:12.520000pt;}
.ws17b{word-spacing:12.565333pt;}
.ws1a8{word-spacing:12.600000pt;}
.wsfa{word-spacing:12.616000pt;}
.ws194{word-spacing:12.640000pt;}
.ws1e5{word-spacing:12.680000pt;}
.ws66{word-spacing:12.717333pt;}
.ws133{word-spacing:12.762933pt;}
.ws160{word-spacing:12.768000pt;}
.ws11a{word-spacing:12.818667pt;}
.ws111{word-spacing:12.869333pt;}
.ws1bf{word-spacing:12.880000pt;}
.ws14b{word-spacing:12.920000pt;}
.ws96{word-spacing:12.970667pt;}
.ws80{word-spacing:13.021333pt;}
.wsd8{word-spacing:13.072000pt;}
.ws19d{word-spacing:13.080000pt;}
.wsb6{word-spacing:13.122667pt;}
.ws102{word-spacing:13.173333pt;}
.ws1ab{word-spacing:13.200000pt;}
.wsba{word-spacing:13.274667pt;}
.ws1c5{word-spacing:13.320000pt;}
.wsdf{word-spacing:13.325333pt;}
.ws49{word-spacing:13.376000pt;}
.ws14a{word-spacing:13.426667pt;}
.ws204{word-spacing:13.440000pt;}
.ws110{word-spacing:13.477333pt;}
.ws94{word-spacing:13.528000pt;}
.ws1e6{word-spacing:13.560000pt;}
.wsb7{word-spacing:13.578667pt;}
.ws72{word-spacing:13.629333pt;}
.ws19e{word-spacing:13.680000pt;}
.ws184{word-spacing:13.730667pt;}
.ws1c2{word-spacing:13.760000pt;}
.ws11d{word-spacing:13.781333pt;}
.ws11c{word-spacing:13.832000pt;}
.ws1c3{word-spacing:13.880000pt;}
.ws16b{word-spacing:13.882667pt;}
.wsce{word-spacing:13.933333pt;}
.wse7{word-spacing:13.984000pt;}
.ws9c{word-spacing:14.034667pt;}
.ws113{word-spacing:14.085333pt;}
.ws7d{word-spacing:14.136000pt;}
.ws1d5{word-spacing:14.160000pt;}
.wsea{word-spacing:14.186667pt;}
.ws189{word-spacing:14.237333pt;}
.ws8f{word-spacing:14.288000pt;}
.ws10a{word-spacing:14.338667pt;}
.wsa6{word-spacing:14.592000pt;}
.ws11e{word-spacing:14.642667pt;}
.ws95{word-spacing:14.693333pt;}
.wsa2{word-spacing:14.744000pt;}
.ws1d6{word-spacing:14.760000pt;}
.ws8c{word-spacing:14.794667pt;}
.ws100{word-spacing:14.845333pt;}
.wse8{word-spacing:14.896000pt;}
.ws1d7{word-spacing:14.920000pt;}
.ws8e{word-spacing:14.946667pt;}
.ws171{word-spacing:14.997333pt;}
.ws24{word-spacing:15.048000pt;}
.ws1f8{word-spacing:15.080000pt;}
.ws105{word-spacing:15.098667pt;}
.ws15{word-spacing:15.149333pt;}
.ws168{word-spacing:15.200000pt;}
.ws1f7{word-spacing:15.240000pt;}
.ws8d{word-spacing:15.250667pt;}
.ws157{word-spacing:15.301333pt;}
.ws162{word-spacing:15.352000pt;}
.ws195{word-spacing:15.360000pt;}
.ws140{word-spacing:15.402667pt;}
.ws98{word-spacing:15.453333pt;}
.ws9b{word-spacing:15.504000pt;}
.wsbe{word-spacing:15.554667pt;}
.ws89{word-spacing:15.605333pt;}
.ws52{word-spacing:15.656000pt;}
.wsfb{word-spacing:15.960000pt;}
.ws10f{word-spacing:16.010667pt;}
.wsa5{word-spacing:16.061333pt;}
.ws141{word-spacing:16.162667pt;}
.ws4b{word-spacing:16.213333pt;}
.ws121{word-spacing:16.264000pt;}
.ws174{word-spacing:16.314667pt;}
.ws186{word-spacing:16.365333pt;}
.wsf2{word-spacing:16.416000pt;}
.ws42{word-spacing:16.517333pt;}
.ws74{word-spacing:16.568000pt;}
.wsaa{word-spacing:16.669333pt;}
.ws84{word-spacing:16.720000pt;}
.ws165{word-spacing:16.770667pt;}
.ws1c4{word-spacing:16.800000pt;}
.ws3b{word-spacing:16.821333pt;}
.ws47{word-spacing:16.872000pt;}
.ws1db{word-spacing:17.000000pt;}
.ws55{word-spacing:17.024000pt;}
.wsb5{word-spacing:17.074667pt;}
.ws68{word-spacing:17.125333pt;}
.ws1dc{word-spacing:17.160000pt;}
.ws177{word-spacing:17.226667pt;}
.ws15c{word-spacing:17.277333pt;}
.wsab{word-spacing:17.328000pt;}
.wse9{word-spacing:17.480000pt;}
.ws81{word-spacing:17.530667pt;}
.ws23{word-spacing:17.581333pt;}
.ws2a{word-spacing:17.632000pt;}
.ws124{word-spacing:17.682667pt;}
.ws22{word-spacing:17.733333pt;}
.wsed{word-spacing:17.784000pt;}
.wsc9{word-spacing:17.792000pt;}
.ws14f{word-spacing:17.885333pt;}
.ws5d{word-spacing:17.936000pt;}
.ws30{word-spacing:17.986667pt;}
.ws188{word-spacing:18.037333pt;}
.wsb1{word-spacing:18.088000pt;}
.ws135{word-spacing:18.240000pt;}
.ws15d{word-spacing:18.341333pt;}
.ws183{word-spacing:18.392000pt;}
.ws16{word-spacing:18.442667pt;}
.ws54{word-spacing:18.493333pt;}
.ws18e{word-spacing:18.520000pt;}
.wsd1{word-spacing:18.594667pt;}
.ws16a{word-spacing:18.645333pt;}
.ws18f{word-spacing:18.680000pt;}
.ws6d{word-spacing:18.848000pt;}
.ws1a{word-spacing:19.152000pt;}
.ws187{word-spacing:19.304000pt;}
.ws18a{word-spacing:19.405333pt;}
.ws39{word-spacing:19.506667pt;}
.ws16f{word-spacing:19.557333pt;}
.ws1a3{word-spacing:19.600000pt;}
.ws131{word-spacing:19.658667pt;}
.wsa8{word-spacing:19.810667pt;}
.ws12c{word-spacing:19.861333pt;}
.ws109{word-spacing:20.165333pt;}
.ws156{word-spacing:20.216000pt;}
.ws2d{word-spacing:20.266667pt;}
.ws12a{word-spacing:20.368000pt;}
.wsbc{word-spacing:20.469333pt;}
.ws17d{word-spacing:20.570667pt;}
.ws6c{word-spacing:20.672000pt;}
.ws178{word-spacing:20.773333pt;}
.ws138{word-spacing:20.824000pt;}
.ws67{word-spacing:20.925333pt;}
.wscc{word-spacing:21.026667pt;}
.ws159{word-spacing:21.077333pt;}
.ws17c{word-spacing:21.736000pt;}
.ws13f{word-spacing:21.938667pt;}
.ws146{word-spacing:22.445333pt;}
.ws153{word-spacing:22.698667pt;}
.wsae{word-spacing:23.053333pt;}
.wse3{word-spacing:23.256000pt;}
.wsc8{word-spacing:23.357333pt;}
.ws38{word-spacing:23.560000pt;}
.ws1f{word-spacing:23.762667pt;}
.ws1fb{word-spacing:24.000000pt;}
.ws169{word-spacing:24.522667pt;}
.ws1fc{word-spacing:24.600000pt;}
.ws16d{word-spacing:24.776000pt;}
.ws137{word-spacing:25.637333pt;}
.ws8b{word-spacing:25.789333pt;}
.ws114{word-spacing:26.600000pt;}
.wsa9{word-spacing:27.056000pt;}
.wsd6{word-spacing:27.410667pt;}
.ws145{word-spacing:27.968000pt;}
.ws18c{word-spacing:29.000000pt;}
.ws17e{word-spacing:29.234667pt;}
.ws132{word-spacing:29.538667pt;}
.ws152{word-spacing:30.400000pt;}
.ws136{word-spacing:30.957333pt;}
.ws1b{word-spacing:31.565333pt;}
.wscb{word-spacing:34.149333pt;}
.ws6e{word-spacing:34.250667pt;}
.ws125{word-spacing:35.922667pt;}
.ws154{word-spacing:36.632000pt;}
.wsca{word-spacing:46.106667pt;}
._35{margin-left:-42.509333pt;}
._2e{margin-left:-41.090667pt;}
._1f{margin-left:-33.186667pt;}
._27{margin-left:-31.768000pt;}
._34{margin-left:-28.428800pt;}
._30{margin-left:-26.797867pt;}
._2f{margin-left:-24.826667pt;}
._18{margin-left:-22.698667pt;}
._31{margin-left:-21.455467pt;}
._1d{margin-left:-20.422933pt;}
._17{margin-left:-18.848000pt;}
._16{margin-left:-17.936000pt;}
._2b{margin-left:-16.872533pt;}
._15{margin-left:-15.808000pt;}
._2a{margin-left:-14.785067pt;}
._29{margin-left:-13.509333pt;}
._5{margin-left:-12.432000pt;}
._3{margin-left:-11.053333pt;}
._2{margin-left:-9.833067pt;}
._28{margin-left:-8.394667pt;}
._10{margin-left:-7.104000pt;}
._11{margin-left:-5.913067pt;}
._4{margin-left:-4.273067pt;}
._0{margin-left:-2.600000pt;}
._1{margin-left:-1.126933pt;}
._6{width:1.280000pt;}
._7{width:2.716267pt;}
._1b{width:4.111200pt;}
._8{width:5.052267pt;}
._f{width:5.956800pt;}
._12{width:7.621600pt;}
._32{width:8.714667pt;}
._c{width:9.891467pt;}
._b{width:11.291467pt;}
._14{width:12.999200pt;}
._19{width:14.206400pt;}
._1a{width:15.326933pt;}
._13{width:17.023200pt;}
._e{width:17.956267pt;}
._a{width:19.021867pt;}
._d{width:19.935467pt;}
._2c{width:21.087733pt;}
._1c{width:22.975467pt;}
._1e{width:24.336533pt;}
._33{width:27.600533pt;}
._2d{width:41.093333pt;}
._22{width:46.246933pt;}
._26{width:54.115200pt;}
._21{width:88.128000pt;}
._25{width:110.152533pt;}
._23{width:126.728533pt;}
._24{width:155.064533pt;}
._20{width:199.470933pt;}
._9{width:1756.902933pt;}
.fsa{font-size:0.533333pt;}
.fs6{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:38.333333pt;}
.fsb{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:51.878312pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y14e{bottom:3.207200pt;}
.y127{bottom:3.207867pt;}
.yeb{bottom:3.208533pt;}
.y14a{bottom:3.208667pt;}
.y12c{bottom:3.209200pt;}
.y14d{bottom:5.332267pt;}
.y126{bottom:5.332933pt;}
.yea{bottom:5.333600pt;}
.y12b{bottom:5.334267pt;}
.y14f{bottom:10.998450pt;}
.y128{bottom:10.999117pt;}
.yec{bottom:10.999783pt;}
.y14b{bottom:10.999917pt;}
.y12d{bottom:11.000450pt;}
.y131{bottom:11.000933pt;}
.y1{bottom:42.666133pt;}
.y1f{bottom:87.372000pt;}
.y76{bottom:87.372267pt;}
.yaa{bottom:87.380533pt;}
.y1cd{bottom:87.823600pt;}
.yde{bottom:88.009467pt;}
.yd0{bottom:88.818800pt;}
.y1f8{bottom:91.823600pt;}
.y20d{bottom:91.845600pt;}
.y11b{bottom:95.038667pt;}
.y11f{bottom:95.102667pt;}
.y1e{bottom:100.705333pt;}
.y3e{bottom:102.705333pt;}
.y75{bottom:102.705600pt;}
.ya9{bottom:102.713867pt;}
.y1cc{bottom:103.156933pt;}
.ydd{bottom:103.342800pt;}
.ycf{bottom:104.152133pt;}
.y1f7{bottom:104.490267pt;}
.y20c{bottom:104.512267pt;}
.y11a{bottom:107.705333pt;}
.y11e{bottom:107.769333pt;}
.y1d{bottom:114.038667pt;}
.y1f6{bottom:117.156933pt;}
.y20b{bottom:117.178933pt;}
.y3d{bottom:118.038667pt;}
.y74{bottom:118.038933pt;}
.ya8{bottom:118.047200pt;}
.y1cb{bottom:118.490267pt;}
.ydc{bottom:118.676133pt;}
.yce{bottom:119.485467pt;}
.y1c{bottom:127.372000pt;}
.y1f5{bottom:129.823600pt;}
.y20a{bottom:129.845600pt;}
.y3c{bottom:133.372000pt;}
.y73{bottom:133.372267pt;}
.ya7{bottom:133.380533pt;}
.y11c{bottom:133.769333pt;}
.y1ca{bottom:133.823600pt;}
.ye2{bottom:134.009467pt;}
.ycd{bottom:134.818800pt;}
.y1b{bottom:140.705333pt;}
.y1f4{bottom:142.490267pt;}
.y209{bottom:142.512267pt;}
.ydb{bottom:146.676133pt;}
.y84{bottom:148.705333pt;}
.y72{bottom:148.705600pt;}
.ya6{bottom:148.713867pt;}
.y1c9{bottom:149.156933pt;}
.ye1{bottom:149.342800pt;}
.y24d{bottom:149.977600pt;}
.ycc{bottom:150.152133pt;}
.y1a{bottom:154.038667pt;}
.y1f3{bottom:155.156933pt;}
.y208{bottom:155.178933pt;}
.y3b{bottom:161.372000pt;}
.y24c{bottom:162.644267pt;}
.y83{bottom:164.038667pt;}
.y71{bottom:164.038933pt;}
.ya5{bottom:164.047200pt;}
.y1c8{bottom:164.490267pt;}
.ye0{bottom:164.676133pt;}
.ycb{bottom:165.485467pt;}
.y19{bottom:167.372000pt;}
.y1f2{bottom:167.823600pt;}
.y207{bottom:167.845600pt;}
.y24b{bottom:175.310933pt;}
.y15c{bottom:177.133200pt;}
.y11d{bottom:177.892267pt;}
.y82{bottom:179.372000pt;}
.y70{bottom:179.372267pt;}
.y1c7{bottom:179.823600pt;}
.ydf{bottom:180.009467pt;}
.y1f1{bottom:180.490267pt;}
.y206{bottom:180.512267pt;}
.y18{bottom:180.705333pt;}
.yca{bottom:180.818800pt;}
.y24a{bottom:187.977600pt;}
.y1f0{bottom:193.156933pt;}
.y205{bottom:193.178933pt;}
.y81{bottom:194.705333pt;}
.y6f{bottom:194.705600pt;}
.y1c6{bottom:195.156933pt;}
.yda{bottom:195.342800pt;}
.yc9{bottom:196.152133pt;}
.ya4{bottom:197.380533pt;}
.y17{bottom:199.372000pt;}
.y249{bottom:200.644267pt;}
.y1ef{bottom:205.823600pt;}
.y204{bottom:205.845600pt;}
.y80{bottom:210.038667pt;}
.y6e{bottom:210.038933pt;}
.y1c5{bottom:210.490267pt;}
.yd9{bottom:210.676133pt;}
.y3a{bottom:210.705333pt;}
.yc8{bottom:211.485467pt;}
.y16{bottom:212.705333pt;}
.ya3{bottom:212.713867pt;}
.y248{bottom:213.310933pt;}
.y1ee{bottom:218.490267pt;}
.y203{bottom:218.512267pt;}
.y7f{bottom:225.372000pt;}
.y6d{bottom:225.372267pt;}
.y1c4{bottom:225.823600pt;}
.y247{bottom:225.977600pt;}
.yd8{bottom:226.009467pt;}
.y15{bottom:226.038667pt;}
.yc7{bottom:226.818800pt;}
.ya2{bottom:228.047200pt;}
.y1ed{bottom:231.156933pt;}
.y202{bottom:231.178933pt;}
.y39{bottom:236.038667pt;}
.y246{bottom:238.644267pt;}
.y7e{bottom:240.705333pt;}
.y6c{bottom:240.705600pt;}
.y1c3{bottom:241.156933pt;}
.yd7{bottom:241.342800pt;}
.yc6{bottom:242.152133pt;}
.ya1{bottom:243.380533pt;}
.y1ec{bottom:243.823600pt;}
.y201{bottom:243.845600pt;}
.y14{bottom:244.705333pt;}
.y245{bottom:251.310933pt;}
.y38{bottom:254.705333pt;}
.y7d{bottom:256.038667pt;}
.y6b{bottom:256.038933pt;}
.y1c2{bottom:256.490267pt;}
.y200{bottom:256.512267pt;}
.yc5{bottom:257.485467pt;}
.y13{bottom:258.038667pt;}
.ya0{bottom:258.713867pt;}
.y244{bottom:263.977600pt;}
.y1eb{bottom:269.156933pt;}
.y1ff{bottom:269.178933pt;}
.y197{bottom:270.705600pt;}
.y12{bottom:271.372000pt;}
.y6a{bottom:271.372267pt;}
.y1c1{bottom:271.823600pt;}
.yc4{bottom:272.818800pt;}
.y37{bottom:273.372000pt;}
.y9f{bottom:274.047200pt;}
.y243{bottom:276.644133pt;}
.ye4{bottom:276.718133pt;}
.y1ea{bottom:281.823600pt;}
.y1fe{bottom:281.845600pt;}
.y11{bottom:284.705333pt;}
.y196{bottom:286.038800pt;}
.y7c{bottom:286.705333pt;}
.y69{bottom:286.705467pt;}
.y1ce{bottom:287.156933pt;}
.yc3{bottom:288.152133pt;}
.y242{bottom:289.310800pt;}
.y9e{bottom:289.380533pt;}
.y36{bottom:292.038667pt;}
.y1e9{bottom:294.490267pt;}
.y1fd{bottom:294.512267pt;}
.y10{bottom:298.038667pt;}
.y195{bottom:301.372133pt;}
.y241{bottom:301.977467pt;}
.y68{bottom:302.038800pt;}
.yc2{bottom:303.485467pt;}
.y9d{bottom:304.713867pt;}
.y1e8{bottom:307.156933pt;}
.y1fc{bottom:307.178933pt;}
.y35{bottom:310.705333pt;}
.y163{bottom:311.382000pt;}
.y119{bottom:312.568267pt;}
.y240{bottom:314.644133pt;}
.y1c0{bottom:315.156933pt;}
.y194{bottom:316.705467pt;}
.y67{bottom:317.372133pt;}
.yc1{bottom:318.818800pt;}
.y1e7{bottom:319.823600pt;}
.y1fb{bottom:319.845600pt;}
.y9c{bottom:320.047200pt;}
.yf{bottom:326.705333pt;}
.y23f{bottom:327.310800pt;}
.y34{bottom:329.372000pt;}
.y1bf{bottom:330.490267pt;}
.y193{bottom:332.038800pt;}
.y1fa{bottom:332.512267pt;}
.y66{bottom:332.705467pt;}
.yc0{bottom:334.152133pt;}
.y9b{bottom:335.380533pt;}
.y23e{bottom:339.977467pt;}
.ye{bottom:340.038667pt;}
.y1e6{bottom:345.156933pt;}
.y1f9{bottom:345.178933pt;}
.y1be{bottom:345.823600pt;}
.y192{bottom:347.372133pt;}
.y33{bottom:348.038667pt;}
.y65{bottom:348.038800pt;}
.ybf{bottom:349.485467pt;}
.y9a{bottom:350.713867pt;}
.y23d{bottom:352.644133pt;}
.yd{bottom:353.372000pt;}
.y15f{bottom:357.929467pt;}
.y1bd{bottom:361.156933pt;}
.y158{bottom:362.089600pt;}
.y191{bottom:362.705467pt;}
.y64{bottom:363.372133pt;}
.y1e5{bottom:363.823600pt;}
.yd5{bottom:364.818800pt;}
.y23c{bottom:365.310800pt;}
.y99{bottom:366.047200pt;}
.y32{bottom:366.705333pt;}
.y10b{bottom:367.372133pt;}
.y162{bottom:369.591467pt;}
.y15e{bottom:370.596133pt;}
.yc{bottom:372.038667pt;}
.y1bc{bottom:376.490267pt;}
.y23b{bottom:377.977467pt;}
.y190{bottom:378.038800pt;}
.y63{bottom:378.705467pt;}
.yd4{bottom:380.152133pt;}
.y98{bottom:381.380533pt;}
.ybe{bottom:382.152133pt;}
.y161{bottom:382.258133pt;}
.y10a{bottom:382.705467pt;}
.yb{bottom:385.372000pt;}
.y23a{bottom:390.644133pt;}
.y1bb{bottom:391.823600pt;}
.y1e4{bottom:393.156933pt;}
.y18f{bottom:393.372133pt;}
.y7a{bottom:394.038800pt;}
.y62{bottom:395.372133pt;}
.yd3{bottom:395.485467pt;}
.y97{bottom:396.713867pt;}
.ybd{bottom:397.485467pt;}
.y109{bottom:398.038800pt;}
.ya{bottom:398.705333pt;}
.y239{bottom:403.310800pt;}
.y31{bottom:404.038667pt;}
.y1ba{bottom:407.156933pt;}
.y1e3{bottom:408.490267pt;}
.y18e{bottom:408.705467pt;}
.y79{bottom:409.372133pt;}
.yd2{bottom:410.818800pt;}
.y9{bottom:412.038667pt;}
.y96{bottom:412.047200pt;}
.ybc{bottom:412.818800pt;}
.y108{bottom:413.372133pt;}
.y238{bottom:415.977467pt;}
.y1b9{bottom:422.490267pt;}
.y30{bottom:422.705333pt;}
.y107{bottom:423.372000pt;}
.y1e2{bottom:423.823600pt;}
.y18d{bottom:424.038800pt;}
.y78{bottom:424.705467pt;}
.y8{bottom:425.372000pt;}
.yd1{bottom:426.152133pt;}
.y95{bottom:427.380533pt;}
.ybb{bottom:428.152133pt;}
.y237{bottom:428.644133pt;}
.y106{bottom:428.705467pt;}
.y1b8{bottom:437.823600pt;}
.y1e1{bottom:439.156933pt;}
.y18c{bottom:439.372133pt;}
.y61{bottom:440.038800pt;}
.y236{bottom:441.310800pt;}
.y2f{bottom:441.372000pt;}
.y94{bottom:442.713867pt;}
.yba{bottom:443.485467pt;}
.y7{bottom:444.038667pt;}
.y105{bottom:444.038800pt;}
.y1b7{bottom:453.156933pt;}
.y235{bottom:453.977467pt;}
.y104{bottom:454.038667pt;}
.y1e0{bottom:454.490267pt;}
.y18b{bottom:454.705467pt;}
.y60{bottom:455.372133pt;}
.y6{bottom:457.372000pt;}
.y93{bottom:458.047200pt;}
.yb9{bottom:458.818800pt;}
.y103{bottom:459.372133pt;}
.y2e{bottom:460.038667pt;}
.y234{bottom:466.644133pt;}
.y1b6{bottom:468.490267pt;}
.y102{bottom:469.372000pt;}
.y18a{bottom:470.038800pt;}
.y5{bottom:470.705333pt;}
.y5f{bottom:470.705467pt;}
.y92{bottom:473.380533pt;}
.yb8{bottom:474.152133pt;}
.y101{bottom:474.705467pt;}
.y2d{bottom:478.705333pt;}
.y233{bottom:479.310800pt;}
.y1df{bottom:482.490267pt;}
.y1b5{bottom:483.823600pt;}
.y100{bottom:484.705333pt;}
.y5e{bottom:486.038800pt;}
.yff{bottom:490.038800pt;}
.y232{bottom:491.977467pt;}
.y2c{bottom:497.372000pt;}
.y189{bottom:498.038800pt;}
.y1b4{bottom:499.156933pt;}
.y5d{bottom:501.372133pt;}
.y91{bottom:503.380533pt;}
.y231{bottom:504.644133pt;}
.yfe{bottom:505.372133pt;}
.y1b3{bottom:514.490267pt;}
.yd6{bottom:514.860667pt;}
.y2b{bottom:516.038667pt;}
.y5c{bottom:516.705467pt;}
.y230{bottom:517.310800pt;}
.ye3{bottom:518.700667pt;}
.y90{bottom:518.713867pt;}
.yfd{bottom:520.705467pt;}
.y1b2{bottom:529.823600pt;}
.y22f{bottom:529.977467pt;}
.y1de{bottom:531.823600pt;}
.y5b{bottom:532.038800pt;}
.y8f{bottom:534.047200pt;}
.y2a{bottom:534.705333pt;}
.yfc{bottom:536.038800pt;}
.y188{bottom:542.038800pt;}
.y22e{bottom:542.644133pt;}
.y1b1{bottom:545.156933pt;}
.y1dd{bottom:547.156933pt;}
.y5a{bottom:547.372133pt;}
.y8e{bottom:549.380533pt;}
.y118{bottom:551.372133pt;}
.yfb{bottom:552.705467pt;}
.y29{bottom:553.372000pt;}
.y22d{bottom:555.310800pt;}
.y187{bottom:557.372133pt;}
.y1b0{bottom:560.490267pt;}
.y1dc{bottom:562.490267pt;}
.y59{bottom:562.705467pt;}
.y157{bottom:563.021467pt;}
.y8d{bottom:564.713867pt;}
.y117{bottom:566.705467pt;}
.y22c{bottom:567.977467pt;}
.yfa{bottom:569.372133pt;}
.y28{bottom:572.038667pt;}
.y186{bottom:572.705467pt;}
.y15d{bottom:575.196267pt;}
.y1af{bottom:575.823600pt;}
.y58{bottom:578.038800pt;}
.y8c{bottom:580.047200pt;}
.y22b{bottom:580.644133pt;}
.y116{bottom:582.038800pt;}
.y185{bottom:588.038800pt;}
.y160{bottom:589.413067pt;}
.y1db{bottom:590.490267pt;}
.y27{bottom:590.705333pt;}
.y1ae{bottom:591.156933pt;}
.y115{bottom:592.038667pt;}
.y22a{bottom:593.310800pt;}
.y57{bottom:593.372133pt;}
.y8b{bottom:595.380533pt;}
.y114{bottom:597.372133pt;}
.y184{bottom:603.372133pt;}
.yf9{bottom:604.038800pt;}
.y143{bottom:605.156933pt;}
.y156{bottom:605.372133pt;}
.y229{bottom:605.977467pt;}
.y1ad{bottom:606.490267pt;}
.y113{bottom:607.372000pt;}
.y56{bottom:608.705467pt;}
.y26{bottom:609.372000pt;}
.y77{bottom:610.038800pt;}
.y8a{bottom:610.713867pt;}
.y112{bottom:612.705467pt;}
.y228{bottom:618.644133pt;}
.y183{bottom:618.705467pt;}
.yf8{bottom:619.372133pt;}
.y142{bottom:620.490267pt;}
.y155{bottom:620.705467pt;}
.y1ac{bottom:621.823600pt;}
.y111{bottom:622.705333pt;}
.y55{bottom:624.038800pt;}
.y15b{bottom:625.593600pt;}
.y110{bottom:628.038800pt;}
.y182{bottom:628.705333pt;}
.y154{bottom:630.705333pt;}
.y227{bottom:631.310800pt;}
.y181{bottom:634.038800pt;}
.yf7{bottom:634.705467pt;}
.y141{bottom:635.823600pt;}
.y153{bottom:636.038800pt;}
.y1ab{bottom:637.156933pt;}
.y15a{bottom:638.260267pt;}
.y1da{bottom:638.490267pt;}
.y16c{bottom:638.705467pt;}
.y89{bottom:638.713867pt;}
.y54{bottom:639.372133pt;}
.y10f{bottom:643.372133pt;}
.y226{bottom:643.977467pt;}
.y151{bottom:644.706667pt;}
.y25{bottom:646.705333pt;}
.y16b{bottom:648.705333pt;}
.y180{bottom:649.372133pt;}
.yf6{bottom:650.038800pt;}
.y140{bottom:651.156933pt;}
.y152{bottom:651.372133pt;}
.y1aa{bottom:652.490267pt;}
.y1d9{bottom:653.823600pt;}
.y16a{bottom:654.038800pt;}
.y53{bottom:654.705467pt;}
.y225{bottom:656.644133pt;}
.y10e{bottom:658.705467pt;}
.y17f{bottom:659.372000pt;}
.y14c{bottom:662.706667pt;}
.y169{bottom:664.038667pt;}
.y17e{bottom:664.705467pt;}
.yf5{bottom:665.372133pt;}
.y13f{bottom:666.490267pt;}
.y150{bottom:666.705467pt;}
.y1a9{bottom:667.823600pt;}
.y1d8{bottom:669.156933pt;}
.y224{bottom:669.310800pt;}
.y168{bottom:669.372133pt;}
.y52{bottom:670.038800pt;}
.y24{bottom:672.038667pt;}
.y10d{bottom:674.038800pt;}
.y149{bottom:676.705333pt;}
.y17d{bottom:680.038800pt;}
.yf4{bottom:680.705467pt;}
.y13e{bottom:681.823600pt;}
.y223{bottom:681.977467pt;}
.y148{bottom:682.038800pt;}
.y1a8{bottom:683.156933pt;}
.y1d7{bottom:684.490267pt;}
.y167{bottom:684.705600pt;}
.y51{bottom:685.372267pt;}
.y88{bottom:686.713867pt;}
.y10c{bottom:690.705600pt;}
.y222{bottom:694.644267pt;}
.y17c{bottom:695.372267pt;}
.yf3{bottom:696.038933pt;}
.y13d{bottom:697.156933pt;}
.y147{bottom:697.372267pt;}
.y1a7{bottom:698.490267pt;}
.y1d6{bottom:699.823600pt;}
.y166{bottom:700.038933pt;}
.y50{bottom:700.705600pt;}
.y87{bottom:702.047200pt;}
.y23{bottom:706.705333pt;}
.y221{bottom:707.310933pt;}
.y17b{bottom:710.705600pt;}
.yf2{bottom:711.372267pt;}
.y13c{bottom:712.490267pt;}
.y146{bottom:712.705600pt;}
.y1a6{bottom:713.823600pt;}
.y165{bottom:715.372267pt;}
.y4f{bottom:716.038933pt;}
.y86{bottom:717.380533pt;}
.y220{bottom:719.977600pt;}
.yf1{bottom:726.705600pt;}
.y17a{bottom:727.372267pt;}
.y13b{bottom:727.823600pt;}
.y145{bottom:728.038933pt;}
.y1a5{bottom:729.156933pt;}
.y4e{bottom:731.372267pt;}
.y164{bottom:732.038933pt;}
.y21f{bottom:732.644267pt;}
.y85{bottom:732.713867pt;}
.y22{bottom:737.372000pt;}
.yf0{bottom:742.038933pt;}
.y13a{bottom:743.156933pt;}
.y1a4{bottom:744.490267pt;}
.y144{bottom:744.705600pt;}
.y21e{bottom:745.310933pt;}
.y4d{bottom:746.705600pt;}
.yef{bottom:757.372267pt;}
.y21d{bottom:757.977600pt;}
.y139{bottom:758.490267pt;}
.y1a3{bottom:759.823600pt;}
.y179{bottom:760.038933pt;}
.yb7{bottom:761.255733pt;}
.y4c{bottom:762.038933pt;}
.y21{bottom:768.038667pt;}
.y21c{bottom:770.644267pt;}
.yee{bottom:772.705600pt;}
.yb6{bottom:773.255733pt;}
.y138{bottom:773.823600pt;}
.y1a2{bottom:775.156933pt;}
.y178{bottom:775.372267pt;}
.y1d5{bottom:777.156933pt;}
.y4b{bottom:777.372267pt;}
.y21b{bottom:783.310933pt;}
.yed{bottom:788.038933pt;}
.y137{bottom:789.156933pt;}
.y1a1{bottom:790.490267pt;}
.y177{bottom:790.705600pt;}
.y1d4{bottom:792.490267pt;}
.y4a{bottom:792.705600pt;}
.yb5{bottom:795.922400pt;}
.y21a{bottom:795.977600pt;}
.ye9{bottom:798.038667pt;}
.y20{bottom:798.705333pt;}
.y136{bottom:799.157333pt;}
.ye8{bottom:803.372267pt;}
.y135{bottom:804.490267pt;}
.y1a0{bottom:805.823600pt;}
.y176{bottom:806.038933pt;}
.y1d3{bottom:807.823600pt;}
.y49{bottom:808.038933pt;}
.yb4{bottom:808.589067pt;}
.y219{bottom:808.644267pt;}
.y134{bottom:814.490667pt;}
.ye7{bottom:818.705600pt;}
.y133{bottom:819.823600pt;}
.y19f{bottom:821.156933pt;}
.yb3{bottom:821.255733pt;}
.y218{bottom:821.310933pt;}
.y175{bottom:821.372267pt;}
.y1d2{bottom:823.156933pt;}
.y48{bottom:823.372267pt;}
.yb2{bottom:833.922400pt;}
.y217{bottom:833.977600pt;}
.ye6{bottom:834.038933pt;}
.y132{bottom:835.156933pt;}
.y19e{bottom:836.490267pt;}
.y174{bottom:836.705600pt;}
.y47{bottom:838.705600pt;}
.y159{bottom:840.826133pt;}
.y12f{bottom:845.156000pt;}
.yb1{bottom:846.589067pt;}
.y216{bottom:846.644267pt;}
.y173{bottom:846.705333pt;}
.y130{bottom:848.365200pt;}
.y12e{bottom:850.490267pt;}
.ye5{bottom:850.705600pt;}
.y1d1{bottom:851.156933pt;}
.y19d{bottom:851.823600pt;}
.y172{bottom:852.038933pt;}
.y46{bottom:854.038933pt;}
.yb0{bottom:859.255733pt;}
.y215{bottom:859.310933pt;}
.y12a{bottom:860.489333pt;}
.y129{bottom:865.823600pt;}
.y19c{bottom:867.156933pt;}
.y171{bottom:867.372267pt;}
.y45{bottom:869.372267pt;}
.yaf{bottom:871.922400pt;}
.y214{bottom:871.977600pt;}
.y125{bottom:875.824000pt;}
.y124{bottom:881.156933pt;}
.y19b{bottom:882.490267pt;}
.y170{bottom:882.705600pt;}
.yae{bottom:884.589067pt;}
.y213{bottom:884.644267pt;}
.y44{bottom:884.705600pt;}
.y123{bottom:896.490267pt;}
.y212{bottom:897.310933pt;}
.y19a{bottom:897.823600pt;}
.y16f{bottom:899.372267pt;}
.y43{bottom:900.038933pt;}
.y1d0{bottom:900.490267pt;}
.y211{bottom:909.977600pt;}
.y16e{bottom:910.038667pt;}
.yad{bottom:910.252933pt;}
.y122{bottom:911.823600pt;}
.y199{bottom:913.156933pt;}
.y42{bottom:915.372267pt;}
.y1cf{bottom:915.823600pt;}
.y210{bottom:922.644267pt;}
.y16d{bottom:925.373333pt;}
.y121{bottom:927.156933pt;}
.y198{bottom:928.490267pt;}
.y41{bottom:930.705600pt;}
.y20f{bottom:935.310933pt;}
.yac{bottom:935.916800pt;}
.y120{bottom:943.823600pt;}
.y40{bottom:946.038933pt;}
.y20e{bottom:947.977600pt;}
.yab{bottom:948.583467pt;}
.y4{bottom:964.128667pt;}
.y3{bottom:974.795333pt;}
.y2{bottom:985.462000pt;}
.y7b{bottom:992.706000pt;}
.y3f{bottom:992.706133pt;}
.h12{height:0.419200pt;}
.h11{height:18.665333pt;}
.hb{height:18.666667pt;}
.ha{height:25.272000pt;}
.hd{height:25.549316pt;}
.he{height:25.904948pt;}
.h4{height:27.216000pt;}
.h3{height:27.290667pt;}
.h14{height:28.520000pt;}
.h13{height:28.640000pt;}
.h2{height:29.344000pt;}
.hf{height:30.549333pt;}
.h6{height:34.272000pt;}
.hc{height:34.577098pt;}
.h9{height:36.277333pt;}
.h7{height:41.920000pt;}
.h8{height:50.304000pt;}
.h5{height:88.032000pt;}
.h10{height:188.736000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w3{width:13.333333pt;}
.w2{width:13.334667pt;}
.w5{width:629.952000pt;}
.w4{width:631.488000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x24{left:-1.749867pt;}
.x0{left:0.000000pt;}
.x35{left:3.887733pt;}
.x25{left:7.416800pt;}
.x1{left:60.472000pt;}
.x18{left:63.190800pt;}
.x19{left:66.103200pt;}
.x1a{left:67.456400pt;}
.xa{left:70.779333pt;}
.x4f{left:73.805333pt;}
.x1e{left:75.590133pt;}
.x1c{left:78.496533pt;}
.x34{left:81.106667pt;}
.x14{left:84.573333pt;}
.x33{left:88.822933pt;}
.x16{left:90.048987pt;}
.x15{left:95.987600pt;}
.x11{left:96.884267pt;}
.x7{left:99.982933pt;}
.x1b{left:102.194267pt;}
.xc{left:109.997333pt;}
.x9{left:118.649067pt;}
.x13{left:120.889200pt;}
.xf{left:123.801200pt;}
.x12{left:127.104800pt;}
.xd{left:131.099733pt;}
.x10{left:133.181067pt;}
.xe{left:136.979600pt;}
.xb{left:149.066000pt;}
.x8{left:152.538133pt;}
.x5{left:167.060533pt;}
.x17{left:173.808667pt;}
.x6{left:180.014933pt;}
.x3a{left:185.730667pt;}
.x4d{left:192.190667pt;}
.x3b{left:193.147600pt;}
.x48{left:195.842667pt;}
.x3c{left:199.064267pt;}
.x46{left:201.028000pt;}
.x36{left:203.924000pt;}
.x4e{left:205.524133pt;}
.x38{left:207.773333pt;}
.x49{left:209.175467pt;}
.x47{left:214.361467pt;}
.x37{left:217.258267pt;}
.x39{left:221.107733pt;}
.x21{left:228.603467pt;}
.x1d{left:234.331867pt;}
.x4c{left:242.576000pt;}
.x27{left:264.848000pt;}
.x3d{left:267.805333pt;}
.x2b{left:269.797333pt;}
.x28{left:278.181600pt;}
.x3e{left:281.138000pt;}
.x2c{left:283.131067pt;}
.x22{left:310.669200pt;}
.x3f{left:318.500000pt;}
.x40{left:331.833467pt;}
.x29{left:339.538667pt;}
.x2a{left:352.872667pt;}
.x23{left:374.068000pt;}
.x26{left:387.401467pt;}
.x1f{left:406.299200pt;}
.x43{left:419.417333pt;}
.x20{left:421.417333pt;}
.x41{left:452.889333pt;}
.x31{left:453.829333pt;}
.x2f{left:456.518667pt;}
.x2d{left:458.274667pt;}
.x42{left:465.978400pt;}
.x32{left:467.002933pt;}
.x30{left:469.750933pt;}
.x2e{left:471.506933pt;}
.x4{left:600.070667pt;}
.x3{left:620.935200pt;}
.x2{left:635.420267pt;}
.x4a{left:641.362667pt;}
.x4b{left:654.696267pt;}
.x44{left:667.241333pt;}
.x45{left:680.358267pt;}
}


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