
/* 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_b37d5a29a0fd.woff")format("woff");}.ff1{font-family:ff1;line-height:0.988000;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_1e0cd2cc9b27.woff")format("woff");}.ff2{font-family:ff2;line-height:1.006000;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_5abbfc79507d.woff")format("woff");}.ff3{font-family:ff3;line-height:0.988000;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_5f7cc722eb65.woff")format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_95bfab569255.woff")format("woff");}.ff5{font-family:ff5;line-height:1.504000;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_a2ec323b5cdc.woff")format("woff");}.ff6{font-family:ff6;line-height:1.504000;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_63fff682a021.woff")format("woff");}.ff7{font-family:ff7;line-height:5.166000;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_8c4d07cbb2de.woff")format("woff");}.ff8{font-family:ff8;line-height:1.504000;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_a2fdeefe68bf.woff")format("woff");}.ff9{font-family:ff9;line-height:1.504000;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_494e1fa238b4.woff")format("woff");}.ffa{font-family:ffa;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_754710386f4c.woff")format("woff");}.ffb{font-family:ffb;line-height:1.504000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_53a476eab8bb.woff")format("woff");}.ffc{font-family:ffc;line-height:0.987000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.vf{vertical-align:-96.504000px;}
.ve{vertical-align:-33.054000px;}
.v16{vertical-align:-27.360000px;}
.v3{vertical-align:-23.340000px;}
.v7{vertical-align:-14.748000px;}
.v1{vertical-align:-13.680000px;}
.v5{vertical-align:-1.068000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.420000px;}
.v2{vertical-align:13.680000px;}
.va{vertical-align:16.758000px;}
.v6{vertical-align:24.012000px;}
.v14{vertical-align:25.080000px;}
.vc{vertical-align:27.360000px;}
.v1a{vertical-align:37.164000px;}
.v8{vertical-align:38.760000px;}
.v12{vertical-align:40.296000px;}
.vb{vertical-align:42.432000px;}
.v18{vertical-align:43.890000px;}
.vd{vertical-align:46.452000px;}
.v10{vertical-align:48.000000px;}
.v15{vertical-align:52.800000px;}
.v4{vertical-align:64.494000px;}
.v1b{vertical-align:100.512000px;}
.v13{vertical-align:127.896000px;}
.v11{vertical-align:143.976000px;}
.v17{vertical-align:145.632000px;}
.v19{vertical-align:162.162000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003000px;}
.ls5d{letter-spacing:0.012000px;}
.ls74{letter-spacing:0.023373px;}
.ls66{letter-spacing:0.026373px;}
.ls20{letter-spacing:0.546000px;}
.ls2c{letter-spacing:1.428000px;}
.ls7d{letter-spacing:2.274000px;}
.ls73{letter-spacing:2.277000px;}
.ls76{letter-spacing:2.280000px;}
.lsb{letter-spacing:2.988000px;}
.ls42{letter-spacing:2.994000px;}
.ls3{letter-spacing:3.408000px;}
.ls88{letter-spacing:3.534000px;}
.ls21{letter-spacing:3.540000px;}
.ls83{letter-spacing:3.816000px;}
.ls52{letter-spacing:4.038000px;}
.ls11{letter-spacing:4.248000px;}
.ls3b{letter-spacing:5.976000px;}
.ls3a{letter-spacing:5.982000px;}
.ls3c{letter-spacing:6.222000px;}
.ls70{letter-spacing:6.276000px;}
.ls69{letter-spacing:6.282000px;}
.ls75{letter-spacing:6.432000px;}
.ls85{letter-spacing:7.173000px;}
.ls6a{letter-spacing:8.547000px;}
.ls60{letter-spacing:8.550000px;}
.ls36{letter-spacing:8.553000px;}
.ls84{letter-spacing:8.826000px;}
.ls80{letter-spacing:9.501000px;}
.ls81{letter-spacing:9.507000px;}
.ls16{letter-spacing:9.516000px;}
.ls14{letter-spacing:9.519000px;}
.ls18{letter-spacing:10.029000px;}
.ls8c{letter-spacing:10.101000px;}
.ls17{letter-spacing:10.659000px;}
.ls9b{letter-spacing:10.794000px;}
.ls91{letter-spacing:10.800000px;}
.ls24{letter-spacing:10.983000px;}
.lsa5{letter-spacing:11.337000px;}
.lsa4{letter-spacing:11.342430px;}
.ls4e{letter-spacing:11.472000px;}
.ls4c{letter-spacing:11.475000px;}
.ls4f{letter-spacing:11.478000px;}
.ls71{letter-spacing:11.799000px;}
.ls25{letter-spacing:11.829000px;}
.ls6c{letter-spacing:11.838000px;}
.ls7f{letter-spacing:11.946000px;}
.lsa6{letter-spacing:11.979000px;}
.lsa7{letter-spacing:11.985000px;}
.ls45{letter-spacing:12.504000px;}
.ls13{letter-spacing:12.687000px;}
.ls15{letter-spacing:12.690000px;}
.ls10{letter-spacing:12.693000px;}
.ls3e{letter-spacing:12.825000px;}
.ls8{letter-spacing:13.368000px;}
.ls3f{letter-spacing:14.187000px;}
.ls4d{letter-spacing:14.466000px;}
.ls8f{letter-spacing:14.544000px;}
.lsa3{letter-spacing:14.739000px;}
.ls82{letter-spacing:15.498000px;}
.lsf{letter-spacing:15.678000px;}
.ls7c{letter-spacing:15.684000px;}
.ls37{letter-spacing:15.744000px;}
.lse{letter-spacing:15.861000px;}
.ls53{letter-spacing:15.864000px;}
.lsa{letter-spacing:15.867000px;}
.ls50{letter-spacing:16.098000px;}
.ls12{letter-spacing:16.104000px;}
.ls1d{letter-spacing:16.119000px;}
.ls51{letter-spacing:16.230000px;}
.ls7{letter-spacing:16.236000px;}
.ls9d{letter-spacing:16.293000px;}
.ls9{letter-spacing:16.431000px;}
.ls54{letter-spacing:16.449000px;}
.ls1c{letter-spacing:16.749000px;}
.ls43{letter-spacing:16.890000px;}
.ls41{letter-spacing:16.896000px;}
.ls39{letter-spacing:17.286000px;}
.ls58{letter-spacing:17.361000px;}
.ls26{letter-spacing:17.574000px;}
.ls5f{letter-spacing:17.877000px;}
.ls61{letter-spacing:18.147000px;}
.ls9f{letter-spacing:18.198000px;}
.ls8d{letter-spacing:18.243000px;}
.ls7b{letter-spacing:18.630000px;}
.ls1e{letter-spacing:18.699000px;}
.ls77{letter-spacing:18.852000px;}
.ls6e{letter-spacing:18.858000px;}
.ls2e{letter-spacing:19.188000px;}
.ls5a{letter-spacing:19.197000px;}
.ls59{letter-spacing:19.200000px;}
.ls87{letter-spacing:19.272000px;}
.lsa2{letter-spacing:19.305000px;}
.lsa1{letter-spacing:19.311000px;}
.lsa0{letter-spacing:19.314000px;}
.ls56{letter-spacing:19.476000px;}
.ls57{letter-spacing:19.482000px;}
.ls23{letter-spacing:19.800000px;}
.ls40{letter-spacing:19.884000px;}
.ls5c{letter-spacing:20.151000px;}
.ls1a{letter-spacing:20.523000px;}
.ls1b{letter-spacing:20.526000px;}
.ls44{letter-spacing:20.754000px;}
.lsc{letter-spacing:20.868000px;}
.ls5b{letter-spacing:21.483000px;}
.ls5e{letter-spacing:22.122000px;}
.lsd{letter-spacing:22.146000px;}
.ls9e{letter-spacing:22.215000px;}
.lsae{letter-spacing:22.245000px;}
.lsad{letter-spacing:22.251000px;}
.lsaf{letter-spacing:22.257000px;}
.ls99{letter-spacing:23.223000px;}
.ls98{letter-spacing:23.226000px;}
.ls9a{letter-spacing:23.229000px;}
.ls4{letter-spacing:23.325000px;}
.ls97{letter-spacing:23.661000px;}
.ls8e{letter-spacing:24.279000px;}
.ls68{letter-spacing:24.759000px;}
.ls1f{letter-spacing:24.795000px;}
.ls55{letter-spacing:25.041000px;}
.ls5{letter-spacing:26.730000px;}
.ls65{letter-spacing:27.039000px;}
.ls6b{letter-spacing:28.017000px;}
.ls63{letter-spacing:28.185000px;}
.ls67{letter-spacing:29.010000px;}
.ls46{letter-spacing:29.418000px;}
.ls79{letter-spacing:29.466000px;}
.ls62{letter-spacing:30.471000px;}
.lsb1{letter-spacing:31.545000px;}
.lsb0{letter-spacing:31.551000px;}
.lsab{letter-spacing:32.397000px;}
.lsaa{letter-spacing:32.418000px;}
.ls64{letter-spacing:32.430000px;}
.lsac{letter-spacing:34.671000px;}
.ls95{letter-spacing:34.791000px;}
.ls94{letter-spacing:34.797000px;}
.ls96{letter-spacing:37.077000px;}
.ls2f{letter-spacing:39.315000px;}
.ls1{letter-spacing:48.000000px;}
.ls6{letter-spacing:48.003000px;}
.ls78{letter-spacing:49.515000px;}
.ls8b{letter-spacing:52.788000px;}
.ls8a{letter-spacing:57.000000px;}
.ls22{letter-spacing:59.850000px;}
.ls19{letter-spacing:60.990000px;}
.ls2b{letter-spacing:62.760000px;}
.ls28{letter-spacing:62.766000px;}
.ls2a{letter-spacing:65.994000px;}
.ls27{letter-spacing:66.000000px;}
.ls89{letter-spacing:69.396000px;}
.ls29{letter-spacing:69.504000px;}
.ls35{letter-spacing:85.287000px;}
.ls33{letter-spacing:85.398000px;}
.ls32{letter-spacing:87.531000px;}
.ls34{letter-spacing:89.019000px;}
.ls31{letter-spacing:91.698000px;}
.ls30{letter-spacing:100.074000px;}
.ls47{letter-spacing:125.238000px;}
.ls90{letter-spacing:161.208000px;}
.ls93{letter-spacing:161.448000px;}
.ls92{letter-spacing:167.352000px;}
.ls2d{letter-spacing:172.284000px;}
.lsa8{letter-spacing:208.662000px;}
.ls48{letter-spacing:214.416000px;}
.ls49{letter-spacing:217.038000px;}
.ls4a{letter-spacing:219.660000px;}
.ls4b{letter-spacing:222.894000px;}
.ls38{letter-spacing:234.756000px;}
.ls72{letter-spacing:240.294000px;}
.lsa9{letter-spacing:248.286000px;}
.ls9c{letter-spacing:300.258000px;}
.ls7e{letter-spacing:430.140000px;}
.ls3d{letter-spacing:436.728000px;}
.ls6d{letter-spacing:473.964000px;}
.ls6f{letter-spacing:510.738000px;}
.ls7a{letter-spacing:537.435000px;}
.ls86{letter-spacing:604.929000px;}
.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;}
}
.ws2{word-spacing:-103.620000px;}
.wsb6{word-spacing:-90.000000px;}
.wsb5{word-spacing:-70.650000px;}
.ws14e{word-spacing:-69.750000px;}
.ws78{word-spacing:-57.240000px;}
.ws54{word-spacing:-57.000000px;}
.ws8c{word-spacing:-56.520000px;}
.wsac{word-spacing:-56.519424px;}
.ws1{word-spacing:-55.800000px;}
.ws62{word-spacing:-48.450000px;}
.ws10d{word-spacing:-48.393000px;}
.wsa3{word-spacing:-48.336000px;}
.wsa4{word-spacing:-48.279000px;}
.ws113{word-spacing:-48.165000px;}
.wsc5{word-spacing:-48.051000px;}
.ws3{word-spacing:-48.000000px;}
.ws24{word-spacing:-47.994000px;}
.ws162{word-spacing:-47.937000px;}
.wsa5{word-spacing:-47.880000px;}
.ws73{word-spacing:-47.823000px;}
.ws5f{word-spacing:-47.766000px;}
.ws63{word-spacing:-47.709000px;}
.ws112{word-spacing:-47.652000px;}
.wse3{word-spacing:-47.595000px;}
.wsb3{word-spacing:-47.556000px;}
.wsb2{word-spacing:-47.550000px;}
.ws65{word-spacing:-47.538000px;}
.ws149{word-spacing:-47.502000px;}
.ws53{word-spacing:-47.481000px;}
.ws34{word-spacing:-47.367000px;}
.ws41{word-spacing:-47.253000px;}
.ws6e{word-spacing:-47.196000px;}
.ws90{word-spacing:-47.082627px;}
.ws31{word-spacing:-47.082000px;}
.wsc2{word-spacing:-47.081886px;}
.ws8e{word-spacing:-47.046000px;}
.ws70{word-spacing:-47.025000px;}
.wsc4{word-spacing:-47.024373px;}
.wsd1{word-spacing:-46.968000px;}
.wsfa{word-spacing:-46.905000px;}
.wsf8{word-spacing:-46.902000px;}
.ws6d{word-spacing:-46.854000px;}
.ws39{word-spacing:-46.797000px;}
.ws145{word-spacing:-46.683000px;}
.ws14f{word-spacing:-46.626000px;}
.ws9c{word-spacing:-46.455000px;}
.ws5a{word-spacing:-46.341000px;}
.ws11b{word-spacing:-46.284000px;}
.ws11c{word-spacing:-46.227000px;}
.ws136{word-spacing:-46.170000px;}
.wsa2{word-spacing:-46.056000px;}
.wsa0{word-spacing:-46.023000px;}
.wsa1{word-spacing:-45.999000px;}
.wsca{word-spacing:-45.942000px;}
.ws4c{word-spacing:-45.828000px;}
.ws1f{word-spacing:-45.714000px;}
.wscb{word-spacing:-45.657627px;}
.wsae{word-spacing:-45.657000px;}
.wsb{word-spacing:-45.543000px;}
.wsdf{word-spacing:-45.429000px;}
.ws14b{word-spacing:-45.372000px;}
.ws13b{word-spacing:-45.315627px;}
.ws3b{word-spacing:-45.315000px;}
.wsc{word-spacing:-45.258000px;}
.ws119{word-spacing:-45.201000px;}
.ws131{word-spacing:-45.144000px;}
.wsed{word-spacing:-45.143373px;}
.wsf9{word-spacing:-45.087627px;}
.ws9{word-spacing:-45.087000px;}
.wsf2{word-spacing:-45.030627px;}
.ws160{word-spacing:-45.030000px;}
.ws1b{word-spacing:-45.004770px;}
.ws69{word-spacing:-44.998830px;}
.ws17{word-spacing:-44.859000px;}
.ws111{word-spacing:-44.802000px;}
.wsf1{word-spacing:-44.745627px;}
.wsd9{word-spacing:-44.745000px;}
.wsf6{word-spacing:-44.744373px;}
.ws8b{word-spacing:-44.688000px;}
.ws15{word-spacing:-44.631000px;}
.wsd4{word-spacing:-44.574000px;}
.wsd0{word-spacing:-44.573373px;}
.wse7{word-spacing:-44.517000px;}
.wse8{word-spacing:-44.493000px;}
.ws45{word-spacing:-44.460000px;}
.ws165{word-spacing:-44.346000px;}
.wsbb{word-spacing:-44.289000px;}
.ws25{word-spacing:-44.232627px;}
.wsd7{word-spacing:-44.232000px;}
.wse2{word-spacing:-44.184000px;}
.wsa8{word-spacing:-44.178000px;}
.ws3c{word-spacing:-44.175627px;}
.ws18{word-spacing:-44.175000px;}
.wsb4{word-spacing:-44.172000px;}
.ws42{word-spacing:-44.061000px;}
.ws114{word-spacing:-44.004000px;}
.wsce{word-spacing:-43.947000px;}
.wse0{word-spacing:-43.890000px;}
.ws35{word-spacing:-43.833627px;}
.ws77{word-spacing:-43.833000px;}
.ws67{word-spacing:-43.776000px;}
.ws49{word-spacing:-43.662000px;}
.ws152{word-spacing:-43.661373px;}
.wsec{word-spacing:-43.605000px;}
.ws75{word-spacing:-43.548000px;}
.ws10e{word-spacing:-43.491000px;}
.wsf{word-spacing:-43.434000px;}
.ws57{word-spacing:-43.377000px;}
.wsc0{word-spacing:-43.365000px;}
.ws13{word-spacing:-43.320000px;}
.wse4{word-spacing:-43.206000px;}
.ws76{word-spacing:-43.092000px;}
.wsbc{word-spacing:-43.035000px;}
.ws60{word-spacing:-42.978000px;}
.ws44{word-spacing:-42.864000px;}
.wsb0{word-spacing:-42.807000px;}
.ws51{word-spacing:-42.750000px;}
.ws2f{word-spacing:-42.636627px;}
.ws46{word-spacing:-42.636000px;}
.ws2c{word-spacing:-42.579000px;}
.ws72{word-spacing:-42.522000px;}
.ws13d{word-spacing:-42.465000px;}
.ws104{word-spacing:-42.351000px;}
.ws7{word-spacing:-42.294000px;}
.wse{word-spacing:-42.237000px;}
.wsbd{word-spacing:-42.180000px;}
.ws139{word-spacing:-42.123000px;}
.ws2b{word-spacing:-42.066000px;}
.wsad{word-spacing:-42.009000px;}
.ws4e{word-spacing:-42.000000px;}
.wsba{word-spacing:-41.952000px;}
.ws91{word-spacing:-41.895000px;}
.ws10f{word-spacing:-41.781000px;}
.ws50{word-spacing:-41.667000px;}
.ws2a{word-spacing:-41.610000px;}
.ws74{word-spacing:-41.553000px;}
.wsa{word-spacing:-41.496000px;}
.ws99{word-spacing:-41.439000px;}
.ws9a{word-spacing:-41.394000px;}
.wse6{word-spacing:-41.382000px;}
.wse5{word-spacing:-41.364000px;}
.wsbe{word-spacing:-41.325000px;}
.ws116{word-spacing:-41.268000px;}
.wsd3{word-spacing:-41.211000px;}
.ws7e{word-spacing:-41.154000px;}
.ws14{word-spacing:-41.097000px;}
.ws66{word-spacing:-40.983000px;}
.ws7f{word-spacing:-40.926000px;}
.wscd{word-spacing:-40.869000px;}
.ws1c{word-spacing:-40.812000px;}
.ws9e{word-spacing:-40.755000px;}
.ws9d{word-spacing:-40.737000px;}
.wsc8{word-spacing:-40.584000px;}
.ws12f{word-spacing:-40.583373px;}
.wsb8{word-spacing:-40.527000px;}
.wsb7{word-spacing:-40.512000px;}
.wsb9{word-spacing:-40.506000px;}
.ws3d{word-spacing:-40.470000px;}
.ws94{word-spacing:-40.416000px;}
.ws1d{word-spacing:-40.413000px;}
.ws95{word-spacing:-40.356000px;}
.ws153{word-spacing:-40.299627px;}
.ws11a{word-spacing:-40.299000px;}
.ws4b{word-spacing:-40.242627px;}
.ws6{word-spacing:-40.242000px;}
.ws12{word-spacing:-40.185000px;}
.wscf{word-spacing:-40.128000px;}
.ws29{word-spacing:-40.071000px;}
.ws177{word-spacing:-40.032624px;}
.ws15f{word-spacing:-40.032000px;}
.ws71{word-spacing:-40.014000px;}
.ws93{word-spacing:-39.957000px;}
.ws5e{word-spacing:-39.843000px;}
.ws55{word-spacing:-39.672000px;}
.ws11d{word-spacing:-39.615000px;}
.ws4a{word-spacing:-39.558000px;}
.wsd2{word-spacing:-39.501000px;}
.wsd8{word-spacing:-39.444000px;}
.ws5c{word-spacing:-39.387000px;}
.ws61{word-spacing:-39.330000px;}
.wsc6{word-spacing:-39.216000px;}
.ws174{word-spacing:-39.120000px;}
.ws88{word-spacing:-38.988000px;}
.ws1e{word-spacing:-38.931000px;}
.ws10a{word-spacing:-38.874000px;}
.wscc{word-spacing:-38.817000px;}
.wsfd{word-spacing:-38.760000px;}
.wsfb{word-spacing:-38.757000px;}
.ws13a{word-spacing:-38.703000px;}
.ws155{word-spacing:-38.688624px;}
.ws15b{word-spacing:-38.688000px;}
.ws6c{word-spacing:-38.646000px;}
.ws159{word-spacing:-38.640000px;}
.wsfc{word-spacing:-38.598000px;}
.ws47{word-spacing:-38.589000px;}
.ws16{word-spacing:-38.532000px;}
.wsf0{word-spacing:-38.475000px;}
.ws150{word-spacing:-38.418000px;}
.ws9b{word-spacing:-38.361000px;}
.ws23{word-spacing:-38.208624px;}
.ws133{word-spacing:-38.208000px;}
.ws20{word-spacing:-38.160000px;}
.wsde{word-spacing:-38.076000px;}
.ws92{word-spacing:-37.962000px;}
.ws3a{word-spacing:-37.905000px;}
.wsc9{word-spacing:-37.848000px;}
.ws40{word-spacing:-37.791000px;}
.ws105{word-spacing:-37.728624px;}
.wsf7{word-spacing:-37.728000px;}
.ws16e{word-spacing:-37.686000px;}
.ws173{word-spacing:-37.680624px;}
.ws21{word-spacing:-37.680000px;}
.ws178{word-spacing:-37.679424px;}
.ws36{word-spacing:-37.677000px;}
.ws172{word-spacing:-37.632000px;}
.ws134{word-spacing:-37.620000px;}
.ws7a{word-spacing:-37.563000px;}
.ws13e{word-spacing:-37.506000px;}
.ws176{word-spacing:-37.488624px;}
.ws171{word-spacing:-37.488000px;}
.ws96{word-spacing:-37.449000px;}
.ws15c{word-spacing:-37.440000px;}
.ws170{word-spacing:-37.439424px;}
.ws64{word-spacing:-37.392000px;}
.ws38{word-spacing:-37.335000px;}
.ws5b{word-spacing:-37.278000px;}
.ws129{word-spacing:-37.248624px;}
.ws22{word-spacing:-37.248000px;}
.ws87{word-spacing:-37.247376px;}
.ws175{word-spacing:-37.206624px;}
.ws6b{word-spacing:-37.206000px;}
.ws123{word-spacing:-37.200624px;}
.ws0{word-spacing:-37.200000px;}
.ws14c{word-spacing:-37.199376px;}
.ws122{word-spacing:-37.182000px;}
.ws107{word-spacing:-37.176000px;}
.ws5{word-spacing:-37.107000px;}
.ws4{word-spacing:-37.083000px;}
.ws151{word-spacing:-37.050627px;}
.wsfe{word-spacing:-37.050000px;}
.ws33{word-spacing:-36.993000px;}
.wsf3{word-spacing:-36.936000px;}
.wsd5{word-spacing:-36.879000px;}
.ws13c{word-spacing:-36.765000px;}
.ws43{word-spacing:-36.708000px;}
.ws163{word-spacing:-36.594000px;}
.ws11{word-spacing:-36.537000px;}
.wsd{word-spacing:-36.480000px;}
.ws109{word-spacing:-36.479373px;}
.ws98{word-spacing:-36.474000px;}
.ws97{word-spacing:-36.471000px;}
.wsaf{word-spacing:-36.366000px;}
.ws32{word-spacing:-36.252000px;}
.ws10{word-spacing:-36.024000px;}
.ws137{word-spacing:-35.967000px;}
.ws10c{word-spacing:-35.910000px;}
.ws1a{word-spacing:-35.853000px;}
.ws58{word-spacing:-35.796000px;}
.ws19{word-spacing:-35.751000px;}
.ws2d{word-spacing:-35.739000px;}
.ws167{word-spacing:-35.682000px;}
.ws5d{word-spacing:-35.625000px;}
.ws3e{word-spacing:-35.568627px;}
.ws7c{word-spacing:-35.568000px;}
.ws8{word-spacing:-35.511000px;}
.ws118{word-spacing:-35.397000px;}
.wse1{word-spacing:-35.283000px;}
.ws135{word-spacing:-35.226627px;}
.ws138{word-spacing:-35.112000px;}
.ws16d{word-spacing:-35.055000px;}
.ws132{word-spacing:-34.941000px;}
.wsf5{word-spacing:-34.770000px;}
.ws168{word-spacing:-34.719627px;}
.ws117{word-spacing:-34.656627px;}
.ws130{word-spacing:-34.542627px;}
.ws169{word-spacing:-34.542000px;}
.ws56{word-spacing:-34.427373px;}
.ws110{word-spacing:-34.370373px;}
.ws179{word-spacing:-34.320000px;}
.ws6f{word-spacing:-34.257000px;}
.ws68{word-spacing:-34.256373px;}
.ws2e{word-spacing:-34.028373px;}
.ws146{word-spacing:-33.972627px;}
.ws148{word-spacing:-33.971373px;}
.ws89{word-spacing:-33.857373px;}
.ws3f{word-spacing:-33.801000px;}
.ws161{word-spacing:-33.800373px;}
.ws59{word-spacing:-33.744627px;}
.ws80{word-spacing:-33.744000px;}
.ws14a{word-spacing:-33.743373px;}
.ws10b{word-spacing:-33.687000px;}
.ws81{word-spacing:-33.686373px;}
.ws30{word-spacing:-33.630000px;}
.ws120{word-spacing:-33.573627px;}
.ws6a{word-spacing:-33.572373px;}
.ws79{word-spacing:-33.459627px;}
.ws11e{word-spacing:-33.117627px;}
.ws11f{word-spacing:-33.117000px;}
.ws102{word-spacing:-32.724000px;}
.ws100{word-spacing:-32.721000px;}
.ws4d{word-spacing:-32.550000px;}
.wsff{word-spacing:-32.546373px;}
.ws101{word-spacing:-32.505000px;}
.ws103{word-spacing:-32.433000px;}
.ws82{word-spacing:-32.205000px;}
.ws7d{word-spacing:-32.034000px;}
.ws52{word-spacing:-31.977000px;}
.ws166{word-spacing:-31.920000px;}
.ws7b{word-spacing:-31.806000px;}
.wsef{word-spacing:-31.635000px;}
.ws144{word-spacing:-31.578000px;}
.ws48{word-spacing:-31.521000px;}
.ws121{word-spacing:-31.236000px;}
.ws37{word-spacing:-30.894000px;}
.ws27{word-spacing:-30.723000px;}
.ws26{word-spacing:-29.925000px;}
.ws8d{word-spacing:-29.469000px;}
.wsf4{word-spacing:-29.184627px;}
.wsee{word-spacing:-29.013000px;}
.ws28{word-spacing:-28.557000px;}
.ws164{word-spacing:-26.676000px;}
.ws115{word-spacing:-25.707000px;}
.ws83{word-spacing:-25.308000px;}
.ws16b{word-spacing:-25.193373px;}
.ws16a{word-spacing:-25.137000px;}
.ws12e{word-spacing:-24.795000px;}
.wse9{word-spacing:-23.148000px;}
.ws8a{word-spacing:-22.962000px;}
.ws9f{word-spacing:-22.200000px;}
.wsa6{word-spacing:-17.232000px;}
.ws16c{word-spacing:-14.820000px;}
.wsa7{word-spacing:-9.576000px;}
.ws16f{word-spacing:-9.000000px;}
.ws154{word-spacing:-8.997000px;}
.ws8f{word-spacing:-0.057000px;}
.ws15a{word-spacing:-0.048000px;}
.ws147{word-spacing:-0.042000px;}
.ws4f{word-spacing:0.000000px;}
.wsdd{word-spacing:2.736000px;}
.wsdb{word-spacing:9.120000px;}
.wsda{word-spacing:9.975627px;}
.wsc3{word-spacing:15.789000px;}
.wseb{word-spacing:15.804000px;}
.wsd6{word-spacing:15.807000px;}
.wsc1{word-spacing:17.784000px;}
.wsbf{word-spacing:19.095000px;}
.wsc7{word-spacing:24.681627px;}
.ws108{word-spacing:33.888000px;}
.ws128{word-spacing:36.768000px;}
.ws125{word-spacing:48.336000px;}
.ws126{word-spacing:48.576000px;}
.ws124{word-spacing:50.064000px;}
.ws141{word-spacing:53.202000px;}
.ws127{word-spacing:55.056000px;}
.ws157{word-spacing:67.728000px;}
.wsaa{word-spacing:68.640000px;}
.ws143{word-spacing:82.512000px;}
.ws13f{word-spacing:85.872624px;}
.wsea{word-spacing:95.604000px;}
.wsab{word-spacing:96.000000px;}
.ws15d{word-spacing:108.288000px;}
.ws12c{word-spacing:120.930000px;}
.ws12b{word-spacing:120.954000px;}
.ws86{word-spacing:123.840000px;}
.wsa9{word-spacing:123.936000px;}
.ws106{word-spacing:139.776000px;}
.wsdc{word-spacing:142.386000px;}
.ws14d{word-spacing:143.568000px;}
.ws142{word-spacing:148.590000px;}
.ws156{word-spacing:162.144000px;}
.ws85{word-spacing:163.584000px;}
.ws140{word-spacing:175.992000px;}
.ws158{word-spacing:179.286000px;}
.ws12d{word-spacing:193.410000px;}
.ws15e{word-spacing:218.910000px;}
.ws84{word-spacing:240.906000px;}
.wsb1{word-spacing:289.344000px;}
.ws12a{word-spacing:384.186000px;}
._2b{margin-left:-39.330000px;}
._38{margin-left:-33.516000px;}
._b{margin-left:-9.576000px;}
._4{margin-left:-7.848000px;}
._69{margin-left:-6.162000px;}
._9{margin-left:-4.851000px;}
._a{margin-left:-3.444000px;}
._0{margin-left:-1.800000px;}
._6{width:1.008000px;}
._c{width:2.028000px;}
._28{width:3.522000px;}
._29{width:4.545000px;}
._10{width:7.548000px;}
._e{width:8.754000px;}
._5{width:9.768000px;}
._8{width:10.863627px;}
._34{width:12.288000px;}
._36{width:13.362000px;}
._1{width:14.400000px;}
._14{width:15.813627px;}
._13{width:16.848000px;}
._7{width:18.843000px;}
._f{width:20.115000px;}
._d{width:21.962373px;}
._3{width:26.460000px;}
._3d{width:28.496409px;}
._2{width:29.940000px;}
._6c{width:32.005200px;}
._6d{width:34.309200px;}
._15{width:35.995824px;}
._6a{width:37.429200px;}
._6b{width:39.733200px;}
._37{width:40.818000px;}
._68{width:42.853200px;}
._2a{width:43.893000px;}
._35{width:45.001170px;}
._12{width:47.040000px;}
._66{width:56.821200px;}
._65{width:57.973200px;}
._67{width:60.277200px;}
._64{width:63.397200px;}
._39{width:80.304576px;}
._3c{width:81.888000px;}
._40{width:84.233952px;}
._42{width:85.782624px;}
._48{width:86.976000px;}
._3a{width:93.888000px;}
._46{width:95.856000px;}
._41{width:97.344000px;}
._47{width:102.576000px;}
._3b{width:109.248000px;}
._3f{width:111.456000px;}
._3e{width:113.232000px;}
._2d{width:115.727424px;}
._2e{width:117.073152px;}
._2c{width:129.264576px;}
._53{width:139.405248px;}
._44{width:142.818000px;}
._32{width:144.000000px;}
._4e{width:146.015376px;}
._45{width:148.962000px;}
._31{width:153.888000px;}
._57{width:157.008000px;}
._33{width:158.016000px;}
._25{width:164.015376px;}
._22{width:165.354000px;}
._21{width:169.296000px;}
._26{width:170.615424px;}
._43{width:172.848000px;}
._24{width:175.728000px;}
._27{width:178.319424px;}
._30{width:180.528000px;}
._20{width:190.614000px;}
._1e{width:192.984000px;}
._4d{width:196.608000px;}
._50{width:198.816576px;}
._1f{width:199.848576px;}
._1d{width:203.256000px;}
._58{width:205.104000px;}
._51{width:209.280000px;}
._4f{width:210.768000px;}
._54{width:214.944000px;}
._1c{width:216.024000px;}
._49{width:242.538000px;}
._23{width:270.330000px;}
._11{width:271.350000px;}
._4c{width:277.626000px;}
._19{width:292.170000px;}
._16{width:299.706000px;}
._17{width:302.778000px;}
._1b{width:304.092000px;}
._4a{width:308.106000px;}
._4b{width:310.890000px;}
._1a{width:320.922000px;}
._52{width:331.981200px;}
._5d{width:359.940000px;}
._5a{width:372.522000px;}
._59{width:379.242000px;}
._18{width:380.634000px;}
._5e{width:384.114000px;}
._55{width:446.508624px;}
._56{width:447.600000px;}
._5f{width:455.292000px;}
._63{width:476.796000px;}
._5c{width:504.924000px;}
._62{width:556.860000px;}
._5b{width:573.060000px;}
._61{width:591.492000px;}
._60{width:601.140000px;}
._2f{width:862.212000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.000000px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:57.027000px;}
.y5e{bottom:70.527000px;}
.y169{bottom:96.157500px;}
.y30{bottom:100.290000px;}
.y279{bottom:102.252000px;}
.yb4{bottom:109.740000px;}
.y2f{bottom:116.790000px;}
.ye4{bottom:118.731000px;}
.y81{bottom:119.790000px;}
.y216{bottom:119.799000px;}
.y10e{bottom:119.830500px;}
.y1c1{bottom:119.886000px;}
.y1f8{bottom:119.920500px;}
.y13c{bottom:119.967000px;}
.y1a8{bottom:119.976000px;}
.y5d{bottom:119.982000px;}
.y73{bottom:119.992500px;}
.yb3{bottom:126.240000px;}
.y27d{bottom:132.312000px;}
.y2e{bottom:133.290000px;}
.y168{bottom:135.172500px;}
.ye3{bottom:138.231000px;}
.y19f{bottom:139.290000px;}
.y215{bottom:139.306500px;}
.y10d{bottom:139.369500px;}
.y1f7{bottom:139.551000px;}
.y13b{bottom:139.644000px;}
.y1a7{bottom:139.663500px;}
.y5c{bottom:139.675500px;}
.y72{bottom:139.696500px;}
.yb2{bottom:142.740000px;}
.ydf{bottom:143.112000px;}
.ye2{bottom:144.231000px;}
.y27b{bottom:146.329500px;}
.y27c{bottom:148.812000px;}
.y2d{bottom:149.790000px;}
.ye1{bottom:150.231000px;}
.y167{bottom:150.427500px;}
.y1c0{bottom:153.172500px;}
.y166{bottom:154.672500px;}
.y80{bottom:156.490500px;}
.y22f{bottom:158.041500px;}
.y19e{bottom:158.790000px;}
.y214{bottom:158.815500px;}
.y244{bottom:158.826000px;}
.y1f6{bottom:159.181500px;}
.yb1{bottom:159.240000px;}
.y13a{bottom:159.322500px;}
.y1a6{bottom:159.349500px;}
.y5b{bottom:159.367500px;}
.y71{bottom:159.399000px;}
.y27a{bottom:162.829500px;}
.y2b3{bottom:165.282000px;}
.y2c{bottom:166.290000px;}
.ye0{bottom:167.013000px;}
.y2e8{bottom:167.790000px;}
.y165{bottom:170.040000px;}
.y164{bottom:174.172500px;}
.yb0{bottom:175.740000px;}
.y22e{bottom:177.541500px;}
.y19d{bottom:178.290000px;}
.y213{bottom:178.323000px;}
.y243{bottom:178.326000px;}
.y10c{bottom:178.489500px;}
.y1f5{bottom:178.812000px;}
.y139{bottom:178.999500px;}
.y1a5{bottom:179.035500px;}
.y5a{bottom:179.059500px;}
.y70{bottom:179.103000px;}
.y2b2{bottom:181.782000px;}
.y2b{bottom:182.790000px;}
.y2e7{bottom:184.290000px;}
.y163{bottom:193.672500px;}
.yde{bottom:194.115000px;}
.y22d{bottom:197.041500px;}
.y19c{bottom:197.790000px;}
.y242{bottom:197.826000px;}
.y212{bottom:197.832000px;}
.y2b1{bottom:198.282000px;}
.y1f4{bottom:198.442500px;}
.y138{bottom:198.676500px;}
.y1a4{bottom:198.723000px;}
.y59{bottom:198.751500px;}
.y6f{bottom:198.805500px;}
.y2a{bottom:199.290000px;}
.yaf{bottom:199.740000px;}
.y2e6{bottom:200.790000px;}
.y10b{bottom:207.739500px;}
.y1bf{bottom:212.053500px;}
.y162{bottom:213.172500px;}
.y2b0{bottom:214.782000px;}
.y29{bottom:215.790000px;}
.y22c{bottom:216.541500px;}
.y19b{bottom:217.290000px;}
.y241{bottom:217.326000px;}
.y211{bottom:217.341000px;}
.y1f3{bottom:218.073000px;}
.y137{bottom:218.353500px;}
.y58{bottom:218.445000px;}
.y6e{bottom:218.508000px;}
.y7f{bottom:220.945500px;}
.ydd{bottom:222.880500px;}
.y269{bottom:229.051500px;}
.y2af{bottom:231.282000px;}
.y1be{bottom:231.649500px;}
.y28{bottom:232.290000px;}
.y161{bottom:232.672500px;}
.y2e5{bottom:233.790000px;}
.yae{bottom:234.990000px;}
.y22b{bottom:236.041500px;}
.y19a{bottom:236.790000px;}
.y240{bottom:236.826000px;}
.y210{bottom:236.848500px;}
.y1f2{bottom:237.703500px;}
.y136{bottom:238.030500px;}
.y57{bottom:238.137000px;}
.y6d{bottom:238.212000px;}
.y7e{bottom:240.445500px;}
.y2ae{bottom:247.782000px;}
.y268{bottom:248.551500px;}
.y27{bottom:248.790000px;}
.y2e4{bottom:250.290000px;}
.y1bd{bottom:251.244000px;}
.ydc{bottom:251.644500px;}
.y22a{bottom:255.541500px;}
.y199{bottom:256.290000px;}
.y23f{bottom:256.326000px;}
.y135{bottom:257.707500px;}
.y56{bottom:257.829000px;}
.y6c{bottom:257.914500px;}
.y7d{bottom:259.945500px;}
.y160{bottom:259.953000px;}
.y2ad{bottom:264.282000px;}
.y26{bottom:265.290000px;}
.y2e3{bottom:266.790000px;}
.y1a3{bottom:267.021000px;}
.y267{bottom:268.051500px;}
.y15e{bottom:270.027000px;}
.y1bc{bottom:270.840000px;}
.ydb{bottom:271.144500px;}
.y229{bottom:275.041500px;}
.y1da{bottom:275.610000px;}
.y198{bottom:275.790000px;}
.y23e{bottom:275.826000px;}
.y20f{bottom:275.874000px;}
.y134{bottom:277.386000px;}
.y55{bottom:277.521000px;}
.y6b{bottom:277.617000px;}
.y15f{bottom:279.318000px;}
.y7c{bottom:279.445500px;}
.y2ac{bottom:280.782000px;}
.y25{bottom:281.790000px;}
.y2e2{bottom:283.290000px;}
.y10a{bottom:285.115500px;}
.y97{bottom:285.538500px;}
.y266{bottom:287.551500px;}
.y1bb{bottom:290.434500px;}
.y228{bottom:294.541500px;}
.y197{bottom:295.290000px;}
.y23d{bottom:295.326000px;}
.y133{bottom:297.063000px;}
.y54{bottom:297.214500px;}
.y2ab{bottom:297.282000px;}
.y6a{bottom:297.321000px;}
.y24{bottom:298.290000px;}
.y7b{bottom:298.945500px;}
.yda{bottom:299.299500px;}
.y2e1{bottom:299.790000px;}
.yd9{bottom:299.908500px;}
.yd8{bottom:300.763500px;}
.y109{bottom:304.656000px;}
.y96{bottom:305.058000px;}
.yad{bottom:305.061000px;}
.y265{bottom:307.051500px;}
.y1f1{bottom:309.045000px;}
.y15d{bottom:309.913500px;}
.y1ba{bottom:310.030500px;}
.y2aa{bottom:313.782000px;}
.y227{bottom:314.041500px;}
.y23{bottom:314.790000px;}
.y23c{bottom:314.826000px;}
.y2e0{bottom:316.290000px;}
.y132{bottom:316.740000px;}
.y53{bottom:316.906500px;}
.y69{bottom:317.023500px;}
.y7a{bottom:318.445500px;}
.y108{bottom:324.195000px;}
.y95{bottom:324.576000px;}
.yac{bottom:324.582000px;}
.y1f0{bottom:325.545000px;}
.y264{bottom:326.551500px;}
.y15c{bottom:329.413500px;}
.y1b9{bottom:329.626500px;}
.y2a9{bottom:330.282000px;}
.yd7{bottom:330.693000px;}
.y22{bottom:331.290000px;}
.y2df{bottom:332.790000px;}
.y226{bottom:333.541500px;}
.y1d9{bottom:333.930000px;}
.y196{bottom:334.290000px;}
.y23b{bottom:334.326000px;}
.y20e{bottom:334.416000px;}
.y131{bottom:336.417000px;}
.y52{bottom:336.598500px;}
.y68{bottom:336.727500px;}
.y79{bottom:337.945500px;}
.y1ef{bottom:342.045000px;}
.y107{bottom:343.735500px;}
.y94{bottom:344.094000px;}
.yab{bottom:344.103000px;}
.y263{bottom:346.051500px;}
.y2a8{bottom:346.782000px;}
.y21{bottom:347.790000px;}
.y15b{bottom:348.913500px;}
.y1b8{bottom:349.221000px;}
.y2de{bottom:349.290000px;}
.yd6{bottom:350.193000px;}
.y225{bottom:353.041500px;}
.y1d8{bottom:353.430000px;}
.y195{bottom:353.790000px;}
.y23a{bottom:353.826000px;}
.y20d{bottom:353.923500px;}
.y51{bottom:356.290500px;}
.y67{bottom:356.430000px;}
.y78{bottom:357.445500px;}
.y1ee{bottom:358.545000px;}
.y2a7{bottom:363.282000px;}
.y93{bottom:363.612000px;}
.y262{bottom:365.551500px;}
.y2dd{bottom:365.790000px;}
.y15a{bottom:368.413500px;}
.y1b7{bottom:368.817000px;}
.y130{bottom:369.948000px;}
.y224{bottom:372.541500px;}
.y1d7{bottom:372.930000px;}
.y194{bottom:373.290000px;}
.y239{bottom:373.326000px;}
.y20c{bottom:373.432500px;}
.y1ed{bottom:375.045000px;}
.y50{bottom:375.984000px;}
.y66{bottom:376.132500px;}
.y20{bottom:376.738500px;}
.y77{bottom:376.945500px;}
.yd5{bottom:378.958500px;}
.y2a6{bottom:379.782000px;}
.yd4{bottom:379.813500px;}
.y106{bottom:379.935000px;}
.y2dc{bottom:382.290000px;}
.y92{bottom:383.130000px;}
.yaa{bottom:383.167500px;}
.y261{bottom:385.051500px;}
.y159{bottom:387.913500px;}
.y1b6{bottom:388.413000px;}
.y1ec{bottom:391.545000px;}
.y223{bottom:392.041500px;}
.y1d6{bottom:392.430000px;}
.y193{bottom:392.790000px;}
.y238{bottom:392.826000px;}
.y20b{bottom:392.940000px;}
.y4f{bottom:395.676000px;}
.y65{bottom:395.836500px;}
.y2a5{bottom:396.282000px;}
.y1f{bottom:396.297000px;}
.y76{bottom:396.445500px;}
.y2db{bottom:398.790000px;}
.y91{bottom:402.649500px;}
.y260{bottom:404.551500px;}
.y158{bottom:407.413500px;}
.yd3{bottom:407.722500px;}
.y1b5{bottom:408.007500px;}
.y1eb{bottom:408.045000px;}
.y222{bottom:411.541500px;}
.y1d5{bottom:411.930000px;}
.y192{bottom:412.290000px;}
.y20a{bottom:412.449000px;}
.y2a4{bottom:412.782000px;}
.y2da{bottom:415.290000px;}
.y4e{bottom:415.368000px;}
.y64{bottom:415.539000px;}
.y1e{bottom:415.855500px;}
.y75{bottom:415.945500px;}
.y105{bottom:416.134500px;}
.y90{bottom:422.167500px;}
.y25f{bottom:424.051500px;}
.y1ea{bottom:424.545000px;}
.y157{bottom:426.913500px;}
.yd2{bottom:427.222500px;}
.y1b4{bottom:427.603500px;}
.y12f{bottom:429.157500px;}
.y2a3{bottom:429.282000px;}
.y221{bottom:431.041500px;}
.y1d4{bottom:431.430000px;}
.y191{bottom:431.790000px;}
.y237{bottom:431.826000px;}
.y209{bottom:431.958000px;}
.y4d{bottom:435.060000px;}
.y63{bottom:435.241500px;}
.y1d{bottom:435.414000px;}
.y74{bottom:435.445500px;}
.y104{bottom:435.675000px;}
.y1e9{bottom:441.045000px;}
.y8f{bottom:441.685500px;}
.y25e{bottom:443.551500px;}
.y2a2{bottom:445.782000px;}
.y156{bottom:446.413500px;}
.yd1{bottom:446.722500px;}
.y1b3{bottom:447.199500px;}
.y2d9{bottom:448.290000px;}
.y12e{bottom:448.834500px;}
.y220{bottom:450.541500px;}
.y1d3{bottom:450.930000px;}
.y190{bottom:451.290000px;}
.y208{bottom:451.465500px;}
.ya9{bottom:451.501500px;}
.y4c{bottom:454.753500px;}
.y62{bottom:454.945500px;}
.y103{bottom:455.214000px;}
.y1e8{bottom:457.545000px;}
.y8e{bottom:461.203500px;}
.y2a1{bottom:462.282000px;}
.y25d{bottom:463.051500px;}
.y2d8{bottom:464.790000px;}
.y155{bottom:465.913500px;}
.yd0{bottom:466.222500px;}
.y1b2{bottom:466.794000px;}
.y12d{bottom:468.511500px;}
.y21f{bottom:470.041500px;}
.y1d2{bottom:470.430000px;}
.y18f{bottom:470.790000px;}
.y207{bottom:470.974500px;}
.ya8{bottom:471.024000px;}
.y1e7{bottom:474.045000px;}
.y4b{bottom:474.445500px;}
.y1c{bottom:474.589500px;}
.y102{bottom:474.754500px;}
.y2a0{bottom:478.782000px;}
.y8d{bottom:480.721500px;}
.y2d7{bottom:481.290000px;}
.y25c{bottom:482.551500px;}
.ycf{bottom:485.722500px;}
.y1b1{bottom:486.390000px;}
.y12c{bottom:488.188500px;}
.y21e{bottom:489.541500px;}
.y1d1{bottom:489.930000px;}
.y18e{bottom:490.290000px;}
.y206{bottom:490.482000px;}
.ya7{bottom:490.545000px;}
.y4a{bottom:494.137500px;}
.y101{bottom:494.295000px;}
.y29f{bottom:495.282000px;}
.y2d6{bottom:497.790000px;}
.y153{bottom:499.044000px;}
.y8c{bottom:500.241000px;}
.y25b{bottom:502.051500px;}
.y1b0{bottom:505.986000px;}
.y1e6{bottom:507.045000px;}
.y12b{bottom:507.867000px;}
.y236{bottom:508.741500px;}
.y21d{bottom:509.041500px;}
.y1d0{bottom:509.430000px;}
.y205{bottom:509.991000px;}
.ya6{bottom:510.066000px;}
.yce{bottom:510.613500px;}
.y29e{bottom:511.782000px;}
.y49{bottom:513.829500px;}
.y100{bottom:513.834000px;}
.y2d5{bottom:514.290000px;}
.y61{bottom:515.406000px;}
.y152{bottom:518.544000px;}
.y8b{bottom:519.759000px;}
.y25a{bottom:521.551500px;}
.y18d{bottom:523.290000px;}
.y1e5{bottom:523.545000px;}
.y235{bottom:525.241500px;}
.y1af{bottom:525.580500px;}
.ycd{bottom:526.402500px;}
.ycc{bottom:526.408500px;}
.y12a{bottom:527.544000px;}
.y29d{bottom:528.282000px;}
.y21c{bottom:528.541500px;}
.y1cf{bottom:528.930000px;}
.y204{bottom:529.500000px;}
.ya5{bottom:529.587000px;}
.y2d4{bottom:530.790000px;}
.y60{bottom:531.906000px;}
.yff{bottom:533.374500px;}
.y48{bottom:533.523000px;}
.y151{bottom:538.042500px;}
.y8a{bottom:539.277000px;}
.y1b{bottom:539.850000px;}
.y1e4{bottom:540.045000px;}
.y259{bottom:541.051500px;}
.y234{bottom:541.741500px;}
.y29c{bottom:544.782000px;}
.y1ae{bottom:545.176500px;}
.y1a2{bottom:545.910000px;}
.y129{bottom:547.221000px;}
.y2d3{bottom:547.290000px;}
.y21b{bottom:548.040000px;}
.y14d{bottom:548.059500px;}
.y1ce{bottom:548.430000px;}
.y203{bottom:549.007500px;}
.ya4{bottom:549.108000px;}
.yfe{bottom:552.915000px;}
.y47{bottom:553.215000px;}
.y1e3{bottom:556.545000px;}
.y150{bottom:557.542500px;}
.y233{bottom:558.241500px;}
.y89{bottom:558.795000px;}
.y1a{bottom:559.408500px;}
.y258{bottom:560.551500px;}
.ycb{bottom:561.282000px;}
.y1a1{bottom:562.410000px;}
.y2d2{bottom:563.790000px;}
.y1ad{bottom:564.771000px;}
.y128{bottom:566.898000px;}
.y21a{bottom:567.540000px;}
.y1cd{bottom:567.930000px;}
.y202{bottom:568.516500px;}
.ya3{bottom:568.630500px;}
.yfd{bottom:572.454000px;}
.y46{bottom:572.907000px;}
.y1e2{bottom:573.045000px;}
.y232{bottom:574.741500px;}
.y14f{bottom:577.042500px;}
.y29b{bottom:577.782000px;}
.y88{bottom:578.313000px;}
.y1a0{bottom:578.910000px;}
.y257{bottom:580.051500px;}
.y2d1{bottom:580.290000px;}
.y18c{bottom:581.463000px;}
.y1ac{bottom:584.367000px;}
.y154{bottom:584.467500px;}
.y127{bottom:586.575000px;}
.y219{bottom:587.040000px;}
.y201{bottom:588.024000px;}
.ya2{bottom:588.151500px;}
.y19{bottom:588.717000px;}
.y1e1{bottom:589.545000px;}
.yca{bottom:590.047500px;}
.y45{bottom:592.599000px;}
.y29a{bottom:594.282000px;}
.y14e{bottom:596.542500px;}
.y2d0{bottom:596.790000px;}
.y87{bottom:597.832500px;}
.y231{bottom:598.740000px;}
.y256{bottom:599.551500px;}
.y18b{bottom:600.963000px;}
.y1ab{bottom:603.963000px;}
.yfc{bottom:605.574000px;}
.y1e0{bottom:606.045000px;}
.y126{bottom:606.252000px;}
.y218{bottom:606.540000px;}
.y1cc{bottom:606.750000px;}
.y200{bottom:607.533000px;}
.ya1{bottom:607.672500px;}
.y18{bottom:608.275500px;}
.yc9{bottom:609.547500px;}
.y299{bottom:610.782000px;}
.y44{bottom:612.292500px;}
.y2cf{bottom:613.290000px;}
.y86{bottom:617.350500px;}
.y26a{bottom:619.051500px;}
.y18a{bottom:620.463000px;}
.y1df{bottom:622.545000px;}
.y1aa{bottom:623.557500px;}
.y125{bottom:625.930500px;}
.y217{bottom:626.040000px;}
.y1ff{bottom:627.042000px;}
.ya0{bottom:627.193500px;}
.y14c{bottom:627.270000px;}
.y298{bottom:627.282000px;}
.y17{bottom:627.834000px;}
.yc8{bottom:629.047500px;}
.y2ce{bottom:629.790000px;}
.y43{bottom:631.984500px;}
.y230{bottom:633.990000px;}
.y85{bottom:636.868500px;}
.y255{bottom:638.551500px;}
.y189{bottom:639.963000px;}
.y297{bottom:643.782000px;}
.y124{bottom:645.607500px;}
.y2cd{bottom:646.290000px;}
.y1de{bottom:646.545000px;}
.y1fe{bottom:646.549500px;}
.y9f{bottom:646.716000px;}
.y14b{bottom:646.770000px;}
.y16{bottom:647.392500px;}
.yc7{bottom:648.547500px;}
.y42{bottom:651.676500px;}
.y188{bottom:659.463000px;}
.y296{bottom:660.282000px;}
.y2cc{bottom:662.790000px;}
.y1dd{bottom:663.045000px;}
.y1cb{bottom:665.068500px;}
.y123{bottom:665.284500px;}
.y1fd{bottom:666.058500px;}
.y14a{bottom:666.270000px;}
.y15{bottom:666.952500px;}
.yc6{bottom:668.047500px;}
.y41{bottom:671.368500px;}
.y295{bottom:676.782000px;}
.y187{bottom:678.963000px;}
.y2cb{bottom:679.290000px;}
.y9e{bottom:679.779000px;}
.y1ca{bottom:684.568500px;}
.y122{bottom:684.961500px;}
.y1fc{bottom:685.566000px;}
.y149{bottom:685.770000px;}
.y14{bottom:686.511000px;}
.y40{bottom:691.062000px;}
.y294{bottom:693.282000px;}
.yfb{bottom:693.990000px;}
.y2ca{bottom:695.790000px;}
.yc5{bottom:696.811500px;}
.y1dc{bottom:698.293500px;}
.y186{bottom:698.463000px;}
.y84{bottom:699.300000px;}
.y254{bottom:701.106000px;}
.y1c9{bottom:704.068500px;}
.y121{bottom:704.638500px;}
.y148{bottom:705.270000px;}
.y13{bottom:706.069500px;}
.y293{bottom:709.782000px;}
.yfa{bottom:710.490000px;}
.y3f{bottom:710.754000px;}
.y2c9{bottom:712.290000px;}
.y83{bottom:715.800000px;}
.yc4{bottom:722.341500px;}
.y253{bottom:722.370000px;}
.y1c8{bottom:723.568500px;}
.y120{bottom:724.315500px;}
.y12{bottom:725.628000px;}
.y292{bottom:726.282000px;}
.yf9{bottom:726.990000px;}
.y2c8{bottom:728.790000px;}
.y3e{bottom:730.446000px;}
.y82{bottom:732.300000px;}
.y185{bottom:737.136000px;}
.y9d{bottom:738.364500px;}
.y252{bottom:738.870000px;}
.y147{bottom:740.152500px;}
.y291{bottom:742.782000px;}
.y1c7{bottom:743.068500px;}
.yf8{bottom:743.490000px;}
.y11f{bottom:743.992500px;}
.y11{bottom:745.186500px;}
.y2c7{bottom:745.290000px;}
.y1fb{bottom:749.235000px;}
.y3d{bottom:750.138000px;}
.yc3{bottom:751.105500px;}
.y251{bottom:755.370000px;}
.y9c{bottom:757.885500px;}
.y290{bottom:759.282000px;}
.yf7{bottom:759.990000px;}
.y2c6{bottom:761.790000px;}
.y1c6{bottom:762.568500px;}
.y11e{bottom:763.671000px;}
.y10{bottom:764.745000px;}
.y1fa{bottom:765.735000px;}
.y3c{bottom:769.831500px;}
.yc2{bottom:770.605500px;}
.y250{bottom:771.870000px;}
.y146{bottom:775.035000px;}
.y28f{bottom:775.782000px;}
.yf6{bottom:776.490000px;}
.y9b{bottom:777.406500px;}
.y2c5{bottom:778.290000px;}
.y1c5{bottom:782.068500px;}
.y1f9{bottom:782.235000px;}
.y11d{bottom:783.348000px;}
.yf{bottom:784.303500px;}
.y278{bottom:788.683500px;}
.y3b{bottom:789.523500px;}
.yc1{bottom:790.105500px;}
.y28e{bottom:792.282000px;}
.yf5{bottom:792.990000px;}
.y2c4{bottom:794.790000px;}
.y24f{bottom:795.870000px;}
.y9a{bottom:796.929000px;}
.y1c4{bottom:801.568500px;}
.y11c{bottom:803.025000px;}
.ye{bottom:803.862000px;}
.y184{bottom:805.059000px;}
.y277{bottom:805.183500px;}
.y145{bottom:805.851000px;}
.y28d{bottom:808.782000px;}
.y3a{bottom:809.215500px;}
.yf4{bottom:809.490000px;}
.yc0{bottom:809.605500px;}
.y2c3{bottom:811.290000px;}
.y24e{bottom:812.370000px;}
.y99{bottom:816.450000px;}
.y144{bottom:819.051000px;}
.y1c3{bottom:821.068500px;}
.y276{bottom:821.683500px;}
.y11b{bottom:822.702000px;}
.yd{bottom:823.420500px;}
.y183{bottom:824.559000px;}
.y28c{bottom:825.282000px;}
.yf3{bottom:825.990000px;}
.y2c2{bottom:827.790000px;}
.y39{bottom:828.907500px;}
.ybf{bottom:829.105500px;}
.y275{bottom:838.183500px;}
.y28b{bottom:841.782000px;}
.y11a{bottom:842.379000px;}
.yf2{bottom:842.490000px;}
.yc{bottom:842.979000px;}
.y182{bottom:844.059000px;}
.y2c1{bottom:844.290000px;}
.y24d{bottom:847.620000px;}
.y38{bottom:848.601000px;}
.ybe{bottom:848.605500px;}
.y274{bottom:855.280500px;}
.y143{bottom:855.622500px;}
.y28a{bottom:858.282000px;}
.yf1{bottom:858.990000px;}
.y2c0{bottom:860.790000px;}
.y119{bottom:862.056000px;}
.yb{bottom:862.537500px;}
.y181{bottom:863.559000px;}
.ybd{bottom:868.105500px;}
.y37{bottom:868.293000px;}
.y273{bottom:872.379000px;}
.y289{bottom:874.782000px;}
.yf0{bottom:875.490000px;}
.y2bf{bottom:877.288500px;}
.y98{bottom:880.455000px;}
.y118{bottom:881.734500px;}
.ya{bottom:882.096000px;}
.y1c2{bottom:883.350000px;}
.y141{bottom:886.438500px;}
.ybc{bottom:887.605500px;}
.y36{bottom:887.985000px;}
.y272{bottom:888.879000px;}
.y17a{bottom:890.841000px;}
.y288{bottom:891.282000px;}
.yef{bottom:891.990000px;}
.y2be{bottom:893.788500px;}
.y140{bottom:899.638500px;}
.y117{bottom:901.411500px;}
.y9{bottom:901.654500px;}
.y24c{bottom:902.226000px;}
.y271{bottom:905.379000px;}
.y142{bottom:906.478500px;}
.y179{bottom:906.702000px;}
.ybb{bottom:907.105500px;}
.y35{bottom:907.677000px;}
.y287{bottom:907.782000px;}
.yee{bottom:908.490000px;}
.y2bd{bottom:910.288500px;}
.y178{bottom:910.834500px;}
.y17e{bottom:913.902000px;}
.y177{bottom:914.967000px;}
.y176{bottom:919.099500px;}
.y116{bottom:921.088500px;}
.y8{bottom:921.213000px;}
.y270{bottom:921.879000px;}
.y175{bottom:923.232000px;}
.y24b{bottom:923.490000px;}
.y17d{bottom:923.976000px;}
.y286{bottom:924.282000px;}
.yed{bottom:924.990000px;}
.y2bc{bottom:926.788500px;}
.y174{bottom:927.363000px;}
.y34{bottom:927.370500px;}
.y173{bottom:931.495500px;}
.y180{bottom:932.797500px;}
.y172{bottom:935.628000px;}
.y26f{bottom:938.379000px;}
.y13f{bottom:938.790000px;}
.y24a{bottom:939.990000px;}
.yba{bottom:940.105500px;}
.y16a{bottom:940.545000px;}
.y115{bottom:940.765500px;}
.y7{bottom:940.773000px;}
.y285{bottom:940.782000px;}
.yec{bottom:941.490000px;}
.y2bb{bottom:943.288500px;}
.y33{bottom:947.062500px;}
.y171{bottom:952.158000px;}
.y17f{bottom:954.582000px;}
.y26e{bottom:954.879000px;}
.y170{bottom:956.290500px;}
.y249{bottom:956.490000px;}
.y284{bottom:957.282000px;}
.yeb{bottom:957.990000px;}
.y13e{bottom:958.290000px;}
.y2ba{bottom:959.788500px;}
.y6{bottom:960.331500px;}
.y16f{bottom:960.423000px;}
.y114{bottom:960.442500px;}
.y16e{bottom:964.555500px;}
.y17c{bottom:965.412000px;}
.y32{bottom:966.754500px;}
.y16d{bottom:968.688000px;}
.y26d{bottom:971.976000px;}
.y16c{bottom:972.820500px;}
.y248{bottom:972.990000px;}
.y283{bottom:973.782000px;}
.yea{bottom:974.490000px;}
.y17b{bottom:975.486000px;}
.y2b9{bottom:976.288500px;}
.y16b{bottom:976.953000px;}
.y13d{bottom:977.788500px;}
.y113{bottom:980.119500px;}
.y31{bottom:986.446500px;}
.y247{bottom:989.490000px;}
.y5{bottom:989.640000px;}
.y282{bottom:990.282000px;}
.ye9{bottom:990.990000px;}
.y2b8{bottom:992.788500px;}
.yb9{bottom:997.288500px;}
.y112{bottom:999.798000px;}
.y246{bottom:1005.990000px;}
.y4{bottom:1006.140000px;}
.y281{bottom:1006.782000px;}
.y26c{bottom:1007.226000px;}
.ye8{bottom:1007.490000px;}
.y2b7{bottom:1009.288500px;}
.yb8{bottom:1016.788500px;}
.y111{bottom:1019.475000px;}
.y280{bottom:1023.282000px;}
.y1db{bottom:1023.990000px;}
.y2b6{bottom:1025.788500px;}
.y245{bottom:1026.990000px;}
.y1a9{bottom:1031.488500px;}
.ye7{bottom:1031.490000px;}
.yb7{bottom:1036.288500px;}
.y27f{bottom:1039.782000px;}
.y3{bottom:1042.138500px;}
.y2b5{bottom:1042.288500px;}
.ye6{bottom:1047.988500px;}
.y110{bottom:1055.149500px;}
.yb6{bottom:1055.788500px;}
.y2b4{bottom:1058.788500px;}
.y10f{bottom:1065.223500px;}
.y26b{bottom:1075.251000px;}
.yb5{bottom:1075.288500px;}
.y27e{bottom:1075.782000px;}
.y2{bottom:1081.138500px;}
.ye5{bottom:1083.238500px;}
.y1{bottom:1129.281000px;}
.h1b{height:30.660000px;}
.h9{height:32.550000px;}
.h2{height:37.200000px;}
.h8{height:37.536000px;}
.h6{height:44.175000px;}
.h5{height:44.574000px;}
.he{height:45.150000px;}
.h28{height:51.600000px;}
.h3{height:55.800000px;}
.ha{height:56.304000px;}
.h1e{height:57.630000px;}
.h25{height:60.705000px;}
.h23{height:61.155000px;}
.hb{height:61.275000px;}
.h22{height:64.413000px;}
.hf{height:64.695000px;}
.h10{height:64.809000px;}
.h13{height:65.151000px;}
.h11{height:65.211000px;}
.h20{height:70.230000px;}
.h7{height:70.380000px;}
.h24{height:77.805000px;}
.h12{height:78.033000px;}
.h19{height:80.262000px;}
.h21{height:84.471000px;}
.h16{height:92.175000px;}
.h1a{height:94.410000px;}
.hc{height:95.154000px;}
.h1c{height:96.975000px;}
.h27{height:101.571000px;}
.h1f{height:101.577000px;}
.h4{height:103.224000px;}
.hd{height:161.766000px;}
.h14{height:164.202000px;}
.h18{height:202.062000px;}
.h15{height:208.218000px;}
.h17{height:305.742000px;}
.h1d{height:307.398000px;}
.h26{height:323.928000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.536000px;}
.x5{left:86.406000px;}
.x6{left:93.543000px;}
.xa{left:102.046500px;}
.xc{left:107.937000px;}
.x7{left:119.055000px;}
.x58{left:121.488000px;}
.x1c{left:125.662500px;}
.x44{left:134.817000px;}
.x1d{left:137.854500px;}
.x3c{left:148.104000px;}
.x11{left:152.958000px;}
.x45{left:157.447500px;}
.x10{left:159.613500px;}
.x55{left:162.946500px;}
.x14{left:169.404000px;}
.x1e{left:173.040000px;}
.x13{left:176.058000px;}
.xb{left:191.653500px;}
.x15{left:198.825000px;}
.x27{left:201.069000px;}
.x46{left:210.652500px;}
.x1b{left:218.913000px;}
.xe{left:224.509500px;}
.x16{left:227.383500px;}
.x1f{left:230.520000px;}
.x41{left:231.814500px;}
.x52{left:240.604500px;}
.x47{left:244.792500px;}
.x3d{left:248.761500px;}
.x17{left:254.941500px;}
.x3e{left:261.144000px;}
.x53{left:269.415000px;}
.x18{left:277.680000px;}
.x3f{left:283.326000px;}
.x20{left:288.655500px;}
.x19{left:300.460500px;}
.x48{left:310.185000px;}
.x49{left:314.745000px;}
.xd{left:315.990000px;}
.x1a{left:322.173000px;}
.xf{left:332.014500px;}
.x12{left:344.812500px;}
.x21{left:347.446500px;}
.x42{left:350.230500px;}
.x54{left:356.998500px;}
.x4a{left:368.334000px;}
.x4b{left:402.088500px;}
.x22{left:407.046000px;}
.x28{left:412.278000px;}
.x43{left:419.248500px;}
.x40{left:424.470000px;}
.x23{left:429.486000px;}
.x57{left:440.338500px;}
.x56{left:442.020000px;}
.x3{left:446.457000px;}
.x8{left:463.464000px;}
.x4{left:471.969000px;}
.x38{left:481.887000px;}
.x26{left:487.539000px;}
.x9{left:488.976000px;}
.x59{left:491.409000px;}
.x4c{left:527.368500px;}
.x2c{left:530.001000px;}
.x24{left:533.904000px;}
.x25{left:566.253000px;}
.x2d{left:568.962000px;}
.x39{left:575.788500px;}
.x29{left:580.752000px;}
.x32{left:585.756000px;}
.x2b{left:594.649500px;}
.x2e{left:604.254000px;}
.x2f{left:605.529000px;}
.x3a{left:608.145000px;}
.x4d{left:614.713500px;}
.x33{left:617.694000px;}
.x2a{left:631.644000px;}
.x35{left:633.105000px;}
.x34{left:651.081000px;}
.x3b{left:652.561500px;}
.x1{left:659.715000px;}
.x36{left:663.828000px;}
.x30{left:667.032000px;}
.x4e{left:680.106000px;}
.x4f{left:684.666000px;}
.x50{left:738.255000px;}
.x51{left:772.009500px;}
.x31{left:777.709500px;}
.x37{left:790.779000px;}
@media print{
.vf{vertical-align:-85.781333pt;}
.ve{vertical-align:-29.381333pt;}
.v16{vertical-align:-24.320000pt;}
.v3{vertical-align:-20.746667pt;}
.v7{vertical-align:-13.109333pt;}
.v1{vertical-align:-12.160000pt;}
.v5{vertical-align:-0.949333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:3.040000pt;}
.v2{vertical-align:12.160000pt;}
.va{vertical-align:14.896000pt;}
.v6{vertical-align:21.344000pt;}
.v14{vertical-align:22.293333pt;}
.vc{vertical-align:24.320000pt;}
.v1a{vertical-align:33.034667pt;}
.v8{vertical-align:34.453333pt;}
.v12{vertical-align:35.818667pt;}
.vb{vertical-align:37.717333pt;}
.v18{vertical-align:39.013333pt;}
.vd{vertical-align:41.290667pt;}
.v10{vertical-align:42.666667pt;}
.v15{vertical-align:46.933333pt;}
.v4{vertical-align:57.328000pt;}
.v1b{vertical-align:89.344000pt;}
.v13{vertical-align:113.685333pt;}
.v11{vertical-align:127.978667pt;}
.v17{vertical-align:129.450667pt;}
.v19{vertical-align:144.144000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002667pt;}
.ls5d{letter-spacing:0.010667pt;}
.ls74{letter-spacing:0.020776pt;}
.ls66{letter-spacing:0.023443pt;}
.ls20{letter-spacing:0.485333pt;}
.ls2c{letter-spacing:1.269333pt;}
.ls7d{letter-spacing:2.021333pt;}
.ls73{letter-spacing:2.024000pt;}
.ls76{letter-spacing:2.026667pt;}
.lsb{letter-spacing:2.656000pt;}
.ls42{letter-spacing:2.661333pt;}
.ls3{letter-spacing:3.029333pt;}
.ls88{letter-spacing:3.141333pt;}
.ls21{letter-spacing:3.146667pt;}
.ls83{letter-spacing:3.392000pt;}
.ls52{letter-spacing:3.589333pt;}
.ls11{letter-spacing:3.776000pt;}
.ls3b{letter-spacing:5.312000pt;}
.ls3a{letter-spacing:5.317333pt;}
.ls3c{letter-spacing:5.530667pt;}
.ls70{letter-spacing:5.578667pt;}
.ls69{letter-spacing:5.584000pt;}
.ls75{letter-spacing:5.717333pt;}
.ls85{letter-spacing:6.376000pt;}
.ls6a{letter-spacing:7.597333pt;}
.ls60{letter-spacing:7.600000pt;}
.ls36{letter-spacing:7.602667pt;}
.ls84{letter-spacing:7.845333pt;}
.ls80{letter-spacing:8.445333pt;}
.ls81{letter-spacing:8.450667pt;}
.ls16{letter-spacing:8.458667pt;}
.ls14{letter-spacing:8.461333pt;}
.ls18{letter-spacing:8.914667pt;}
.ls8c{letter-spacing:8.978667pt;}
.ls17{letter-spacing:9.474667pt;}
.ls9b{letter-spacing:9.594667pt;}
.ls91{letter-spacing:9.600000pt;}
.ls24{letter-spacing:9.762667pt;}
.lsa5{letter-spacing:10.077333pt;}
.lsa4{letter-spacing:10.082160pt;}
.ls4e{letter-spacing:10.197333pt;}
.ls4c{letter-spacing:10.200000pt;}
.ls4f{letter-spacing:10.202667pt;}
.ls71{letter-spacing:10.488000pt;}
.ls25{letter-spacing:10.514667pt;}
.ls6c{letter-spacing:10.522667pt;}
.ls7f{letter-spacing:10.618667pt;}
.lsa6{letter-spacing:10.648000pt;}
.lsa7{letter-spacing:10.653333pt;}
.ls45{letter-spacing:11.114667pt;}
.ls13{letter-spacing:11.277333pt;}
.ls15{letter-spacing:11.280000pt;}
.ls10{letter-spacing:11.282667pt;}
.ls3e{letter-spacing:11.400000pt;}
.ls8{letter-spacing:11.882667pt;}
.ls3f{letter-spacing:12.610667pt;}
.ls4d{letter-spacing:12.858667pt;}
.ls8f{letter-spacing:12.928000pt;}
.lsa3{letter-spacing:13.101333pt;}
.ls82{letter-spacing:13.776000pt;}
.lsf{letter-spacing:13.936000pt;}
.ls7c{letter-spacing:13.941333pt;}
.ls37{letter-spacing:13.994667pt;}
.lse{letter-spacing:14.098667pt;}
.ls53{letter-spacing:14.101333pt;}
.lsa{letter-spacing:14.104000pt;}
.ls50{letter-spacing:14.309333pt;}
.ls12{letter-spacing:14.314667pt;}
.ls1d{letter-spacing:14.328000pt;}
.ls51{letter-spacing:14.426667pt;}
.ls7{letter-spacing:14.432000pt;}
.ls9d{letter-spacing:14.482667pt;}
.ls9{letter-spacing:14.605333pt;}
.ls54{letter-spacing:14.621333pt;}
.ls1c{letter-spacing:14.888000pt;}
.ls43{letter-spacing:15.013333pt;}
.ls41{letter-spacing:15.018667pt;}
.ls39{letter-spacing:15.365333pt;}
.ls58{letter-spacing:15.432000pt;}
.ls26{letter-spacing:15.621333pt;}
.ls5f{letter-spacing:15.890667pt;}
.ls61{letter-spacing:16.130667pt;}
.ls9f{letter-spacing:16.176000pt;}
.ls8d{letter-spacing:16.216000pt;}
.ls7b{letter-spacing:16.560000pt;}
.ls1e{letter-spacing:16.621333pt;}
.ls77{letter-spacing:16.757333pt;}
.ls6e{letter-spacing:16.762667pt;}
.ls2e{letter-spacing:17.056000pt;}
.ls5a{letter-spacing:17.064000pt;}
.ls59{letter-spacing:17.066667pt;}
.ls87{letter-spacing:17.130667pt;}
.lsa2{letter-spacing:17.160000pt;}
.lsa1{letter-spacing:17.165333pt;}
.lsa0{letter-spacing:17.168000pt;}
.ls56{letter-spacing:17.312000pt;}
.ls57{letter-spacing:17.317333pt;}
.ls23{letter-spacing:17.600000pt;}
.ls40{letter-spacing:17.674667pt;}
.ls5c{letter-spacing:17.912000pt;}
.ls1a{letter-spacing:18.242667pt;}
.ls1b{letter-spacing:18.245333pt;}
.ls44{letter-spacing:18.448000pt;}
.lsc{letter-spacing:18.549333pt;}
.ls5b{letter-spacing:19.096000pt;}
.ls5e{letter-spacing:19.664000pt;}
.lsd{letter-spacing:19.685333pt;}
.ls9e{letter-spacing:19.746667pt;}
.lsae{letter-spacing:19.773333pt;}
.lsad{letter-spacing:19.778667pt;}
.lsaf{letter-spacing:19.784000pt;}
.ls99{letter-spacing:20.642667pt;}
.ls98{letter-spacing:20.645333pt;}
.ls9a{letter-spacing:20.648000pt;}
.ls4{letter-spacing:20.733333pt;}
.ls97{letter-spacing:21.032000pt;}
.ls8e{letter-spacing:21.581333pt;}
.ls68{letter-spacing:22.008000pt;}
.ls1f{letter-spacing:22.040000pt;}
.ls55{letter-spacing:22.258667pt;}
.ls5{letter-spacing:23.760000pt;}
.ls65{letter-spacing:24.034667pt;}
.ls6b{letter-spacing:24.904000pt;}
.ls63{letter-spacing:25.053333pt;}
.ls67{letter-spacing:25.786667pt;}
.ls46{letter-spacing:26.149333pt;}
.ls79{letter-spacing:26.192000pt;}
.ls62{letter-spacing:27.085333pt;}
.lsb1{letter-spacing:28.040000pt;}
.lsb0{letter-spacing:28.045333pt;}
.lsab{letter-spacing:28.797333pt;}
.lsaa{letter-spacing:28.816000pt;}
.ls64{letter-spacing:28.826667pt;}
.lsac{letter-spacing:30.818667pt;}
.ls95{letter-spacing:30.925333pt;}
.ls94{letter-spacing:30.930667pt;}
.ls96{letter-spacing:32.957333pt;}
.ls2f{letter-spacing:34.946667pt;}
.ls1{letter-spacing:42.666667pt;}
.ls6{letter-spacing:42.669333pt;}
.ls78{letter-spacing:44.013333pt;}
.ls8b{letter-spacing:46.922667pt;}
.ls8a{letter-spacing:50.666667pt;}
.ls22{letter-spacing:53.200000pt;}
.ls19{letter-spacing:54.213333pt;}
.ls2b{letter-spacing:55.786667pt;}
.ls28{letter-spacing:55.792000pt;}
.ls2a{letter-spacing:58.661333pt;}
.ls27{letter-spacing:58.666667pt;}
.ls89{letter-spacing:61.685333pt;}
.ls29{letter-spacing:61.781333pt;}
.ls35{letter-spacing:75.810667pt;}
.ls33{letter-spacing:75.909333pt;}
.ls32{letter-spacing:77.805333pt;}
.ls34{letter-spacing:79.128000pt;}
.ls31{letter-spacing:81.509333pt;}
.ls30{letter-spacing:88.954667pt;}
.ls47{letter-spacing:111.322667pt;}
.ls90{letter-spacing:143.296000pt;}
.ls93{letter-spacing:143.509333pt;}
.ls92{letter-spacing:148.757333pt;}
.ls2d{letter-spacing:153.141333pt;}
.lsa8{letter-spacing:185.477333pt;}
.ls48{letter-spacing:190.592000pt;}
.ls49{letter-spacing:192.922667pt;}
.ls4a{letter-spacing:195.253333pt;}
.ls4b{letter-spacing:198.128000pt;}
.ls38{letter-spacing:208.672000pt;}
.ls72{letter-spacing:213.594667pt;}
.lsa9{letter-spacing:220.698667pt;}
.ls9c{letter-spacing:266.896000pt;}
.ls7e{letter-spacing:382.346667pt;}
.ls3d{letter-spacing:388.202667pt;}
.ls6d{letter-spacing:421.301333pt;}
.ls6f{letter-spacing:453.989333pt;}
.ls7a{letter-spacing:477.720000pt;}
.ls86{letter-spacing:537.714667pt;}
.ws2{word-spacing:-92.106667pt;}
.wsb6{word-spacing:-80.000000pt;}
.wsb5{word-spacing:-62.800000pt;}
.ws14e{word-spacing:-62.000000pt;}
.ws78{word-spacing:-50.880000pt;}
.ws54{word-spacing:-50.666667pt;}
.ws8c{word-spacing:-50.240000pt;}
.wsac{word-spacing:-50.239488pt;}
.ws1{word-spacing:-49.600000pt;}
.ws62{word-spacing:-43.066667pt;}
.ws10d{word-spacing:-43.016000pt;}
.wsa3{word-spacing:-42.965333pt;}
.wsa4{word-spacing:-42.914667pt;}
.ws113{word-spacing:-42.813333pt;}
.wsc5{word-spacing:-42.712000pt;}
.ws3{word-spacing:-42.666667pt;}
.ws24{word-spacing:-42.661333pt;}
.ws162{word-spacing:-42.610667pt;}
.wsa5{word-spacing:-42.560000pt;}
.ws73{word-spacing:-42.509333pt;}
.ws5f{word-spacing:-42.458667pt;}
.ws63{word-spacing:-42.408000pt;}
.ws112{word-spacing:-42.357333pt;}
.wse3{word-spacing:-42.306667pt;}
.wsb3{word-spacing:-42.272000pt;}
.wsb2{word-spacing:-42.266667pt;}
.ws65{word-spacing:-42.256000pt;}
.ws149{word-spacing:-42.224000pt;}
.ws53{word-spacing:-42.205333pt;}
.ws34{word-spacing:-42.104000pt;}
.ws41{word-spacing:-42.002667pt;}
.ws6e{word-spacing:-41.952000pt;}
.ws90{word-spacing:-41.851224pt;}
.ws31{word-spacing:-41.850667pt;}
.wsc2{word-spacing:-41.850565pt;}
.ws8e{word-spacing:-41.818667pt;}
.ws70{word-spacing:-41.800000pt;}
.wsc4{word-spacing:-41.799443pt;}
.wsd1{word-spacing:-41.749333pt;}
.wsfa{word-spacing:-41.693333pt;}
.wsf8{word-spacing:-41.690667pt;}
.ws6d{word-spacing:-41.648000pt;}
.ws39{word-spacing:-41.597333pt;}
.ws145{word-spacing:-41.496000pt;}
.ws14f{word-spacing:-41.445333pt;}
.ws9c{word-spacing:-41.293333pt;}
.ws5a{word-spacing:-41.192000pt;}
.ws11b{word-spacing:-41.141333pt;}
.ws11c{word-spacing:-41.090667pt;}
.ws136{word-spacing:-41.040000pt;}
.wsa2{word-spacing:-40.938667pt;}
.wsa0{word-spacing:-40.909333pt;}
.wsa1{word-spacing:-40.888000pt;}
.wsca{word-spacing:-40.837333pt;}
.ws4c{word-spacing:-40.736000pt;}
.ws1f{word-spacing:-40.634667pt;}
.wscb{word-spacing:-40.584557pt;}
.wsae{word-spacing:-40.584000pt;}
.wsb{word-spacing:-40.482667pt;}
.wsdf{word-spacing:-40.381333pt;}
.ws14b{word-spacing:-40.330667pt;}
.ws13b{word-spacing:-40.280557pt;}
.ws3b{word-spacing:-40.280000pt;}
.wsc{word-spacing:-40.229333pt;}
.ws119{word-spacing:-40.178667pt;}
.ws131{word-spacing:-40.128000pt;}
.wsed{word-spacing:-40.127443pt;}
.wsf9{word-spacing:-40.077891pt;}
.ws9{word-spacing:-40.077333pt;}
.wsf2{word-spacing:-40.027224pt;}
.ws160{word-spacing:-40.026667pt;}
.ws1b{word-spacing:-40.004240pt;}
.ws69{word-spacing:-39.998960pt;}
.ws17{word-spacing:-39.874667pt;}
.ws111{word-spacing:-39.824000pt;}
.wsf1{word-spacing:-39.773891pt;}
.wsd9{word-spacing:-39.773333pt;}
.wsf6{word-spacing:-39.772776pt;}
.ws8b{word-spacing:-39.722667pt;}
.ws15{word-spacing:-39.672000pt;}
.wsd4{word-spacing:-39.621333pt;}
.wsd0{word-spacing:-39.620776pt;}
.wse7{word-spacing:-39.570667pt;}
.wse8{word-spacing:-39.549333pt;}
.ws45{word-spacing:-39.520000pt;}
.ws165{word-spacing:-39.418667pt;}
.wsbb{word-spacing:-39.368000pt;}
.ws25{word-spacing:-39.317891pt;}
.wsd7{word-spacing:-39.317333pt;}
.wse2{word-spacing:-39.274667pt;}
.wsa8{word-spacing:-39.269333pt;}
.ws3c{word-spacing:-39.267224pt;}
.ws18{word-spacing:-39.266667pt;}
.wsb4{word-spacing:-39.264000pt;}
.ws42{word-spacing:-39.165333pt;}
.ws114{word-spacing:-39.114667pt;}
.wsce{word-spacing:-39.064000pt;}
.wse0{word-spacing:-39.013333pt;}
.ws35{word-spacing:-38.963224pt;}
.ws77{word-spacing:-38.962667pt;}
.ws67{word-spacing:-38.912000pt;}
.ws49{word-spacing:-38.810667pt;}
.ws152{word-spacing:-38.810109pt;}
.wsec{word-spacing:-38.760000pt;}
.ws75{word-spacing:-38.709333pt;}
.ws10e{word-spacing:-38.658667pt;}
.wsf{word-spacing:-38.608000pt;}
.ws57{word-spacing:-38.557333pt;}
.wsc0{word-spacing:-38.546667pt;}
.ws13{word-spacing:-38.506667pt;}
.wse4{word-spacing:-38.405333pt;}
.ws76{word-spacing:-38.304000pt;}
.wsbc{word-spacing:-38.253333pt;}
.ws60{word-spacing:-38.202667pt;}
.ws44{word-spacing:-38.101333pt;}
.wsb0{word-spacing:-38.050667pt;}
.ws51{word-spacing:-38.000000pt;}
.ws2f{word-spacing:-37.899224pt;}
.ws46{word-spacing:-37.898667pt;}
.ws2c{word-spacing:-37.848000pt;}
.ws72{word-spacing:-37.797333pt;}
.ws13d{word-spacing:-37.746667pt;}
.ws104{word-spacing:-37.645333pt;}
.ws7{word-spacing:-37.594667pt;}
.wse{word-spacing:-37.544000pt;}
.wsbd{word-spacing:-37.493333pt;}
.ws139{word-spacing:-37.442667pt;}
.ws2b{word-spacing:-37.392000pt;}
.wsad{word-spacing:-37.341333pt;}
.ws4e{word-spacing:-37.333333pt;}
.wsba{word-spacing:-37.290667pt;}
.ws91{word-spacing:-37.240000pt;}
.ws10f{word-spacing:-37.138667pt;}
.ws50{word-spacing:-37.037333pt;}
.ws2a{word-spacing:-36.986667pt;}
.ws74{word-spacing:-36.936000pt;}
.wsa{word-spacing:-36.885333pt;}
.ws99{word-spacing:-36.834667pt;}
.ws9a{word-spacing:-36.794667pt;}
.wse6{word-spacing:-36.784000pt;}
.wse5{word-spacing:-36.768000pt;}
.wsbe{word-spacing:-36.733333pt;}
.ws116{word-spacing:-36.682667pt;}
.wsd3{word-spacing:-36.632000pt;}
.ws7e{word-spacing:-36.581333pt;}
.ws14{word-spacing:-36.530667pt;}
.ws66{word-spacing:-36.429333pt;}
.ws7f{word-spacing:-36.378667pt;}
.wscd{word-spacing:-36.328000pt;}
.ws1c{word-spacing:-36.277333pt;}
.ws9e{word-spacing:-36.226667pt;}
.ws9d{word-spacing:-36.210667pt;}
.wsc8{word-spacing:-36.074667pt;}
.ws12f{word-spacing:-36.074109pt;}
.wsb8{word-spacing:-36.024000pt;}
.wsb7{word-spacing:-36.010667pt;}
.wsb9{word-spacing:-36.005333pt;}
.ws3d{word-spacing:-35.973333pt;}
.ws94{word-spacing:-35.925333pt;}
.ws1d{word-spacing:-35.922667pt;}
.ws95{word-spacing:-35.872000pt;}
.ws153{word-spacing:-35.821891pt;}
.ws11a{word-spacing:-35.821333pt;}
.ws4b{word-spacing:-35.771224pt;}
.ws6{word-spacing:-35.770667pt;}
.ws12{word-spacing:-35.720000pt;}
.wscf{word-spacing:-35.669333pt;}
.ws29{word-spacing:-35.618667pt;}
.ws177{word-spacing:-35.584555pt;}
.ws15f{word-spacing:-35.584000pt;}
.ws71{word-spacing:-35.568000pt;}
.ws93{word-spacing:-35.517333pt;}
.ws5e{word-spacing:-35.416000pt;}
.ws55{word-spacing:-35.264000pt;}
.ws11d{word-spacing:-35.213333pt;}
.ws4a{word-spacing:-35.162667pt;}
.wsd2{word-spacing:-35.112000pt;}
.wsd8{word-spacing:-35.061333pt;}
.ws5c{word-spacing:-35.010667pt;}
.ws61{word-spacing:-34.960000pt;}
.wsc6{word-spacing:-34.858667pt;}
.ws174{word-spacing:-34.773333pt;}
.ws88{word-spacing:-34.656000pt;}
.ws1e{word-spacing:-34.605333pt;}
.ws10a{word-spacing:-34.554667pt;}
.wscc{word-spacing:-34.504000pt;}
.wsfd{word-spacing:-34.453333pt;}
.wsfb{word-spacing:-34.450667pt;}
.ws13a{word-spacing:-34.402667pt;}
.ws155{word-spacing:-34.389888pt;}
.ws15b{word-spacing:-34.389333pt;}
.ws6c{word-spacing:-34.352000pt;}
.ws159{word-spacing:-34.346667pt;}
.wsfc{word-spacing:-34.309333pt;}
.ws47{word-spacing:-34.301333pt;}
.ws16{word-spacing:-34.250667pt;}
.wsf0{word-spacing:-34.200000pt;}
.ws150{word-spacing:-34.149333pt;}
.ws9b{word-spacing:-34.098667pt;}
.ws23{word-spacing:-33.963221pt;}
.ws133{word-spacing:-33.962667pt;}
.ws20{word-spacing:-33.920000pt;}
.wsde{word-spacing:-33.845333pt;}
.ws92{word-spacing:-33.744000pt;}
.ws3a{word-spacing:-33.693333pt;}
.wsc9{word-spacing:-33.642667pt;}
.ws40{word-spacing:-33.592000pt;}
.ws105{word-spacing:-33.536555pt;}
.wsf7{word-spacing:-33.536000pt;}
.ws16e{word-spacing:-33.498667pt;}
.ws173{word-spacing:-33.493888pt;}
.ws21{word-spacing:-33.493333pt;}
.ws178{word-spacing:-33.492821pt;}
.ws36{word-spacing:-33.490667pt;}
.ws172{word-spacing:-33.450667pt;}
.ws134{word-spacing:-33.440000pt;}
.ws7a{word-spacing:-33.389333pt;}
.ws13e{word-spacing:-33.338667pt;}
.ws176{word-spacing:-33.323221pt;}
.ws171{word-spacing:-33.322667pt;}
.ws96{word-spacing:-33.288000pt;}
.ws15c{word-spacing:-33.280000pt;}
.ws170{word-spacing:-33.279488pt;}
.ws64{word-spacing:-33.237333pt;}
.ws38{word-spacing:-33.186667pt;}
.ws5b{word-spacing:-33.136000pt;}
.ws129{word-spacing:-33.109888pt;}
.ws22{word-spacing:-33.109333pt;}
.ws87{word-spacing:-33.108779pt;}
.ws175{word-spacing:-33.072555pt;}
.ws6b{word-spacing:-33.072000pt;}
.ws123{word-spacing:-33.067221pt;}
.ws0{word-spacing:-33.066667pt;}
.ws14c{word-spacing:-33.066112pt;}
.ws122{word-spacing:-33.050667pt;}
.ws107{word-spacing:-33.045333pt;}
.ws5{word-spacing:-32.984000pt;}
.ws4{word-spacing:-32.962667pt;}
.ws151{word-spacing:-32.933891pt;}
.wsfe{word-spacing:-32.933333pt;}
.ws33{word-spacing:-32.882667pt;}
.wsf3{word-spacing:-32.832000pt;}
.wsd5{word-spacing:-32.781333pt;}
.ws13c{word-spacing:-32.680000pt;}
.ws43{word-spacing:-32.629333pt;}
.ws163{word-spacing:-32.528000pt;}
.ws11{word-spacing:-32.477333pt;}
.wsd{word-spacing:-32.426667pt;}
.ws109{word-spacing:-32.426109pt;}
.ws98{word-spacing:-32.421333pt;}
.ws97{word-spacing:-32.418667pt;}
.wsaf{word-spacing:-32.325333pt;}
.ws32{word-spacing:-32.224000pt;}
.ws10{word-spacing:-32.021333pt;}
.ws137{word-spacing:-31.970667pt;}
.ws10c{word-spacing:-31.920000pt;}
.ws1a{word-spacing:-31.869333pt;}
.ws58{word-spacing:-31.818667pt;}
.ws19{word-spacing:-31.778667pt;}
.ws2d{word-spacing:-31.768000pt;}
.ws167{word-spacing:-31.717333pt;}
.ws5d{word-spacing:-31.666667pt;}
.ws3e{word-spacing:-31.616557pt;}
.ws7c{word-spacing:-31.616000pt;}
.ws8{word-spacing:-31.565333pt;}
.ws118{word-spacing:-31.464000pt;}
.wse1{word-spacing:-31.362667pt;}
.ws135{word-spacing:-31.312557pt;}
.ws138{word-spacing:-31.210667pt;}
.ws16d{word-spacing:-31.160000pt;}
.ws132{word-spacing:-31.058667pt;}
.wsf5{word-spacing:-30.906667pt;}
.ws168{word-spacing:-30.861891pt;}
.ws117{word-spacing:-30.805891pt;}
.ws130{word-spacing:-30.704557pt;}
.ws169{word-spacing:-30.704000pt;}
.ws56{word-spacing:-30.602109pt;}
.ws110{word-spacing:-30.551443pt;}
.ws179{word-spacing:-30.506667pt;}
.ws6f{word-spacing:-30.450667pt;}
.ws68{word-spacing:-30.450109pt;}
.ws2e{word-spacing:-30.247443pt;}
.ws146{word-spacing:-30.197891pt;}
.ws148{word-spacing:-30.196776pt;}
.ws89{word-spacing:-30.095443pt;}
.ws3f{word-spacing:-30.045333pt;}
.ws161{word-spacing:-30.044776pt;}
.ws59{word-spacing:-29.995224pt;}
.ws80{word-spacing:-29.994667pt;}
.ws14a{word-spacing:-29.994109pt;}
.ws10b{word-spacing:-29.944000pt;}
.ws81{word-spacing:-29.943443pt;}
.ws30{word-spacing:-29.893333pt;}
.ws120{word-spacing:-29.843224pt;}
.ws6a{word-spacing:-29.842109pt;}
.ws79{word-spacing:-29.741891pt;}
.ws11e{word-spacing:-29.437891pt;}
.ws11f{word-spacing:-29.437333pt;}
.ws102{word-spacing:-29.088000pt;}
.ws100{word-spacing:-29.085333pt;}
.ws4d{word-spacing:-28.933333pt;}
.wsff{word-spacing:-28.930109pt;}
.ws101{word-spacing:-28.893333pt;}
.ws103{word-spacing:-28.829333pt;}
.ws82{word-spacing:-28.626667pt;}
.ws7d{word-spacing:-28.474667pt;}
.ws52{word-spacing:-28.424000pt;}
.ws166{word-spacing:-28.373333pt;}
.ws7b{word-spacing:-28.272000pt;}
.wsef{word-spacing:-28.120000pt;}
.ws144{word-spacing:-28.069333pt;}
.ws48{word-spacing:-28.018667pt;}
.ws121{word-spacing:-27.765333pt;}
.ws37{word-spacing:-27.461333pt;}
.ws27{word-spacing:-27.309333pt;}
.ws26{word-spacing:-26.600000pt;}
.ws8d{word-spacing:-26.194667pt;}
.wsf4{word-spacing:-25.941891pt;}
.wsee{word-spacing:-25.789333pt;}
.ws28{word-spacing:-25.384000pt;}
.ws164{word-spacing:-23.712000pt;}
.ws115{word-spacing:-22.850667pt;}
.ws83{word-spacing:-22.496000pt;}
.ws16b{word-spacing:-22.394109pt;}
.ws16a{word-spacing:-22.344000pt;}
.ws12e{word-spacing:-22.040000pt;}
.wse9{word-spacing:-20.576000pt;}
.ws8a{word-spacing:-20.410667pt;}
.ws9f{word-spacing:-19.733333pt;}
.wsa6{word-spacing:-15.317333pt;}
.ws16c{word-spacing:-13.173333pt;}
.wsa7{word-spacing:-8.512000pt;}
.ws16f{word-spacing:-8.000000pt;}
.ws154{word-spacing:-7.997333pt;}
.ws8f{word-spacing:-0.050667pt;}
.ws15a{word-spacing:-0.042667pt;}
.ws147{word-spacing:-0.037333pt;}
.ws4f{word-spacing:0.000000pt;}
.wsdd{word-spacing:2.432000pt;}
.wsdb{word-spacing:8.106667pt;}
.wsda{word-spacing:8.867224pt;}
.wsc3{word-spacing:14.034667pt;}
.wseb{word-spacing:14.048000pt;}
.wsd6{word-spacing:14.050667pt;}
.wsc1{word-spacing:15.808000pt;}
.wsbf{word-spacing:16.973333pt;}
.wsc7{word-spacing:21.939224pt;}
.ws108{word-spacing:30.122667pt;}
.ws128{word-spacing:32.682667pt;}
.ws125{word-spacing:42.965333pt;}
.ws126{word-spacing:43.178667pt;}
.ws124{word-spacing:44.501333pt;}
.ws141{word-spacing:47.290667pt;}
.ws127{word-spacing:48.938667pt;}
.ws157{word-spacing:60.202667pt;}
.wsaa{word-spacing:61.013333pt;}
.ws143{word-spacing:73.344000pt;}
.ws13f{word-spacing:76.331221pt;}
.wsea{word-spacing:84.981333pt;}
.wsab{word-spacing:85.333333pt;}
.ws15d{word-spacing:96.256000pt;}
.ws12c{word-spacing:107.493333pt;}
.ws12b{word-spacing:107.514667pt;}
.ws86{word-spacing:110.080000pt;}
.wsa9{word-spacing:110.165333pt;}
.ws106{word-spacing:124.245333pt;}
.wsdc{word-spacing:126.565333pt;}
.ws14d{word-spacing:127.616000pt;}
.ws142{word-spacing:132.080000pt;}
.ws156{word-spacing:144.128000pt;}
.ws85{word-spacing:145.408000pt;}
.ws140{word-spacing:156.437333pt;}
.ws158{word-spacing:159.365333pt;}
.ws12d{word-spacing:171.920000pt;}
.ws15e{word-spacing:194.586667pt;}
.ws84{word-spacing:214.138667pt;}
.wsb1{word-spacing:257.194667pt;}
.ws12a{word-spacing:341.498667pt;}
._2b{margin-left:-34.960000pt;}
._38{margin-left:-29.792000pt;}
._b{margin-left:-8.512000pt;}
._4{margin-left:-6.976000pt;}
._69{margin-left:-5.477333pt;}
._9{margin-left:-4.312000pt;}
._a{margin-left:-3.061333pt;}
._0{margin-left:-1.600000pt;}
._6{width:0.896000pt;}
._c{width:1.802667pt;}
._28{width:3.130667pt;}
._29{width:4.040000pt;}
._10{width:6.709333pt;}
._e{width:7.781333pt;}
._5{width:8.682667pt;}
._8{width:9.656557pt;}
._34{width:10.922667pt;}
._36{width:11.877333pt;}
._1{width:12.800000pt;}
._14{width:14.056557pt;}
._13{width:14.976000pt;}
._7{width:16.749333pt;}
._f{width:17.880000pt;}
._d{width:19.522109pt;}
._3{width:23.520000pt;}
._3d{width:25.330141pt;}
._2{width:26.613333pt;}
._6c{width:28.449067pt;}
._6d{width:30.497067pt;}
._15{width:31.996288pt;}
._6a{width:33.270400pt;}
._6b{width:35.318400pt;}
._37{width:36.282667pt;}
._68{width:38.091733pt;}
._2a{width:39.016000pt;}
._35{width:40.001040pt;}
._12{width:41.813333pt;}
._66{width:50.507733pt;}
._65{width:51.531733pt;}
._67{width:53.579733pt;}
._64{width:56.353067pt;}
._39{width:71.381845pt;}
._3c{width:72.789333pt;}
._40{width:74.874624pt;}
._42{width:76.251221pt;}
._48{width:77.312000pt;}
._3a{width:83.456000pt;}
._46{width:85.205333pt;}
._41{width:86.528000pt;}
._47{width:91.178667pt;}
._3b{width:97.109333pt;}
._3f{width:99.072000pt;}
._3e{width:100.650667pt;}
._2d{width:102.868821pt;}
._2e{width:104.065024pt;}
._2c{width:114.901845pt;}
._53{width:123.915776pt;}
._44{width:126.949333pt;}
._32{width:128.000000pt;}
._4e{width:129.791445pt;}
._45{width:132.410667pt;}
._31{width:136.789333pt;}
._57{width:139.562667pt;}
._33{width:140.458667pt;}
._25{width:145.791445pt;}
._22{width:146.981333pt;}
._21{width:150.485333pt;}
._26{width:151.658155pt;}
._43{width:153.642667pt;}
._24{width:156.202667pt;}
._27{width:158.506155pt;}
._30{width:160.469333pt;}
._20{width:169.434667pt;}
._1e{width:171.541333pt;}
._4d{width:174.762667pt;}
._50{width:176.725845pt;}
._1f{width:177.643179pt;}
._1d{width:180.672000pt;}
._58{width:182.314667pt;}
._51{width:186.026667pt;}
._4f{width:187.349333pt;}
._54{width:191.061333pt;}
._1c{width:192.021333pt;}
._49{width:215.589333pt;}
._23{width:240.293333pt;}
._11{width:241.200000pt;}
._4c{width:246.778667pt;}
._19{width:259.706667pt;}
._16{width:266.405333pt;}
._17{width:269.136000pt;}
._1b{width:270.304000pt;}
._4a{width:273.872000pt;}
._4b{width:276.346667pt;}
._1a{width:285.264000pt;}
._52{width:295.094400pt;}
._5d{width:319.946667pt;}
._5a{width:331.130667pt;}
._59{width:337.104000pt;}
._18{width:338.341333pt;}
._5e{width:341.434667pt;}
._55{width:396.896555pt;}
._56{width:397.866667pt;}
._5f{width:404.704000pt;}
._63{width:423.818667pt;}
._5c{width:448.821333pt;}
._62{width:494.986667pt;}
._5b{width:509.386667pt;}
._61{width:525.770667pt;}
._60{width:534.346667pt;}
._2f{width:766.410667pt;}
.fs6{font-size:26.666667pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:50.690667pt;}
.y5e{bottom:62.690667pt;}
.y169{bottom:85.473333pt;}
.y30{bottom:89.146667pt;}
.y279{bottom:90.890667pt;}
.yb4{bottom:97.546667pt;}
.y2f{bottom:103.813333pt;}
.ye4{bottom:105.538667pt;}
.y81{bottom:106.480000pt;}
.y216{bottom:106.488000pt;}
.y10e{bottom:106.516000pt;}
.y1c1{bottom:106.565333pt;}
.y1f8{bottom:106.596000pt;}
.y13c{bottom:106.637333pt;}
.y1a8{bottom:106.645333pt;}
.y5d{bottom:106.650667pt;}
.y73{bottom:106.660000pt;}
.yb3{bottom:112.213333pt;}
.y27d{bottom:117.610667pt;}
.y2e{bottom:118.480000pt;}
.y168{bottom:120.153333pt;}
.ye3{bottom:122.872000pt;}
.y19f{bottom:123.813333pt;}
.y215{bottom:123.828000pt;}
.y10d{bottom:123.884000pt;}
.y1f7{bottom:124.045333pt;}
.y13b{bottom:124.128000pt;}
.y1a7{bottom:124.145333pt;}
.y5c{bottom:124.156000pt;}
.y72{bottom:124.174667pt;}
.yb2{bottom:126.880000pt;}
.ydf{bottom:127.210667pt;}
.ye2{bottom:128.205333pt;}
.y27b{bottom:130.070667pt;}
.y27c{bottom:132.277333pt;}
.y2d{bottom:133.146667pt;}
.ye1{bottom:133.538667pt;}
.y167{bottom:133.713333pt;}
.y1c0{bottom:136.153333pt;}
.y166{bottom:137.486667pt;}
.y80{bottom:139.102667pt;}
.y22f{bottom:140.481333pt;}
.y19e{bottom:141.146667pt;}
.y214{bottom:141.169333pt;}
.y244{bottom:141.178667pt;}
.y1f6{bottom:141.494667pt;}
.yb1{bottom:141.546667pt;}
.y13a{bottom:141.620000pt;}
.y1a6{bottom:141.644000pt;}
.y5b{bottom:141.660000pt;}
.y71{bottom:141.688000pt;}
.y27a{bottom:144.737333pt;}
.y2b3{bottom:146.917333pt;}
.y2c{bottom:147.813333pt;}
.ye0{bottom:148.456000pt;}
.y2e8{bottom:149.146667pt;}
.y165{bottom:151.146667pt;}
.y164{bottom:154.820000pt;}
.yb0{bottom:156.213333pt;}
.y22e{bottom:157.814667pt;}
.y19d{bottom:158.480000pt;}
.y213{bottom:158.509333pt;}
.y243{bottom:158.512000pt;}
.y10c{bottom:158.657333pt;}
.y1f5{bottom:158.944000pt;}
.y139{bottom:159.110667pt;}
.y1a5{bottom:159.142667pt;}
.y5a{bottom:159.164000pt;}
.y70{bottom:159.202667pt;}
.y2b2{bottom:161.584000pt;}
.y2b{bottom:162.480000pt;}
.y2e7{bottom:163.813333pt;}
.y163{bottom:172.153333pt;}
.yde{bottom:172.546667pt;}
.y22d{bottom:175.148000pt;}
.y19c{bottom:175.813333pt;}
.y242{bottom:175.845333pt;}
.y212{bottom:175.850667pt;}
.y2b1{bottom:176.250667pt;}
.y1f4{bottom:176.393333pt;}
.y138{bottom:176.601333pt;}
.y1a4{bottom:176.642667pt;}
.y59{bottom:176.668000pt;}
.y6f{bottom:176.716000pt;}
.y2a{bottom:177.146667pt;}
.yaf{bottom:177.546667pt;}
.y2e6{bottom:178.480000pt;}
.y10b{bottom:184.657333pt;}
.y1bf{bottom:188.492000pt;}
.y162{bottom:189.486667pt;}
.y2b0{bottom:190.917333pt;}
.y29{bottom:191.813333pt;}
.y22c{bottom:192.481333pt;}
.y19b{bottom:193.146667pt;}
.y241{bottom:193.178667pt;}
.y211{bottom:193.192000pt;}
.y1f3{bottom:193.842667pt;}
.y137{bottom:194.092000pt;}
.y58{bottom:194.173333pt;}
.y6e{bottom:194.229333pt;}
.y7f{bottom:196.396000pt;}
.ydd{bottom:198.116000pt;}
.y269{bottom:203.601333pt;}
.y2af{bottom:205.584000pt;}
.y1be{bottom:205.910667pt;}
.y28{bottom:206.480000pt;}
.y161{bottom:206.820000pt;}
.y2e5{bottom:207.813333pt;}
.yae{bottom:208.880000pt;}
.y22b{bottom:209.814667pt;}
.y19a{bottom:210.480000pt;}
.y240{bottom:210.512000pt;}
.y210{bottom:210.532000pt;}
.y1f2{bottom:211.292000pt;}
.y136{bottom:211.582667pt;}
.y57{bottom:211.677333pt;}
.y6d{bottom:211.744000pt;}
.y7e{bottom:213.729333pt;}
.y2ae{bottom:220.250667pt;}
.y268{bottom:220.934667pt;}
.y27{bottom:221.146667pt;}
.y2e4{bottom:222.480000pt;}
.y1bd{bottom:223.328000pt;}
.ydc{bottom:223.684000pt;}
.y22a{bottom:227.148000pt;}
.y199{bottom:227.813333pt;}
.y23f{bottom:227.845333pt;}
.y135{bottom:229.073333pt;}
.y56{bottom:229.181333pt;}
.y6c{bottom:229.257333pt;}
.y7d{bottom:231.062667pt;}
.y160{bottom:231.069333pt;}
.y2ad{bottom:234.917333pt;}
.y26{bottom:235.813333pt;}
.y2e3{bottom:237.146667pt;}
.y1a3{bottom:237.352000pt;}
.y267{bottom:238.268000pt;}
.y15e{bottom:240.024000pt;}
.y1bc{bottom:240.746667pt;}
.ydb{bottom:241.017333pt;}
.y229{bottom:244.481333pt;}
.y1da{bottom:244.986667pt;}
.y198{bottom:245.146667pt;}
.y23e{bottom:245.178667pt;}
.y20f{bottom:245.221333pt;}
.y134{bottom:246.565333pt;}
.y55{bottom:246.685333pt;}
.y6b{bottom:246.770667pt;}
.y15f{bottom:248.282667pt;}
.y7c{bottom:248.396000pt;}
.y2ac{bottom:249.584000pt;}
.y25{bottom:250.480000pt;}
.y2e2{bottom:251.813333pt;}
.y10a{bottom:253.436000pt;}
.y97{bottom:253.812000pt;}
.y266{bottom:255.601333pt;}
.y1bb{bottom:258.164000pt;}
.y228{bottom:261.814667pt;}
.y197{bottom:262.480000pt;}
.y23d{bottom:262.512000pt;}
.y133{bottom:264.056000pt;}
.y54{bottom:264.190667pt;}
.y2ab{bottom:264.250667pt;}
.y6a{bottom:264.285333pt;}
.y24{bottom:265.146667pt;}
.y7b{bottom:265.729333pt;}
.yda{bottom:266.044000pt;}
.y2e1{bottom:266.480000pt;}
.yd9{bottom:266.585333pt;}
.yd8{bottom:267.345333pt;}
.y109{bottom:270.805333pt;}
.y96{bottom:271.162667pt;}
.yad{bottom:271.165333pt;}
.y265{bottom:272.934667pt;}
.y1f1{bottom:274.706667pt;}
.y15d{bottom:275.478667pt;}
.y1ba{bottom:275.582667pt;}
.y2aa{bottom:278.917333pt;}
.y227{bottom:279.148000pt;}
.y23{bottom:279.813333pt;}
.y23c{bottom:279.845333pt;}
.y2e0{bottom:281.146667pt;}
.y132{bottom:281.546667pt;}
.y53{bottom:281.694667pt;}
.y69{bottom:281.798667pt;}
.y7a{bottom:283.062667pt;}
.y108{bottom:288.173333pt;}
.y95{bottom:288.512000pt;}
.yac{bottom:288.517333pt;}
.y1f0{bottom:289.373333pt;}
.y264{bottom:290.268000pt;}
.y15c{bottom:292.812000pt;}
.y1b9{bottom:293.001333pt;}
.y2a9{bottom:293.584000pt;}
.yd7{bottom:293.949333pt;}
.y22{bottom:294.480000pt;}
.y2df{bottom:295.813333pt;}
.y226{bottom:296.481333pt;}
.y1d9{bottom:296.826667pt;}
.y196{bottom:297.146667pt;}
.y23b{bottom:297.178667pt;}
.y20e{bottom:297.258667pt;}
.y131{bottom:299.037333pt;}
.y52{bottom:299.198667pt;}
.y68{bottom:299.313333pt;}
.y79{bottom:300.396000pt;}
.y1ef{bottom:304.040000pt;}
.y107{bottom:305.542667pt;}
.y94{bottom:305.861333pt;}
.yab{bottom:305.869333pt;}
.y263{bottom:307.601333pt;}
.y2a8{bottom:308.250667pt;}
.y21{bottom:309.146667pt;}
.y15b{bottom:310.145333pt;}
.y1b8{bottom:310.418667pt;}
.y2de{bottom:310.480000pt;}
.yd6{bottom:311.282667pt;}
.y225{bottom:313.814667pt;}
.y1d8{bottom:314.160000pt;}
.y195{bottom:314.480000pt;}
.y23a{bottom:314.512000pt;}
.y20d{bottom:314.598667pt;}
.y51{bottom:316.702667pt;}
.y67{bottom:316.826667pt;}
.y78{bottom:317.729333pt;}
.y1ee{bottom:318.706667pt;}
.y2a7{bottom:322.917333pt;}
.y93{bottom:323.210667pt;}
.y262{bottom:324.934667pt;}
.y2dd{bottom:325.146667pt;}
.y15a{bottom:327.478667pt;}
.y1b7{bottom:327.837333pt;}
.y130{bottom:328.842667pt;}
.y224{bottom:331.148000pt;}
.y1d7{bottom:331.493333pt;}
.y194{bottom:331.813333pt;}
.y239{bottom:331.845333pt;}
.y20c{bottom:331.940000pt;}
.y1ed{bottom:333.373333pt;}
.y50{bottom:334.208000pt;}
.y66{bottom:334.340000pt;}
.y20{bottom:334.878667pt;}
.y77{bottom:335.062667pt;}
.yd5{bottom:336.852000pt;}
.y2a6{bottom:337.584000pt;}
.yd4{bottom:337.612000pt;}
.y106{bottom:337.720000pt;}
.y2dc{bottom:339.813333pt;}
.y92{bottom:340.560000pt;}
.yaa{bottom:340.593333pt;}
.y261{bottom:342.268000pt;}
.y159{bottom:344.812000pt;}
.y1b6{bottom:345.256000pt;}
.y1ec{bottom:348.040000pt;}
.y223{bottom:348.481333pt;}
.y1d6{bottom:348.826667pt;}
.y193{bottom:349.146667pt;}
.y238{bottom:349.178667pt;}
.y20b{bottom:349.280000pt;}
.y4f{bottom:351.712000pt;}
.y65{bottom:351.854667pt;}
.y2a5{bottom:352.250667pt;}
.y1f{bottom:352.264000pt;}
.y76{bottom:352.396000pt;}
.y2db{bottom:354.480000pt;}
.y91{bottom:357.910667pt;}
.y260{bottom:359.601333pt;}
.y158{bottom:362.145333pt;}
.yd3{bottom:362.420000pt;}
.y1b5{bottom:362.673333pt;}
.y1eb{bottom:362.706667pt;}
.y222{bottom:365.814667pt;}
.y1d5{bottom:366.160000pt;}
.y192{bottom:366.480000pt;}
.y20a{bottom:366.621333pt;}
.y2a4{bottom:366.917333pt;}
.y2da{bottom:369.146667pt;}
.y4e{bottom:369.216000pt;}
.y64{bottom:369.368000pt;}
.y1e{bottom:369.649333pt;}
.y75{bottom:369.729333pt;}
.y105{bottom:369.897333pt;}
.y90{bottom:375.260000pt;}
.y25f{bottom:376.934667pt;}
.y1ea{bottom:377.373333pt;}
.y157{bottom:379.478667pt;}
.yd2{bottom:379.753333pt;}
.y1b4{bottom:380.092000pt;}
.y12f{bottom:381.473333pt;}
.y2a3{bottom:381.584000pt;}
.y221{bottom:383.148000pt;}
.y1d4{bottom:383.493333pt;}
.y191{bottom:383.813333pt;}
.y237{bottom:383.845333pt;}
.y209{bottom:383.962667pt;}
.y4d{bottom:386.720000pt;}
.y63{bottom:386.881333pt;}
.y1d{bottom:387.034667pt;}
.y74{bottom:387.062667pt;}
.y104{bottom:387.266667pt;}
.y1e9{bottom:392.040000pt;}
.y8f{bottom:392.609333pt;}
.y25e{bottom:394.268000pt;}
.y2a2{bottom:396.250667pt;}
.y156{bottom:396.812000pt;}
.yd1{bottom:397.086667pt;}
.y1b3{bottom:397.510667pt;}
.y2d9{bottom:398.480000pt;}
.y12e{bottom:398.964000pt;}
.y220{bottom:400.481333pt;}
.y1d3{bottom:400.826667pt;}
.y190{bottom:401.146667pt;}
.y208{bottom:401.302667pt;}
.ya9{bottom:401.334667pt;}
.y4c{bottom:404.225333pt;}
.y62{bottom:404.396000pt;}
.y103{bottom:404.634667pt;}
.y1e8{bottom:406.706667pt;}
.y8e{bottom:409.958667pt;}
.y2a1{bottom:410.917333pt;}
.y25d{bottom:411.601333pt;}
.y2d8{bottom:413.146667pt;}
.y155{bottom:414.145333pt;}
.yd0{bottom:414.420000pt;}
.y1b2{bottom:414.928000pt;}
.y12d{bottom:416.454667pt;}
.y21f{bottom:417.814667pt;}
.y1d2{bottom:418.160000pt;}
.y18f{bottom:418.480000pt;}
.y207{bottom:418.644000pt;}
.ya8{bottom:418.688000pt;}
.y1e7{bottom:421.373333pt;}
.y4b{bottom:421.729333pt;}
.y1c{bottom:421.857333pt;}
.y102{bottom:422.004000pt;}
.y2a0{bottom:425.584000pt;}
.y8d{bottom:427.308000pt;}
.y2d7{bottom:427.813333pt;}
.y25c{bottom:428.934667pt;}
.ycf{bottom:431.753333pt;}
.y1b1{bottom:432.346667pt;}
.y12c{bottom:433.945333pt;}
.y21e{bottom:435.148000pt;}
.y1d1{bottom:435.493333pt;}
.y18e{bottom:435.813333pt;}
.y206{bottom:435.984000pt;}
.ya7{bottom:436.040000pt;}
.y4a{bottom:439.233333pt;}
.y101{bottom:439.373333pt;}
.y29f{bottom:440.250667pt;}
.y2d6{bottom:442.480000pt;}
.y153{bottom:443.594667pt;}
.y8c{bottom:444.658667pt;}
.y25b{bottom:446.268000pt;}
.y1b0{bottom:449.765333pt;}
.y1e6{bottom:450.706667pt;}
.y12b{bottom:451.437333pt;}
.y236{bottom:452.214667pt;}
.y21d{bottom:452.481333pt;}
.y1d0{bottom:452.826667pt;}
.y205{bottom:453.325333pt;}
.ya6{bottom:453.392000pt;}
.yce{bottom:453.878667pt;}
.y29e{bottom:454.917333pt;}
.y49{bottom:456.737333pt;}
.y100{bottom:456.741333pt;}
.y2d5{bottom:457.146667pt;}
.y61{bottom:458.138667pt;}
.y152{bottom:460.928000pt;}
.y8b{bottom:462.008000pt;}
.y25a{bottom:463.601333pt;}
.y18d{bottom:465.146667pt;}
.y1e5{bottom:465.373333pt;}
.y235{bottom:466.881333pt;}
.y1af{bottom:467.182667pt;}
.ycd{bottom:467.913333pt;}
.ycc{bottom:467.918667pt;}
.y12a{bottom:468.928000pt;}
.y29d{bottom:469.584000pt;}
.y21c{bottom:469.814667pt;}
.y1cf{bottom:470.160000pt;}
.y204{bottom:470.666667pt;}
.ya5{bottom:470.744000pt;}
.y2d4{bottom:471.813333pt;}
.y60{bottom:472.805333pt;}
.yff{bottom:474.110667pt;}
.y48{bottom:474.242667pt;}
.y151{bottom:478.260000pt;}
.y8a{bottom:479.357333pt;}
.y1b{bottom:479.866667pt;}
.y1e4{bottom:480.040000pt;}
.y259{bottom:480.934667pt;}
.y234{bottom:481.548000pt;}
.y29c{bottom:484.250667pt;}
.y1ae{bottom:484.601333pt;}
.y1a2{bottom:485.253333pt;}
.y129{bottom:486.418667pt;}
.y2d3{bottom:486.480000pt;}
.y21b{bottom:487.146667pt;}
.y14d{bottom:487.164000pt;}
.y1ce{bottom:487.493333pt;}
.y203{bottom:488.006667pt;}
.ya4{bottom:488.096000pt;}
.yfe{bottom:491.480000pt;}
.y47{bottom:491.746667pt;}
.y1e3{bottom:494.706667pt;}
.y150{bottom:495.593333pt;}
.y233{bottom:496.214667pt;}
.y89{bottom:496.706667pt;}
.y1a{bottom:497.252000pt;}
.y258{bottom:498.268000pt;}
.ycb{bottom:498.917333pt;}
.y1a1{bottom:499.920000pt;}
.y2d2{bottom:501.146667pt;}
.y1ad{bottom:502.018667pt;}
.y128{bottom:503.909333pt;}
.y21a{bottom:504.480000pt;}
.y1cd{bottom:504.826667pt;}
.y202{bottom:505.348000pt;}
.ya3{bottom:505.449333pt;}
.yfd{bottom:508.848000pt;}
.y46{bottom:509.250667pt;}
.y1e2{bottom:509.373333pt;}
.y232{bottom:510.881333pt;}
.y14f{bottom:512.926667pt;}
.y29b{bottom:513.584000pt;}
.y88{bottom:514.056000pt;}
.y1a0{bottom:514.586667pt;}
.y257{bottom:515.601333pt;}
.y2d1{bottom:515.813333pt;}
.y18c{bottom:516.856000pt;}
.y1ac{bottom:519.437333pt;}
.y154{bottom:519.526667pt;}
.y127{bottom:521.400000pt;}
.y219{bottom:521.813333pt;}
.y201{bottom:522.688000pt;}
.ya2{bottom:522.801333pt;}
.y19{bottom:523.304000pt;}
.y1e1{bottom:524.040000pt;}
.yca{bottom:524.486667pt;}
.y45{bottom:526.754667pt;}
.y29a{bottom:528.250667pt;}
.y14e{bottom:530.260000pt;}
.y2d0{bottom:530.480000pt;}
.y87{bottom:531.406667pt;}
.y231{bottom:532.213333pt;}
.y256{bottom:532.934667pt;}
.y18b{bottom:534.189333pt;}
.y1ab{bottom:536.856000pt;}
.yfc{bottom:538.288000pt;}
.y1e0{bottom:538.706667pt;}
.y126{bottom:538.890667pt;}
.y218{bottom:539.146667pt;}
.y1cc{bottom:539.333333pt;}
.y200{bottom:540.029333pt;}
.ya1{bottom:540.153333pt;}
.y18{bottom:540.689333pt;}
.yc9{bottom:541.820000pt;}
.y299{bottom:542.917333pt;}
.y44{bottom:544.260000pt;}
.y2cf{bottom:545.146667pt;}
.y86{bottom:548.756000pt;}
.y26a{bottom:550.268000pt;}
.y18a{bottom:551.522667pt;}
.y1df{bottom:553.373333pt;}
.y1aa{bottom:554.273333pt;}
.y125{bottom:556.382667pt;}
.y217{bottom:556.480000pt;}
.y1ff{bottom:557.370667pt;}
.ya0{bottom:557.505333pt;}
.y14c{bottom:557.573333pt;}
.y298{bottom:557.584000pt;}
.y17{bottom:558.074667pt;}
.yc8{bottom:559.153333pt;}
.y2ce{bottom:559.813333pt;}
.y43{bottom:561.764000pt;}
.y230{bottom:563.546667pt;}
.y85{bottom:566.105333pt;}
.y255{bottom:567.601333pt;}
.y189{bottom:568.856000pt;}
.y297{bottom:572.250667pt;}
.y124{bottom:573.873333pt;}
.y2cd{bottom:574.480000pt;}
.y1de{bottom:574.706667pt;}
.y1fe{bottom:574.710667pt;}
.y9f{bottom:574.858667pt;}
.y14b{bottom:574.906667pt;}
.y16{bottom:575.460000pt;}
.yc7{bottom:576.486667pt;}
.y42{bottom:579.268000pt;}
.y188{bottom:586.189333pt;}
.y296{bottom:586.917333pt;}
.y2cc{bottom:589.146667pt;}
.y1dd{bottom:589.373333pt;}
.y1cb{bottom:591.172000pt;}
.y123{bottom:591.364000pt;}
.y1fd{bottom:592.052000pt;}
.y14a{bottom:592.240000pt;}
.y15{bottom:592.846667pt;}
.yc6{bottom:593.820000pt;}
.y41{bottom:596.772000pt;}
.y295{bottom:601.584000pt;}
.y187{bottom:603.522667pt;}
.y2cb{bottom:603.813333pt;}
.y9e{bottom:604.248000pt;}
.y1ca{bottom:608.505333pt;}
.y122{bottom:608.854667pt;}
.y1fc{bottom:609.392000pt;}
.y149{bottom:609.573333pt;}
.y14{bottom:610.232000pt;}
.y40{bottom:614.277333pt;}
.y294{bottom:616.250667pt;}
.yfb{bottom:616.880000pt;}
.y2ca{bottom:618.480000pt;}
.yc5{bottom:619.388000pt;}
.y1dc{bottom:620.705333pt;}
.y186{bottom:620.856000pt;}
.y84{bottom:621.600000pt;}
.y254{bottom:623.205333pt;}
.y1c9{bottom:625.838667pt;}
.y121{bottom:626.345333pt;}
.y148{bottom:626.906667pt;}
.y13{bottom:627.617333pt;}
.y293{bottom:630.917333pt;}
.yfa{bottom:631.546667pt;}
.y3f{bottom:631.781333pt;}
.y2c9{bottom:633.146667pt;}
.y83{bottom:636.266667pt;}
.yc4{bottom:642.081333pt;}
.y253{bottom:642.106667pt;}
.y1c8{bottom:643.172000pt;}
.y120{bottom:643.836000pt;}
.y12{bottom:645.002667pt;}
.y292{bottom:645.584000pt;}
.yf9{bottom:646.213333pt;}
.y2c8{bottom:647.813333pt;}
.y3e{bottom:649.285333pt;}
.y82{bottom:650.933333pt;}
.y185{bottom:655.232000pt;}
.y9d{bottom:656.324000pt;}
.y252{bottom:656.773333pt;}
.y147{bottom:657.913333pt;}
.y291{bottom:660.250667pt;}
.y1c7{bottom:660.505333pt;}
.yf8{bottom:660.880000pt;}
.y11f{bottom:661.326667pt;}
.y11{bottom:662.388000pt;}
.y2c7{bottom:662.480000pt;}
.y1fb{bottom:665.986667pt;}
.y3d{bottom:666.789333pt;}
.yc3{bottom:667.649333pt;}
.y251{bottom:671.440000pt;}
.y9c{bottom:673.676000pt;}
.y290{bottom:674.917333pt;}
.yf7{bottom:675.546667pt;}
.y2c6{bottom:677.146667pt;}
.y1c6{bottom:677.838667pt;}
.y11e{bottom:678.818667pt;}
.y10{bottom:679.773333pt;}
.y1fa{bottom:680.653333pt;}
.y3c{bottom:684.294667pt;}
.yc2{bottom:684.982667pt;}
.y250{bottom:686.106667pt;}
.y146{bottom:688.920000pt;}
.y28f{bottom:689.584000pt;}
.yf6{bottom:690.213333pt;}
.y9b{bottom:691.028000pt;}
.y2c5{bottom:691.813333pt;}
.y1c5{bottom:695.172000pt;}
.y1f9{bottom:695.320000pt;}
.y11d{bottom:696.309333pt;}
.yf{bottom:697.158667pt;}
.y278{bottom:701.052000pt;}
.y3b{bottom:701.798667pt;}
.yc1{bottom:702.316000pt;}
.y28e{bottom:704.250667pt;}
.yf5{bottom:704.880000pt;}
.y2c4{bottom:706.480000pt;}
.y24f{bottom:707.440000pt;}
.y9a{bottom:708.381333pt;}
.y1c4{bottom:712.505333pt;}
.y11c{bottom:713.800000pt;}
.ye{bottom:714.544000pt;}
.y184{bottom:715.608000pt;}
.y277{bottom:715.718667pt;}
.y145{bottom:716.312000pt;}
.y28d{bottom:718.917333pt;}
.y3a{bottom:719.302667pt;}
.yf4{bottom:719.546667pt;}
.yc0{bottom:719.649333pt;}
.y2c3{bottom:721.146667pt;}
.y24e{bottom:722.106667pt;}
.y99{bottom:725.733333pt;}
.y144{bottom:728.045333pt;}
.y1c3{bottom:729.838667pt;}
.y276{bottom:730.385333pt;}
.y11b{bottom:731.290667pt;}
.yd{bottom:731.929333pt;}
.y183{bottom:732.941333pt;}
.y28c{bottom:733.584000pt;}
.yf3{bottom:734.213333pt;}
.y2c2{bottom:735.813333pt;}
.y39{bottom:736.806667pt;}
.ybf{bottom:736.982667pt;}
.y275{bottom:745.052000pt;}
.y28b{bottom:748.250667pt;}
.y11a{bottom:748.781333pt;}
.yf2{bottom:748.880000pt;}
.yc{bottom:749.314667pt;}
.y182{bottom:750.274667pt;}
.y2c1{bottom:750.480000pt;}
.y24d{bottom:753.440000pt;}
.y38{bottom:754.312000pt;}
.ybe{bottom:754.316000pt;}
.y274{bottom:760.249333pt;}
.y143{bottom:760.553333pt;}
.y28a{bottom:762.917333pt;}
.yf1{bottom:763.546667pt;}
.y2c0{bottom:765.146667pt;}
.y119{bottom:766.272000pt;}
.yb{bottom:766.700000pt;}
.y181{bottom:767.608000pt;}
.ybd{bottom:771.649333pt;}
.y37{bottom:771.816000pt;}
.y273{bottom:775.448000pt;}
.y289{bottom:777.584000pt;}
.yf0{bottom:778.213333pt;}
.y2bf{bottom:779.812000pt;}
.y98{bottom:782.626667pt;}
.y118{bottom:783.764000pt;}
.ya{bottom:784.085333pt;}
.y1c2{bottom:785.200000pt;}
.y141{bottom:787.945333pt;}
.ybc{bottom:788.982667pt;}
.y36{bottom:789.320000pt;}
.y272{bottom:790.114667pt;}
.y17a{bottom:791.858667pt;}
.y288{bottom:792.250667pt;}
.yef{bottom:792.880000pt;}
.y2be{bottom:794.478667pt;}
.y140{bottom:799.678667pt;}
.y117{bottom:801.254667pt;}
.y9{bottom:801.470667pt;}
.y24c{bottom:801.978667pt;}
.y271{bottom:804.781333pt;}
.y142{bottom:805.758667pt;}
.y179{bottom:805.957333pt;}
.ybb{bottom:806.316000pt;}
.y35{bottom:806.824000pt;}
.y287{bottom:806.917333pt;}
.yee{bottom:807.546667pt;}
.y2bd{bottom:809.145333pt;}
.y178{bottom:809.630667pt;}
.y17e{bottom:812.357333pt;}
.y177{bottom:813.304000pt;}
.y176{bottom:816.977333pt;}
.y116{bottom:818.745333pt;}
.y8{bottom:818.856000pt;}
.y270{bottom:819.448000pt;}
.y175{bottom:820.650667pt;}
.y24b{bottom:820.880000pt;}
.y17d{bottom:821.312000pt;}
.y286{bottom:821.584000pt;}
.yed{bottom:822.213333pt;}
.y2bc{bottom:823.812000pt;}
.y174{bottom:824.322667pt;}
.y34{bottom:824.329333pt;}
.y173{bottom:827.996000pt;}
.y180{bottom:829.153333pt;}
.y172{bottom:831.669333pt;}
.y26f{bottom:834.114667pt;}
.y13f{bottom:834.480000pt;}
.y24a{bottom:835.546667pt;}
.yba{bottom:835.649333pt;}
.y16a{bottom:836.040000pt;}
.y115{bottom:836.236000pt;}
.y7{bottom:836.242667pt;}
.y285{bottom:836.250667pt;}
.yec{bottom:836.880000pt;}
.y2bb{bottom:838.478667pt;}
.y33{bottom:841.833333pt;}
.y171{bottom:846.362667pt;}
.y17f{bottom:848.517333pt;}
.y26e{bottom:848.781333pt;}
.y170{bottom:850.036000pt;}
.y249{bottom:850.213333pt;}
.y284{bottom:850.917333pt;}
.yeb{bottom:851.546667pt;}
.y13e{bottom:851.813333pt;}
.y2ba{bottom:853.145333pt;}
.y6{bottom:853.628000pt;}
.y16f{bottom:853.709333pt;}
.y114{bottom:853.726667pt;}
.y16e{bottom:857.382667pt;}
.y17c{bottom:858.144000pt;}
.y32{bottom:859.337333pt;}
.y16d{bottom:861.056000pt;}
.y26d{bottom:863.978667pt;}
.y16c{bottom:864.729333pt;}
.y248{bottom:864.880000pt;}
.y283{bottom:865.584000pt;}
.yea{bottom:866.213333pt;}
.y17b{bottom:867.098667pt;}
.y2b9{bottom:867.812000pt;}
.y16b{bottom:868.402667pt;}
.y13d{bottom:869.145333pt;}
.y113{bottom:871.217333pt;}
.y31{bottom:876.841333pt;}
.y247{bottom:879.546667pt;}
.y5{bottom:879.680000pt;}
.y282{bottom:880.250667pt;}
.ye9{bottom:880.880000pt;}
.y2b8{bottom:882.478667pt;}
.yb9{bottom:886.478667pt;}
.y112{bottom:888.709333pt;}
.y246{bottom:894.213333pt;}
.y4{bottom:894.346667pt;}
.y281{bottom:894.917333pt;}
.y26c{bottom:895.312000pt;}
.ye8{bottom:895.546667pt;}
.y2b7{bottom:897.145333pt;}
.yb8{bottom:903.812000pt;}
.y111{bottom:906.200000pt;}
.y280{bottom:909.584000pt;}
.y1db{bottom:910.213333pt;}
.y2b6{bottom:911.812000pt;}
.y245{bottom:912.880000pt;}
.y1a9{bottom:916.878667pt;}
.ye7{bottom:916.880000pt;}
.yb7{bottom:921.145333pt;}
.y27f{bottom:924.250667pt;}
.y3{bottom:926.345333pt;}
.y2b5{bottom:926.478667pt;}
.ye6{bottom:931.545333pt;}
.y110{bottom:937.910667pt;}
.yb6{bottom:938.478667pt;}
.y2b4{bottom:941.145333pt;}
.y10f{bottom:946.865333pt;}
.y26b{bottom:955.778667pt;}
.yb5{bottom:955.812000pt;}
.y27e{bottom:956.250667pt;}
.y2{bottom:961.012000pt;}
.ye5{bottom:962.878667pt;}
.y1{bottom:1003.805333pt;}
.h1b{height:27.253333pt;}
.h9{height:28.933333pt;}
.h2{height:33.066667pt;}
.h8{height:33.365333pt;}
.h6{height:39.266667pt;}
.h5{height:39.621333pt;}
.he{height:40.133333pt;}
.h28{height:45.866667pt;}
.h3{height:49.600000pt;}
.ha{height:50.048000pt;}
.h1e{height:51.226667pt;}
.h25{height:53.960000pt;}
.h23{height:54.360000pt;}
.hb{height:54.466667pt;}
.h22{height:57.256000pt;}
.hf{height:57.506667pt;}
.h10{height:57.608000pt;}
.h13{height:57.912000pt;}
.h11{height:57.965333pt;}
.h20{height:62.426667pt;}
.h7{height:62.560000pt;}
.h24{height:69.160000pt;}
.h12{height:69.362667pt;}
.h19{height:71.344000pt;}
.h21{height:75.085333pt;}
.h16{height:81.933333pt;}
.h1a{height:83.920000pt;}
.hc{height:84.581333pt;}
.h1c{height:86.200000pt;}
.h27{height:90.285333pt;}
.h1f{height:90.290667pt;}
.h4{height:91.754667pt;}
.hd{height:143.792000pt;}
.h14{height:145.957333pt;}
.h18{height:179.610667pt;}
.h15{height:185.082667pt;}
.h17{height:271.770667pt;}
.h1d{height:273.242667pt;}
.h26{height:287.936000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.032000pt;}
.x5{left:76.805333pt;}
.x6{left:83.149333pt;}
.xa{left:90.708000pt;}
.xc{left:95.944000pt;}
.x7{left:105.826667pt;}
.x58{left:107.989333pt;}
.x1c{left:111.700000pt;}
.x44{left:119.837333pt;}
.x1d{left:122.537333pt;}
.x3c{left:131.648000pt;}
.x11{left:135.962667pt;}
.x45{left:139.953333pt;}
.x10{left:141.878667pt;}
.x55{left:144.841333pt;}
.x14{left:150.581333pt;}
.x1e{left:153.813333pt;}
.x13{left:156.496000pt;}
.xb{left:170.358667pt;}
.x15{left:176.733333pt;}
.x27{left:178.728000pt;}
.x46{left:187.246667pt;}
.x1b{left:194.589333pt;}
.xe{left:199.564000pt;}
.x16{left:202.118667pt;}
.x1f{left:204.906667pt;}
.x41{left:206.057333pt;}
.x52{left:213.870667pt;}
.x47{left:217.593333pt;}
.x3d{left:221.121333pt;}
.x17{left:226.614667pt;}
.x3e{left:232.128000pt;}
.x53{left:239.480000pt;}
.x18{left:246.826667pt;}
.x3f{left:251.845333pt;}
.x20{left:256.582667pt;}
.x19{left:267.076000pt;}
.x48{left:275.720000pt;}
.x49{left:279.773333pt;}
.xd{left:280.880000pt;}
.x1a{left:286.376000pt;}
.xf{left:295.124000pt;}
.x12{left:306.500000pt;}
.x21{left:308.841333pt;}
.x42{left:311.316000pt;}
.x54{left:317.332000pt;}
.x4a{left:327.408000pt;}
.x4b{left:357.412000pt;}
.x22{left:361.818667pt;}
.x28{left:366.469333pt;}
.x43{left:372.665333pt;}
.x40{left:377.306667pt;}
.x23{left:381.765333pt;}
.x57{left:391.412000pt;}
.x56{left:392.906667pt;}
.x3{left:396.850667pt;}
.x8{left:411.968000pt;}
.x4{left:419.528000pt;}
.x38{left:428.344000pt;}
.x26{left:433.368000pt;}
.x9{left:434.645333pt;}
.x59{left:436.808000pt;}
.x4c{left:468.772000pt;}
.x2c{left:471.112000pt;}
.x24{left:474.581333pt;}
.x25{left:503.336000pt;}
.x2d{left:505.744000pt;}
.x39{left:511.812000pt;}
.x29{left:516.224000pt;}
.x32{left:520.672000pt;}
.x2b{left:528.577333pt;}
.x2e{left:537.114667pt;}
.x2f{left:538.248000pt;}
.x3a{left:540.573333pt;}
.x4d{left:546.412000pt;}
.x33{left:549.061333pt;}
.x2a{left:561.461333pt;}
.x35{left:562.760000pt;}
.x34{left:578.738667pt;}
.x3b{left:580.054667pt;}
.x1{left:586.413333pt;}
.x36{left:590.069333pt;}
.x30{left:592.917333pt;}
.x4e{left:604.538667pt;}
.x4f{left:608.592000pt;}
.x50{left:656.226667pt;}
.x51{left:686.230667pt;}
.x31{left:691.297333pt;}
.x37{left:702.914667pt;}
}


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