
/* 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_03c4d15d64ef.woff")format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_039df8d1acd6.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_a4e048873a32.woff")format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_8b5ab5042b04.woff")format("woff");}.ff4{font-family:ff4;line-height:0.632000;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_65f465793d69.woff")format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_716d1da90c66.woff")format("woff");}.ff6{font-family:ff6;line-height:0.898000;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_66861e0babad.woff")format("woff");}.ff7{font-family:ff7;line-height:0.843000;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_fa56982de749.woff")format("woff");}.ff8{font-family:ff8;line-height:0.844000;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_693394265b43.woff")format("woff");}.ff9{font-family:ff9;line-height:0.899000;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_cf85451eb715.woff")format("woff");}.ffa{font-family:ffa;line-height:3.034000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v10{vertical-align:-40.584000px;}
.vf{vertical-align:-33.408000px;}
.v2{vertical-align:-21.702000px;}
.v3{vertical-align:-17.358000px;}
.v13{vertical-align:-14.052000px;}
.v11{vertical-align:-12.342000px;}
.v5{vertical-align:-8.970000px;}
.vc{vertical-align:-7.176000px;}
.ve{vertical-align:-4.572000px;}
.vb{vertical-align:-2.112000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.598000px;}
.v12{vertical-align:8.652000px;}
.v14{vertical-align:14.052000px;}
.v15{vertical-align:18.144000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:23.838000px;}
.v8{vertical-align:31.506000px;}
.v7{vertical-align:40.470000px;}
.v6{vertical-align:84.348000px;}
.va{vertical-align:112.548000px;}
.v9{vertical-align:125.352000px;}
.ls0{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.000017px;}
.ls3c{letter-spacing:0.000289px;}
.ls9e{letter-spacing:0.000976px;}
.ls58{letter-spacing:0.001036px;}
.ls24{letter-spacing:0.001261px;}
.ls57{letter-spacing:0.001354px;}
.ls28{letter-spacing:0.001613px;}
.ls13{letter-spacing:0.001721px;}
.ls47{letter-spacing:0.002100px;}
.ls6{letter-spacing:0.002640px;}
.ls52{letter-spacing:0.002725px;}
.ls55{letter-spacing:0.002758px;}
.ls4f{letter-spacing:0.002960px;}
.ls94{letter-spacing:0.003300px;}
.ls51{letter-spacing:0.003328px;}
.ls5d{letter-spacing:0.003527px;}
.ls92{letter-spacing:0.003600px;}
.ls26{letter-spacing:0.003746px;}
.ls93{letter-spacing:0.003797px;}
.lsf{letter-spacing:0.003979px;}
.ls7{letter-spacing:0.004200px;}
.ls76{letter-spacing:0.004366px;}
.ls9d{letter-spacing:0.005579px;}
.ls34{letter-spacing:0.005740px;}
.ls89{letter-spacing:0.139654px;}
.ls72{letter-spacing:0.177634px;}
.ls8a{letter-spacing:0.859873px;}
.ls3d{letter-spacing:1.076383px;}
.ls16{letter-spacing:1.736063px;}
.ls5b{letter-spacing:1.867200px;}
.ls38{letter-spacing:2.983200px;}
.ls5{letter-spacing:2.985302px;}
.ls1{letter-spacing:2.985797px;}
.ls39{letter-spacing:2.988600px;}
.lsd{letter-spacing:2.988893px;}
.ls36{letter-spacing:2.989037px;}
.ls3{letter-spacing:2.989200px;}
.ls9c{letter-spacing:2.990041px;}
.ls37{letter-spacing:2.990726px;}
.ls2{letter-spacing:2.991797px;}
.ls66{letter-spacing:3.583354px;}
.ls59{letter-spacing:3.589354px;}
.ls62{letter-spacing:4.482289px;}
.ls41{letter-spacing:4.484725px;}
.ls42{letter-spacing:7.054766px;}
.ls11{letter-spacing:7.171721px;}
.lsc{letter-spacing:7.177721px;}
.ls12{letter-spacing:9.501634px;}
.ls1a{letter-spacing:9.507634px;}
.ls68{letter-spacing:9.964718px;}
.ls91{letter-spacing:10.626098px;}
.ls67{letter-spacing:11.042383px;}
.ls90{letter-spacing:11.491873px;}
.ls5a{letter-spacing:11.951700px;}
.ls69{letter-spacing:11.957700px;}
.ls86{letter-spacing:12.097654px;}
.ls85{letter-spacing:12.103654px;}
.ls87{letter-spacing:12.811873px;}
.ls50{letter-spacing:12.817873px;}
.ls20{letter-spacing:13.283700px;}
.ls23{letter-spacing:13.284098px;}
.ls22{letter-spacing:13.285036px;}
.ls8f{letter-spacing:14.143873px;}
.ls63{letter-spacing:14.608200px;}
.ls5c{letter-spacing:14.941200px;}
.ls88{letter-spacing:14.943302px;}
.ls8e{letter-spacing:14.947200px;}
.lsa{letter-spacing:14.947684px;}
.ls4e{letter-spacing:15.266041px;}
.ls71{letter-spacing:15.776041px;}
.ls8c{letter-spacing:16.009200px;}
.ls8b{letter-spacing:16.011302px;}
.ls8d{letter-spacing:16.015200px;}
.ls74{letter-spacing:16.382041px;}
.lsb{letter-spacing:16.600718px;}
.ls10{letter-spacing:16.606718px;}
.ls7c{letter-spacing:16.785634px;}
.ls21{letter-spacing:16.872098px;}
.ls19{letter-spacing:17.134200px;}
.ls7b{letter-spacing:17.678383px;}
.ls46{letter-spacing:17.740718px;}
.ls25{letter-spacing:17.930041px;}
.ls64{letter-spacing:18.258600px;}
.ls17{letter-spacing:18.338063px;}
.ls75{letter-spacing:18.354600px;}
.ls96{letter-spacing:18.590041px;}
.ls82{letter-spacing:18.784718px;}
.ls79{letter-spacing:18.908041px;}
.ls15{letter-spacing:18.910200px;}
.ls40{letter-spacing:19.152600px;}
.ls81{letter-spacing:19.862383px;}
.ls77{letter-spacing:20.550600px;}
.ls73{letter-spacing:20.606041px;}
.ls49{letter-spacing:20.680718px;}
.ls48{letter-spacing:20.683684px;}
.ls45{letter-spacing:20.727403px;}
.ls9a{letter-spacing:20.798725px;}
.ls4{letter-spacing:21.116041px;}
.ls53{letter-spacing:21.124718px;}
.ls7a{letter-spacing:21.188041px;}
.ls65{letter-spacing:21.199702px;}
.ls78{letter-spacing:21.260041px;}
.ls6f{letter-spacing:21.406718px;}
.ls4c{letter-spacing:21.922718px;}
.ls70{letter-spacing:22.478383px;}
.ls61{letter-spacing:22.816200px;}
.ls9{letter-spacing:22.918200px;}
.lse{letter-spacing:23.265634px;}
.ls4d{letter-spacing:23.320718px;}
.ls9b{letter-spacing:23.768041px;}
.ls6e{letter-spacing:24.336600px;}
.ls99{letter-spacing:24.480600px;}
.ls80{letter-spacing:25.174718px;}
.ls7e{letter-spacing:25.504718px;}
.ls7d{letter-spacing:25.683634px;}
.ls3b{letter-spacing:25.767403px;}
.ls1f{letter-spacing:26.014718px;}
.ls7f{letter-spacing:26.252383px;}
.ls95{letter-spacing:26.985797px;}
.ls3a{letter-spacing:27.605498px;}
.ls1e{letter-spacing:27.752063px;}
.ls6d{letter-spacing:27.810600px;}
.ls6c{letter-spacing:27.816600px;}
.ls6b{letter-spacing:27.966600px;}
.ls4b{letter-spacing:28.174718px;}
.ls4a{letter-spacing:28.177684px;}
.ls1d{letter-spacing:28.324718px;}
.ls3f{letter-spacing:28.542600px;}
.ls8{letter-spacing:29.968766px;}
.ls1c{letter-spacing:30.056063px;}
.ls3e{letter-spacing:31.444718px;}
.ls84{letter-spacing:31.612718px;}
.ls83{letter-spacing:31.797634px;}
.ls44{letter-spacing:32.353684px;}
.ls43{letter-spacing:32.356718px;}
.ls5e{letter-spacing:33.043684px;}
.ls5f{letter-spacing:33.046718px;}
.ls98{letter-spacing:33.076718px;}
.ls60{letter-spacing:33.514718px;}
.ls97{letter-spacing:34.154383px;}
.ls18{letter-spacing:40.378718px;}
.ls31{letter-spacing:76.675200px;}
.ls30{letter-spacing:76.975200px;}
.ls2f{letter-spacing:77.011200px;}
.ls32{letter-spacing:77.995200px;}
.ls33{letter-spacing:78.925200px;}
.ls6a{letter-spacing:102.383700px;}
.ls27{letter-spacing:142.789037px;}
.ls2c{letter-spacing:177.349200px;}
.ls2d{letter-spacing:177.649200px;}
.ls2b{letter-spacing:178.201200px;}
.ls2a{letter-spacing:179.947200px;}
.ls2e{letter-spacing:190.231200px;}
.ls35{letter-spacing:233.885700px;}
.ls14{letter-spacing:236.432100px;}
.ls1b{letter-spacing:349.820100px;}
.ls56{letter-spacing:352.133700px;}
.ls29{letter-spacing:572.839200px;}
.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;}
}
.wsba{word-spacing:-46.099058px;}
.ws12a{word-spacing:-41.006062px;}
.ws7{word-spacing:-40.336459px;}
.ws2d{word-spacing:-36.881545px;}
.ws12d{word-spacing:-33.653663px;}
.ws2{word-spacing:-31.573572px;}
.ws125{word-spacing:-29.505310px;}
.ws132{word-spacing:-28.214083px;}
.ws128{word-spacing:-25.817008px;}
.ws35{word-spacing:-22.834279px;}
.ws46{word-spacing:-20.287873px;}
.ws3a{word-spacing:-16.617617px;}
.ws3{word-spacing:-15.786786px;}
.ws5{word-spacing:-14.943900px;}
.ws49{word-spacing:-13.294127px;}
.ws48{word-spacing:-11.955150px;}
.ws6{word-spacing:-10.460700px;}
.wsb9{word-spacing:-8.966400px;}
.ws3d{word-spacing:-8.567891px;}
.ws13d{word-spacing:-4.980025px;}
.ws141{word-spacing:-4.979258px;}
.wsa0{word-spacing:-4.961375px;}
.wse4{word-spacing:-3.586536px;}
.ws76{word-spacing:-3.466985px;}
.ws145{word-spacing:-3.347434px;}
.ws64{word-spacing:-3.227882px;}
.ws102{word-spacing:-3.168107px;}
.ws62{word-spacing:-3.108331px;}
.ws73{word-spacing:-3.048556px;}
.wsd{word-spacing:-2.988780px;}
.ws156{word-spacing:-2.821415px;}
.ws4d{word-spacing:-2.809453px;}
.ws12e{word-spacing:-2.749678px;}
.ws96{word-spacing:-2.689902px;}
.ws106{word-spacing:-2.630126px;}
.wsf4{word-spacing:-2.570351px;}
.wsc8{word-spacing:-2.510575px;}
.wsa1{word-spacing:-2.450800px;}
.ws12b{word-spacing:-2.391024px;}
.ws2b{word-spacing:-2.271473px;}
.ws111{word-spacing:-2.151922px;}
.ws12f{word-spacing:-2.092146px;}
.ws78{word-spacing:-2.032370px;}
.ws15d{word-spacing:-2.008465px;}
.ws11f{word-spacing:-1.972595px;}
.ws151{word-spacing:-1.960645px;}
.ws8c{word-spacing:-1.912819px;}
.ws11b{word-spacing:-1.881283px;}
.ws166{word-spacing:-1.865003px;}
.ws116{word-spacing:-1.853044px;}
.ws162{word-spacing:-1.817183px;}
.ws9a{word-spacing:-1.733492px;}
.ws14b{word-spacing:-1.673717px;}
.ws23{word-spacing:-1.613941px;}
.ws19{word-spacing:-1.554166px;}
.ws83{word-spacing:-1.494390px;}
.wsd0{word-spacing:-1.434614px;}
.wsca{word-spacing:-1.374839px;}
.ws146{word-spacing:-1.315063px;}
.ws22{word-spacing:-1.255288px;}
.ws13{word-spacing:-1.195512px;}
.ws11c{word-spacing:-1.135736px;}
.ws10e{word-spacing:-1.075961px;}
.ws1d{word-spacing:-1.016185px;}
.ws4e{word-spacing:-0.956410px;}
.ws67{word-spacing:-0.896634px;}
.ws93{word-spacing:-0.777083px;}
.ws41{word-spacing:-0.717307px;}
.ws167{word-spacing:-0.669488px;}
.wsd8{word-spacing:-0.661349px;}
.wsda{word-spacing:-0.657532px;}
.ws26{word-spacing:-0.537980px;}
.ws61{word-spacing:-0.478205px;}
.wsfb{word-spacing:-0.418429px;}
.ws15a{word-spacing:-0.382565px;}
.wsb{word-spacing:-0.358654px;}
.ws15c{word-spacing:-0.286924px;}
.ws47{word-spacing:-0.179327px;}
.ws45{word-spacing:-0.119560px;}
.ws11a{word-spacing:-0.119551px;}
.ws14{word-spacing:-0.059776px;}
.ws15{word-spacing:-0.047821px;}
.ws101{word-spacing:-0.004112px;}
.ws32{word-spacing:-0.003875px;}
.wsfe{word-spacing:-0.001756px;}
.ws0{word-spacing:0.000000px;}
.wsff{word-spacing:0.002290px;}
.ws163{word-spacing:0.047821px;}
.ws25{word-spacing:0.059776px;}
.ws164{word-spacing:0.095641px;}
.ws1f{word-spacing:0.119551px;}
.ws4{word-spacing:0.170361px;}
.ws109{word-spacing:0.179327px;}
.ws5b{word-spacing:0.239102px;}
.ws84{word-spacing:0.298878px;}
.wsce{word-spacing:0.334744px;}
.wsc7{word-spacing:0.358654px;}
.wse{word-spacing:0.418429px;}
.ws159{word-spacing:0.430385px;}
.ws9d{word-spacing:0.537980px;}
.ws1{word-spacing:0.567870px;}
.ws5e{word-spacing:0.597756px;}
.ws124{word-spacing:0.621668px;}
.wse8{word-spacing:0.637898px;}
.ws118{word-spacing:0.648738px;}
.ws9{word-spacing:0.657532px;}
.ws44{word-spacing:0.717307px;}
.wsb5{word-spacing:0.777083px;}
.ws158{word-spacing:0.812950px;}
.ws65{word-spacing:0.836858px;}
.ws55{word-spacing:0.896634px;}
.ws119{word-spacing:0.956410px;}
.ws161{word-spacing:0.956412px;}
.ws147{word-spacing:0.982157px;}
.ws149{word-spacing:0.998134px;}
.wsa{word-spacing:1.016185px;}
.ws123{word-spacing:1.052053px;}
.ws11e{word-spacing:1.075961px;}
.ws15b{word-spacing:1.099874px;}
.wsc{word-spacing:1.135736px;}
.ws98{word-spacing:1.195512px;}
.ws1c{word-spacing:1.255288px;}
.ws160{word-spacing:1.291156px;}
.ws82{word-spacing:1.315063px;}
.ws155{word-spacing:1.338977px;}
.ws53{word-spacing:1.374839px;}
.ws153{word-spacing:1.386797px;}
.ws6b{word-spacing:1.434618px;}
.ws66{word-spacing:1.494390px;}
.ws16a{word-spacing:1.530259px;}
.ws97{word-spacing:1.554166px;}
.wsc5{word-spacing:1.559425px;}
.wsc9{word-spacing:1.673717px;}
.ws91{word-spacing:1.733492px;}
.ws6d{word-spacing:1.769362px;}
.ws6c{word-spacing:1.817183px;}
.wsbe{word-spacing:1.865003px;}
.ws142{word-spacing:1.972595px;}
.ws8d{word-spacing:2.092146px;}
.ws9c{word-spacing:2.151922px;}
.ws90{word-spacing:2.211697px;}
.ws15e{word-spacing:2.247568px;}
.wsa9{word-spacing:2.271473px;}
.ws10c{word-spacing:2.331248px;}
.ws104{word-spacing:2.391024px;}
.ws2a{word-spacing:2.450800px;}
.wse5{word-spacing:2.510575px;}
.ws92{word-spacing:2.570351px;}
.ws113{word-spacing:2.604806px;}
.ws114{word-spacing:2.630126px;}
.ws51{word-spacing:2.689902px;}
.ws85{word-spacing:2.749678px;}
.ws165{word-spacing:2.773595px;}
.ws10f{word-spacing:2.809453px;}
.ws16d{word-spacing:2.821415px;}
.ws9b{word-spacing:2.869229px;}
.wse1{word-spacing:2.869236px;}
.ws108{word-spacing:2.929004px;}
.ws77{word-spacing:2.988780px;}
.ws16c{word-spacing:3.012698px;}
.ws10{word-spacing:3.048556px;}
.ws30{word-spacing:3.108331px;}
.wsf0{word-spacing:3.139634px;}
.ws138{word-spacing:3.156160px;}
.wsf{word-spacing:3.168107px;}
.wsdd{word-spacing:3.227882px;}
.wsbd{word-spacing:3.251801px;}
.wsbc{word-spacing:3.258872px;}
.wsdc{word-spacing:3.287658px;}
.wsbb{word-spacing:3.299621px;}
.wsb4{word-spacing:3.347434px;}
.ws39{word-spacing:3.407209px;}
.ws8b{word-spacing:3.526760px;}
.ws5c{word-spacing:3.586536px;}
.wsb1{word-spacing:3.646312px;}
.ws56{word-spacing:3.706087px;}
.ws117{word-spacing:3.765863px;}
.ws16b{word-spacing:3.777827px;}
.wsa5{word-spacing:3.825638px;}
.ws14e{word-spacing:3.885414px;}
.ws38{word-spacing:3.945190px;}
.ws36{word-spacing:3.963900px;}
.wsb6{word-spacing:4.004965px;}
.wsa2{word-spacing:4.064741px;}
.ws16e{word-spacing:4.112572px;}
.ws60{word-spacing:4.124516px;}
.ws5a{word-spacing:4.184292px;}
.ws8f{word-spacing:4.244068px;}
.ws21{word-spacing:4.303843px;}
.ws150{word-spacing:4.351675px;}
.ws15f{word-spacing:4.399495px;}
.ws17{word-spacing:4.423394px;}
.ws11{word-spacing:4.483170px;}
.ws103{word-spacing:4.542946px;}
.ws16f{word-spacing:4.542957px;}
.ws4c{word-spacing:4.602721px;}
.ws11d{word-spacing:4.631750px;}
.wscc{word-spacing:4.662497px;}
.wsaf{word-spacing:4.722272px;}
.ws12{word-spacing:4.782048px;}
.ws157{word-spacing:4.829881px;}
.ws8e{word-spacing:4.841824px;}
.ws169{word-spacing:4.973342px;}
.ws63{word-spacing:5.021150px;}
.ws43{word-spacing:5.080926px;}
.wsc4{word-spacing:5.140702px;}
.ws50{word-spacing:5.200477px;}
.wse7{word-spacing:5.200946px;}
.ws2c{word-spacing:5.228798px;}
.wsfa{word-spacing:5.260253px;}
.wsf9{word-spacing:5.276683px;}
.ws3f{word-spacing:5.320028px;}
.ws29{word-spacing:5.439580px;}
.ws95{word-spacing:5.499355px;}
.ws154{word-spacing:5.499369px;}
.ws75{word-spacing:5.559131px;}
.ws6f{word-spacing:5.618906px;}
.ws112{word-spacing:5.669490px;}
.ws135{word-spacing:5.678682px;}
.wse2{word-spacing:5.690651px;}
.ws72{word-spacing:5.738458px;}
.ws10b{word-spacing:5.798233px;}
.ws107{word-spacing:5.858009px;}
.ws152{word-spacing:5.881934px;}
.ws1b{word-spacing:5.917784px;}
.wsdf{word-spacing:5.976163px;}
.wse0{word-spacing:5.977037px;}
.ws137{word-spacing:5.983037px;}
.wsd5{word-spacing:6.097111px;}
.wsa8{word-spacing:6.156887px;}
.ws24{word-spacing:6.216662px;}
.wsa6{word-spacing:6.220412px;}
.ws71{word-spacing:6.276438px;}
.ws3e{word-spacing:6.301649px;}
.ws3c{word-spacing:6.336214px;}
.ws105{word-spacing:6.395989px;}
.ws4b{word-spacing:6.455765px;}
.ws3b{word-spacing:6.515540px;}
.ws13c{word-spacing:6.520284px;}
.wsf2{word-spacing:6.575316px;}
.ws52{word-spacing:6.694867px;}
.wsef{word-spacing:6.754643px;}
.wsd9{word-spacing:6.807998px;}
.ws9e{word-spacing:6.814418px;}
.ws54{word-spacing:6.874194px;}
.ws130{word-spacing:6.913176px;}
.ws133{word-spacing:6.933970px;}
.ws13b{word-spacing:6.981808px;}
.ws13a{word-spacing:6.986622px;}
.ws57{word-spacing:6.993745px;}
.ws139{word-spacing:7.029628px;}
.ws168{word-spacing:7.077449px;}
.wsed{word-spacing:7.113296px;}
.wsd6{word-spacing:7.173072px;}
.wsf1{word-spacing:7.232848px;}
.wsbf{word-spacing:7.292623px;}
.ws33{word-spacing:7.472798px;}
.wseb{word-spacing:7.591501px;}
.wsea{word-spacing:7.613728px;}
.wsdb{word-spacing:7.651277px;}
.ws20{word-spacing:7.711052px;}
.ws10d{word-spacing:7.770828px;}
.ws7f{word-spacing:7.830604px;}
.wscb{word-spacing:7.890379px;}
.ws2f{word-spacing:7.950155px;}
.ws100{word-spacing:7.986040px;}
.ws81{word-spacing:8.009930px;}
.wse9{word-spacing:8.117602px;}
.ws5f{word-spacing:8.129482px;}
.ws40{word-spacing:8.249033px;}
.wsac{word-spacing:8.308808px;}
.wsb0{word-spacing:8.380208px;}
.wsa7{word-spacing:8.428360px;}
.wsa4{word-spacing:8.488135px;}
.ws27{word-spacing:8.547911px;}
.wsf5{word-spacing:8.607686px;}
.ws99{word-spacing:8.667462px;}
.wsd4{word-spacing:8.727238px;}
.wsc2{word-spacing:8.787013px;}
.wsb2{word-spacing:8.846789px;}
.ws7a{word-spacing:8.906564px;}
.ws134{word-spacing:8.926338px;}
.wsaa{word-spacing:8.966340px;}
.wsf6{word-spacing:9.026116px;}
.ws129{word-spacing:9.132202px;}
.ws34{word-spacing:9.134798px;}
.wsd1{word-spacing:9.145667px;}
.wsab{word-spacing:9.205442px;}
.wsc6{word-spacing:9.265218px;}
.ws8a{word-spacing:9.324994px;}
.ws12c{word-spacing:9.345658px;}
.ws58{word-spacing:9.384769px;}
.ws1e{word-spacing:9.564096px;}
.ws74{word-spacing:9.623872px;}
.wsc3{word-spacing:9.644700px;}
.ws7e{word-spacing:9.683647px;}
.ws59{word-spacing:9.743423px;}
.wsc0{word-spacing:9.862974px;}
.wsa3{word-spacing:9.982525px;}
.wsd7{word-spacing:10.042301px;}
.wsae{word-spacing:10.102076px;}
.ws7c{word-spacing:10.161852px;}
.ws14a{word-spacing:10.221628px;}
.wse6{word-spacing:10.341179px;}
.ws5d{word-spacing:10.400954px;}
.ws94{word-spacing:10.460730px;}
.ws42{word-spacing:10.520506px;}
.ws31{word-spacing:10.580798px;}
.wsee{word-spacing:10.613602px;}
.ws9f{word-spacing:10.640057px;}
.ws4f{word-spacing:10.699832px;}
.wsb3{word-spacing:10.759608px;}
.ws89{word-spacing:10.879159px;}
.wsf3{word-spacing:10.998710px;}
.ws120{word-spacing:11.096117px;}
.ws79{word-spacing:11.357364px;}
.ws37{word-spacing:11.432798px;}
.ws144{word-spacing:11.536691px;}
.ws126{word-spacing:11.596466px;}
.ws6e{word-spacing:11.656242px;}
.wse3{word-spacing:11.670163px;}
.wsd3{word-spacing:11.716018px;}
.ws88{word-spacing:11.775793px;}
.ws110{word-spacing:11.895344px;}
.ws8{word-spacing:11.907329px;}
.ws28{word-spacing:12.134447px;}
.ws14c{word-spacing:12.194222px;}
.ws7b{word-spacing:12.253998px;}
.ws14f{word-spacing:12.576818px;}
.ws143{word-spacing:12.672427px;}
.wscf{word-spacing:12.911530px;}
.ws70{word-spacing:12.971305px;}
.ws87{word-spacing:13.329959px;}
.ws115{word-spacing:13.569061px;}
.wsf7{word-spacing:13.748388px;}
.wsc1{word-spacing:13.857658px;}
.ws127{word-spacing:13.987490px;}
.ws7d{word-spacing:14.346144px;}
.wsec{word-spacing:14.579602px;}
.ws86{word-spacing:14.884124px;}
.wsad{word-spacing:15.302554px;}
.ws13e{word-spacing:15.840534px;}
.ws148{word-spacing:15.874001px;}
.ws18{word-spacing:15.960085px;}
.ws170{word-spacing:15.972080px;}
.ws171{word-spacing:16.019901px;}
.ws14d{word-spacing:16.916495px;}
.ws2e{word-spacing:17.036046px;}
.wsf8{word-spacing:20.144377px;}
.ws10a{word-spacing:20.682358px;}
.ws13f{word-spacing:21.100787px;}
.ws1a{word-spacing:21.339889px;}
.ws131{word-spacing:21.948202px;}
.ws80{word-spacing:23.971303px;}
.wsd2{word-spacing:26.247658px;}
.ws140{word-spacing:28.569998px;}
.ws16{word-spacing:29.828024px;}
.ws172{word-spacing:29.935696px;}
.ws173{word-spacing:31.800699px;}
.wsb8{word-spacing:37.443530px;}
.ws175{word-spacing:42.942899px;}
.ws174{word-spacing:53.702534px;}
.ws136{word-spacing:66.088069px;}
.wsb7{word-spacing:66.566275px;}
.wsfc{word-spacing:83.686050px;}
.wsfd{word-spacing:84.451180px;}
.wscd{word-spacing:85.216309px;}
.ws121{word-spacing:116.586623px;}
.ws122{word-spacing:116.634443px;}
.wsde{word-spacing:175.262499px;}
.ws69{word-spacing:211.402317px;}
.ws6a{word-spacing:211.986904px;}
.ws4a{word-spacing:248.686244px;}
.ws68{word-spacing:264.832218px;}
._f{margin-left:-18.913042px;}
._b{margin-left:-8.518050px;}
._1{margin-left:-6.360144px;}
._0{margin-left:-4.542960px;}
._4{margin-left:-3.520794px;}
._3{margin-left:-2.271480px;}
._a{margin-left:-1.135740px;}
._2{width:1.362888px;}
._9{width:2.498628px;}
._e{width:4.096217px;}
._25{width:5.471989px;}
._2b{width:7.938220px;}
._7{width:9.483429px;}
._23{width:10.938938px;}
._11{width:13.147589px;}
._14{width:15.326770px;}
._d{width:16.979313px;}
._8{width:18.682923px;}
._c{width:20.216172px;}
._38{width:21.232702px;}
._10{width:22.236530px;}
._1c{width:23.312484px;}
._18{width:24.508003px;}
._16{width:26.301271px;}
._1b{width:27.855430px;}
._12{width:28.978980px;}
._1a{width:30.664904px;}
._13{width:31.740851px;}
._1f{width:33.414568px;}
._22{width:34.550315px;}
._24{width:36.185129px;}
._6{width:37.252272px;}
._1d{width:38.973691px;}
._2f{width:40.647412px;}
._17{width:41.663593px;}
._28{width:43.456861px;}
._5{width:45.145665px;}
._1e{width:46.565196px;}
._31{width:48.224865px;}
._27{width:50.211504px;}
._30{width:51.407016px;}
._26{width:52.676165px;}
._19{width:54.874008px;}
._37{width:56.547700px;}
._2d{width:57.623682px;}
._32{width:59.954934px;}
._2a{width:64.749092px;}
._39{width:74.193788px;}
._36{width:90.954781px;}
._29{width:93.919658px;}
._35{width:114.817261px;}
._34{width:152.021687px;}
._2e{width:176.266732px;}
._2c{width:242.163518px;}
._21{width:260.335346px;}
._33{width:284.114524px;}
._20{width:516.868957px;}
._15{width:1346.197714px;}
.fc1{color:rgb(91,75,75);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:56.787000px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:90.859200px;}
.fs1{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.y13{bottom:111.475500px;}
.y12{bottom:129.409500px;}
.y29{bottom:139.761000px;}
.y11{bottom:147.342000px;}
.y10{bottom:165.274500px;}
.y208{bottom:166.659000px;}
.y28{bottom:166.696500px;}
.yc6{bottom:168.238500px;}
.y11c{bottom:168.507000px;}
.y159{bottom:168.886500px;}
.y289{bottom:170.355000px;}
.y1c6{bottom:173.370000px;}
.y5c{bottom:173.988000px;}
.yea{bottom:174.672000px;}
.y23e{bottom:175.215000px;}
.y193{bottom:175.657500px;}
.y27{bottom:180.894000px;}
.y1fa{bottom:182.128500px;}
.y262{bottom:184.318500px;}
.y207{bottom:184.591500px;}
.yc5{bottom:186.171000px;}
.y11b{bottom:186.439500px;}
.y158{bottom:186.820500px;}
.y288{bottom:188.287500px;}
.y1c5{bottom:191.302500px;}
.y5b{bottom:191.920500px;}
.ye9{bottom:192.606000px;}
.y23d{bottom:193.147500px;}
.y192{bottom:193.590000px;}
.y26{bottom:199.429500px;}
.y1f9{bottom:200.061000px;}
.y261{bottom:202.251000px;}
.y206{bottom:202.525500px;}
.y11a{bottom:204.372000px;}
.y157{bottom:204.753000px;}
.y287{bottom:206.220000px;}
.yc4{bottom:207.321000px;}
.y1c4{bottom:209.235000px;}
.y5a{bottom:209.853000px;}
.ye8{bottom:210.538500px;}
.y23c{bottom:211.080000px;}
.y191{bottom:211.522500px;}
.y1f8{bottom:217.993500px;}
.y91{bottom:218.989500px;}
.y260{bottom:220.183500px;}
.y205{bottom:220.458000px;}
.y119{bottom:222.304500px;}
.y156{bottom:222.685500px;}
.y286{bottom:224.152500px;}
.y1c3{bottom:227.167500px;}
.y59{bottom:227.785500px;}
.yc3{bottom:228.471000px;}
.y23b{bottom:229.012500px;}
.y190{bottom:229.455000px;}
.y1f7{bottom:235.926000px;}
.y90{bottom:236.922000px;}
.yf{bottom:237.006000px;}
.y25f{bottom:238.116000px;}
.y204{bottom:238.390500px;}
.y118{bottom:240.238500px;}
.y155{bottom:240.618000px;}
.y1c2{bottom:245.101500px;}
.y58{bottom:245.719500px;}
.yc2{bottom:246.403500px;}
.y23a{bottom:246.946500px;}
.y18f{bottom:247.387500px;}
.y285{bottom:248.520000px;}
.y1f6{bottom:253.858500px;}
.y8f{bottom:254.854500px;}
.ye{bottom:254.938500px;}
.y25e{bottom:256.048500px;}
.y203{bottom:256.323000px;}
.y117{bottom:258.171000px;}
.y154{bottom:258.550500px;}
.y2bd{bottom:258.918000px;}
.y1c1{bottom:263.034000px;}
.y57{bottom:263.652000px;}
.ye7{bottom:264.336000px;}
.yc1{bottom:264.337500px;}
.y239{bottom:264.879000px;}
.y18e{bottom:265.321500px;}
.y1f5{bottom:271.792500px;}
.y8e{bottom:272.787000px;}
.yd{bottom:272.871000px;}
.y2bc{bottom:273.115500px;}
.y25d{bottom:273.982500px;}
.y202{bottom:274.255500px;}
.y284{bottom:276.103500px;}
.y153{bottom:276.483000px;}
.y1c0{bottom:280.966500px;}
.y56{bottom:281.584500px;}
.ye6{bottom:282.268500px;}
.yc0{bottom:282.270000px;}
.y116{bottom:282.537000px;}
.y238{bottom:282.811500px;}
.y18d{bottom:283.254000px;}
.y2bb{bottom:287.311500px;}
.y1f4{bottom:289.725000px;}
.y8d{bottom:290.721000px;}
.yc{bottom:290.803500px;}
.y25c{bottom:291.915000px;}
.y201{bottom:292.189500px;}
.y283{bottom:294.036000px;}
.y152{bottom:294.417000px;}
.y1bf{bottom:298.899000px;}
.y55{bottom:299.517000px;}
.ybf{bottom:300.202500px;}
.y237{bottom:300.744000px;}
.y18c{bottom:301.186500px;}
.y2ba{bottom:301.509000px;}
.ye5{bottom:303.418500px;}
.y1f3{bottom:307.657500px;}
.y8c{bottom:308.653500px;}
.y25b{bottom:309.847500px;}
.y115{bottom:310.122000px;}
.y282{bottom:311.968500px;}
.y151{bottom:312.349500px;}
.y2b9{bottom:315.705000px;}
.y1be{bottom:316.831500px;}
.y54{bottom:317.449500px;}
.ybe{bottom:318.135000px;}
.y236{bottom:318.676500px;}
.y18b{bottom:319.119000px;}
.ye4{bottom:324.568500px;}
.y1f2{bottom:325.590000px;}
.y8b{bottom:326.586000px;}
.y25a{bottom:327.780000px;}
.y114{bottom:328.054500px;}
.y281{bottom:329.902500px;}
.y150{bottom:330.282000px;}
.y1bd{bottom:334.764000px;}
.y53{bottom:335.383500px;}
.ybd{bottom:336.067500px;}
.y235{bottom:336.610500px;}
.y18a{bottom:337.051500px;}
.ye3{bottom:342.501000px;}
.y1f1{bottom:343.522500px;}
.y2b8{bottom:344.098500px;}
.y8a{bottom:344.518500px;}
.yb{bottom:344.602500px;}
.y259{bottom:345.712500px;}
.y113{bottom:345.987000px;}
.y280{bottom:347.835000px;}
.y14f{bottom:348.214500px;}
.y1bc{bottom:352.698000px;}
.y52{bottom:353.316000px;}
.ybc{bottom:354.000000px;}
.y234{bottom:354.543000px;}
.y189{bottom:354.985500px;}
.y2b7{bottom:358.296000px;}
.ye2{bottom:360.435000px;}
.y1f0{bottom:361.455000px;}
.y89{bottom:362.451000px;}
.ya{bottom:362.535000px;}
.y258{bottom:363.646500px;}
.y112{bottom:363.919500px;}
.y27f{bottom:365.767500px;}
.y14e{bottom:366.147000px;}
.y1bb{bottom:370.630500px;}
.y51{bottom:371.248500px;}
.ybb{bottom:371.934000px;}
.y233{bottom:372.475500px;}
.y2b6{bottom:372.492000px;}
.y188{bottom:372.918000px;}
.ye1{bottom:378.367500px;}
.y1ef{bottom:379.389000px;}
.y88{bottom:380.383500px;}
.y257{bottom:381.579000px;}
.y200{bottom:381.852000px;}
.y111{bottom:381.853500px;}
.y27e{bottom:383.700000px;}
.y14d{bottom:384.079500px;}
.y2b5{bottom:386.689500px;}
.y1ba{bottom:388.563000px;}
.y50{bottom:389.181000px;}
.yba{bottom:389.866500px;}
.y232{bottom:390.408000px;}
.y187{bottom:390.850500px;}
.ye0{bottom:396.300000px;}
.y1ee{bottom:397.321500px;}
.y87{bottom:398.317500px;}
.y9{bottom:398.400000px;}
.y256{bottom:399.511500px;}
.y110{bottom:399.786000px;}
.y2b4{bottom:400.885500px;}
.y27d{bottom:401.632500px;}
.y14c{bottom:402.013500px;}
.y1b9{bottom:406.495500px;}
.yb9{bottom:407.799000px;}
.y231{bottom:408.340500px;}
.y186{bottom:408.783000px;}
.ydf{bottom:414.232500px;}
.y2b3{bottom:415.083000px;}
.y1ed{bottom:415.254000px;}
.y86{bottom:416.250000px;}
.y8{bottom:416.332500px;}
.y255{bottom:417.444000px;}
.y10f{bottom:417.718500px;}
.y4e{bottom:418.897500px;}
.y27c{bottom:419.565000px;}
.y14b{bottom:419.946000px;}
.y1b8{bottom:424.428000px;}
.yb8{bottom:425.731500px;}
.y230{bottom:426.273000px;}
.y185{bottom:426.715500px;}
.y4d{bottom:429.148500px;}
.y2b2{bottom:429.279000px;}
.yde{bottom:432.165000px;}
.y1ec{bottom:433.186500px;}
.y85{bottom:434.182500px;}
.y7{bottom:434.265000px;}
.y254{bottom:435.376500px;}
.y10e{bottom:435.651000px;}
.y27b{bottom:437.499000px;}
.y14a{bottom:437.878500px;}
.y4f{bottom:439.266000px;}
.y1b7{bottom:442.360500px;}
.y2b1{bottom:443.476500px;}
.yb7{bottom:443.664000px;}
.y22f{bottom:444.207000px;}
.y184{bottom:444.648000px;}
.ydd{bottom:450.097500px;}
.y1eb{bottom:451.119000px;}
.y84{bottom:452.115000px;}
.y6{bottom:452.199000px;}
.y10d{bottom:453.583500px;}
.y27a{bottom:455.431500px;}
.y149{bottom:455.811000px;}
.y2b0{bottom:457.672500px;}
.y1b6{bottom:460.294500px;}
.yb6{bottom:461.596500px;}
.y22e{bottom:462.139500px;}
.y183{bottom:462.582000px;}
.y253{bottom:467.865000px;}
.ydc{bottom:468.031500px;}
.y1ea{bottom:469.051500px;}
.y4c{bottom:469.296000px;}
.y83{bottom:470.047500px;}
.y10c{bottom:471.516000px;}
.y2af{bottom:471.870000px;}
.y279{bottom:473.364000px;}
.y148{bottom:473.743500px;}
.y1b5{bottom:478.227000px;}
.yb5{bottom:479.530500px;}
.y22d{bottom:480.072000px;}
.y182{bottom:480.514500px;}
.y252{bottom:482.061000px;}
.ydb{bottom:485.964000px;}
.y2ae{bottom:486.066000px;}
.y1e9{bottom:486.985500px;}
.y4b{bottom:487.228500px;}
.y82{bottom:487.980000px;}
.y1ff{bottom:489.448500px;}
.y10b{bottom:489.450000px;}
.y278{bottom:491.296500px;}
.y147{bottom:491.676000px;}
.y1b4{bottom:496.159500px;}
.y251{bottom:496.258500px;}
.y5{bottom:497.031000px;}
.yb4{bottom:497.463000px;}
.y22c{bottom:498.004500px;}
.y181{bottom:498.447000px;}
.y2ad{bottom:500.263500px;}
.yda{bottom:503.896500px;}
.y1e8{bottom:504.918000px;}
.y81{bottom:505.914000px;}
.y10a{bottom:507.382500px;}
.y277{bottom:509.229000px;}
.y146{bottom:509.610000px;}
.y1b3{bottom:514.092000px;}
.y2ac{bottom:514.459500px;}
.yb3{bottom:515.395500px;}
.y22b{bottom:515.937000px;}
.y180{bottom:516.379500px;}
.y48{bottom:517.855500px;}
.yd9{bottom:521.829000px;}
.y1e7{bottom:522.850500px;}
.y80{bottom:523.846500px;}
.y240{bottom:524.392500px;}
.y109{bottom:525.315000px;}
.y276{bottom:527.161500px;}
.y145{bottom:527.542500px;}
.y47{bottom:528.106500px;}
.y49{bottom:528.108000px;}
.y2ab{bottom:528.657000px;}
.y1b2{bottom:532.024500px;}
.yb2{bottom:533.328000px;}
.y22a{bottom:533.869500px;}
.y17f{bottom:534.312000px;}
.y4a{bottom:538.224000px;}
.yd8{bottom:539.761500px;}
.y23f{bottom:540.399000px;}
.y1e6{bottom:540.783000px;}
.y7f{bottom:541.779000px;}
.y2aa{bottom:542.853000px;}
.y108{bottom:543.247500px;}
.y275{bottom:545.095500px;}
.y144{bottom:545.475000px;}
.y1b1{bottom:549.958500px;}
.yb1{bottom:551.260500px;}
.y229{bottom:551.803500px;}
.y17e{bottom:552.244500px;}
.y241{bottom:557.044500px;}
.y2a9{bottom:557.050500px;}
.yd7{bottom:557.695500px;}
.y1e5{bottom:558.715500px;}
.y7e{bottom:559.711500px;}
.y107{bottom:561.180000px;}
.y274{bottom:563.028000px;}
.y143{bottom:563.407500px;}
.y1b0{bottom:567.891000px;}
.yb0{bottom:569.193000px;}
.y228{bottom:569.736000px;}
.y17d{bottom:570.178500px;}
.y2a8{bottom:571.246500px;}
.y46{bottom:572.679000px;}
.yd6{bottom:575.628000px;}
.y1e4{bottom:576.648000px;}
.y7d{bottom:577.644000px;}
.y106{bottom:579.112500px;}
.y273{bottom:580.960500px;}
.y142{bottom:581.340000px;}
.y2a7{bottom:585.444000px;}
.y1af{bottom:585.823500px;}
.y242{bottom:585.861000px;}
.yaf{bottom:587.127000px;}
.y227{bottom:587.668500px;}
.y17c{bottom:588.111000px;}
.y45{bottom:590.611500px;}
.yd5{bottom:593.560500px;}
.y1e3{bottom:594.582000px;}
.y7c{bottom:595.578000px;}
.y1fe{bottom:597.045000px;}
.y105{bottom:597.046500px;}
.y272{bottom:598.893000px;}
.y141{bottom:599.274000px;}
.y2a6{bottom:599.640000px;}
.y250{bottom:602.037000px;}
.y1ae{bottom:603.756000px;}
.yae{bottom:605.059500px;}
.y226{bottom:605.601000px;}
.y17b{bottom:606.043500px;}
.y44{bottom:608.544000px;}
.yd4{bottom:611.493000px;}
.y1e2{bottom:612.514500px;}
.y7b{bottom:613.510500px;}
.y2a5{bottom:613.837500px;}
.y243{bottom:614.676000px;}
.y104{bottom:614.979000px;}
.y248{bottom:616.215000px;}
.y271{bottom:616.825500px;}
.y140{bottom:617.206500px;}
.y24d{bottom:617.784000px;}
.y1ad{bottom:621.688500px;}
.yad{bottom:622.992000px;}
.y225{bottom:623.533500px;}
.y17a{bottom:623.976000px;}
.y43{bottom:626.478000px;}
.y2a4{bottom:628.033500px;}
.yd3{bottom:629.425500px;}
.y1e1{bottom:630.447000px;}
.y7a{bottom:631.443000px;}
.y103{bottom:632.911500px;}
.y270{bottom:634.759500px;}
.y13f{bottom:635.139000px;}
.y25{bottom:637.272000px;}
.y1ac{bottom:639.621000px;}
.yac{bottom:640.924500px;}
.y224{bottom:641.466000px;}
.y2a3{bottom:642.231000px;}
.y244{bottom:643.491000px;}
.y42{bottom:644.410500px;}
.y179{bottom:645.126000px;}
.yd2{bottom:647.358000px;}
.y1e0{bottom:648.379500px;}
.y79{bottom:649.375500px;}
.y102{bottom:650.844000px;}
.y26f{bottom:652.692000px;}
.y13e{bottom:653.071500px;}
.y24c{bottom:653.568000px;}
.y24{bottom:655.204500px;}
.y2a2{bottom:656.427000px;}
.y1ab{bottom:657.555000px;}
.yab{bottom:658.857000px;}
.y223{bottom:659.400000px;}
.y41{bottom:662.343000px;}
.yd1{bottom:665.292000px;}
.y178{bottom:666.276000px;}
.y1df{bottom:666.312000px;}
.y78{bottom:667.308000px;}
.y101{bottom:668.776500px;}
.y26e{bottom:670.624500px;}
.y13d{bottom:671.004000px;}
.y245{bottom:672.307500px;}
.y1aa{bottom:675.487500px;}
.yaa{bottom:676.791000px;}
.y222{bottom:677.332500px;}
.y40{bottom:680.275500px;}
.yd0{bottom:683.224500px;}
.y23{bottom:683.620500px;}
.y177{bottom:684.208500px;}
.y1de{bottom:684.246000px;}
.y2a1{bottom:684.820500px;}
.y77{bottom:685.240500px;}
.y24b{bottom:686.260500px;}
.y100{bottom:686.709000px;}
.y26d{bottom:688.557000px;}
.y13c{bottom:688.936500px;}
.y24f{bottom:689.527500px;}
.y1a9{bottom:693.420000px;}
.ya9{bottom:694.723500px;}
.y221{bottom:695.265000px;}
.y3f{bottom:698.208000px;}
.y2a0{bottom:699.018000px;}
.y24a{bottom:699.244500px;}
.y246{bottom:701.122500px;}
.ycf{bottom:701.157000px;}
.y22{bottom:701.553000px;}
.y176{bottom:702.141000px;}
.y1dd{bottom:702.178500px;}
.y76{bottom:703.174500px;}
.yff{bottom:704.643000px;}
.y26c{bottom:706.489500px;}
.y13b{bottom:706.870500px;}
.y24e{bottom:708.237000px;}
.y1a8{bottom:711.352500px;}
.y249{bottom:712.228500px;}
.ya8{bottom:712.656000px;}
.y220{bottom:713.197500px;}
.y29f{bottom:713.214000px;}
.y3e{bottom:716.140500px;}
.yce{bottom:719.089500px;}
.y21{bottom:719.487000px;}
.y175{bottom:720.073500px;}
.y1dc{bottom:720.111000px;}
.y75{bottom:721.107000px;}
.yfe{bottom:722.575500px;}
.y26b{bottom:724.422000px;}
.y13a{bottom:724.803000px;}
.y29e{bottom:727.411500px;}
.y1a7{bottom:729.285000px;}
.y247{bottom:729.937500px;}
.ya7{bottom:730.588500px;}
.y21f{bottom:731.130000px;}
.y3d{bottom:734.074500px;}
.ycd{bottom:737.022000px;}
.y20{bottom:737.419500px;}
.y174{bottom:738.007500px;}
.y1db{bottom:738.043500px;}
.y74{bottom:739.039500px;}
.yfd{bottom:740.508000px;}
.y29d{bottom:741.607500px;}
.y26a{bottom:742.356000px;}
.y139{bottom:742.735500px;}
.y1a6{bottom:747.217500px;}
.ya6{bottom:748.521000px;}
.y3c{bottom:752.007000px;}
.ycc{bottom:754.954500px;}
.y1f{bottom:755.352000px;}
.y29c{bottom:755.805000px;}
.y173{bottom:755.940000px;}
.y1da{bottom:755.976000px;}
.y73{bottom:756.972000px;}
.yfc{bottom:758.440500px;}
.y269{bottom:760.288500px;}
.y138{bottom:763.885500px;}
.y1a5{bottom:765.151500px;}
.ya5{bottom:766.453500px;}
.y3b{bottom:769.939500px;}
.y29b{bottom:770.001000px;}
.ycb{bottom:772.888500px;}
.y1e{bottom:773.284500px;}
.y172{bottom:773.872500px;}
.y1d9{bottom:773.908500px;}
.y72{bottom:774.904500px;}
.yfb{bottom:776.373000px;}
.y268{bottom:778.221000px;}
.y21e{bottom:779.128500px;}
.y1a4{bottom:783.084000px;}
.y29a{bottom:784.198500px;}
.ya4{bottom:784.387500px;}
.y137{bottom:785.035500px;}
.y3a{bottom:787.872000px;}
.yca{bottom:790.821000px;}
.y1d{bottom:791.217000px;}
.y171{bottom:791.805000px;}
.y1d8{bottom:791.842500px;}
.y71{bottom:792.837000px;}
.y21d{bottom:793.324500px;}
.y1fd{bottom:794.305500px;}
.yfa{bottom:794.307000px;}
.y267{bottom:796.153500px;}
.y299{bottom:798.394500px;}
.y1a3{bottom:801.016500px;}
.ya3{bottom:802.320000px;}
.y136{bottom:802.968000px;}
.y39{bottom:805.804500px;}
.y21c{bottom:807.522000px;}
.yc9{bottom:808.753500px;}
.y1c{bottom:809.151000px;}
.y1d7{bottom:809.775000px;}
.y70{bottom:810.771000px;}
.yf9{bottom:812.239500px;}
.y298{bottom:812.592000px;}
.y266{bottom:814.086000px;}
.ya2{bottom:820.252500px;}
.y38{bottom:823.737000px;}
.y170{bottom:824.293500px;}
.yc8{bottom:826.686000px;}
.y297{bottom:826.788000px;}
.y1b{bottom:827.083500px;}
.y1d6{bottom:827.707500px;}
.y6f{bottom:828.703500px;}
.yf8{bottom:830.172000px;}
.y265{bottom:832.018500px;}
.y20a{bottom:833.391000px;}
.y1a2{bottom:833.505000px;}
.y4{bottom:833.941500px;}
.y135{bottom:835.456500px;}
.y16f{bottom:838.489500px;}
.y296{bottom:840.985500px;}
.y37{bottom:841.671000px;}
.y209{bottom:844.297500px;}
.yc7{bottom:844.618500px;}
.ya1{bottom:844.620000px;}
.y1a{bottom:845.016000px;}
.y6e{bottom:846.636000px;}
.y1a1{bottom:847.701000px;}
.yf7{bottom:848.104500px;}
.y134{bottom:849.652500px;}
.y264{bottom:849.952500px;}
.y215{bottom:854.182500px;}
.y295{bottom:855.181500px;}
.y36{bottom:859.603500px;}
.y20c{bottom:859.651500px;}
.y1d5{bottom:860.058000px;}
.y16d{bottom:862.558500px;}
.y19{bottom:862.948500px;}
.y133{bottom:863.850000px;}
.yf6{bottom:866.037000px;}
.y294{bottom:869.379000px;}
.y3{bottom:869.806500px;}
.y199{bottom:873.973500px;}
.y1d4{bottom:874.255500px;}
.y263{bottom:874.318500px;}
.y15f{bottom:874.444500px;}
.y16e{bottom:876.102000px;}
.y35{bottom:877.536000px;}
.y6d{bottom:879.124500px;}
.y18{bottom:880.881000px;}
.y293{bottom:883.575000px;}
.y163{bottom:883.701000px;}
.yf5{bottom:883.969500px;}
.y11e{bottom:884.992500px;}
.y20d{bottom:889.369500px;}
.y194{bottom:890.499000px;}
.ya0{bottom:892.051500px;}
.y34{bottom:895.468500px;}
.y11d{bottom:897.342000px;}
.y1d2{bottom:897.543000px;}
.y292{bottom:897.772500px;}
.y1c8{bottom:897.982500px;}
.y1fc{bottom:901.902000px;}
.yf4{bottom:901.903500px;}
.y11f{bottom:905.745000px;}
.y9f{bottom:906.247500px;}
.y17{bottom:907.780500px;}
.y162{bottom:907.831500px;}
.y164{bottom:908.770500px;}
.y1d1{bottom:909.433500px;}
.y1c7{bottom:909.873000px;}
.y291{bottom:911.968500px;}
.y63{bottom:912.108000px;}
.y33{bottom:913.401000px;}
.y127{bottom:915.357000px;}
.y20e{bottom:918.757500px;}
.yf3{bottom:919.836000px;}
.y195{bottom:926.029500px;}
.y290{bottom:926.166000px;}
.y219{bottom:927.057000px;}
.y1c9{bottom:930.870000px;}
.y32{bottom:931.333500px;}
.y2{bottom:932.571000px;}
.y218{bottom:933.027000px;}
.y165{bottom:933.834000px;}
.y128{bottom:934.581000px;}
.y61{bottom:935.640000px;}
.y161{bottom:935.836500px;}
.y62{bottom:936.772500px;}
.yf2{bottom:937.768500px;}
.y132{bottom:938.242500px;}
.y120{bottom:938.427000px;}
.y21b{bottom:938.932500px;}
.y28f{bottom:940.362000px;}
.y99{bottom:944.274000px;}
.y125{bottom:944.622000px;}
.y214{bottom:947.242500px;}
.y131{bottom:948.264000px;}
.y20f{bottom:948.477000px;}
.y31{bottom:949.267500px;}
.y19c{bottom:949.993500px;}
.y5f{bottom:952.759500px;}
.y97{bottom:952.881000px;}
.y129{bottom:953.805000px;}
.y28e{bottom:954.559500px;}
.yf1{bottom:955.701000px;}
.y1ca{bottom:956.688000px;}
.y130{bottom:958.290000px;}
.y166{bottom:958.902000px;}
.y1{bottom:962.460000px;}
.y216{bottom:963.607500px;}
.y16c{bottom:964.677000px;}
.y196{bottom:967.095000px;}
.y30{bottom:967.200000px;}
.y19a{bottom:968.088000px;}
.y28d{bottom:968.755500px;}
.y121{bottom:971.104500px;}
.y12a{bottom:973.027500px;}
.yf0{bottom:973.633500px;}
.y1cf{bottom:974.668500px;}
.y210{bottom:977.854500px;}
.y66{bottom:981.693000px;}
.y6b{bottom:981.819000px;}
.y1cb{bottom:982.501500px;}
.y12f{bottom:982.884000px;}
.y28c{bottom:982.953000px;}
.y167{bottom:983.971500px;}
.y2f{bottom:985.132500px;}
.yef{bottom:991.566000px;}
.y12b{bottom:992.251500px;}
.y16{bottom:996.910500px;}
.y68{bottom:996.987000px;}
.y28b{bottom:997.149000px;}
.y21a{bottom:1000.156500px;}
.y2e{bottom:1003.065000px;}
.y122{bottom:1003.782000px;}
.y5e{bottom:1004.427000px;}
.y5d{bottom:1006.585500px;}
.y211{bottom:1007.583000px;}
.y197{bottom:1008.165000px;}
.y1cc{bottom:1008.319500px;}
.y168{bottom:1009.035000px;}
.y1fb{bottom:1009.498500px;}
.yee{bottom:1009.500000px;}
.y12c{bottom:1011.475500px;}
.y15e{bottom:1016.983500px;}
.y98{bottom:1017.649500px;}
.y28a{bottom:1017.780000px;}
.y2d{bottom:1020.997500px;}
.y15{bottom:1021.711500px;}
.y19b{bottom:1022.092500px;}
.y19e{bottom:1025.095500px;}
.y9a{bottom:1025.533500px;}
.y96{bottom:1026.022500px;}
.yed{bottom:1027.432500px;}
.y9d{bottom:1028.076000px;}
.y15d{bottom:1029.552000px;}
.y12d{bottom:1030.699500px;}
.y169{bottom:1034.103000px;}
.y1cd{bottom:1034.137500px;}
.y67{bottom:1035.021000px;}
.y6c{bottom:1036.138500px;}
.y123{bottom:1036.464000px;}
.y6a{bottom:1036.782000px;}
.y212{bottom:1036.960500px;}
.y64{bottom:1038.675000px;}
.y2c{bottom:1038.931500px;}
.y15c{bottom:1042.122000px;}
.y1a0{bottom:1042.185000px;}
.yec{bottom:1045.365000px;}
.y92{bottom:1046.239500px;}
.y95{bottom:1047.303000px;}
.y198{bottom:1049.235000px;}
.y19d{bottom:1049.299500px;}
.y12e{bottom:1049.917500px;}
.y9c{bottom:1052.038500px;}
.y60{bottom:1055.688000px;}
.y15b{bottom:1055.860500px;}
.y2b{bottom:1056.864000px;}
.y16a{bottom:1059.166500px;}
.y1ce{bottom:1059.955500px;}
.y160{bottom:1062.604500px;}
.y19f{bottom:1063.158000px;}
.yeb{bottom:1063.297500px;}
.y1d0{bottom:1063.537500px;}
.y14{bottom:1066.543500px;}
.y213{bottom:1066.680000px;}
.y124{bottom:1069.141500px;}
.y15a{bottom:1069.597500px;}
.y94{bottom:1070.350500px;}
.y93{bottom:1072.468500px;}
.y217{bottom:1073.032500px;}
.y9b{bottom:1077.213000px;}
.y9e{bottom:1080.214500px;}
.y2a{bottom:1081.230000px;}
.y126{bottom:1083.874500px;}
.y16b{bottom:1084.236000px;}
.y20b{bottom:1084.693500px;}
.y65{bottom:1085.443500px;}
.y69{bottom:1085.836500px;}
.y1d3{bottom:1091.808000px;}
.he{height:20.586854px;}
.h9{height:24.603802px;}
.hf{height:32.804932px;}
.h11{height:32.900573px;}
.h18{height:33.091855px;}
.h10{height:33.140573px;}
.h1b{height:33.626573px;}
.h1a{height:35.456573px;}
.h19{height:35.498573px;}
.h1e{height:38.730854px;}
.h1f{height:38.736854px;}
.hd{height:41.006062px;}
.hb{height:41.125613px;}
.ha{height:41.364715px;}
.h7{height:41.425613px;}
.h1c{height:41.552573px;}
.h20{height:41.797613px;}
.h5{height:42.079167px;}
.h4{height:42.192741px;}
.h21{height:45.713767px;}
.h1d{height:45.719767px;}
.hc{height:47.855767px;}
.h8{height:50.489846px;}
.h6{height:59.221114px;}
.h2{height:67.326667px;}
.h15{height:81.476062px;}
.h16{height:81.834715px;}
.h17{height:82.368715px;}
.h3{height:84.385482px;}
.h14{height:124.152550px;}
.h12{height:124.158550px;}
.h13{height:165.162550px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:96.768000px;}
.x2{left:101.025000px;}
.x1{left:102.046500px;}
.x64{left:104.998500px;}
.x65{left:107.148000px;}
.x6{left:110.890500px;}
.x8{left:113.317500px;}
.x58{left:114.796500px;}
.x9{left:118.287000px;}
.x4a{left:119.581500px;}
.x47{left:120.751500px;}
.x57{left:121.810500px;}
.x49{left:123.088500px;}
.x56{left:128.244000px;}
.x48{left:129.519000px;}
.x54{left:137.496000px;}
.x5a{left:143.022000px;}
.x4b{left:152.224500px;}
.x46{left:153.768000px;}
.x44{left:161.286000px;}
.x3{left:163.629000px;}
.x60{left:165.159000px;}
.x5f{left:166.287000px;}
.x4d{left:168.255000px;}
.xb{left:173.301000px;}
.xa{left:174.955500px;}
.x5d{left:177.714000px;}
.x55{left:180.180000px;}
.x4{left:195.862500px;}
.x11{left:201.648000px;}
.x2b{left:206.890500px;}
.xc{left:218.359500px;}
.x29{left:223.222500px;}
.x45{left:226.062000px;}
.x12{left:228.211500px;}
.x2d{left:229.437000px;}
.x13{left:249.928500px;}
.x5e{left:251.805000px;}
.x4c{left:253.368000px;}
.xd{left:261.699000px;}
.x59{left:266.122500px;}
.x14{left:278.779500px;}
.xe{left:286.296000px;}
.x5{left:288.619500px;}
.x15{left:301.960500px;}
.xf{left:309.477000px;}
.x31{left:323.731500px;}
.x43{left:333.465000px;}
.x2c{left:337.212000px;}
.x2a{left:345.916500px;}
.x10{left:348.255000px;}
.x42{left:362.880000px;}
.x61{left:365.196000px;}
.x34{left:431.134500px;}
.x2e{left:436.486500px;}
.x28{left:442.720500px;}
.x33{left:460.108500px;}
.x26{left:464.389500px;}
.x6e{left:470.367000px;}
.x24{left:473.271000px;}
.x27{left:479.334000px;}
.x51{left:480.784500px;}
.x69{left:488.422500px;}
.x4f{left:489.996000px;}
.x17{left:492.393000px;}
.x39{left:493.417500px;}
.x68{left:494.716500px;}
.x38{left:498.279000px;}
.x37{left:502.530000px;}
.x3a{left:506.986500px;}
.x66{left:510.718500px;}
.x32{left:514.894500px;}
.x25{left:517.225500px;}
.x35{left:519.741000px;}
.x70{left:526.069500px;}
.x1b{left:534.120000px;}
.x71{left:535.201500px;}
.x5b{left:547.837500px;}
.x36{left:550.719000px;}
.x41{left:554.971500px;}
.x4e{left:561.655500px;}
.x21{left:564.723000px;}
.x23{left:566.457000px;}
.x19{left:572.845500px;}
.x52{left:577.047000px;}
.x6c{left:578.055000px;}
.x1d{left:587.118000px;}
.x1e{left:598.425000px;}
.x6f{left:604.866000px;}
.x18{left:607.200000px;}
.x50{left:613.711500px;}
.x5c{left:621.916500px;}
.x67{left:630.187500px;}
.x40{left:632.719500px;}
.x3f{left:634.344000px;}
.x3d{left:639.199500px;}
.x3e{left:643.450500px;}
.x1a{left:645.838500px;}
.x22{left:658.387500px;}
.x6b{left:663.997500px;}
.x3b{left:667.950000px;}
.x1c{left:677.013000px;}
.x72{left:679.839000px;}
.x6d{left:684.159000px;}
.x16{left:686.407500px;}
.x6a{left:696.456000px;}
.x3c{left:701.056500px;}
.x53{left:704.169000px;}
.x20{left:709.663500px;}
.x1f{left:715.186500px;}
.x62{left:751.173000px;}
.x2f{left:761.197500px;}
.x30{left:764.208000px;}
.x63{left:776.880000px;}
@media print{
.v10{vertical-align:-36.074667pt;}
.vf{vertical-align:-29.696000pt;}
.v2{vertical-align:-19.290667pt;}
.v3{vertical-align:-15.429333pt;}
.v13{vertical-align:-12.490667pt;}
.v11{vertical-align:-10.970667pt;}
.v5{vertical-align:-7.973333pt;}
.vc{vertical-align:-6.378667pt;}
.ve{vertical-align:-4.064000pt;}
.vb{vertical-align:-1.877333pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:2.309333pt;}
.v12{vertical-align:7.690667pt;}
.v14{vertical-align:12.490667pt;}
.v15{vertical-align:16.128000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:21.189333pt;}
.v8{vertical-align:28.005333pt;}
.v7{vertical-align:35.973333pt;}
.v6{vertical-align:74.976000pt;}
.va{vertical-align:100.042667pt;}
.v9{vertical-align:111.424000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.000015pt;}
.ls3c{letter-spacing:0.000257pt;}
.ls9e{letter-spacing:0.000868pt;}
.ls58{letter-spacing:0.000921pt;}
.ls24{letter-spacing:0.001121pt;}
.ls57{letter-spacing:0.001204pt;}
.ls28{letter-spacing:0.001434pt;}
.ls13{letter-spacing:0.001530pt;}
.ls47{letter-spacing:0.001867pt;}
.ls6{letter-spacing:0.002347pt;}
.ls52{letter-spacing:0.002422pt;}
.ls55{letter-spacing:0.002451pt;}
.ls4f{letter-spacing:0.002631pt;}
.ls94{letter-spacing:0.002933pt;}
.ls51{letter-spacing:0.002958pt;}
.ls5d{letter-spacing:0.003135pt;}
.ls92{letter-spacing:0.003200pt;}
.ls26{letter-spacing:0.003330pt;}
.ls93{letter-spacing:0.003375pt;}
.lsf{letter-spacing:0.003537pt;}
.ls7{letter-spacing:0.003733pt;}
.ls76{letter-spacing:0.003881pt;}
.ls9d{letter-spacing:0.004959pt;}
.ls34{letter-spacing:0.005102pt;}
.ls89{letter-spacing:0.124137pt;}
.ls72{letter-spacing:0.157897pt;}
.ls8a{letter-spacing:0.764332pt;}
.ls3d{letter-spacing:0.956785pt;}
.ls16{letter-spacing:1.543167pt;}
.ls5b{letter-spacing:1.659733pt;}
.ls38{letter-spacing:2.651733pt;}
.ls5{letter-spacing:2.653602pt;}
.ls1{letter-spacing:2.654042pt;}
.ls39{letter-spacing:2.656533pt;}
.lsd{letter-spacing:2.656794pt;}
.ls36{letter-spacing:2.656922pt;}
.ls3{letter-spacing:2.657067pt;}
.ls9c{letter-spacing:2.657814pt;}
.ls37{letter-spacing:2.658423pt;}
.ls2{letter-spacing:2.659375pt;}
.ls66{letter-spacing:3.185204pt;}
.ls59{letter-spacing:3.190537pt;}
.ls62{letter-spacing:3.984257pt;}
.ls41{letter-spacing:3.986422pt;}
.ls42{letter-spacing:6.270903pt;}
.ls11{letter-spacing:6.374863pt;}
.lsc{letter-spacing:6.380196pt;}
.ls12{letter-spacing:8.445897pt;}
.ls1a{letter-spacing:8.451230pt;}
.ls68{letter-spacing:8.857527pt;}
.ls91{letter-spacing:9.445421pt;}
.ls67{letter-spacing:9.815452pt;}
.ls90{letter-spacing:10.214998pt;}
.ls5a{letter-spacing:10.623733pt;}
.ls69{letter-spacing:10.629067pt;}
.ls86{letter-spacing:10.753470pt;}
.ls85{letter-spacing:10.758803pt;}
.ls87{letter-spacing:11.388332pt;}
.ls50{letter-spacing:11.393665pt;}
.ls20{letter-spacing:11.807733pt;}
.ls23{letter-spacing:11.808087pt;}
.ls22{letter-spacing:11.808921pt;}
.ls8f{letter-spacing:12.572332pt;}
.ls63{letter-spacing:12.985067pt;}
.ls5c{letter-spacing:13.281067pt;}
.ls88{letter-spacing:13.282935pt;}
.ls8e{letter-spacing:13.286400pt;}
.lsa{letter-spacing:13.286830pt;}
.ls4e{letter-spacing:13.569814pt;}
.ls71{letter-spacing:14.023148pt;}
.ls8c{letter-spacing:14.230400pt;}
.ls8b{letter-spacing:14.232269pt;}
.ls8d{letter-spacing:14.235733pt;}
.ls74{letter-spacing:14.561814pt;}
.lsb{letter-spacing:14.756194pt;}
.ls10{letter-spacing:14.761527pt;}
.ls7c{letter-spacing:14.920563pt;}
.ls21{letter-spacing:14.997421pt;}
.ls19{letter-spacing:15.230400pt;}
.ls7b{letter-spacing:15.714118pt;}
.ls46{letter-spacing:15.769527pt;}
.ls25{letter-spacing:15.937814pt;}
.ls64{letter-spacing:16.229867pt;}
.ls17{letter-spacing:16.300500pt;}
.ls75{letter-spacing:16.315200pt;}
.ls96{letter-spacing:16.524481pt;}
.ls82{letter-spacing:16.697527pt;}
.ls79{letter-spacing:16.807148pt;}
.ls15{letter-spacing:16.809067pt;}
.ls40{letter-spacing:17.024533pt;}
.ls81{letter-spacing:17.655452pt;}
.ls77{letter-spacing:18.267200pt;}
.ls73{letter-spacing:18.316481pt;}
.ls49{letter-spacing:18.382861pt;}
.ls48{letter-spacing:18.385497pt;}
.ls45{letter-spacing:18.424358pt;}
.ls9a{letter-spacing:18.487756pt;}
.ls4{letter-spacing:18.769814pt;}
.ls53{letter-spacing:18.777527pt;}
.ls7a{letter-spacing:18.833814pt;}
.ls65{letter-spacing:18.844179pt;}
.ls78{letter-spacing:18.897814pt;}
.ls6f{letter-spacing:19.028194pt;}
.ls4c{letter-spacing:19.486861pt;}
.ls70{letter-spacing:19.980785pt;}
.ls61{letter-spacing:20.281067pt;}
.ls9{letter-spacing:20.371733pt;}
.lse{letter-spacing:20.680563pt;}
.ls4d{letter-spacing:20.729527pt;}
.ls9b{letter-spacing:21.127148pt;}
.ls6e{letter-spacing:21.632533pt;}
.ls99{letter-spacing:21.760533pt;}
.ls80{letter-spacing:22.377527pt;}
.ls7e{letter-spacing:22.670861pt;}
.ls7d{letter-spacing:22.829897pt;}
.ls3b{letter-spacing:22.904358pt;}
.ls1f{letter-spacing:23.124194pt;}
.ls7f{letter-spacing:23.335452pt;}
.ls95{letter-spacing:23.987375pt;}
.ls3a{letter-spacing:24.538221pt;}
.ls1e{letter-spacing:24.668500pt;}
.ls6d{letter-spacing:24.720533pt;}
.ls6c{letter-spacing:24.725867pt;}
.ls6b{letter-spacing:24.859200pt;}
.ls4b{letter-spacing:25.044194pt;}
.ls4a{letter-spacing:25.046830pt;}
.ls1d{letter-spacing:25.177527pt;}
.ls3f{letter-spacing:25.371200pt;}
.ls8{letter-spacing:26.638903pt;}
.ls1c{letter-spacing:26.716500pt;}
.ls3e{letter-spacing:27.950861pt;}
.ls84{letter-spacing:28.100194pt;}
.ls83{letter-spacing:28.264563pt;}
.ls44{letter-spacing:28.758830pt;}
.ls43{letter-spacing:28.761527pt;}
.ls5e{letter-spacing:29.372163pt;}
.ls5f{letter-spacing:29.374861pt;}
.ls98{letter-spacing:29.401527pt;}
.ls60{letter-spacing:29.790861pt;}
.ls97{letter-spacing:30.359452pt;}
.ls18{letter-spacing:35.892194pt;}
.ls31{letter-spacing:68.155733pt;}
.ls30{letter-spacing:68.422400pt;}
.ls2f{letter-spacing:68.454400pt;}
.ls32{letter-spacing:69.329067pt;}
.ls33{letter-spacing:70.155733pt;}
.ls6a{letter-spacing:91.007733pt;}
.ls27{letter-spacing:126.923588pt;}
.ls2c{letter-spacing:157.643733pt;}
.ls2d{letter-spacing:157.910400pt;}
.ls2b{letter-spacing:158.401067pt;}
.ls2a{letter-spacing:159.953067pt;}
.ls2e{letter-spacing:169.094400pt;}
.ls35{letter-spacing:207.898400pt;}
.ls14{letter-spacing:210.161867pt;}
.ls1b{letter-spacing:310.951200pt;}
.ls56{letter-spacing:313.007733pt;}
.ls29{letter-spacing:509.190400pt;}
.wsba{word-spacing:-40.976941pt;}
.ws12a{word-spacing:-36.449833pt;}
.ws7{word-spacing:-35.854630pt;}
.ws2d{word-spacing:-32.783596pt;}
.ws12d{word-spacing:-29.914367pt;}
.ws2{word-spacing:-28.065397pt;}
.ws125{word-spacing:-26.226942pt;}
.ws132{word-spacing:-25.079185pt;}
.ws128{word-spacing:-22.948451pt;}
.ws35{word-spacing:-20.297137pt;}
.ws46{word-spacing:-18.033665pt;}
.ws3a{word-spacing:-14.771215pt;}
.ws3{word-spacing:-14.032699pt;}
.ws5{word-spacing:-13.283467pt;}
.ws49{word-spacing:-11.817002pt;}
.ws48{word-spacing:-10.626800pt;}
.ws6{word-spacing:-9.298400pt;}
.wsb9{word-spacing:-7.970133pt;}
.ws3d{word-spacing:-7.615903pt;}
.ws13d{word-spacing:-4.426689pt;}
.ws141{word-spacing:-4.426007pt;}
.wsa0{word-spacing:-4.410111pt;}
.wse4{word-spacing:-3.188032pt;}
.ws76{word-spacing:-3.081764pt;}
.ws145{word-spacing:-2.975497pt;}
.ws64{word-spacing:-2.869229pt;}
.ws102{word-spacing:-2.816095pt;}
.ws62{word-spacing:-2.762961pt;}
.ws73{word-spacing:-2.709827pt;}
.wsd{word-spacing:-2.656693pt;}
.ws156{word-spacing:-2.507925pt;}
.ws4d{word-spacing:-2.497292pt;}
.ws12e{word-spacing:-2.444158pt;}
.ws96{word-spacing:-2.391024pt;}
.ws106{word-spacing:-2.337890pt;}
.wsf4{word-spacing:-2.284756pt;}
.wsc8{word-spacing:-2.231622pt;}
.wsa1{word-spacing:-2.178489pt;}
.ws12b{word-spacing:-2.125355pt;}
.ws2b{word-spacing:-2.019087pt;}
.ws111{word-spacing:-1.912819pt;}
.ws12f{word-spacing:-1.859685pt;}
.ws78{word-spacing:-1.806551pt;}
.ws15d{word-spacing:-1.785302pt;}
.ws11f{word-spacing:-1.753418pt;}
.ws151{word-spacing:-1.742795pt;}
.ws8c{word-spacing:-1.700284pt;}
.ws11b{word-spacing:-1.672252pt;}
.ws166{word-spacing:-1.657781pt;}
.ws116{word-spacing:-1.647150pt;}
.ws162{word-spacing:-1.615274pt;}
.ws9a{word-spacing:-1.540882pt;}
.ws14b{word-spacing:-1.487748pt;}
.ws23{word-spacing:-1.434614pt;}
.ws19{word-spacing:-1.381481pt;}
.ws83{word-spacing:-1.328347pt;}
.wsd0{word-spacing:-1.275213pt;}
.wsca{word-spacing:-1.222079pt;}
.ws146{word-spacing:-1.168945pt;}
.ws22{word-spacing:-1.115811pt;}
.ws13{word-spacing:-1.062677pt;}
.ws11c{word-spacing:-1.009543pt;}
.ws10e{word-spacing:-0.956410pt;}
.ws1d{word-spacing:-0.903276pt;}
.ws4e{word-spacing:-0.850142pt;}
.ws67{word-spacing:-0.797008pt;}
.ws93{word-spacing:-0.690740pt;}
.ws41{word-spacing:-0.637606pt;}
.ws167{word-spacing:-0.595101pt;}
.wsd8{word-spacing:-0.587866pt;}
.wsda{word-spacing:-0.584473pt;}
.ws26{word-spacing:-0.478205pt;}
.ws61{word-spacing:-0.425071pt;}
.wsfb{word-spacing:-0.371937pt;}
.ws15a{word-spacing:-0.340058pt;}
.wsb{word-spacing:-0.318803pt;}
.ws15c{word-spacing:-0.255043pt;}
.ws47{word-spacing:-0.159402pt;}
.ws45{word-spacing:-0.106275pt;}
.ws11a{word-spacing:-0.106268pt;}
.ws14{word-spacing:-0.053134pt;}
.ws15{word-spacing:-0.042507pt;}
.ws101{word-spacing:-0.003655pt;}
.ws32{word-spacing:-0.003444pt;}
.wsfe{word-spacing:-0.001561pt;}
.ws0{word-spacing:0.000000pt;}
.wsff{word-spacing:0.002036pt;}
.ws163{word-spacing:0.042507pt;}
.ws25{word-spacing:0.053134pt;}
.ws164{word-spacing:0.085014pt;}
.ws1f{word-spacing:0.106268pt;}
.ws4{word-spacing:0.151432pt;}
.ws109{word-spacing:0.159402pt;}
.ws5b{word-spacing:0.212535pt;}
.ws84{word-spacing:0.265669pt;}
.wsce{word-spacing:0.297550pt;}
.wsc7{word-spacing:0.318803pt;}
.wse{word-spacing:0.371937pt;}
.ws159{word-spacing:0.382565pt;}
.ws9d{word-spacing:0.478205pt;}
.ws1{word-spacing:0.504773pt;}
.ws5e{word-spacing:0.531339pt;}
.ws124{word-spacing:0.552594pt;}
.wse8{word-spacing:0.567021pt;}
.ws118{word-spacing:0.576656pt;}
.ws9{word-spacing:0.584473pt;}
.ws44{word-spacing:0.637606pt;}
.wsb5{word-spacing:0.690740pt;}
.ws158{word-spacing:0.722622pt;}
.ws65{word-spacing:0.743874pt;}
.ws55{word-spacing:0.797008pt;}
.ws119{word-spacing:0.850142pt;}
.ws161{word-spacing:0.850144pt;}
.ws147{word-spacing:0.873028pt;}
.ws149{word-spacing:0.887230pt;}
.wsa{word-spacing:0.903276pt;}
.ws123{word-spacing:0.935158pt;}
.ws11e{word-spacing:0.956410pt;}
.ws15b{word-spacing:0.977666pt;}
.wsc{word-spacing:1.009543pt;}
.ws98{word-spacing:1.062677pt;}
.ws1c{word-spacing:1.115811pt;}
.ws160{word-spacing:1.147694pt;}
.ws82{word-spacing:1.168945pt;}
.ws155{word-spacing:1.190202pt;}
.ws53{word-spacing:1.222079pt;}
.ws153{word-spacing:1.232709pt;}
.ws6b{word-spacing:1.275216pt;}
.ws66{word-spacing:1.328347pt;}
.ws16a{word-spacing:1.360230pt;}
.ws97{word-spacing:1.381481pt;}
.wsc5{word-spacing:1.386156pt;}
.wsc9{word-spacing:1.487748pt;}
.ws91{word-spacing:1.540882pt;}
.ws6d{word-spacing:1.572766pt;}
.ws6c{word-spacing:1.615274pt;}
.wsbe{word-spacing:1.657781pt;}
.ws142{word-spacing:1.753418pt;}
.ws8d{word-spacing:1.859685pt;}
.ws9c{word-spacing:1.912819pt;}
.ws90{word-spacing:1.965953pt;}
.ws15e{word-spacing:1.997838pt;}
.wsa9{word-spacing:2.019087pt;}
.ws10c{word-spacing:2.072221pt;}
.ws104{word-spacing:2.125355pt;}
.ws2a{word-spacing:2.178489pt;}
.wse5{word-spacing:2.231622pt;}
.ws92{word-spacing:2.284756pt;}
.ws113{word-spacing:2.315383pt;}
.ws114{word-spacing:2.337890pt;}
.ws51{word-spacing:2.391024pt;}
.ws85{word-spacing:2.444158pt;}
.ws165{word-spacing:2.465418pt;}
.ws10f{word-spacing:2.497292pt;}
.ws16d{word-spacing:2.507925pt;}
.ws9b{word-spacing:2.550426pt;}
.wse1{word-spacing:2.550432pt;}
.ws108{word-spacing:2.603559pt;}
.ws77{word-spacing:2.656693pt;}
.ws16c{word-spacing:2.677954pt;}
.ws10{word-spacing:2.709827pt;}
.ws30{word-spacing:2.762961pt;}
.wsf0{word-spacing:2.790786pt;}
.ws138{word-spacing:2.805475pt;}
.wsf{word-spacing:2.816095pt;}
.wsdd{word-spacing:2.869229pt;}
.wsbd{word-spacing:2.890490pt;}
.wsbc{word-spacing:2.896775pt;}
.wsdc{word-spacing:2.922363pt;}
.wsbb{word-spacing:2.932997pt;}
.wsb4{word-spacing:2.975497pt;}
.ws39{word-spacing:3.028630pt;}
.ws8b{word-spacing:3.134898pt;}
.ws5c{word-spacing:3.188032pt;}
.wsb1{word-spacing:3.241166pt;}
.ws56{word-spacing:3.294300pt;}
.ws117{word-spacing:3.347434pt;}
.ws16b{word-spacing:3.358069pt;}
.wsa5{word-spacing:3.400567pt;}
.ws14e{word-spacing:3.453701pt;}
.ws38{word-spacing:3.506835pt;}
.ws36{word-spacing:3.523467pt;}
.wsb6{word-spacing:3.559969pt;}
.wsa2{word-spacing:3.613103pt;}
.ws16e{word-spacing:3.655619pt;}
.ws60{word-spacing:3.666237pt;}
.ws5a{word-spacing:3.719371pt;}
.ws8f{word-spacing:3.772505pt;}
.ws21{word-spacing:3.825638pt;}
.ws150{word-spacing:3.868155pt;}
.ws15f{word-spacing:3.910662pt;}
.ws17{word-spacing:3.931906pt;}
.ws11{word-spacing:3.985040pt;}
.ws103{word-spacing:4.038174pt;}
.ws16f{word-spacing:4.038184pt;}
.ws4c{word-spacing:4.091308pt;}
.ws11d{word-spacing:4.117111pt;}
.wscc{word-spacing:4.144442pt;}
.wsaf{word-spacing:4.197575pt;}
.ws12{word-spacing:4.250709pt;}
.ws157{word-spacing:4.293227pt;}
.ws8e{word-spacing:4.303843pt;}
.ws169{word-spacing:4.420749pt;}
.ws63{word-spacing:4.463245pt;}
.ws43{word-spacing:4.516379pt;}
.wsc4{word-spacing:4.569513pt;}
.ws50{word-spacing:4.622646pt;}
.wse7{word-spacing:4.623063pt;}
.ws2c{word-spacing:4.647821pt;}
.wsfa{word-spacing:4.675780pt;}
.wsf9{word-spacing:4.690385pt;}
.ws3f{word-spacing:4.728914pt;}
.ws29{word-spacing:4.835182pt;}
.ws95{word-spacing:4.888316pt;}
.ws154{word-spacing:4.888328pt;}
.ws75{word-spacing:4.941450pt;}
.ws6f{word-spacing:4.994583pt;}
.ws112{word-spacing:5.039547pt;}
.ws135{word-spacing:5.047717pt;}
.wse2{word-spacing:5.058357pt;}
.ws72{word-spacing:5.100851pt;}
.ws10b{word-spacing:5.153985pt;}
.ws107{word-spacing:5.207119pt;}
.ws152{word-spacing:5.228386pt;}
.ws1b{word-spacing:5.260253pt;}
.wsdf{word-spacing:5.312145pt;}
.wse0{word-spacing:5.312922pt;}
.ws137{word-spacing:5.318255pt;}
.wsd5{word-spacing:5.419654pt;}
.wsa8{word-spacing:5.472788pt;}
.ws24{word-spacing:5.525922pt;}
.wsa6{word-spacing:5.529255pt;}
.ws71{word-spacing:5.579056pt;}
.ws3e{word-spacing:5.601466pt;}
.ws3c{word-spacing:5.632190pt;}
.ws105{word-spacing:5.685324pt;}
.ws4b{word-spacing:5.738458pt;}
.ws3b{word-spacing:5.791591pt;}
.ws13c{word-spacing:5.795808pt;}
.wsf2{word-spacing:5.844725pt;}
.ws52{word-spacing:5.950993pt;}
.wsef{word-spacing:6.004127pt;}
.wsd9{word-spacing:6.051554pt;}
.ws9e{word-spacing:6.057261pt;}
.ws54{word-spacing:6.110395pt;}
.ws130{word-spacing:6.145045pt;}
.ws133{word-spacing:6.163529pt;}
.ws13b{word-spacing:6.206051pt;}
.ws13a{word-spacing:6.210331pt;}
.ws57{word-spacing:6.216662pt;}
.ws139{word-spacing:6.248558pt;}
.ws168{word-spacing:6.291066pt;}
.wsed{word-spacing:6.322930pt;}
.wsd6{word-spacing:6.376064pt;}
.wsf1{word-spacing:6.429198pt;}
.wsbf{word-spacing:6.482332pt;}
.ws33{word-spacing:6.642487pt;}
.wseb{word-spacing:6.748001pt;}
.wsea{word-spacing:6.767758pt;}
.wsdb{word-spacing:6.801135pt;}
.ws20{word-spacing:6.854269pt;}
.ws10d{word-spacing:6.907403pt;}
.ws7f{word-spacing:6.960537pt;}
.wscb{word-spacing:7.013670pt;}
.ws2f{word-spacing:7.066804pt;}
.ws100{word-spacing:7.098702pt;}
.ws81{word-spacing:7.119938pt;}
.wse9{word-spacing:7.215646pt;}
.ws5f{word-spacing:7.226206pt;}
.ws40{word-spacing:7.332474pt;}
.wsac{word-spacing:7.385607pt;}
.wsb0{word-spacing:7.449074pt;}
.wsa7{word-spacing:7.491875pt;}
.wsa4{word-spacing:7.545009pt;}
.ws27{word-spacing:7.598143pt;}
.wsf5{word-spacing:7.651277pt;}
.ws99{word-spacing:7.704411pt;}
.wsd4{word-spacing:7.757545pt;}
.wsc2{word-spacing:7.810678pt;}
.wsb2{word-spacing:7.863812pt;}
.ws7a{word-spacing:7.916946pt;}
.ws134{word-spacing:7.934523pt;}
.wsaa{word-spacing:7.970080pt;}
.wsf6{word-spacing:8.023214pt;}
.ws129{word-spacing:8.117513pt;}
.ws34{word-spacing:8.119821pt;}
.wsd1{word-spacing:8.129482pt;}
.wsab{word-spacing:8.182615pt;}
.wsc6{word-spacing:8.235749pt;}
.ws8a{word-spacing:8.288883pt;}
.ws12c{word-spacing:8.307251pt;}
.ws58{word-spacing:8.342017pt;}
.ws1e{word-spacing:8.501419pt;}
.ws74{word-spacing:8.554553pt;}
.wsc3{word-spacing:8.573067pt;}
.ws7e{word-spacing:8.607686pt;}
.ws59{word-spacing:8.660820pt;}
.wsc0{word-spacing:8.767088pt;}
.wsa3{word-spacing:8.873356pt;}
.wsd7{word-spacing:8.926490pt;}
.wsae{word-spacing:8.979623pt;}
.ws7c{word-spacing:9.032757pt;}
.ws14a{word-spacing:9.085891pt;}
.wse6{word-spacing:9.192159pt;}
.ws5d{word-spacing:9.245293pt;}
.ws94{word-spacing:9.298427pt;}
.ws42{word-spacing:9.351561pt;}
.ws31{word-spacing:9.405154pt;}
.wsee{word-spacing:9.434313pt;}
.ws9f{word-spacing:9.457828pt;}
.ws4f{word-spacing:9.510962pt;}
.wsb3{word-spacing:9.564096pt;}
.ws89{word-spacing:9.670364pt;}
.wsf3{word-spacing:9.776631pt;}
.ws120{word-spacing:9.863215pt;}
.ws79{word-spacing:10.095435pt;}
.ws37{word-spacing:10.162487pt;}
.ws144{word-spacing:10.254836pt;}
.ws126{word-spacing:10.307970pt;}
.ws6e{word-spacing:10.361104pt;}
.wse3{word-spacing:10.373478pt;}
.wsd3{word-spacing:10.414238pt;}
.ws88{word-spacing:10.467372pt;}
.ws110{word-spacing:10.573639pt;}
.ws8{word-spacing:10.584293pt;}
.ws28{word-spacing:10.786175pt;}
.ws14c{word-spacing:10.839309pt;}
.ws7b{word-spacing:10.892443pt;}
.ws14f{word-spacing:11.179394pt;}
.ws143{word-spacing:11.264380pt;}
.wscf{word-spacing:11.476915pt;}
.ws70{word-spacing:11.530049pt;}
.ws87{word-spacing:11.848852pt;}
.ws115{word-spacing:12.061388pt;}
.wsf7{word-spacing:12.220789pt;}
.wsc1{word-spacing:12.317918pt;}
.ws127{word-spacing:12.433325pt;}
.ws7d{word-spacing:12.752128pt;}
.wsec{word-spacing:12.959646pt;}
.ws86{word-spacing:13.230333pt;}
.wsad{word-spacing:13.602270pt;}
.ws13e{word-spacing:14.080475pt;}
.ws148{word-spacing:14.110223pt;}
.ws18{word-spacing:14.186742pt;}
.ws170{word-spacing:14.197405pt;}
.ws171{word-spacing:14.239912pt;}
.ws14d{word-spacing:15.036884pt;}
.ws2e{word-spacing:15.143152pt;}
.wsf8{word-spacing:17.906113pt;}
.ws10a{word-spacing:18.384318pt;}
.ws13f{word-spacing:18.756255pt;}
.ws1a{word-spacing:18.968790pt;}
.ws131{word-spacing:19.509513pt;}
.ws80{word-spacing:21.307825pt;}
.wsd2{word-spacing:23.331251pt;}
.ws140{word-spacing:25.395554pt;}
.ws16{word-spacing:26.513799pt;}
.ws172{word-spacing:26.609507pt;}
.ws173{word-spacing:28.267288pt;}
.wsb8{word-spacing:33.283138pt;}
.ws175{word-spacing:38.171466pt;}
.ws174{word-spacing:47.735586pt;}
.ws136{word-spacing:58.744950pt;}
.wsb7{word-spacing:59.170022pt;}
.wsfc{word-spacing:74.387600pt;}
.wsfd{word-spacing:75.067715pt;}
.wscd{word-spacing:75.747830pt;}
.ws121{word-spacing:103.632554pt;}
.ws122{word-spacing:103.675061pt;}
.wsde{word-spacing:155.788888pt;}
.ws69{word-spacing:187.913171pt;}
.ws6a{word-spacing:188.432803pt;}
.ws4a{word-spacing:221.054439pt;}
.ws68{word-spacing:235.406416pt;}
._f{margin-left:-16.811593pt;}
._b{margin-left:-7.571600pt;}
._1{margin-left:-5.653461pt;}
._0{margin-left:-4.038187pt;}
._4{margin-left:-3.129595pt;}
._3{margin-left:-2.019093pt;}
._a{margin-left:-1.009547pt;}
._2{width:1.211456pt;}
._9{width:2.221003pt;}
._e{width:3.641082pt;}
._25{width:4.863990pt;}
._2b{width:7.056195pt;}
._7{width:8.429715pt;}
._23{width:9.723501pt;}
._11{width:11.686746pt;}
._14{width:13.623796pt;}
._d{width:15.092723pt;}
._8{width:16.607043pt;}
._c{width:17.969931pt;}
._38{width:18.873513pt;}
._10{width:19.765805pt;}
._1c{width:20.722208pt;}
._18{width:21.784892pt;}
._16{width:23.378908pt;}
._1b{width:24.760382pt;}
._12{width:25.759093pt;}
._1a{width:27.257693pt;}
._13{width:28.214090pt;}
._1f{width:29.701838pt;}
._22{width:30.711391pt;}
._24{width:32.164559pt;}
._6{width:33.113131pt;}
._1d{width:34.643281pt;}
._2f{width:36.131033pt;}
._17{width:37.034305pt;}
._28{width:38.628321pt;}
._5{width:40.129480pt;}
._1e{width:41.391285pt;}
._31{width:42.866547pt;}
._27{width:44.632448pt;}
._30{width:45.695125pt;}
._26{width:46.823258pt;}
._19{width:48.776896pt;}
._37{width:50.264622pt;}
._2d{width:51.221051pt;}
._32{width:53.293275pt;}
._2a{width:57.554749pt;}
._39{width:65.950034pt;}
._36{width:80.848694pt;}
._29{width:83.484141pt;}
._35{width:102.059787pt;}
._34{width:135.130389pt;}
._2e{width:156.681539pt;}
._2c{width:215.256461pt;}
._21{width:231.409197pt;}
._33{width:252.546244pt;}
._20{width:459.439073pt;}
._15{width:1196.620190pt;}
.fs8{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:50.477333pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:80.763733pt;}
.fs1{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:99.089333pt;}
.y12{bottom:115.030667pt;}
.y29{bottom:124.232000pt;}
.y11{bottom:130.970667pt;}
.y10{bottom:146.910667pt;}
.y208{bottom:148.141333pt;}
.y28{bottom:148.174667pt;}
.yc6{bottom:149.545333pt;}
.y11c{bottom:149.784000pt;}
.y159{bottom:150.121333pt;}
.y289{bottom:151.426667pt;}
.y1c6{bottom:154.106667pt;}
.y5c{bottom:154.656000pt;}
.yea{bottom:155.264000pt;}
.y23e{bottom:155.746667pt;}
.y193{bottom:156.140000pt;}
.y27{bottom:160.794667pt;}
.y1fa{bottom:161.892000pt;}
.y262{bottom:163.838667pt;}
.y207{bottom:164.081333pt;}
.yc5{bottom:165.485333pt;}
.y11b{bottom:165.724000pt;}
.y158{bottom:166.062667pt;}
.y288{bottom:167.366667pt;}
.y1c5{bottom:170.046667pt;}
.y5b{bottom:170.596000pt;}
.ye9{bottom:171.205333pt;}
.y23d{bottom:171.686667pt;}
.y192{bottom:172.080000pt;}
.y26{bottom:177.270667pt;}
.y1f9{bottom:177.832000pt;}
.y261{bottom:179.778667pt;}
.y206{bottom:180.022667pt;}
.y11a{bottom:181.664000pt;}
.y157{bottom:182.002667pt;}
.y287{bottom:183.306667pt;}
.yc4{bottom:184.285333pt;}
.y1c4{bottom:185.986667pt;}
.y5a{bottom:186.536000pt;}
.ye8{bottom:187.145333pt;}
.y23c{bottom:187.626667pt;}
.y191{bottom:188.020000pt;}
.y1f8{bottom:193.772000pt;}
.y91{bottom:194.657333pt;}
.y260{bottom:195.718667pt;}
.y205{bottom:195.962667pt;}
.y119{bottom:197.604000pt;}
.y156{bottom:197.942667pt;}
.y286{bottom:199.246667pt;}
.y1c3{bottom:201.926667pt;}
.y59{bottom:202.476000pt;}
.yc3{bottom:203.085333pt;}
.y23b{bottom:203.566667pt;}
.y190{bottom:203.960000pt;}
.y1f7{bottom:209.712000pt;}
.y90{bottom:210.597333pt;}
.yf{bottom:210.672000pt;}
.y25f{bottom:211.658667pt;}
.y204{bottom:211.902667pt;}
.y118{bottom:213.545333pt;}
.y155{bottom:213.882667pt;}
.y1c2{bottom:217.868000pt;}
.y58{bottom:218.417333pt;}
.yc2{bottom:219.025333pt;}
.y23a{bottom:219.508000pt;}
.y18f{bottom:219.900000pt;}
.y285{bottom:220.906667pt;}
.y1f6{bottom:225.652000pt;}
.y8f{bottom:226.537333pt;}
.ye{bottom:226.612000pt;}
.y25e{bottom:227.598667pt;}
.y203{bottom:227.842667pt;}
.y117{bottom:229.485333pt;}
.y154{bottom:229.822667pt;}
.y2bd{bottom:230.149333pt;}
.y1c1{bottom:233.808000pt;}
.y57{bottom:234.357333pt;}
.ye7{bottom:234.965333pt;}
.yc1{bottom:234.966667pt;}
.y239{bottom:235.448000pt;}
.y18e{bottom:235.841333pt;}
.y1f5{bottom:241.593333pt;}
.y8e{bottom:242.477333pt;}
.yd{bottom:242.552000pt;}
.y2bc{bottom:242.769333pt;}
.y25d{bottom:243.540000pt;}
.y202{bottom:243.782667pt;}
.y284{bottom:245.425333pt;}
.y153{bottom:245.762667pt;}
.y1c0{bottom:249.748000pt;}
.y56{bottom:250.297333pt;}
.ye6{bottom:250.905333pt;}
.yc0{bottom:250.906667pt;}
.y116{bottom:251.144000pt;}
.y238{bottom:251.388000pt;}
.y18d{bottom:251.781333pt;}
.y2bb{bottom:255.388000pt;}
.y1f4{bottom:257.533333pt;}
.y8d{bottom:258.418667pt;}
.yc{bottom:258.492000pt;}
.y25c{bottom:259.480000pt;}
.y201{bottom:259.724000pt;}
.y283{bottom:261.365333pt;}
.y152{bottom:261.704000pt;}
.y1bf{bottom:265.688000pt;}
.y55{bottom:266.237333pt;}
.ybf{bottom:266.846667pt;}
.y237{bottom:267.328000pt;}
.y18c{bottom:267.721333pt;}
.y2ba{bottom:268.008000pt;}
.ye5{bottom:269.705333pt;}
.y1f3{bottom:273.473333pt;}
.y8c{bottom:274.358667pt;}
.y25b{bottom:275.420000pt;}
.y115{bottom:275.664000pt;}
.y282{bottom:277.305333pt;}
.y151{bottom:277.644000pt;}
.y2b9{bottom:280.626667pt;}
.y1be{bottom:281.628000pt;}
.y54{bottom:282.177333pt;}
.ybe{bottom:282.786667pt;}
.y236{bottom:283.268000pt;}
.y18b{bottom:283.661333pt;}
.ye4{bottom:288.505333pt;}
.y1f2{bottom:289.413333pt;}
.y8b{bottom:290.298667pt;}
.y25a{bottom:291.360000pt;}
.y114{bottom:291.604000pt;}
.y281{bottom:293.246667pt;}
.y150{bottom:293.584000pt;}
.y1bd{bottom:297.568000pt;}
.y53{bottom:298.118667pt;}
.ybd{bottom:298.726667pt;}
.y235{bottom:299.209333pt;}
.y18a{bottom:299.601333pt;}
.ye3{bottom:304.445333pt;}
.y1f1{bottom:305.353333pt;}
.y2b8{bottom:305.865333pt;}
.y8a{bottom:306.238667pt;}
.yb{bottom:306.313333pt;}
.y259{bottom:307.300000pt;}
.y113{bottom:307.544000pt;}
.y280{bottom:309.186667pt;}
.y14f{bottom:309.524000pt;}
.y1bc{bottom:313.509333pt;}
.y52{bottom:314.058667pt;}
.ybc{bottom:314.666667pt;}
.y234{bottom:315.149333pt;}
.y189{bottom:315.542667pt;}
.y2b7{bottom:318.485333pt;}
.ye2{bottom:320.386667pt;}
.y1f0{bottom:321.293333pt;}
.y89{bottom:322.178667pt;}
.ya{bottom:322.253333pt;}
.y258{bottom:323.241333pt;}
.y112{bottom:323.484000pt;}
.y27f{bottom:325.126667pt;}
.y14e{bottom:325.464000pt;}
.y1bb{bottom:329.449333pt;}
.y51{bottom:329.998667pt;}
.ybb{bottom:330.608000pt;}
.y233{bottom:331.089333pt;}
.y2b6{bottom:331.104000pt;}
.y188{bottom:331.482667pt;}
.ye1{bottom:336.326667pt;}
.y1ef{bottom:337.234667pt;}
.y88{bottom:338.118667pt;}
.y257{bottom:339.181333pt;}
.y200{bottom:339.424000pt;}
.y111{bottom:339.425333pt;}
.y27e{bottom:341.066667pt;}
.y14d{bottom:341.404000pt;}
.y2b5{bottom:343.724000pt;}
.y1ba{bottom:345.389333pt;}
.y50{bottom:345.938667pt;}
.yba{bottom:346.548000pt;}
.y232{bottom:347.029333pt;}
.y187{bottom:347.422667pt;}
.ye0{bottom:352.266667pt;}
.y1ee{bottom:353.174667pt;}
.y87{bottom:354.060000pt;}
.y9{bottom:354.133333pt;}
.y256{bottom:355.121333pt;}
.y110{bottom:355.365333pt;}
.y2b4{bottom:356.342667pt;}
.y27d{bottom:357.006667pt;}
.y14c{bottom:357.345333pt;}
.y1b9{bottom:361.329333pt;}
.yb9{bottom:362.488000pt;}
.y231{bottom:362.969333pt;}
.y186{bottom:363.362667pt;}
.ydf{bottom:368.206667pt;}
.y2b3{bottom:368.962667pt;}
.y1ed{bottom:369.114667pt;}
.y86{bottom:370.000000pt;}
.y8{bottom:370.073333pt;}
.y255{bottom:371.061333pt;}
.y10f{bottom:371.305333pt;}
.y4e{bottom:372.353333pt;}
.y27c{bottom:372.946667pt;}
.y14b{bottom:373.285333pt;}
.y1b8{bottom:377.269333pt;}
.yb8{bottom:378.428000pt;}
.y230{bottom:378.909333pt;}
.y185{bottom:379.302667pt;}
.y4d{bottom:381.465333pt;}
.y2b2{bottom:381.581333pt;}
.yde{bottom:384.146667pt;}
.y1ec{bottom:385.054667pt;}
.y85{bottom:385.940000pt;}
.y7{bottom:386.013333pt;}
.y254{bottom:387.001333pt;}
.y10e{bottom:387.245333pt;}
.y27b{bottom:388.888000pt;}
.y14a{bottom:389.225333pt;}
.y4f{bottom:390.458667pt;}
.y1b7{bottom:393.209333pt;}
.y2b1{bottom:394.201333pt;}
.yb7{bottom:394.368000pt;}
.y22f{bottom:394.850667pt;}
.y184{bottom:395.242667pt;}
.ydd{bottom:400.086667pt;}
.y1eb{bottom:400.994667pt;}
.y84{bottom:401.880000pt;}
.y6{bottom:401.954667pt;}
.y10d{bottom:403.185333pt;}
.y27a{bottom:404.828000pt;}
.y149{bottom:405.165333pt;}
.y2b0{bottom:406.820000pt;}
.y1b6{bottom:409.150667pt;}
.yb6{bottom:410.308000pt;}
.y22e{bottom:410.790667pt;}
.y183{bottom:411.184000pt;}
.y253{bottom:415.880000pt;}
.ydc{bottom:416.028000pt;}
.y1ea{bottom:416.934667pt;}
.y4c{bottom:417.152000pt;}
.y83{bottom:417.820000pt;}
.y10c{bottom:419.125333pt;}
.y2af{bottom:419.440000pt;}
.y279{bottom:420.768000pt;}
.y148{bottom:421.105333pt;}
.y1b5{bottom:425.090667pt;}
.yb5{bottom:426.249333pt;}
.y22d{bottom:426.730667pt;}
.y182{bottom:427.124000pt;}
.y252{bottom:428.498667pt;}
.ydb{bottom:431.968000pt;}
.y2ae{bottom:432.058667pt;}
.y1e9{bottom:432.876000pt;}
.y4b{bottom:433.092000pt;}
.y82{bottom:433.760000pt;}
.y1ff{bottom:435.065333pt;}
.y10b{bottom:435.066667pt;}
.y278{bottom:436.708000pt;}
.y147{bottom:437.045333pt;}
.y1b4{bottom:441.030667pt;}
.y251{bottom:441.118667pt;}
.y5{bottom:441.805333pt;}
.yb4{bottom:442.189333pt;}
.y22c{bottom:442.670667pt;}
.y181{bottom:443.064000pt;}
.y2ad{bottom:444.678667pt;}
.yda{bottom:447.908000pt;}
.y1e8{bottom:448.816000pt;}
.y81{bottom:449.701333pt;}
.y10a{bottom:451.006667pt;}
.y277{bottom:452.648000pt;}
.y146{bottom:452.986667pt;}
.y1b3{bottom:456.970667pt;}
.y2ac{bottom:457.297333pt;}
.yb3{bottom:458.129333pt;}
.y22b{bottom:458.610667pt;}
.y180{bottom:459.004000pt;}
.y48{bottom:460.316000pt;}
.yd9{bottom:463.848000pt;}
.y1e7{bottom:464.756000pt;}
.y80{bottom:465.641333pt;}
.y240{bottom:466.126667pt;}
.y109{bottom:466.946667pt;}
.y276{bottom:468.588000pt;}
.y145{bottom:468.926667pt;}
.y47{bottom:469.428000pt;}
.y49{bottom:469.429333pt;}
.y2ab{bottom:469.917333pt;}
.y1b2{bottom:472.910667pt;}
.yb2{bottom:474.069333pt;}
.y22a{bottom:474.550667pt;}
.y17f{bottom:474.944000pt;}
.y4a{bottom:478.421333pt;}
.yd8{bottom:479.788000pt;}
.y23f{bottom:480.354667pt;}
.y1e6{bottom:480.696000pt;}
.y7f{bottom:481.581333pt;}
.y2aa{bottom:482.536000pt;}
.y108{bottom:482.886667pt;}
.y275{bottom:484.529333pt;}
.y144{bottom:484.866667pt;}
.y1b1{bottom:488.852000pt;}
.yb1{bottom:490.009333pt;}
.y229{bottom:490.492000pt;}
.y17e{bottom:490.884000pt;}
.y241{bottom:495.150667pt;}
.y2a9{bottom:495.156000pt;}
.yd7{bottom:495.729333pt;}
.y1e5{bottom:496.636000pt;}
.y7e{bottom:497.521333pt;}
.y107{bottom:498.826667pt;}
.y274{bottom:500.469333pt;}
.y143{bottom:500.806667pt;}
.y1b0{bottom:504.792000pt;}
.yb0{bottom:505.949333pt;}
.y228{bottom:506.432000pt;}
.y17d{bottom:506.825333pt;}
.y2a8{bottom:507.774667pt;}
.y46{bottom:509.048000pt;}
.yd6{bottom:511.669333pt;}
.y1e4{bottom:512.576000pt;}
.y7d{bottom:513.461333pt;}
.y106{bottom:514.766667pt;}
.y273{bottom:516.409333pt;}
.y142{bottom:516.746667pt;}
.y2a7{bottom:520.394667pt;}
.y1af{bottom:520.732000pt;}
.y242{bottom:520.765333pt;}
.yaf{bottom:521.890667pt;}
.y227{bottom:522.372000pt;}
.y17c{bottom:522.765333pt;}
.y45{bottom:524.988000pt;}
.yd5{bottom:527.609333pt;}
.y1e3{bottom:528.517333pt;}
.y7c{bottom:529.402667pt;}
.y1fe{bottom:530.706667pt;}
.y105{bottom:530.708000pt;}
.y272{bottom:532.349333pt;}
.y141{bottom:532.688000pt;}
.y2a6{bottom:533.013333pt;}
.y250{bottom:535.144000pt;}
.y1ae{bottom:536.672000pt;}
.yae{bottom:537.830667pt;}
.y226{bottom:538.312000pt;}
.y17b{bottom:538.705333pt;}
.y44{bottom:540.928000pt;}
.yd4{bottom:543.549333pt;}
.y1e2{bottom:544.457333pt;}
.y7b{bottom:545.342667pt;}
.y2a5{bottom:545.633333pt;}
.y243{bottom:546.378667pt;}
.y104{bottom:546.648000pt;}
.y248{bottom:547.746667pt;}
.y271{bottom:548.289333pt;}
.y140{bottom:548.628000pt;}
.y24d{bottom:549.141333pt;}
.y1ad{bottom:552.612000pt;}
.yad{bottom:553.770667pt;}
.y225{bottom:554.252000pt;}
.y17a{bottom:554.645333pt;}
.y43{bottom:556.869333pt;}
.y2a4{bottom:558.252000pt;}
.yd3{bottom:559.489333pt;}
.y1e1{bottom:560.397333pt;}
.y7a{bottom:561.282667pt;}
.y103{bottom:562.588000pt;}
.y270{bottom:564.230667pt;}
.y13f{bottom:564.568000pt;}
.y25{bottom:566.464000pt;}
.y1ac{bottom:568.552000pt;}
.yac{bottom:569.710667pt;}
.y224{bottom:570.192000pt;}
.y2a3{bottom:570.872000pt;}
.y244{bottom:571.992000pt;}
.y42{bottom:572.809333pt;}
.y179{bottom:573.445333pt;}
.yd2{bottom:575.429333pt;}
.y1e0{bottom:576.337333pt;}
.y79{bottom:577.222667pt;}
.y102{bottom:578.528000pt;}
.y26f{bottom:580.170667pt;}
.y13e{bottom:580.508000pt;}
.y24c{bottom:580.949333pt;}
.y24{bottom:582.404000pt;}
.y2a2{bottom:583.490667pt;}
.y1ab{bottom:584.493333pt;}
.yab{bottom:585.650667pt;}
.y223{bottom:586.133333pt;}
.y41{bottom:588.749333pt;}
.yd1{bottom:591.370667pt;}
.y178{bottom:592.245333pt;}
.y1df{bottom:592.277333pt;}
.y78{bottom:593.162667pt;}
.y101{bottom:594.468000pt;}
.y26e{bottom:596.110667pt;}
.y13d{bottom:596.448000pt;}
.y245{bottom:597.606667pt;}
.y1aa{bottom:600.433333pt;}
.yaa{bottom:601.592000pt;}
.y222{bottom:602.073333pt;}
.y40{bottom:604.689333pt;}
.yd0{bottom:607.310667pt;}
.y23{bottom:607.662667pt;}
.y177{bottom:608.185333pt;}
.y1de{bottom:608.218667pt;}
.y2a1{bottom:608.729333pt;}
.y77{bottom:609.102667pt;}
.y24b{bottom:610.009333pt;}
.y100{bottom:610.408000pt;}
.y26d{bottom:612.050667pt;}
.y13c{bottom:612.388000pt;}
.y24f{bottom:612.913333pt;}
.y1a9{bottom:616.373333pt;}
.ya9{bottom:617.532000pt;}
.y221{bottom:618.013333pt;}
.y3f{bottom:620.629333pt;}
.y2a0{bottom:621.349333pt;}
.y24a{bottom:621.550667pt;}
.y246{bottom:623.220000pt;}
.ycf{bottom:623.250667pt;}
.y22{bottom:623.602667pt;}
.y176{bottom:624.125333pt;}
.y1dd{bottom:624.158667pt;}
.y76{bottom:625.044000pt;}
.yff{bottom:626.349333pt;}
.y26c{bottom:627.990667pt;}
.y13b{bottom:628.329333pt;}
.y24e{bottom:629.544000pt;}
.y1a8{bottom:632.313333pt;}
.y249{bottom:633.092000pt;}
.ya8{bottom:633.472000pt;}
.y220{bottom:633.953333pt;}
.y29f{bottom:633.968000pt;}
.y3e{bottom:636.569333pt;}
.yce{bottom:639.190667pt;}
.y21{bottom:639.544000pt;}
.y175{bottom:640.065333pt;}
.y1dc{bottom:640.098667pt;}
.y75{bottom:640.984000pt;}
.yfe{bottom:642.289333pt;}
.y26b{bottom:643.930667pt;}
.y13a{bottom:644.269333pt;}
.y29e{bottom:646.588000pt;}
.y1a7{bottom:648.253333pt;}
.y247{bottom:648.833333pt;}
.ya7{bottom:649.412000pt;}
.y21f{bottom:649.893333pt;}
.y3d{bottom:652.510667pt;}
.ycd{bottom:655.130667pt;}
.y20{bottom:655.484000pt;}
.y174{bottom:656.006667pt;}
.y1db{bottom:656.038667pt;}
.y74{bottom:656.924000pt;}
.yfd{bottom:658.229333pt;}
.y29d{bottom:659.206667pt;}
.y26a{bottom:659.872000pt;}
.y139{bottom:660.209333pt;}
.y1a6{bottom:664.193333pt;}
.ya6{bottom:665.352000pt;}
.y3c{bottom:668.450667pt;}
.ycc{bottom:671.070667pt;}
.y1f{bottom:671.424000pt;}
.y29c{bottom:671.826667pt;}
.y173{bottom:671.946667pt;}
.y1da{bottom:671.978667pt;}
.y73{bottom:672.864000pt;}
.yfc{bottom:674.169333pt;}
.y269{bottom:675.812000pt;}
.y138{bottom:679.009333pt;}
.y1a5{bottom:680.134667pt;}
.ya5{bottom:681.292000pt;}
.y3b{bottom:684.390667pt;}
.y29b{bottom:684.445333pt;}
.ycb{bottom:687.012000pt;}
.y1e{bottom:687.364000pt;}
.y172{bottom:687.886667pt;}
.y1d9{bottom:687.918667pt;}
.y72{bottom:688.804000pt;}
.yfb{bottom:690.109333pt;}
.y268{bottom:691.752000pt;}
.y21e{bottom:692.558667pt;}
.y1a4{bottom:696.074667pt;}
.y29a{bottom:697.065333pt;}
.ya4{bottom:697.233333pt;}
.y137{bottom:697.809333pt;}
.y3a{bottom:700.330667pt;}
.yca{bottom:702.952000pt;}
.y1d{bottom:703.304000pt;}
.y171{bottom:703.826667pt;}
.y1d8{bottom:703.860000pt;}
.y71{bottom:704.744000pt;}
.y21d{bottom:705.177333pt;}
.y1fd{bottom:706.049333pt;}
.yfa{bottom:706.050667pt;}
.y267{bottom:707.692000pt;}
.y299{bottom:709.684000pt;}
.y1a3{bottom:712.014667pt;}
.ya3{bottom:713.173333pt;}
.y136{bottom:713.749333pt;}
.y39{bottom:716.270667pt;}
.y21c{bottom:717.797333pt;}
.yc9{bottom:718.892000pt;}
.y1c{bottom:719.245333pt;}
.y1d7{bottom:719.800000pt;}
.y70{bottom:720.685333pt;}
.yf9{bottom:721.990667pt;}
.y298{bottom:722.304000pt;}
.y266{bottom:723.632000pt;}
.ya2{bottom:729.113333pt;}
.y38{bottom:732.210667pt;}
.y170{bottom:732.705333pt;}
.yc8{bottom:734.832000pt;}
.y297{bottom:734.922667pt;}
.y1b{bottom:735.185333pt;}
.y1d6{bottom:735.740000pt;}
.y6f{bottom:736.625333pt;}
.yf8{bottom:737.930667pt;}
.y265{bottom:739.572000pt;}
.y20a{bottom:740.792000pt;}
.y1a2{bottom:740.893333pt;}
.y4{bottom:741.281333pt;}
.y135{bottom:742.628000pt;}
.y16f{bottom:745.324000pt;}
.y296{bottom:747.542667pt;}
.y37{bottom:748.152000pt;}
.y209{bottom:750.486667pt;}
.yc7{bottom:750.772000pt;}
.ya1{bottom:750.773333pt;}
.y1a{bottom:751.125333pt;}
.y6e{bottom:752.565333pt;}
.y1a1{bottom:753.512000pt;}
.yf7{bottom:753.870667pt;}
.y134{bottom:755.246667pt;}
.y264{bottom:755.513333pt;}
.y215{bottom:759.273333pt;}
.y295{bottom:760.161333pt;}
.y36{bottom:764.092000pt;}
.y20c{bottom:764.134667pt;}
.y1d5{bottom:764.496000pt;}
.y16d{bottom:766.718667pt;}
.y19{bottom:767.065333pt;}
.y133{bottom:767.866667pt;}
.yf6{bottom:769.810667pt;}
.y294{bottom:772.781333pt;}
.y3{bottom:773.161333pt;}
.y199{bottom:776.865333pt;}
.y1d4{bottom:777.116000pt;}
.y263{bottom:777.172000pt;}
.y15f{bottom:777.284000pt;}
.y16e{bottom:778.757333pt;}
.y35{bottom:780.032000pt;}
.y6d{bottom:781.444000pt;}
.y18{bottom:783.005333pt;}
.y293{bottom:785.400000pt;}
.y163{bottom:785.512000pt;}
.yf5{bottom:785.750667pt;}
.y11e{bottom:786.660000pt;}
.y20d{bottom:790.550667pt;}
.y194{bottom:791.554667pt;}
.ya0{bottom:792.934667pt;}
.y34{bottom:795.972000pt;}
.y11d{bottom:797.637333pt;}
.y1d2{bottom:797.816000pt;}
.y292{bottom:798.020000pt;}
.y1c8{bottom:798.206667pt;}
.y1fc{bottom:801.690667pt;}
.yf4{bottom:801.692000pt;}
.y11f{bottom:805.106667pt;}
.y9f{bottom:805.553333pt;}
.y17{bottom:806.916000pt;}
.y162{bottom:806.961333pt;}
.y164{bottom:807.796000pt;}
.y1d1{bottom:808.385333pt;}
.y1c7{bottom:808.776000pt;}
.y291{bottom:810.638667pt;}
.y63{bottom:810.762667pt;}
.y33{bottom:811.912000pt;}
.y127{bottom:813.650667pt;}
.y20e{bottom:816.673333pt;}
.yf3{bottom:817.632000pt;}
.y195{bottom:823.137333pt;}
.y290{bottom:823.258667pt;}
.y219{bottom:824.050667pt;}
.y1c9{bottom:827.440000pt;}
.y32{bottom:827.852000pt;}
.y2{bottom:828.952000pt;}
.y218{bottom:829.357333pt;}
.y165{bottom:830.074667pt;}
.y128{bottom:830.738667pt;}
.y61{bottom:831.680000pt;}
.y161{bottom:831.854667pt;}
.y62{bottom:832.686667pt;}
.yf2{bottom:833.572000pt;}
.y132{bottom:833.993333pt;}
.y120{bottom:834.157333pt;}
.y21b{bottom:834.606667pt;}
.y28f{bottom:835.877333pt;}
.y99{bottom:839.354667pt;}
.y125{bottom:839.664000pt;}
.y214{bottom:841.993333pt;}
.y131{bottom:842.901333pt;}
.y20f{bottom:843.090667pt;}
.y31{bottom:843.793333pt;}
.y19c{bottom:844.438667pt;}
.y5f{bottom:846.897333pt;}
.y97{bottom:847.005333pt;}
.y129{bottom:847.826667pt;}
.y28e{bottom:848.497333pt;}
.yf1{bottom:849.512000pt;}
.y1ca{bottom:850.389333pt;}
.y130{bottom:851.813333pt;}
.y166{bottom:852.357333pt;}
.y1{bottom:855.520000pt;}
.y216{bottom:856.540000pt;}
.y16c{bottom:857.490667pt;}
.y196{bottom:859.640000pt;}
.y30{bottom:859.733333pt;}
.y19a{bottom:860.522667pt;}
.y28d{bottom:861.116000pt;}
.y121{bottom:863.204000pt;}
.y12a{bottom:864.913333pt;}
.yf0{bottom:865.452000pt;}
.y1cf{bottom:866.372000pt;}
.y210{bottom:869.204000pt;}
.y66{bottom:872.616000pt;}
.y6b{bottom:872.728000pt;}
.y1cb{bottom:873.334667pt;}
.y12f{bottom:873.674667pt;}
.y28c{bottom:873.736000pt;}
.y167{bottom:874.641333pt;}
.y2f{bottom:875.673333pt;}
.yef{bottom:881.392000pt;}
.y12b{bottom:882.001333pt;}
.y16{bottom:886.142667pt;}
.y68{bottom:886.210667pt;}
.y28b{bottom:886.354667pt;}
.y21a{bottom:889.028000pt;}
.y2e{bottom:891.613333pt;}
.y122{bottom:892.250667pt;}
.y5e{bottom:892.824000pt;}
.y5d{bottom:894.742667pt;}
.y211{bottom:895.629333pt;}
.y197{bottom:896.146667pt;}
.y1cc{bottom:896.284000pt;}
.y168{bottom:896.920000pt;}
.y1fb{bottom:897.332000pt;}
.yee{bottom:897.333333pt;}
.y12c{bottom:899.089333pt;}
.y15e{bottom:903.985333pt;}
.y98{bottom:904.577333pt;}
.y28a{bottom:904.693333pt;}
.y2d{bottom:907.553333pt;}
.y15{bottom:908.188000pt;}
.y19b{bottom:908.526667pt;}
.y19e{bottom:911.196000pt;}
.y9a{bottom:911.585333pt;}
.y96{bottom:912.020000pt;}
.yed{bottom:913.273333pt;}
.y9d{bottom:913.845333pt;}
.y15d{bottom:915.157333pt;}
.y12d{bottom:916.177333pt;}
.y169{bottom:919.202667pt;}
.y1cd{bottom:919.233333pt;}
.y67{bottom:920.018667pt;}
.y6c{bottom:921.012000pt;}
.y123{bottom:921.301333pt;}
.y6a{bottom:921.584000pt;}
.y212{bottom:921.742667pt;}
.y64{bottom:923.266667pt;}
.y2c{bottom:923.494667pt;}
.y15c{bottom:926.330667pt;}
.y1a0{bottom:926.386667pt;}
.yec{bottom:929.213333pt;}
.y92{bottom:929.990667pt;}
.y95{bottom:930.936000pt;}
.y198{bottom:932.653333pt;}
.y19d{bottom:932.710667pt;}
.y12e{bottom:933.260000pt;}
.y9c{bottom:935.145333pt;}
.y60{bottom:938.389333pt;}
.y15b{bottom:938.542667pt;}
.y2b{bottom:939.434667pt;}
.y16a{bottom:941.481333pt;}
.y1ce{bottom:942.182667pt;}
.y160{bottom:944.537333pt;}
.y19f{bottom:945.029333pt;}
.yeb{bottom:945.153333pt;}
.y1d0{bottom:945.366667pt;}
.y14{bottom:948.038667pt;}
.y213{bottom:948.160000pt;}
.y124{bottom:950.348000pt;}
.y15a{bottom:950.753333pt;}
.y94{bottom:951.422667pt;}
.y93{bottom:953.305333pt;}
.y217{bottom:953.806667pt;}
.y9b{bottom:957.522667pt;}
.y9e{bottom:960.190667pt;}
.y2a{bottom:961.093333pt;}
.y126{bottom:963.444000pt;}
.y16b{bottom:963.765333pt;}
.y20b{bottom:964.172000pt;}
.y65{bottom:964.838667pt;}
.y69{bottom:965.188000pt;}
.y1d3{bottom:970.496000pt;}
.he{height:18.299426pt;}
.h9{height:21.870046pt;}
.hf{height:29.159939pt;}
.h11{height:29.244954pt;}
.h18{height:29.414982pt;}
.h10{height:29.458287pt;}
.h1b{height:29.890287pt;}
.h1a{height:31.516954pt;}
.h19{height:31.554287pt;}
.h1e{height:34.427426pt;}
.h1f{height:34.432759pt;}
.hd{height:36.449833pt;}
.hb{height:36.556100pt;}
.ha{height:36.768636pt;}
.h7{height:36.822767pt;}
.h1c{height:36.935620pt;}
.h20{height:37.153434pt;}
.h5{height:37.403704pt;}
.h4{height:37.504659pt;}
.h21{height:40.634460pt;}
.h1d{height:40.639793pt;}
.hc{height:42.538460pt;}
.h8{height:44.879863pt;}
.h6{height:52.640990pt;}
.h2{height:59.845926pt;}
.h15{height:72.423166pt;}
.h16{height:72.741969pt;}
.h17{height:73.216636pt;}
.h3{height:75.009317pt;}
.h14{height:110.357822pt;}
.h12{height:110.363155pt;}
.h13{height:146.811155pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:86.016000pt;}
.x2{left:89.800000pt;}
.x1{left:90.708000pt;}
.x64{left:93.332000pt;}
.x65{left:95.242667pt;}
.x6{left:98.569333pt;}
.x8{left:100.726667pt;}
.x58{left:102.041333pt;}
.x9{left:105.144000pt;}
.x4a{left:106.294667pt;}
.x47{left:107.334667pt;}
.x57{left:108.276000pt;}
.x49{left:109.412000pt;}
.x56{left:113.994667pt;}
.x48{left:115.128000pt;}
.x54{left:122.218667pt;}
.x5a{left:127.130667pt;}
.x4b{left:135.310667pt;}
.x46{left:136.682667pt;}
.x44{left:143.365333pt;}
.x3{left:145.448000pt;}
.x60{left:146.808000pt;}
.x5f{left:147.810667pt;}
.x4d{left:149.560000pt;}
.xb{left:154.045333pt;}
.xa{left:155.516000pt;}
.x5d{left:157.968000pt;}
.x55{left:160.160000pt;}
.x4{left:174.100000pt;}
.x11{left:179.242667pt;}
.x2b{left:183.902667pt;}
.xc{left:194.097333pt;}
.x29{left:198.420000pt;}
.x45{left:200.944000pt;}
.x12{left:202.854667pt;}
.x2d{left:203.944000pt;}
.x13{left:222.158667pt;}
.x5e{left:223.826667pt;}
.x4c{left:225.216000pt;}
.xd{left:232.621333pt;}
.x59{left:236.553333pt;}
.x14{left:247.804000pt;}
.xe{left:254.485333pt;}
.x5{left:256.550667pt;}
.x15{left:268.409333pt;}
.xf{left:275.090667pt;}
.x31{left:287.761333pt;}
.x43{left:296.413333pt;}
.x2c{left:299.744000pt;}
.x2a{left:307.481333pt;}
.x10{left:309.560000pt;}
.x42{left:322.560000pt;}
.x61{left:324.618667pt;}
.x34{left:383.230667pt;}
.x2e{left:387.988000pt;}
.x28{left:393.529333pt;}
.x33{left:408.985333pt;}
.x26{left:412.790667pt;}
.x6e{left:418.104000pt;}
.x24{left:420.685333pt;}
.x27{left:426.074667pt;}
.x51{left:427.364000pt;}
.x69{left:434.153333pt;}
.x4f{left:435.552000pt;}
.x17{left:437.682667pt;}
.x39{left:438.593333pt;}
.x68{left:439.748000pt;}
.x38{left:442.914667pt;}
.x37{left:446.693333pt;}
.x3a{left:450.654667pt;}
.x66{left:453.972000pt;}
.x32{left:457.684000pt;}
.x25{left:459.756000pt;}
.x35{left:461.992000pt;}
.x70{left:467.617333pt;}
.x1b{left:474.773333pt;}
.x71{left:475.734667pt;}
.x5b{left:486.966667pt;}
.x36{left:489.528000pt;}
.x41{left:493.308000pt;}
.x4e{left:499.249333pt;}
.x21{left:501.976000pt;}
.x23{left:503.517333pt;}
.x19{left:509.196000pt;}
.x52{left:512.930667pt;}
.x6c{left:513.826667pt;}
.x1d{left:521.882667pt;}
.x1e{left:531.933333pt;}
.x6f{left:537.658667pt;}
.x18{left:539.733333pt;}
.x50{left:545.521333pt;}
.x5c{left:552.814667pt;}
.x67{left:560.166667pt;}
.x40{left:562.417333pt;}
.x3f{left:563.861333pt;}
.x3d{left:568.177333pt;}
.x3e{left:571.956000pt;}
.x1a{left:574.078667pt;}
.x22{left:585.233333pt;}
.x6b{left:590.220000pt;}
.x3b{left:593.733333pt;}
.x1c{left:601.789333pt;}
.x72{left:604.301333pt;}
.x6d{left:608.141333pt;}
.x16{left:610.140000pt;}
.x6a{left:619.072000pt;}
.x3c{left:623.161333pt;}
.x53{left:625.928000pt;}
.x20{left:630.812000pt;}
.x1f{left:635.721333pt;}
.x62{left:667.709333pt;}
.x2f{left:676.620000pt;}
.x30{left:679.296000pt;}
.x63{left:690.560000pt;}
}


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