
/* 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_7da431b062fc.woff")format("woff");}.ff1{font-family:ff1;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_eded3cc3c1a7.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_c9f60d77a245.woff")format("woff");}.ff3{font-family:ff3;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_7cee1255ad8a.woff")format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_6399a3e37011.woff")format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_8637559468ec.woff")format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_5d097a8db4a8.woff")format("woff");}.ff7{font-family:ff7;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_f675250e155a.woff")format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_f675250e155a.woff")format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_b3c97eabaf56.woff")format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_5fd83223696f.woff")format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_61ff5454fbf2.woff")format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_515a652426fc.woff")format("woff");}.ffd{font-family:ffd;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_8cd0356ccd9f.woff")format("woff");}.ffe{font-family:ffe;line-height:0.916504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_9ccb95939d3e.woff")format("woff");}.fff{font-family:fff;line-height:0.801270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_ba2b77dea698.woff")format("woff");}.ff10{font-family:ff10;line-height:0.683594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_96ef25562297.woff")format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_8b4601701f74.woff")format("woff");}.ff12{font-family:ff12;line-height:1.432129;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;}
.m1{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-69.142320px;}
.va{vertical-align:-61.920000px;}
.vc{vertical-align:-59.769360px;}
.v2{vertical-align:-18.000000px;}
.v9{vertical-align:-3.344400px;}
.v8{vertical-align:-1.980000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.447200px;}
.vb{vertical-align:2.880000px;}
.ve{vertical-align:4.033200px;}
.v6{vertical-align:18.000000px;}
.v7{vertical-align:19.632600px;}
.v5{vertical-align:20.902320px;}
.v1{vertical-align:24.144480px;}
.v3{vertical-align:27.352080px;}
.ls98{letter-spacing:-1.314720px;}
.ls88{letter-spacing:-1.276338px;}
.ls4d{letter-spacing:-1.254960px;}
.ls97{letter-spacing:-1.075680px;}
.lsc9{letter-spacing:-1.013040px;}
.ls65{letter-spacing:-0.964800px;}
.ls95{letter-spacing:-0.956160px;}
.ls17{letter-spacing:-0.918000px;}
.lsf1{letter-spacing:-0.901954px;}
.ls62{letter-spacing:-0.868320px;}
.ls96{letter-spacing:-0.836640px;}
.ls61{letter-spacing:-0.820080px;}
.ls3a{letter-spacing:-0.776880px;}
.ls64{letter-spacing:-0.771840px;}
.lsf2{letter-spacing:-0.745093px;}
.lse9{letter-spacing:-0.705877px;}
.lsb5{letter-spacing:-0.675360px;}
.ls4c{letter-spacing:-0.657360px;}
.ls3d{letter-spacing:-0.597600px;}
.ls12{letter-spacing:-0.594000px;}
.lsb3{letter-spacing:-0.578880px;}
.ls18{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.537840px;}
.ls5e{letter-spacing:-0.530640px;}
.ls16{letter-spacing:-0.486000px;}
.ls4a{letter-spacing:-0.478080px;}
.ls5f{letter-spacing:-0.434160px;}
.lsf3{letter-spacing:-0.431369px;}
.lsa8{letter-spacing:-0.418320px;}
.ls14{letter-spacing:-0.378000px;}
.ls3b{letter-spacing:-0.358560px;}
.ls40{letter-spacing:-0.337680px;}
.ls10f{letter-spacing:-0.324000px;}
.ls63{letter-spacing:-0.289440px;}
.lsf{letter-spacing:-0.288000px;}
.lsf0{letter-spacing:-0.274508px;}
.ls3f{letter-spacing:-0.241200px;}
.ls3c{letter-spacing:-0.239040px;}
.lse8{letter-spacing:-0.235292px;}
.ls11{letter-spacing:-0.216000px;}
.ls5c{letter-spacing:-0.192960px;}
.lsec{letter-spacing:-0.156862px;}
.ls4b{letter-spacing:-0.119520px;}
.ls15{letter-spacing:-0.108000px;}
.lsb4{letter-spacing:-0.096480px;}
.ls86{letter-spacing:-0.093504px;}
.lsef{letter-spacing:-0.086935px;}
.ls85{letter-spacing:-0.082907px;}
.lsf7{letter-spacing:-0.078431px;}
.ls39{letter-spacing:-0.059760px;}
.ls60{letter-spacing:-0.048240px;}
.lse7{letter-spacing:-0.039215px;}
.lsf6{letter-spacing:-0.028821px;}
.ls1{letter-spacing:0.000000px;}
.ls108{letter-spacing:0.021600px;}
.lsf4{letter-spacing:0.028821px;}
.ls87{letter-spacing:0.036467px;}
.ls8c{letter-spacing:0.044640px;}
.lsca{letter-spacing:0.048240px;}
.lsae{letter-spacing:0.053784px;}
.ls31{letter-spacing:0.059760px;}
.ls74{letter-spacing:0.071712px;}
.ls1a{letter-spacing:0.072000px;}
.lse2{letter-spacing:0.078431px;}
.lse{letter-spacing:0.084240px;}
.lsd{letter-spacing:0.086400px;}
.lse6{letter-spacing:0.086935px;}
.ls78{letter-spacing:0.095616px;}
.lsed{letter-spacing:0.105835px;}
.lsf9{letter-spacing:0.107568px;}
.ls13{letter-spacing:0.108000px;}
.ls28{letter-spacing:0.113544px;}
.lsee{letter-spacing:0.115284px;}
.lsd6{letter-spacing:0.118191px;}
.ls26{letter-spacing:0.119520px;}
.lsaa{letter-spacing:0.129600px;}
.lsa7{letter-spacing:0.144000px;}
.ls82{letter-spacing:0.145867px;}
.lsa5{letter-spacing:0.155376px;}
.lsbe{letter-spacing:0.156240px;}
.lsf5{letter-spacing:0.156862px;}
.ls47{letter-spacing:0.161352px;}
.ls6{letter-spacing:0.162000px;}
.lsab{letter-spacing:0.167328px;}
.lsda{letter-spacing:0.170860px;}
.ls99{letter-spacing:0.173304px;}
.ls36{letter-spacing:0.174240px;}
.ls1f{letter-spacing:0.179280px;}
.ls68{letter-spacing:0.180000px;}
.lscd{letter-spacing:0.181440px;}
.ls77{letter-spacing:0.185256px;}
.ls72{letter-spacing:0.191232px;}
.ls5d{letter-spacing:0.192960px;}
.ls9{letter-spacing:0.199800px;}
.lsd2{letter-spacing:0.203184px;}
.ls2b{letter-spacing:0.209160px;}
.ls10{letter-spacing:0.216000px;}
.ls55{letter-spacing:0.223920px;}
.ls79{letter-spacing:0.233064px;}
.lsd7{letter-spacing:0.235292px;}
.lsd5{letter-spacing:0.235782px;}
.ls10c{letter-spacing:0.237600px;}
.ls20{letter-spacing:0.239040px;}
.lsac{letter-spacing:0.245016px;}
.ls24{letter-spacing:0.250992px;}
.ls71{letter-spacing:0.256968px;}
.ls7a{letter-spacing:0.268920px;}
.lsc2{letter-spacing:0.274896px;}
.lsaf{letter-spacing:0.280872px;}
.lsb0{letter-spacing:0.286848px;}
.ls37{letter-spacing:0.288000px;}
.ls52{letter-spacing:0.289440px;}
.ls48{letter-spacing:0.298800px;}
.ls7c{letter-spacing:0.304776px;}
.ls10e{letter-spacing:0.307800px;}
.ls2d{letter-spacing:0.310752px;}
.ls10b{letter-spacing:0.313200px;}
.lsea{letter-spacing:0.313723px;}
.ls10a{letter-spacing:0.329400px;}
.ls2{letter-spacing:0.336960px;}
.lsce{letter-spacing:0.337680px;}
.lsb1{letter-spacing:0.340632px;}
.ls1c{letter-spacing:0.358560px;}
.ls81{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.378000px;}
.lsa3{letter-spacing:0.382464px;}
.ls3e{letter-spacing:0.385920px;}
.lsb9{letter-spacing:0.390240px;}
.lsd8{letter-spacing:0.402939px;}
.lsb7{letter-spacing:0.436248px;}
.ls9f{letter-spacing:0.442224px;}
.ls109{letter-spacing:0.464400px;}
.ls7b{letter-spacing:0.466128px;}
.ls89{letter-spacing:0.478080px;}
.lsdf{letter-spacing:0.507676px;}
.lseb{letter-spacing:0.705877px;}
.ls49{letter-spacing:0.806760px;}
.ls76{letter-spacing:0.812736px;}
.ls93{letter-spacing:0.836640px;}
.ls6d{letter-spacing:0.890424px;}
.ls23{letter-spacing:0.896400px;}
.ls50{letter-spacing:0.900000px;}
.ls2c{letter-spacing:0.902376px;}
.ls8a{letter-spacing:0.914328px;}
.ls7{letter-spacing:0.918000px;}
.ls94{letter-spacing:0.938232px;}
.ls107{letter-spacing:0.962136px;}
.lsc0{letter-spacing:1.110240px;}
.lsbb{letter-spacing:1.117440px;}
.ls44{letter-spacing:1.374480px;}
.ls1d{letter-spacing:1.613520px;}
.ls5{letter-spacing:1.620000px;}
.ls9a{letter-spacing:1.625472px;}
.lsd0{letter-spacing:1.709280px;}
.ls9c{letter-spacing:2.217096px;}
.lsb{letter-spacing:2.322000px;}
.lsfb{letter-spacing:2.324664px;}
.ls29{letter-spacing:2.330640px;}
.ls91{letter-spacing:2.366496px;}
.ls6a{letter-spacing:2.390400px;}
.lsad{letter-spacing:3.041784px;}
.ls42{letter-spacing:3.047760px;}
.ls8e{letter-spacing:3.077640px;}
.ls101{letter-spacing:3.746952px;}
.ls2e{letter-spacing:3.764880px;}
.lsfa{letter-spacing:3.770856px;}
.lsa{letter-spacing:3.780000px;}
.ls9b{letter-spacing:3.800736px;}
.ls33{letter-spacing:3.830616px;}
.lsa0{letter-spacing:3.848544px;}
.ls6f{letter-spacing:3.872448px;}
.ls8f{letter-spacing:3.926232px;}
.lsa2{letter-spacing:4.476024px;}
.ls3{letter-spacing:4.482000px;}
.ls9e{letter-spacing:4.517856px;}
.lsb2{letter-spacing:4.535784px;}
.lsd1{letter-spacing:4.565664px;}
.lsb6{letter-spacing:5.189760px;}
.ls43{letter-spacing:5.199120px;}
.lsa9{letter-spacing:5.270832px;}
.ls6e{letter-spacing:5.282784px;}
.ls9d{letter-spacing:5.294736px;}
.lsf8{letter-spacing:5.909760px;}
.ls34{letter-spacing:5.916240px;}
.ls8{letter-spacing:5.940000px;}
.ls0{letter-spacing:5.977560px;}
.lsa4{letter-spacing:6.053688px;}
.ls35{letter-spacing:6.077592px;}
.ls27{letter-spacing:6.633360px;}
.ls7e{letter-spacing:6.651288px;}
.lsa1{letter-spacing:6.740928px;}
.lsfc{letter-spacing:7.290720px;}
.ls21{letter-spacing:7.350480px;}
.lsbc{letter-spacing:7.390800px;}
.ls22{letter-spacing:7.410240px;}
.lsbf{letter-spacing:7.803360px;}
.ls90{letter-spacing:8.049672px;}
.lsba{letter-spacing:8.110800px;}
.ls69{letter-spacing:8.127360px;}
.ls1b{letter-spacing:8.844480px;}
.ls80{letter-spacing:9.561600px;}
.lsde{letter-spacing:9.685659px;}
.lsdb{letter-spacing:10.039632px;}
.lse0{letter-spacing:10.040232px;}
.ls25{letter-spacing:10.278720px;}
.lsd9{letter-spacing:10.831456px;}
.lsdd{letter-spacing:10.832056px;}
.lsfe{letter-spacing:10.930104px;}
.ls2a{letter-spacing:10.995840px;}
.ls70{letter-spacing:11.712960px;}
.lsdc{letter-spacing:12.249148px;}
.ls73{letter-spacing:13.075488px;}
.lsa6{letter-spacing:13.147200px;}
.ls41{letter-spacing:13.852368px;}
.ls1e{letter-spacing:13.864320px;}
.lsc{letter-spacing:14.580000px;}
.ls32{letter-spacing:14.581440px;}
.ls8d{letter-spacing:15.269760px;}
.ls8b{letter-spacing:15.298560px;}
.ls92{letter-spacing:16.015680px;}
.lsc3{letter-spacing:16.027632px;}
.ls6b{letter-spacing:16.732800px;}
.ls6c{letter-spacing:17.449920px;}
.lse3{letter-spacing:18.023452px;}
.ls45{letter-spacing:18.167040px;}
.ls46{letter-spacing:18.250704px;}
.ls7f{letter-spacing:18.884160px;}
.ls7d{letter-spacing:19.601280px;}
.ls100{letter-spacing:20.318400px;}
.ls104{letter-spacing:20.856240px;}
.ls105{letter-spacing:24.441840px;}
.lsfd{letter-spacing:25.876080px;}
.lsff{letter-spacing:26.593200px;}
.ls54{letter-spacing:27.540000px;}
.ls75{letter-spacing:33.984000px;}
.ls103{letter-spacing:37.409760px;}
.ls53{letter-spacing:38.340000px;}
.lsd4{letter-spacing:40.330587px;}
.ls106{letter-spacing:40.995360px;}
.ls102{letter-spacing:53.963280px;}
.lse1{letter-spacing:57.103504px;}
.lsd3{letter-spacing:58.589280px;}
.ls10d{letter-spacing:65.718000px;}
.ls2f{letter-spacing:67.648320px;}
.ls30{letter-spacing:68.365440px;}
.lsbd{letter-spacing:78.727680px;}
.lsc8{letter-spacing:78.749280px;}
.ls5a{letter-spacing:80.802000px;}
.ls19{letter-spacing:95.904000px;}
.ls56{letter-spacing:131.936400px;}
.ls5b{letter-spacing:166.476240px;}
.ls58{letter-spacing:174.435840px;}
.ls51{letter-spacing:196.722720px;}
.ls57{letter-spacing:202.511520px;}
.lsb8{letter-spacing:257.939280px;}
.ls83{letter-spacing:267.437323px;}
.lscb{letter-spacing:304.008480px;}
.ls4e{letter-spacing:313.367040px;}
.lscc{letter-spacing:314.090640px;}
.lsc7{letter-spacing:320.603040px;}
.ls59{letter-spacing:334.254960px;}
.ls67{letter-spacing:352.972080px;}
.ls66{letter-spacing:370.242000px;}
.ls84{letter-spacing:424.398995px;}
.lsc4{letter-spacing:532.260000px;}
.lsc6{letter-spacing:567.543600px;}
.lsc1{letter-spacing:593.471520px;}
.lscf{letter-spacing:610.477200px;}
.lsc5{letter-spacing:628.760160px;}
.ls4f{letter-spacing:640.241280px;}
.lse5{letter-spacing:810.412212px;}
.lse4{letter-spacing:810.412812px;}
.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;}
}
.ws15d{word-spacing:-48.240000px;}
.ws15c{word-spacing:-47.998800px;}
.ws9{word-spacing:-21.396960px;}
.wsa{word-spacing:-21.144240px;}
.ws3e{word-spacing:-18.288000px;}
.ws150{word-spacing:-18.144000px;}
.ws1ec{word-spacing:-18.072000px;}
.ws110{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.712000px;}
.ws4{word-spacing:-15.786786px;}
.ws42{word-spacing:-15.298560px;}
.ws1ef{word-spacing:-15.238800px;}
.ws45{word-spacing:-15.179040px;}
.ws1e6{word-spacing:-15.119280px;}
.ws43{word-spacing:-15.059520px;}
.ws3f{word-spacing:-14.999760px;}
.ws44{word-spacing:-14.940000px;}
.ws40{word-spacing:-14.880240px;}
.wsf6{word-spacing:-14.820480px;}
.ws41{word-spacing:-14.700960px;}
.ws46{word-spacing:-14.581440px;}
.ws15e{word-spacing:-14.521680px;}
.wsf4{word-spacing:-14.461920px;}
.ws96{word-spacing:-14.342400px;}
.wsf5{word-spacing:-14.163120px;}
.ws145{word-spacing:-14.103360px;}
.wsf{word-spacing:-13.878000px;}
.wsb{word-spacing:-13.716000px;}
.wsc{word-spacing:-13.662000px;}
.ws11{word-spacing:-13.608000px;}
.ws12{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.284000px;}
.ws1f9{word-spacing:-13.176000px;}
.ws1f0{word-spacing:-13.122000px;}
.wse{word-spacing:-12.906000px;}
.wsaa{word-spacing:-12.445920px;}
.wsac{word-spacing:-12.349440px;}
.wsad{word-spacing:-12.252960px;}
.ws15f{word-spacing:-12.108240px;}
.ws49{word-spacing:-12.060000px;}
.ws159{word-spacing:-12.011760px;}
.ws157{word-spacing:-11.963520px;}
.wsa8{word-spacing:-11.867040px;}
.wsa9{word-spacing:-11.818800px;}
.ws155{word-spacing:-11.770560px;}
.wsab{word-spacing:-11.722320px;}
.wsae{word-spacing:-11.625840px;}
.wsaf{word-spacing:-11.529360px;}
.ws156{word-spacing:-11.481120px;}
.ws15a{word-spacing:-11.384640px;}
.ws158{word-spacing:-11.288160px;}
.ws17e{word-spacing:-10.779965px;}
.ws118{word-spacing:-10.363350px;}
.ws179{word-spacing:-10.039142px;}
.ws1ac{word-spacing:-9.960712px;}
.ws1b4{word-spacing:-9.882281px;}
.ws17d{word-spacing:-9.803850px;}
.ws170{word-spacing:-9.764635px;}
.ws10f{word-spacing:-9.720000px;}
.ws174{word-spacing:-9.646988px;}
.ws16b{word-spacing:-9.568558px;}
.ws181{word-spacing:-9.529342px;}
.ws47{word-spacing:-9.437760px;}
.ws18b{word-spacing:-9.372481px;}
.ws119{word-spacing:-9.262567px;}
.ws11b{word-spacing:-9.153167px;}
.ws11c{word-spacing:-9.116700px;}
.ws1bf{word-spacing:-9.058757px;}
.ws186{word-spacing:-8.901896px;}
.ws48{word-spacing:-7.560000px;}
.ws7{word-spacing:-6.037336px;}
.wsff{word-spacing:-4.482000px;}
.ws6b{word-spacing:-3.764880px;}
.ws15b{word-spacing:-3.645360px;}
.ws147{word-spacing:-3.585600px;}
.wsa2{word-spacing:-3.525840px;}
.ws69{word-spacing:-3.346560px;}
.ws72{word-spacing:-3.047760px;}
.ws1f1{word-spacing:-2.928240px;}
.ws1da{word-spacing:-2.868480px;}
.ws7e{word-spacing:-2.808720px;}
.ws73{word-spacing:-2.629440px;}
.ws2a{word-spacing:-2.376000px;}
.wsd9{word-spacing:-2.363760px;}
.ws86{word-spacing:-2.330640px;}
.ws1ed{word-spacing:-2.211120px;}
.wse3{word-spacing:-2.170800px;}
.ws151{word-spacing:-2.151360px;}
.ws78{word-spacing:-2.091600px;}
.ws12f{word-spacing:-1.916832px;}
.ws79{word-spacing:-1.912320px;}
.ws1e0{word-spacing:-1.869107px;}
.ws26{word-spacing:-1.782000px;}
.ws9f{word-spacing:-1.733040px;}
.ws27{word-spacing:-1.620000px;}
.ws83{word-spacing:-1.613520px;}
.ws1dc{word-spacing:-1.521366px;}
.ws13d{word-spacing:-1.494000px;}
.ws1e2{word-spacing:-1.434431px;}
.ws1ea{word-spacing:-1.434240px;}
.ws92{word-spacing:-1.374480px;}
.ws29{word-spacing:-1.350000px;}
.ws84{word-spacing:-1.314720px;}
.ws15{word-spacing:-1.263600px;}
.ws85{word-spacing:-1.195200px;}
.ws130{word-spacing:-1.166938px;}
.ws1a4{word-spacing:-1.064263px;}
.ws18d{word-spacing:-1.063663px;}
.ws17a{word-spacing:-1.059961px;}
.ws3c{word-spacing:-1.026000px;}
.ws1e9{word-spacing:-1.015920px;}
.ws24{word-spacing:-0.918000px;}
.wsb4{word-spacing:-0.916560px;}
.ws67{word-spacing:-0.896400px;}
.ws2b{word-spacing:-0.864000px;}
.ws136{word-spacing:-0.838736px;}
.ws13c{word-spacing:-0.836640px;}
.wse0{word-spacing:-0.820080px;}
.wsb2{word-spacing:-0.723600px;}
.ws146{word-spacing:-0.717120px;}
.ws1e3{word-spacing:-0.705877px;}
.ws14b{word-spacing:-0.702000px;}
.ws7f{word-spacing:-0.657360px;}
.ws18f{word-spacing:-0.653808px;}
.ws17c{word-spacing:-0.653208px;}
.ws1f4{word-spacing:-0.648000px;}
.ws199{word-spacing:-0.588286px;}
.ws185{word-spacing:-0.587686px;}
.ws1ae{word-spacing:-0.587142px;}
.ws134{word-spacing:-0.547002px;}
.ws1f6{word-spacing:-0.540000px;}
.ws16{word-spacing:-0.505440px;}
.wsf8{word-spacing:-0.482400px;}
.ws68{word-spacing:-0.478080px;}
.ws132{word-spacing:-0.437602px;}
.ws1f8{word-spacing:-0.432000px;}
.wsba{word-spacing:-0.385920px;}
.ws1d7{word-spacing:-0.378000px;}
.ws52{word-spacing:-0.358560px;}
.wsb1{word-spacing:-0.337680px;}
.ws14{word-spacing:-0.336960px;}
.ws14f{word-spacing:-0.324000px;}
.ws1dd{word-spacing:-0.313723px;}
.ws148{word-spacing:-0.298800px;}
.ws163{word-spacing:-0.289440px;}
.ws113{word-spacing:-0.288000px;}
.ws17{word-spacing:-0.252720px;}
.ws61{word-spacing:-0.239040px;}
.ws1df{word-spacing:-0.235292px;}
.ws131{word-spacing:-0.218801px;}
.ws1a{word-spacing:-0.216000px;}
.ws93{word-spacing:-0.192960px;}
.ws50{word-spacing:-0.179280px;}
.ws18{word-spacing:-0.168480px;}
.ws3d{word-spacing:-0.162000px;}
.ws133{word-spacing:-0.145867px;}
.ws152{word-spacing:-0.144000px;}
.ws70{word-spacing:-0.119520px;}
.ws1e1{word-spacing:-0.115284px;}
.ws2{word-spacing:-0.113574px;}
.ws22{word-spacing:-0.108000px;}
.ws1de{word-spacing:-0.105835px;}
.wsdc{word-spacing:-0.096480px;}
.wsfe{word-spacing:-0.059760px;}
.ws5{word-spacing:-0.056787px;}
.ws18e{word-spacing:-0.038998px;}
.ws17b{word-spacing:-0.034097px;}
.ws1e4{word-spacing:-0.028821px;}
.ws0{word-spacing:0.000000px;}
.ws1e5{word-spacing:0.028821px;}
.ws160{word-spacing:0.048240px;}
.ws25{word-spacing:0.054000px;}
.ws8{word-spacing:0.056787px;}
.ws6a{word-spacing:0.059760px;}
.ws161{word-spacing:0.096480px;}
.ws2d{word-spacing:0.108000px;}
.ws9c{word-spacing:0.119520px;}
.ws1f5{word-spacing:0.162000px;}
.ws1af{word-spacing:0.164594px;}
.ws1a2{word-spacing:0.171948px;}
.ws198{word-spacing:0.178974px;}
.ws1db{word-spacing:0.179280px;}
.ws190{word-spacing:0.186980px;}
.ws1a8{word-spacing:0.187580px;}
.ws165{word-spacing:0.192960px;}
.ws1e{word-spacing:0.216000px;}
.ws71{word-spacing:0.239040px;}
.ws94{word-spacing:0.241200px;}
.ws135{word-spacing:0.248720px;}
.ws23{word-spacing:0.270000px;}
.ws19{word-spacing:0.288000px;}
.wse6{word-spacing:0.289440px;}
.ws114{word-spacing:0.298800px;}
.ws12e{word-spacing:0.331627px;}
.wsb0{word-spacing:0.337680px;}
.ws1b6{word-spacing:0.351250px;}
.ws1ad{word-spacing:0.353973px;}
.ws76{word-spacing:0.358560px;}
.ws178{word-spacing:0.375051px;}
.ws1a6{word-spacing:0.375541px;}
.ws1b{word-spacing:0.378000px;}
.ws1d5{word-spacing:0.383003px;}
.ws19e{word-spacing:0.383603px;}
.ws164{word-spacing:0.385920px;}
.ws77{word-spacing:0.418320px;}
.wsbb{word-spacing:0.434160px;}
.ws19a{word-spacing:0.435944px;}
.ws18c{word-spacing:0.445039px;}
.ws183{word-spacing:0.445474px;}
.ws1ab{word-spacing:0.446074px;}
.ws1d3{word-spacing:0.451684px;}
.ws9b{word-spacing:0.478080px;}
.ws184{word-spacing:0.488013px;}
.ws1d4{word-spacing:0.519059px;}
.ws95{word-spacing:0.530640px;}
.ws65{word-spacing:0.537840px;}
.ws30{word-spacing:0.540000px;}
.ws1b0{word-spacing:0.541390px;}
.ws28{word-spacing:0.594000px;}
.ws6f{word-spacing:0.597600px;}
.wsc0{word-spacing:0.627120px;}
.ws10a{word-spacing:0.657360px;}
.ws1f7{word-spacing:0.702000px;}
.ws14d{word-spacing:0.717120px;}
.wsf2{word-spacing:0.723600px;}
.ws1b1{word-spacing:0.737086px;}
.wsec{word-spacing:0.771840px;}
.ws4a{word-spacing:0.776880px;}
.ws1ee{word-spacing:0.820080px;}
.ws10b{word-spacing:0.836640px;}
.wse2{word-spacing:0.868320px;}
.ws32{word-spacing:0.918000px;}
.ws66{word-spacing:0.956160px;}
.wscc{word-spacing:1.013040px;}
.ws1be{word-spacing:1.050809px;}
.ws166{word-spacing:1.061280px;}
.ws149{word-spacing:1.075680px;}
.ws3b{word-spacing:1.134000px;}
.ws139{word-spacing:1.135440px;}
.wsf3{word-spacing:1.157760px;}
.ws1f{word-spacing:1.242000px;}
.wscd{word-spacing:1.254240px;}
.ws5d{word-spacing:1.254960px;}
.ws137{word-spacing:1.276338px;}
.ws1a7{word-spacing:1.294815px;}
.ws1a3{word-spacing:1.295469px;}
.ws14a{word-spacing:1.314720px;}
.wsfd{word-spacing:1.374480px;}
.ws1b5{word-spacing:1.393072px;}
.ws197{word-spacing:1.396775px;}
.ws11d{word-spacing:1.434240px;}
.ws5f{word-spacing:1.494000px;}
.ws20{word-spacing:1.512000px;}
.ws138{word-spacing:1.553760px;}
.ws5e{word-spacing:1.673280px;}
.ws21{word-spacing:1.836000px;}
.wsb7{word-spacing:1.881360px;}
.ws35{word-spacing:1.944000px;}
.ws4e{word-spacing:1.972080px;}
.wsb8{word-spacing:1.977840px;}
.ws7a{word-spacing:2.091600px;}
.ws7c{word-spacing:2.151360px;}
.wsb6{word-spacing:2.170800px;}
.ws7d{word-spacing:2.211120px;}
.ws98{word-spacing:2.390400px;}
.ws36{word-spacing:2.538000px;}
.ws180{word-spacing:2.549980px;}
.ws105{word-spacing:2.569680px;}
.ws192{word-spacing:2.659076px;}
.ws99{word-spacing:2.689200px;}
.ws10c{word-spacing:2.808720px;}
.ws9a{word-spacing:2.928240px;}
.wsa7{word-spacing:2.988000px;}
.ws7b{word-spacing:3.107520px;}
.ws16f{word-spacing:3.126502px;}
.ws31{word-spacing:3.294000px;}
.ws1c{word-spacing:3.402000px;}
.ws55{word-spacing:3.406320px;}
.wsc7{word-spacing:3.473280px;}
.ws194{word-spacing:3.486030px;}
.ws17f{word-spacing:3.493165px;}
.ws90{word-spacing:3.585600px;}
.ws54{word-spacing:3.645360px;}
.ws6{word-spacing:3.747942px;}
.ws16e{word-spacing:3.749154px;}
.ws58{word-spacing:3.824640px;}
.ws34{word-spacing:3.996000px;}
.ws104{word-spacing:4.003920px;}
.wsc6{word-spacing:4.100400px;}
.ws1d{word-spacing:4.104000px;}
.ws57{word-spacing:4.123440px;}
.ws193{word-spacing:4.133139px;}
.wsc5{word-spacing:4.196880px;}
.ws191{word-spacing:4.230034px;}
.ws8f{word-spacing:4.242960px;}
.ws8e{word-spacing:4.362480px;}
.ws33{word-spacing:4.374000px;}
.ws16c{word-spacing:4.435696px;}
.ws56{word-spacing:4.541760px;}
.ws19d{word-spacing:4.694681px;}
.ws106{word-spacing:4.721040px;}
.wsbc{word-spacing:4.824000px;}
.ws9e{word-spacing:4.840560px;}
.ws19b{word-spacing:4.893536px;}
.ws1eb{word-spacing:4.900320px;}
.ws14c{word-spacing:4.960080px;}
.wsd4{word-spacing:5.016960px;}
.ws9d{word-spacing:5.079600px;}
.ws5a{word-spacing:5.258880px;}
.ws19c{word-spacing:5.411071px;}
.ws1ce{word-spacing:5.411671px;}
.ws16d{word-spacing:5.423108px;}
.ws11e{word-spacing:5.438160px;}
.ws59{word-spacing:5.557680px;}
.ws2e{word-spacing:5.562000px;}
.ws154{word-spacing:5.677200px;}
.ws5c{word-spacing:5.796720px;}
.ws16a{word-spacing:5.961286px;}
.ws8b{word-spacing:5.976000px;}
.ws115{word-spacing:6.155280px;}
.ws2c{word-spacing:6.156000px;}
.wsb9{word-spacing:6.271200px;}
.ws5b{word-spacing:6.274800px;}
.ws14e{word-spacing:6.394320px;}
.ws2f{word-spacing:6.426000px;}
.ws12a{word-spacing:6.454080px;}
.wsde{word-spacing:6.464160px;}
.ws91{word-spacing:6.513840px;}
.ws167{word-spacing:6.588023px;}
.ws74{word-spacing:6.693120px;}
.ws111{word-spacing:6.872400px;}
.wsa4{word-spacing:6.991920px;}
.ws4b{word-spacing:7.051680px;}
.ws169{word-spacing:7.058116px;}
.ws124{word-spacing:7.171200px;}
.ws75{word-spacing:7.230960px;}
.ws4d{word-spacing:7.290720px;}
.ws112{word-spacing:7.410240px;}
.ws64{word-spacing:7.470000px;}
.wsa6{word-spacing:7.768800px;}
.ws1c5{word-spacing:7.840629px;}
.ws1ca{word-spacing:7.851141px;}
.ws12c{word-spacing:7.888320px;}
.wsf0{word-spacing:7.911360px;}
.ws168{word-spacing:7.912142px;}
.ws1cb{word-spacing:7.917153px;}
.ws4c{word-spacing:7.948080px;}
.ws10d{word-spacing:8.007840px;}
.ws8a{word-spacing:8.187120px;}
.ws1cd{word-spacing:8.321726px;}
.ws1c9{word-spacing:8.407727px;}
.wsc8{word-spacing:8.442000px;}
.ws4f{word-spacing:8.485920px;}
.ws1cc{word-spacing:8.575318px;}
.ws126{word-spacing:8.605440px;}
.ws125{word-spacing:8.665200px;}
.ws53{word-spacing:8.724960px;}
.ws1c6{word-spacing:8.852494px;}
.ws1c8{word-spacing:8.854891px;}
.ws51{word-spacing:8.904240px;}
.ws12d{word-spacing:9.203040px;}
.ws1d8{word-spacing:9.322560px;}
.ws1d9{word-spacing:9.382320px;}
.ws13a{word-spacing:9.442080px;}
.ws6d{word-spacing:9.621360px;}
.ws6c{word-spacing:9.920160px;}
.ws140{word-spacing:10.039680px;}
.wse8{word-spacing:10.082160px;}
.ws13b{word-spacing:10.099440px;}
.wsa3{word-spacing:10.159200px;}
.ws1c7{word-spacing:10.182115px;}
.ws6e{word-spacing:10.338480px;}
.wsce{word-spacing:10.612800px;}
.ws81{word-spacing:10.637280px;}
.wsa5{word-spacing:10.876320px;}
.ws80{word-spacing:11.055600px;}
.ws1c4{word-spacing:11.224210px;}
.ws1f3{word-spacing:11.234880px;}
.wse1{word-spacing:11.336400px;}
.ws8c{word-spacing:11.354400px;}
.wse7{word-spacing:11.529360px;}
.ws10e{word-spacing:11.593440px;}
.ws8d{word-spacing:11.772720px;}
.ws82{word-spacing:12.071520px;}
.ws1c0{word-spacing:12.169138px;}
.ws1c2{word-spacing:12.243808px;}
.wsf7{word-spacing:12.252960px;}
.ws11f{word-spacing:12.310560px;}
.ws120{word-spacing:12.489840px;}
.wsca{word-spacing:12.735360px;}
.wsfc{word-spacing:12.788640px;}
.ws1c1{word-spacing:12.827792px;}
.wsfb{word-spacing:13.027680px;}
.ws1c3{word-spacing:13.198596px;}
.ws153{word-spacing:13.206960px;}
.ws60{word-spacing:13.505760px;}
.ws63{word-spacing:13.685040px;}
.ws62{word-spacing:13.744800px;}
.ws97{word-spacing:13.924080px;}
.wsee{word-spacing:14.182560px;}
.ws37{word-spacing:14.202000px;}
.ws88{word-spacing:14.222880px;}
.wsd7{word-spacing:14.279040px;}
.wsd5{word-spacing:14.375520px;}
.ws89{word-spacing:14.461920px;}
.ws39{word-spacing:14.472000px;}
.ws87{word-spacing:14.641200px;}
.ws3a{word-spacing:14.796000px;}
.wsd8{word-spacing:14.906160px;}
.ws116{word-spacing:14.940000px;}
.ws13f{word-spacing:15.059520px;}
.ws38{word-spacing:15.120000px;}
.ws1f2{word-spacing:15.358320px;}
.ws13e{word-spacing:15.537600px;}
.ws162{word-spacing:15.657120px;}
.ws3{word-spacing:15.729999px;}
.wse4{word-spacing:15.822720px;}
.ws141{word-spacing:15.836400px;}
.ws142{word-spacing:15.896160px;}
.ws144{word-spacing:16.075440px;}
.ws143{word-spacing:16.254720px;}
.ws101{word-spacing:16.374240px;}
.wsd6{word-spacing:16.546320px;}
.ws103{word-spacing:16.613280px;}
.ws100{word-spacing:16.792560px;}
.ws102{word-spacing:16.971840px;}
.ws109{word-spacing:17.091360px;}
.wsc9{word-spacing:17.269920px;}
.ws107{word-spacing:17.330400px;}
.wsa1{word-spacing:17.808480px;}
.ws1d0{word-spacing:17.835491px;}
.ws1d2{word-spacing:17.836960px;}
.ws1cf{word-spacing:17.864465px;}
.ws1d1{word-spacing:17.917188px;}
.ws108{word-spacing:18.226800px;}
.wsa0{word-spacing:18.406080px;}
.ws12b{word-spacing:18.525600px;}
.wseb{word-spacing:18.620640px;}
.ws129{word-spacing:19.242720px;}
.wsdf{word-spacing:19.247760px;}
.ws127{word-spacing:19.481760px;}
.ws1e7{word-spacing:19.959840px;}
.ws128{word-spacing:20.139120px;}
.ws187{word-spacing:20.200723px;}
.ws1b7{word-spacing:20.339067px;}
.ws189{word-spacing:20.481440px;}
.ws1b9{word-spacing:20.496799px;}
.ws1b8{word-spacing:20.663247px;}
.wsc3{word-spacing:20.694960px;}
.wsc2{word-spacing:20.791440px;}
.ws18a{word-spacing:20.859215px;}
.wsc4{word-spacing:21.418560px;}
.ws117{word-spacing:21.453840px;}
.ws188{word-spacing:21.687531px;}
.wsd2{word-spacing:22.093920px;}
.wsd3{word-spacing:23.010480px;}
.ws121{word-spacing:23.605200px;}
.ws122{word-spacing:23.844240px;}
.ws123{word-spacing:24.023520px;}
.ws1e8{word-spacing:24.561360px;}
.wscf{word-spacing:26.435520px;}
.ws1bb{word-spacing:26.625022px;}
.wsd0{word-spacing:27.062640px;}
.ws1bd{word-spacing:27.147131px;}
.wsf9{word-spacing:27.159120px;}
.ws1bc{word-spacing:27.754045px;}
.wsd1{word-spacing:28.606320px;}
.wsdd{word-spacing:28.799280px;}
.ws1a5{word-spacing:30.526737px;}
.wsef{word-spacing:30.777120px;}
.ws1{word-spacing:31.459998px;}
.ws1a0{word-spacing:31.534190px;}
.wsea{word-spacing:31.693680px;}
.ws1a1{word-spacing:31.869647px;}
.ws19f{word-spacing:31.941922px;}
.wsfa{word-spacing:33.092640px;}
.ws172{word-spacing:33.369526px;}
.ws173{word-spacing:34.934493px;}
.ws171{word-spacing:34.954210px;}
.wse9{word-spacing:36.517680px;}
.wsda{word-spacing:37.241280px;}
.wsdb{word-spacing:37.434240px;}
.wsbd{word-spacing:38.688480px;}
.wsbe{word-spacing:40.328640px;}
.ws1a9{word-spacing:40.433636px;}
.ws1ba{word-spacing:40.510488px;}
.wsed{word-spacing:40.569840px;}
.wsb5{word-spacing:40.859280px;}
.ws1aa{word-spacing:41.086028px;}
.ws195{word-spacing:43.648101px;}
.wsb3{word-spacing:43.705440px;}
.ws196{word-spacing:43.922445px;}
.wsc1{word-spacing:44.429040px;}
.ws177{word-spacing:46.753307px;}
.ws175{word-spacing:46.785714px;}
.ws1b2{word-spacing:46.949493px;}
.ws176{word-spacing:47.127160px;}
.ws1b3{word-spacing:48.072470px;}
.wscb{word-spacing:51.616800px;}
.wsbf{word-spacing:53.064000px;}
.wsf1{word-spacing:55.427760px;}
.wse5{word-spacing:61.023600px;}
.ws182{word-spacing:80.606491px;}
.ws11a{word-spacing:153.926985px;}
.ws1d6{word-spacing:792.694362px;}
._1{margin-left:-7.268736px;}
._c{margin-left:-5.977560px;}
._1a{margin-left:-4.902993px;}
._0{margin-left:-3.634368px;}
._2{margin-left:-2.271480px;}
._4{margin-left:-1.192527px;}
._5{width:1.419675px;}
._a{width:2.498628px;}
._b{width:3.975090px;}
._d{width:5.412165px;}
._10{width:6.420777px;}
._11{width:7.885647px;}
._8{width:9.483429px;}
._16{width:11.116860px;}
._12{width:12.252000px;}
._f{width:13.922607px;}
._15{width:17.032200px;}
._9{width:18.682923px;}
._13{width:20.536005px;}
._17{width:23.961414px;}
._7{width:37.252272px;}
._3{width:39.637326px;}
._6{width:45.032091px;}
._20{width:54.542528px;}
._14{width:66.778725px;}
._22{width:75.279096px;}
._21{width:79.920000px;}
._1f{width:91.805871px;}
._1e{width:119.091666px;}
._19{width:122.790655px;}
._18{width:132.526165px;}
._1b{width:189.197280px;}
._23{width:198.882000px;}
._1c{width:344.723040px;}
._1d{width:822.877920px;}
._e{width:850.500000px;}
.fc5{color:rgb(36,41,46);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(91,75,75);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:26.458800px;}
.fs14{font-size:28.821000px;}
.fsa{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fs10{font-size:36.466800px;}
.fsc{font-size:38.880000px;}
.fs12{font-size:39.215400px;}
.fse{font-size:41.453400px;}
.fs9{font-size:41.760000px;}
.fs11{font-size:43.467600px;}
.fsf{font-size:46.752000px;}
.fsb{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:56.787000px;}
.fs8{font-size:59.760000px;}
.fs3{font-size:59.775600px;}
.fs7{font-size:66.240000px;}
.fs15{font-size:70.871400px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs0{font-size:90.859200px;}
.fs1{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:2.520000px;}
.y2a0{bottom:2.700000px;}
.y2e2{bottom:3.060000px;}
.y2c9{bottom:3.240000px;}
.y2e3{bottom:3.420000px;}
.yc9{bottom:9.360000px;}
.y1b8{bottom:10.558350px;}
.y1bc{bottom:10.601250px;}
.y1b7{bottom:10.717350px;}
.y1bd{bottom:10.791450px;}
.y1ba{bottom:11.413050px;}
.yb2{bottom:16.200000px;}
.ybb{bottom:16.380000px;}
.y29f{bottom:16.560000px;}
.y2a4{bottom:16.920000px;}
.y35d{bottom:20.510250px;}
.yc5{bottom:23.220000px;}
.ydd{bottom:30.060000px;}
.yc3{bottom:30.240000px;}
.yb7{bottom:30.780000px;}
.y2c7{bottom:30.960000px;}
.y35b{bottom:32.322150px;}
.y35c{bottom:35.275050px;}
.yfe{bottom:37.080000px;}
.y352{bottom:42.981450px;}
.ydf{bottom:43.920000px;}
.y35a{bottom:44.133900px;}
.y2ce{bottom:44.640000px;}
.yf8{bottom:50.760000px;}
.y351{bottom:54.793200px;}
.y359{bottom:55.945800px;}
.yd1{bottom:57.780000px;}
.y2f1{bottom:58.500000px;}
.y350{bottom:66.605100px;}
.y358{bottom:67.757700px;}
.y2fe{bottom:71.460000px;}
.y102{bottom:71.640000px;}
.y34f{bottom:78.416850px;}
.y1bb{bottom:79.000050px;}
.y1b9{bottom:79.414650px;}
.y357{bottom:79.569450px;}
.y1b1{bottom:81.069900px;}
.y1ad{bottom:81.450900px;}
.yf5{bottom:85.320000px;}
.y2b9{bottom:87.660000px;}
.y74{bottom:87.663960px;}
.y1f7{bottom:88.892100px;}
.y142{bottom:89.260380px;}
.y21d{bottom:89.645220px;}
.y34e{bottom:90.228900px;}
.y356{bottom:91.381350px;}
.y1b0{bottom:91.978800px;}
.y17a{bottom:92.160000px;}
.y1a8{bottom:92.339100px;}
.y1a5{bottom:92.340000px;}
.y1ac{bottom:92.359800px;}
.y1b5{bottom:92.774100px;}
.y245{bottom:93.415500px;}
.y266{bottom:93.501720px;}
.y391{bottom:93.862980px;}
.yae{bottom:95.837400px;}
.y3d1{bottom:96.954870px;}
.y42b{bottom:98.410500px;}
.y2f8{bottom:99.900000px;}
.y1b4{bottom:100.333200px;}
.y467{bottom:100.921500px;}
.y29c{bottom:101.340000px;}
.y34d{bottom:102.040650px;}
.y1af{bottom:102.887550px;}
.y1b3{bottom:102.887700px;}
.y35f{bottom:103.193100px;}
.y355{bottom:103.193250px;}
.y1ab{bottom:103.268700px;}
.y179{bottom:103.320000px;}
.y477{bottom:103.432500px;}
.y1a7{bottom:104.806350px;}
.y400{bottom:104.913000px;}
.y73{bottom:105.840000px;}
.y1f6{bottom:106.177680px;}
.y141{bottom:106.545960px;}
.y1a4{bottom:108.138780px;}
.y244{bottom:108.900000px;}
.y265{bottom:110.787300px;}
.y390{bottom:111.148560px;}
.y12{bottom:111.475500px;}
.yad{bottom:113.122980px;}
.y1ae{bottom:113.796450px;}
.y1b2{bottom:113.796600px;}
.y42a{bottom:113.895000px;}
.y34c{bottom:113.970600px;}
.y34a{bottom:113.970750px;}
.y1aa{bottom:114.177450px;}
.y3d0{bottom:114.240450px;}
.y35e{bottom:115.123050px;}
.y353{bottom:115.123200px;}
.y470{bottom:116.406000px;}
.y72{bottom:117.180000px;}
.y34b{bottom:117.277950px;}
.y354{bottom:118.430400px;}
.y450{bottom:118.917000px;}
.y29b{bottom:119.700000px;}
.y108{bottom:120.240000px;}
.y3ff{bottom:120.573000px;}
.y1a6{bottom:122.296500px;}
.y1f5{bottom:123.463260px;}
.y140{bottom:123.831540px;}
.y21c{bottom:124.560000px;}
.y264{bottom:127.893600px;}
.y38f{bottom:128.434140px;}
.y178{bottom:128.874420px;}
.y29a{bottom:129.063960px;}
.y11{bottom:129.409500px;}
.y107{bottom:129.603060px;}
.yac{bottom:130.408560px;}
.y2b8{bottom:131.040000px;}
.y3cf{bottom:131.526030px;}
.y44f{bottom:134.401500px;}
.y1f4{bottom:140.748840px;}
.y13f{bottom:141.117120px;}
.y299{bottom:142.740000px;}
.y106{bottom:143.460000px;}
.y361{bottom:144.217500px;}
.y333{bottom:144.360000px;}
.y263{bottom:145.179180px;}
.y38e{bottom:145.540440px;}
.y177{bottom:146.160000px;}
.y10{bottom:147.342000px;}
.y429{bottom:147.550500px;}
.yab{bottom:147.694140px;}
.y3ce{bottom:148.811610px;}
.y466{bottom:149.886000px;}
.y1a9{bottom:150.954750px;}
.y476{bottom:152.397000px;}
.y3fe{bottom:154.053000px;}
.y1f3{bottom:158.034420px;}
.y332{bottom:158.940000px;}
.y298{bottom:161.100000px;}
.y315{bottom:162.000000px;}
.yfd{bottom:162.360000px;}
.y262{bottom:162.464760px;}
.y38d{bottom:162.826020px;}
.y428{bottom:163.035000px;}
.y176{bottom:163.189800px;}
.yaa{bottom:164.979720px;}
.y465{bottom:165.546000px;}
.y3cd{bottom:166.097190px;}
.y44e{bottom:167.881500px;}
.y71{bottom:169.519680px;}
.y3fd{bottom:169.537500px;}
.y13e{bottom:170.280000px;}
.y297{bottom:172.440000px;}
.y1f2{bottom:175.320000px;}
.y311{bottom:175.500000px;}
.y331{bottom:176.534820px;}
.yd8{bottom:178.380000px;}
.y105{bottom:178.743060px;}
.y261{bottom:179.750340px;}
.y1b6{bottom:179.953200px;}
.y38c{bottom:180.111600px;}
.y175{bottom:180.475380px;}
.ya9{bottom:182.086020px;}
.y3cc{bottom:183.203490px;}
.y44d{bottom:183.541500px;}
.yff{bottom:185.580000px;}
.y70{bottom:186.805260px;}
.y314{bottom:191.880000px;}
.yd6{bottom:192.240000px;}
.y1f1{bottom:192.420000px;}
.y104{bottom:192.600000px;}
.y101{bottom:192.603960px;}
.y296{bottom:194.391180px;}
.y427{bottom:196.515000px;}
.y38b{bottom:197.397180px;}
.y174{bottom:197.760960px;}
.y464{bottom:199.026000px;}
.ya8{bottom:199.371600px;}
.y3cb{bottom:200.489070px;}
.y475{bottom:201.537000px;}
.y3fc{bottom:203.017500px;}
.y6f{bottom:204.090840px;}
.y13d{bottom:205.287660px;}
.y313{bottom:205.743960px;}
.y349{bottom:206.042250px;}
.yd5{bottom:206.100000px;}
.y100{bottom:206.280000px;}
.y260{bottom:208.913220px;}
.y1f0{bottom:209.661660px;}
.y330{bottom:210.373920px;}
.y295{bottom:211.676760px;}
.y426{bottom:211.999500px;}
.yfc{bottom:213.300000px;}
.y463{bottom:214.510500px;}
.y38a{bottom:214.682760px;}
.y173{bottom:215.046540px;}
.ya7{bottom:216.657180px;}
.y44c{bottom:217.021500px;}
.y3ca{bottom:217.774650px;}
.y33f{bottom:217.854000px;}
.y3fb{bottom:218.677500px;}
.yf{bottom:219.072000px;}
.y312{bottom:219.420000px;}
.y103{bottom:220.140000px;}
.y348{bottom:220.807050px;}
.y6e{bottom:221.376420px;}
.y13c{bottom:222.573240px;}
.y1ef{bottom:226.947240px;}
.y32f{bottom:227.659500px;}
.y294{bottom:228.783060px;}
.y33c{bottom:229.665900px;}
.y33e{bottom:229.666050px;}
.y389{bottom:231.968340px;}
.y172{bottom:232.332120px;}
.y44b{bottom:232.506000px;}
.y33d{bottom:232.618950px;}
.ya6{bottom:233.942760px;}
.y3fa{bottom:234.162000px;}
.y3c9{bottom:235.060230px;}
.ye{bottom:237.006000px;}
.y6d{bottom:238.482720px;}
.y13b{bottom:239.858820px;}
.y344{bottom:241.477650px;}
.y347{bottom:241.477800px;}
.y33b{bottom:241.477950px;}
.y25f{bottom:244.186560px;}
.y1ee{bottom:244.232820px;}
.y32e{bottom:244.765800px;}
.y310{bottom:245.340000px;}
.y425{bottom:245.655000px;}
.yfb{bottom:245.880000px;}
.y44a{bottom:247.990500px;}
.y388{bottom:249.074640px;}
.y171{bottom:249.617700px;}
.y3f9{bottom:249.646500px;}
.y474{bottom:250.501500px;}
.ya5{bottom:251.228340px;}
.y3c8{bottom:252.345810px;}
.y343{bottom:253.289550px;}
.y346{bottom:253.289700px;}
.y33a{bottom:253.289850px;}
.yd{bottom:254.938500px;}
.yfa{bottom:255.420000px;}
.y6c{bottom:255.768300px;}
.y13a{bottom:256.965120px;}
.y293{bottom:258.125220px;}
.y30a{bottom:260.640000px;}
.y424{bottom:261.139500px;}
.y25e{bottom:261.472140px;}
.y1ed{bottom:261.518400px;}
.y32d{bottom:262.051380px;}
.y243{bottom:262.737900px;}
.y462{bottom:263.650500px;}
.y342{bottom:265.101450px;}
.y339{bottom:265.101600px;}
.y473{bottom:265.986000px;}
.y387{bottom:266.360220px;}
.y170{bottom:266.724000px;}
.ya4{bottom:268.334640px;}
.y3c7{bottom:269.631390px;}
.yc{bottom:272.871000px;}
.y6b{bottom:273.053880px;}
.y139{bottom:274.250700px;}
.yf4{bottom:274.320000px;}
.y341{bottom:276.913200px;}
.y345{bottom:276.913350px;}
.y338{bottom:276.913500px;}
.y30f{bottom:277.020000px;}
.y30d{bottom:277.023960px;}
.y25d{bottom:278.757720px;}
.y1ec{bottom:278.803980px;}
.y32c{bottom:279.336960px;}
.y242{bottom:280.023480px;}
.y449{bottom:281.646000px;}
.y3f8{bottom:283.126500px;}
.y386{bottom:283.645800px;}
.y16f{bottom:284.009580px;}
.y21b{bottom:284.556960px;}
.ya3{bottom:285.620220px;}
.y3c6{bottom:286.737690px;}
.y337{bottom:288.725250px;}
.y6a{bottom:290.339460px;}
.y30c{bottom:290.700000px;}
.y30e{bottom:290.703060px;}
.y138{bottom:291.536280px;}
.y292{bottom:293.040000px;}
.y423{bottom:294.619500px;}
.y1eb{bottom:295.910280px;}
.y25c{bottom:296.043300px;}
.y32b{bottom:296.622540px;}
.y448{bottom:297.130500px;}
.y241{bottom:297.309060px;}
.y3f7{bottom:298.786500px;}
.y478{bottom:299.641500px;}
.y336{bottom:300.537150px;}
.y385{bottom:300.931380px;}
.y16e{bottom:301.295160px;}
.y21a{bottom:301.663260px;}
.ya2{bottom:302.905800px;}
.y3c5{bottom:304.023270px;}
.yf7{bottom:304.383060px;}
.y30b{bottom:304.560000px;}
.y291{bottom:306.360000px;}
.y69{bottom:308.783880px;}
.y137{bottom:308.821860px;}
.y422{bottom:310.104000px;}
.yf9{bottom:311.400000px;}
.y335{bottom:312.467100px;}
.y461{bottom:312.615000px;}
.y1ea{bottom:313.195860px;}
.y25b{bottom:313.328880px;}
.y32a{bottom:313.908120px;}
.y240{bottom:314.594640px;}
.y472{bottom:315.126000px;}
.y340{bottom:315.774450px;}
.y384{bottom:318.216960px;}
.yf3{bottom:318.240000px;}
.y16d{bottom:318.580740px;}
.y219{bottom:318.948840px;}
.ya1{bottom:320.191380px;}
.y290{bottom:320.940000px;}
.y3c4{bottom:321.308850px;}
.y136{bottom:326.107440px;}
.yb{bottom:326.668500px;}
.y68{bottom:327.682980px;}
.y25a{bottom:330.435180px;}
.y309{bottom:330.480000px;}
.y447{bottom:330.610500px;}
.y1e9{bottom:330.839460px;}
.y329{bottom:331.193700px;}
.y1a3{bottom:331.880220px;}
.y3f6{bottom:332.266500px;}
.y383{bottom:335.502540px;}
.y28f{bottom:335.520000px;}
.y16c{bottom:335.866320px;}
.y218{bottom:336.234420px;}
.ya0{bottom:337.476960px;}
.y3c3{bottom:338.594430px;}
.y360{bottom:339.905100px;}
.y135{bottom:343.393020px;}
.y421{bottom:343.759500px;}
.ya{bottom:344.602500px;}
.y67{bottom:344.789280px;}
.yf6{bottom:345.780000px;}
.y460{bottom:346.095000px;}
.y259{bottom:347.720760px;}
.y3f5{bottom:347.751000px;}
.y328{bottom:348.283260px;}
.y1a2{bottom:349.165800px;}
.y1e8{bottom:349.380000px;}
.y28e{bottom:350.100000px;}
.y382{bottom:352.608840px;}
.y217{bottom:353.520000px;}
.y9f{bottom:354.762540px;}
.y3c2{bottom:355.880010px;}
.y420{bottom:359.244000px;}
.y134{bottom:360.499320px;}
.y45f{bottom:361.755000px;}
.y66{bottom:362.074860px;}
.y308{bottom:362.160000px;}
.y306{bottom:362.163960px;}
.y446{bottom:364.090500px;}
.y28d{bottom:364.680000px;}
.y258{bottom:365.006340px;}
.y16b{bottom:365.029200px;}
.y327{bottom:365.568840px;}
.y1a1{bottom:366.451380px;}
.y1e7{bottom:366.660000px;}
.y381{bottom:369.894420px;}
.y216{bottom:370.800000px;}
.yf1{bottom:371.700000px;}
.y9e{bottom:371.868840px;}
.y3c1{bottom:373.165590px;}
.y2b7{bottom:374.944500px;}
.y305{bottom:375.840000px;}
.y307{bottom:375.843060px;}
.y133{bottom:377.784900px;}
.y28c{bottom:379.080000px;}
.y65{bottom:379.360440px;}
.y445{bottom:379.750500px;}
.y9{bottom:380.467500px;}
.y3f4{bottom:381.231000px;}
.y257{bottom:382.291920px;}
.y326{bottom:382.854420px;}
.y1a0{bottom:383.557680px;}
.y1e6{bottom:383.871600px;}
.y380{bottom:387.156960px;}
.yf0{bottom:387.901080px;}
.y215{bottom:388.045080px;}
.y9d{bottom:389.154420px;}
.y304{bottom:389.700000px;}
.y3c0{bottom:390.271890px;}
.y41f{bottom:392.724000px;}
.y28b{bottom:393.660000px;}
.yef{bottom:394.920000px;}
.y132{bottom:395.070480px;}
.y444{bottom:395.235000px;}
.y64{bottom:396.646020px;}
.y3f3{bottom:396.891000px;}
.y8{bottom:398.400000px;}
.y256{bottom:399.577500px;}
.y325{bottom:400.094640px;}
.y16a{bottom:400.302540px;}
.y19f{bottom:400.843260px;}
.y1e5{bottom:401.157180px;}
.yf2{bottom:401.760000px;}
.y2b6{bottom:402.660000px;}
.y37f{bottom:404.442540px;}
.y214{bottom:405.151380px;}
.y9c{bottom:406.360440px;}
.y3bf{bottom:407.557470px;}
.y41e{bottom:408.208500px;}
.y28a{bottom:408.240000px;}
.yed{bottom:408.960000px;}
.y45e{bottom:410.719500px;}
.y131{bottom:412.356060px;}
.y471{bottom:413.230500px;}
.y63{bottom:413.931600px;}
.y303{bottom:415.620000px;}
.y2c4{bottom:416.160000px;}
.y7{bottom:416.332500px;}
.y255{bottom:416.683800px;}
.y324{bottom:417.380220px;}
.y169{bottom:417.588120px;}
.y19e{bottom:418.128840px;}
.y1e4{bottom:418.442760px;}
.y37e{bottom:421.728120px;}
.y213{bottom:422.436960px;}
.y289{bottom:422.820000px;}
.y9b{bottom:423.646020px;}
.y3be{bottom:424.843050px;}
.y45d{bottom:426.204000px;}
.yd4{bottom:427.500000px;}
.y443{bottom:428.715000px;}
.y130{bottom:429.641640px;}
.y3f2{bottom:430.371000px;}
.y2c3{bottom:430.560000px;}
.y2f7{bottom:430.920000px;}
.y62{bottom:431.217180px;}
.y254{bottom:433.969380px;}
.y6{bottom:434.265000px;}
.y323{bottom:434.665800px;}
.y168{bottom:434.873700px;}
.y19d{bottom:435.414420px;}
.y1e3{bottom:435.728340px;}
.yee{bottom:437.035680px;}
.y288{bottom:437.400000px;}
.y37d{bottom:438.834420px;}
.y212{bottom:439.722540px;}
.y9a{bottom:440.931600px;}
.y41d{bottom:441.864000px;}
.y3bd{bottom:442.128630px;}
.y442{bottom:444.199500px;}
.y2c2{bottom:445.140000px;}
.y3f1{bottom:445.855500px;}
.y12f{bottom:446.747940px;}
.y287{bottom:446.760000px;}
.y302{bottom:447.300000px;}
.y61{bottom:448.323480px;}
.y37{bottom:449.631000px;}
.y322{bottom:451.772100px;}
.y167{bottom:451.980000px;}
.y19c{bottom:452.700000px;}
.y1e2{bottom:452.834640px;}
.yec{bottom:455.940000px;}
.y37c{bottom:456.120000px;}
.y211{bottom:457.008120px;}
.y41c{bottom:457.348500px;}
.y99{bottom:458.217180px;}
.y3bc{bottom:459.414210px;}
.y2c1{bottom:459.720000px;}
.y441{bottom:459.859500px;}
.y301{bottom:460.986120px;}
.y3f0{bottom:461.340000px;}
.y46f{bottom:462.195000px;}
.y253{bottom:463.311540px;}
.y12e{bottom:464.033520px;}
.y60{bottom:465.609060px;}
.y286{bottom:468.540000px;}
.y321{bottom:469.057680px;}
.y19b{bottom:469.973700px;}
.y23f{bottom:469.980000px;}
.y1e1{bottom:470.120220px;}
.y37b{bottom:473.400000px;}
.y210{bottom:474.293700px;}
.y2c0{bottom:474.300000px;}
.y300{bottom:474.843060px;}
.y98{bottom:475.323480px;}
.y45c{bottom:475.344000px;}
.y2fc{bottom:475.567020px;}
.y3bb{bottom:476.520510px;}
.y46e{bottom:477.855000px;}
.y5{bottom:479.097000px;}
.y12d{bottom:481.319100px;}
.y5f{bottom:482.894640px;}
.y166{bottom:483.660000px;}
.yeb{bottom:484.200000px;}
.y320{bottom:486.343260px;}
.y19a{bottom:487.080000px;}
.y1e0{bottom:487.405800px;}
.y2ff{bottom:488.700000px;}
.y2bf{bottom:488.880000px;}
.y2fb{bottom:489.423960px;}
.y37a{bottom:490.674420px;}
.y41b{bottom:490.828500px;}
.y20f{bottom:491.400000px;}
.y36{bottom:492.115500px;}
.y252{bottom:492.474420px;}
.y97{bottom:492.609060px;}
.y440{bottom:493.339500px;}
.y3ba{bottom:493.806090px;}
.y3ef{bottom:495.900000px;}
.y12c{bottom:498.604680px;}
.yea{bottom:498.780000px;}
.y5e{bottom:500.180220px;}
.y285{bottom:500.827500px;}
.y2fa{bottom:503.100000px;}
.y2be{bottom:503.460000px;}
.y31f{bottom:503.628840px;}
.y23e{bottom:504.257400px;}
.y199{bottom:504.360000px;}
.y1df{bottom:504.691380px;}
.y41a{bottom:506.313000px;}
.y379{bottom:507.960000px;}
.ye9{bottom:508.320000px;}
.y35{bottom:508.680000px;}
.y43f{bottom:508.824000px;}
.y251{bottom:509.760000px;}
.y96{bottom:509.894640px;}
.y3b9{bottom:511.091670px;}
.y2fd{bottom:514.440000px;}
.y12b{bottom:515.890260px;}
.y2f9{bottom:516.960000px;}
.y5d{bottom:517.465800px;}
.y2bd{bottom:517.860000px;}
.y284{bottom:518.113080px;}
.y31e{bottom:520.914420px;}
.y165{bottom:521.440380px;}
.y23d{bottom:521.542980px;}
.y198{bottom:521.588340px;}
.y1de{bottom:521.976960px;}
.y45b{bottom:524.308500px;}
.y378{bottom:525.211380px;}
.y20e{bottom:525.954420px;}
.y46d{bottom:526.819500px;}
.y95{bottom:527.180220px;}
.ye8{bottom:527.220000px;}
.y3b8{bottom:528.377250px;}
.y2bc{bottom:532.440000px;}
.y12a{bottom:533.175840px;}
.y3ee{bottom:533.766240px;}
.y5c{bottom:534.751380px;}
.y283{bottom:535.398660px;}
.y31d{bottom:538.188120px;}
.y164{bottom:538.725960px;}
.y23c{bottom:538.828560px;}
.y197{bottom:538.873920px;}
.y1dd{bottom:539.262540px;}
.y419{bottom:539.968500px;}
.ye7{bottom:541.800000px;}
.y43e{bottom:542.304000px;}
.y377{bottom:542.317680px;}
.y2f6{bottom:542.880000px;}
.y20d{bottom:543.240000px;}
.y94{bottom:544.465800px;}
.y3b7{bottom:545.662830px;}
.y250{bottom:545.760000px;}
.y2bb{bottom:547.020000px;}
.y129{bottom:550.282140px;}
.y3ed{bottom:551.051820px;}
.y5b{bottom:551.857680px;}
.y282{bottom:552.684240px;}
.y31c{bottom:555.294420px;}
.y418{bottom:555.453000px;}
.y163{bottom:556.011540px;}
.y23b{bottom:556.114140px;}
.y196{bottom:556.159500px;}
.y1dc{bottom:556.368840px;}
.y43d{bottom:557.964000px;}
.ye6{bottom:558.000000px;}
.y2f0{bottom:558.180000px;}
.y376{bottom:559.603260px;}
.y20c{bottom:560.480220px;}
.y93{bottom:561.751380px;}
.y3b6{bottom:562.948410px;}
.y128{bottom:567.567720px;}
.y2ba{bottom:567.720000px;}
.y3ec{bottom:568.337400px;}
.y5a{bottom:569.143260px;}
.y281{bottom:569.790540px;}
.y31b{bottom:572.580000px;}
.y2f4{bottom:572.585580px;}
.y34{bottom:573.277500px;}
.y162{bottom:573.297120px;}
.y23a{bottom:573.399720px;}
.y195{bottom:573.445080px;}
.y45a{bottom:573.448500px;}
.y1db{bottom:573.654420px;}
.y375{bottom:576.888840px;}
.y20b{bottom:577.765800px;}
.yda{bottom:578.343060px;}
.y92{bottom:578.857680px;}
.y3b5{bottom:580.054710px;}
.y24f{bottom:583.713360px;}
.ye5{bottom:583.920000px;}
.y127{bottom:584.853300px;}
.y3eb{bottom:585.622980px;}
.y59{bottom:586.428840px;}
.y2f5{bottom:586.440000px;}
.y280{bottom:587.076120px;}
.y33{bottom:588.762000px;}
.y417{bottom:588.933000px;}
.y2f3{bottom:588.963060px;}
.y31a{bottom:589.854420px;}
.y161{bottom:590.403420px;}
.y239{bottom:590.506020px;}
.y194{bottom:590.551380px;}
.y1da{bottom:590.940000px;}
.y43c{bottom:591.444000px;}
.yd9{bottom:592.200000px;}
.y374{bottom:594.174420px;}
.y20a{bottom:594.872100px;}
.y91{bottom:596.143260px;}
.y3b4{bottom:597.340290px;}
.ye4{bottom:600.120000px;}
.y24e{bottom:600.998940px;}
.y2b5{bottom:602.100000px;}
.y126{bottom:602.138880px;}
.y2f2{bottom:602.820000px;}
.y3ea{bottom:602.908560px;}
.y58{bottom:603.714420px;}
.y32{bottom:604.246500px;}
.y27f{bottom:604.361700px;}
.y416{bottom:604.417500px;}
.yd7{bottom:605.880000px;}
.y43b{bottom:606.928500px;}
.y319{bottom:607.140000px;}
.y160{bottom:607.689000px;}
.y238{bottom:607.791600px;}
.y193{bottom:607.836960px;}
.y373{bottom:611.454420px;}
.y209{bottom:612.157680px;}
.y90{bottom:613.428840px;}
.y3b3{bottom:614.625870px;}
.y2b4{bottom:617.940000px;}
.y24d{bottom:618.284520px;}
.y125{bottom:619.424460px;}
.y31{bottom:619.906500px;}
.y3e9{bottom:620.014860px;}
.y57{bottom:621.000000px;}
.y27e{bottom:621.647280px;}
.y459{bottom:622.413000px;}
.y318{bottom:624.420000px;}
.y15f{bottom:624.974580px;}
.y237{bottom:625.077180px;}
.y192{bottom:625.122540px;}
.yde{bottom:626.040000px;}
.y1d9{bottom:626.940000px;}
.y2ef{bottom:628.740000px;}
.y208{bottom:629.443260px;}
.y8f{bottom:630.714420px;}
.y3b2{bottom:631.911450px;}
.yce{bottom:634.320000px;}
.y2b3{bottom:635.220000px;}
.y24c{bottom:635.390820px;}
.y30{bottom:635.391000px;}
.ye3{bottom:635.406120px;}
.y124{bottom:636.710040px;}
.y3e8{bottom:637.300440px;}
.y415{bottom:637.897500px;}
.y56{bottom:637.946460px;}
.y27d{bottom:638.932860px;}
.y43a{bottom:640.408500px;}
.y15e{bottom:642.260160px;}
.y236{bottom:642.362760px;}
.y191{bottom:642.408120px;}
.ye0{bottom:642.420000px;}
.y2ee{bottom:644.040000px;}
.y372{bottom:645.828840px;}
.y207{bottom:646.728840px;}
.y8e{bottom:648.000000px;}
.y3b1{bottom:649.197030px;}
.ye2{bottom:649.263060px;}
.y2f{bottom:650.875500px;}
.y2b2{bottom:652.320000px;}
.y24b{bottom:652.676400px;}
.y123{bottom:653.816340px;}
.y3e7{bottom:654.586020px;}
.y55{bottom:655.232040px;}
.y439{bottom:655.893000px;}
.y27c{bottom:656.039160px;}
.y317{bottom:659.340000px;}
.y15d{bottom:659.545740px;}
.y235{bottom:659.648340px;}
.y190{bottom:659.693700px;}
.y2ed{bottom:662.400000px;}
.y371{bottom:663.114420px;}
.ye1{bottom:663.120000px;}
.y206{bottom:664.014420px;}
.y1d8{bottom:664.885800px;}
.y8d{bottom:665.072100px;}
.y2e{bottom:666.360000px;}
.y3b0{bottom:666.482610px;}
.y2b1{bottom:669.600000px;}
.y122{bottom:671.101920px;}
.y414{bottom:671.553000px;}
.y3e6{bottom:671.871600px;}
.y54{bottom:672.517620px;}
.y27b{bottom:673.324740px;}
.y316{bottom:675.162000px;}
.y15c{bottom:676.652040px;}
.y234{bottom:676.754640px;}
.y18f{bottom:676.800000px;}
.y370{bottom:680.400000px;}
.y205{bottom:681.300000px;}
.y24a{bottom:681.660000px;}
.y2d{bottom:681.939000px;}
.ydc{bottom:682.020000px;}
.y1d7{bottom:682.171380px;}
.y8c{bottom:682.357680px;}
.y3af{bottom:683.588910px;}
.y2b0{bottom:686.880000px;}
.y413{bottom:687.037500px;}
.y121{bottom:688.387500px;}
.y3e5{bottom:689.157180px;}
.y458{bottom:689.548500px;}
.y334{bottom:689.643000px;}
.y53{bottom:689.803200px;}
.y27a{bottom:690.610320px;}
.y15b{bottom:693.937620px;}
.y233{bottom:694.040220px;}
.y18e{bottom:694.080000px;}
.y2ec{bottom:696.240000px;}
.y2c{bottom:697.423500px;}
.y36f{bottom:697.680000px;}
.ydb{bottom:698.220000px;}
.y1d6{bottom:699.277680px;}
.y8b{bottom:699.643260px;}
.y3ae{bottom:700.874490px;}
.y412{bottom:702.522000px;}
.y2af{bottom:704.160000px;}
.y438{bottom:705.033000px;}
.y120{bottom:705.673080px;}
.y3e4{bottom:706.442760px;}
.y52{bottom:707.088780px;}
.y279{bottom:707.895900px;}
.y15a{bottom:711.223200px;}
.y18d{bottom:711.297180px;}
.y232{bottom:711.325800px;}
.y2b{bottom:712.908000px;}
.y2eb{bottom:713.340000px;}
.y36e{bottom:714.902400px;}
.y204{bottom:716.215500px;}
.y1d5{bottom:716.563260px;}
.y8a{bottom:716.928840px;}
.y3ad{bottom:718.160070px;}
.y437{bottom:720.517500px;}
.y2ae{bottom:721.440000px;}
.y11f{bottom:722.958660px;}
.y3e3{bottom:723.549060px;}
.yd0{bottom:724.140000px;}
.y51{bottom:724.374360px;}
.y278{bottom:725.181480px;}
.y2a{bottom:728.392500px;}
.y159{bottom:728.508780px;}
.y18c{bottom:728.582760px;}
.y231{bottom:728.611380px;}
.y203{bottom:731.700000px;}
.y36d{bottom:732.187980px;}
.y1d4{bottom:733.848840px;}
.y89{bottom:734.214420px;}
.y3ac{bottom:735.445650px;}
.y411{bottom:736.002000px;}
.y46c{bottom:738.513000px;}
.y2ad{bottom:738.720000px;}
.y11e{bottom:740.244240px;}
.y3e2{bottom:740.834640px;}
.y50{bottom:741.480660px;}
.y277{bottom:742.467060px;}
.y29{bottom:744.052500px;}
.y158{bottom:745.794360px;}
.y18b{bottom:745.868340px;}
.y230{bottom:745.896960px;}
.y2ea{bottom:748.440000px;}
.y36c{bottom:749.294280px;}
.y1d3{bottom:751.134420px;}
.y88{bottom:751.443300px;}
.y410{bottom:751.662000px;}
.y3ab{bottom:752.731230px;}
.y436{bottom:753.997500px;}
.ycf{bottom:754.196400px;}
.yd3{bottom:754.203060px;}
.y2ac{bottom:755.820000px;}
.y11d{bottom:757.350540px;}
.y3e1{bottom:758.120220px;}
.y4f{bottom:758.766240px;}
.y28{bottom:759.537000px;}
.y276{bottom:759.573360px;}
.y2e9{bottom:761.760000px;}
.y157{bottom:763.079940px;}
.y18a{bottom:763.153920px;}
.y22f{bottom:763.182540px;}
.y36b{bottom:766.579860px;}
.yd2{bottom:768.060000px;}
.y1d2{bottom:768.303360px;}
.y87{bottom:768.549600px;}
.y435{bottom:769.657500px;}
.y3aa{bottom:769.837530px;}
.y2ab{bottom:773.100000px;}
.y11c{bottom:774.636120px;}
.y27{bottom:775.021500px;}
.y3e0{bottom:775.405800px;}
.y4e{bottom:776.051820px;}
.y2e8{bottom:776.340000px;}
.y275{bottom:776.858940px;}
.y156{bottom:780.186240px;}
.y189{bottom:780.260220px;}
.y22e{bottom:780.288840px;}
.y36a{bottom:783.865440px;}
.y40f{bottom:785.142000px;}
.y1d1{bottom:785.588940px;}
.y86{bottom:785.835180px;}
.y3a9{bottom:787.123110px;}
.y46b{bottom:787.653000px;}
.y2aa{bottom:790.380000px;}
.y26{bottom:790.506000px;}
.y2e4{bottom:790.740000px;}
.y11b{bottom:791.921700px;}
.y3df{bottom:792.691380px;}
.y4d{bottom:793.337400px;}
.ycc{bottom:793.800000px;}
.y274{bottom:794.144520px;}
.y155{bottom:797.471820px;}
.y188{bottom:797.545800px;}
.y22d{bottom:797.574420px;}
.y40e{bottom:800.626500px;}
.y369{bottom:801.151020px;}
.y1d0{bottom:802.695240px;}
.y85{bottom:803.120760px;}
.y434{bottom:803.137500px;}
.y3a8{bottom:804.408690px;}
.y25{bottom:806.166000px;}
.y2e6{bottom:807.122910px;}
.y2a9{bottom:807.660000px;}
.y11a{bottom:809.207280px;}
.y3de{bottom:809.976960px;}
.ycd{bottom:810.180000px;}
.y4c{bottom:810.622980px;}
.y2e7{bottom:813.960000px;}
.y154{bottom:814.757400px;}
.y187{bottom:814.831380px;}
.y22c{bottom:814.860000px;}
.y40d{bottom:816.111000px;}
.y368{bottom:818.436600px;}
.y433{bottom:818.622000px;}
.y1cf{bottom:819.980820px;}
.y84{bottom:820.406340px;}
.y2e5{bottom:820.979850px;}
.y24{bottom:821.650500px;}
.y3a7{bottom:821.694270px;}
.y2e0{bottom:822.067740px;}
.y273{bottom:823.307400px;}
.y119{bottom:826.492860px;}
.y3dd{bottom:827.083260px;}
.y4b{bottom:827.908560px;}
.y4{bottom:827.964000px;}
.y153{bottom:832.042980px;}
.y186{bottom:832.116960px;}
.y22b{bottom:832.140000px;}
.y432{bottom:834.106500px;}
.y367{bottom:835.542900px;}
.yca{bottom:835.920000px;}
.y2df{bottom:835.924680px;}
.y46a{bottom:836.617500px;}
.y2a8{bottom:837.004500px;}
.y23{bottom:837.135000px;}
.y1ce{bottom:837.266400px;}
.y3a6{bottom:838.979850px;}
.y272{bottom:840.592980px;}
.y118{bottom:843.599160px;}
.y3dc{bottom:844.368840px;}
.y4a{bottom:845.014860px;}
.ycb{bottom:845.460000px;}
.y2e1{bottom:846.720000px;}
.y152{bottom:849.328560px;}
.y22a{bottom:849.345300px;}
.y185{bottom:849.402540px;}
.y83{bottom:849.569220px;}
.y40c{bottom:849.766500px;}
.y2de{bottom:849.781620px;}
.y457{bottom:852.102000px;}
.y22{bottom:852.619500px;}
.y366{bottom:852.828480px;}
.y1cd{bottom:854.551980px;}
.y271{bottom:857.520000px;}
.y117{bottom:860.884740px;}
.y3db{bottom:861.654420px;}
.y2dd{bottom:862.200000px;}
.y49{bottom:862.300440px;}
.y3{bottom:863.829000px;}
.yc8{bottom:864.360000px;}
.y40b{bottom:865.251000px;}
.y151{bottom:866.614140px;}
.y229{bottom:866.630880px;}
.y184{bottom:866.688120px;}
.y431{bottom:867.762000px;}
.y21{bottom:868.279500px;}
.y365{bottom:870.114060px;}
.y270{bottom:871.020000px;}
.y2a7{bottom:871.740000px;}
.y1cc{bottom:871.837560px;}
.yc7{bottom:873.720000px;}
.y3a5{bottom:874.979850px;}
.y116{bottom:878.170320px;}
.y2dc{bottom:878.400000px;}
.y82{bottom:878.911380px;}
.y3da{bottom:878.940000px;}
.y48{bottom:879.586020px;}
.y430{bottom:883.246500px;}
.y249{bottom:883.714860px;}
.y150{bottom:883.720440px;}
.y228{bottom:883.737180px;}
.y20{bottom:883.764000px;}
.y183{bottom:883.794420px;}
.y2a6{bottom:885.240000px;}
.y26f{bottom:885.420000px;}
.y364{bottom:887.399640px;}
.y1cb{bottom:889.123140px;}
.yc2{bottom:892.620000px;}
.y115{bottom:895.455900px;}
.y81{bottom:896.196960px;}
.y47{bottom:896.871600px;}
.y40a{bottom:898.731000px;}
.y1f{bottom:899.248500px;}
.y2a5{bottom:899.640000px;}
.y2{bottom:899.695500px;}
.y26e{bottom:900.000000px;}
.y248{bottom:901.000440px;}
.y14f{bottom:901.006020px;}
.y227{bottom:901.022760px;}
.y202{bottom:901.051380px;}
.y182{bottom:901.074420px;}
.y456{bottom:901.242000px;}
.yc6{bottom:902.160000px;}
.yc1{bottom:902.163960px;}
.y2db{bottom:904.320000px;}
.y363{bottom:904.685220px;}
.y1ca{bottom:906.229440px;}
.yc4{bottom:909.000000px;}
.y114{bottom:912.741480px;}
.y3a4{bottom:912.768480px;}
.y80{bottom:913.482540px;}
.y46{bottom:914.157180px;}
.y409{bottom:914.215500px;}
.y2a3{bottom:914.220000px;}
.y26d{bottom:914.580000px;}
.y1e{bottom:914.733000px;}
.y3d9{bottom:914.940000px;}
.yc0{bottom:915.840000px;}
.y42f{bottom:916.726500px;}
.yb4{bottom:916.740000px;}
.y247{bottom:918.286020px;}
.y14e{bottom:918.291600px;}
.y226{bottom:918.308340px;}
.y201{bottom:918.336960px;}
.y181{bottom:918.360000px;}
.y2da{bottom:918.900000px;}
.y1c9{bottom:923.515020px;}
.y2a2{bottom:923.940000px;}
.y2d9{bottom:928.260000px;}
.y2d7{bottom:928.986120px;}
.y26c{bottom:929.160000px;}
.y113{bottom:930.027060px;}
.y3a3{bottom:930.054060px;}
.y1d{bottom:930.393000px;}
.y7f{bottom:930.588840px;}
.y45{bottom:931.442760px;}
.y42e{bottom:932.211000px;}
.ybf{bottom:934.920000px;}
.y246{bottom:935.571600px;}
.y14d{bottom:935.577180px;}
.y225{bottom:935.593920px;}
.y200{bottom:935.622540px;}
.y180{bottom:935.640000px;}
.y362{bottom:939.600000px;}
.y1c8{bottom:940.800600px;}
.y2d6{bottom:942.843060px;}
.y2a1{bottom:943.200000px;}
.y26b{bottom:943.740000px;}
.ybe{bottom:944.280000px;}
.y1c{bottom:945.877500px;}
.y112{bottom:947.133360px;}
.y2d8{bottom:947.160000px;}
.y3a2{bottom:947.339640px;}
.y408{bottom:947.871000px;}
.y7e{bottom:947.874420px;}
.y44{bottom:948.549060px;}
.y455{bottom:950.206500px;}
.y17f{bottom:952.857180px;}
.y14c{bottom:952.862760px;}
.y224{bottom:952.879500px;}
.y1ff{bottom:952.908120px;}
.y39e{bottom:952.920000px;}
.y2d5{bottom:956.700000px;}
.y29e{bottom:957.960000px;}
.y1c7{bottom:958.086180px;}
.y26a{bottom:958.320000px;}
.y1b{bottom:961.362000px;}
.y2d4{bottom:961.740000px;}
.y1{bottom:962.460000px;}
.ybd{bottom:963.180000px;}
.y407{bottom:963.355500px;}
.y111{bottom:964.418940px;}
.y3a1{bottom:964.625220px;}
.y7d{bottom:965.160000px;}
.y43{bottom:965.834640px;}
.y454{bottom:965.866500px;}
.y29d{bottom:967.500000px;}
.y269{bottom:967.680000px;}
.y17e{bottom:970.142760px;}
.y14b{bottom:970.148340px;}
.y223{bottom:970.165080px;}
.y1fe{bottom:970.193700px;}
.ybc{bottom:972.540000px;}
.y1c6{bottom:975.371760px;}
.y2d3{bottom:976.320000px;}
.y1a{bottom:976.846500px;}
.y42d{bottom:981.351000px;}
.y110{bottom:981.704520px;}
.y39d{bottom:982.080000px;}
.y42{bottom:983.120220px;}
.y17d{bottom:987.249060px;}
.y14a{bottom:987.254640px;}
.y222{bottom:987.271380px;}
.y1fd{bottom:987.300000px;}
.y268{bottom:989.460000px;}
.y2cd{bottom:990.900000px;}
.yb6{bottom:991.620000px;}
.y1c5{bottom:992.478060px;}
.y19{bottom:992.506500px;}
.y39c{bottom:996.480000px;}
.y406{bottom:996.835500px;}
.y3a0{bottom:999.535500px;}
.y2d2{bottom:1000.260000px;}
.y41{bottom:1000.405800px;}
.y7c{bottom:1001.160000px;}
.y17c{bottom:1004.534640px;}
.y149{bottom:1004.540220px;}
.y221{bottom:1004.556960px;}
.y1fc{bottom:1004.563260px;}
.yba{bottom:1006.020000px;}
.y18{bottom:1007.991000px;}
.y2d0{bottom:1008.003960px;}
.yb8{bottom:1008.540000px;}
.y1c4{bottom:1009.763640px;}
.y39b{bottom:1011.060000px;}
.y405{bottom:1012.320000px;}
.y3d7{bottom:1012.860000px;}
.y453{bottom:1014.831000px;}
.yb9{bottom:1015.560000px;}
.y40{bottom:1017.691380px;}
.y2d1{bottom:1019.160000px;}
.y2cf{bottom:1021.680000px;}
.y17b{bottom:1021.820220px;}
.y148{bottom:1021.825800px;}
.y220{bottom:1021.842540px;}
.y1fb{bottom:1021.848840px;}
.y267{bottom:1021.854420px;}
.y17{bottom:1023.475500px;}
.y39a{bottom:1025.640000px;}
.y1c3{bottom:1027.049220px;}
.y10f{bottom:1028.152980px;}
.y3d8{bottom:1029.240000px;}
.y42c{bottom:1030.315500px;}
.y2cc{bottom:1033.740000px;}
.yb5{bottom:1034.460000px;}
.y3f{bottom:1034.797680px;}
.y16{bottom:1038.960000px;}
.y7b{bottom:1039.105800px;}
.y147{bottom:1039.111380px;}
.y21f{bottom:1039.128120px;}
.y1fa{bottom:1039.134420px;}
.y399{bottom:1040.220000px;}
.y1c2{bottom:1044.334800px;}
.y10e{bottom:1045.080000px;}
.y404{bottom:1045.975500px;}
.y2cb{bottom:1048.320000px;}
.yb1{bottom:1049.040000px;}
.y3e{bottom:1052.083260px;}
.y398{bottom:1054.800000px;}
.y3d6{bottom:1054.980000px;}
.y15{bottom:1055.520000px;}
.y7a{bottom:1056.391380px;}
.y146{bottom:1056.396960px;}
.y21e{bottom:1056.413700px;}
.y1f9{bottom:1056.420000px;}
.yb0{bottom:1058.400000px;}
.y10c{bottom:1058.580000px;}
.y469{bottom:1061.460000px;}
.y1c1{bottom:1061.620380px;}
.y2c6{bottom:1062.900000px;}
.y452{bottom:1063.971000px;}
.y3d{bottom:1069.368840px;}
.y397{bottom:1069.380000px;}
.y3d4{bottom:1069.560000px;}
.y79{bottom:1073.497680px;}
.y145{bottom:1073.503260px;}
.y1f8{bottom:1073.520000px;}
.y10d{bottom:1074.780000px;}
.y1c0{bottom:1078.905960px;}
.y403{bottom:1079.455500px;}
.y2ca{bottom:1079.640000px;}
.y2c8{bottom:1080.000000px;}
.yaf{bottom:1080.180000px;}
.y10b{bottom:1081.800000px;}
.y396{bottom:1083.780000px;}
.y3d5{bottom:1085.940000px;}
.y3c{bottom:1086.654420px;}
.y78{bottom:1090.783260px;}
.y144{bottom:1090.788840px;}
.y402{bottom:1094.940000px;}
.y1bf{bottom:1096.012260px;}
.y395{bottom:1098.360000px;}
.y3b{bottom:1103.940000px;}
.y77{bottom:1108.068840px;}
.y143{bottom:1108.074420px;}
.y2c5{bottom:1108.800000px;}
.y468{bottom:1110.424500px;}
.y3d3{bottom:1111.680000px;}
.y14{bottom:1112.756760px;}
.y451{bottom:1112.935500px;}
.y394{bottom:1112.940000px;}
.y1be{bottom:1113.297840px;}
.y10a{bottom:1114.380000px;}
.y76{bottom:1125.354420px;}
.y3d2{bottom:1126.260000px;}
.y393{bottom:1127.520000px;}
.y401{bottom:1128.420000px;}
.y109{bottom:1130.760000px;}
.y13{bottom:1137.060000px;}
.y3a{bottom:1139.940000px;}
.y392{bottom:1142.100000px;}
.y75{bottom:1142.640000px;}
.y39f{bottom:1144.080000px;}
.y39{bottom:1178.640000px;}
.y38{bottom:1197.180000px;}
.h37{height:13.680000px;}
.h1a{height:13.681500px;}
.h17{height:13.858500px;}
.h39{height:13.860000px;}
.h3d{height:14.040000px;}
.h43{height:14.580000px;}
.h41{height:14.760000px;}
.h50{height:25.967865px;}
.h16{height:27.540000px;}
.h19{height:27.720000px;}
.h22{height:27.721500px;}
.h3c{height:27.900000px;}
.h3f{height:28.260000px;}
.h51{height:29.046164px;}
.h11{height:29.678906px;}
.h2f{height:31.160391px;}
.h30{height:31.756191px;}
.h42{height:32.152148px;}
.h2b{height:35.790170px;}
.h2e{height:36.361970px;}
.h2c{height:36.751697px;}
.h4e{height:38.487771px;}
.h4f{height:38.488371px;}
.h25{height:41.398500px;}
.h1b{height:41.400000px;}
.h29{height:41.777255px;}
.h6{height:41.842920px;}
.h5{height:42.079167px;}
.h40{height:42.120000px;}
.h4{height:42.192741px;}
.h4d{height:43.807191px;}
.hc{height:44.149219px;}
.h2a{height:45.884531px;}
.h36{height:47.321367px;}
.h12{height:47.344922px;}
.h15{height:48.616875px;}
.h3e{height:50.312812px;}
.h55{height:52.971680px;}
.hb{height:52.998047px;}
.ha{height:54.421875px;}
.h20{height:55.080000px;}
.h1e{height:55.261500px;}
.h18{height:56.700000px;}
.h32{height:58.621992px;}
.he{height:58.651172px;}
.h54{height:58.669172px;}
.h27{height:58.673492px;}
.h3a{height:58.740452px;}
.h53{height:58.743332px;}
.h4a{height:58.832612px;}
.h13{height:58.877972px;}
.h14{height:58.969412px;}
.h45{height:59.016274px;}
.h10{height:59.035652px;}
.h26{height:59.060914px;}
.h49{height:59.086114px;}
.h31{height:59.088552px;}
.h4b{height:59.105554px;}
.h3b{height:59.108434px;}
.h35{height:59.175394px;}
.h38{height:59.488594px;}
.h33{height:60.226875px;}
.h2d{height:61.409855px;}
.hf{height:62.327813px;}
.h34{height:65.013098px;}
.h2{height:67.326667px;}
.h47{height:68.938500px;}
.h1c{height:68.940000px;}
.h48{height:69.120000px;}
.h44{height:69.660000px;}
.h9{height:72.562500px;}
.h1f{height:74.697002px;}
.hd{height:75.093750px;}
.h24{height:75.420602px;}
.h52{height:75.458883px;}
.h23{height:82.800000px;}
.h3{height:84.385482px;}
.h8{height:84.898125px;}
.h21{height:96.660000px;}
.h46{height:111.060000px;}
.h28{height:194.412000px;}
.h4c{height:363.922500px;}
.h1d{height:365.580000px;}
.h0{height:1262.835000px;}
.h7{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:22.861500px;}
.w12{width:41.400000px;}
.wa{width:44.820000px;}
.w6{width:83.881500px;}
.w22{width:84.600000px;}
.w17{width:94.318500px;}
.w9{width:116.100000px;}
.w1d{width:116.998500px;}
.w23{width:137.160000px;}
.w10{width:148.141500px;}
.wd{width:148.500000px;}
.w20{width:168.660000px;}
.w27{width:169.020000px;}
.w28{width:169.200000px;}
.w18{width:169.201500px;}
.w16{width:169.378500px;}
.wb{width:176.580000px;}
.w1b{width:178.560000px;}
.w1c{width:178.740000px;}
.w3{width:179.460000px;}
.w4{width:180.000000px;}
.w13{width:180.001500px;}
.wf{width:190.620000px;}
.wc{width:190.980000px;}
.w15{width:201.600000px;}
.w24{width:211.321500px;}
.w26{width:221.940000px;}
.w5{width:233.100000px;}
.w25{width:243.900000px;}
.w21{width:254.160000px;}
.we{width:339.841500px;}
.w2a{width:509.038500px;}
.w8{width:516.780000px;}
.w11{width:520.201500px;}
.w19{width:541.620000px;}
.w7{width:565.666500px;}
.w1e{width:593.820000px;}
.w29{width:605.520000px;}
.w14{width:678.780000px;}
.w1f{width:679.140000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:4.860000px;}
.x14{left:7.740000px;}
.x91{left:11.340000px;}
.x34{left:15.300000px;}
.x86{left:16.450650px;}
.x3e{left:17.640000px;}
.x35{left:19.440000px;}
.x70{left:20.520000px;}
.x10{left:26.460000px;}
.x65{left:28.980000px;}
.x4f{left:30.780000px;}
.x78{left:31.860000px;}
.x7b{left:33.224700px;}
.x61{left:34.380000px;}
.x45{left:36.360000px;}
.x5d{left:37.800000px;}
.x67{left:39.060000px;}
.x5f{left:41.940000px;}
.x33{left:45.540000px;}
.x7a{left:47.518050px;}
.x55{left:49.680000px;}
.x43{left:51.480000px;}
.x11{left:55.260000px;}
.x69{left:57.960000px;}
.x44{left:59.220000px;}
.x60{left:61.020000px;}
.x1b{left:62.460000px;}
.x5c{left:65.520000px;}
.x53{left:66.780000px;}
.x58{left:68.040000px;}
.x8e{left:69.120000px;}
.x8f{left:72.000000px;}
.x77{left:73.800000px;}
.x75{left:75.420000px;}
.x90{left:76.500000px;}
.x59{left:81.540000px;}
.x74{left:84.420000px;}
.x92{left:85.860000px;}
.x4d{left:87.480000px;}
.x4e{left:89.460000px;}
.x6d{left:91.440000px;}
.x6e{left:94.500000px;}
.x50{left:97.380000px;}
.x2{left:101.025000px;}
.x1{left:102.046500px;}
.xb{left:104.973840px;}
.x6{left:106.200000px;}
.xa{left:109.276560px;}
.x4a{left:111.960000px;}
.x9{left:113.400000px;}
.x12{left:114.840000px;}
.x1d{left:116.820000px;}
.x4{left:120.060000px;}
.x31{left:121.140000px;}
.x49{left:123.300000px;}
.x3a{left:124.740000px;}
.x8{left:127.440000px;}
.x22{left:130.462050px;}
.xd{left:133.166700px;}
.x1c{left:135.360000px;}
.x87{left:137.530950px;}
.x96{left:142.204500px;}
.x79{left:144.073500px;}
.x64{left:146.340000px;}
.x3{left:149.311500px;}
.x1f{left:150.660000px;}
.x19{left:151.740000px;}
.x3c{left:153.900000px;}
.x20{left:163.176000px;}
.x21{left:168.635700px;}
.x30{left:174.960000px;}
.x6c{left:187.020000px;}
.x62{left:189.180000px;}
.x2b{left:190.615500px;}
.x13{left:191.700000px;}
.x17{left:199.440000px;}
.x2e{left:201.240000px;}
.x2c{left:210.060000px;}
.x3b{left:212.760000px;}
.x23{left:215.090100px;}
.x7d{left:219.540000px;}
.x89{left:224.619450px;}
.x3f{left:227.700000px;}
.x27{left:228.711900px;}
.x1a{left:231.300000px;}
.x7e{left:232.888350px;}
.x6b{left:236.700000px;}
.x8b{left:237.849600px;}
.x8d{left:243.540000px;}
.x8c{left:246.945450px;}
.x29{left:250.798200px;}
.x41{left:255.060000px;}
.x40{left:258.120000px;}
.x2f{left:261.540000px;}
.x39{left:263.880000px;}
.x52{left:266.400000px;}
.x48{left:268.740000px;}
.x5b{left:271.080000px;}
.x73{left:274.993380px;}
.x54{left:276.300000px;}
.x93{left:281.700000px;}
.x6a{left:284.040000px;}
.x24{left:287.266800px;}
.x5{left:303.829560px;}
.x72{left:306.360000px;}
.x4b{left:309.960000px;}
.x42{left:319.140000px;}
.xc{left:322.200000px;}
.xe{left:325.080000px;}
.x2a{left:327.062700px;}
.x37{left:329.580000px;}
.x6f{left:339.660000px;}
.x28{left:342.556500px;}
.x7c{left:347.589750px;}
.x8a{left:352.314900px;}
.x5a{left:358.920000px;}
.x15{left:372.600000px;}
.x18{left:380.340000px;}
.x25{left:393.366450px;}
.x82{left:431.016300px;}
.x7f{left:437.513400px;}
.x83{left:444.364650px;}
.x1e{left:446.394060px;}
.x84{left:449.326050px;}
.x94{left:451.620000px;}
.x63{left:454.320000px;}
.x85{left:458.421750px;}
.x88{left:460.429950px;}
.x66{left:470.160000px;}
.x26{left:471.916650px;}
.x4c{left:489.420000px;}
.x38{left:520.920000px;}
.x47{left:526.320000px;}
.x80{left:554.459100px;}
.x81{left:562.373700px;}
.x5e{left:563.580000px;}
.x71{left:571.500000px;}
.x68{left:591.120000px;}
.xf{left:606.420000px;}
.x16{left:614.160000px;}
.x76{left:616.680000px;}
.x95{left:621.540000px;}
.x32{left:669.780000px;}
.x3d{left:677.700000px;}
.x46{left:691.560000px;}
.x56{left:701.460000px;}
.x57{left:709.200000px;}
.x51{left:727.200000px;}
.x2d{left:773.100000px;}
.x7{left:779.760000px;}
@media print{
.v4{vertical-align:-61.459840pt;}
.va{vertical-align:-55.040000pt;}
.vc{vertical-align:-53.128320pt;}
.v2{vertical-align:-16.000000pt;}
.v9{vertical-align:-2.972800pt;}
.v8{vertical-align:-1.760000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.286400pt;}
.vb{vertical-align:2.560000pt;}
.ve{vertical-align:3.585067pt;}
.v6{vertical-align:16.000000pt;}
.v7{vertical-align:17.451200pt;}
.v5{vertical-align:18.579840pt;}
.v1{vertical-align:21.461760pt;}
.v3{vertical-align:24.312960pt;}
.ls98{letter-spacing:-1.168640pt;}
.ls88{letter-spacing:-1.134523pt;}
.ls4d{letter-spacing:-1.115520pt;}
.ls97{letter-spacing:-0.956160pt;}
.lsc9{letter-spacing:-0.900480pt;}
.ls65{letter-spacing:-0.857600pt;}
.ls95{letter-spacing:-0.849920pt;}
.ls17{letter-spacing:-0.816000pt;}
.lsf1{letter-spacing:-0.801737pt;}
.ls62{letter-spacing:-0.771840pt;}
.ls96{letter-spacing:-0.743680pt;}
.ls61{letter-spacing:-0.728960pt;}
.ls3a{letter-spacing:-0.690560pt;}
.ls64{letter-spacing:-0.686080pt;}
.lsf2{letter-spacing:-0.662305pt;}
.lse9{letter-spacing:-0.627446pt;}
.lsb5{letter-spacing:-0.600320pt;}
.ls4c{letter-spacing:-0.584320pt;}
.ls3d{letter-spacing:-0.531200pt;}
.ls12{letter-spacing:-0.528000pt;}
.lsb3{letter-spacing:-0.514560pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.478080pt;}
.ls5e{letter-spacing:-0.471680pt;}
.ls16{letter-spacing:-0.432000pt;}
.ls4a{letter-spacing:-0.424960pt;}
.ls5f{letter-spacing:-0.385920pt;}
.lsf3{letter-spacing:-0.383439pt;}
.lsa8{letter-spacing:-0.371840pt;}
.ls14{letter-spacing:-0.336000pt;}
.ls3b{letter-spacing:-0.318720pt;}
.ls40{letter-spacing:-0.300160pt;}
.ls10f{letter-spacing:-0.288000pt;}
.ls63{letter-spacing:-0.257280pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsf0{letter-spacing:-0.244007pt;}
.ls3f{letter-spacing:-0.214400pt;}
.ls3c{letter-spacing:-0.212480pt;}
.lse8{letter-spacing:-0.209149pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls5c{letter-spacing:-0.171520pt;}
.lsec{letter-spacing:-0.139433pt;}
.ls4b{letter-spacing:-0.106240pt;}
.ls15{letter-spacing:-0.096000pt;}
.lsb4{letter-spacing:-0.085760pt;}
.ls86{letter-spacing:-0.083115pt;}
.lsef{letter-spacing:-0.077276pt;}
.ls85{letter-spacing:-0.073695pt;}
.lsf7{letter-spacing:-0.069716pt;}
.ls39{letter-spacing:-0.053120pt;}
.ls60{letter-spacing:-0.042880pt;}
.lse7{letter-spacing:-0.034858pt;}
.lsf6{letter-spacing:-0.025619pt;}
.ls1{letter-spacing:0.000000pt;}
.ls108{letter-spacing:0.019200pt;}
.lsf4{letter-spacing:0.025619pt;}
.ls87{letter-spacing:0.032415pt;}
.ls8c{letter-spacing:0.039680pt;}
.lsca{letter-spacing:0.042880pt;}
.lsae{letter-spacing:0.047808pt;}
.ls31{letter-spacing:0.053120pt;}
.ls74{letter-spacing:0.063744pt;}
.ls1a{letter-spacing:0.064000pt;}
.lse2{letter-spacing:0.069716pt;}
.lse{letter-spacing:0.074880pt;}
.lsd{letter-spacing:0.076800pt;}
.lse6{letter-spacing:0.077276pt;}
.ls78{letter-spacing:0.084992pt;}
.lsed{letter-spacing:0.094076pt;}
.lsf9{letter-spacing:0.095616pt;}
.ls13{letter-spacing:0.096000pt;}
.ls28{letter-spacing:0.100928pt;}
.lsee{letter-spacing:0.102475pt;}
.lsd6{letter-spacing:0.105059pt;}
.ls26{letter-spacing:0.106240pt;}
.lsaa{letter-spacing:0.115200pt;}
.lsa7{letter-spacing:0.128000pt;}
.ls82{letter-spacing:0.129660pt;}
.lsa5{letter-spacing:0.138112pt;}
.lsbe{letter-spacing:0.138880pt;}
.lsf5{letter-spacing:0.139433pt;}
.ls47{letter-spacing:0.143424pt;}
.ls6{letter-spacing:0.144000pt;}
.lsab{letter-spacing:0.148736pt;}
.lsda{letter-spacing:0.151875pt;}
.ls99{letter-spacing:0.154048pt;}
.ls36{letter-spacing:0.154880pt;}
.ls1f{letter-spacing:0.159360pt;}
.ls68{letter-spacing:0.160000pt;}
.lscd{letter-spacing:0.161280pt;}
.ls77{letter-spacing:0.164672pt;}
.ls72{letter-spacing:0.169984pt;}
.ls5d{letter-spacing:0.171520pt;}
.ls9{letter-spacing:0.177600pt;}
.lsd2{letter-spacing:0.180608pt;}
.ls2b{letter-spacing:0.185920pt;}
.ls10{letter-spacing:0.192000pt;}
.ls55{letter-spacing:0.199040pt;}
.ls79{letter-spacing:0.207168pt;}
.lsd7{letter-spacing:0.209149pt;}
.lsd5{letter-spacing:0.209584pt;}
.ls10c{letter-spacing:0.211200pt;}
.ls20{letter-spacing:0.212480pt;}
.lsac{letter-spacing:0.217792pt;}
.ls24{letter-spacing:0.223104pt;}
.ls71{letter-spacing:0.228416pt;}
.ls7a{letter-spacing:0.239040pt;}
.lsc2{letter-spacing:0.244352pt;}
.lsaf{letter-spacing:0.249664pt;}
.lsb0{letter-spacing:0.254976pt;}
.ls37{letter-spacing:0.256000pt;}
.ls52{letter-spacing:0.257280pt;}
.ls48{letter-spacing:0.265600pt;}
.ls7c{letter-spacing:0.270912pt;}
.ls10e{letter-spacing:0.273600pt;}
.ls2d{letter-spacing:0.276224pt;}
.ls10b{letter-spacing:0.278400pt;}
.lsea{letter-spacing:0.278865pt;}
.ls10a{letter-spacing:0.292800pt;}
.ls2{letter-spacing:0.299520pt;}
.lsce{letter-spacing:0.300160pt;}
.lsb1{letter-spacing:0.302784pt;}
.ls1c{letter-spacing:0.318720pt;}
.ls81{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.336000pt;}
.lsa3{letter-spacing:0.339968pt;}
.ls3e{letter-spacing:0.343040pt;}
.lsb9{letter-spacing:0.346880pt;}
.lsd8{letter-spacing:0.358168pt;}
.lsb7{letter-spacing:0.387776pt;}
.ls9f{letter-spacing:0.393088pt;}
.ls109{letter-spacing:0.412800pt;}
.ls7b{letter-spacing:0.414336pt;}
.ls89{letter-spacing:0.424960pt;}
.lsdf{letter-spacing:0.451268pt;}
.lseb{letter-spacing:0.627446pt;}
.ls49{letter-spacing:0.717120pt;}
.ls76{letter-spacing:0.722432pt;}
.ls93{letter-spacing:0.743680pt;}
.ls6d{letter-spacing:0.791488pt;}
.ls23{letter-spacing:0.796800pt;}
.ls50{letter-spacing:0.800000pt;}
.ls2c{letter-spacing:0.802112pt;}
.ls8a{letter-spacing:0.812736pt;}
.ls7{letter-spacing:0.816000pt;}
.ls94{letter-spacing:0.833984pt;}
.ls107{letter-spacing:0.855232pt;}
.lsc0{letter-spacing:0.986880pt;}
.lsbb{letter-spacing:0.993280pt;}
.ls44{letter-spacing:1.221760pt;}
.ls1d{letter-spacing:1.434240pt;}
.ls5{letter-spacing:1.440000pt;}
.ls9a{letter-spacing:1.444864pt;}
.lsd0{letter-spacing:1.519360pt;}
.ls9c{letter-spacing:1.970752pt;}
.lsb{letter-spacing:2.064000pt;}
.lsfb{letter-spacing:2.066368pt;}
.ls29{letter-spacing:2.071680pt;}
.ls91{letter-spacing:2.103552pt;}
.ls6a{letter-spacing:2.124800pt;}
.lsad{letter-spacing:2.703808pt;}
.ls42{letter-spacing:2.709120pt;}
.ls8e{letter-spacing:2.735680pt;}
.ls101{letter-spacing:3.330624pt;}
.ls2e{letter-spacing:3.346560pt;}
.lsfa{letter-spacing:3.351872pt;}
.lsa{letter-spacing:3.360000pt;}
.ls9b{letter-spacing:3.378432pt;}
.ls33{letter-spacing:3.404992pt;}
.lsa0{letter-spacing:3.420928pt;}
.ls6f{letter-spacing:3.442176pt;}
.ls8f{letter-spacing:3.489984pt;}
.lsa2{letter-spacing:3.978688pt;}
.ls3{letter-spacing:3.984000pt;}
.ls9e{letter-spacing:4.015872pt;}
.lsb2{letter-spacing:4.031808pt;}
.lsd1{letter-spacing:4.058368pt;}
.lsb6{letter-spacing:4.613120pt;}
.ls43{letter-spacing:4.621440pt;}
.lsa9{letter-spacing:4.685184pt;}
.ls6e{letter-spacing:4.695808pt;}
.ls9d{letter-spacing:4.706432pt;}
.lsf8{letter-spacing:5.253120pt;}
.ls34{letter-spacing:5.258880pt;}
.ls8{letter-spacing:5.280000pt;}
.ls0{letter-spacing:5.313387pt;}
.lsa4{letter-spacing:5.381056pt;}
.ls35{letter-spacing:5.402304pt;}
.ls27{letter-spacing:5.896320pt;}
.ls7e{letter-spacing:5.912256pt;}
.lsa1{letter-spacing:5.991936pt;}
.lsfc{letter-spacing:6.480640pt;}
.ls21{letter-spacing:6.533760pt;}
.lsbc{letter-spacing:6.569600pt;}
.ls22{letter-spacing:6.586880pt;}
.lsbf{letter-spacing:6.936320pt;}
.ls90{letter-spacing:7.155264pt;}
.lsba{letter-spacing:7.209600pt;}
.ls69{letter-spacing:7.224320pt;}
.ls1b{letter-spacing:7.861760pt;}
.ls80{letter-spacing:8.499200pt;}
.lsde{letter-spacing:8.609475pt;}
.lsdb{letter-spacing:8.924117pt;}
.lse0{letter-spacing:8.924651pt;}
.ls25{letter-spacing:9.136640pt;}
.lsd9{letter-spacing:9.627961pt;}
.lsdd{letter-spacing:9.628494pt;}
.lsfe{letter-spacing:9.715648pt;}
.ls2a{letter-spacing:9.774080pt;}
.ls70{letter-spacing:10.411520pt;}
.lsdc{letter-spacing:10.888131pt;}
.ls73{letter-spacing:11.622656pt;}
.lsa6{letter-spacing:11.686400pt;}
.ls41{letter-spacing:12.313216pt;}
.ls1e{letter-spacing:12.323840pt;}
.lsc{letter-spacing:12.960000pt;}
.ls32{letter-spacing:12.961280pt;}
.ls8d{letter-spacing:13.573120pt;}
.ls8b{letter-spacing:13.598720pt;}
.ls92{letter-spacing:14.236160pt;}
.lsc3{letter-spacing:14.246784pt;}
.ls6b{letter-spacing:14.873600pt;}
.ls6c{letter-spacing:15.511040pt;}
.lse3{letter-spacing:16.020846pt;}
.ls45{letter-spacing:16.148480pt;}
.ls46{letter-spacing:16.222848pt;}
.ls7f{letter-spacing:16.785920pt;}
.ls7d{letter-spacing:17.423360pt;}
.ls100{letter-spacing:18.060800pt;}
.ls104{letter-spacing:18.538880pt;}
.ls105{letter-spacing:21.726080pt;}
.lsfd{letter-spacing:23.000960pt;}
.lsff{letter-spacing:23.638400pt;}
.ls54{letter-spacing:24.480000pt;}
.ls75{letter-spacing:30.208000pt;}
.ls103{letter-spacing:33.253120pt;}
.ls53{letter-spacing:34.080000pt;}
.lsd4{letter-spacing:35.849411pt;}
.ls106{letter-spacing:36.440320pt;}
.ls102{letter-spacing:47.967360pt;}
.lse1{letter-spacing:50.758671pt;}
.lsd3{letter-spacing:52.079360pt;}
.ls10d{letter-spacing:58.416000pt;}
.ls2f{letter-spacing:60.131840pt;}
.ls30{letter-spacing:60.769280pt;}
.lsbd{letter-spacing:69.980160pt;}
.lsc8{letter-spacing:69.999360pt;}
.ls5a{letter-spacing:71.824000pt;}
.ls19{letter-spacing:85.248000pt;}
.ls56{letter-spacing:117.276800pt;}
.ls5b{letter-spacing:147.978880pt;}
.ls58{letter-spacing:155.054080pt;}
.ls51{letter-spacing:174.864640pt;}
.ls57{letter-spacing:180.010240pt;}
.lsb8{letter-spacing:229.279360pt;}
.ls83{letter-spacing:237.722065pt;}
.lscb{letter-spacing:270.229760pt;}
.ls4e{letter-spacing:278.548480pt;}
.lscc{letter-spacing:279.191680pt;}
.lsc7{letter-spacing:284.980480pt;}
.ls59{letter-spacing:297.115520pt;}
.ls67{letter-spacing:313.752960pt;}
.ls66{letter-spacing:329.104000pt;}
.ls84{letter-spacing:377.243551pt;}
.lsc4{letter-spacing:473.120000pt;}
.lsc6{letter-spacing:504.483200pt;}
.lsc1{letter-spacing:527.530240pt;}
.lscf{letter-spacing:542.646400pt;}
.lsc5{letter-spacing:558.897920pt;}
.ls4f{letter-spacing:569.103360pt;}
.lse5{letter-spacing:720.366411pt;}
.lse4{letter-spacing:720.366944pt;}
.ws15d{word-spacing:-42.880000pt;}
.ws15c{word-spacing:-42.665600pt;}
.ws9{word-spacing:-19.019520pt;}
.wsa{word-spacing:-18.794880pt;}
.ws3e{word-spacing:-16.256000pt;}
.ws150{word-spacing:-16.128000pt;}
.ws1ec{word-spacing:-16.064000pt;}
.ws110{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.032699pt;}
.ws42{word-spacing:-13.598720pt;}
.ws1ef{word-spacing:-13.545600pt;}
.ws45{word-spacing:-13.492480pt;}
.ws1e6{word-spacing:-13.439360pt;}
.ws43{word-spacing:-13.386240pt;}
.ws3f{word-spacing:-13.333120pt;}
.ws44{word-spacing:-13.280000pt;}
.ws40{word-spacing:-13.226880pt;}
.wsf6{word-spacing:-13.173760pt;}
.ws41{word-spacing:-13.067520pt;}
.ws46{word-spacing:-12.961280pt;}
.ws15e{word-spacing:-12.908160pt;}
.wsf4{word-spacing:-12.855040pt;}
.ws96{word-spacing:-12.748800pt;}
.wsf5{word-spacing:-12.589440pt;}
.ws145{word-spacing:-12.536320pt;}
.wsf{word-spacing:-12.336000pt;}
.wsb{word-spacing:-12.192000pt;}
.wsc{word-spacing:-12.144000pt;}
.ws11{word-spacing:-12.096000pt;}
.ws12{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.808000pt;}
.ws1f9{word-spacing:-11.712000pt;}
.ws1f0{word-spacing:-11.664000pt;}
.wse{word-spacing:-11.472000pt;}
.wsaa{word-spacing:-11.063040pt;}
.wsac{word-spacing:-10.977280pt;}
.wsad{word-spacing:-10.891520pt;}
.ws15f{word-spacing:-10.762880pt;}
.ws49{word-spacing:-10.720000pt;}
.ws159{word-spacing:-10.677120pt;}
.ws157{word-spacing:-10.634240pt;}
.wsa8{word-spacing:-10.548480pt;}
.wsa9{word-spacing:-10.505600pt;}
.ws155{word-spacing:-10.462720pt;}
.wsab{word-spacing:-10.419840pt;}
.wsae{word-spacing:-10.334080pt;}
.wsaf{word-spacing:-10.248320pt;}
.ws156{word-spacing:-10.205440pt;}
.ws15a{word-spacing:-10.119680pt;}
.ws158{word-spacing:-10.033920pt;}
.ws17e{word-spacing:-9.582191pt;}
.ws118{word-spacing:-9.211867pt;}
.ws179{word-spacing:-8.923682pt;}
.ws1ac{word-spacing:-8.853966pt;}
.ws1b4{word-spacing:-8.784250pt;}
.ws17d{word-spacing:-8.714533pt;}
.ws170{word-spacing:-8.679675pt;}
.ws10f{word-spacing:-8.640000pt;}
.ws174{word-spacing:-8.575101pt;}
.ws16b{word-spacing:-8.505385pt;}
.ws181{word-spacing:-8.470526pt;}
.ws47{word-spacing:-8.389120pt;}
.ws18b{word-spacing:-8.331094pt;}
.ws119{word-spacing:-8.233393pt;}
.ws11b{word-spacing:-8.136148pt;}
.ws11c{word-spacing:-8.103733pt;}
.ws1bf{word-spacing:-8.052229pt;}
.ws186{word-spacing:-7.912796pt;}
.ws48{word-spacing:-6.720000pt;}
.ws7{word-spacing:-5.366521pt;}
.wsff{word-spacing:-3.984000pt;}
.ws6b{word-spacing:-3.346560pt;}
.ws15b{word-spacing:-3.240320pt;}
.ws147{word-spacing:-3.187200pt;}
.wsa2{word-spacing:-3.134080pt;}
.ws69{word-spacing:-2.974720pt;}
.ws72{word-spacing:-2.709120pt;}
.ws1f1{word-spacing:-2.602880pt;}
.ws1da{word-spacing:-2.549760pt;}
.ws7e{word-spacing:-2.496640pt;}
.ws73{word-spacing:-2.337280pt;}
.ws2a{word-spacing:-2.112000pt;}
.wsd9{word-spacing:-2.101120pt;}
.ws86{word-spacing:-2.071680pt;}
.ws1ed{word-spacing:-1.965440pt;}
.wse3{word-spacing:-1.929600pt;}
.ws151{word-spacing:-1.912320pt;}
.ws78{word-spacing:-1.859200pt;}
.ws12f{word-spacing:-1.703851pt;}
.ws79{word-spacing:-1.699840pt;}
.ws1e0{word-spacing:-1.661428pt;}
.ws26{word-spacing:-1.584000pt;}
.ws9f{word-spacing:-1.540480pt;}
.ws27{word-spacing:-1.440000pt;}
.ws83{word-spacing:-1.434240pt;}
.ws1dc{word-spacing:-1.352325pt;}
.ws13d{word-spacing:-1.328000pt;}
.ws1e2{word-spacing:-1.275050pt;}
.ws1ea{word-spacing:-1.274880pt;}
.ws92{word-spacing:-1.221760pt;}
.ws29{word-spacing:-1.200000pt;}
.ws84{word-spacing:-1.168640pt;}
.ws15{word-spacing:-1.123200pt;}
.ws85{word-spacing:-1.062400pt;}
.ws130{word-spacing:-1.037278pt;}
.ws1a4{word-spacing:-0.946012pt;}
.ws18d{word-spacing:-0.945479pt;}
.ws17a{word-spacing:-0.942187pt;}
.ws3c{word-spacing:-0.912000pt;}
.ws1e9{word-spacing:-0.903040pt;}
.ws24{word-spacing:-0.816000pt;}
.wsb4{word-spacing:-0.814720pt;}
.ws67{word-spacing:-0.796800pt;}
.ws2b{word-spacing:-0.768000pt;}
.ws136{word-spacing:-0.745543pt;}
.ws13c{word-spacing:-0.743680pt;}
.wse0{word-spacing:-0.728960pt;}
.wsb2{word-spacing:-0.643200pt;}
.ws146{word-spacing:-0.637440pt;}
.ws1e3{word-spacing:-0.627446pt;}
.ws14b{word-spacing:-0.624000pt;}
.ws7f{word-spacing:-0.584320pt;}
.ws18f{word-spacing:-0.581163pt;}
.ws17c{word-spacing:-0.580630pt;}
.ws1f4{word-spacing:-0.576000pt;}
.ws199{word-spacing:-0.522921pt;}
.ws185{word-spacing:-0.522388pt;}
.ws1ae{word-spacing:-0.521904pt;}
.ws134{word-spacing:-0.486224pt;}
.ws1f6{word-spacing:-0.480000pt;}
.ws16{word-spacing:-0.449280pt;}
.wsf8{word-spacing:-0.428800pt;}
.ws68{word-spacing:-0.424960pt;}
.ws132{word-spacing:-0.388979pt;}
.ws1f8{word-spacing:-0.384000pt;}
.wsba{word-spacing:-0.343040pt;}
.ws1d7{word-spacing:-0.336000pt;}
.ws52{word-spacing:-0.318720pt;}
.wsb1{word-spacing:-0.300160pt;}
.ws14{word-spacing:-0.299520pt;}
.ws14f{word-spacing:-0.288000pt;}
.ws1dd{word-spacing:-0.278865pt;}
.ws148{word-spacing:-0.265600pt;}
.ws163{word-spacing:-0.257280pt;}
.ws113{word-spacing:-0.256000pt;}
.ws17{word-spacing:-0.224640pt;}
.ws61{word-spacing:-0.212480pt;}
.ws1df{word-spacing:-0.209149pt;}
.ws131{word-spacing:-0.194490pt;}
.ws1a{word-spacing:-0.192000pt;}
.ws93{word-spacing:-0.171520pt;}
.ws50{word-spacing:-0.159360pt;}
.ws18{word-spacing:-0.149760pt;}
.ws3d{word-spacing:-0.144000pt;}
.ws133{word-spacing:-0.129660pt;}
.ws152{word-spacing:-0.128000pt;}
.ws70{word-spacing:-0.106240pt;}
.ws1e1{word-spacing:-0.102475pt;}
.ws2{word-spacing:-0.100955pt;}
.ws22{word-spacing:-0.096000pt;}
.ws1de{word-spacing:-0.094076pt;}
.wsdc{word-spacing:-0.085760pt;}
.wsfe{word-spacing:-0.053120pt;}
.ws5{word-spacing:-0.050477pt;}
.ws18e{word-spacing:-0.034665pt;}
.ws17b{word-spacing:-0.030308pt;}
.ws1e4{word-spacing:-0.025619pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e5{word-spacing:0.025619pt;}
.ws160{word-spacing:0.042880pt;}
.ws25{word-spacing:0.048000pt;}
.ws8{word-spacing:0.050477pt;}
.ws6a{word-spacing:0.053120pt;}
.ws161{word-spacing:0.085760pt;}
.ws2d{word-spacing:0.096000pt;}
.ws9c{word-spacing:0.106240pt;}
.ws1f5{word-spacing:0.144000pt;}
.ws1af{word-spacing:0.146306pt;}
.ws1a2{word-spacing:0.152842pt;}
.ws198{word-spacing:0.159088pt;}
.ws1db{word-spacing:0.159360pt;}
.ws190{word-spacing:0.166205pt;}
.ws1a8{word-spacing:0.166738pt;}
.ws165{word-spacing:0.171520pt;}
.ws1e{word-spacing:0.192000pt;}
.ws71{word-spacing:0.212480pt;}
.ws94{word-spacing:0.214400pt;}
.ws135{word-spacing:0.221085pt;}
.ws23{word-spacing:0.240000pt;}
.ws19{word-spacing:0.256000pt;}
.wse6{word-spacing:0.257280pt;}
.ws114{word-spacing:0.265600pt;}
.ws12e{word-spacing:0.294780pt;}
.wsb0{word-spacing:0.300160pt;}
.ws1b6{word-spacing:0.312222pt;}
.ws1ad{word-spacing:0.314643pt;}
.ws76{word-spacing:0.318720pt;}
.ws178{word-spacing:0.333379pt;}
.ws1a6{word-spacing:0.333814pt;}
.ws1b{word-spacing:0.336000pt;}
.ws1d5{word-spacing:0.340447pt;}
.ws19e{word-spacing:0.340980pt;}
.ws164{word-spacing:0.343040pt;}
.ws77{word-spacing:0.371840pt;}
.wsbb{word-spacing:0.385920pt;}
.ws19a{word-spacing:0.387506pt;}
.ws18c{word-spacing:0.395590pt;}
.ws183{word-spacing:0.395977pt;}
.ws1ab{word-spacing:0.396510pt;}
.ws1d3{word-spacing:0.401497pt;}
.ws9b{word-spacing:0.424960pt;}
.ws184{word-spacing:0.433790pt;}
.ws1d4{word-spacing:0.461386pt;}
.ws95{word-spacing:0.471680pt;}
.ws65{word-spacing:0.478080pt;}
.ws30{word-spacing:0.480000pt;}
.ws1b0{word-spacing:0.481235pt;}
.ws28{word-spacing:0.528000pt;}
.ws6f{word-spacing:0.531200pt;}
.wsc0{word-spacing:0.557440pt;}
.ws10a{word-spacing:0.584320pt;}
.ws1f7{word-spacing:0.624000pt;}
.ws14d{word-spacing:0.637440pt;}
.wsf2{word-spacing:0.643200pt;}
.ws1b1{word-spacing:0.655188pt;}
.wsec{word-spacing:0.686080pt;}
.ws4a{word-spacing:0.690560pt;}
.ws1ee{word-spacing:0.728960pt;}
.ws10b{word-spacing:0.743680pt;}
.wse2{word-spacing:0.771840pt;}
.ws32{word-spacing:0.816000pt;}
.ws66{word-spacing:0.849920pt;}
.wscc{word-spacing:0.900480pt;}
.ws1be{word-spacing:0.934052pt;}
.ws166{word-spacing:0.943360pt;}
.ws149{word-spacing:0.956160pt;}
.ws3b{word-spacing:1.008000pt;}
.ws139{word-spacing:1.009280pt;}
.wsf3{word-spacing:1.029120pt;}
.ws1f{word-spacing:1.104000pt;}
.wscd{word-spacing:1.114880pt;}
.ws5d{word-spacing:1.115520pt;}
.ws137{word-spacing:1.134523pt;}
.ws1a7{word-spacing:1.150947pt;}
.ws1a3{word-spacing:1.151528pt;}
.ws14a{word-spacing:1.168640pt;}
.wsfd{word-spacing:1.221760pt;}
.ws1b5{word-spacing:1.238286pt;}
.ws197{word-spacing:1.241578pt;}
.ws11d{word-spacing:1.274880pt;}
.ws5f{word-spacing:1.328000pt;}
.ws20{word-spacing:1.344000pt;}
.ws138{word-spacing:1.381120pt;}
.ws5e{word-spacing:1.487360pt;}
.ws21{word-spacing:1.632000pt;}
.wsb7{word-spacing:1.672320pt;}
.ws35{word-spacing:1.728000pt;}
.ws4e{word-spacing:1.752960pt;}
.wsb8{word-spacing:1.758080pt;}
.ws7a{word-spacing:1.859200pt;}
.ws7c{word-spacing:1.912320pt;}
.wsb6{word-spacing:1.929600pt;}
.ws7d{word-spacing:1.965440pt;}
.ws98{word-spacing:2.124800pt;}
.ws36{word-spacing:2.256000pt;}
.ws180{word-spacing:2.266649pt;}
.ws105{word-spacing:2.284160pt;}
.ws192{word-spacing:2.363623pt;}
.ws99{word-spacing:2.390400pt;}
.ws10c{word-spacing:2.496640pt;}
.ws9a{word-spacing:2.602880pt;}
.wsa7{word-spacing:2.656000pt;}
.ws7b{word-spacing:2.762240pt;}
.ws16f{word-spacing:2.779113pt;}
.ws31{word-spacing:2.928000pt;}
.ws1c{word-spacing:3.024000pt;}
.ws55{word-spacing:3.027840pt;}
.wsc7{word-spacing:3.087360pt;}
.ws194{word-spacing:3.098693pt;}
.ws17f{word-spacing:3.105036pt;}
.ws90{word-spacing:3.187200pt;}
.ws54{word-spacing:3.240320pt;}
.ws6{word-spacing:3.331504pt;}
.ws16e{word-spacing:3.332581pt;}
.ws58{word-spacing:3.399680pt;}
.ws34{word-spacing:3.552000pt;}
.ws104{word-spacing:3.559040pt;}
.wsc6{word-spacing:3.644800pt;}
.ws1d{word-spacing:3.648000pt;}
.ws57{word-spacing:3.665280pt;}
.ws193{word-spacing:3.673901pt;}
.wsc5{word-spacing:3.730560pt;}
.ws191{word-spacing:3.760030pt;}
.ws8f{word-spacing:3.771520pt;}
.ws8e{word-spacing:3.877760pt;}
.ws33{word-spacing:3.888000pt;}
.ws16c{word-spacing:3.942841pt;}
.ws56{word-spacing:4.037120pt;}
.ws19d{word-spacing:4.173050pt;}
.ws106{word-spacing:4.196480pt;}
.wsbc{word-spacing:4.288000pt;}
.ws9e{word-spacing:4.302720pt;}
.ws19b{word-spacing:4.349810pt;}
.ws1eb{word-spacing:4.355840pt;}
.ws14c{word-spacing:4.408960pt;}
.wsd4{word-spacing:4.459520pt;}
.ws9d{word-spacing:4.515200pt;}
.ws5a{word-spacing:4.674560pt;}
.ws19c{word-spacing:4.809841pt;}
.ws1ce{word-spacing:4.810374pt;}
.ws16d{word-spacing:4.820541pt;}
.ws11e{word-spacing:4.833920pt;}
.ws59{word-spacing:4.940160pt;}
.ws2e{word-spacing:4.944000pt;}
.ws154{word-spacing:5.046400pt;}
.ws5c{word-spacing:5.152640pt;}
.ws16a{word-spacing:5.298920pt;}
.ws8b{word-spacing:5.312000pt;}
.ws115{word-spacing:5.471360pt;}
.ws2c{word-spacing:5.472000pt;}
.wsb9{word-spacing:5.574400pt;}
.ws5b{word-spacing:5.577600pt;}
.ws14e{word-spacing:5.683840pt;}
.ws2f{word-spacing:5.712000pt;}
.ws12a{word-spacing:5.736960pt;}
.wsde{word-spacing:5.745920pt;}
.ws91{word-spacing:5.790080pt;}
.ws167{word-spacing:5.856020pt;}
.ws74{word-spacing:5.949440pt;}
.ws111{word-spacing:6.108800pt;}
.wsa4{word-spacing:6.215040pt;}
.ws4b{word-spacing:6.268160pt;}
.ws169{word-spacing:6.273881pt;}
.ws124{word-spacing:6.374400pt;}
.ws75{word-spacing:6.427520pt;}
.ws4d{word-spacing:6.480640pt;}
.ws112{word-spacing:6.586880pt;}
.ws64{word-spacing:6.640000pt;}
.wsa6{word-spacing:6.905600pt;}
.ws1c5{word-spacing:6.969448pt;}
.ws1ca{word-spacing:6.978792pt;}
.ws12c{word-spacing:7.011840pt;}
.wsf0{word-spacing:7.032320pt;}
.ws168{word-spacing:7.033015pt;}
.ws1cb{word-spacing:7.037469pt;}
.ws4c{word-spacing:7.064960pt;}
.ws10d{word-spacing:7.118080pt;}
.ws8a{word-spacing:7.277440pt;}
.ws1cd{word-spacing:7.397090pt;}
.ws1c9{word-spacing:7.473535pt;}
.wsc8{word-spacing:7.504000pt;}
.ws4f{word-spacing:7.543040pt;}
.ws1cc{word-spacing:7.622505pt;}
.ws126{word-spacing:7.649280pt;}
.ws125{word-spacing:7.702400pt;}
.ws53{word-spacing:7.755520pt;}
.ws1c6{word-spacing:7.868884pt;}
.ws1c8{word-spacing:7.871014pt;}
.ws51{word-spacing:7.914880pt;}
.ws12d{word-spacing:8.180480pt;}
.ws1d8{word-spacing:8.286720pt;}
.ws1d9{word-spacing:8.339840pt;}
.ws13a{word-spacing:8.392960pt;}
.ws6d{word-spacing:8.552320pt;}
.ws6c{word-spacing:8.817920pt;}
.ws140{word-spacing:8.924160pt;}
.wse8{word-spacing:8.961920pt;}
.ws13b{word-spacing:8.977280pt;}
.wsa3{word-spacing:9.030400pt;}
.ws1c7{word-spacing:9.050769pt;}
.ws6e{word-spacing:9.189760pt;}
.wsce{word-spacing:9.433600pt;}
.ws81{word-spacing:9.455360pt;}
.wsa5{word-spacing:9.667840pt;}
.ws80{word-spacing:9.827200pt;}
.ws1c4{word-spacing:9.977076pt;}
.ws1f3{word-spacing:9.986560pt;}
.wse1{word-spacing:10.076800pt;}
.ws8c{word-spacing:10.092800pt;}
.wse7{word-spacing:10.248320pt;}
.ws10e{word-spacing:10.305280pt;}
.ws8d{word-spacing:10.464640pt;}
.ws82{word-spacing:10.730240pt;}
.ws1c0{word-spacing:10.817011pt;}
.ws1c2{word-spacing:10.883385pt;}
.wsf7{word-spacing:10.891520pt;}
.ws11f{word-spacing:10.942720pt;}
.ws120{word-spacing:11.102080pt;}
.wsca{word-spacing:11.320320pt;}
.wsfc{word-spacing:11.367680pt;}
.ws1c1{word-spacing:11.402482pt;}
.wsfb{word-spacing:11.580160pt;}
.ws1c3{word-spacing:11.732085pt;}
.ws153{word-spacing:11.739520pt;}
.ws60{word-spacing:12.005120pt;}
.ws63{word-spacing:12.164480pt;}
.ws62{word-spacing:12.217600pt;}
.ws97{word-spacing:12.376960pt;}
.wsee{word-spacing:12.606720pt;}
.ws37{word-spacing:12.624000pt;}
.ws88{word-spacing:12.642560pt;}
.wsd7{word-spacing:12.692480pt;}
.wsd5{word-spacing:12.778240pt;}
.ws89{word-spacing:12.855040pt;}
.ws39{word-spacing:12.864000pt;}
.ws87{word-spacing:13.014400pt;}
.ws3a{word-spacing:13.152000pt;}
.wsd8{word-spacing:13.249920pt;}
.ws116{word-spacing:13.280000pt;}
.ws13f{word-spacing:13.386240pt;}
.ws38{word-spacing:13.440000pt;}
.ws1f2{word-spacing:13.651840pt;}
.ws13e{word-spacing:13.811200pt;}
.ws162{word-spacing:13.917440pt;}
.ws3{word-spacing:13.982221pt;}
.wse4{word-spacing:14.064640pt;}
.ws141{word-spacing:14.076800pt;}
.ws142{word-spacing:14.129920pt;}
.ws144{word-spacing:14.289280pt;}
.ws143{word-spacing:14.448640pt;}
.ws101{word-spacing:14.554880pt;}
.wsd6{word-spacing:14.707840pt;}
.ws103{word-spacing:14.767360pt;}
.ws100{word-spacing:14.926720pt;}
.ws102{word-spacing:15.086080pt;}
.ws109{word-spacing:15.192320pt;}
.wsc9{word-spacing:15.351040pt;}
.ws107{word-spacing:15.404800pt;}
.wsa1{word-spacing:15.829760pt;}
.ws1d0{word-spacing:15.853770pt;}
.ws1d2{word-spacing:15.855076pt;}
.ws1cf{word-spacing:15.879525pt;}
.ws1d1{word-spacing:15.926389pt;}
.ws108{word-spacing:16.201600pt;}
.wsa0{word-spacing:16.360960pt;}
.ws12b{word-spacing:16.467200pt;}
.wseb{word-spacing:16.551680pt;}
.ws129{word-spacing:17.104640pt;}
.wsdf{word-spacing:17.109120pt;}
.ws127{word-spacing:17.317120pt;}
.ws1e7{word-spacing:17.742080pt;}
.ws128{word-spacing:17.901440pt;}
.ws187{word-spacing:17.956199pt;}
.ws1b7{word-spacing:18.079171pt;}
.ws189{word-spacing:18.205724pt;}
.ws1b9{word-spacing:18.219377pt;}
.ws1b8{word-spacing:18.367330pt;}
.wsc3{word-spacing:18.395520pt;}
.wsc2{word-spacing:18.481280pt;}
.ws18a{word-spacing:18.541524pt;}
.wsc4{word-spacing:19.038720pt;}
.ws117{word-spacing:19.070080pt;}
.ws188{word-spacing:19.277805pt;}
.wsd2{word-spacing:19.639040pt;}
.wsd3{word-spacing:20.453760pt;}
.ws121{word-spacing:20.982400pt;}
.ws122{word-spacing:21.194880pt;}
.ws123{word-spacing:21.354240pt;}
.ws1e8{word-spacing:21.832320pt;}
.wscf{word-spacing:23.498240pt;}
.ws1bb{word-spacing:23.666687pt;}
.wsd0{word-spacing:24.055680pt;}
.ws1bd{word-spacing:24.130783pt;}
.wsf9{word-spacing:24.141440pt;}
.ws1bc{word-spacing:24.670262pt;}
.wsd1{word-spacing:25.427840pt;}
.wsdd{word-spacing:25.599360pt;}
.ws1a5{word-spacing:27.134878pt;}
.wsef{word-spacing:27.357440pt;}
.ws1{word-spacing:27.964443pt;}
.ws1a0{word-spacing:28.030392pt;}
.wsea{word-spacing:28.172160pt;}
.ws1a1{word-spacing:28.328575pt;}
.ws19f{word-spacing:28.392820pt;}
.wsfa{word-spacing:29.415680pt;}
.ws172{word-spacing:29.661801pt;}
.ws173{word-spacing:31.052883pt;}
.ws171{word-spacing:31.070409pt;}
.wse9{word-spacing:32.460160pt;}
.wsda{word-spacing:33.103360pt;}
.wsdb{word-spacing:33.274880pt;}
.wsbd{word-spacing:34.389760pt;}
.wsbe{word-spacing:35.847680pt;}
.ws1a9{word-spacing:35.941010pt;}
.ws1ba{word-spacing:36.009323pt;}
.wsed{word-spacing:36.062080pt;}
.wsb5{word-spacing:36.319360pt;}
.ws1aa{word-spacing:36.520913pt;}
.ws195{word-spacing:38.798312pt;}
.wsb3{word-spacing:38.849280pt;}
.ws196{word-spacing:39.042173pt;}
.wsc1{word-spacing:39.492480pt;}
.ws177{word-spacing:41.558495pt;}
.ws175{word-spacing:41.587301pt;}
.ws1b2{word-spacing:41.732882pt;}
.ws176{word-spacing:41.890809pt;}
.ws1b3{word-spacing:42.731085pt;}
.wscb{word-spacing:45.881600pt;}
.wsbf{word-spacing:47.168000pt;}
.wsf1{word-spacing:49.269120pt;}
.wse5{word-spacing:54.243200pt;}
.ws182{word-spacing:71.650215pt;}
.ws11a{word-spacing:136.823987pt;}
.ws1d6{word-spacing:704.617211pt;}
._1{margin-left:-6.461099pt;}
._c{margin-left:-5.313387pt;}
._1a{margin-left:-4.358216pt;}
._0{margin-left:-3.230549pt;}
._2{margin-left:-2.019093pt;}
._4{margin-left:-1.060024pt;}
._5{width:1.261933pt;}
._a{width:2.221003pt;}
._b{width:3.533413pt;}
._d{width:4.810813pt;}
._10{width:5.707357pt;}
._11{width:7.009464pt;}
._8{width:8.429715pt;}
._16{width:9.881653pt;}
._12{width:10.890667pt;}
._f{width:12.375651pt;}
._15{width:15.139733pt;}
._9{width:16.607043pt;}
._13{width:18.254227pt;}
._17{width:21.299035pt;}
._7{width:33.113131pt;}
._3{width:35.233179pt;}
._6{width:40.028525pt;}
._20{width:48.482247pt;}
._14{width:59.358867pt;}
._22{width:66.914752pt;}
._21{width:71.040000pt;}
._1f{width:81.605219pt;}
._1e{width:105.859259pt;}
._19{width:109.147249pt;}
._18{width:117.801035pt;}
._1b{width:168.175360pt;}
._23{width:176.784000pt;}
._1c{width:306.420480pt;}
._1d{width:731.447040pt;}
._e{width:756.000000pt;}
.fs13{font-size:23.518933pt;}
.fs14{font-size:25.618667pt;}
.fsa{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fs10{font-size:32.414933pt;}
.fsc{font-size:34.560000pt;}
.fs12{font-size:34.858133pt;}
.fse{font-size:36.847467pt;}
.fs9{font-size:37.120000pt;}
.fs11{font-size:38.637867pt;}
.fsf{font-size:41.557333pt;}
.fsb{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:50.477333pt;}
.fs8{font-size:53.120000pt;}
.fs3{font-size:53.133867pt;}
.fs7{font-size:58.880000pt;}
.fs15{font-size:62.996800pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs0{font-size:80.763733pt;}
.fs1{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:2.240000pt;}
.y2a0{bottom:2.400000pt;}
.y2e2{bottom:2.720000pt;}
.y2c9{bottom:2.880000pt;}
.y2e3{bottom:3.040000pt;}
.yc9{bottom:8.320000pt;}
.y1b8{bottom:9.385200pt;}
.y1bc{bottom:9.423333pt;}
.y1b7{bottom:9.526533pt;}
.y1bd{bottom:9.592400pt;}
.y1ba{bottom:10.144933pt;}
.yb2{bottom:14.400000pt;}
.ybb{bottom:14.560000pt;}
.y29f{bottom:14.720000pt;}
.y2a4{bottom:15.040000pt;}
.y35d{bottom:18.231333pt;}
.yc5{bottom:20.640000pt;}
.ydd{bottom:26.720000pt;}
.yc3{bottom:26.880000pt;}
.yb7{bottom:27.360000pt;}
.y2c7{bottom:27.520000pt;}
.y35b{bottom:28.730800pt;}
.y35c{bottom:31.355600pt;}
.yfe{bottom:32.960000pt;}
.y352{bottom:38.205733pt;}
.ydf{bottom:39.040000pt;}
.y35a{bottom:39.230133pt;}
.y2ce{bottom:39.680000pt;}
.yf8{bottom:45.120000pt;}
.y351{bottom:48.705067pt;}
.y359{bottom:49.729600pt;}
.yd1{bottom:51.360000pt;}
.y2f1{bottom:52.000000pt;}
.y350{bottom:59.204533pt;}
.y358{bottom:60.229067pt;}
.y2fe{bottom:63.520000pt;}
.y102{bottom:63.680000pt;}
.y34f{bottom:69.703867pt;}
.y1bb{bottom:70.222267pt;}
.y1b9{bottom:70.590800pt;}
.y357{bottom:70.728400pt;}
.y1b1{bottom:72.062133pt;}
.y1ad{bottom:72.400800pt;}
.yf5{bottom:75.840000pt;}
.y2b9{bottom:77.920000pt;}
.y74{bottom:77.923520pt;}
.y1f7{bottom:79.015200pt;}
.y142{bottom:79.342560pt;}
.y21d{bottom:79.684640pt;}
.y34e{bottom:80.203467pt;}
.y356{bottom:81.227867pt;}
.y1b0{bottom:81.758933pt;}
.y17a{bottom:81.920000pt;}
.y1a8{bottom:82.079200pt;}
.y1a5{bottom:82.080000pt;}
.y1ac{bottom:82.097600pt;}
.y1b5{bottom:82.465867pt;}
.y245{bottom:83.036000pt;}
.y266{bottom:83.112640pt;}
.y391{bottom:83.433760pt;}
.yae{bottom:85.188800pt;}
.y3d1{bottom:86.182107pt;}
.y42b{bottom:87.476000pt;}
.y2f8{bottom:88.800000pt;}
.y1b4{bottom:89.185067pt;}
.y467{bottom:89.708000pt;}
.y29c{bottom:90.080000pt;}
.y34d{bottom:90.702800pt;}
.y1af{bottom:91.455600pt;}
.y1b3{bottom:91.455733pt;}
.y35f{bottom:91.727200pt;}
.y355{bottom:91.727333pt;}
.y1ab{bottom:91.794400pt;}
.y179{bottom:91.840000pt;}
.y477{bottom:91.940000pt;}
.y1a7{bottom:93.161200pt;}
.y400{bottom:93.256000pt;}
.y73{bottom:94.080000pt;}
.y1f6{bottom:94.380160pt;}
.y141{bottom:94.707520pt;}
.y1a4{bottom:96.123360pt;}
.y244{bottom:96.800000pt;}
.y265{bottom:98.477600pt;}
.y390{bottom:98.798720pt;}
.y12{bottom:99.089333pt;}
.yad{bottom:100.553760pt;}
.y1ae{bottom:101.152400pt;}
.y1b2{bottom:101.152533pt;}
.y42a{bottom:101.240000pt;}
.y34c{bottom:101.307200pt;}
.y34a{bottom:101.307333pt;}
.y1aa{bottom:101.491067pt;}
.y3d0{bottom:101.547067pt;}
.y35e{bottom:102.331600pt;}
.y353{bottom:102.331733pt;}
.y470{bottom:103.472000pt;}
.y72{bottom:104.160000pt;}
.y34b{bottom:104.247067pt;}
.y354{bottom:105.271467pt;}
.y450{bottom:105.704000pt;}
.y29b{bottom:106.400000pt;}
.y108{bottom:106.880000pt;}
.y3ff{bottom:107.176000pt;}
.y1a6{bottom:108.708000pt;}
.y1f5{bottom:109.745120pt;}
.y140{bottom:110.072480pt;}
.y21c{bottom:110.720000pt;}
.y264{bottom:113.683200pt;}
.y38f{bottom:114.163680pt;}
.y178{bottom:114.555040pt;}
.y29a{bottom:114.723520pt;}
.y11{bottom:115.030667pt;}
.y107{bottom:115.202720pt;}
.yac{bottom:115.918720pt;}
.y2b8{bottom:116.480000pt;}
.y3cf{bottom:116.912027pt;}
.y44f{bottom:119.468000pt;}
.y1f4{bottom:125.110080pt;}
.y13f{bottom:125.437440pt;}
.y299{bottom:126.880000pt;}
.y106{bottom:127.520000pt;}
.y361{bottom:128.193333pt;}
.y333{bottom:128.320000pt;}
.y263{bottom:129.048160pt;}
.y38e{bottom:129.369280pt;}
.y177{bottom:129.920000pt;}
.y10{bottom:130.970667pt;}
.y429{bottom:131.156000pt;}
.yab{bottom:131.283680pt;}
.y3ce{bottom:132.276987pt;}
.y466{bottom:133.232000pt;}
.y1a9{bottom:134.182000pt;}
.y476{bottom:135.464000pt;}
.y3fe{bottom:136.936000pt;}
.y1f3{bottom:140.475040pt;}
.y332{bottom:141.280000pt;}
.y298{bottom:143.200000pt;}
.y315{bottom:144.000000pt;}
.yfd{bottom:144.320000pt;}
.y262{bottom:144.413120pt;}
.y38d{bottom:144.734240pt;}
.y428{bottom:144.920000pt;}
.y176{bottom:145.057600pt;}
.yaa{bottom:146.648640pt;}
.y465{bottom:147.152000pt;}
.y3cd{bottom:147.641947pt;}
.y44e{bottom:149.228000pt;}
.y71{bottom:150.684160pt;}
.y3fd{bottom:150.700000pt;}
.y13e{bottom:151.360000pt;}
.y297{bottom:153.280000pt;}
.y1f2{bottom:155.840000pt;}
.y311{bottom:156.000000pt;}
.y331{bottom:156.919840pt;}
.yd8{bottom:158.560000pt;}
.y105{bottom:158.882720pt;}
.y261{bottom:159.778080pt;}
.y1b6{bottom:159.958400pt;}
.y38c{bottom:160.099200pt;}
.y175{bottom:160.422560pt;}
.ya9{bottom:161.854240pt;}
.y3cc{bottom:162.847547pt;}
.y44d{bottom:163.148000pt;}
.yff{bottom:164.960000pt;}
.y70{bottom:166.049120pt;}
.y314{bottom:170.560000pt;}
.yd6{bottom:170.880000pt;}
.y1f1{bottom:171.040000pt;}
.y104{bottom:171.200000pt;}
.y101{bottom:171.203520pt;}
.y296{bottom:172.792160pt;}
.y427{bottom:174.680000pt;}
.y38b{bottom:175.464160pt;}
.y174{bottom:175.787520pt;}
.y464{bottom:176.912000pt;}
.ya8{bottom:177.219200pt;}
.y3cb{bottom:178.212507pt;}
.y475{bottom:179.144000pt;}
.y3fc{bottom:180.460000pt;}
.y6f{bottom:181.414080pt;}
.y13d{bottom:182.477920pt;}
.y313{bottom:182.883520pt;}
.y349{bottom:183.148667pt;}
.yd5{bottom:183.200000pt;}
.y100{bottom:183.360000pt;}
.y260{bottom:185.700640pt;}
.y1f0{bottom:186.365920pt;}
.y330{bottom:186.999040pt;}
.y295{bottom:188.157120pt;}
.y426{bottom:188.444000pt;}
.yfc{bottom:189.600000pt;}
.y463{bottom:190.676000pt;}
.y38a{bottom:190.829120pt;}
.y173{bottom:191.152480pt;}
.ya7{bottom:192.584160pt;}
.y44c{bottom:192.908000pt;}
.y3ca{bottom:193.577467pt;}
.y33f{bottom:193.648000pt;}
.y3fb{bottom:194.380000pt;}
.yf{bottom:194.730667pt;}
.y312{bottom:195.040000pt;}
.y103{bottom:195.680000pt;}
.y348{bottom:196.272933pt;}
.y6e{bottom:196.779040pt;}
.y13c{bottom:197.842880pt;}
.y1ef{bottom:201.730880pt;}
.y32f{bottom:202.364000pt;}
.y294{bottom:203.362720pt;}
.y33c{bottom:204.147467pt;}
.y33e{bottom:204.147600pt;}
.y389{bottom:206.194080pt;}
.y172{bottom:206.517440pt;}
.y44b{bottom:206.672000pt;}
.y33d{bottom:206.772400pt;}
.ya6{bottom:207.949120pt;}
.y3fa{bottom:208.144000pt;}
.y3c9{bottom:208.942427pt;}
.ye{bottom:210.672000pt;}
.y6d{bottom:211.984640pt;}
.y13b{bottom:213.207840pt;}
.y344{bottom:214.646800pt;}
.y347{bottom:214.646933pt;}
.y33b{bottom:214.647067pt;}
.y25f{bottom:217.054720pt;}
.y1ee{bottom:217.095840pt;}
.y32e{bottom:217.569600pt;}
.y310{bottom:218.080000pt;}
.y425{bottom:218.360000pt;}
.yfb{bottom:218.560000pt;}
.y44a{bottom:220.436000pt;}
.y388{bottom:221.399680pt;}
.y171{bottom:221.882400pt;}
.y3f9{bottom:221.908000pt;}
.y474{bottom:222.668000pt;}
.ya5{bottom:223.314080pt;}
.y3c8{bottom:224.307387pt;}
.y343{bottom:225.146267pt;}
.y346{bottom:225.146400pt;}
.y33a{bottom:225.146533pt;}
.yd{bottom:226.612000pt;}
.yfa{bottom:227.040000pt;}
.y6c{bottom:227.349600pt;}
.y13a{bottom:228.413440pt;}
.y293{bottom:229.444640pt;}
.y30a{bottom:231.680000pt;}
.y424{bottom:232.124000pt;}
.y25e{bottom:232.419680pt;}
.y1ed{bottom:232.460800pt;}
.y32d{bottom:232.934560pt;}
.y243{bottom:233.544800pt;}
.y462{bottom:234.356000pt;}
.y342{bottom:235.645733pt;}
.y339{bottom:235.645867pt;}
.y473{bottom:236.432000pt;}
.y387{bottom:236.764640pt;}
.y170{bottom:237.088000pt;}
.ya4{bottom:238.519680pt;}
.y3c7{bottom:239.672347pt;}
.yc{bottom:242.552000pt;}
.y6b{bottom:242.714560pt;}
.y139{bottom:243.778400pt;}
.yf4{bottom:243.840000pt;}
.y341{bottom:246.145067pt;}
.y345{bottom:246.145200pt;}
.y338{bottom:246.145333pt;}
.y30f{bottom:246.240000pt;}
.y30d{bottom:246.243520pt;}
.y25d{bottom:247.784640pt;}
.y1ec{bottom:247.825760pt;}
.y32c{bottom:248.299520pt;}
.y242{bottom:248.909760pt;}
.y449{bottom:250.352000pt;}
.y3f8{bottom:251.668000pt;}
.y386{bottom:252.129600pt;}
.y16f{bottom:252.452960pt;}
.y21b{bottom:252.939520pt;}
.ya3{bottom:253.884640pt;}
.y3c6{bottom:254.877947pt;}
.y337{bottom:256.644667pt;}
.y6a{bottom:258.079520pt;}
.y30c{bottom:258.400000pt;}
.y30e{bottom:258.402720pt;}
.y138{bottom:259.143360pt;}
.y292{bottom:260.480000pt;}
.y423{bottom:261.884000pt;}
.y1eb{bottom:263.031360pt;}
.y25c{bottom:263.149600pt;}
.y32b{bottom:263.664480pt;}
.y448{bottom:264.116000pt;}
.y241{bottom:264.274720pt;}
.y3f7{bottom:265.588000pt;}
.y478{bottom:266.348000pt;}
.y336{bottom:267.144133pt;}
.y385{bottom:267.494560pt;}
.y16e{bottom:267.817920pt;}
.y21a{bottom:268.145120pt;}
.ya2{bottom:269.249600pt;}
.y3c5{bottom:270.242907pt;}
.yf7{bottom:270.562720pt;}
.y30b{bottom:270.720000pt;}
.y291{bottom:272.320000pt;}
.y69{bottom:274.474560pt;}
.y137{bottom:274.508320pt;}
.y422{bottom:275.648000pt;}
.yf9{bottom:276.800000pt;}
.y335{bottom:277.748533pt;}
.y461{bottom:277.880000pt;}
.y1ea{bottom:278.396320pt;}
.y25b{bottom:278.514560pt;}
.y32a{bottom:279.029440pt;}
.y240{bottom:279.639680pt;}
.y472{bottom:280.112000pt;}
.y340{bottom:280.688400pt;}
.y384{bottom:282.859520pt;}
.yf3{bottom:282.880000pt;}
.y16d{bottom:283.182880pt;}
.y219{bottom:283.510080pt;}
.ya1{bottom:284.614560pt;}
.y290{bottom:285.280000pt;}
.y3c4{bottom:285.607867pt;}
.y136{bottom:289.873280pt;}
.yb{bottom:290.372000pt;}
.y68{bottom:291.273760pt;}
.y25a{bottom:293.720160pt;}
.y309{bottom:293.760000pt;}
.y447{bottom:293.876000pt;}
.y1e9{bottom:294.079520pt;}
.y329{bottom:294.394400pt;}
.y1a3{bottom:295.004640pt;}
.y3f6{bottom:295.348000pt;}
.y383{bottom:298.224480pt;}
.y28f{bottom:298.240000pt;}
.y16c{bottom:298.547840pt;}
.y218{bottom:298.875040pt;}
.ya0{bottom:299.979520pt;}
.y3c3{bottom:300.972827pt;}
.y360{bottom:302.137867pt;}
.y135{bottom:305.238240pt;}
.y421{bottom:305.564000pt;}
.ya{bottom:306.313333pt;}
.y67{bottom:306.479360pt;}
.yf6{bottom:307.360000pt;}
.y460{bottom:307.640000pt;}
.y259{bottom:309.085120pt;}
.y3f5{bottom:309.112000pt;}
.y328{bottom:309.585120pt;}
.y1a2{bottom:310.369600pt;}
.y1e8{bottom:310.560000pt;}
.y28e{bottom:311.200000pt;}
.y382{bottom:313.430080pt;}
.y217{bottom:314.240000pt;}
.y9f{bottom:315.344480pt;}
.y3c2{bottom:316.337787pt;}
.y420{bottom:319.328000pt;}
.y134{bottom:320.443840pt;}
.y45f{bottom:321.560000pt;}
.y66{bottom:321.844320pt;}
.y308{bottom:321.920000pt;}
.y306{bottom:321.923520pt;}
.y446{bottom:323.636000pt;}
.y28d{bottom:324.160000pt;}
.y258{bottom:324.450080pt;}
.y16b{bottom:324.470400pt;}
.y327{bottom:324.950080pt;}
.y1a1{bottom:325.734560pt;}
.y1e7{bottom:325.920000pt;}
.y381{bottom:328.795040pt;}
.y216{bottom:329.600000pt;}
.yf1{bottom:330.400000pt;}
.y9e{bottom:330.550080pt;}
.y3c1{bottom:331.702747pt;}
.y2b7{bottom:333.284000pt;}
.y305{bottom:334.080000pt;}
.y307{bottom:334.082720pt;}
.y133{bottom:335.808800pt;}
.y28c{bottom:336.960000pt;}
.y65{bottom:337.209280pt;}
.y445{bottom:337.556000pt;}
.y9{bottom:338.193333pt;}
.y3f4{bottom:338.872000pt;}
.y257{bottom:339.815040pt;}
.y326{bottom:340.315040pt;}
.y1a0{bottom:340.940160pt;}
.y1e6{bottom:341.219200pt;}
.y380{bottom:344.139520pt;}
.yf0{bottom:344.800960pt;}
.y215{bottom:344.928960pt;}
.y9d{bottom:345.915040pt;}
.y304{bottom:346.400000pt;}
.y3c0{bottom:346.908347pt;}
.y41f{bottom:349.088000pt;}
.y28b{bottom:349.920000pt;}
.yef{bottom:351.040000pt;}
.y132{bottom:351.173760pt;}
.y444{bottom:351.320000pt;}
.y64{bottom:352.574240pt;}
.y3f3{bottom:352.792000pt;}
.y8{bottom:354.133333pt;}
.y256{bottom:355.180000pt;}
.y325{bottom:355.639680pt;}
.y16a{bottom:355.824480pt;}
.y19f{bottom:356.305120pt;}
.y1e5{bottom:356.584160pt;}
.yf2{bottom:357.120000pt;}
.y2b6{bottom:357.920000pt;}
.y37f{bottom:359.504480pt;}
.y214{bottom:360.134560pt;}
.y9c{bottom:361.209280pt;}
.y3bf{bottom:362.273307pt;}
.y41e{bottom:362.852000pt;}
.y28a{bottom:362.880000pt;}
.yed{bottom:363.520000pt;}
.y45e{bottom:365.084000pt;}
.y131{bottom:366.538720pt;}
.y471{bottom:367.316000pt;}
.y63{bottom:367.939200pt;}
.y303{bottom:369.440000pt;}
.y2c4{bottom:369.920000pt;}
.y7{bottom:370.073333pt;}
.y255{bottom:370.385600pt;}
.y324{bottom:371.004640pt;}
.y169{bottom:371.189440pt;}
.y19e{bottom:371.670080pt;}
.y1e4{bottom:371.949120pt;}
.y37e{bottom:374.869440pt;}
.y213{bottom:375.499520pt;}
.y289{bottom:375.840000pt;}
.y9b{bottom:376.574240pt;}
.y3be{bottom:377.638267pt;}
.y45d{bottom:378.848000pt;}
.yd4{bottom:380.000000pt;}
.y443{bottom:381.080000pt;}
.y130{bottom:381.903680pt;}
.y3f2{bottom:382.552000pt;}
.y2c3{bottom:382.720000pt;}
.y2f7{bottom:383.040000pt;}
.y62{bottom:383.304160pt;}
.y254{bottom:385.750560pt;}
.y6{bottom:386.013333pt;}
.y323{bottom:386.369600pt;}
.y168{bottom:386.554400pt;}
.y19d{bottom:387.035040pt;}
.y1e3{bottom:387.314080pt;}
.yee{bottom:388.476160pt;}
.y288{bottom:388.800000pt;}
.y37d{bottom:390.075040pt;}
.y212{bottom:390.864480pt;}
.y9a{bottom:391.939200pt;}
.y41d{bottom:392.768000pt;}
.y3bd{bottom:393.003227pt;}
.y442{bottom:394.844000pt;}
.y2c2{bottom:395.680000pt;}
.y3f1{bottom:396.316000pt;}
.y12f{bottom:397.109280pt;}
.y287{bottom:397.120000pt;}
.y302{bottom:397.600000pt;}
.y61{bottom:398.509760pt;}
.y37{bottom:399.672000pt;}
.y322{bottom:401.575200pt;}
.y167{bottom:401.760000pt;}
.y19c{bottom:402.400000pt;}
.y1e2{bottom:402.519680pt;}
.yec{bottom:405.280000pt;}
.y37c{bottom:405.440000pt;}
.y211{bottom:406.229440pt;}
.y41c{bottom:406.532000pt;}
.y99{bottom:407.304160pt;}
.y3bc{bottom:408.368187pt;}
.y2c1{bottom:408.640000pt;}
.y441{bottom:408.764000pt;}
.y301{bottom:409.765440pt;}
.y3f0{bottom:410.080000pt;}
.y46f{bottom:410.840000pt;}
.y253{bottom:411.832480pt;}
.y12e{bottom:412.474240pt;}
.y60{bottom:413.874720pt;}
.y286{bottom:416.480000pt;}
.y321{bottom:416.940160pt;}
.y19b{bottom:417.754400pt;}
.y23f{bottom:417.760000pt;}
.y1e1{bottom:417.884640pt;}
.y37b{bottom:420.800000pt;}
.y210{bottom:421.594400pt;}
.y2c0{bottom:421.600000pt;}
.y300{bottom:422.082720pt;}
.y98{bottom:422.509760pt;}
.y45c{bottom:422.528000pt;}
.y2fc{bottom:422.726240pt;}
.y3bb{bottom:423.573787pt;}
.y46e{bottom:424.760000pt;}
.y5{bottom:425.864000pt;}
.y12d{bottom:427.839200pt;}
.y5f{bottom:429.239680pt;}
.y166{bottom:429.920000pt;}
.yeb{bottom:430.400000pt;}
.y320{bottom:432.305120pt;}
.y19a{bottom:432.960000pt;}
.y1e0{bottom:433.249600pt;}
.y2ff{bottom:434.400000pt;}
.y2bf{bottom:434.560000pt;}
.y2fb{bottom:435.043520pt;}
.y37a{bottom:436.155040pt;}
.y41b{bottom:436.292000pt;}
.y20f{bottom:436.800000pt;}
.y36{bottom:437.436000pt;}
.y252{bottom:437.755040pt;}
.y97{bottom:437.874720pt;}
.y440{bottom:438.524000pt;}
.y3ba{bottom:438.938747pt;}
.y3ef{bottom:440.800000pt;}
.y12c{bottom:443.204160pt;}
.yea{bottom:443.360000pt;}
.y5e{bottom:444.604640pt;}
.y285{bottom:445.180000pt;}
.y2fa{bottom:447.200000pt;}
.y2be{bottom:447.520000pt;}
.y31f{bottom:447.670080pt;}
.y23e{bottom:448.228800pt;}
.y199{bottom:448.320000pt;}
.y1df{bottom:448.614560pt;}
.y41a{bottom:450.056000pt;}
.y379{bottom:451.520000pt;}
.ye9{bottom:451.840000pt;}
.y35{bottom:452.160000pt;}
.y43f{bottom:452.288000pt;}
.y251{bottom:453.120000pt;}
.y96{bottom:453.239680pt;}
.y3b9{bottom:454.303707pt;}
.y2fd{bottom:457.280000pt;}
.y12b{bottom:458.569120pt;}
.y2f9{bottom:459.520000pt;}
.y5d{bottom:459.969600pt;}
.y2bd{bottom:460.320000pt;}
.y284{bottom:460.544960pt;}
.y31e{bottom:463.035040pt;}
.y165{bottom:463.502560pt;}
.y23d{bottom:463.593760pt;}
.y198{bottom:463.634080pt;}
.y1de{bottom:463.979520pt;}
.y45b{bottom:466.052000pt;}
.y378{bottom:466.854560pt;}
.y20e{bottom:467.515040pt;}
.y46d{bottom:468.284000pt;}
.y95{bottom:468.604640pt;}
.ye8{bottom:468.640000pt;}
.y3b8{bottom:469.668667pt;}
.y2bc{bottom:473.280000pt;}
.y12a{bottom:473.934080pt;}
.y3ee{bottom:474.458880pt;}
.y5c{bottom:475.334560pt;}
.y283{bottom:475.909920pt;}
.y31d{bottom:478.389440pt;}
.y164{bottom:478.867520pt;}
.y23c{bottom:478.958720pt;}
.y197{bottom:478.999040pt;}
.y1dd{bottom:479.344480pt;}
.y419{bottom:479.972000pt;}
.ye7{bottom:481.600000pt;}
.y43e{bottom:482.048000pt;}
.y377{bottom:482.060160pt;}
.y2f6{bottom:482.560000pt;}
.y20d{bottom:482.880000pt;}
.y94{bottom:483.969600pt;}
.y3b7{bottom:485.033627pt;}
.y250{bottom:485.120000pt;}
.y2bb{bottom:486.240000pt;}
.y129{bottom:489.139680pt;}
.y3ed{bottom:489.823840pt;}
.y5b{bottom:490.540160pt;}
.y282{bottom:491.274880pt;}
.y31c{bottom:493.595040pt;}
.y418{bottom:493.736000pt;}
.y163{bottom:494.232480pt;}
.y23b{bottom:494.323680pt;}
.y196{bottom:494.364000pt;}
.y1dc{bottom:494.550080pt;}
.y43d{bottom:495.968000pt;}
.ye6{bottom:496.000000pt;}
.y2f0{bottom:496.160000pt;}
.y376{bottom:497.425120pt;}
.y20c{bottom:498.204640pt;}
.y93{bottom:499.334560pt;}
.y3b6{bottom:500.398587pt;}
.y128{bottom:504.504640pt;}
.y2ba{bottom:504.640000pt;}
.y3ec{bottom:505.188800pt;}
.y5a{bottom:505.905120pt;}
.y281{bottom:506.480480pt;}
.y31b{bottom:508.960000pt;}
.y2f4{bottom:508.964960pt;}
.y34{bottom:509.580000pt;}
.y162{bottom:509.597440pt;}
.y23a{bottom:509.688640pt;}
.y195{bottom:509.728960pt;}
.y45a{bottom:509.732000pt;}
.y1db{bottom:509.915040pt;}
.y375{bottom:512.790080pt;}
.y20b{bottom:513.569600pt;}
.yda{bottom:514.082720pt;}
.y92{bottom:514.540160pt;}
.y3b5{bottom:515.604187pt;}
.y24f{bottom:518.856320pt;}
.ye5{bottom:519.040000pt;}
.y127{bottom:519.869600pt;}
.y3eb{bottom:520.553760pt;}
.y59{bottom:521.270080pt;}
.y2f5{bottom:521.280000pt;}
.y280{bottom:521.845440pt;}
.y33{bottom:523.344000pt;}
.y417{bottom:523.496000pt;}
.y2f3{bottom:523.522720pt;}
.y31a{bottom:524.315040pt;}
.y161{bottom:524.803040pt;}
.y239{bottom:524.894240pt;}
.y194{bottom:524.934560pt;}
.y1da{bottom:525.280000pt;}
.y43c{bottom:525.728000pt;}
.yd9{bottom:526.400000pt;}
.y374{bottom:528.155040pt;}
.y20a{bottom:528.775200pt;}
.y91{bottom:529.905120pt;}
.y3b4{bottom:530.969147pt;}
.ye4{bottom:533.440000pt;}
.y24e{bottom:534.221280pt;}
.y2b5{bottom:535.200000pt;}
.y126{bottom:535.234560pt;}
.y2f2{bottom:535.840000pt;}
.y3ea{bottom:535.918720pt;}
.y58{bottom:536.635040pt;}
.y32{bottom:537.108000pt;}
.y27f{bottom:537.210400pt;}
.y416{bottom:537.260000pt;}
.yd7{bottom:538.560000pt;}
.y43b{bottom:539.492000pt;}
.y319{bottom:539.680000pt;}
.y160{bottom:540.168000pt;}
.y238{bottom:540.259200pt;}
.y193{bottom:540.299520pt;}
.y373{bottom:543.515040pt;}
.y209{bottom:544.140160pt;}
.y90{bottom:545.270080pt;}
.y3b3{bottom:546.334107pt;}
.y2b4{bottom:549.280000pt;}
.y24d{bottom:549.586240pt;}
.y125{bottom:550.599520pt;}
.y31{bottom:551.028000pt;}
.y3e9{bottom:551.124320pt;}
.y57{bottom:552.000000pt;}
.y27e{bottom:552.575360pt;}
.y459{bottom:553.256000pt;}
.y318{bottom:555.040000pt;}
.y15f{bottom:555.532960pt;}
.y237{bottom:555.624160pt;}
.y192{bottom:555.664480pt;}
.yde{bottom:556.480000pt;}
.y1d9{bottom:557.280000pt;}
.y2ef{bottom:558.880000pt;}
.y208{bottom:559.505120pt;}
.y8f{bottom:560.635040pt;}
.y3b2{bottom:561.699067pt;}
.yce{bottom:563.840000pt;}
.y2b3{bottom:564.640000pt;}
.y24c{bottom:564.791840pt;}
.y30{bottom:564.792000pt;}
.ye3{bottom:564.805440pt;}
.y124{bottom:565.964480pt;}
.y3e8{bottom:566.489280pt;}
.y415{bottom:567.020000pt;}
.y56{bottom:567.063520pt;}
.y27d{bottom:567.940320pt;}
.y43a{bottom:569.252000pt;}
.y15e{bottom:570.897920pt;}
.y236{bottom:570.989120pt;}
.y191{bottom:571.029440pt;}
.ye0{bottom:571.040000pt;}
.y2ee{bottom:572.480000pt;}
.y372{bottom:574.070080pt;}
.y207{bottom:574.870080pt;}
.y8e{bottom:576.000000pt;}
.y3b1{bottom:577.064027pt;}
.ye2{bottom:577.122720pt;}
.y2f{bottom:578.556000pt;}
.y2b2{bottom:579.840000pt;}
.y24b{bottom:580.156800pt;}
.y123{bottom:581.170080pt;}
.y3e7{bottom:581.854240pt;}
.y55{bottom:582.428480pt;}
.y439{bottom:583.016000pt;}
.y27c{bottom:583.145920pt;}
.y317{bottom:586.080000pt;}
.y15d{bottom:586.262880pt;}
.y235{bottom:586.354080pt;}
.y190{bottom:586.394400pt;}
.y2ed{bottom:588.800000pt;}
.y371{bottom:589.435040pt;}
.ye1{bottom:589.440000pt;}
.y206{bottom:590.235040pt;}
.y1d8{bottom:591.009600pt;}
.y8d{bottom:591.175200pt;}
.y2e{bottom:592.320000pt;}
.y3b0{bottom:592.428987pt;}
.y2b1{bottom:595.200000pt;}
.y122{bottom:596.535040pt;}
.y414{bottom:596.936000pt;}
.y3e6{bottom:597.219200pt;}
.y54{bottom:597.793440pt;}
.y27b{bottom:598.510880pt;}
.y316{bottom:600.144000pt;}
.y15c{bottom:601.468480pt;}
.y234{bottom:601.559680pt;}
.y18f{bottom:601.600000pt;}
.y370{bottom:604.800000pt;}
.y205{bottom:605.600000pt;}
.y24a{bottom:605.920000pt;}
.y2d{bottom:606.168000pt;}
.ydc{bottom:606.240000pt;}
.y1d7{bottom:606.374560pt;}
.y8c{bottom:606.540160pt;}
.y3af{bottom:607.634587pt;}
.y2b0{bottom:610.560000pt;}
.y413{bottom:610.700000pt;}
.y121{bottom:611.900000pt;}
.y3e5{bottom:612.584160pt;}
.y458{bottom:612.932000pt;}
.y334{bottom:613.016000pt;}
.y53{bottom:613.158400pt;}
.y27a{bottom:613.875840pt;}
.y15b{bottom:616.833440pt;}
.y233{bottom:616.924640pt;}
.y18e{bottom:616.960000pt;}
.y2ec{bottom:618.880000pt;}
.y2c{bottom:619.932000pt;}
.y36f{bottom:620.160000pt;}
.ydb{bottom:620.640000pt;}
.y1d6{bottom:621.580160pt;}
.y8b{bottom:621.905120pt;}
.y3ae{bottom:622.999547pt;}
.y412{bottom:624.464000pt;}
.y2af{bottom:625.920000pt;}
.y438{bottom:626.696000pt;}
.y120{bottom:627.264960pt;}
.y3e4{bottom:627.949120pt;}
.y52{bottom:628.523360pt;}
.y279{bottom:629.240800pt;}
.y15a{bottom:632.198400pt;}
.y18d{bottom:632.264160pt;}
.y232{bottom:632.289600pt;}
.y2b{bottom:633.696000pt;}
.y2eb{bottom:634.080000pt;}
.y36e{bottom:635.468800pt;}
.y204{bottom:636.636000pt;}
.y1d5{bottom:636.945120pt;}
.y8a{bottom:637.270080pt;}
.y3ad{bottom:638.364507pt;}
.y437{bottom:640.460000pt;}
.y2ae{bottom:641.280000pt;}
.y11f{bottom:642.629920pt;}
.y3e3{bottom:643.154720pt;}
.yd0{bottom:643.680000pt;}
.y51{bottom:643.888320pt;}
.y278{bottom:644.605760pt;}
.y2a{bottom:647.460000pt;}
.y159{bottom:647.563360pt;}
.y18c{bottom:647.629120pt;}
.y231{bottom:647.654560pt;}
.y203{bottom:650.400000pt;}
.y36d{bottom:650.833760pt;}
.y1d4{bottom:652.310080pt;}
.y89{bottom:652.635040pt;}
.y3ac{bottom:653.729467pt;}
.y411{bottom:654.224000pt;}
.y46c{bottom:656.456000pt;}
.y2ad{bottom:656.640000pt;}
.y11e{bottom:657.994880pt;}
.y3e2{bottom:658.519680pt;}
.y50{bottom:659.093920pt;}
.y277{bottom:659.970720pt;}
.y29{bottom:661.380000pt;}
.y158{bottom:662.928320pt;}
.y18b{bottom:662.994080pt;}
.y230{bottom:663.019520pt;}
.y2ea{bottom:665.280000pt;}
.y36c{bottom:666.039360pt;}
.y1d3{bottom:667.675040pt;}
.y88{bottom:667.949600pt;}
.y410{bottom:668.144000pt;}
.y3ab{bottom:669.094427pt;}
.y436{bottom:670.220000pt;}
.ycf{bottom:670.396800pt;}
.yd3{bottom:670.402720pt;}
.y2ac{bottom:671.840000pt;}
.y11d{bottom:673.200480pt;}
.y3e1{bottom:673.884640pt;}
.y4f{bottom:674.458880pt;}
.y28{bottom:675.144000pt;}
.y276{bottom:675.176320pt;}
.y2e9{bottom:677.120000pt;}
.y157{bottom:678.293280pt;}
.y18a{bottom:678.359040pt;}
.y22f{bottom:678.384480pt;}
.y36b{bottom:681.404320pt;}
.yd2{bottom:682.720000pt;}
.y1d2{bottom:682.936320pt;}
.y87{bottom:683.155200pt;}
.y435{bottom:684.140000pt;}
.y3aa{bottom:684.300027pt;}
.y2ab{bottom:687.200000pt;}
.y11c{bottom:688.565440pt;}
.y27{bottom:688.908000pt;}
.y3e0{bottom:689.249600pt;}
.y4e{bottom:689.823840pt;}
.y2e8{bottom:690.080000pt;}
.y275{bottom:690.541280pt;}
.y156{bottom:693.498880pt;}
.y189{bottom:693.564640pt;}
.y22e{bottom:693.590080pt;}
.y36a{bottom:696.769280pt;}
.y40f{bottom:697.904000pt;}
.y1d1{bottom:698.301280pt;}
.y86{bottom:698.520160pt;}
.y3a9{bottom:699.664987pt;}
.y46b{bottom:700.136000pt;}
.y2aa{bottom:702.560000pt;}
.y26{bottom:702.672000pt;}
.y2e4{bottom:702.880000pt;}
.y11b{bottom:703.930400pt;}
.y3df{bottom:704.614560pt;}
.y4d{bottom:705.188800pt;}
.ycc{bottom:705.600000pt;}
.y274{bottom:705.906240pt;}
.y155{bottom:708.863840pt;}
.y188{bottom:708.929600pt;}
.y22d{bottom:708.955040pt;}
.y40e{bottom:711.668000pt;}
.y369{bottom:712.134240pt;}
.y1d0{bottom:713.506880pt;}
.y85{bottom:713.885120pt;}
.y434{bottom:713.900000pt;}
.y3a8{bottom:715.029947pt;}
.y25{bottom:716.592000pt;}
.y2e6{bottom:717.442587pt;}
.y2a9{bottom:717.920000pt;}
.y11a{bottom:719.295360pt;}
.y3de{bottom:719.979520pt;}
.ycd{bottom:720.160000pt;}
.y4c{bottom:720.553760pt;}
.y2e7{bottom:723.520000pt;}
.y154{bottom:724.228800pt;}
.y187{bottom:724.294560pt;}
.y22c{bottom:724.320000pt;}
.y40d{bottom:725.432000pt;}
.y368{bottom:727.499200pt;}
.y433{bottom:727.664000pt;}
.y1cf{bottom:728.871840pt;}
.y84{bottom:729.250080pt;}
.y2e5{bottom:729.759867pt;}
.y24{bottom:730.356000pt;}
.y3a7{bottom:730.394907pt;}
.y2e0{bottom:730.726880pt;}
.y273{bottom:731.828800pt;}
.y119{bottom:734.660320pt;}
.y3dd{bottom:735.185120pt;}
.y4b{bottom:735.918720pt;}
.y4{bottom:735.968000pt;}
.y153{bottom:739.593760pt;}
.y186{bottom:739.659520pt;}
.y22b{bottom:739.680000pt;}
.y432{bottom:741.428000pt;}
.y367{bottom:742.704800pt;}
.yca{bottom:743.040000pt;}
.y2df{bottom:743.044160pt;}
.y46a{bottom:743.660000pt;}
.y2a8{bottom:744.004000pt;}
.y23{bottom:744.120000pt;}
.y1ce{bottom:744.236800pt;}
.y3a6{bottom:745.759867pt;}
.y272{bottom:747.193760pt;}
.y118{bottom:749.865920pt;}
.y3dc{bottom:750.550080pt;}
.y4a{bottom:751.124320pt;}
.ycb{bottom:751.520000pt;}
.y2e1{bottom:752.640000pt;}
.y152{bottom:754.958720pt;}
.y22a{bottom:754.973600pt;}
.y185{bottom:755.024480pt;}
.y83{bottom:755.172640pt;}
.y40c{bottom:755.348000pt;}
.y2de{bottom:755.361440pt;}
.y457{bottom:757.424000pt;}
.y22{bottom:757.884000pt;}
.y366{bottom:758.069760pt;}
.y1cd{bottom:759.601760pt;}
.y271{bottom:762.240000pt;}
.y117{bottom:765.230880pt;}
.y3db{bottom:765.915040pt;}
.y2dd{bottom:766.400000pt;}
.y49{bottom:766.489280pt;}
.y3{bottom:767.848000pt;}
.yc8{bottom:768.320000pt;}
.y40b{bottom:769.112000pt;}
.y151{bottom:770.323680pt;}
.y229{bottom:770.338560pt;}
.y184{bottom:770.389440pt;}
.y431{bottom:771.344000pt;}
.y21{bottom:771.804000pt;}
.y365{bottom:773.434720pt;}
.y270{bottom:774.240000pt;}
.y2a7{bottom:774.880000pt;}
.y1cc{bottom:774.966720pt;}
.yc7{bottom:776.640000pt;}
.y3a5{bottom:777.759867pt;}
.y116{bottom:780.595840pt;}
.y2dc{bottom:780.800000pt;}
.y82{bottom:781.254560pt;}
.y3da{bottom:781.280000pt;}
.y48{bottom:781.854240pt;}
.y430{bottom:785.108000pt;}
.y249{bottom:785.524320pt;}
.y150{bottom:785.529280pt;}
.y228{bottom:785.544160pt;}
.y20{bottom:785.568000pt;}
.y183{bottom:785.595040pt;}
.y2a6{bottom:786.880000pt;}
.y26f{bottom:787.040000pt;}
.y364{bottom:788.799680pt;}
.y1cb{bottom:790.331680pt;}
.yc2{bottom:793.440000pt;}
.y115{bottom:795.960800pt;}
.y81{bottom:796.619520pt;}
.y47{bottom:797.219200pt;}
.y40a{bottom:798.872000pt;}
.y1f{bottom:799.332000pt;}
.y2a5{bottom:799.680000pt;}
.y2{bottom:799.729333pt;}
.y26e{bottom:800.000000pt;}
.y248{bottom:800.889280pt;}
.y14f{bottom:800.894240pt;}
.y227{bottom:800.909120pt;}
.y202{bottom:800.934560pt;}
.y182{bottom:800.955040pt;}
.y456{bottom:801.104000pt;}
.yc6{bottom:801.920000pt;}
.yc1{bottom:801.923520pt;}
.y2db{bottom:803.840000pt;}
.y363{bottom:804.164640pt;}
.y1ca{bottom:805.537280pt;}
.yc4{bottom:808.000000pt;}
.y114{bottom:811.325760pt;}
.y3a4{bottom:811.349760pt;}
.y80{bottom:811.984480pt;}
.y46{bottom:812.584160pt;}
.y409{bottom:812.636000pt;}
.y2a3{bottom:812.640000pt;}
.y26d{bottom:812.960000pt;}
.y1e{bottom:813.096000pt;}
.y3d9{bottom:813.280000pt;}
.yc0{bottom:814.080000pt;}
.y42f{bottom:814.868000pt;}
.yb4{bottom:814.880000pt;}
.y247{bottom:816.254240pt;}
.y14e{bottom:816.259200pt;}
.y226{bottom:816.274080pt;}
.y201{bottom:816.299520pt;}
.y181{bottom:816.320000pt;}
.y2da{bottom:816.800000pt;}
.y1c9{bottom:820.902240pt;}
.y2a2{bottom:821.280000pt;}
.y2d9{bottom:825.120000pt;}
.y2d7{bottom:825.765440pt;}
.y26c{bottom:825.920000pt;}
.y113{bottom:826.690720pt;}
.y3a3{bottom:826.714720pt;}
.y1d{bottom:827.016000pt;}
.y7f{bottom:827.190080pt;}
.y45{bottom:827.949120pt;}
.y42e{bottom:828.632000pt;}
.ybf{bottom:831.040000pt;}
.y246{bottom:831.619200pt;}
.y14d{bottom:831.624160pt;}
.y225{bottom:831.639040pt;}
.y200{bottom:831.664480pt;}
.y180{bottom:831.680000pt;}
.y362{bottom:835.200000pt;}
.y1c8{bottom:836.267200pt;}
.y2d6{bottom:838.082720pt;}
.y2a1{bottom:838.400000pt;}
.y26b{bottom:838.880000pt;}
.ybe{bottom:839.360000pt;}
.y1c{bottom:840.780000pt;}
.y112{bottom:841.896320pt;}
.y2d8{bottom:841.920000pt;}
.y3a2{bottom:842.079680pt;}
.y408{bottom:842.552000pt;}
.y7e{bottom:842.555040pt;}
.y44{bottom:843.154720pt;}
.y455{bottom:844.628000pt;}
.y17f{bottom:846.984160pt;}
.y14c{bottom:846.989120pt;}
.y224{bottom:847.004000pt;}
.y1ff{bottom:847.029440pt;}
.y39e{bottom:847.040000pt;}
.y2d5{bottom:850.400000pt;}
.y29e{bottom:851.520000pt;}
.y1c7{bottom:851.632160pt;}
.y26a{bottom:851.840000pt;}
.y1b{bottom:854.544000pt;}
.y2d4{bottom:854.880000pt;}
.y1{bottom:855.520000pt;}
.ybd{bottom:856.160000pt;}
.y407{bottom:856.316000pt;}
.y111{bottom:857.261280pt;}
.y3a1{bottom:857.444640pt;}
.y7d{bottom:857.920000pt;}
.y43{bottom:858.519680pt;}
.y454{bottom:858.548000pt;}
.y29d{bottom:860.000000pt;}
.y269{bottom:860.160000pt;}
.y17e{bottom:862.349120pt;}
.y14b{bottom:862.354080pt;}
.y223{bottom:862.368960pt;}
.y1fe{bottom:862.394400pt;}
.ybc{bottom:864.480000pt;}
.y1c6{bottom:866.997120pt;}
.y2d3{bottom:867.840000pt;}
.y1a{bottom:868.308000pt;}
.y42d{bottom:872.312000pt;}
.y110{bottom:872.626240pt;}
.y39d{bottom:872.960000pt;}
.y42{bottom:873.884640pt;}
.y17d{bottom:877.554720pt;}
.y14a{bottom:877.559680pt;}
.y222{bottom:877.574560pt;}
.y1fd{bottom:877.600000pt;}
.y268{bottom:879.520000pt;}
.y2cd{bottom:880.800000pt;}
.yb6{bottom:881.440000pt;}
.y1c5{bottom:882.202720pt;}
.y19{bottom:882.228000pt;}
.y39c{bottom:885.760000pt;}
.y406{bottom:886.076000pt;}
.y3a0{bottom:888.476000pt;}
.y2d2{bottom:889.120000pt;}
.y41{bottom:889.249600pt;}
.y7c{bottom:889.920000pt;}
.y17c{bottom:892.919680pt;}
.y149{bottom:892.924640pt;}
.y221{bottom:892.939520pt;}
.y1fc{bottom:892.945120pt;}
.yba{bottom:894.240000pt;}
.y18{bottom:895.992000pt;}
.y2d0{bottom:896.003520pt;}
.yb8{bottom:896.480000pt;}
.y1c4{bottom:897.567680pt;}
.y39b{bottom:898.720000pt;}
.y405{bottom:899.840000pt;}
.y3d7{bottom:900.320000pt;}
.y453{bottom:902.072000pt;}
.yb9{bottom:902.720000pt;}
.y40{bottom:904.614560pt;}
.y2d1{bottom:905.920000pt;}
.y2cf{bottom:908.160000pt;}
.y17b{bottom:908.284640pt;}
.y148{bottom:908.289600pt;}
.y220{bottom:908.304480pt;}
.y1fb{bottom:908.310080pt;}
.y267{bottom:908.315040pt;}
.y17{bottom:909.756000pt;}
.y39a{bottom:911.680000pt;}
.y1c3{bottom:912.932640pt;}
.y10f{bottom:913.913760pt;}
.y3d8{bottom:914.880000pt;}
.y42c{bottom:915.836000pt;}
.y2cc{bottom:918.880000pt;}
.yb5{bottom:919.520000pt;}
.y3f{bottom:919.820160pt;}
.y16{bottom:923.520000pt;}
.y7b{bottom:923.649600pt;}
.y147{bottom:923.654560pt;}
.y21f{bottom:923.669440pt;}
.y1fa{bottom:923.675040pt;}
.y399{bottom:924.640000pt;}
.y1c2{bottom:928.297600pt;}
.y10e{bottom:928.960000pt;}
.y404{bottom:929.756000pt;}
.y2cb{bottom:931.840000pt;}
.yb1{bottom:932.480000pt;}
.y3e{bottom:935.185120pt;}
.y398{bottom:937.600000pt;}
.y3d6{bottom:937.760000pt;}
.y15{bottom:938.240000pt;}
.y7a{bottom:939.014560pt;}
.y146{bottom:939.019520pt;}
.y21e{bottom:939.034400pt;}
.y1f9{bottom:939.040000pt;}
.yb0{bottom:940.800000pt;}
.y10c{bottom:940.960000pt;}
.y469{bottom:943.520000pt;}
.y1c1{bottom:943.662560pt;}
.y2c6{bottom:944.800000pt;}
.y452{bottom:945.752000pt;}
.y3d{bottom:950.550080pt;}
.y397{bottom:950.560000pt;}
.y3d4{bottom:950.720000pt;}
.y79{bottom:954.220160pt;}
.y145{bottom:954.225120pt;}
.y1f8{bottom:954.240000pt;}
.y10d{bottom:955.360000pt;}
.y1c0{bottom:959.027520pt;}
.y403{bottom:959.516000pt;}
.y2ca{bottom:959.680000pt;}
.y2c8{bottom:960.000000pt;}
.yaf{bottom:960.160000pt;}
.y10b{bottom:961.600000pt;}
.y396{bottom:963.360000pt;}
.y3d5{bottom:965.280000pt;}
.y3c{bottom:965.915040pt;}
.y78{bottom:969.585120pt;}
.y144{bottom:969.590080pt;}
.y402{bottom:973.280000pt;}
.y1bf{bottom:974.233120pt;}
.y395{bottom:976.320000pt;}
.y3b{bottom:981.280000pt;}
.y77{bottom:984.950080pt;}
.y143{bottom:984.955040pt;}
.y2c5{bottom:985.600000pt;}
.y468{bottom:987.044000pt;}
.y3d3{bottom:988.160000pt;}
.y14{bottom:989.117120pt;}
.y451{bottom:989.276000pt;}
.y394{bottom:989.280000pt;}
.y1be{bottom:989.598080pt;}
.y10a{bottom:990.560000pt;}
.y76{bottom:1000.315040pt;}
.y3d2{bottom:1001.120000pt;}
.y393{bottom:1002.240000pt;}
.y401{bottom:1003.040000pt;}
.y109{bottom:1005.120000pt;}
.y13{bottom:1010.720000pt;}
.y3a{bottom:1013.280000pt;}
.y392{bottom:1015.200000pt;}
.y75{bottom:1015.680000pt;}
.y39f{bottom:1016.960000pt;}
.y39{bottom:1047.680000pt;}
.y38{bottom:1064.160000pt;}
.h37{height:12.160000pt;}
.h1a{height:12.161333pt;}
.h17{height:12.318667pt;}
.h39{height:12.320000pt;}
.h3d{height:12.480000pt;}
.h43{height:12.960000pt;}
.h41{height:13.120000pt;}
.h50{height:23.082547pt;}
.h16{height:24.480000pt;}
.h19{height:24.640000pt;}
.h22{height:24.641333pt;}
.h3c{height:24.800000pt;}
.h3f{height:25.120000pt;}
.h51{height:25.818812pt;}
.h11{height:26.381250pt;}
.h2f{height:27.698125pt;}
.h30{height:28.227725pt;}
.h42{height:28.579687pt;}
.h2b{height:31.813484pt;}
.h2e{height:32.321751pt;}
.h2c{height:32.668175pt;}
.h4e{height:34.211352pt;}
.h4f{height:34.211885pt;}
.h25{height:36.798667pt;}
.h1b{height:36.800000pt;}
.h29{height:37.135337pt;}
.h6{height:37.193707pt;}
.h5{height:37.403704pt;}
.h40{height:37.440000pt;}
.h4{height:37.504659pt;}
.h4d{height:38.939725pt;}
.hc{height:39.243750pt;}
.h2a{height:40.786250pt;}
.h36{height:42.063437pt;}
.h12{height:42.084375pt;}
.h15{height:43.215000pt;}
.h3e{height:44.722500pt;}
.h55{height:47.085938pt;}
.hb{height:47.109375pt;}
.ha{height:48.375000pt;}
.h20{height:48.960000pt;}
.h1e{height:49.121333pt;}
.h18{height:50.400000pt;}
.h32{height:52.108438pt;}
.he{height:52.134375pt;}
.h54{height:52.150375pt;}
.h27{height:52.154215pt;}
.h3a{height:52.213735pt;}
.h53{height:52.216295pt;}
.h4a{height:52.295655pt;}
.h13{height:52.335975pt;}
.h14{height:52.417255pt;}
.h45{height:52.458910pt;}
.h10{height:52.476135pt;}
.h26{height:52.498590pt;}
.h49{height:52.520990pt;}
.h31{height:52.523158pt;}
.h4b{height:52.538270pt;}
.h3b{height:52.540830pt;}
.h35{height:52.600350pt;}
.h38{height:52.878750pt;}
.h33{height:53.535000pt;}
.h2d{height:54.586538pt;}
.hf{height:55.402500pt;}
.h34{height:57.789420pt;}
.h2{height:59.845926pt;}
.h47{height:61.278667pt;}
.h1c{height:61.280000pt;}
.h48{height:61.440000pt;}
.h44{height:61.920000pt;}
.h9{height:64.500000pt;}
.h1f{height:66.397335pt;}
.hd{height:66.750000pt;}
.h24{height:67.040535pt;}
.h52{height:67.074563pt;}
.h23{height:73.600000pt;}
.h3{height:75.009317pt;}
.h8{height:75.465000pt;}
.h21{height:85.920000pt;}
.h46{height:98.720000pt;}
.h28{height:172.810667pt;}
.h4c{height:323.486667pt;}
.h1d{height:324.960000pt;}
.h0{height:1122.520000pt;}
.h7{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:20.321333pt;}
.w12{width:36.800000pt;}
.wa{width:39.840000pt;}
.w6{width:74.561333pt;}
.w22{width:75.200000pt;}
.w17{width:83.838667pt;}
.w9{width:103.200000pt;}
.w1d{width:103.998667pt;}
.w23{width:121.920000pt;}
.w10{width:131.681333pt;}
.wd{width:132.000000pt;}
.w20{width:149.920000pt;}
.w27{width:150.240000pt;}
.w28{width:150.400000pt;}
.w18{width:150.401333pt;}
.w16{width:150.558667pt;}
.wb{width:156.960000pt;}
.w1b{width:158.720000pt;}
.w1c{width:158.880000pt;}
.w3{width:159.520000pt;}
.w4{width:160.000000pt;}
.w13{width:160.001333pt;}
.wf{width:169.440000pt;}
.wc{width:169.760000pt;}
.w15{width:179.200000pt;}
.w24{width:187.841333pt;}
.w26{width:197.280000pt;}
.w5{width:207.200000pt;}
.w25{width:216.800000pt;}
.w21{width:225.920000pt;}
.we{width:302.081333pt;}
.w2a{width:452.478667pt;}
.w8{width:459.360000pt;}
.w11{width:462.401333pt;}
.w19{width:481.440000pt;}
.w7{width:502.814667pt;}
.w1e{width:527.840000pt;}
.w29{width:538.240000pt;}
.w14{width:603.360000pt;}
.w1f{width:603.680000pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:4.320000pt;}
.x14{left:6.880000pt;}
.x91{left:10.080000pt;}
.x34{left:13.600000pt;}
.x86{left:14.622800pt;}
.x3e{left:15.680000pt;}
.x35{left:17.280000pt;}
.x70{left:18.240000pt;}
.x10{left:23.520000pt;}
.x65{left:25.760000pt;}
.x4f{left:27.360000pt;}
.x78{left:28.320000pt;}
.x7b{left:29.533067pt;}
.x61{left:30.560000pt;}
.x45{left:32.320000pt;}
.x5d{left:33.600000pt;}
.x67{left:34.720000pt;}
.x5f{left:37.280000pt;}
.x33{left:40.480000pt;}
.x7a{left:42.238267pt;}
.x55{left:44.160000pt;}
.x43{left:45.760000pt;}
.x11{left:49.120000pt;}
.x69{left:51.520000pt;}
.x44{left:52.640000pt;}
.x60{left:54.240000pt;}
.x1b{left:55.520000pt;}
.x5c{left:58.240000pt;}
.x53{left:59.360000pt;}
.x58{left:60.480000pt;}
.x8e{left:61.440000pt;}
.x8f{left:64.000000pt;}
.x77{left:65.600000pt;}
.x75{left:67.040000pt;}
.x90{left:68.000000pt;}
.x59{left:72.480000pt;}
.x74{left:75.040000pt;}
.x92{left:76.320000pt;}
.x4d{left:77.760000pt;}
.x4e{left:79.520000pt;}
.x6d{left:81.280000pt;}
.x6e{left:84.000000pt;}
.x50{left:86.560000pt;}
.x2{left:89.800000pt;}
.x1{left:90.708000pt;}
.xb{left:93.310080pt;}
.x6{left:94.400000pt;}
.xa{left:97.134720pt;}
.x4a{left:99.520000pt;}
.x9{left:100.800000pt;}
.x12{left:102.080000pt;}
.x1d{left:103.840000pt;}
.x4{left:106.720000pt;}
.x31{left:107.680000pt;}
.x49{left:109.600000pt;}
.x3a{left:110.880000pt;}
.x8{left:113.280000pt;}
.x22{left:115.966267pt;}
.xd{left:118.370400pt;}
.x1c{left:120.320000pt;}
.x87{left:122.249733pt;}
.x96{left:126.404000pt;}
.x79{left:128.065333pt;}
.x64{left:130.080000pt;}
.x3{left:132.721333pt;}
.x1f{left:133.920000pt;}
.x19{left:134.880000pt;}
.x3c{left:136.800000pt;}
.x20{left:145.045333pt;}
.x21{left:149.898400pt;}
.x30{left:155.520000pt;}
.x6c{left:166.240000pt;}
.x62{left:168.160000pt;}
.x2b{left:169.436000pt;}
.x13{left:170.400000pt;}
.x17{left:177.280000pt;}
.x2e{left:178.880000pt;}
.x2c{left:186.720000pt;}
.x3b{left:189.120000pt;}
.x23{left:191.191200pt;}
.x7d{left:195.146667pt;}
.x89{left:199.661733pt;}
.x3f{left:202.400000pt;}
.x27{left:203.299467pt;}
.x1a{left:205.600000pt;}
.x7e{left:207.011867pt;}
.x6b{left:210.400000pt;}
.x8b{left:211.421867pt;}
.x8d{left:216.480000pt;}
.x8c{left:219.507067pt;}
.x29{left:222.931733pt;}
.x41{left:226.720000pt;}
.x40{left:229.440000pt;}
.x2f{left:232.480000pt;}
.x39{left:234.560000pt;}
.x52{left:236.800000pt;}
.x48{left:238.880000pt;}
.x5b{left:240.960000pt;}
.x73{left:244.438560pt;}
.x54{left:245.600000pt;}
.x93{left:250.400000pt;}
.x6a{left:252.480000pt;}
.x24{left:255.348267pt;}
.x5{left:270.070720pt;}
.x72{left:272.320000pt;}
.x4b{left:275.520000pt;}
.x42{left:283.680000pt;}
.xc{left:286.400000pt;}
.xe{left:288.960000pt;}
.x2a{left:290.722400pt;}
.x37{left:292.960000pt;}
.x6f{left:301.920000pt;}
.x28{left:304.494667pt;}
.x7c{left:308.968667pt;}
.x8a{left:313.168800pt;}
.x5a{left:319.040000pt;}
.x15{left:331.200000pt;}
.x18{left:338.080000pt;}
.x25{left:349.659067pt;}
.x82{left:383.125600pt;}
.x7f{left:388.900800pt;}
.x83{left:394.990800pt;}
.x1e{left:396.794720pt;}
.x84{left:399.400933pt;}
.x94{left:401.440000pt;}
.x63{left:403.840000pt;}
.x85{left:407.486000pt;}
.x88{left:409.271067pt;}
.x66{left:417.920000pt;}
.x26{left:419.481467pt;}
.x4c{left:435.040000pt;}
.x38{left:463.040000pt;}
.x47{left:467.840000pt;}
.x80{left:492.852533pt;}
.x81{left:499.887733pt;}
.x5e{left:500.960000pt;}
.x71{left:508.000000pt;}
.x68{left:525.440000pt;}
.xf{left:539.040000pt;}
.x16{left:545.920000pt;}
.x76{left:548.160000pt;}
.x95{left:552.480000pt;}
.x32{left:595.360000pt;}
.x3d{left:602.400000pt;}
.x46{left:614.720000pt;}
.x56{left:623.520000pt;}
.x57{left:630.400000pt;}
.x51{left:646.400000pt;}
.x2d{left:687.200000pt;}
.x7{left:693.120000pt;}
}


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