
/* 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_e3ff4a1fbf96.woff")format("woff");}.ff1{font-family:ff1;line-height:0.993000;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_21c42fda1ccf.woff")format("woff");}.ff2{font-family:ff2;line-height:0.742000;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_1740421ade6e.woff")format("woff");}.ff3{font-family:ff3;line-height:0.998000;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_509e0c0115bb.woff")format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_998cd1564817.woff")format("woff");}.ff5{font-family:ff5;line-height:0.464000;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_cb943053af27.woff")format("woff");}.ff6{font-family:ff6;line-height:0.739000;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_022afe3d7cfa.woff")format("woff");}.ff7{font-family:ff7;line-height:0.646000;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_8d70e49dbb1f.woff")format("woff");}.ff8{font-family:ff8;line-height:0.995000;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_fc8d0eb93dd1.woff")format("woff");}.ff9{font-family:ff9;line-height:0.739000;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_ee89617b2044.woff")format("woff");}.ffa{font-family:ffa;line-height:0.778000;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_98cf6a59b749.woff")format("woff");}.ffb{font-family:ffb;line-height:0.993000;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_1034e424c627.woff")format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_f45118f26346.woff")format("woff");}.ffd{font-family:ffd;line-height:0.963000;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_6de055085b84.woff")format("woff");}.ffe{font-family:ffe;line-height:0.580000;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_b1284e3ccca0.woff")format("woff");}.fff{font-family:fff;line-height:0.667000;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_d0b2b1ab2b1d.woff")format("woff");}.ff10{font-family:ff10;line-height:0.998000;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_79ae7971be82.woff")format("woff");}.ff11{font-family:ff11;line-height:0.957000;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_12e8fd61cc3e.woff")format("woff");}.ff12{font-family:ff12;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_247b289db513.woff")format("woff");}.ff13{font-family:ff13;line-height:0.678000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_44c70e6f1bb3.woff")format("woff");}.ff14{font-family:ff14;line-height:0.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d{transform:matrix(0.000000,-0.249738,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249738,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249738,0.250000,0.000000,0,0);}
.m21{transform:matrix(0.000000,-0.249742,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249742,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249742,0.250000,0.000000,0,0);}
.m22{transform:matrix(0.000000,-0.249747,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249747,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249747,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249887,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249887,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249887,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.250184,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250184,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250184,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.250185,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250185,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250185,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250662,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250662,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250662,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250663,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250663,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250663,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.204848,-0.143370,0.143442,0.204755,0,0);-ms-transform:matrix(0.204848,-0.143370,0.143442,0.204755,0,0);-webkit-transform:matrix(0.204848,-0.143370,0.143442,0.204755,0,0);}
.m14{transform:matrix(0.204849,-0.143373,0.143439,0.204757,0,0);-ms-transform:matrix(0.204849,-0.143373,0.143439,0.204757,0,0);-webkit-transform:matrix(0.204849,-0.143373,0.143439,0.204757,0,0);}
.mc{transform:matrix(0.231885,-0.093645,0.093691,0.231780,0,0);-ms-transform:matrix(0.231885,-0.093645,0.093691,0.231780,0,0);-webkit-transform:matrix(0.231885,-0.093645,0.093691,0.231780,0,0);}
.md{transform:matrix(0.231889,-0.093644,0.093694,0.231779,0,0);-ms-transform:matrix(0.231889,-0.093644,0.093694,0.231779,0,0);-webkit-transform:matrix(0.231889,-0.093644,0.093694,0.231779,0,0);}
.ma{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);}
.m8{transform:matrix(0.249333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249333,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249817,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);}
.m11{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,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);}
.v14{vertical-align:-26.370000px;}
.v2{vertical-align:-18.708000px;}
.v17{vertical-align:-16.668000px;}
.v6{vertical-align:-6.465840px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:6.461520px;}
.v9{vertical-align:7.484220px;}
.v18{vertical-align:9.524760px;}
.vb{vertical-align:10.884420px;}
.v5{vertical-align:14.624040px;}
.v3{vertical-align:16.668000px;}
.v1{vertical-align:19.047000px;}
.v4{vertical-align:21.088860px;}
.va{vertical-align:22.450200px;}
.v15{vertical-align:23.811000px;}
.v12{vertical-align:26.193420px;}
.v8{vertical-align:27.211800px;}
.v13{vertical-align:29.933820px;}
.v19{vertical-align:33.336360px;}
.v7{vertical-align:36.737400px;}
.vc{vertical-align:39.118200px;}
.v10{vertical-align:47.621820px;}
.vf{vertical-align:57.826800px;}
.v11{vertical-align:66.330420px;}
.vd{vertical-align:75.855000px;}
.ve{vertical-align:94.563600px;}
.lsd{letter-spacing:-1.214100px;}
.ls1a{letter-spacing:-1.174200px;}
.ls17{letter-spacing:-1.162800px;}
.ls8{letter-spacing:-1.145700px;}
.ls14{letter-spacing:-1.128600px;}
.ls18{letter-spacing:-1.122900px;}
.ls16{letter-spacing:-1.117200px;}
.lsc{letter-spacing:-1.111500px;}
.ls12{letter-spacing:-1.105800px;}
.ls10{letter-spacing:-1.100100px;}
.lse{letter-spacing:-1.094394px;}
.lsa{letter-spacing:-1.088700px;}
.ls7{letter-spacing:-1.083000px;}
.ls19{letter-spacing:-1.077300px;}
.ls15{letter-spacing:-1.060194px;}
.ls11{letter-spacing:-1.054500px;}
.ls1d{letter-spacing:-1.043100px;}
.ls9{letter-spacing:-1.037400px;}
.lsf{letter-spacing:-1.008900px;}
.ls13{letter-spacing:-1.003200px;}
.ls1e{letter-spacing:-0.997500px;}
.lsb{letter-spacing:-0.969000px;}
.ls1c{letter-spacing:-0.957600px;}
.ls35{letter-spacing:-0.815400px;}
.ls37{letter-spacing:-0.788400px;}
.ls36{letter-spacing:-0.684180px;}
.ls34{letter-spacing:-0.669600px;}
.lsa1{letter-spacing:-0.651600px;}
.ls99{letter-spacing:-0.648000px;}
.ls87{letter-spacing:-0.456344px;}
.ls98{letter-spacing:-0.090000px;}
.ls6d{letter-spacing:-0.073581px;}
.ls95{letter-spacing:-0.054000px;}
.ls6f{letter-spacing:-0.053946px;}
.ls94{letter-spacing:-0.045000px;}
.ls84{letter-spacing:-0.035869px;}
.ls9d{letter-spacing:-0.035316px;}
.ls9a{letter-spacing:-0.034880px;}
.ls6c{letter-spacing:-0.028615px;}
.ls9e{letter-spacing:-0.026487px;}
.ls9b{letter-spacing:-0.026160px;}
.ls6b{letter-spacing:-0.020439px;}
.ls6a{letter-spacing:-0.016351px;}
.ls69{letter-spacing:-0.013262px;}
.ls9f{letter-spacing:-0.013243px;}
.ls9c{letter-spacing:-0.013080px;}
.ls68{letter-spacing:-0.008865px;}
.lsa0{letter-spacing:-0.008829px;}
.ls96{letter-spacing:-0.008720px;}
.ls8b{letter-spacing:-0.008553px;}
.ls97{letter-spacing:-0.003600px;}
.ls70{letter-spacing:-0.003530px;}
.ls6{letter-spacing:0.000000px;}
.lsa8{letter-spacing:0.000053px;}
.ls8a{letter-spacing:0.002738px;}
.ls8c{letter-spacing:0.004277px;}
.ls86{letter-spacing:0.004454px;}
.ls77{letter-spacing:0.004783px;}
.ls8d{letter-spacing:0.004836px;}
.ls65{letter-spacing:0.007477px;}
.ls85{letter-spacing:0.014509px;}
.ls6e{letter-spacing:0.014953px;}
.ls88{letter-spacing:0.018247px;}
.ls8e{letter-spacing:0.019346px;}
.ls2b{letter-spacing:0.021600px;}
.ls82{letter-spacing:0.022807px;}
.ls76{letter-spacing:0.031176px;}
.ls89{letter-spacing:0.054752px;}
.ls83{letter-spacing:0.057484px;}
.ls2{letter-spacing:0.064800px;}
.ls2d{letter-spacing:0.071801px;}
.ls2e{letter-spacing:0.072281px;}
.ls30{letter-spacing:0.073301px;}
.ls2f{letter-spacing:0.073901px;}
.ls75{letter-spacing:0.089063px;}
.ls72{letter-spacing:0.091800px;}
.ls25{letter-spacing:0.097199px;}
.ls1{letter-spacing:0.140357px;}
.ls4b{letter-spacing:0.147420px;}
.ls2a{letter-spacing:0.151200px;}
.ls93{letter-spacing:0.153600px;}
.lsa5{letter-spacing:0.179412px;}
.ls4f{letter-spacing:0.183600px;}
.ls5f{letter-spacing:0.189000px;}
.ls0{letter-spacing:0.191988px;}
.ls43{letter-spacing:0.210600px;}
.lsa2{letter-spacing:0.234600px;}
.ls59{letter-spacing:0.237000px;}
.ls21{letter-spacing:0.237600px;}
.ls1f{letter-spacing:0.238200px;}
.ls7a{letter-spacing:0.238547px;}
.ls4{letter-spacing:0.238800px;}
.ls38{letter-spacing:0.239400px;}
.lsa3{letter-spacing:0.240000px;}
.ls20{letter-spacing:0.240600px;}
.ls5b{letter-spacing:0.241200px;}
.ls47{letter-spacing:0.242400px;}
.ls3{letter-spacing:0.243000px;}
.ls24{letter-spacing:0.243600px;}
.ls90{letter-spacing:0.259200px;}
.ls5c{letter-spacing:0.302400px;}
.ls74{letter-spacing:1.037840px;}
.ls66{letter-spacing:1.397191px;}
.ls46{letter-spacing:1.650600px;}
.ls63{letter-spacing:1.651200px;}
.ls45{letter-spacing:1.651800px;}
.ls44{letter-spacing:1.656000px;}
.ls5d{letter-spacing:1.657800px;}
.ls42{letter-spacing:1.659600px;}
.ls67{letter-spacing:1.792800px;}
.ls5a{letter-spacing:2.678400px;}
.ls51{letter-spacing:3.284820px;}
.ls32{letter-spacing:8.139462px;}
.ls31{letter-spacing:8.139522px;}
.ls33{letter-spacing:8.479662px;}
.ls2c{letter-spacing:8.479722px;}
.ls7e{letter-spacing:9.302262px;}
.ls7d{letter-spacing:9.302322px;}
.lsa4{letter-spacing:9.335880px;}
.ls92{letter-spacing:9.412671px;}
.ls7f{letter-spacing:9.643062px;}
.lsaa{letter-spacing:10.108710px;}
.ls29{letter-spacing:10.416600px;}
.ls23{letter-spacing:10.465200px;}
.ls73{letter-spacing:10.638000px;}
.ls79{letter-spacing:10.660662px;}
.ls52{letter-spacing:10.692780px;}
.ls27{letter-spacing:10.697400px;}
.ls8f{letter-spacing:10.756800px;}
.lsb1{letter-spacing:10.790250px;}
.ls22{letter-spacing:10.805400px;}
.ls26{letter-spacing:10.902600px;}
.ls3d{letter-spacing:11.804400px;}
.ls54{letter-spacing:11.824200px;}
.ls3b{letter-spacing:11.826000px;}
.ls3f{letter-spacing:11.998800px;}
.ls4a{letter-spacing:12.166200px;}
.ls5e{letter-spacing:12.204000px;}
.ls3a{letter-spacing:12.339000px;}
.ls3e{letter-spacing:12.349800px;}
.lsae{letter-spacing:13.511790px;}
.ls78{letter-spacing:13.812240px;}
.ls7c{letter-spacing:14.078221px;}
.ls5{letter-spacing:14.670390px;}
.ls56{letter-spacing:14.778360px;}
.ls7b{letter-spacing:14.834940px;}
.ls41{letter-spacing:14.887800px;}
.ls40{letter-spacing:14.952600px;}
.ls4c{letter-spacing:15.118560px;}
.ls53{letter-spacing:15.226200px;}
.ls39{letter-spacing:15.228000px;}
.ls58{letter-spacing:15.627600px;}
.ls1b{letter-spacing:15.714900px;}
.ls49{letter-spacing:16.308000px;}
.lsa6{letter-spacing:16.574190px;}
.lsab{letter-spacing:16.574250px;}
.ls71{letter-spacing:16.686000px;}
.lsaf{letter-spacing:16.914930px;}
.lsac{letter-spacing:16.914989px;}
.lsa7{letter-spacing:16.914990px;}
.ls61{letter-spacing:19.008000px;}
.lsad{letter-spacing:19.295730px;}
.ls28{letter-spacing:19.407600px;}
.ls57{letter-spacing:20.561340px;}
.ls64{letter-spacing:21.581940px;}
.lsb0{letter-spacing:22.353330px;}
.ls60{letter-spacing:22.602540px;}
.ls91{letter-spacing:23.117400px;}
.lsa9{letter-spacing:23.375670px;}
.ls4e{letter-spacing:23.452200px;}
.ls80{letter-spacing:26.638200px;}
.ls62{letter-spacing:27.704340px;}
.lsb3{letter-spacing:32.222010px;}
.lsb2{letter-spacing:34.262010px;}
.ls50{letter-spacing:39.037800px;}
.ls48{letter-spacing:180.543000px;}
.ls81{letter-spacing:299.363201px;}
.ls3c{letter-spacing:360.715800px;}
.ls55{letter-spacing:678.828600px;}
.ls4d{letter-spacing:842.721540px;}
.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;}
}
.ws209{word-spacing:-26.692200px;}
.wsd9{word-spacing:-19.461600px;}
.ws318{word-spacing:-16.962988px;}
.ws60{word-spacing:-15.771900px;}
.ws249{word-spacing:-10.859400px;}
.wsd5{word-spacing:-10.751400px;}
.ws247{word-spacing:-10.519200px;}
.ws192{word-spacing:-9.814178px;}
.ws108{word-spacing:-1.846800px;}
.ws2ea{word-spacing:-0.068999px;}
.ws4e{word-spacing:-0.057000px;}
.ws1b{word-spacing:-0.054000px;}
.ws38{word-spacing:-0.047999px;}
.ws191{word-spacing:-0.044323px;}
.ws68{word-spacing:-0.041999px;}
.ws13{word-spacing:-0.037800px;}
.ws193{word-spacing:-0.037384px;}
.wsc{word-spacing:-0.035995px;}
.ws218{word-spacing:-0.033599px;}
.wsec{word-spacing:-0.027997px;}
.ws238{word-spacing:-0.019346px;}
.ws1a5{word-spacing:-0.014953px;}
.ws233{word-spacing:-0.014509px;}
.ws1a6{word-spacing:-0.007477px;}
.ws237{word-spacing:-0.004836px;}
.ws234{word-spacing:-0.004454px;}
.ws6c{word-spacing:0.000000px;}
.ws1a3{word-spacing:0.004088px;}
.ws19e{word-spacing:0.004432px;}
.ws1a2{word-spacing:0.008176px;}
.ws284{word-spacing:0.008720px;}
.ws28b{word-spacing:0.008829px;}
.ws287{word-spacing:0.013080px;}
.ws28a{word-spacing:0.013243px;}
.ws19f{word-spacing:0.013262px;}
.ws1a0{word-spacing:0.016351px;}
.ws1a1{word-spacing:0.020439px;}
.ws286{word-spacing:0.026160px;}
.ws289{word-spacing:0.026487px;}
.ws285{word-spacing:0.034880px;}
.ws288{word-spacing:0.035316px;}
.ws231{word-spacing:0.041053px;}
.ws235{word-spacing:0.050180px;}
.ws236{word-spacing:0.068427px;}
.ws1a4{word-spacing:0.069494px;}
.ws232{word-spacing:0.091228px;}
.ws210{word-spacing:0.429657px;}
.ws26e{word-spacing:0.612000px;}
.ws89{word-spacing:0.615600px;}
.ws7c{word-spacing:0.761400px;}
.ws215{word-spacing:6.596048px;}
.ws277{word-spacing:6.596648px;}
.ws2b8{word-spacing:7.323600px;}
.wsf4{word-spacing:8.084898px;}
.wsf6{word-spacing:8.089098px;}
.wsf8{word-spacing:8.097511px;}
.wsef{word-spacing:8.126862px;}
.wsf3{word-spacing:8.126884px;}
.wsf9{word-spacing:8.215107px;}
.wsf2{word-spacing:8.244490px;}
.wseb{word-spacing:8.324261px;}
.ws139{word-spacing:8.344200px;}
.ws117{word-spacing:8.344800px;}
.wsf0{word-spacing:8.345250px;}
.wsf5{word-spacing:8.349474px;}
.ws123{word-spacing:8.685000px;}
.ws22c{word-spacing:8.961495px;}
.ws22b{word-spacing:9.100670px;}
.ws229{word-spacing:9.100686px;}
.ws22a{word-spacing:9.115041px;}
.ws275{word-spacing:9.153486px;}
.ws273{word-spacing:9.187085px;}
.ws2e6{word-spacing:9.201490px;}
.ws271{word-spacing:9.268684px;}
.ws309{word-spacing:9.383866px;}
.ws336{word-spacing:9.412682px;}
.ws22d{word-spacing:9.436709px;}
.ws22e{word-spacing:9.455897px;}
.ws30a{word-spacing:9.561480px;}
.wse4{word-spacing:9.609480px;}
.wse5{word-spacing:9.623880px;}
.ws2e7{word-spacing:9.662279px;}
.ws30b{word-spacing:9.719879px;}
.ws329{word-spacing:9.969475px;}
.ws199{word-spacing:10.003075px;}
.ws33b{word-spacing:10.118274px;}
.ws328{word-spacing:10.180673px;}
.ws2e3{word-spacing:10.286271px;}
.ws1e6{word-spacing:10.292400px;}
.ws243{word-spacing:10.297800px;}
.ws34e{word-spacing:10.300671px;}
.ws2e4{word-spacing:10.305471px;}
.wscd{word-spacing:10.341000px;}
.wscf{word-spacing:10.362600px;}
.ws19b{word-spacing:10.367870px;}
.ws20e{word-spacing:10.373400px;}
.wsbc{word-spacing:10.400400px;}
.ws2e5{word-spacing:10.420670px;}
.ws333{word-spacing:10.425470px;}
.ws86{word-spacing:10.427400px;}
.ws9b{word-spacing:10.449000px;}
.ws246{word-spacing:10.508400px;}
.ws326{word-spacing:10.521468px;}
.ws87{word-spacing:10.524600px;}
.ws350{word-spacing:10.545468px;}
.ws158{word-spacing:10.551600px;}
.wsd0{word-spacing:10.557000px;}
.ws322{word-spacing:10.569468px;}
.wsa5{word-spacing:10.573200px;}
.wscc{word-spacing:10.578600px;}
.ws1ab{word-spacing:10.584000px;}
.wsa9{word-spacing:10.594800px;}
.ws34f{word-spacing:10.641467px;}
.ws2a0{word-spacing:10.654200px;}
.ws311{word-spacing:10.679866px;}
.ws1c0{word-spacing:10.681200px;}
.ws208{word-spacing:10.708200px;}
.wsbd{word-spacing:10.740600px;}
.ws323{word-spacing:10.742266px;}
.ws177{word-spacing:10.767600px;}
.ws9{word-spacing:10.789200px;}
.ws22f{word-spacing:10.799865px;}
.ws245{word-spacing:10.848600px;}
.ws226{word-spacing:10.910264px;}
.ws2e2{word-spacing:10.934263px;}
.ws228{word-spacing:10.977463px;}
.ws35d{word-spacing:10.991863px;}
.ws312{word-spacing:11.059062px;}
.wsb6{word-spacing:11.059200px;}
.wsb5{word-spacing:11.113200px;}
.ws303{word-spacing:11.116661px;}
.ws15c{word-spacing:11.151000px;}
.ws241{word-spacing:11.167200px;}
.ws21a{word-spacing:11.174260px;}
.ws8c{word-spacing:11.313000px;}
.ws133{word-spacing:11.318400px;}
.ws240{word-spacing:11.323800px;}
.ws8b{word-spacing:11.372400px;}
.ws217{word-spacing:11.414257px;}
.ws35c{word-spacing:11.447857px;}
.ws2ca{word-spacing:11.448000px;}
.ws25c{word-spacing:11.458800px;}
.wsb3{word-spacing:11.491200px;}
.ws2c3{word-spacing:11.502000px;}
.ws16f{word-spacing:11.518200px;}
.ws178{word-spacing:11.534400px;}
.ws1a8{word-spacing:11.539800px;}
.ws219{word-spacing:11.577455px;}
.ws25a{word-spacing:11.588400px;}
.ws16{word-spacing:11.593800px;}
.ws2f4{word-spacing:11.596655px;}
.ws2d5{word-spacing:11.599200px;}
.ws25b{word-spacing:11.626200px;}
.ws2c2{word-spacing:11.637000px;}
.ws213{word-spacing:11.649454px;}
.wsad{word-spacing:11.685600px;}
.ws2f5{word-spacing:11.707054px;}
.ws1a7{word-spacing:11.707200px;}
.ws171{word-spacing:11.777400px;}
.ws282{word-spacing:11.788653px;}
.ws10b{word-spacing:11.831400px;}
.wse1{word-spacing:11.847600px;}
.ws214{word-spacing:11.860694px;}
.wse0{word-spacing:11.896200px;}
.ws109{word-spacing:11.917800px;}
.ws342{word-spacing:11.942251px;}
.ws10a{word-spacing:11.966400px;}
.ws27d{word-spacing:11.990250px;}
.ws137{word-spacing:12.004200px;}
.ws107{word-spacing:12.015000px;}
.ws136{word-spacing:12.074400px;}
.ws2dd{word-spacing:12.086249px;}
.ws2f3{word-spacing:12.105449px;}
.ws18f{word-spacing:12.150000px;}
.ws2ba{word-spacing:12.198600px;}
.wsda{word-spacing:12.204000px;}
.ws31e{word-spacing:12.244647px;}
.ws274{word-spacing:12.262112px;}
.ws1b7{word-spacing:12.290400px;}
.ws2cb{word-spacing:12.339000px;}
.ws27e{word-spacing:12.340646px;}
.ws24e{word-spacing:12.366000px;}
.ws272{word-spacing:12.378848px;}
.ws2f8{word-spacing:12.379045px;}
.ws223{word-spacing:12.403045px;}
.ws75{word-spacing:12.403800px;}
.ws31d{word-spacing:12.422245px;}
.ws26b{word-spacing:12.468600px;}
.ws27b{word-spacing:12.513444px;}
.ws225{word-spacing:12.532643px;}
.ws31a{word-spacing:12.551843px;}
.ws352{word-spacing:12.580643px;}
.wsdd{word-spacing:12.609000px;}
.ws2b2{word-spacing:12.641400px;}
.ws194{word-spacing:12.667042px;}
.ws296{word-spacing:12.673800px;}
.ws1fb{word-spacing:12.679200px;}
.ws351{word-spacing:12.681441px;}
.ws84{word-spacing:12.706200px;}
.ws295{word-spacing:12.733200px;}
.ws2bb{word-spacing:12.738600px;}
.wsde{word-spacing:12.771000px;}
.wsdf{word-spacing:12.792600px;}
.ws7b{word-spacing:12.808800px;}
.wsae{word-spacing:12.841200px;}
.ws85{word-spacing:12.873600px;}
.ws2a7{word-spacing:12.889800px;}
.ws29{word-spacing:12.911400px;}
.ws5b{word-spacing:12.956100px;}
.ws79{word-spacing:12.960000px;}
.ws198{word-spacing:13.022237px;}
.ws31f{word-spacing:13.046237px;}
.ws35e{word-spacing:13.065437px;}
.ws20b{word-spacing:13.073400px;}
.ws196{word-spacing:13.113445px;}
.ws35a{word-spacing:13.147036px;}
.ws6e{word-spacing:13.154400px;}
.ws1d9{word-spacing:13.235400px;}
.ws1db{word-spacing:13.251600px;}
.ws320{word-spacing:13.267034px;}
.ws2a4{word-spacing:13.332600px;}
.ws349{word-spacing:13.363033px;}
.ws252{word-spacing:13.365000px;}
.ws202{word-spacing:13.370400px;}
.ws2b0{word-spacing:13.386600px;}
.ws2a{word-spacing:13.392000px;}
.ws2f2{word-spacing:13.406232px;}
.ws2b1{word-spacing:13.408200px;}
.ws2f1{word-spacing:13.411032px;}
.ws15b{word-spacing:13.449000px;}
.ws2c1{word-spacing:13.451400px;}
.ws321{word-spacing:13.463832px;}
.ws162{word-spacing:13.489200px;}
.ws135{word-spacing:13.510800px;}
.ws2fb{word-spacing:13.559830px;}
.ws257{word-spacing:13.581000px;}
.ws1c4{word-spacing:13.598400px;}
.ws281{word-spacing:13.612630px;}
.ws74{word-spacing:13.651200px;}
.ws71{word-spacing:13.656600px;}
.ws164{word-spacing:13.662000px;}
.ws258{word-spacing:13.667400px;}
.ws35f{word-spacing:13.684629px;}
.ws2a6{word-spacing:13.694400px;}
.ws2fd{word-spacing:13.727828px;}
.ws1ca{word-spacing:13.775400px;}
.ws176{word-spacing:13.786800px;}
.ws157{word-spacing:13.788600px;}
.ws2fe{word-spacing:13.790228px;}
.ws2e0{word-spacing:13.799827px;}
.ws239{word-spacing:13.851000px;}
.ws3b{word-spacing:13.862227px;}
.ws13e{word-spacing:13.872600px;}
.ws9d{word-spacing:13.894200px;}
.ws143{word-spacing:13.905000px;}
.ws1cb{word-spacing:13.910400px;}
.ws13f{word-spacing:13.921200px;}
.ws220{word-spacing:13.948626px;}
.ws11d{word-spacing:13.969800px;}
.wsa1{word-spacing:13.996800px;}
.ws73{word-spacing:14.013000px;}
.ws221{word-spacing:14.039824px;}
.ws10c{word-spacing:14.040000px;}
.ws9f{word-spacing:14.050800px;}
.ws24{word-spacing:14.056200px;}
.ws81{word-spacing:14.169600px;}
.ws10d{word-spacing:14.180400px;}
.ws316{word-spacing:14.183823px;}
.ws1e2{word-spacing:14.185800px;}
.ws1d5{word-spacing:14.191200px;}
.ws33d{word-spacing:14.193423px;}
.ws22{word-spacing:14.212800px;}
.wsb4{word-spacing:14.278800px;}
.ws83{word-spacing:14.299200px;}
.wsd2{word-spacing:14.320800px;}
.ws26c{word-spacing:14.326200px;}
.ws21f{word-spacing:14.346999px;}
.wsa0{word-spacing:14.347800px;}
.ws1d8{word-spacing:14.353200px;}
.ws317{word-spacing:14.361420px;}
.ws33c{word-spacing:14.380620px;}
.ws2c0{word-spacing:14.396400px;}
.ws227{word-spacing:14.420048px;}
.ws2b{word-spacing:14.482800px;}
.ws24f{word-spacing:14.515200px;}
.ws6a{word-spacing:14.519193px;}
.ws70{word-spacing:14.520600px;}
.ws268{word-spacing:14.531400px;}
.wsfc{word-spacing:14.535992px;}
.ws160{word-spacing:14.542200px;}
.wsfd{word-spacing:14.561192px;}
.ws161{word-spacing:14.574600px;}
.ws250{word-spacing:14.585400px;}
.ws2b5{word-spacing:14.596200px;}
.ws67{word-spacing:14.628391px;}
.ws186{word-spacing:14.655600px;}
.ws6b{word-spacing:14.708190px;}
.ws2d6{word-spacing:14.709600px;}
.ws2b3{word-spacing:14.715000px;}
.ws2d0{word-spacing:14.720400px;}
.ws88{word-spacing:14.738760px;}
.ws2d7{word-spacing:14.779800px;}
.ws32f{word-spacing:14.822215px;}
.ws251{word-spacing:14.844600px;}
.ws188{word-spacing:14.855400px;}
.ws169{word-spacing:14.871600px;}
.wse2{word-spacing:14.920200px;}
.ws2b6{word-spacing:14.922000px;}
.ws216{word-spacing:14.945188px;}
.ws2d4{word-spacing:14.958000px;}
.wsf7{word-spacing:15.052585px;}
.wsa4{word-spacing:15.055200px;}
.ws19c{word-spacing:15.076612px;}
.ws310{word-spacing:15.086211px;}
.ws12b{word-spacing:15.406200px;}
.ws128{word-spacing:15.481800px;}
.ws23d{word-spacing:15.519600px;}
.ws129{word-spacing:15.562800px;}
.ws197{word-spacing:15.624988px;}
.ws224{word-spacing:15.663512px;}
.ws360{word-spacing:15.667004px;}
.ws267{word-spacing:15.670800px;}
.ws195{word-spacing:15.706038px;}
.ws20d{word-spacing:15.843600px;}
.ws361{word-spacing:15.844602px;}
.ws175{word-spacing:15.859800px;}
.ws7d{word-spacing:15.870600px;}
.ws63{word-spacing:15.874500px;}
.wsfe{word-spacing:15.892200px;}
.ws13b{word-spacing:15.924600px;}
.ws7f{word-spacing:15.962400px;}
.ws13c{word-spacing:15.989400px;}
.ws2ff{word-spacing:16.036619px;}
.ws1cd{word-spacing:16.043400px;}
.ws23a{word-spacing:16.054200px;}
.ws2a1{word-spacing:16.065000px;}
.ws2af{word-spacing:16.075800px;}
.ws2e1{word-spacing:16.118199px;}
.ws276{word-spacing:16.121048px;}
.ws64{word-spacing:16.125300px;}
.ws2f0{word-spacing:16.132598px;}
.ws2a3{word-spacing:16.151400px;}
.ws2f6{word-spacing:16.166198px;}
.ws2f9{word-spacing:16.199798px;}
.ws302{word-spacing:16.199816px;}
.ws44{word-spacing:16.204597px;}
.ws339{word-spacing:16.209422px;}
.ws32c{word-spacing:16.218997px;}
.ws23e{word-spacing:16.221600px;}
.ws27c{word-spacing:16.223797px;}
.ws29b{word-spacing:16.227000px;}
.wsc1{word-spacing:16.232400px;}
.ws15f{word-spacing:16.254000px;}
.ws33a{word-spacing:16.266998px;}
.ws2ec{word-spacing:16.276597px;}
.ws15d{word-spacing:16.281000px;}
.ws41{word-spacing:16.286196px;}
.ws315{word-spacing:16.291005px;}
.ws8a{word-spacing:16.294140px;}
.ws35{word-spacing:16.295796px;}
.wsc6{word-spacing:16.297200px;}
.ws30c{word-spacing:16.300596px;}
.ws343{word-spacing:16.310196px;}
.ws2e8{word-spacing:16.314996px;}
.ws261{word-spacing:16.318800px;}
.ws354{word-spacing:16.324569px;}
.ws313{word-spacing:16.324582px;}
.ws332{word-spacing:16.324596px;}
.ws341{word-spacing:16.324629px;}
.ws230{word-spacing:16.329396px;}
.ws1b6{word-spacing:16.329600px;}
.wse9{word-spacing:16.348596px;}
.ws3a{word-spacing:16.353396px;}
.ws1d3{word-spacing:16.356600px;}
.ws32{word-spacing:16.362995px;}
.ws2ce{word-spacing:16.383600px;}
.ws2f7{word-spacing:16.401395px;}
.ws33{word-spacing:16.415795px;}
.ws2de{word-spacing:16.420595px;}
.ws46{word-spacing:16.425395px;}
.ws32e{word-spacing:16.430195px;}
.ws338{word-spacing:16.434997px;}
.wse6{word-spacing:16.439794px;}
.ws314{word-spacing:16.439804px;}
.ws33e{word-spacing:16.439820px;}
.ws32b{word-spacing:16.468584px;}
.ws340{word-spacing:16.468592px;}
.ws2e9{word-spacing:16.473394px;}
.ws262{word-spacing:16.486200px;}
.ws62{word-spacing:16.490100px;}
.ws36{word-spacing:16.502194px;}
.ws330{word-spacing:16.507043px;}
.ws40{word-spacing:16.516594px;}
.ws337{word-spacing:16.521417px;}
.ws29e{word-spacing:16.524000px;}
.ws45{word-spacing:16.526193px;}
.ws356{word-spacing:16.531008px;}
.ws331{word-spacing:16.535756px;}
.ws2fc{word-spacing:16.535809px;}
.ws348{word-spacing:16.535835px;}
.ws31{word-spacing:16.550193px;}
.ws1b4{word-spacing:16.551000px;}
.ws2cc{word-spacing:16.556400px;}
.ws43{word-spacing:16.564593px;}
.ws1b5{word-spacing:16.572600px;}
.ws1d2{word-spacing:16.599600px;}
.ws263{word-spacing:16.605000px;}
.ws34a{word-spacing:16.617414px;}
.ws2a5{word-spacing:16.622400px;}
.ws327{word-spacing:16.641392px;}
.ws65{word-spacing:16.649700px;}
.ws163{word-spacing:16.658400px;}
.ws346{word-spacing:16.665385px;}
.ws301{word-spacing:16.703791px;}
.ws242{word-spacing:16.718400px;}
.wsea{word-spacing:16.732591px;}
.ws300{word-spacing:16.751791px;}
.ws283{word-spacing:16.761390px;}
.ws7a{word-spacing:16.777380px;}
.ws294{word-spacing:16.826400px;}
.ws19d{word-spacing:16.842989px;}
.ws34{word-spacing:16.857389px;}
.ws264{word-spacing:16.858800px;}
.ws2fa{word-spacing:16.866989px;}
.ws80{word-spacing:16.875000px;}
.ws207{word-spacing:16.885800px;}
.ws32d{word-spacing:16.890989px;}
.ws2c4{word-spacing:16.912800px;}
.ws37{word-spacing:16.996588px;}
.wsff{word-spacing:17.031600px;}
.ws1af{word-spacing:17.064000px;}
.ws39{word-spacing:17.102186px;}
.ws1c8{word-spacing:17.112600px;}
.ws6f{word-spacing:17.120160px;}
.ws2c6{word-spacing:17.128800px;}
.ws1c7{word-spacing:17.204400px;}
.ws20c{word-spacing:17.231400px;}
.ws222{word-spacing:17.247062px;}
.ws1ee{word-spacing:17.269200px;}
.ws126{word-spacing:17.274600px;}
.wsdb{word-spacing:17.280000px;}
.ws23{word-spacing:17.340000px;}
.ws122{word-spacing:17.431200px;}
.wse{word-spacing:17.442000px;}
.ws3d{word-spacing:17.442982px;}
.ws1f0{word-spacing:17.458200px;}
.ws14{word-spacing:17.469000px;}
.ws319{word-spacing:17.481381px;}
.ws144{word-spacing:17.490000px;}
.ws61{word-spacing:17.533200px;}
.ws127{word-spacing:17.571600px;}
.ws12{word-spacing:17.609400px;}
.ws206{word-spacing:17.631000px;}
.ws1b0{word-spacing:17.636400px;}
.ws1d7{word-spacing:17.643000px;}
.ws125{word-spacing:17.663400px;}
.ws187{word-spacing:17.679000px;}
.ws1d4{word-spacing:17.680200px;}
.ws11{word-spacing:17.685000px;}
.ws2cf{word-spacing:17.706600px;}
.ws2d8{word-spacing:17.722800px;}
.ws1ae{word-spacing:17.803800px;}
.ws104{word-spacing:17.830200px;}
.ws16c{word-spacing:17.868600px;}
.ws99{word-spacing:17.895600px;}
.ws1cc{word-spacing:17.917200px;}
.wsaa{word-spacing:17.933400px;}
.wsed{word-spacing:17.982994px;}
.ws2b4{word-spacing:17.983200px;}
.ws119{word-spacing:18.019200px;}
.ws105{word-spacing:18.019800px;}
.ws1e1{word-spacing:18.063000px;}
.ws3f{word-spacing:18.119773px;}
.ws9c{word-spacing:18.160200px;}
.ws2d2{word-spacing:18.165600px;}
.ws1d0{word-spacing:18.208800px;}
.ws1c9{word-spacing:18.273600px;}
.ws266{word-spacing:18.349200px;}
.ws33f{word-spacing:18.407770px;}
.ws69{word-spacing:18.441000px;}
.ws5f{word-spacing:18.479394px;}
.ws57{word-spacing:18.507894px;}
.ws58{word-spacing:18.519300px;}
.ws120{word-spacing:18.549000px;}
.ws29a{word-spacing:18.559800px;}
.ws118{word-spacing:18.613800px;}
.ws5e{word-spacing:18.621900px;}
.wsb1{word-spacing:18.667800px;}
.ws42{word-spacing:18.678600px;}
.ws18b{word-spacing:18.684000px;}
.ws2bf{word-spacing:18.694800px;}
.ws103{word-spacing:18.700200px;}
.ws31c{word-spacing:18.705366px;}
.ws1e0{word-spacing:18.711000px;}
.ws11e{word-spacing:18.738000px;}
.ws1fa{word-spacing:18.743400px;}
.wse3{word-spacing:18.765000px;}
.ws180{word-spacing:18.770400px;}
.ws1ff{word-spacing:18.775800px;}
.wsb2{word-spacing:18.781200px;}
.ws200{word-spacing:18.802800px;}
.ws14e{word-spacing:18.819000px;}
.ws308{word-spacing:18.830165px;}
.ws2c9{word-spacing:18.889200px;}
.wsc2{word-spacing:18.954000px;}
.wsc3{word-spacing:18.959400px;}
.ws140{word-spacing:18.997200px;}
.ws2ae{word-spacing:19.003800px;}
.ws142{word-spacing:19.018800px;}
.ws5c{word-spacing:19.026600px;}
.wsc4{word-spacing:19.029600px;}
.ws2ee{word-spacing:19.036562px;}
.wsd8{word-spacing:19.051200px;}
.ws16e{word-spacing:19.072800px;}
.ws31b{word-spacing:19.084561px;}
.ws2ef{word-spacing:19.151761px;}
.ws1eb{word-spacing:19.164600px;}
.ws121{word-spacing:19.229400px;}
.ws159{word-spacing:19.230000px;}
.ws6d{word-spacing:19.240200px;}
.ws3c{word-spacing:19.257359px;}
.ws2d9{word-spacing:19.267200px;}
.ws1ec{word-spacing:19.294200px;}
.ws1ea{word-spacing:19.299600px;}
.ws16a{word-spacing:19.321200px;}
.ws82{word-spacing:19.355340px;}
.ws141{word-spacing:19.364400px;}
.ws29c{word-spacing:19.381200px;}
.ws5d{word-spacing:19.391400px;}
.ws205{word-spacing:19.423800px;}
.ws3e{word-spacing:19.425357px;}
.ws9e{word-spacing:19.429200px;}
.ws55{word-spacing:19.448394px;}
.ws2bc{word-spacing:19.467000px;}
.ws290{word-spacing:19.472400px;}
.ws25f{word-spacing:19.477800px;}
.ws32a{word-spacing:19.482956px;}
.ws138{word-spacing:19.504800px;}
.ws15e{word-spacing:19.571400px;}
.ws28c{word-spacing:19.580400px;}
.ws28f{word-spacing:19.612800px;}
.ws260{word-spacing:19.634400px;}
.ws16b{word-spacing:19.656000px;}
.ws19a{word-spacing:19.660554px;}
.ws56{word-spacing:19.676400px;}
.ws2a2{word-spacing:19.683600px;}
.wsd7{word-spacing:19.704600px;}
.ws111{word-spacing:19.742400px;}
.wsbf{word-spacing:19.834200px;}
.ws21e{word-spacing:19.838152px;}
.ws7e{word-spacing:19.838580px;}
.ws110{word-spacing:19.845000px;}
.ws156{word-spacing:19.877400px;}
.ws23b{word-spacing:19.888200px;}
.ws93{word-spacing:19.931400px;}
.ws95{word-spacing:19.947600px;}
.ws21c{word-spacing:19.962950px;}
.ws244{word-spacing:19.974600px;}
.ws26a{word-spacing:20.050200px;}
.wsc8{word-spacing:20.104200px;}
.ws279{word-spacing:20.106949px;}
.ws96{word-spacing:20.120400px;}
.ws278{word-spacing:20.150148px;}
.ws1fc{word-spacing:20.185200px;}
.ws256{word-spacing:20.201400px;}
.ws2ad{word-spacing:20.217600px;}
.ws255{word-spacing:20.244600px;}
.ws170{word-spacing:20.250000px;}
.ws21b{word-spacing:20.250947px;}
.ws2a8{word-spacing:20.325600px;}
.ws2d3{word-spacing:20.331000px;}
.ws52{word-spacing:20.371800px;}
.ws4b{word-spacing:20.383200px;}
.ws50{word-spacing:20.417400px;}
.ws91{word-spacing:20.455200px;}
.ws4f{word-spacing:20.468694px;}
.ws203{word-spacing:20.525400px;}
.ws4a{word-spacing:20.525700px;}
.ws124{word-spacing:20.551800px;}
.ws51{word-spacing:20.628300px;}
.wsa6{word-spacing:20.655000px;}
.ws47{word-spacing:20.691000px;}
.wsc9{word-spacing:20.719800px;}
.ws59{word-spacing:20.822100px;}
.ws27a{word-spacing:20.831740px;}
.ws1c6{word-spacing:20.838600px;}
.ws49{word-spacing:20.844900px;}
.ws5a{word-spacing:20.890500px;}
.ws1ad{word-spacing:20.892000px;}
.ws4c{word-spacing:20.913300px;}
.ws53{word-spacing:20.919000px;}
.ws30d{word-spacing:20.927738px;}
.ws48{word-spacing:20.947500px;}
.ws345{word-spacing:20.970938px;}
.ws54{word-spacing:20.976000px;}
.ws98{word-spacing:20.979000px;}
.ws30f{word-spacing:20.980538px;}
.ws30e{word-spacing:21.042937px;}
.ws1e9{word-spacing:21.070800px;}
.ws179{word-spacing:21.081600px;}
.ws17a{word-spacing:21.114000px;}
.ws4d{word-spacing:21.169800px;}
.ws334{word-spacing:21.191735px;}
.ws362{word-spacing:21.249334px;}
.ws363{word-spacing:21.292544px;}
.ws259{word-spacing:21.324600px;}
.ws2c7{word-spacing:21.335400px;}
.ws335{word-spacing:21.431732px;}
.ws97{word-spacing:21.475800px;}
.ws1f2{word-spacing:21.492000px;}
.ws1f3{word-spacing:21.497400px;}
.wse8{word-spacing:21.498931px;}
.ws1f1{word-spacing:21.578400px;}
.ws1d6{word-spacing:21.610200px;}
.ws8f{word-spacing:21.627000px;}
.ws25e{word-spacing:21.681000px;}
.ws77{word-spacing:21.713400px;}
.ws20f{word-spacing:21.740400px;}
.wse7{word-spacing:21.762928px;}
.ws1b9{word-spacing:21.832200px;}
.ws18a{word-spacing:21.912600px;}
.ws1da{word-spacing:21.950400px;}
.ws34c{word-spacing:21.964525px;}
.wsab{word-spacing:21.988800px;}
.ws149{word-spacing:22.015800px;}
.ws297{word-spacing:22.026600px;}
.ws14d{word-spacing:22.080600px;}
.ws34d{word-spacing:22.103724px;}
.ws2df{word-spacing:22.156523px;}
.ws78{word-spacing:22.161600px;}
.ws1ba{word-spacing:22.172400px;}
.ws11f{word-spacing:22.290600px;}
.ws201{word-spacing:22.291200px;}
.wsac{word-spacing:22.302000px;}
.ws14b{word-spacing:22.307400px;}
.ws16d{word-spacing:22.405200px;}
.ws1c5{word-spacing:22.442400px;}
.ws347{word-spacing:22.487719px;}
.ws13a{word-spacing:22.592400px;}
.ws24c{word-spacing:22.685400px;}
.ws100{word-spacing:22.696200px;}
.ws265{word-spacing:22.750200px;}
.ws2b9{word-spacing:22.755600px;}
.ws2b7{word-spacing:22.782600px;}
.ws11a{word-spacing:22.798800px;}
.ws102{word-spacing:22.815000px;}
.ws10f{word-spacing:22.847400px;}
.ws11b{word-spacing:22.858200px;}
.ws304{word-spacing:22.876514px;}
.ws147{word-spacing:22.906800px;}
.ws146{word-spacing:22.928400px;}
.ws12a{word-spacing:22.971600px;}
.ws27f{word-spacing:23.006112px;}
.ws324{word-spacing:23.010912px;}
.ws11c{word-spacing:23.014800px;}
.ws325{word-spacing:23.130911px;}
.ws306{word-spacing:23.135711px;}
.ws1e7{word-spacing:23.139000px;}
.ws18e{word-spacing:23.166000px;}
.ws355{word-spacing:23.169310px;}
.ws18d{word-spacing:23.193000px;}
.ws18c{word-spacing:23.198400px;}
.ws28{word-spacing:23.203800px;}
.wsdc{word-spacing:23.220000px;}
.ws12e{word-spacing:23.236200px;}
.ws305{word-spacing:23.255653px;}
.ws21d{word-spacing:23.264048px;}
.ws1{word-spacing:23.292116px;}
.ws1ce{word-spacing:23.311800px;}
.ws132{word-spacing:23.349600px;}
.ws1c{word-spacing:23.376600px;}
.ws1d{word-spacing:23.392800px;}
.ws130{word-spacing:23.398200px;}
.wsc0{word-spacing:23.527800px;}
.wsc5{word-spacing:23.533200px;}
.ws112{word-spacing:23.538600px;}
.ws1e{word-spacing:23.544000px;}
.ws151{word-spacing:23.614200px;}
.ws29d{word-spacing:23.651400px;}
.ws114{word-spacing:23.716800px;}
.ws134{word-spacing:23.878800px;}
.ws90{word-spacing:23.920380px;}
.ws152{word-spacing:23.927400px;}
.ws2eb{word-spacing:23.928992px;}
.ws2cd{word-spacing:23.991600px;}
.ws14f{word-spacing:24.032491px;}
.ws6{word-spacing:24.039391px;}
.ws10{word-spacing:24.057000px;}
.ws1bc{word-spacing:24.073200px;}
.wsf{word-spacing:24.089400px;}
.ws145{word-spacing:24.121800px;}
.ws2dc{word-spacing:24.156690px;}
.ws2ed{word-spacing:24.170490px;}
.ws280{word-spacing:24.201297px;}
.ws92{word-spacing:24.263160px;}
.ws2c5{word-spacing:24.331800px;}
.ws183{word-spacing:24.359400px;}
.ws1bd{word-spacing:24.602400px;}
.ws185{word-spacing:24.607800px;}
.ws184{word-spacing:24.618600px;}
.ws1fd{word-spacing:24.678000px;}
.ws1fe{word-spacing:24.715800px;}
.ws1be{word-spacing:24.796800px;}
.wsbe{word-spacing:24.840000px;}
.ws66{word-spacing:24.875793px;}
.ws15{word-spacing:24.926400px;}
.ws1ef{word-spacing:25.012200px;}
.ws24a{word-spacing:25.029000px;}
.ws10e{word-spacing:25.034400px;}
.ws148{word-spacing:25.163400px;}
.ws34b{word-spacing:25.367683px;}
.ws8e{word-spacing:25.396200px;}
.ws1f8{word-spacing:25.417800px;}
.ws14c{word-spacing:25.466400px;}
.ws72{word-spacing:25.558200px;}
.ws101{word-spacing:25.654200px;}
.ws25d{word-spacing:25.720200px;}
.wscb{word-spacing:25.758000px;}
.ws1f9{word-spacing:25.774200px;}
.ws1df{word-spacing:25.957800px;}
.ws344{word-spacing:26.073274px;}
.ws269{word-spacing:26.098200px;}
.ws8d{word-spacing:26.222400px;}
.ws17b{word-spacing:26.298000px;}
.ws153{word-spacing:26.357400px;}
.ws8{word-spacing:26.368200px;}
.ws2da{word-spacing:26.438400px;}
.ws154{word-spacing:26.454600px;}
.ws131{word-spacing:26.487000px;}
.ws2db{word-spacing:26.497800px;}
.ws12f{word-spacing:26.524200px;}
.ws20a{word-spacing:26.584200px;}
.ws17d{word-spacing:26.638200px;}
.ws113{word-spacing:26.713200px;}
.ws1d1{word-spacing:26.767800px;}
.ws94{word-spacing:26.816400px;}
.ws1cf{word-spacing:26.929800px;}
.ws24d{word-spacing:27.027000px;}
.wsb8{word-spacing:27.064800px;}
.ws2d1{word-spacing:27.081000px;}
.ws1dd{word-spacing:27.118800px;}
.ws298{word-spacing:27.145800px;}
.ws1de{word-spacing:27.151200px;}
.wsb7{word-spacing:27.156600px;}
.ws76{word-spacing:27.248400px;}
.ws293{word-spacing:27.297000px;}
.ws357{word-spacing:27.436457px;}
.ws1f7{word-spacing:27.437400px;}
.ws299{word-spacing:27.491400px;}
.ws1f4{word-spacing:27.545400px;}
.ws1f5{word-spacing:27.588600px;}
.ws204{word-spacing:27.815400px;}
.wsa2{word-spacing:27.928800px;}
.ws167{word-spacing:28.441800px;}
.ws181{word-spacing:28.598400px;}
.ws168{word-spacing:28.609200px;}
.wsca{word-spacing:28.663200px;}
.ws1e8{word-spacing:28.753800px;}
.ws182{word-spacing:28.765800px;}
.ws2a9{word-spacing:28.771200px;}
.ws19{word-spacing:28.776600px;}
.ws2be{word-spacing:28.787400px;}
.ws2aa{word-spacing:28.819800px;}
.ws1a{word-spacing:28.836000px;}
.ws2ac{word-spacing:28.911600px;}
.ws2bd{word-spacing:28.992600px;}
.ws115{word-spacing:29.008800px;}
.wsa{word-spacing:29.035800px;}
.ws116{word-spacing:29.176200px;}
.ws3{word-spacing:29.181600px;}
.ws29f{word-spacing:29.208600px;}
.ws4{word-spacing:29.240400px;}
.ws1b1{word-spacing:29.284200px;}
.ws5{word-spacing:29.290800px;}
.ws24b{word-spacing:29.322000px;}
.ws14a{word-spacing:29.434200px;}
.ws1b3{word-spacing:29.521800px;}
.wsd4{word-spacing:29.538000px;}
.wsd6{word-spacing:29.543400px;}
.wsba{word-spacing:29.629800px;}
.wsb9{word-spacing:29.651400px;}
.ws17c{word-spacing:29.774400px;}
.wsbb{word-spacing:29.791800px;}
.ws23c{word-spacing:29.808000px;}
.wsaf{word-spacing:29.856600px;}
.wsb0{word-spacing:30.029400px;}
.wsa8{word-spacing:30.061800px;}
.ws2e{word-spacing:30.213000px;}
.ws1dc{word-spacing:30.266400px;}
.ws253{word-spacing:30.391200px;}
.ws254{word-spacing:30.472200px;}
.wsa7{word-spacing:30.483000px;}
.ws1bf{word-spacing:30.655800px;}
.ws17e{word-spacing:30.677400px;}
.ws1c1{word-spacing:30.688200px;}
.ws1ac{word-spacing:30.834000px;}
.ws1a9{word-spacing:30.893400px;}
.ws165{word-spacing:31.163400px;}
.ws166{word-spacing:31.314600px;}
.ws1ed{word-spacing:31.390200px;}
.ws2c8{word-spacing:31.557600px;}
.ws2ab{word-spacing:31.929600px;}
.ws155{word-spacing:31.935600px;}
.ws35b{word-spacing:32.164398px;}
.ws292{word-spacing:32.238000px;}
.ws1b2{word-spacing:32.269800px;}
.ws172{word-spacing:32.427000px;}
.ws291{word-spacing:32.513400px;}
.ws174{word-spacing:32.535000px;}
.ws307{word-spacing:32.620392px;}
.ws12c{word-spacing:33.042600px;}
.ws1e3{word-spacing:33.085800px;}
.ws12d{word-spacing:33.188400px;}
.ws28d{word-spacing:33.242400px;}
.ws1e5{word-spacing:33.296400px;}
.ws189{word-spacing:33.382800px;}
.wsd3{word-spacing:33.814800px;}
.ws1b8{word-spacing:33.863400px;}
.ws27{word-spacing:33.939000px;}
.ws359{word-spacing:33.988375px;}
.ws358{word-spacing:34.055574px;}
.ws23f{word-spacing:34.619400px;}
.ws18{word-spacing:35.154000px;}
.ws17{word-spacing:35.186400px;}
.ws1f6{word-spacing:35.216400px;}
.ws28e{word-spacing:35.380800px;}
.ws173{word-spacing:35.897400px;}
.ws1e4{word-spacing:36.047400px;}
.ws9a{word-spacing:36.104400px;}
.ws2f{word-spacing:37.427400px;}
.ws30{word-spacing:37.443600px;}
.ws1aa{word-spacing:38.278800px;}
.ws17f{word-spacing:39.452400px;}
.ws2c{word-spacing:40.273200px;}
.ws25{word-spacing:40.721400px;}
.ws26{word-spacing:40.937400px;}
.ws0{word-spacing:41.928210px;}
.ws13d{word-spacing:42.271200px;}
.ws2{word-spacing:42.276211px;}
.ws248{word-spacing:45.165600px;}
.ws353{word-spacing:45.897026px;}
.wsb{word-spacing:48.259800px;}
.wsd{word-spacing:48.567600px;}
.wsce{word-spacing:50.036400px;}
.ws1c2{word-spacing:50.058000px;}
.ws1c3{word-spacing:50.117400px;}
.ws2d{word-spacing:50.252400px;}
.ws1bb{word-spacing:50.301000px;}
.wsa3{word-spacing:54.837000px;}
.ws1f{word-spacing:55.350000px;}
.ws20{word-spacing:55.706400px;}
.wsc7{word-spacing:55.841400px;}
.wsfa{word-spacing:56.090199px;}
.ws211{word-spacing:56.524087px;}
.wsee{word-spacing:57.845786px;}
.ws150{word-spacing:62.850600px;}
.wsf1{word-spacing:66.174255px;}
.ws7{word-spacing:73.612800px;}
.ws15a{word-spacing:74.952000px;}
.wsd1{word-spacing:94.489200px;}
.ws21{word-spacing:108.010800px;}
.ws106{word-spacing:139.759200px;}
.ws26d{word-spacing:141.187104px;}
.ws26f{word-spacing:143.730000px;}
.ws190{word-spacing:145.587757px;}
.ws212{word-spacing:1107.772200px;}
.ws270{word-spacing:1132.417800px;}
.wsfb{word-spacing:2023.713809px;}
._1e{margin-left:-19.407600px;}
._10{margin-left:-16.986000px;}
._11{margin-left:-15.942900px;}
._1d{margin-left:-10.697400px;}
._34{margin-left:-3.515256px;}
._14{margin-left:-2.153466px;}
._a{margin-left:-1.060787px;}
._d{width:1.100100px;}
._5{width:2.641800px;}
._2d{width:3.789000px;}
._3a{width:6.561672px;}
._3d{width:8.703144px;}
._e{width:10.744500px;}
._16{width:12.291653px;}
._2f{width:13.377000px;}
._12{width:14.421587px;}
._7{width:15.562800px;}
._c{width:17.159785px;}
._f{width:18.639000px;}
._b{width:20.476544px;}
._18{width:22.403436px;}
._1a{width:23.581800px;}
._17{width:25.172533px;}
._3c{width:26.208000px;}
._3{width:27.534600px;}
._15{width:28.762399px;}
._2{width:30.357600px;}
._8{width:31.882800px;}
._31{width:33.096600px;}
._2e{width:34.306200px;}
._35{width:35.326800px;}
._6{width:36.390600px;}
._9{width:38.588400px;}
._4{width:40.029787px;}
._1{width:41.256206px;}
._0{width:43.092215px;}
._3b{width:46.402200px;}
._1c{width:51.526800px;}
._19{width:56.224800px;}
._1f{width:59.231762px;}
._1b{width:60.825600px;}
._23{width:62.595906px;}
._30{width:64.098000px;}
._28{width:66.308653px;}
._36{width:71.915642px;}
._25{width:73.654348px;}
._22{width:76.422108px;}
._24{width:77.736689px;}
._37{width:87.508198px;}
._2b{width:96.728818px;}
._27{width:101.268953px;}
._21{width:111.470608px;}
._2c{width:114.990157px;}
._38{width:116.939897px;}
._39{width:123.111060px;}
._2a{width:154.788789px;}
._29{width:158.530935px;}
._33{width:171.791083px;}
._32{width:196.335187px;}
._13{width:227.310235px;}
._26{width:244.625505px;}
._20{width:249.413437px;}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:22.477800px;}
.fs1e{font-size:26.686800px;}
.fs17{font-size:27.373272px;}
.fs20{font-size:27.375931px;}
.fsb{font-size:27.996600px;}
.fsc{font-size:29.398200px;}
.fsa{font-size:33.598800px;}
.fsf{font-size:35.302800px;}
.fs18{font-size:35.868600px;}
.fs1b{font-size:35.869200px;}
.fs4{font-size:35.995200px;}
.fs25{font-size:36.000000px;}
.fs12{font-size:37.383600px;}
.fs5{font-size:37.800000px;}
.fs11{font-size:40.878600px;}
.fs15{font-size:41.967000px;}
.fs9{font-size:41.999400px;}
.fs21{font-size:42.766200px;}
.fs24{font-size:43.600200px;}
.fsd{font-size:44.128200px;}
.fs28{font-size:44.145000px;}
.fs10{font-size:44.206200px;}
.fse{font-size:44.323200px;}
.fs1d{font-size:44.542200px;}
.fs23{font-size:45.000000px;}
.fs16{font-size:45.614170px;}
.fs1f{font-size:45.618326px;}
.fs27{font-size:47.308800px;}
.fs26{font-size:47.359200px;}
.fs22{font-size:47.824800px;}
.fs1a{font-size:47.825400px;}
.fs2a{font-size:47.900400px;}
.fs29{font-size:47.949600px;}
.fs6{font-size:47.999400px;}
.fs19{font-size:48.021600px;}
.fs1c{font-size:48.364800px;}
.fs3{font-size:54.000000px;}
.fs14{font-size:55.069411px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:68.999400px;}
.fs8{font-size:71.999400px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y57{bottom:39.883860px;}
.y56{bottom:54.850350px;}
.y2c7{bottom:100.599885px;}
.y274{bottom:100.601295px;}
.y3e{bottom:100.601550px;}
.y26e{bottom:100.601625px;}
.y2a3{bottom:100.602150px;}
.yc7{bottom:100.602195px;}
.y14f{bottom:100.602750px;}
.y123{bottom:100.603350px;}
.y1d6{bottom:100.604550px;}
.y124{bottom:106.639350px;}
.y2c6{bottom:114.886905px;}
.y273{bottom:115.652700px;}
.y26d{bottom:115.653030px;}
.yc6{bottom:115.653600px;}
.y1aa{bottom:117.184800px;}
.y14e{bottom:117.269850px;}
.y122{bottom:117.355500px;}
.y1d5{bottom:117.356700px;}
.y2a2{bottom:117.357150px;}
.y3d{bottom:123.135990px;}
.y2c5{bottom:129.088740px;}
.y272{bottom:130.620105px;}
.y26c{bottom:130.620450px;}
.y14d{bottom:132.150945px;}
.y1a9{bottom:133.767900px;}
.y121{bottom:134.022600px;}
.y14c{bottom:134.022900px;}
.y1d4{bottom:134.108850px;}
.y2a1{bottom:135.129900px;}
.y3c{bottom:136.657425px;}
.y2c4{bottom:143.375760px;}
.y271{bottom:145.587525px;}
.y3b{bottom:150.093660px;}
.y2fb{bottom:150.517965px;}
.y337{bottom:150.519450px;}
.y120{bottom:150.689700px;}
.y11e{bottom:150.690300px;}
.y1d3{bottom:150.861000px;}
.y1a8{bottom:151.455600px;}
.y2a0{bottom:151.882050px;}
.y14b{bottom:153.836850px;}
.y11f{bottom:156.642450px;}
.y2c3{bottom:157.662780px;}
.y270{bottom:160.638930px;}
.y3a{bottom:163.615095px;}
.y336{bottom:165.911655px;}
.y2fa{bottom:165.995370px;}
.y11d{bottom:167.357400px;}
.y1d2{bottom:167.613150px;}
.y1a7{bottom:167.953200px;}
.y29f{bottom:168.549150px;}
.y14a{bottom:170.506950px;}
.y2c2{bottom:171.864600px;}
.y26f{bottom:175.606350px;}
.y39{bottom:177.136515px;}
.y335{bottom:181.218660px;}
.y2f9{bottom:181.387590px;}
.y1a6{bottom:183.854895px;}
.y11c{bottom:184.025850px;}
.y1d1{bottom:184.365300px;}
.y1cf{bottom:184.367100px;}
.y29e{bottom:185.301300px;}
.y1a5{bottom:185.641050px;}
.y149{bottom:188.279700px;}
.y1d0{bottom:190.318050px;}
.y38{bottom:190.657950px;}
.y2c1{bottom:195.930600px;}
.y334{bottom:196.610865px;}
.y2f8{bottom:196.779795px;}
.y29d{bottom:199.332195px;}
.y11b{bottom:200.607900px;}
.y1ce{bottom:201.119250px;}
.y29c{bottom:201.968850px;}
.y1a4{bottom:202.648695px;}
.y148{bottom:204.946800px;}
.y1a3{bottom:205.371150px;}
.y333{bottom:212.003070px;}
.y2f7{bottom:212.172000px;}
.y37{bottom:213.108465px;}
.y1cd{bottom:217.871400px;}
.y29b{bottom:219.827100px;}
.y1a2{bottom:223.058850px;}
.y36{bottom:226.629900px;}
.y332{bottom:227.395290px;}
.y2f6{bottom:227.564205px;}
.y11a{bottom:230.626650px;}
.y1cc{bottom:234.538500px;}
.y1ca{bottom:234.540900px;}
.y1a1{bottom:236.919645px;}
.y29a{bottom:237.601650px;}
.y147{bottom:237.942150px;}
.y1a0{bottom:239.641350px;}
.y41{bottom:240.150510px;}
.y1cb{bottom:240.576300px;}
.y2c0{bottom:242.616930px;}
.y331{bottom:242.787495px;}
.y2f5{bottom:243.041610px;}
.y35{bottom:249.079590px;}
.y1c9{bottom:251.293050px;}
.y40{bottom:253.586745px;}
.y19f{bottom:254.522745px;}
.y299{bottom:255.374400px;}
.y2bf{bottom:256.903950px;}
.y19e{bottom:257.244450px;}
.y330{bottom:258.094500px;}
.y2f4{bottom:258.433815px;}
.y34{bottom:262.601025px;}
.y3f{bottom:267.108165px;}
.y1c8{bottom:268.045200px;}
.y96{bottom:269.830500px;}
.yc5{bottom:269.834100px;}
.y298{bottom:272.126550px;}
.y19d{bottom:272.211045px;}
.y32f{bottom:273.484740px;}
.y2f3{bottom:273.826035px;}
.y19c{bottom:274.933950px;}
.y33{bottom:276.122460px;}
.y146{bottom:279.441150px;}
.y2be{bottom:280.884900px;}
.y119{bottom:281.821050px;}
.y1c7{bottom:284.797350px;}
.y95{bottom:286.497600px;}
.y93{bottom:286.499400px;}
.yc4{bottom:286.586250px;}
.y297{bottom:288.794700px;}
.y32e{bottom:288.876945px;}
.y2f2{bottom:289.303440px;}
.y32{bottom:289.643880px;}
.y94{bottom:292.450350px;}
.y19b{bottom:292.536600px;}
.y118{bottom:295.766895px;}
.y145{bottom:296.108250px;}
.y117{bottom:298.488600px;}
.y1c6{bottom:301.549500px;}
.y31{bottom:303.080115px;}
.y92{bottom:303.081450px;}
.yc3{bottom:303.338400px;}
.y32d{bottom:304.269150px;}
.y2f1{bottom:304.695645px;}
.y296{bottom:306.652500px;}
.y19a{bottom:309.118650px;}
.y144{bottom:312.860400px;}
.y116{bottom:316.261350px;}
.y114{bottom:316.261950px;}
.y30{bottom:316.601550px;}
.y32c{bottom:319.661355px;}
.y91{bottom:319.748550px;}
.yc2{bottom:320.090550px;}
.y2f0{bottom:320.173050px;}
.y115{bottom:322.214100px;}
.y295{bottom:323.319600px;}
.y293{bottom:323.320050px;}
.y199{bottom:325.700700px;}
.y197{bottom:325.701300px;}
.y2bd{bottom:327.655800px;}
.y143{bottom:327.656445px;}
.y294{bottom:329.357400px;}
.y142{bottom:329.528850px;}
.y198{bottom:331.738500px;}
.y113{bottom:332.929350px;}
.y1c4{bottom:334.544850px;}
.y1c3{bottom:334.548900px;}
.y32b{bottom:334.968360px;}
.y2ef{bottom:335.478180px;}
.y90{bottom:336.330600px;}
.y8e{bottom:336.334350px;}
.yc1{bottom:336.842700px;}
.y1c5{bottom:340.582650px;}
.y292{bottom:341.177850px;}
.y290{bottom:341.179050px;}
.y196{bottom:342.283800px;}
.y8f{bottom:342.368400px;}
.y2bc{bottom:344.152800px;}
.y291{bottom:347.130600px;}
.y141{bottom:349.342800px;}
.y112{bottom:349.426545px;}
.y32a{bottom:350.360580px;}
.y2ee{bottom:350.955585px;}
.y111{bottom:351.212700px;}
.y8d{bottom:353.001450px;}
.yc0{bottom:353.679900px;}
.y2f{bottom:353.763600px;}
.y2d{bottom:353.766600px;}
.y28f{bottom:357.846150px;}
.y2e{bottom:359.716350px;}
.y195{bottom:359.972100px;}
.y2bb{bottom:360.649800px;}
.y329{bottom:365.752785px;}
.y140{bottom:366.009900px;}
.y2ed{bottom:366.347790px;}
.y230{bottom:367.710750px;}
.y8c{bottom:369.583500px;}
.y2c{bottom:370.348650px;}
.ybf{bottom:370.432050px;}
.y110{bottom:371.027100px;}
.y28e{bottom:374.598900px;}
.y2ba{bottom:377.148150px;}
.y194{bottom:377.575800px;}
.y1c2{bottom:377.833950px;}
.y13f{bottom:380.890995px;}
.y328{bottom:381.144990px;}
.y2ec{bottom:381.739995px;}
.y13e{bottom:382.762950px;}
.y22f{bottom:384.462900px;}
.y22d{bottom:384.464100px;}
.ybd{bottom:384.888150px;}
.y8b{bottom:386.250600px;}
.y2b{bottom:386.930700px;}
.ybe{bottom:387.184200px;}
.ybc{bottom:387.185400px;}
.y10f{bottom:388.799850px;}
.y10d{bottom:388.801050px;}
.y22e{bottom:390.415650px;}
.y28d{bottom:392.372100px;}
.y2b9{bottom:393.646500px;}
.y1c1{bottom:394.586100px;}
.y10e{bottom:394.752600px;}
.y193{bottom:395.263500px;}
.y327{bottom:396.537195px;}
.y2eb{bottom:397.132200px;}
.y22c{bottom:401.216250px;}
.y13d{bottom:402.576900px;}
.y8a{bottom:402.832650px;}
.y2a{bottom:403.512750px;}
.ybb{bottom:403.937550px;}
.y10c{bottom:406.488750px;}
.y28c{bottom:410.145300px;}
.y1c0{bottom:411.338250px;}
.y326{bottom:411.844200px;}
.y192{bottom:411.845550px;}
.y190{bottom:411.846150px;}
.y2ea{bottom:412.524405px;}
.y13c{bottom:417.457995px;}
.y191{bottom:417.798300px;}
.y22b{bottom:417.968400px;}
.y229{bottom:417.973800px;}
.y13b{bottom:419.244150px;}
.y89{bottom:419.499750px;}
.y29{bottom:420.181200px;}
.yba{bottom:420.689700px;}
.yb8{bottom:420.690900px;}
.y10b{bottom:421.369845px;}
.y10a{bottom:423.156000px;}
.y22a{bottom:423.921150px;}
.y28b{bottom:425.281845px;}
.yb9{bottom:426.642450px;}
.y325{bottom:427.236405px;}
.y2b8{bottom:427.752150px;}
.y2e9{bottom:428.001810px;}
.y28a{bottom:428.005350px;}
.y1bf{bottom:428.090400px;}
.y18f{bottom:428.343150px;}
.y18d{bottom:428.343750px;}
.y87{bottom:433.870800px;}
.y18e{bottom:434.380950px;}
.y228{bottom:434.725950px;}
.y88{bottom:436.081800px;}
.y86{bottom:436.082400px;}
.y28{bottom:436.763250px;}
.y13a{bottom:437.272095px;}
.yb7{bottom:437.443050px;}
.y139{bottom:439.143450px;}
.y109{bottom:441.183945px;}
.y324{bottom:442.628625px;}
.y108{bottom:442.970100px;}
.y2e8{bottom:443.394030px;}
.y53{bottom:443.902350px;}
.y1be{bottom:444.842550px;}
.y18b{bottom:444.925800px;}
.y2b7{bottom:445.354800px;}
.y84{bottom:450.453450px;}
.y18c{bottom:450.963750px;}
.y227{bottom:451.478100px;}
.y85{bottom:452.749500px;}
.y83{bottom:452.750100px;}
.y27{bottom:453.345300px;}
.yb6{bottom:454.195200px;}
.y138{bottom:456.321195px;}
.y137{bottom:457.171395px;}
.y323{bottom:458.020830px;}
.y2e7{bottom:458.871435px;}
.y136{bottom:458.958750px;}
.y18a{bottom:461.507850px;}
.y1bd{bottom:461.594700px;}
.y2b6{bottom:461.851800px;}
.y289{bottom:462.021300px;}
.y107{bottom:462.869100px;}
.y105{bottom:462.871500px;}
.y52{bottom:463.376400px;}
.y81{bottom:467.121150px;}
.y244{bottom:467.130000px;}
.y226{bottom:468.230250px;}
.y106{bottom:468.821850px;}
.y82{bottom:469.332150px;}
.y80{bottom:469.332750px;}
.y26{bottom:469.927350px;}
.y24{bottom:469.928700px;}
.yb5{bottom:470.692800px;}
.yb3{bottom:470.693400px;}
.y322{bottom:473.413035px;}
.y2e6{bottom:474.178440px;}
.y25{bottom:475.965150px;}
.y189{bottom:476.220195px;}
.yb4{bottom:476.645550px;}
.y188{bottom:478.094550px;}
.y1bc{bottom:478.346850px;}
.y2b5{bottom:478.348800px;}
.y135{bottom:478.857750px;}
.y104{bottom:480.559200px;}
.y51{bottom:482.935950px;}
.y7e{bottom:483.703800px;}
.y243{bottom:483.967200px;}
.y225{bottom:484.982400px;}
.y7f{bottom:485.999850px;}
.y7d{bottom:486.004200px;}
.y23{bottom:486.595800px;}
.yb2{bottom:487.445550px;}
.yb0{bottom:487.446750px;}
.y321{bottom:488.720040px;}
.y2e5{bottom:489.655845px;}
.y1bb{bottom:492.377745px;}
.yb1{bottom:493.398300px;}
.y2b4{bottom:494.845800px;}
.y1ba{bottom:495.100050px;}
.y134{bottom:495.524850px;}
.y103{bottom:497.226300px;}
.y187{bottom:497.823450px;}
.y242{bottom:500.804400px;}
.y224{bottom:501.734550px;}
.y50{bottom:502.410000px;}
.y7c{bottom:502.586250px;}
.y22{bottom:503.177850px;}
.y20{bottom:503.178900px;}
.y320{bottom:504.112245px;}
.yaf{bottom:504.198900px;}
.y288{bottom:504.540900px;}
.y2e4{bottom:505.048050px;}
.y21{bottom:509.130600px;}
.y2b3{bottom:511.342800px;}
.y133{bottom:512.191950px;}
.y131{bottom:512.192550px;}
.y1b9{bottom:512.872800px;}
.y102{bottom:513.893400px;}
.y186{bottom:514.405500px;}
.y241{bottom:517.556550px;}
.y132{bottom:518.229750px;}
.y223{bottom:518.486700px;}
.y7b{bottom:519.253350px;}
.y31f{bottom:519.504465px;}
.y2e3{bottom:520.440255px;}
.y1f{bottom:520.866600px;}
.yac{bottom:520.950300px;}
.yae{bottom:520.951050px;}
.y287{bottom:521.208000px;}
.y4f{bottom:521.884050px;}
.yad{bottom:526.903800px;}
.y1b8{bottom:526.903845px;}
.y2b2{bottom:527.839800px;}
.y130{bottom:528.861300px;}
.y1b7{bottom:529.627950px;}
.y101{bottom:530.561550px;}
.y185{bottom:530.987550px;}
.y240{bottom:534.393750px;}
.y31e{bottom:534.896670px;}
.y222{bottom:535.238850px;}
.y2e2{bottom:535.832475px;}
.y7a{bottom:535.835400px;}
.y1e{bottom:537.449100px;}
.yab{bottom:537.703800px;}
.ya9{bottom:537.710400px;}
.y286{bottom:537.960150px;}
.y4e{bottom:541.358100px;}
.y2b1{bottom:541.700595px;}
.yaa{bottom:543.656550px;}
.y2b0{bottom:544.338000px;}
.y12f{bottom:546.634050px;}
.y1b6{bottom:547.485750px;}
.y184{bottom:547.569600px;}
.y100{bottom:548.249250px;}
.y31d{bottom:550.288875px;}
.y23f{bottom:551.145900px;}
.y2e1{bottom:551.309880px;}
.y221{bottom:551.991000px;}
.y79{bottom:552.502500px;}
.ya8{bottom:554.462550px;}
.y285{bottom:554.627250px;}
.y1d{bottom:555.137400px;}
.y4d{bottom:560.917650px;}
.y2af{bottom:561.940650px;}
.yff{bottom:562.195095px;}
.y12e{bottom:563.301150px;}
.y183{bottom:564.066600px;}
.y1b5{bottom:564.237900px;}
.yfe{bottom:564.916800px;}
.y31c{bottom:565.595880px;}
.y2e0{bottom:566.702085px;}
.y23e{bottom:567.983100px;}
.y220{bottom:568.743150px;}
.y78{bottom:569.084550px;}
.ya7{bottom:571.214700px;}
.y284{bottom:571.379400px;}
.y282{bottom:571.382400px;}
.y1c{bottom:572.825550px;}
.y2ae{bottom:575.801445px;}
.y283{bottom:577.332150px;}
.y2ad{bottom:578.439450px;}
.y12d{bottom:580.053300px;}
.y4c{bottom:580.391700px;}
.y182{bottom:580.647750px;}
.yfd{bottom:580.818495px;}
.y31b{bottom:580.988085px;}
.y1b4{bottom:580.990050px;}
.y2df{bottom:582.094290px;}
.yfc{bottom:582.689250px;}
.y23d{bottom:584.735250px;}
.y21e{bottom:585.242550px;}
.y77{bottom:585.751650px;}
.ya6{bottom:587.966850px;}
.y281{bottom:588.049500px;}
.y1b{bottom:590.513700px;}
.y21f{bottom:591.278550px;}
.y12c{bottom:594.850095px;}
.y2ac{bottom:596.042100px;}
.y31a{bottom:596.380305px;}
.y12b{bottom:596.721300px;}
.y1b3{bottom:597.487050px;}
.y2de{bottom:597.571695px;}
.y181{bottom:598.335450px;}
.y4b{bottom:599.865750px;}
.y23c{bottom:601.572450px;}
.y21d{bottom:601.994700px;}
.y76{bottom:602.333700px;}
.ya5{bottom:604.719000px;}
.y280{bottom:604.801650px;}
.y18{bottom:608.200050px;}
.y1a{bottom:608.201400px;}
.y1b2{bottom:611.517945px;}
.y319{bottom:611.772510px;}
.y2ab{bottom:612.539100px;}
.y2dd{bottom:612.963900px;}
.y19{bottom:614.154150px;}
.y1b1{bottom:614.240250px;}
.y12a{bottom:614.749245px;}
.y180{bottom:614.918850px;}
.y129{bottom:616.535250px;}
.y127{bottom:616.535400px;}
.yf8{bottom:616.620300px;}
.yfb{bottom:617.130450px;}
.y23b{bottom:618.324600px;}
.y21c{bottom:618.746850px;}
.y4a{bottom:619.425300px;}
.ya4{bottom:621.471150px;}
.y27f{bottom:621.553800px;}
.y128{bottom:622.573050px;}
.yfa{bottom:623.678595px;}
.y17{bottom:624.783450px;}
.y2aa{bottom:626.399895px;}
.y318{bottom:627.164715px;}
.y2dc{bottom:628.441305px;}
.y2a9{bottom:629.036550px;}
.y17f{bottom:631.503300px;}
.y1b0{bottom:632.013000px;}
.y75{bottom:632.352600px;}
.yf9{bottom:632.862795px;}
.yf7{bottom:633.712995px;}
.y126{bottom:634.563495px;}
.y23a{bottom:635.161800px;}
.y21b{bottom:635.499000px;}
.yf6{bottom:635.584050px;}
.y125{bottom:636.434100px;}
.y27e{bottom:638.220900px;}
.ya3{bottom:638.223300px;}
.y49{bottom:638.899350px;}
.y16{bottom:641.367150px;}
.y317{bottom:642.471720px;}
.y2db{bottom:643.748325px;}
.y2a8{bottom:643.917945px;}
.y2a7{bottom:646.639200px;}
.y1af{bottom:648.765600px;}
.y17e{bottom:649.105950px;}
.y239{bottom:651.999000px;}
.y219{bottom:652.255950px;}
.y27d{bottom:654.973050px;}
.ya2{bottom:654.975450px;}
.y27b{bottom:654.976650px;}
.y316{bottom:657.863925px;}
.y21a{bottom:658.289550px;}
.y48{bottom:658.373400px;}
.y15{bottom:659.054850px;}
.y13{bottom:659.055450px;}
.y2da{bottom:659.225730px;}
.y27c{bottom:660.925800px;}
.y17d{bottom:662.966745px;}
.y14{bottom:665.092800px;}
.yf5{bottom:665.263290px;}
.y17c{bottom:665.688450px;}
.y1ae{bottom:666.623400px;}
.y1ac{bottom:666.625350px;}
.yf4{bottom:667.133745px;}
.y238{bottom:668.751150px;}
.y218{bottom:669.008100px;}
.yf3{bottom:669.856200px;}
.ya1{bottom:671.472450px;}
.y27a{bottom:671.643750px;}
.y1ad{bottom:672.576150px;}
.y315{bottom:673.256130px;}
.y2d9{bottom:674.617935px;}
.y12{bottom:675.637500px;}
.y10{bottom:675.638250px;}
.y2a6{bottom:677.763600px;}
.y47{bottom:677.932950px;}
.y11{bottom:681.675450px;}
.y74{bottom:682.186800px;}
.y17b{bottom:683.376150px;}
.y1ab{bottom:683.377500px;}
.y237{bottom:685.588350px;}
.y217{bottom:685.760250px;}
.y17a{bottom:687.626730px;}
.ya0{bottom:688.224600px;}
.y279{bottom:688.395900px;}
.y314{bottom:688.648350px;}
.yf2{bottom:689.159850px;}
.y2d8{bottom:690.095340px;}
.yf{bottom:692.305350px;}
.yd{bottom:692.307750px;}
.y46{bottom:697.407000px;}
.ye{bottom:698.258100px;}
.y73{bottom:698.768850px;}
.y236{bottom:702.340500px;}
.y216{bottom:702.512400px;}
.y179{bottom:702.594150px;}
.y313{bottom:704.040555px;}
.y9f{bottom:704.976750px;}
.y278{bottom:705.063000px;}
.y2d7{bottom:705.487545px;}
.yf1{bottom:705.826950px;}
.yc{bottom:708.889800px;}
.y72{bottom:715.437150px;}
.y45{bottom:716.881050px;}
.y178{bottom:717.561555px;}
.y211{bottom:717.817695px;}
.y235{bottom:719.177700px;}
.y215{bottom:719.264550px;}
.y312{bottom:719.347560px;}
.y2d6{bottom:720.964950px;}
.y9e{bottom:721.728900px;}
.y277{bottom:721.815150px;}
.y2a5{bottom:722.240400px;}
.yb{bottom:725.471850px;}
.y210{bottom:730.402710px;}
.y177{bottom:732.612975px;}
.y20f{bottom:732.869595px;}
.y71{bottom:733.124850px;}
.y311{bottom:734.739765px;}
.yf0{bottom:735.590550px;}
.y233{bottom:735.932700px;}
.y214{bottom:736.016700px;}
.y44{bottom:736.440600px;}
.y276{bottom:738.482250px;}
.y9d{bottom:738.482700px;}
.y2a4{bottom:738.737400px;}
.y234{bottom:741.968250px;}
.ya{bottom:742.053900px;}
.yef{bottom:745.965150px;}
.y176{bottom:747.580380px;}
.y20e{bottom:748.601745px;}
.y70{bottom:749.709150px;}
.y310{bottom:750.131970px;}
.y213{bottom:752.768850px;}
.y232{bottom:752.769900px;}
.y275{bottom:755.234400px;}
.y43{bottom:755.914650px;}
.y9c{bottom:756.340500px;}
.y9{bottom:758.721000px;}
.y175{bottom:762.547800px;}
.y20d{bottom:764.419095px;}
.y30f{bottom:765.524190px;}
.y6f{bottom:767.481900px;}
.y2d5{bottom:769.266750px;}
.y212{bottom:769.521000px;}
.y231{bottom:769.522050px;}
.y9b{bottom:773.092650px;}
.y42{bottom:775.388700px;}
.y20c{bottom:777.769710px;}
.y20b{bottom:780.151245px;}
.y30e{bottom:780.916395px;}
.yed{bottom:781.512300px;}
.y6e{bottom:784.063950px;}
.y2d4{bottom:784.232970px;}
.y159{bottom:787.458600px;}
.yee{bottom:787.464450px;}
.y8{bottom:788.654850px;}
.y99{bottom:789.846600px;}
.y20a{bottom:794.352870px;}
.y9a{bottom:795.883200px;}
.y209{bottom:795.968250px;}
.y30d{bottom:796.216695px;}
.yec{bottom:796.308345px;}
.yeb{bottom:798.179550px;}
.y2ca{bottom:798.773625px;}
.y2d3{bottom:799.284375px;}
.y6d{bottom:800.731050px;}
.y26a{bottom:801.665760px;}
.y26b{bottom:802.431720px;}
.y269{bottom:804.047100px;}
.y150{bottom:806.482950px;}
.y98{bottom:806.598750px;}
.y30c{bottom:811.608900px;}
.y2c9{bottom:813.741030px;}
.y151{bottom:814.974315px;}
.y162{bottom:814.974450px;}
.y6c{bottom:817.313550px;}
.yea{bottom:817.993500px;}
.y200{bottom:821.065800px;}
.y1e5{bottom:822.390300px;}
.y97{bottom:823.352100px;}
.y2d2{bottom:824.710860px;}
.y30b{bottom:827.001120px;}
.y266{bottom:828.479550px;}
.y2c8{bottom:828.708450px;}
.y1e6{bottom:828.732300px;}
.y251{bottom:829.474650px;}
.y15a{bottom:830.058450px;}
.y163{bottom:832.336695px;}
.y267{bottom:832.674000px;}
.y252{bottom:833.616000px;}
.ye9{bottom:834.661650px;}
.y69{bottom:835.001100px;}
.y6b{bottom:835.001250px;}
.y152{bottom:838.123980px;}
.y2d1{bottom:838.997880px;}
.y1f2{bottom:840.298800px;}
.y6a{bottom:841.039050px;}
.y265{bottom:841.346850px;}
.y250{bottom:842.216850px;}
.y30a{bottom:842.393325px;}
.y1d7{bottom:842.862150px;}
.y7{bottom:844.948800px;}
.y164{bottom:849.695625px;}
.y1f3{bottom:849.827115px;}
.ye8{bottom:851.413800px;}
.y257{bottom:852.202350px;}
.y1d8{bottom:852.208200px;}
.y68{bottom:852.773850px;}
.y245{bottom:852.899850px;}
.y2d0{bottom:853.284900px;}
.y309{bottom:857.785530px;}
.y153{bottom:861.270315px;}
.y1e8{bottom:866.352150px;}
.y165{bottom:867.054555px;}
.ye7{bottom:867.997200px;}
.y67{bottom:869.358450px;}
.y1f4{bottom:870.337785px;}
.y6{bottom:870.461700px;}
.y261{bottom:871.021200px;}
.y256{bottom:871.649850px;}
.y308{bottom:873.092535px;}
.y2cf{bottom:877.265850px;}
.y258{bottom:878.472225px;}
.y246{bottom:878.845200px;}
.ydb{bottom:879.985950px;}
.y1e7{bottom:881.515500px;}
.y166{bottom:884.416785px;}
.y154{bottom:884.417760px;}
.y260{bottom:884.540700px;}
.ye6{bottom:884.664300px;}
.y255{bottom:885.002700px;}
.y66{bottom:887.046150px;}
.y307{bottom:888.484740px;}
.y172{bottom:890.757000px;}
.y1f5{bottom:890.904045px;}
.yda{bottom:894.953490px;}
.y5{bottom:895.974600px;}
.y1d9{bottom:896.967060px;}
.y25f{bottom:898.063050px;}
.y254{bottom:898.358700px;}
.ye5{bottom:901.331400px;}
.y167{bottom:901.712835px;}
.y65{bottom:903.713250px;}
.y63{bottom:903.713700px;}
.y306{bottom:903.876960px;}
.y206{bottom:904.323750px;}
.y173{bottom:904.794000px;}
.y155{bottom:907.502325px;}
.y64{bottom:909.666000px;}
.y1f6{bottom:911.417925px;}
.y25e{bottom:911.581050px;}
.y253{bottom:911.710050px;}
.y247{bottom:912.909075px;}
.y259{bottom:912.961350px;}
.yd9{bottom:914.427555px;}
.y168{bottom:919.075080px;}
.y305{bottom:919.269165px;}
.y62{bottom:921.401850px;}
.y24c{bottom:926.534850px;}
.y262{bottom:927.473850px;}
.ye4{bottom:928.715100px;}
.y156{bottom:930.648675px;}
.y1f7{bottom:931.984185px;}
.yd8{bottom:933.986685px;}
.y304{bottom:934.661370px;}
.y1dd{bottom:935.927100px;}
.y169{bottom:936.435120px;}
.ye3{bottom:938.154300px;}
.y61{bottom:939.089550px;}
.y5f{bottom:939.093150px;}
.y2ce{bottom:940.024380px;}
.y15b{bottom:940.521750px;}
.y1da{bottom:941.784660px;}
.y24e{bottom:943.759170px;}
.y4{bottom:943.935090px;}
.y60{bottom:945.127200px;}
.y1e2{bottom:945.914400px;}
.y24d{bottom:946.581300px;}
.y248{bottom:946.972950px;}
.y1fe{bottom:947.014650px;}
.y25a{bottom:947.450475px;}
.y263{bottom:948.618000px;}
.y1e1{bottom:948.902700px;}
.y303{bottom:949.968375px;}
.y15c{bottom:951.814800px;}
.y171{bottom:952.491645px;}
.y1f8{bottom:952.493790px;}
.y1df{bottom:952.575345px;}
.yd7{bottom:953.460750px;}
.y157{bottom:953.795010px;}
.y16a{bottom:953.795145px;}
.y2cd{bottom:954.396600px;}
.y5e{bottom:956.780850px;}
.y264{bottom:957.769650px;}
.y24f{bottom:958.745400px;}
.y1ff{bottom:961.155150px;}
.y1de{bottom:961.469400px;}
.y1e0{bottom:961.699350px;}
.y16f{bottom:963.392850px;}
.y1e3{bottom:964.557900px;}
.y302{bottom:965.360580px;}
.y16e{bottom:966.642810px;}
.y170{bottom:966.643200px;}
.y16b{bottom:971.156280px;}
.y1ee{bottom:972.338550px;}
.yd6{bottom:972.934815px;}
.y207{bottom:973.003650px;}
.y1f9{bottom:973.005525px;}
.y5d{bottom:973.447950px;}
.ye2{bottom:973.616100px;}
.y158{bottom:976.942470px;}
.y1e4{bottom:977.465100px;}
.y16d{bottom:978.224250px;}
.y2cc{bottom:978.377700px;}
.y3{bottom:978.462255px;}
.y301{bottom:980.752800px;}
.y249{bottom:981.036825px;}
.y25b{bottom:981.939600px;}
.y1db{bottom:986.540370px;}
.y16c{bottom:988.516320px;}
.y5c{bottom:990.030000px;}
.ye1{bottom:990.283800px;}
.y204{bottom:991.420950px;}
.y1fa{bottom:993.571785px;}
.yd0{bottom:993.854850px;}
.y161{bottom:995.413500px;}
.yd5{bottom:995.470650px;}
.yd3{bottom:995.555550px;}
.y300{bottom:996.145005px;}
.yca{bottom:996.150345px;}
.ycc{bottom:996.150900px;}
.y1f0{bottom:996.564045px;}
.y1ec{bottom:1000.393155px;}
.ycd{bottom:1000.828200px;}
.y1ed{bottom:1004.292450px;}
.y1ef{bottom:1004.437500px;}
.ycf{bottom:1005.930270px;}
.y5b{bottom:1006.697100px;}
.y203{bottom:1006.877250px;}
.yd2{bottom:1006.951125px;}
.yce{bottom:1007.376285px;}
.ye0{bottom:1007.971500px;}
.yde{bottom:1007.972100px;}
.y160{bottom:1008.033000px;}
.y1f1{bottom:1008.145050px;}
.yd4{bottom:1008.907155px;}
.yd1{bottom:1008.992490px;}
.yc9{bottom:1009.672050px;}
.y1eb{bottom:1009.732200px;}
.y2ff{bottom:1011.537210px;}
.y2{bottom:1012.902420px;}
.ydf{bottom:1014.009150px;}
.y1fb{bottom:1014.082455px;}
.ycb{bottom:1014.264150px;}
.y24a{bottom:1015.047825px;}
.y25c{bottom:1016.376975px;}
.y1ea{bottom:1019.533905px;}
.y15f{bottom:1020.652350px;}
.y202{bottom:1022.331150px;}
.y5a{bottom:1023.279150px;}
.ydd{bottom:1024.639200px;}
.y2fe{bottom:1026.844215px;}
.y2cb{bottom:1030.591950px;}
.y1dc{bottom:1031.300280px;}
.y1e9{bottom:1033.182750px;}
.y15e{bottom:1033.272750px;}
.y1fc{bottom:1034.649795px;}
.y201{bottom:1037.787450px;}
.y59{bottom:1039.946700px;}
.y2fd{bottom:1042.236420px;}
.yc8{bottom:1042.667400px;}
.y208{bottom:1045.105800px;}
.y15d{bottom:1045.893900px;}
.y1{bottom:1047.429600px;}
.y24b{bottom:1049.112825px;}
.y25d{bottom:1050.866100px;}
.ydc{bottom:1054.657950px;}
.y268{bottom:1055.052300px;}
.y205{bottom:1055.052600px;}
.y1fd{bottom:1055.160465px;}
.y2fc{bottom:1057.628625px;}
.y58{bottom:1057.634400px;}
.y174{bottom:1059.067800px;}
.y55{bottom:1098.368250px;}
.y54{bottom:1124.560350px;}
.h4c{height:16.566139px;}
.h60{height:19.668172px;}
.h59{height:20.174101px;}
.h62{height:20.176061px;}
.h1c{height:20.689487px;}
.h1d{height:20.997450px;}
.h1f{height:21.725270px;}
.h49{height:26.018164px;}
.h55{height:26.047831px;}
.h5a{height:26.435158px;}
.h5d{height:26.435600px;}
.h70{height:26.532000px;}
.h6{height:26.600453px;}
.h56{height:26.708438px;}
.h19{height:26.996400px;}
.h4b{height:27.551713px;}
.h2c{height:27.934200px;}
.h4a{height:30.127528px;}
.h57{height:30.929679px;}
.hf{height:31.037557px;}
.h1b{height:31.499550px;}
.h63{height:31.518689px;}
.h6f{height:32.133347px;}
.h46{height:32.522483px;}
.h73{height:32.534865px;}
.h48{height:32.579969px;}
.h5f{height:32.827601px;}
.h6e{height:33.165000px;}
.h58{height:33.617644px;}
.h61{height:33.620706px;}
.h72{height:34.866586px;}
.h71{height:34.903730px;}
.h64{height:35.246878px;}
.h5c{height:35.247320px;}
.h75{height:35.302595px;}
.h74{height:35.338855px;}
.h5b{height:35.391919px;}
.ha{height:35.471557px;}
.he{height:35.615555px;}
.h5e{height:35.644858px;}
.h80{height:35.663554px;}
.h20{height:36.349310px;}
.h21{height:36.690650px;}
.h65{height:39.798000px;}
.h5{height:39.906000px;}
.hb{height:40.068000px;}
.h18{height:40.500000px;}
.h6c{height:41.494933px;}
.h6a{height:41.495533px;}
.h1a{height:41.497513px;}
.h6b{height:41.835733px;}
.h68{height:41.836333px;}
.h76{height:41.837113px;}
.h4d{height:41.837713px;}
.hc{height:42.294000px;}
.h1e{height:42.814130px;}
.h69{height:44.996317px;}
.h7e{height:46.631400px;}
.h7a{height:46.633800px;}
.h52{height:46.636200px;}
.h28{height:46.638000px;}
.h16{height:46.638600px;}
.h10{height:46.640400px;}
.h8{height:46.641000px;}
.h7c{height:46.641600px;}
.h12{height:46.642200px;}
.h9{height:46.642800px;}
.h34{height:46.643400px;}
.h7f{height:46.966200px;}
.h11{height:46.968600px;}
.h45{height:46.970400px;}
.h54{height:46.971600px;}
.h15{height:46.974000px;}
.h3b{height:46.975800px;}
.h40{height:46.976400px;}
.h13{height:46.978200px;}
.h17{height:46.978800px;}
.h7b{height:46.980600px;}
.h7{height:46.981200px;}
.h3e{height:46.982400px;}
.h14{height:46.983000px;}
.h4f{height:46.986600px;}
.h37{height:47.050020px;}
.h39{height:47.057400px;}
.h25{height:47.390220px;}
.h3f{height:47.644020px;}
.h3d{height:47.983620px;}
.h51{height:47.984220px;}
.h79{height:48.298633px;}
.h67{height:48.328620px;}
.h66{height:48.640513px;}
.h7d{height:50.450820px;}
.h53{height:50.790420px;}
.h33{height:50.791020px;}
.h4{height:51.197555px;}
.h6d{height:51.362473px;}
.h4e{height:51.385020px;}
.h47{height:52.388164px;}
.h38{height:54.127020px;}
.h36{height:54.542820px;}
.h32{height:54.543420px;}
.h78{height:55.102033px;}
.h50{height:55.133400px;}
.h41{height:55.141200px;}
.h44{height:55.143000px;}
.h43{height:55.145400px;}
.h24{height:55.146000px;}
.h2b{height:55.146600px;}
.h31{height:55.147800px;}
.h3c{height:55.148400px;}
.hd{height:55.151540px;}
.h35{height:55.486200px;}
.h42{height:57.527820px;}
.h3a{height:57.868020px;}
.h77{height:58.165873px;}
.h2a{height:58.272240px;}
.h3{height:62.412000px;}
.h29{height:63.801420px;}
.h22{height:74.914200px;}
.h26{height:74.914800px;}
.h30{height:76.982400px;}
.h23{height:77.661600px;}
.h27{height:81.404400px;}
.h2e{height:85.761000px;}
.h2{height:89.040445px;}
.h2f{height:94.680420px;}
.h2d{height:122.497800px;}
.h1{height:1173.750000px;}
.h0{height:1173.883500px;}
.w0{width:893.083500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:72.028350px;}
.x1{left:76.535400px;}
.x52{left:82.828350px;}
.x1f{left:84.529050px;}
.x92{left:87.809700px;}
.x55{left:91.503900px;}
.x11{left:96.434550px;}
.xbc{left:100.688700px;}
.x20{left:102.302400px;}
.x8f{left:107.300325px;}
.x17{left:115.568550px;}
.x21{left:118.289700px;}
.x53{left:119.395200px;}
.x5b{left:121.861350px;}
.x50{left:126.028350px;}
.x60{left:128.664600px;}
.x8e{left:131.257650px;}
.x18{left:134.532300px;}
.x22{left:136.062900px;}
.x57{left:138.018900px;}
.x9e{left:139.379550px;}
.xae{left:140.400000px;}
.x78{left:141.590550px;}
.x96{left:144.784050px;}
.x61{left:147.373200px;}
.xad{left:150.453150px;}
.xa4{left:155.274000px;}
.x58{left:156.302250px;}
.xb5{left:157.662900px;}
.x97{left:158.900550px;}
.x51{left:162.255345px;}
.x56{left:164.466000px;}
.xa6{left:166.702500px;}
.x54{left:168.292950px;}
.x9f{left:169.823550px;}
.xa5{left:170.849400px;}
.xb6{left:172.289700px;}
.xa3{left:175.524600px;}
.x83{left:189.722850px;}
.x76{left:191.168400px;}
.xa0{left:195.760500px;}
.x81{left:199.587300px;}
.xb7{left:204.944850px;}
.x5d{left:206.900700px;}
.xa2{left:210.659250px;}
.x5f{left:216.510150px;}
.x19{left:219.911700px;}
.x5e{left:227.905500px;}
.x93{left:229.195200px;}
.x94{left:235.797300px;}
.x82{left:242.362200px;}
.x59{left:244.743300px;}
.x95{left:246.364650px;}
.x1a{left:252.311700px;}
.x4e{left:254.182650px;}
.xbb{left:255.630765px;}
.x90{left:261.166650px;}
.x15{left:262.941600px;}
.x98{left:264.976650px;}
.x23{left:269.744850px;}
.xa1{left:271.700700px;}
.x99{left:280.033500px;}
.x24{left:285.732150px;}
.x79{left:292.280250px;}
.x16{left:295.596750px;}
.xb0{left:297.552750px;}
.x28{left:300.103800px;}
.x25{left:303.505350px;}
.x5a{left:304.866000px;}
.x7a{left:307.927500px;}
.x91{left:309.481350px;}
.xba{left:311.500860px;}
.x77{left:313.965300px;}
.x7b{left:319.662900px;}
.x29{left:322.894350px;}
.x7c{left:324.765300px;}
.xb9{left:328.678650px;}
.xb1{left:330.462900px;}
.x26{left:334.544850px;}
.x5c{left:349.341600px;}
.xb2{left:350.957400px;}
.x27{left:355.294350px;}
.x7d{left:360.991950px;}
.x1b{left:366.689700px;}
.x7e{left:376.554300px;}
.x1c{left:384.377850px;}
.x7f{left:388.374750px;}
.xb3{left:392.116350px;}
.x80{left:393.477150px;}
.x4c{left:397.388850px;}
.x62{left:399.089700px;}
.x1d{left:400.450350px;}
.x9b{left:408.026070px;}
.xb4{left:412.525800px;}
.x4f{left:413.971500px;}
.x4d{left:416.947950px;}
.x1e{left:418.223550px;}
.x9a{left:427.884750px;}
.x2b{left:454.535250px;}
.xe{left:459.041550px;}
.x85{left:460.828200px;}
.x63{left:465.335250px;}
.x2a{left:469.503000px;}
.xaa{left:470.902650px;}
.x6f{left:475.005300px;}
.x6e{left:481.329525px;}
.xbd{left:483.109215px;}
.x2d{left:485.829750px;}
.x6d{left:491.767890px;}
.x9c{left:501.844800px;}
.x75{left:504.655800px;}
.x2e{left:507.514800px;}
.xa7{left:511.280850px;}
.xf{left:513.637650px;}
.x49{left:525.797400px;}
.x3d{left:526.819365px;}
.x70{left:529.092900px;}
.xb8{left:534.557400px;}
.x37{left:537.278550px;}
.x86{left:541.360500px;}
.x33{left:543.996750px;}
.x38{left:545.017200px;}
.xa9{left:547.405200px;}
.x34{left:551.735250px;}
.x10{left:553.521150px;}
.x89{left:557.688000px;}
.x39{left:562.535250px;}
.x8a{left:567.807750px;}
.x35{left:569.338500px;}
.xa8{left:572.098050px;}
.x3a{left:575.461200px;}
.x2{left:579.032850px;}
.x36{left:582.179400px;}
.x3b{left:589.917900px;}
.x6a{left:593.574600px;}
.x4a{left:598.166565px;}
.x3e{left:605.650200px;}
.x64{left:608.286450px;}
.xab{left:610.017750px;}
.xc{left:612.708450px;}
.x8b{left:613.814100px;}
.x87{left:617.470800px;}
.x3f{left:621.807750px;}
.x65{left:623.848650px;}
.xac{left:625.803750px;}
.x40{left:631.757250px;}
.x6c{left:633.543150px;}
.x72{left:634.709850px;}
.x9{left:640.006200px;}
.x5{left:644.173050px;}
.x7{left:647.234550px;}
.xd{left:649.190400px;}
.xa{left:651.231300px;}
.x66{left:653.867550px;}
.x41{left:655.228620px;}
.x43{left:657.694350px;}
.x42{left:660.160500px;}
.x6{left:668.919600px;}
.x8{left:671.045550px;}
.x4b{left:676.829400px;}
.xb{left:680.144700px;}
.x13{left:681.251565px;}
.x44{left:688.734000px;}
.x6b{left:693.921000px;}
.x68{left:696.302250px;}
.x8c{left:697.492650px;}
.x8d{left:710.333700px;}
.x69{left:719.347800px;}
.x3{left:727.086450px;}
.x9d{left:735.447000px;}
.x88{left:737.971500px;}
.x45{left:740.182500px;}
.x12{left:742.648650px;}
.x84{left:745.284900px;}
.x4{left:759.486300px;}
.x46{left:768.075345px;}
.x2f{left:770.371350px;}
.x3c{left:773.347800px;}
.xaf{left:776.154150px;}
.x30{left:778.110150px;}
.x71{left:779.216100px;}
.x31{left:795.628200px;}
.x47{left:798.009195px;}
.x48{left:799.029750px;}
.x2c{left:800.730450px;}
.x67{left:801.836100px;}
.x73{left:805.212450px;}
.x32{left:808.554150px;}
.x74{left:815.029950px;}
@media print{
.v14{vertical-align:-23.440000pt;}
.v2{vertical-align:-16.629333pt;}
.v17{vertical-align:-14.816000pt;}
.v6{vertical-align:-5.747413pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:5.743573pt;}
.v9{vertical-align:6.652640pt;}
.v18{vertical-align:8.466453pt;}
.vb{vertical-align:9.675040pt;}
.v5{vertical-align:12.999147pt;}
.v3{vertical-align:14.816000pt;}
.v1{vertical-align:16.930667pt;}
.v4{vertical-align:18.745653pt;}
.va{vertical-align:19.955733pt;}
.v15{vertical-align:21.165333pt;}
.v12{vertical-align:23.283040pt;}
.v8{vertical-align:24.188267pt;}
.v13{vertical-align:26.607840pt;}
.v19{vertical-align:29.632320pt;}
.v7{vertical-align:32.655467pt;}
.vc{vertical-align:34.771733pt;}
.v10{vertical-align:42.330507pt;}
.vf{vertical-align:51.401600pt;}
.v11{vertical-align:58.960373pt;}
.vd{vertical-align:67.426667pt;}
.ve{vertical-align:84.056533pt;}
.lsd{letter-spacing:-1.079200pt;}
.ls1a{letter-spacing:-1.043733pt;}
.ls17{letter-spacing:-1.033600pt;}
.ls8{letter-spacing:-1.018400pt;}
.ls14{letter-spacing:-1.003200pt;}
.ls18{letter-spacing:-0.998133pt;}
.ls16{letter-spacing:-0.993067pt;}
.lsc{letter-spacing:-0.988000pt;}
.ls12{letter-spacing:-0.982933pt;}
.ls10{letter-spacing:-0.977867pt;}
.lse{letter-spacing:-0.972795pt;}
.lsa{letter-spacing:-0.967733pt;}
.ls7{letter-spacing:-0.962667pt;}
.ls19{letter-spacing:-0.957600pt;}
.ls15{letter-spacing:-0.942395pt;}
.ls11{letter-spacing:-0.937333pt;}
.ls1d{letter-spacing:-0.927200pt;}
.ls9{letter-spacing:-0.922133pt;}
.lsf{letter-spacing:-0.896800pt;}
.ls13{letter-spacing:-0.891733pt;}
.ls1e{letter-spacing:-0.886667pt;}
.lsb{letter-spacing:-0.861333pt;}
.ls1c{letter-spacing:-0.851200pt;}
.ls35{letter-spacing:-0.724800pt;}
.ls37{letter-spacing:-0.700800pt;}
.ls36{letter-spacing:-0.608160pt;}
.ls34{letter-spacing:-0.595200pt;}
.lsa1{letter-spacing:-0.579200pt;}
.ls99{letter-spacing:-0.576000pt;}
.ls87{letter-spacing:-0.405639pt;}
.ls98{letter-spacing:-0.080000pt;}
.ls6d{letter-spacing:-0.065406pt;}
.ls95{letter-spacing:-0.048000pt;}
.ls6f{letter-spacing:-0.047952pt;}
.ls94{letter-spacing:-0.040000pt;}
.ls84{letter-spacing:-0.031884pt;}
.ls9d{letter-spacing:-0.031392pt;}
.ls9a{letter-spacing:-0.031005pt;}
.ls6c{letter-spacing:-0.025436pt;}
.ls9e{letter-spacing:-0.023544pt;}
.ls9b{letter-spacing:-0.023253pt;}
.ls6b{letter-spacing:-0.018168pt;}
.ls6a{letter-spacing:-0.014535pt;}
.ls69{letter-spacing:-0.011788pt;}
.ls9f{letter-spacing:-0.011772pt;}
.ls9c{letter-spacing:-0.011627pt;}
.ls68{letter-spacing:-0.007880pt;}
.lsa0{letter-spacing:-0.007848pt;}
.ls96{letter-spacing:-0.007751pt;}
.ls8b{letter-spacing:-0.007603pt;}
.ls97{letter-spacing:-0.003200pt;}
.ls70{letter-spacing:-0.003138pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa8{letter-spacing:0.000047pt;}
.ls8a{letter-spacing:0.002433pt;}
.ls8c{letter-spacing:0.003801pt;}
.ls86{letter-spacing:0.003959pt;}
.ls77{letter-spacing:0.004251pt;}
.ls8d{letter-spacing:0.004299pt;}
.ls65{letter-spacing:0.006646pt;}
.ls85{letter-spacing:0.012897pt;}
.ls6e{letter-spacing:0.013292pt;}
.ls88{letter-spacing:0.016220pt;}
.ls8e{letter-spacing:0.017196pt;}
.ls2b{letter-spacing:0.019200pt;}
.ls82{letter-spacing:0.020273pt;}
.ls76{letter-spacing:0.027712pt;}
.ls89{letter-spacing:0.048668pt;}
.ls83{letter-spacing:0.051097pt;}
.ls2{letter-spacing:0.057600pt;}
.ls2d{letter-spacing:0.063823pt;}
.ls2e{letter-spacing:0.064250pt;}
.ls30{letter-spacing:0.065156pt;}
.ls2f{letter-spacing:0.065690pt;}
.ls75{letter-spacing:0.079167pt;}
.ls72{letter-spacing:0.081600pt;}
.ls25{letter-spacing:0.086399pt;}
.ls1{letter-spacing:0.124762pt;}
.ls4b{letter-spacing:0.131040pt;}
.ls2a{letter-spacing:0.134400pt;}
.ls93{letter-spacing:0.136533pt;}
.lsa5{letter-spacing:0.159477pt;}
.ls4f{letter-spacing:0.163200pt;}
.ls5f{letter-spacing:0.168000pt;}
.ls0{letter-spacing:0.170656pt;}
.ls43{letter-spacing:0.187200pt;}
.lsa2{letter-spacing:0.208533pt;}
.ls59{letter-spacing:0.210667pt;}
.ls21{letter-spacing:0.211200pt;}
.ls1f{letter-spacing:0.211733pt;}
.ls7a{letter-spacing:0.212042pt;}
.ls4{letter-spacing:0.212267pt;}
.ls38{letter-spacing:0.212800pt;}
.lsa3{letter-spacing:0.213333pt;}
.ls20{letter-spacing:0.213867pt;}
.ls5b{letter-spacing:0.214400pt;}
.ls47{letter-spacing:0.215467pt;}
.ls3{letter-spacing:0.216000pt;}
.ls24{letter-spacing:0.216533pt;}
.ls90{letter-spacing:0.230400pt;}
.ls5c{letter-spacing:0.268800pt;}
.ls74{letter-spacing:0.922524pt;}
.ls66{letter-spacing:1.241948pt;}
.ls46{letter-spacing:1.467200pt;}
.ls63{letter-spacing:1.467733pt;}
.ls45{letter-spacing:1.468267pt;}
.ls44{letter-spacing:1.472000pt;}
.ls5d{letter-spacing:1.473600pt;}
.ls42{letter-spacing:1.475200pt;}
.ls67{letter-spacing:1.593600pt;}
.ls5a{letter-spacing:2.380800pt;}
.ls51{letter-spacing:2.919840pt;}
.ls32{letter-spacing:7.235077pt;}
.ls31{letter-spacing:7.235131pt;}
.ls33{letter-spacing:7.537477pt;}
.ls2c{letter-spacing:7.537531pt;}
.ls7e{letter-spacing:8.268677pt;}
.ls7d{letter-spacing:8.268731pt;}
.lsa4{letter-spacing:8.298560pt;}
.ls92{letter-spacing:8.366819pt;}
.ls7f{letter-spacing:8.571611pt;}
.lsaa{letter-spacing:8.985520pt;}
.ls29{letter-spacing:9.259200pt;}
.ls23{letter-spacing:9.302400pt;}
.ls73{letter-spacing:9.456000pt;}
.ls79{letter-spacing:9.476144pt;}
.ls52{letter-spacing:9.504693pt;}
.ls27{letter-spacing:9.508800pt;}
.ls8f{letter-spacing:9.561600pt;}
.lsb1{letter-spacing:9.591333pt;}
.ls22{letter-spacing:9.604800pt;}
.ls26{letter-spacing:9.691200pt;}
.ls3d{letter-spacing:10.492800pt;}
.ls54{letter-spacing:10.510400pt;}
.ls3b{letter-spacing:10.512000pt;}
.ls3f{letter-spacing:10.665600pt;}
.ls4a{letter-spacing:10.814400pt;}
.ls5e{letter-spacing:10.848000pt;}
.ls3a{letter-spacing:10.968000pt;}
.ls3e{letter-spacing:10.977600pt;}
.lsae{letter-spacing:12.010480pt;}
.ls78{letter-spacing:12.277547pt;}
.ls7c{letter-spacing:12.513974pt;}
.ls5{letter-spacing:13.040347pt;}
.ls56{letter-spacing:13.136320pt;}
.ls7b{letter-spacing:13.186613pt;}
.ls41{letter-spacing:13.233600pt;}
.ls40{letter-spacing:13.291200pt;}
.ls4c{letter-spacing:13.438720pt;}
.ls53{letter-spacing:13.534400pt;}
.ls39{letter-spacing:13.536000pt;}
.ls58{letter-spacing:13.891200pt;}
.ls1b{letter-spacing:13.968800pt;}
.ls49{letter-spacing:14.496000pt;}
.lsa6{letter-spacing:14.732613pt;}
.lsab{letter-spacing:14.732667pt;}
.ls71{letter-spacing:14.832000pt;}
.lsaf{letter-spacing:15.035493pt;}
.lsac{letter-spacing:15.035545pt;}
.lsa7{letter-spacing:15.035547pt;}
.ls61{letter-spacing:16.896000pt;}
.lsad{letter-spacing:17.151760pt;}
.ls28{letter-spacing:17.251200pt;}
.ls57{letter-spacing:18.276747pt;}
.ls64{letter-spacing:19.183947pt;}
.lsb0{letter-spacing:19.869627pt;}
.ls60{letter-spacing:20.091147pt;}
.ls91{letter-spacing:20.548800pt;}
.lsa9{letter-spacing:20.778373pt;}
.ls4e{letter-spacing:20.846400pt;}
.ls80{letter-spacing:23.678400pt;}
.ls62{letter-spacing:24.626080pt;}
.lsb3{letter-spacing:28.641787pt;}
.lsb2{letter-spacing:30.455120pt;}
.ls50{letter-spacing:34.700267pt;}
.ls48{letter-spacing:160.482667pt;}
.ls81{letter-spacing:266.100623pt;}
.ls3c{letter-spacing:320.636267pt;}
.ls55{letter-spacing:603.403200pt;}
.ls4d{letter-spacing:749.085813pt;}
.ws209{word-spacing:-23.726400pt;}
.wsd9{word-spacing:-17.299200pt;}
.ws318{word-spacing:-15.078212pt;}
.ws60{word-spacing:-14.019467pt;}
.ws249{word-spacing:-9.652800pt;}
.wsd5{word-spacing:-9.556800pt;}
.ws247{word-spacing:-9.350400pt;}
.ws192{word-spacing:-8.723714pt;}
.ws108{word-spacing:-1.641600pt;}
.ws2ea{word-spacing:-0.061333pt;}
.ws4e{word-spacing:-0.050667pt;}
.ws1b{word-spacing:-0.048000pt;}
.ws38{word-spacing:-0.042666pt;}
.ws191{word-spacing:-0.039398pt;}
.ws68{word-spacing:-0.037333pt;}
.ws13{word-spacing:-0.033600pt;}
.ws193{word-spacing:-0.033230pt;}
.wsc{word-spacing:-0.031996pt;}
.ws218{word-spacing:-0.029866pt;}
.wsec{word-spacing:-0.024886pt;}
.ws238{word-spacing:-0.017196pt;}
.ws1a5{word-spacing:-0.013292pt;}
.ws233{word-spacing:-0.012897pt;}
.ws1a6{word-spacing:-0.006646pt;}
.ws237{word-spacing:-0.004299pt;}
.ws234{word-spacing:-0.003959pt;}
.ws6c{word-spacing:0.000000pt;}
.ws1a3{word-spacing:0.003634pt;}
.ws19e{word-spacing:0.003940pt;}
.ws1a2{word-spacing:0.007267pt;}
.ws284{word-spacing:0.007751pt;}
.ws28b{word-spacing:0.007848pt;}
.ws287{word-spacing:0.011627pt;}
.ws28a{word-spacing:0.011772pt;}
.ws19f{word-spacing:0.011788pt;}
.ws1a0{word-spacing:0.014535pt;}
.ws1a1{word-spacing:0.018168pt;}
.ws286{word-spacing:0.023253pt;}
.ws289{word-spacing:0.023544pt;}
.ws285{word-spacing:0.031005pt;}
.ws288{word-spacing:0.031392pt;}
.ws231{word-spacing:0.036491pt;}
.ws235{word-spacing:0.044605pt;}
.ws236{word-spacing:0.060824pt;}
.ws1a4{word-spacing:0.061772pt;}
.ws232{word-spacing:0.081092pt;}
.ws210{word-spacing:0.381918pt;}
.ws26e{word-spacing:0.544000pt;}
.ws89{word-spacing:0.547200pt;}
.ws7c{word-spacing:0.676800pt;}
.ws215{word-spacing:5.863154pt;}
.ws277{word-spacing:5.863687pt;}
.ws2b8{word-spacing:6.509867pt;}
.wsf4{word-spacing:7.186576pt;}
.wsf6{word-spacing:7.190310pt;}
.wsf8{word-spacing:7.197787pt;}
.wsef{word-spacing:7.223878pt;}
.wsf3{word-spacing:7.223897pt;}
.wsf9{word-spacing:7.302317pt;}
.wsf2{word-spacing:7.328436pt;}
.wseb{word-spacing:7.399343pt;}
.ws139{word-spacing:7.417067pt;}
.ws117{word-spacing:7.417600pt;}
.wsf0{word-spacing:7.418000pt;}
.wsf5{word-spacing:7.421755pt;}
.ws123{word-spacing:7.720000pt;}
.ws22c{word-spacing:7.965773pt;}
.ws22b{word-spacing:8.089485pt;}
.ws229{word-spacing:8.089499pt;}
.ws22a{word-spacing:8.102259pt;}
.ws275{word-spacing:8.136432pt;}
.ws273{word-spacing:8.166298pt;}
.ws2e6{word-spacing:8.179102pt;}
.ws271{word-spacing:8.238830pt;}
.ws309{word-spacing:8.341214pt;}
.ws336{word-spacing:8.366829pt;}
.ws22d{word-spacing:8.388186pt;}
.ws22e{word-spacing:8.405242pt;}
.ws30a{word-spacing:8.499094pt;}
.wse4{word-spacing:8.541760pt;}
.wse5{word-spacing:8.554560pt;}
.ws2e7{word-spacing:8.588693pt;}
.ws30b{word-spacing:8.639892pt;}
.ws329{word-spacing:8.861756pt;}
.ws199{word-spacing:8.891622pt;}
.ws33b{word-spacing:8.994021pt;}
.ws328{word-spacing:9.049487pt;}
.ws2e3{word-spacing:9.143352pt;}
.ws1e6{word-spacing:9.148800pt;}
.ws243{word-spacing:9.153600pt;}
.ws34e{word-spacing:9.156152pt;}
.ws2e4{word-spacing:9.160419pt;}
.wscd{word-spacing:9.192000pt;}
.wscf{word-spacing:9.211200pt;}
.ws19b{word-spacing:9.215885pt;}
.ws20e{word-spacing:9.220800pt;}
.wsbc{word-spacing:9.244800pt;}
.ws2e5{word-spacing:9.262818pt;}
.ws333{word-spacing:9.267084pt;}
.ws86{word-spacing:9.268800pt;}
.ws9b{word-spacing:9.288000pt;}
.ws246{word-spacing:9.340800pt;}
.ws326{word-spacing:9.352416pt;}
.ws87{word-spacing:9.355200pt;}
.ws350{word-spacing:9.373749pt;}
.ws158{word-spacing:9.379200pt;}
.wsd0{word-spacing:9.384000pt;}
.ws322{word-spacing:9.395083pt;}
.wsa5{word-spacing:9.398400pt;}
.wscc{word-spacing:9.403200pt;}
.ws1ab{word-spacing:9.408000pt;}
.wsa9{word-spacing:9.417600pt;}
.ws34f{word-spacing:9.459082pt;}
.ws2a0{word-spacing:9.470400pt;}
.ws311{word-spacing:9.493215pt;}
.ws1c0{word-spacing:9.494400pt;}
.ws208{word-spacing:9.518400pt;}
.wsbd{word-spacing:9.547200pt;}
.ws323{word-spacing:9.548681pt;}
.ws177{word-spacing:9.571200pt;}
.ws9{word-spacing:9.590400pt;}
.ws22f{word-spacing:9.599880pt;}
.ws245{word-spacing:9.643200pt;}
.ws226{word-spacing:9.698012pt;}
.ws2e2{word-spacing:9.719345pt;}
.ws228{word-spacing:9.757745pt;}
.ws35d{word-spacing:9.770545pt;}
.ws312{word-spacing:9.830277pt;}
.wsb6{word-spacing:9.830400pt;}
.wsb5{word-spacing:9.878400pt;}
.ws303{word-spacing:9.881476pt;}
.ws15c{word-spacing:9.912000pt;}
.ws241{word-spacing:9.926400pt;}
.ws21a{word-spacing:9.932676pt;}
.ws8c{word-spacing:10.056000pt;}
.ws133{word-spacing:10.060800pt;}
.ws240{word-spacing:10.065600pt;}
.ws8b{word-spacing:10.108800pt;}
.ws217{word-spacing:10.146007pt;}
.ws35c{word-spacing:10.175873pt;}
.ws2ca{word-spacing:10.176000pt;}
.ws25c{word-spacing:10.185600pt;}
.wsb3{word-spacing:10.214400pt;}
.ws2c3{word-spacing:10.224000pt;}
.ws16f{word-spacing:10.238400pt;}
.ws178{word-spacing:10.252800pt;}
.ws1a8{word-spacing:10.257600pt;}
.ws219{word-spacing:10.291071pt;}
.ws25a{word-spacing:10.300800pt;}
.ws16{word-spacing:10.305600pt;}
.ws2f4{word-spacing:10.308138pt;}
.ws2d5{word-spacing:10.310400pt;}
.ws25b{word-spacing:10.334400pt;}
.ws2c2{word-spacing:10.344000pt;}
.ws213{word-spacing:10.355071pt;}
.wsad{word-spacing:10.387200pt;}
.ws2f5{word-spacing:10.406270pt;}
.ws1a7{word-spacing:10.406400pt;}
.ws171{word-spacing:10.468800pt;}
.ws282{word-spacing:10.478802pt;}
.ws10b{word-spacing:10.516800pt;}
.wse1{word-spacing:10.531200pt;}
.ws214{word-spacing:10.542839pt;}
.wse0{word-spacing:10.574400pt;}
.ws109{word-spacing:10.593600pt;}
.ws342{word-spacing:10.615334pt;}
.ws10a{word-spacing:10.636800pt;}
.ws27d{word-spacing:10.658000pt;}
.ws137{word-spacing:10.670400pt;}
.ws107{word-spacing:10.680000pt;}
.ws136{word-spacing:10.732800pt;}
.ws2dd{word-spacing:10.743332pt;}
.ws2f3{word-spacing:10.760399pt;}
.ws18f{word-spacing:10.800000pt;}
.ws2ba{word-spacing:10.843200pt;}
.wsda{word-spacing:10.848000pt;}
.ws31e{word-spacing:10.884131pt;}
.ws274{word-spacing:10.899655pt;}
.ws1b7{word-spacing:10.924800pt;}
.ws2cb{word-spacing:10.968000pt;}
.ws27e{word-spacing:10.969463pt;}
.ws24e{word-spacing:10.992000pt;}
.ws272{word-spacing:11.003421pt;}
.ws2f8{word-spacing:11.003596pt;}
.ws223{word-spacing:11.024929pt;}
.ws75{word-spacing:11.025600pt;}
.ws31d{word-spacing:11.041995pt;}
.ws26b{word-spacing:11.083200pt;}
.ws27b{word-spacing:11.123061pt;}
.ws225{word-spacing:11.140127pt;}
.ws31a{word-spacing:11.157194pt;}
.ws352{word-spacing:11.182794pt;}
.wsdd{word-spacing:11.208000pt;}
.ws2b2{word-spacing:11.236800pt;}
.ws194{word-spacing:11.259593pt;}
.ws296{word-spacing:11.265600pt;}
.ws1fb{word-spacing:11.270400pt;}
.ws351{word-spacing:11.272392pt;}
.ws84{word-spacing:11.294400pt;}
.ws295{word-spacing:11.318400pt;}
.ws2bb{word-spacing:11.323200pt;}
.wsde{word-spacing:11.352000pt;}
.wsdf{word-spacing:11.371200pt;}
.ws7b{word-spacing:11.385600pt;}
.wsae{word-spacing:11.414400pt;}
.ws85{word-spacing:11.443200pt;}
.ws2a7{word-spacing:11.457600pt;}
.ws29{word-spacing:11.476800pt;}
.ws5b{word-spacing:11.516533pt;}
.ws79{word-spacing:11.520000pt;}
.ws198{word-spacing:11.575322pt;}
.ws31f{word-spacing:11.596655pt;}
.ws35e{word-spacing:11.613721pt;}
.ws20b{word-spacing:11.620800pt;}
.ws196{word-spacing:11.656395pt;}
.ws35a{word-spacing:11.686254pt;}
.ws6e{word-spacing:11.692800pt;}
.ws1d9{word-spacing:11.764800pt;}
.ws1db{word-spacing:11.779200pt;}
.ws320{word-spacing:11.792919pt;}
.ws2a4{word-spacing:11.851200pt;}
.ws349{word-spacing:11.878252pt;}
.ws252{word-spacing:11.880000pt;}
.ws202{word-spacing:11.884800pt;}
.ws2b0{word-spacing:11.899200pt;}
.ws2a{word-spacing:11.904000pt;}
.ws2f2{word-spacing:11.916651pt;}
.ws2b1{word-spacing:11.918400pt;}
.ws2f1{word-spacing:11.920918pt;}
.ws15b{word-spacing:11.954667pt;}
.ws2c1{word-spacing:11.956800pt;}
.ws321{word-spacing:11.967850pt;}
.ws162{word-spacing:11.990400pt;}
.ws135{word-spacing:12.009600pt;}
.ws2fb{word-spacing:12.053183pt;}
.ws257{word-spacing:12.072000pt;}
.ws1c4{word-spacing:12.087467pt;}
.ws281{word-spacing:12.100115pt;}
.ws74{word-spacing:12.134400pt;}
.ws71{word-spacing:12.139200pt;}
.ws164{word-spacing:12.144000pt;}
.ws258{word-spacing:12.148800pt;}
.ws35f{word-spacing:12.164115pt;}
.ws2a6{word-spacing:12.172800pt;}
.ws2fd{word-spacing:12.202514pt;}
.ws1ca{word-spacing:12.244800pt;}
.ws176{word-spacing:12.254933pt;}
.ws157{word-spacing:12.256533pt;}
.ws2fe{word-spacing:12.257980pt;}
.ws2e0{word-spacing:12.266513pt;}
.ws239{word-spacing:12.312000pt;}
.ws3b{word-spacing:12.321979pt;}
.ws13e{word-spacing:12.331200pt;}
.ws9d{word-spacing:12.350400pt;}
.ws143{word-spacing:12.360000pt;}
.ws1cb{word-spacing:12.364800pt;}
.ws13f{word-spacing:12.374400pt;}
.ws220{word-spacing:12.398778pt;}
.ws11d{word-spacing:12.417600pt;}
.wsa1{word-spacing:12.441600pt;}
.ws73{word-spacing:12.456000pt;}
.ws221{word-spacing:12.479844pt;}
.ws10c{word-spacing:12.480000pt;}
.ws9f{word-spacing:12.489600pt;}
.ws24{word-spacing:12.494400pt;}
.ws81{word-spacing:12.595200pt;}
.ws10d{word-spacing:12.604800pt;}
.ws316{word-spacing:12.607842pt;}
.ws1e2{word-spacing:12.609600pt;}
.ws1d5{word-spacing:12.614400pt;}
.ws33d{word-spacing:12.616376pt;}
.ws22{word-spacing:12.633600pt;}
.wsb4{word-spacing:12.692267pt;}
.ws83{word-spacing:12.710400pt;}
.wsd2{word-spacing:12.729600pt;}
.ws26c{word-spacing:12.734400pt;}
.ws21f{word-spacing:12.752888pt;}
.wsa0{word-spacing:12.753600pt;}
.ws1d8{word-spacing:12.758400pt;}
.ws317{word-spacing:12.765707pt;}
.ws33c{word-spacing:12.782774pt;}
.ws2c0{word-spacing:12.796800pt;}
.ws227{word-spacing:12.817821pt;}
.ws2b{word-spacing:12.873600pt;}
.ws24f{word-spacing:12.902400pt;}
.ws6a{word-spacing:12.905949pt;}
.ws70{word-spacing:12.907200pt;}
.ws268{word-spacing:12.916800pt;}
.wsfc{word-spacing:12.920882pt;}
.ws160{word-spacing:12.926400pt;}
.wsfd{word-spacing:12.943282pt;}
.ws161{word-spacing:12.955200pt;}
.ws250{word-spacing:12.964800pt;}
.ws2b5{word-spacing:12.974400pt;}
.ws67{word-spacing:13.003014pt;}
.ws186{word-spacing:13.027200pt;}
.ws6b{word-spacing:13.073947pt;}
.ws2d6{word-spacing:13.075200pt;}
.ws2b3{word-spacing:13.080000pt;}
.ws2d0{word-spacing:13.084800pt;}
.ws88{word-spacing:13.101120pt;}
.ws2d7{word-spacing:13.137600pt;}
.ws32f{word-spacing:13.175302pt;}
.ws251{word-spacing:13.195200pt;}
.ws188{word-spacing:13.204800pt;}
.ws169{word-spacing:13.219200pt;}
.wse2{word-spacing:13.262400pt;}
.ws2b6{word-spacing:13.264000pt;}
.ws216{word-spacing:13.284611pt;}
.ws2d4{word-spacing:13.296000pt;}
.wsf7{word-spacing:13.380076pt;}
.wsa4{word-spacing:13.382400pt;}
.ws19c{word-spacing:13.401432pt;}
.ws310{word-spacing:13.409966pt;}
.ws12b{word-spacing:13.694400pt;}
.ws128{word-spacing:13.761600pt;}
.ws23d{word-spacing:13.795200pt;}
.ws129{word-spacing:13.833600pt;}
.ws197{word-spacing:13.888878pt;}
.ws224{word-spacing:13.923122pt;}
.ws360{word-spacing:13.926226pt;}
.ws267{word-spacing:13.929600pt;}
.ws195{word-spacing:13.960923pt;}
.ws20d{word-spacing:14.083200pt;}
.ws361{word-spacing:14.084091pt;}
.ws175{word-spacing:14.097600pt;}
.ws7d{word-spacing:14.107200pt;}
.ws63{word-spacing:14.110667pt;}
.wsfe{word-spacing:14.126400pt;}
.ws13b{word-spacing:14.155200pt;}
.ws7f{word-spacing:14.188800pt;}
.ws13c{word-spacing:14.212800pt;}
.ws2ff{word-spacing:14.254773pt;}
.ws1cd{word-spacing:14.260800pt;}
.ws23a{word-spacing:14.270400pt;}
.ws2a1{word-spacing:14.280000pt;}
.ws2af{word-spacing:14.289600pt;}
.ws2e1{word-spacing:14.327288pt;}
.ws276{word-spacing:14.329821pt;}
.ws64{word-spacing:14.333600pt;}
.ws2f0{word-spacing:14.340087pt;}
.ws2a3{word-spacing:14.356800pt;}
.ws2f6{word-spacing:14.369954pt;}
.ws2f9{word-spacing:14.399820pt;}
.ws302{word-spacing:14.399837pt;}
.ws44{word-spacing:14.404087pt;}
.ws339{word-spacing:14.408375pt;}
.ws32c{word-spacing:14.416886pt;}
.ws23e{word-spacing:14.419200pt;}
.ws27c{word-spacing:14.421153pt;}
.ws29b{word-spacing:14.424000pt;}
.wsc1{word-spacing:14.428800pt;}
.ws15f{word-spacing:14.448000pt;}
.ws33a{word-spacing:14.459554pt;}
.ws2ec{word-spacing:14.468086pt;}
.ws15d{word-spacing:14.472000pt;}
.ws41{word-spacing:14.476619pt;}
.ws315{word-spacing:14.480893pt;}
.ws8a{word-spacing:14.483680pt;}
.ws35{word-spacing:14.485152pt;}
.wsc6{word-spacing:14.486400pt;}
.ws30c{word-spacing:14.489419pt;}
.ws343{word-spacing:14.497952pt;}
.ws2e8{word-spacing:14.502219pt;}
.ws261{word-spacing:14.505600pt;}
.ws354{word-spacing:14.510728pt;}
.ws313{word-spacing:14.510739pt;}
.ws332{word-spacing:14.510752pt;}
.ws341{word-spacing:14.510781pt;}
.ws230{word-spacing:14.515019pt;}
.ws1b6{word-spacing:14.515200pt;}
.wse9{word-spacing:14.532085pt;}
.ws3a{word-spacing:14.536352pt;}
.ws1d3{word-spacing:14.539200pt;}
.ws32{word-spacing:14.544885pt;}
.ws2ce{word-spacing:14.563200pt;}
.ws2f7{word-spacing:14.579018pt;}
.ws33{word-spacing:14.591818pt;}
.ws2de{word-spacing:14.596084pt;}
.ws46{word-spacing:14.600351pt;}
.ws32e{word-spacing:14.604617pt;}
.ws338{word-spacing:14.608887pt;}
.wse6{word-spacing:14.613151pt;}
.ws314{word-spacing:14.613160pt;}
.ws33e{word-spacing:14.613173pt;}
.ws32b{word-spacing:14.638741pt;}
.ws340{word-spacing:14.638748pt;}
.ws2e9{word-spacing:14.643017pt;}
.ws262{word-spacing:14.654400pt;}
.ws62{word-spacing:14.657867pt;}
.ws36{word-spacing:14.668617pt;}
.ws330{word-spacing:14.672927pt;}
.ws40{word-spacing:14.681416pt;}
.ws337{word-spacing:14.685704pt;}
.ws29e{word-spacing:14.688000pt;}
.ws45{word-spacing:14.689950pt;}
.ws356{word-spacing:14.694229pt;}
.ws331{word-spacing:14.698450pt;}
.ws2fc{word-spacing:14.698497pt;}
.ws348{word-spacing:14.698520pt;}
.ws31{word-spacing:14.711283pt;}
.ws1b4{word-spacing:14.712000pt;}
.ws2cc{word-spacing:14.716800pt;}
.ws43{word-spacing:14.724083pt;}
.ws1b5{word-spacing:14.731200pt;}
.ws1d2{word-spacing:14.755200pt;}
.ws263{word-spacing:14.760000pt;}
.ws34a{word-spacing:14.771035pt;}
.ws2a5{word-spacing:14.775467pt;}
.ws327{word-spacing:14.792348pt;}
.ws65{word-spacing:14.799733pt;}
.ws163{word-spacing:14.807467pt;}
.ws346{word-spacing:14.813675pt;}
.ws301{word-spacing:14.847814pt;}
.ws242{word-spacing:14.860800pt;}
.wsea{word-spacing:14.873414pt;}
.ws300{word-spacing:14.890481pt;}
.ws283{word-spacing:14.899014pt;}
.ws7a{word-spacing:14.913227pt;}
.ws294{word-spacing:14.956800pt;}
.ws19d{word-spacing:14.971546pt;}
.ws34{word-spacing:14.984346pt;}
.ws264{word-spacing:14.985600pt;}
.ws2fa{word-spacing:14.992879pt;}
.ws80{word-spacing:15.000000pt;}
.ws207{word-spacing:15.009600pt;}
.ws32d{word-spacing:15.014212pt;}
.ws2c4{word-spacing:15.033600pt;}
.ws37{word-spacing:15.108078pt;}
.wsff{word-spacing:15.139200pt;}
.ws1af{word-spacing:15.168000pt;}
.ws39{word-spacing:15.201943pt;}
.ws1c8{word-spacing:15.211200pt;}
.ws6f{word-spacing:15.217920pt;}
.ws2c6{word-spacing:15.225600pt;}
.ws1c7{word-spacing:15.292800pt;}
.ws20c{word-spacing:15.316800pt;}
.ws222{word-spacing:15.330722pt;}
.ws1ee{word-spacing:15.350400pt;}
.ws126{word-spacing:15.355200pt;}
.wsdb{word-spacing:15.360000pt;}
.ws23{word-spacing:15.413333pt;}
.ws122{word-spacing:15.494400pt;}
.wse{word-spacing:15.504000pt;}
.ws3d{word-spacing:15.504873pt;}
.ws1f0{word-spacing:15.518400pt;}
.ws14{word-spacing:15.528000pt;}
.ws319{word-spacing:15.539006pt;}
.ws144{word-spacing:15.546667pt;}
.ws61{word-spacing:15.585067pt;}
.ws127{word-spacing:15.619200pt;}
.ws12{word-spacing:15.652800pt;}
.ws206{word-spacing:15.672000pt;}
.ws1b0{word-spacing:15.676800pt;}
.ws1d7{word-spacing:15.682667pt;}
.ws125{word-spacing:15.700800pt;}
.ws187{word-spacing:15.714667pt;}
.ws1d4{word-spacing:15.715733pt;}
.ws11{word-spacing:15.720000pt;}
.ws2cf{word-spacing:15.739200pt;}
.ws2d8{word-spacing:15.753600pt;}
.ws1ae{word-spacing:15.825600pt;}
.ws104{word-spacing:15.849067pt;}
.ws16c{word-spacing:15.883200pt;}
.ws99{word-spacing:15.907200pt;}
.ws1cc{word-spacing:15.926400pt;}
.wsaa{word-spacing:15.940800pt;}
.wsed{word-spacing:15.984883pt;}
.ws2b4{word-spacing:15.985067pt;}
.ws119{word-spacing:16.017067pt;}
.ws105{word-spacing:16.017600pt;}
.ws1e1{word-spacing:16.056000pt;}
.ws3f{word-spacing:16.106465pt;}
.ws9c{word-spacing:16.142400pt;}
.ws2d2{word-spacing:16.147200pt;}
.ws1d0{word-spacing:16.185600pt;}
.ws1c9{word-spacing:16.243200pt;}
.ws266{word-spacing:16.310400pt;}
.ws33f{word-spacing:16.362462pt;}
.ws69{word-spacing:16.392000pt;}
.ws5f{word-spacing:16.426128pt;}
.ws57{word-spacing:16.451462pt;}
.ws58{word-spacing:16.461600pt;}
.ws120{word-spacing:16.488000pt;}
.ws29a{word-spacing:16.497600pt;}
.ws118{word-spacing:16.545600pt;}
.ws5e{word-spacing:16.552800pt;}
.wsb1{word-spacing:16.593600pt;}
.ws42{word-spacing:16.603200pt;}
.ws18b{word-spacing:16.608000pt;}
.ws2bf{word-spacing:16.617600pt;}
.ws103{word-spacing:16.622400pt;}
.ws31c{word-spacing:16.626992pt;}
.ws1e0{word-spacing:16.632000pt;}
.ws11e{word-spacing:16.656000pt;}
.ws1fa{word-spacing:16.660800pt;}
.wse3{word-spacing:16.680000pt;}
.ws180{word-spacing:16.684800pt;}
.ws1ff{word-spacing:16.689600pt;}
.wsb2{word-spacing:16.694400pt;}
.ws200{word-spacing:16.713600pt;}
.ws14e{word-spacing:16.728000pt;}
.ws308{word-spacing:16.737924pt;}
.ws2c9{word-spacing:16.790400pt;}
.wsc2{word-spacing:16.848000pt;}
.wsc3{word-spacing:16.852800pt;}
.ws140{word-spacing:16.886400pt;}
.ws2ae{word-spacing:16.892267pt;}
.ws142{word-spacing:16.905600pt;}
.ws5c{word-spacing:16.912533pt;}
.wsc4{word-spacing:16.915200pt;}
.ws2ee{word-spacing:16.921388pt;}
.wsd8{word-spacing:16.934400pt;}
.ws16e{word-spacing:16.953600pt;}
.ws31b{word-spacing:16.964055pt;}
.ws2ef{word-spacing:17.023787pt;}
.ws1eb{word-spacing:17.035200pt;}
.ws121{word-spacing:17.092800pt;}
.ws159{word-spacing:17.093333pt;}
.ws6d{word-spacing:17.102400pt;}
.ws3c{word-spacing:17.117653pt;}
.ws2d9{word-spacing:17.126400pt;}
.ws1ec{word-spacing:17.150400pt;}
.ws1ea{word-spacing:17.155200pt;}
.ws16a{word-spacing:17.174400pt;}
.ws82{word-spacing:17.204747pt;}
.ws141{word-spacing:17.212800pt;}
.ws29c{word-spacing:17.227733pt;}
.ws5d{word-spacing:17.236800pt;}
.ws205{word-spacing:17.265600pt;}
.ws3e{word-spacing:17.266984pt;}
.ws9e{word-spacing:17.270400pt;}
.ws55{word-spacing:17.287462pt;}
.ws2bc{word-spacing:17.304000pt;}
.ws290{word-spacing:17.308800pt;}
.ws25f{word-spacing:17.313600pt;}
.ws32a{word-spacing:17.318184pt;}
.ws138{word-spacing:17.337600pt;}
.ws15e{word-spacing:17.396800pt;}
.ws28c{word-spacing:17.404800pt;}
.ws28f{word-spacing:17.433600pt;}
.ws260{word-spacing:17.452800pt;}
.ws16b{word-spacing:17.472000pt;}
.ws19a{word-spacing:17.476048pt;}
.ws56{word-spacing:17.490133pt;}
.ws2a2{word-spacing:17.496533pt;}
.wsd7{word-spacing:17.515200pt;}
.ws111{word-spacing:17.548800pt;}
.wsbf{word-spacing:17.630400pt;}
.ws21e{word-spacing:17.633913pt;}
.ws7e{word-spacing:17.634293pt;}
.ws110{word-spacing:17.640000pt;}
.ws156{word-spacing:17.668800pt;}
.ws23b{word-spacing:17.678400pt;}
.ws93{word-spacing:17.716800pt;}
.ws95{word-spacing:17.731200pt;}
.ws21c{word-spacing:17.744845pt;}
.ws244{word-spacing:17.755200pt;}
.ws26a{word-spacing:17.822400pt;}
.wsc8{word-spacing:17.870400pt;}
.ws279{word-spacing:17.872843pt;}
.ws96{word-spacing:17.884800pt;}
.ws278{word-spacing:17.911243pt;}
.ws1fc{word-spacing:17.942400pt;}
.ws256{word-spacing:17.956800pt;}
.ws2ad{word-spacing:17.971200pt;}
.ws255{word-spacing:17.995200pt;}
.ws170{word-spacing:18.000000pt;}
.ws21b{word-spacing:18.000842pt;}
.ws2a8{word-spacing:18.067200pt;}
.ws2d3{word-spacing:18.072000pt;}
.ws52{word-spacing:18.108267pt;}
.ws4b{word-spacing:18.118400pt;}
.ws50{word-spacing:18.148800pt;}
.ws91{word-spacing:18.182400pt;}
.ws4f{word-spacing:18.194395pt;}
.ws203{word-spacing:18.244800pt;}
.ws4a{word-spacing:18.245067pt;}
.ws124{word-spacing:18.268267pt;}
.ws51{word-spacing:18.336267pt;}
.wsa6{word-spacing:18.360000pt;}
.ws47{word-spacing:18.392000pt;}
.wsc9{word-spacing:18.417600pt;}
.ws59{word-spacing:18.508533pt;}
.ws27a{word-spacing:18.517102pt;}
.ws1c6{word-spacing:18.523200pt;}
.ws49{word-spacing:18.528800pt;}
.ws5a{word-spacing:18.569333pt;}
.ws1ad{word-spacing:18.570667pt;}
.ws4c{word-spacing:18.589600pt;}
.ws53{word-spacing:18.594667pt;}
.ws30d{word-spacing:18.602434pt;}
.ws48{word-spacing:18.620000pt;}
.ws345{word-spacing:18.640834pt;}
.ws54{word-spacing:18.645333pt;}
.ws98{word-spacing:18.648000pt;}
.ws30f{word-spacing:18.649367pt;}
.ws30e{word-spacing:18.704833pt;}
.ws1e9{word-spacing:18.729600pt;}
.ws179{word-spacing:18.739200pt;}
.ws17a{word-spacing:18.768000pt;}
.ws4d{word-spacing:18.817600pt;}
.ws334{word-spacing:18.837098pt;}
.ws362{word-spacing:18.888297pt;}
.ws363{word-spacing:18.926706pt;}
.ws259{word-spacing:18.955200pt;}
.ws2c7{word-spacing:18.964800pt;}
.ws335{word-spacing:19.050429pt;}
.ws97{word-spacing:19.089600pt;}
.ws1f2{word-spacing:19.104000pt;}
.ws1f3{word-spacing:19.108800pt;}
.wse8{word-spacing:19.110161pt;}
.ws1f1{word-spacing:19.180800pt;}
.ws1d6{word-spacing:19.209067pt;}
.ws8f{word-spacing:19.224000pt;}
.ws25e{word-spacing:19.272000pt;}
.ws77{word-spacing:19.300800pt;}
.ws20f{word-spacing:19.324800pt;}
.wse7{word-spacing:19.344825pt;}
.ws1b9{word-spacing:19.406400pt;}
.ws18a{word-spacing:19.477867pt;}
.ws1da{word-spacing:19.511467pt;}
.ws34c{word-spacing:19.524023pt;}
.wsab{word-spacing:19.545600pt;}
.ws149{word-spacing:19.569600pt;}
.ws297{word-spacing:19.579200pt;}
.ws14d{word-spacing:19.627200pt;}
.ws34d{word-spacing:19.647754pt;}
.ws2df{word-spacing:19.694687pt;}
.ws78{word-spacing:19.699200pt;}
.ws1ba{word-spacing:19.708800pt;}
.ws11f{word-spacing:19.813867pt;}
.ws201{word-spacing:19.814400pt;}
.wsac{word-spacing:19.824000pt;}
.ws14b{word-spacing:19.828800pt;}
.ws16d{word-spacing:19.915733pt;}
.ws1c5{word-spacing:19.948800pt;}
.ws347{word-spacing:19.989083pt;}
.ws13a{word-spacing:20.082133pt;}
.ws24c{word-spacing:20.164800pt;}
.ws100{word-spacing:20.174400pt;}
.ws265{word-spacing:20.222400pt;}
.ws2b9{word-spacing:20.227200pt;}
.ws2b7{word-spacing:20.251200pt;}
.ws11a{word-spacing:20.265600pt;}
.ws102{word-spacing:20.280000pt;}
.ws10f{word-spacing:20.308800pt;}
.ws11b{word-spacing:20.318400pt;}
.ws304{word-spacing:20.334679pt;}
.ws147{word-spacing:20.361600pt;}
.ws146{word-spacing:20.380800pt;}
.ws12a{word-spacing:20.419200pt;}
.ws27f{word-spacing:20.449878pt;}
.ws324{word-spacing:20.454144pt;}
.ws11c{word-spacing:20.457600pt;}
.ws325{word-spacing:20.560810pt;}
.ws306{word-spacing:20.565076pt;}
.ws1e7{word-spacing:20.568000pt;}
.ws18e{word-spacing:20.592000pt;}
.ws355{word-spacing:20.594943pt;}
.ws18d{word-spacing:20.616000pt;}
.ws18c{word-spacing:20.620800pt;}
.ws28{word-spacing:20.625600pt;}
.wsdc{word-spacing:20.640000pt;}
.ws12e{word-spacing:20.654400pt;}
.ws305{word-spacing:20.671691pt;}
.ws21d{word-spacing:20.679154pt;}
.ws1{word-spacing:20.704104pt;}
.ws1ce{word-spacing:20.721600pt;}
.ws132{word-spacing:20.755200pt;}
.ws1c{word-spacing:20.779200pt;}
.ws1d{word-spacing:20.793600pt;}
.ws130{word-spacing:20.798400pt;}
.wsc0{word-spacing:20.913600pt;}
.wsc5{word-spacing:20.918400pt;}
.ws112{word-spacing:20.923200pt;}
.ws1e{word-spacing:20.928000pt;}
.ws151{word-spacing:20.990400pt;}
.ws29d{word-spacing:21.023467pt;}
.ws114{word-spacing:21.081600pt;}
.ws134{word-spacing:21.225600pt;}
.ws90{word-spacing:21.262560pt;}
.ws152{word-spacing:21.268800pt;}
.ws2eb{word-spacing:21.270215pt;}
.ws2cd{word-spacing:21.325867pt;}
.ws14f{word-spacing:21.362214pt;}
.ws6{word-spacing:21.368348pt;}
.ws10{word-spacing:21.384000pt;}
.ws1bc{word-spacing:21.398400pt;}
.wsf{word-spacing:21.412800pt;}
.ws145{word-spacing:21.441600pt;}
.ws2dc{word-spacing:21.472613pt;}
.ws2ed{word-spacing:21.484880pt;}
.ws280{word-spacing:21.512264pt;}
.ws92{word-spacing:21.567253pt;}
.ws2c5{word-spacing:21.628267pt;}
.ws183{word-spacing:21.652800pt;}
.ws1bd{word-spacing:21.868800pt;}
.ws185{word-spacing:21.873600pt;}
.ws184{word-spacing:21.883200pt;}
.ws1fd{word-spacing:21.936000pt;}
.ws1fe{word-spacing:21.969600pt;}
.ws1be{word-spacing:22.041600pt;}
.wsbe{word-spacing:22.080000pt;}
.ws66{word-spacing:22.111816pt;}
.ws15{word-spacing:22.156800pt;}
.ws1ef{word-spacing:22.233067pt;}
.ws24a{word-spacing:22.248000pt;}
.ws10e{word-spacing:22.252800pt;}
.ws148{word-spacing:22.367467pt;}
.ws34b{word-spacing:22.549051pt;}
.ws8e{word-spacing:22.574400pt;}
.ws1f8{word-spacing:22.593600pt;}
.ws14c{word-spacing:22.636800pt;}
.ws72{word-spacing:22.718400pt;}
.ws101{word-spacing:22.803733pt;}
.ws25d{word-spacing:22.862400pt;}
.wscb{word-spacing:22.896000pt;}
.ws1f9{word-spacing:22.910400pt;}
.ws1df{word-spacing:23.073600pt;}
.ws344{word-spacing:23.176244pt;}
.ws269{word-spacing:23.198400pt;}
.ws8d{word-spacing:23.308800pt;}
.ws17b{word-spacing:23.376000pt;}
.ws153{word-spacing:23.428800pt;}
.ws8{word-spacing:23.438400pt;}
.ws2da{word-spacing:23.500800pt;}
.ws154{word-spacing:23.515200pt;}
.ws131{word-spacing:23.544000pt;}
.ws2db{word-spacing:23.553600pt;}
.ws12f{word-spacing:23.577067pt;}
.ws20a{word-spacing:23.630400pt;}
.ws17d{word-spacing:23.678400pt;}
.ws113{word-spacing:23.745067pt;}
.ws1d1{word-spacing:23.793600pt;}
.ws94{word-spacing:23.836800pt;}
.ws1cf{word-spacing:23.937600pt;}
.ws24d{word-spacing:24.024000pt;}
.wsb8{word-spacing:24.057600pt;}
.ws2d1{word-spacing:24.072000pt;}
.ws1dd{word-spacing:24.105600pt;}
.ws298{word-spacing:24.129600pt;}
.ws1de{word-spacing:24.134400pt;}
.wsb7{word-spacing:24.139200pt;}
.ws76{word-spacing:24.220800pt;}
.ws293{word-spacing:24.264000pt;}
.ws357{word-spacing:24.387962pt;}
.ws1f7{word-spacing:24.388800pt;}
.ws299{word-spacing:24.436800pt;}
.ws1f4{word-spacing:24.484800pt;}
.ws1f5{word-spacing:24.523200pt;}
.ws204{word-spacing:24.724800pt;}
.wsa2{word-spacing:24.825600pt;}
.ws167{word-spacing:25.281600pt;}
.ws181{word-spacing:25.420800pt;}
.ws168{word-spacing:25.430400pt;}
.wsca{word-spacing:25.478400pt;}
.ws1e8{word-spacing:25.558933pt;}
.ws182{word-spacing:25.569600pt;}
.ws2a9{word-spacing:25.574400pt;}
.ws19{word-spacing:25.579200pt;}
.ws2be{word-spacing:25.588800pt;}
.ws2aa{word-spacing:25.617600pt;}
.ws1a{word-spacing:25.632000pt;}
.ws2ac{word-spacing:25.699200pt;}
.ws2bd{word-spacing:25.771200pt;}
.ws115{word-spacing:25.785600pt;}
.wsa{word-spacing:25.809600pt;}
.ws116{word-spacing:25.934400pt;}
.ws3{word-spacing:25.939200pt;}
.ws29f{word-spacing:25.963200pt;}
.ws4{word-spacing:25.991467pt;}
.ws1b1{word-spacing:26.030400pt;}
.ws5{word-spacing:26.036267pt;}
.ws24b{word-spacing:26.064000pt;}
.ws14a{word-spacing:26.163733pt;}
.ws1b3{word-spacing:26.241600pt;}
.wsd4{word-spacing:26.256000pt;}
.wsd6{word-spacing:26.260800pt;}
.wsba{word-spacing:26.337600pt;}
.wsb9{word-spacing:26.356800pt;}
.ws17c{word-spacing:26.466133pt;}
.wsbb{word-spacing:26.481600pt;}
.ws23c{word-spacing:26.496000pt;}
.wsaf{word-spacing:26.539200pt;}
.wsb0{word-spacing:26.692800pt;}
.wsa8{word-spacing:26.721600pt;}
.ws2e{word-spacing:26.856000pt;}
.ws1dc{word-spacing:26.903467pt;}
.ws253{word-spacing:27.014400pt;}
.ws254{word-spacing:27.086400pt;}
.wsa7{word-spacing:27.096000pt;}
.ws1bf{word-spacing:27.249600pt;}
.ws17e{word-spacing:27.268800pt;}
.ws1c1{word-spacing:27.278400pt;}
.ws1ac{word-spacing:27.408000pt;}
.ws1a9{word-spacing:27.460800pt;}
.ws165{word-spacing:27.700800pt;}
.ws166{word-spacing:27.835200pt;}
.ws1ed{word-spacing:27.902400pt;}
.ws2c8{word-spacing:28.051200pt;}
.ws2ab{word-spacing:28.381867pt;}
.ws155{word-spacing:28.387200pt;}
.ws35b{word-spacing:28.590576pt;}
.ws292{word-spacing:28.656000pt;}
.ws1b2{word-spacing:28.684267pt;}
.ws172{word-spacing:28.824000pt;}
.ws291{word-spacing:28.900800pt;}
.ws174{word-spacing:28.920000pt;}
.ws307{word-spacing:28.995904pt;}
.ws12c{word-spacing:29.371200pt;}
.ws1e3{word-spacing:29.409600pt;}
.ws12d{word-spacing:29.500800pt;}
.ws28d{word-spacing:29.548800pt;}
.ws1e5{word-spacing:29.596800pt;}
.ws189{word-spacing:29.673600pt;}
.wsd3{word-spacing:30.057600pt;}
.ws1b8{word-spacing:30.100800pt;}
.ws27{word-spacing:30.168000pt;}
.ws359{word-spacing:30.211889pt;}
.ws358{word-spacing:30.271622pt;}
.ws23f{word-spacing:30.772800pt;}
.ws18{word-spacing:31.248000pt;}
.ws17{word-spacing:31.276800pt;}
.ws1f6{word-spacing:31.303467pt;}
.ws28e{word-spacing:31.449600pt;}
.ws173{word-spacing:31.908800pt;}
.ws1e4{word-spacing:32.042133pt;}
.ws9a{word-spacing:32.092800pt;}
.ws2f{word-spacing:33.268800pt;}
.ws30{word-spacing:33.283200pt;}
.ws1aa{word-spacing:34.025600pt;}
.ws17f{word-spacing:35.068800pt;}
.ws2c{word-spacing:35.798400pt;}
.ws25{word-spacing:36.196800pt;}
.ws26{word-spacing:36.388800pt;}
.ws0{word-spacing:37.269520pt;}
.ws13d{word-spacing:37.574400pt;}
.ws2{word-spacing:37.578855pt;}
.ws248{word-spacing:40.147200pt;}
.ws353{word-spacing:40.797357pt;}
.wsb{word-spacing:42.897600pt;}
.wsd{word-spacing:43.171200pt;}
.wsce{word-spacing:44.476800pt;}
.ws1c2{word-spacing:44.496000pt;}
.ws1c3{word-spacing:44.548800pt;}
.ws2d{word-spacing:44.668800pt;}
.ws1bb{word-spacing:44.712000pt;}
.wsa3{word-spacing:48.744000pt;}
.ws1f{word-spacing:49.200000pt;}
.ws20{word-spacing:49.516800pt;}
.wsc7{word-spacing:49.636800pt;}
.wsfa{word-spacing:49.857954pt;}
.ws211{word-spacing:50.243632pt;}
.wsee{word-spacing:51.418477pt;}
.ws150{word-spacing:55.867200pt;}
.wsf1{word-spacing:58.821560pt;}
.ws7{word-spacing:65.433600pt;}
.ws15a{word-spacing:66.624000pt;}
.wsd1{word-spacing:83.990400pt;}
.ws21{word-spacing:96.009600pt;}
.ws106{word-spacing:124.230400pt;}
.ws26d{word-spacing:125.499648pt;}
.ws26f{word-spacing:127.760000pt;}
.ws190{word-spacing:129.411340pt;}
.ws212{word-spacing:984.686400pt;}
.ws270{word-spacing:1006.593600pt;}
.wsfb{word-spacing:1798.856719pt;}
._1e{margin-left:-17.251200pt;}
._10{margin-left:-15.098667pt;}
._11{margin-left:-14.171467pt;}
._1d{margin-left:-9.508800pt;}
._34{margin-left:-3.124672pt;}
._14{margin-left:-1.914192pt;}
._a{margin-left:-0.942922pt;}
._d{width:0.977867pt;}
._5{width:2.348267pt;}
._2d{width:3.368000pt;}
._3a{width:5.832597pt;}
._3d{width:7.736128pt;}
._e{width:9.550667pt;}
._16{width:10.925914pt;}
._2f{width:11.890667pt;}
._12{width:12.819188pt;}
._7{width:13.833600pt;}
._c{width:15.253143pt;}
._f{width:16.568000pt;}
._b{width:18.201372pt;}
._18{width:19.914166pt;}
._1a{width:20.961600pt;}
._17{width:22.375585pt;}
._3c{width:23.296000pt;}
._3{width:24.475200pt;}
._15{width:25.566577pt;}
._2{width:26.984533pt;}
._8{width:28.340267pt;}
._31{width:29.419200pt;}
._2e{width:30.494400pt;}
._35{width:31.401600pt;}
._6{width:32.347200pt;}
._9{width:34.300800pt;}
._4{width:35.582033pt;}
._1{width:36.672183pt;}
._0{width:38.304192pt;}
._3b{width:41.246400pt;}
._1c{width:45.801600pt;}
._19{width:49.977600pt;}
._1f{width:52.650455pt;}
._1b{width:54.067200pt;}
._23{width:55.640805pt;}
._30{width:56.976000pt;}
._28{width:58.941025pt;}
._36{width:63.925015pt;}
._25{width:65.470531pt;}
._22{width:67.930763pt;}
._24{width:69.099280pt;}
._37{width:77.785065pt;}
._2b{width:85.981172pt;}
._27{width:90.016847pt;}
._21{width:99.084984pt;}
._2c{width:102.213473pt;}
._38{width:103.946575pt;}
._39{width:109.432053pt;}
._2a{width:137.590034pt;}
._29{width:140.916387pt;}
._33{width:152.703185pt;}
._32{width:174.520167pt;}
._13{width:202.053542pt;}
._26{width:217.444894pt;}
._20{width:221.700833pt;}
.fs13{font-size:19.980267pt;}
.fs1e{font-size:23.721600pt;}
.fs17{font-size:24.331797pt;}
.fs20{font-size:24.334161pt;}
.fsb{font-size:24.885867pt;}
.fsc{font-size:26.131733pt;}
.fsa{font-size:29.865600pt;}
.fsf{font-size:31.380267pt;}
.fs18{font-size:31.883200pt;}
.fs1b{font-size:31.883733pt;}
.fs4{font-size:31.995733pt;}
.fs25{font-size:32.000000pt;}
.fs12{font-size:33.229867pt;}
.fs5{font-size:33.600000pt;}
.fs11{font-size:36.336533pt;}
.fs15{font-size:37.304000pt;}
.fs9{font-size:37.332800pt;}
.fs21{font-size:38.014400pt;}
.fs24{font-size:38.755733pt;}
.fsd{font-size:39.225067pt;}
.fs28{font-size:39.240000pt;}
.fs10{font-size:39.294400pt;}
.fse{font-size:39.398400pt;}
.fs1d{font-size:39.593067pt;}
.fs23{font-size:40.000000pt;}
.fs16{font-size:40.545929pt;}
.fs1f{font-size:40.549623pt;}
.fs27{font-size:42.052267pt;}
.fs26{font-size:42.097067pt;}
.fs22{font-size:42.510933pt;}
.fs1a{font-size:42.511467pt;}
.fs2a{font-size:42.578133pt;}
.fs29{font-size:42.621867pt;}
.fs6{font-size:42.666133pt;}
.fs19{font-size:42.685867pt;}
.fs1c{font-size:42.990933pt;}
.fs3{font-size:48.000000pt;}
.fs14{font-size:48.950587pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:61.332800pt;}
.fs8{font-size:63.999467pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:35.452320pt;}
.y56{bottom:48.755867pt;}
.y2c7{bottom:89.422120pt;}
.y274{bottom:89.423373pt;}
.y3e{bottom:89.423600pt;}
.y26e{bottom:89.423667pt;}
.y2a3{bottom:89.424133pt;}
.yc7{bottom:89.424173pt;}
.y14f{bottom:89.424667pt;}
.y123{bottom:89.425200pt;}
.y1d6{bottom:89.426267pt;}
.y124{bottom:94.790533pt;}
.y2c6{bottom:102.121693pt;}
.y273{bottom:102.802400pt;}
.y26d{bottom:102.802693pt;}
.yc6{bottom:102.803200pt;}
.y1aa{bottom:104.164267pt;}
.y14e{bottom:104.239867pt;}
.y122{bottom:104.316000pt;}
.y1d5{bottom:104.317067pt;}
.y2a2{bottom:104.317467pt;}
.y3d{bottom:109.454213pt;}
.y2c5{bottom:114.745547pt;}
.y272{bottom:116.106760pt;}
.y26c{bottom:116.107067pt;}
.y14d{bottom:117.467507pt;}
.y1a9{bottom:118.904800pt;}
.y121{bottom:119.131200pt;}
.y14c{bottom:119.131467pt;}
.y1d4{bottom:119.207867pt;}
.y2a1{bottom:120.115467pt;}
.y3c{bottom:121.473267pt;}
.y2c4{bottom:127.445120pt;}
.y271{bottom:129.411133pt;}
.y3b{bottom:133.416587pt;}
.y2fb{bottom:133.793747pt;}
.y337{bottom:133.795067pt;}
.y120{bottom:133.946400pt;}
.y11e{bottom:133.946933pt;}
.y1d3{bottom:134.098667pt;}
.y1a8{bottom:134.627200pt;}
.y2a0{bottom:135.006267pt;}
.y14b{bottom:136.743867pt;}
.y11f{bottom:139.237733pt;}
.y2c3{bottom:140.144693pt;}
.y270{bottom:142.790160pt;}
.y3a{bottom:145.435640pt;}
.y336{bottom:147.477027pt;}
.y2fa{bottom:147.551440pt;}
.y11d{bottom:148.762133pt;}
.y1d2{bottom:148.989467pt;}
.y1a7{bottom:149.291733pt;}
.y29f{bottom:149.821467pt;}
.y14a{bottom:151.561733pt;}
.y2c2{bottom:152.768533pt;}
.y26f{bottom:156.094533pt;}
.y39{bottom:157.454680pt;}
.y335{bottom:161.083253pt;}
.y2f9{bottom:161.233413pt;}
.y1a6{bottom:163.426573pt;}
.y11c{bottom:163.578533pt;}
.y1d1{bottom:163.880267pt;}
.y1cf{bottom:163.881867pt;}
.y29e{bottom:164.712267pt;}
.y1a5{bottom:165.014267pt;}
.y149{bottom:167.359733pt;}
.y1d0{bottom:169.171600pt;}
.y38{bottom:169.473733pt;}
.y2c1{bottom:174.160533pt;}
.y334{bottom:174.765213pt;}
.y2f8{bottom:174.915373pt;}
.y29d{bottom:177.184173pt;}
.y11b{bottom:178.318133pt;}
.y1ce{bottom:178.772667pt;}
.y29c{bottom:179.527867pt;}
.y1a4{bottom:180.132173pt;}
.y148{bottom:182.174933pt;}
.y1a3{bottom:182.552133pt;}
.y333{bottom:188.447173pt;}
.y2f7{bottom:188.597333pt;}
.y37{bottom:189.429747pt;}
.y1cd{bottom:193.663467pt;}
.y29b{bottom:195.401867pt;}
.y1a2{bottom:198.274533pt;}
.y36{bottom:201.448800pt;}
.y332{bottom:202.129147pt;}
.y2f6{bottom:202.279293pt;}
.y11a{bottom:205.001467pt;}
.y1cc{bottom:208.478667pt;}
.y1ca{bottom:208.480800pt;}
.y1a1{bottom:210.595240pt;}
.y29a{bottom:211.201467pt;}
.y147{bottom:211.504133pt;}
.y1a0{bottom:213.014533pt;}
.y41{bottom:213.467120pt;}
.y1cb{bottom:213.845600pt;}
.y2c0{bottom:215.659493pt;}
.y331{bottom:215.811107pt;}
.y2f5{bottom:216.036987pt;}
.y35{bottom:221.404080pt;}
.y1c9{bottom:223.371600pt;}
.y40{bottom:225.410440pt;}
.y19f{bottom:226.242440pt;}
.y299{bottom:226.999467pt;}
.y2bf{bottom:228.359067pt;}
.y19e{bottom:228.661733pt;}
.y330{bottom:229.417333pt;}
.y2f4{bottom:229.718947pt;}
.y34{bottom:233.423133pt;}
.y3f{bottom:237.429480pt;}
.y1c8{bottom:238.262400pt;}
.y96{bottom:239.849333pt;}
.yc5{bottom:239.852533pt;}
.y298{bottom:241.890267pt;}
.y19d{bottom:241.965373pt;}
.y32f{bottom:243.097547pt;}
.y2f3{bottom:243.400920pt;}
.y19c{bottom:244.385733pt;}
.y33{bottom:245.442187pt;}
.y146{bottom:248.392133pt;}
.y2be{bottom:249.675467pt;}
.y119{bottom:250.507600pt;}
.y1c7{bottom:253.153200pt;}
.y95{bottom:254.664533pt;}
.y93{bottom:254.666133pt;}
.yc4{bottom:254.743333pt;}
.y297{bottom:256.706400pt;}
.y32e{bottom:256.779507pt;}
.y2f2{bottom:257.158613pt;}
.y32{bottom:257.461227pt;}
.y94{bottom:259.955867pt;}
.y19b{bottom:260.032533pt;}
.y118{bottom:262.903907pt;}
.y145{bottom:263.207333pt;}
.y117{bottom:265.323200pt;}
.y1c6{bottom:268.044000pt;}
.y31{bottom:269.404547pt;}
.y92{bottom:269.405733pt;}
.yc3{bottom:269.634133pt;}
.y32d{bottom:270.461467pt;}
.y2f1{bottom:270.840573pt;}
.y296{bottom:272.580000pt;}
.y19a{bottom:274.772133pt;}
.y144{bottom:278.098133pt;}
.y116{bottom:281.121200pt;}
.y114{bottom:281.121733pt;}
.y30{bottom:281.423600pt;}
.y32c{bottom:284.143427pt;}
.y91{bottom:284.220933pt;}
.yc2{bottom:284.524933pt;}
.y2f0{bottom:284.598267pt;}
.y115{bottom:286.412533pt;}
.y295{bottom:287.395200pt;}
.y293{bottom:287.395600pt;}
.y199{bottom:289.511733pt;}
.y197{bottom:289.512267pt;}
.y2bd{bottom:291.249600pt;}
.y143{bottom:291.250173pt;}
.y294{bottom:292.762133pt;}
.y142{bottom:292.914533pt;}
.y198{bottom:294.878667pt;}
.y113{bottom:295.937200pt;}
.y1c4{bottom:297.373200pt;}
.y1c3{bottom:297.376800pt;}
.y32b{bottom:297.749653pt;}
.y2ef{bottom:298.202827pt;}
.y90{bottom:298.960533pt;}
.y8e{bottom:298.963867pt;}
.yc1{bottom:299.415733pt;}
.y1c5{bottom:302.740133pt;}
.y292{bottom:303.269200pt;}
.y290{bottom:303.270267pt;}
.y196{bottom:304.252267pt;}
.y8f{bottom:304.327467pt;}
.y2bc{bottom:305.913600pt;}
.y291{bottom:308.560533pt;}
.y141{bottom:310.526933pt;}
.y112{bottom:310.601373pt;}
.y32a{bottom:311.431627pt;}
.y2ee{bottom:311.960520pt;}
.y111{bottom:312.189067pt;}
.y8d{bottom:313.779067pt;}
.yc0{bottom:314.382133pt;}
.y2f{bottom:314.456533pt;}
.y2d{bottom:314.459200pt;}
.y28f{bottom:318.085467pt;}
.y2e{bottom:319.747867pt;}
.y195{bottom:319.975200pt;}
.y2bb{bottom:320.577600pt;}
.y329{bottom:325.113587pt;}
.y140{bottom:325.342133pt;}
.y2ed{bottom:325.642480pt;}
.y230{bottom:326.854000pt;}
.y8c{bottom:328.518667pt;}
.y2c{bottom:329.198800pt;}
.ybf{bottom:329.272933pt;}
.y110{bottom:329.801867pt;}
.y28e{bottom:332.976800pt;}
.y2ba{bottom:335.242800pt;}
.y194{bottom:335.622933pt;}
.y1c2{bottom:335.852400pt;}
.y13f{bottom:338.569773pt;}
.y328{bottom:338.795547pt;}
.y2ec{bottom:339.324440pt;}
.y13e{bottom:340.233733pt;}
.y22f{bottom:341.744800pt;}
.y22d{bottom:341.745867pt;}
.ybd{bottom:342.122800pt;}
.y8b{bottom:343.333867pt;}
.y2b{bottom:343.938400pt;}
.ybe{bottom:344.163733pt;}
.ybc{bottom:344.164800pt;}
.y10f{bottom:345.599867pt;}
.y10d{bottom:345.600933pt;}
.y22e{bottom:347.036133pt;}
.y28d{bottom:348.775200pt;}
.y2b9{bottom:349.908000pt;}
.y1c1{bottom:350.743200pt;}
.y10e{bottom:350.891200pt;}
.y193{bottom:351.345333pt;}
.y327{bottom:352.477507pt;}
.y2eb{bottom:353.006400pt;}
.y22c{bottom:356.636667pt;}
.y13d{bottom:357.846133pt;}
.y8a{bottom:358.073467pt;}
.y2a{bottom:358.678000pt;}
.ybb{bottom:359.055600pt;}
.y10c{bottom:361.323333pt;}
.y28c{bottom:364.573600pt;}
.y1c0{bottom:365.634000pt;}
.y326{bottom:366.083733pt;}
.y192{bottom:366.084933pt;}
.y190{bottom:366.085467pt;}
.y2ea{bottom:366.688360pt;}
.y13c{bottom:371.073773pt;}
.y191{bottom:371.376267pt;}
.y22b{bottom:371.527467pt;}
.y229{bottom:371.532267pt;}
.y13b{bottom:372.661467pt;}
.y89{bottom:372.888667pt;}
.y29{bottom:373.494400pt;}
.yba{bottom:373.946400pt;}
.yb8{bottom:373.947467pt;}
.y10b{bottom:374.550973pt;}
.y10a{bottom:376.138667pt;}
.y22a{bottom:376.818800pt;}
.y28b{bottom:378.028307pt;}
.yb9{bottom:379.237733pt;}
.y325{bottom:379.765693pt;}
.y2b8{bottom:380.224133pt;}
.y2e9{bottom:380.446053pt;}
.y28a{bottom:380.449200pt;}
.y1bf{bottom:380.524800pt;}
.y18f{bottom:380.749467pt;}
.y18d{bottom:380.750000pt;}
.y87{bottom:385.662933pt;}
.y18e{bottom:386.116400pt;}
.y228{bottom:386.423067pt;}
.y88{bottom:387.628267pt;}
.y86{bottom:387.628800pt;}
.y28{bottom:388.234000pt;}
.y13a{bottom:388.686307pt;}
.yb7{bottom:388.838267pt;}
.y139{bottom:390.349733pt;}
.y109{bottom:392.163507pt;}
.y324{bottom:393.447667pt;}
.y108{bottom:393.751200pt;}
.y2e8{bottom:394.128027pt;}
.y53{bottom:394.579867pt;}
.y1be{bottom:395.415600pt;}
.y18b{bottom:395.489600pt;}
.y2b7{bottom:395.870933pt;}
.y84{bottom:400.403067pt;}
.y18c{bottom:400.856667pt;}
.y227{bottom:401.313867pt;}
.y85{bottom:402.444000pt;}
.y83{bottom:402.444533pt;}
.y27{bottom:402.973600pt;}
.yb6{bottom:403.729067pt;}
.y138{bottom:405.618840pt;}
.y137{bottom:406.374573pt;}
.y323{bottom:407.129627pt;}
.y2e7{bottom:407.885720pt;}
.y136{bottom:407.963333pt;}
.y18a{bottom:410.229200pt;}
.y1bd{bottom:410.306400pt;}
.y2b6{bottom:410.534933pt;}
.y289{bottom:410.685600pt;}
.y107{bottom:411.439200pt;}
.y105{bottom:411.441333pt;}
.y52{bottom:411.890133pt;}
.y81{bottom:415.218800pt;}
.y244{bottom:415.226667pt;}
.y226{bottom:416.204667pt;}
.y106{bottom:416.730533pt;}
.y82{bottom:417.184133pt;}
.y80{bottom:417.184667pt;}
.y26{bottom:417.713200pt;}
.y24{bottom:417.714400pt;}
.yb5{bottom:418.393600pt;}
.yb3{bottom:418.394133pt;}
.y322{bottom:420.811587pt;}
.y2e6{bottom:421.491947pt;}
.y25{bottom:423.080133pt;}
.y189{bottom:423.306840pt;}
.yb4{bottom:423.684933pt;}
.y188{bottom:424.972933pt;}
.y1bc{bottom:425.197200pt;}
.y2b5{bottom:425.198933pt;}
.y135{bottom:425.651333pt;}
.y104{bottom:427.163733pt;}
.y51{bottom:429.276400pt;}
.y7e{bottom:429.958933pt;}
.y243{bottom:430.193067pt;}
.y225{bottom:431.095467pt;}
.y7f{bottom:431.999867pt;}
.y7d{bottom:432.003733pt;}
.y23{bottom:432.529600pt;}
.yb2{bottom:433.284933pt;}
.yb0{bottom:433.286000pt;}
.y321{bottom:434.417813pt;}
.y2e5{bottom:435.249640pt;}
.y1bb{bottom:437.669107pt;}
.yb1{bottom:438.576267pt;}
.y2b4{bottom:439.862933pt;}
.y1ba{bottom:440.088933pt;}
.y134{bottom:440.466533pt;}
.y103{bottom:441.978933pt;}
.y187{bottom:442.509733pt;}
.y242{bottom:445.159467pt;}
.y224{bottom:445.986267pt;}
.y50{bottom:446.586667pt;}
.y7c{bottom:446.743333pt;}
.y22{bottom:447.269200pt;}
.y20{bottom:447.270133pt;}
.y320{bottom:448.099773pt;}
.yaf{bottom:448.176800pt;}
.y288{bottom:448.480800pt;}
.y2e4{bottom:448.931600pt;}
.y21{bottom:452.560533pt;}
.y2b3{bottom:454.526933pt;}
.y133{bottom:455.281733pt;}
.y131{bottom:455.282267pt;}
.y1b9{bottom:455.886933pt;}
.y102{bottom:456.794133pt;}
.y186{bottom:457.249333pt;}
.y241{bottom:460.050267pt;}
.y132{bottom:460.648667pt;}
.y223{bottom:460.877067pt;}
.y7b{bottom:461.558533pt;}
.y31f{bottom:461.781747pt;}
.y2e3{bottom:462.613560pt;}
.y1f{bottom:462.992533pt;}
.yac{bottom:463.066933pt;}
.yae{bottom:463.067600pt;}
.y287{bottom:463.296000pt;}
.y4f{bottom:463.896933pt;}
.yad{bottom:468.358933pt;}
.y1b8{bottom:468.358973pt;}
.y2b2{bottom:469.190933pt;}
.y130{bottom:470.098933pt;}
.y1b7{bottom:470.780400pt;}
.y101{bottom:471.610267pt;}
.y185{bottom:471.988933pt;}
.y240{bottom:475.016667pt;}
.y31e{bottom:475.463707pt;}
.y222{bottom:475.767867pt;}
.y2e2{bottom:476.295533pt;}
.y7a{bottom:476.298133pt;}
.y1e{bottom:477.732533pt;}
.yab{bottom:477.958933pt;}
.ya9{bottom:477.964800pt;}
.y286{bottom:478.186800pt;}
.y4e{bottom:481.207200pt;}
.y2b1{bottom:481.511640pt;}
.yaa{bottom:483.250267pt;}
.y2b0{bottom:483.856000pt;}
.y12f{bottom:485.896933pt;}
.y1b6{bottom:486.654000pt;}
.y184{bottom:486.728533pt;}
.y100{bottom:487.332667pt;}
.y31d{bottom:489.145667pt;}
.y23f{bottom:489.907467pt;}
.y2e1{bottom:490.053227pt;}
.y221{bottom:490.658667pt;}
.y79{bottom:491.113333pt;}
.ya8{bottom:492.855600pt;}
.y285{bottom:493.002000pt;}
.y1d{bottom:493.455467pt;}
.y4d{bottom:498.593467pt;}
.y2af{bottom:499.502800pt;}
.yff{bottom:499.728973pt;}
.y12e{bottom:500.712133pt;}
.y183{bottom:501.392533pt;}
.y1b5{bottom:501.544800pt;}
.yfe{bottom:502.148267pt;}
.y31c{bottom:502.751893pt;}
.y2e0{bottom:503.735187pt;}
.y23e{bottom:504.873867pt;}
.y220{bottom:505.549467pt;}
.y78{bottom:505.852933pt;}
.ya7{bottom:507.746400pt;}
.y284{bottom:507.892800pt;}
.y282{bottom:507.895467pt;}
.y1c{bottom:509.178267pt;}
.y2ae{bottom:511.823507pt;}
.y283{bottom:513.184133pt;}
.y2ad{bottom:514.168400pt;}
.y12d{bottom:515.602933pt;}
.y4c{bottom:515.903733pt;}
.y182{bottom:516.131333pt;}
.yfd{bottom:516.283107pt;}
.y31b{bottom:516.433853pt;}
.y1b4{bottom:516.435600pt;}
.y2df{bottom:517.417147pt;}
.yfc{bottom:517.946000pt;}
.y23d{bottom:519.764667pt;}
.y21e{bottom:520.215600pt;}
.y77{bottom:520.668133pt;}
.ya6{bottom:522.637200pt;}
.y281{bottom:522.710667pt;}
.y1b{bottom:524.901067pt;}
.y21f{bottom:525.580933pt;}
.y12c{bottom:528.755640pt;}
.y2ac{bottom:529.815200pt;}
.y31a{bottom:530.115827pt;}
.y12b{bottom:530.418933pt;}
.y1b3{bottom:531.099600pt;}
.y2de{bottom:531.174840pt;}
.y181{bottom:531.853733pt;}
.y4b{bottom:533.214000pt;}
.y23c{bottom:534.731067pt;}
.y21d{bottom:535.106400pt;}
.y76{bottom:535.407733pt;}
.ya5{bottom:537.528000pt;}
.y280{bottom:537.601467pt;}
.y18{bottom:540.622267pt;}
.y1a{bottom:540.623467pt;}
.y1b2{bottom:543.571507pt;}
.y319{bottom:543.797787pt;}
.y2ab{bottom:544.479200pt;}
.y2dd{bottom:544.856800pt;}
.y19{bottom:545.914800pt;}
.y1b1{bottom:545.991333pt;}
.y12a{bottom:546.443773pt;}
.y180{bottom:546.594533pt;}
.y129{bottom:548.031333pt;}
.y127{bottom:548.031467pt;}
.yf8{bottom:548.106933pt;}
.yfb{bottom:548.560400pt;}
.y23b{bottom:549.621867pt;}
.y21c{bottom:549.997200pt;}
.y4a{bottom:550.600267pt;}
.ya4{bottom:552.418800pt;}
.y27f{bottom:552.492267pt;}
.y128{bottom:553.398267pt;}
.yfa{bottom:554.380973pt;}
.y17{bottom:555.363067pt;}
.y2aa{bottom:556.799907pt;}
.y318{bottom:557.479747pt;}
.y2dc{bottom:558.614493pt;}
.y2a9{bottom:559.143600pt;}
.y17f{bottom:561.336267pt;}
.y1b0{bottom:561.789333pt;}
.y75{bottom:562.091200pt;}
.yf9{bottom:562.544707pt;}
.yf7{bottom:563.300440pt;}
.y126{bottom:564.056440pt;}
.y23a{bottom:564.588267pt;}
.y21b{bottom:564.888000pt;}
.yf6{bottom:564.963600pt;}
.y125{bottom:565.719200pt;}
.y27e{bottom:567.307467pt;}
.ya3{bottom:567.309600pt;}
.y49{bottom:567.910533pt;}
.y16{bottom:570.104133pt;}
.y317{bottom:571.085973pt;}
.y2db{bottom:572.220733pt;}
.y2a8{bottom:572.371507pt;}
.y2a7{bottom:574.790400pt;}
.y1af{bottom:576.680533pt;}
.y17e{bottom:576.983067pt;}
.y239{bottom:579.554667pt;}
.y219{bottom:579.783067pt;}
.y27d{bottom:582.198267pt;}
.ya2{bottom:582.200400pt;}
.y27b{bottom:582.201467pt;}
.y316{bottom:584.767933pt;}
.y21a{bottom:585.146267pt;}
.y48{bottom:585.220800pt;}
.y15{bottom:585.826533pt;}
.y13{bottom:585.827067pt;}
.y2da{bottom:585.978427pt;}
.y27c{bottom:587.489600pt;}
.y17d{bottom:589.303773pt;}
.y14{bottom:591.193600pt;}
.yf5{bottom:591.345147pt;}
.y17c{bottom:591.723067pt;}
.y1ae{bottom:592.554133pt;}
.y1ac{bottom:592.555867pt;}
.yf4{bottom:593.007773pt;}
.y238{bottom:594.445467pt;}
.y218{bottom:594.673867pt;}
.yf3{bottom:595.427733pt;}
.ya1{bottom:596.864400pt;}
.y27a{bottom:597.016667pt;}
.y1ad{bottom:597.845467pt;}
.y315{bottom:598.449893pt;}
.y2d9{bottom:599.660387pt;}
.y12{bottom:600.566667pt;}
.y10{bottom:600.567333pt;}
.y2a6{bottom:602.456533pt;}
.y47{bottom:602.607067pt;}
.y11{bottom:605.933733pt;}
.y74{bottom:606.388267pt;}
.y17b{bottom:607.445467pt;}
.y1ab{bottom:607.446667pt;}
.y237{bottom:609.411867pt;}
.y217{bottom:609.564667pt;}
.y17a{bottom:611.223760pt;}
.ya0{bottom:611.755200pt;}
.y279{bottom:611.907467pt;}
.y314{bottom:612.131867pt;}
.yf2{bottom:612.586533pt;}
.y2d8{bottom:613.418080pt;}
.yf{bottom:615.382533pt;}
.yd{bottom:615.384667pt;}
.y46{bottom:619.917333pt;}
.ye{bottom:620.673867pt;}
.y73{bottom:621.127867pt;}
.y236{bottom:624.302667pt;}
.y216{bottom:624.455467pt;}
.y179{bottom:624.528133pt;}
.y313{bottom:625.813827pt;}
.y9f{bottom:626.646000pt;}
.y278{bottom:626.722667pt;}
.y2d7{bottom:627.100040pt;}
.yf1{bottom:627.401733pt;}
.yc{bottom:630.124267pt;}
.y72{bottom:635.944133pt;}
.y45{bottom:637.227600pt;}
.y178{bottom:637.832493pt;}
.y211{bottom:638.060173pt;}
.y235{bottom:639.269067pt;}
.y215{bottom:639.346267pt;}
.y312{bottom:639.420053pt;}
.y2d6{bottom:640.857733pt;}
.y9e{bottom:641.536800pt;}
.y277{bottom:641.613467pt;}
.y2a5{bottom:641.991467pt;}
.yb{bottom:644.863867pt;}
.y210{bottom:649.246853pt;}
.y177{bottom:651.211533pt;}
.y20f{bottom:651.439640pt;}
.y71{bottom:651.666533pt;}
.y311{bottom:653.102013pt;}
.yf0{bottom:653.858267pt;}
.y233{bottom:654.162400pt;}
.y214{bottom:654.237067pt;}
.y44{bottom:654.613867pt;}
.y276{bottom:656.428667pt;}
.y9d{bottom:656.429067pt;}
.y2a4{bottom:656.655467pt;}
.y234{bottom:659.527333pt;}
.ya{bottom:659.603467pt;}
.yef{bottom:663.080133pt;}
.y176{bottom:664.515893pt;}
.y20e{bottom:665.423773pt;}
.y70{bottom:666.408133pt;}
.y310{bottom:666.783973pt;}
.y213{bottom:669.127867pt;}
.y232{bottom:669.128800pt;}
.y275{bottom:671.319467pt;}
.y43{bottom:671.924133pt;}
.y9c{bottom:672.302667pt;}
.y9{bottom:674.418667pt;}
.y175{bottom:677.820267pt;}
.y20d{bottom:679.483640pt;}
.y30f{bottom:680.465947pt;}
.y6f{bottom:682.206133pt;}
.y2d5{bottom:683.792667pt;}
.y212{bottom:684.018667pt;}
.y231{bottom:684.019600pt;}
.y9b{bottom:687.193467pt;}
.y42{bottom:689.234400pt;}
.y20c{bottom:691.350853pt;}
.y20b{bottom:693.467773pt;}
.y30e{bottom:694.147907pt;}
.yed{bottom:694.677600pt;}
.y6e{bottom:696.945733pt;}
.y2d4{bottom:697.095973pt;}
.y159{bottom:699.963200pt;}
.yee{bottom:699.968400pt;}
.y8{bottom:701.026533pt;}
.y99{bottom:702.085867pt;}
.y20a{bottom:706.091440pt;}
.y9a{bottom:707.451733pt;}
.y209{bottom:707.527333pt;}
.y30d{bottom:707.748173pt;}
.yec{bottom:707.829640pt;}
.yeb{bottom:709.492933pt;}
.y2ca{bottom:710.021000pt;}
.y2d3{bottom:710.475000pt;}
.y6d{bottom:711.760933pt;}
.y26a{bottom:712.591787pt;}
.y26b{bottom:713.272640pt;}
.y269{bottom:714.708533pt;}
.y150{bottom:716.873733pt;}
.y98{bottom:716.976667pt;}
.y30c{bottom:721.430133pt;}
.y2c9{bottom:723.325360pt;}
.y151{bottom:724.421613pt;}
.y162{bottom:724.421733pt;}
.y6c{bottom:726.500933pt;}
.yea{bottom:727.105333pt;}
.y200{bottom:729.836267pt;}
.y1e5{bottom:731.013600pt;}
.y97{bottom:731.868533pt;}
.y2d2{bottom:733.076320pt;}
.y30b{bottom:735.112107pt;}
.y266{bottom:736.426267pt;}
.y2c8{bottom:736.629733pt;}
.y1e6{bottom:736.650933pt;}
.y251{bottom:737.310800pt;}
.y15a{bottom:737.829733pt;}
.y163{bottom:739.854840pt;}
.y267{bottom:740.154667pt;}
.y252{bottom:740.992000pt;}
.ye9{bottom:741.921467pt;}
.y69{bottom:742.223200pt;}
.y6b{bottom:742.223333pt;}
.y152{bottom:744.999093pt;}
.y2d1{bottom:745.775893pt;}
.y1f2{bottom:746.932267pt;}
.y6a{bottom:747.590267pt;}
.y265{bottom:747.863867pt;}
.y250{bottom:748.637200pt;}
.y30a{bottom:748.794067pt;}
.y1d7{bottom:749.210800pt;}
.y7{bottom:751.065600pt;}
.y164{bottom:755.285000pt;}
.y1f3{bottom:755.401880pt;}
.ye8{bottom:756.812267pt;}
.y257{bottom:757.513200pt;}
.y1d8{bottom:757.518400pt;}
.y68{bottom:758.021200pt;}
.y245{bottom:758.133200pt;}
.y2d0{bottom:758.475467pt;}
.y309{bottom:762.476027pt;}
.y153{bottom:765.573613pt;}
.y1e8{bottom:770.090800pt;}
.y165{bottom:770.715160pt;}
.ye7{bottom:771.553067pt;}
.y67{bottom:772.763067pt;}
.y1f4{bottom:773.633587pt;}
.y6{bottom:773.743733pt;}
.y261{bottom:774.241067pt;}
.y256{bottom:774.799867pt;}
.y308{bottom:776.082253pt;}
.y2cf{bottom:779.791867pt;}
.y258{bottom:780.864200pt;}
.y246{bottom:781.195733pt;}
.ydb{bottom:782.209733pt;}
.y1e7{bottom:783.569333pt;}
.y166{bottom:786.148253pt;}
.y154{bottom:786.149120pt;}
.y260{bottom:786.258400pt;}
.ye6{bottom:786.368267pt;}
.y255{bottom:786.669067pt;}
.y66{bottom:788.485467pt;}
.y307{bottom:789.764213pt;}
.y172{bottom:791.784000pt;}
.y1f5{bottom:791.914707pt;}
.yda{bottom:795.514213pt;}
.y5{bottom:796.421867pt;}
.y1d9{bottom:797.304053pt;}
.y25f{bottom:798.278267pt;}
.y254{bottom:798.541067pt;}
.ye5{bottom:801.183467pt;}
.y167{bottom:801.522520pt;}
.y65{bottom:803.300667pt;}
.y63{bottom:803.301067pt;}
.y306{bottom:803.446187pt;}
.y206{bottom:803.843333pt;}
.y173{bottom:804.261333pt;}
.y155{bottom:806.668733pt;}
.y64{bottom:808.592000pt;}
.y1f6{bottom:810.149267pt;}
.y25e{bottom:810.294267pt;}
.y253{bottom:810.408933pt;}
.y247{bottom:811.474733pt;}
.y259{bottom:811.521200pt;}
.yd9{bottom:812.824493pt;}
.y168{bottom:816.955627pt;}
.y305{bottom:817.128147pt;}
.y62{bottom:819.023867pt;}
.y24c{bottom:823.586533pt;}
.y262{bottom:824.421200pt;}
.ye4{bottom:825.524533pt;}
.y156{bottom:827.243267pt;}
.y1f7{bottom:828.430387pt;}
.yd8{bottom:830.210387pt;}
.y304{bottom:830.810107pt;}
.y1dd{bottom:831.935200pt;}
.y169{bottom:832.386773pt;}
.ye3{bottom:833.914933pt;}
.y61{bottom:834.746267pt;}
.y5f{bottom:834.749467pt;}
.y2ce{bottom:835.577227pt;}
.y15b{bottom:836.019333pt;}
.y1da{bottom:837.141920pt;}
.y24e{bottom:838.897040pt;}
.y4{bottom:839.053413pt;}
.y60{bottom:840.113067pt;}
.y1e2{bottom:840.812800pt;}
.y24d{bottom:841.405600pt;}
.y248{bottom:841.753733pt;}
.y1fe{bottom:841.790800pt;}
.y25a{bottom:842.178200pt;}
.y263{bottom:843.216000pt;}
.y1e1{bottom:843.469067pt;}
.y303{bottom:844.416333pt;}
.y15c{bottom:846.057600pt;}
.y171{bottom:846.659240pt;}
.y1f8{bottom:846.661147pt;}
.y1df{bottom:846.733640pt;}
.yd7{bottom:847.520667pt;}
.y157{bottom:847.817787pt;}
.y16a{bottom:847.817907pt;}
.y2cd{bottom:848.352533pt;}
.y5e{bottom:850.471867pt;}
.y264{bottom:851.350800pt;}
.y24f{bottom:852.218133pt;}
.y1ff{bottom:854.360133pt;}
.y1de{bottom:854.639467pt;}
.y1e0{bottom:854.843867pt;}
.y16f{bottom:856.349200pt;}
.y1e3{bottom:857.384800pt;}
.y302{bottom:858.098293pt;}
.y16e{bottom:859.238053pt;}
.y170{bottom:859.238400pt;}
.y16b{bottom:863.250027pt;}
.y1ee{bottom:864.300933pt;}
.yd6{bottom:864.830947pt;}
.y207{bottom:864.892133pt;}
.y1f9{bottom:864.893800pt;}
.y5d{bottom:865.287067pt;}
.ye2{bottom:865.436533pt;}
.y158{bottom:868.393307pt;}
.y1e4{bottom:868.857867pt;}
.y16d{bottom:869.532667pt;}
.y2cc{bottom:869.669067pt;}
.y3{bottom:869.744227pt;}
.y301{bottom:871.780267pt;}
.y249{bottom:872.032733pt;}
.y25b{bottom:872.835200pt;}
.y1db{bottom:876.924773pt;}
.y16c{bottom:878.681173pt;}
.y5c{bottom:880.026667pt;}
.ye1{bottom:880.252267pt;}
.y204{bottom:881.263067pt;}
.y1fa{bottom:883.174920pt;}
.yd0{bottom:883.426533pt;}
.y161{bottom:884.812000pt;}
.yd5{bottom:884.862800pt;}
.yd3{bottom:884.938267pt;}
.y300{bottom:885.462227pt;}
.yca{bottom:885.466973pt;}
.ycc{bottom:885.467467pt;}
.y1f0{bottom:885.834707pt;}
.y1ec{bottom:889.238360pt;}
.ycd{bottom:889.625067pt;}
.y1ed{bottom:892.704400pt;}
.y1ef{bottom:892.833333pt;}
.ycf{bottom:894.160240pt;}
.y5b{bottom:894.841867pt;}
.y203{bottom:895.002000pt;}
.yd2{bottom:895.067667pt;}
.yce{bottom:895.445587pt;}
.ye0{bottom:895.974667pt;}
.yde{bottom:895.975200pt;}
.y160{bottom:896.029333pt;}
.y1f1{bottom:896.128933pt;}
.yd4{bottom:896.806360pt;}
.yd1{bottom:896.882213pt;}
.yc9{bottom:897.486267pt;}
.y1eb{bottom:897.539733pt;}
.y2ff{bottom:899.144187pt;}
.y2{bottom:900.357707pt;}
.ydf{bottom:901.341467pt;}
.y1fb{bottom:901.406627pt;}
.ycb{bottom:901.568133pt;}
.y24a{bottom:902.264733pt;}
.y25c{bottom:903.446200pt;}
.y1ea{bottom:906.252360pt;}
.y15f{bottom:907.246533pt;}
.y202{bottom:908.738800pt;}
.y5a{bottom:909.581467pt;}
.ydd{bottom:910.790400pt;}
.y2fe{bottom:912.750413pt;}
.y2cb{bottom:916.081733pt;}
.y1dc{bottom:916.711360pt;}
.y1e9{bottom:918.384667pt;}
.y15e{bottom:918.464667pt;}
.y1fc{bottom:919.688707pt;}
.y201{bottom:922.477733pt;}
.y59{bottom:924.397067pt;}
.y2fd{bottom:926.432373pt;}
.yc8{bottom:926.815467pt;}
.y208{bottom:928.982933pt;}
.y15d{bottom:929.683467pt;}
.y1{bottom:931.048533pt;}
.y24b{bottom:932.544733pt;}
.y25d{bottom:934.103200pt;}
.ydc{bottom:937.473733pt;}
.y268{bottom:937.824267pt;}
.y205{bottom:937.824533pt;}
.y1fd{bottom:937.920413pt;}
.y2fc{bottom:940.114333pt;}
.y58{bottom:940.119467pt;}
.y174{bottom:941.393600pt;}
.y55{bottom:976.327333pt;}
.y54{bottom:999.609200pt;}
.h4c{height:14.725457pt;}
.h60{height:17.482819pt;}
.h59{height:17.932535pt;}
.h62{height:17.934277pt;}
.h1c{height:18.390655pt;}
.h1d{height:18.664400pt;}
.h1f{height:19.311351pt;}
.h49{height:23.127257pt;}
.h55{height:23.153628pt;}
.h5a{height:23.497918pt;}
.h5d{height:23.498311pt;}
.h70{height:23.584000pt;}
.h6{height:23.644847pt;}
.h56{height:23.740834pt;}
.h19{height:23.996800pt;}
.h4b{height:24.490412pt;}
.h2c{height:24.830400pt;}
.h4a{height:26.780025pt;}
.h57{height:27.493048pt;}
.hf{height:27.588939pt;}
.h1b{height:27.999600pt;}
.h63{height:28.016613pt;}
.h6f{height:28.562975pt;}
.h46{height:28.908874pt;}
.h73{height:28.919880pt;}
.h48{height:28.959973pt;}
.h5f{height:29.180090pt;}
.h6e{height:29.480000pt;}
.h58{height:29.882350pt;}
.h61{height:29.885072pt;}
.h72{height:30.992521pt;}
.h71{height:31.025538pt;}
.h64{height:31.330558pt;}
.h5c{height:31.330951pt;}
.h75{height:31.380084pt;}
.h74{height:31.412316pt;}
.h5b{height:31.459484pt;}
.ha{height:31.530273pt;}
.he{height:31.658271pt;}
.h5e{height:31.684318pt;}
.h80{height:31.700937pt;}
.h20{height:32.310498pt;}
.h21{height:32.613911pt;}
.h65{height:35.376000pt;}
.h5{height:35.472000pt;}
.hb{height:35.616000pt;}
.h18{height:36.000000pt;}
.h6c{height:36.884385pt;}
.h6a{height:36.884918pt;}
.h1a{height:36.886678pt;}
.h6b{height:37.187318pt;}
.h68{height:37.187852pt;}
.h76{height:37.188545pt;}
.h4d{height:37.189078pt;}
.hc{height:37.594667pt;}
.h1e{height:38.057004pt;}
.h69{height:39.996726pt;}
.h7e{height:41.450133pt;}
.h7a{height:41.452267pt;}
.h52{height:41.454400pt;}
.h28{height:41.456000pt;}
.h16{height:41.456533pt;}
.h10{height:41.458133pt;}
.h8{height:41.458667pt;}
.h7c{height:41.459200pt;}
.h12{height:41.459733pt;}
.h9{height:41.460267pt;}
.h34{height:41.460800pt;}
.h7f{height:41.747733pt;}
.h11{height:41.749867pt;}
.h45{height:41.751467pt;}
.h54{height:41.752533pt;}
.h15{height:41.754667pt;}
.h3b{height:41.756267pt;}
.h40{height:41.756800pt;}
.h13{height:41.758400pt;}
.h17{height:41.758933pt;}
.h7b{height:41.760533pt;}
.h7{height:41.761067pt;}
.h3e{height:41.762133pt;}
.h14{height:41.762667pt;}
.h4f{height:41.765867pt;}
.h37{height:41.822240pt;}
.h39{height:41.828800pt;}
.h25{height:42.124640pt;}
.h3f{height:42.350240pt;}
.h3d{height:42.652107pt;}
.h51{height:42.652640pt;}
.h79{height:42.932118pt;}
.h67{height:42.958773pt;}
.h66{height:43.236012pt;}
.h7d{height:44.845173pt;}
.h53{height:45.147040pt;}
.h33{height:45.147573pt;}
.h4{height:45.508938pt;}
.h6d{height:45.655532pt;}
.h4e{height:45.675573pt;}
.h47{height:46.567257pt;}
.h38{height:48.112907pt;}
.h36{height:48.482507pt;}
.h32{height:48.483040pt;}
.h78{height:48.979585pt;}
.h50{height:49.007467pt;}
.h41{height:49.014400pt;}
.h44{height:49.016000pt;}
.h43{height:49.018133pt;}
.h24{height:49.018667pt;}
.h2b{height:49.019200pt;}
.h31{height:49.020267pt;}
.h3c{height:49.020800pt;}
.hd{height:49.023591pt;}
.h35{height:49.321067pt;}
.h42{height:51.135840pt;}
.h3a{height:51.438240pt;}
.h77{height:51.702998pt;}
.h2a{height:51.797547pt;}
.h3{height:55.477333pt;}
.h29{height:56.712373pt;}
.h22{height:66.590400pt;}
.h26{height:66.590933pt;}
.h30{height:68.428800pt;}
.h23{height:69.032533pt;}
.h27{height:72.359467pt;}
.h2e{height:76.232000pt;}
.h2{height:79.147062pt;}
.h2f{height:84.160373pt;}
.h2d{height:108.886933pt;}
.h1{height:1043.333333pt;}
.h0{height:1043.452000pt;}
.w0{width:793.852000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:64.025200pt;}
.x1{left:68.031467pt;}
.x52{left:73.625200pt;}
.x1f{left:75.136933pt;}
.x92{left:78.053067pt;}
.x55{left:81.336800pt;}
.x11{left:85.719600pt;}
.xbc{left:89.501067pt;}
.x20{left:90.935467pt;}
.x8f{left:95.378067pt;}
.x17{left:102.727600pt;}
.x21{left:105.146400pt;}
.x53{left:106.129067pt;}
.x5b{left:108.321200pt;}
.x50{left:112.025200pt;}
.x60{left:114.368533pt;}
.x8e{left:116.673467pt;}
.x18{left:119.584267pt;}
.x22{left:120.944800pt;}
.x57{left:122.683467pt;}
.x9e{left:123.892933pt;}
.xae{left:124.800000pt;}
.x78{left:125.858267pt;}
.x96{left:128.696933pt;}
.x61{left:130.998400pt;}
.xad{left:133.736133pt;}
.xa4{left:138.021333pt;}
.x58{left:138.935333pt;}
.xb5{left:140.144800pt;}
.x97{left:141.244933pt;}
.x51{left:144.226973pt;}
.x56{left:146.192000pt;}
.xa6{left:148.180000pt;}
.x54{left:149.593733pt;}
.x9f{left:150.954267pt;}
.xa5{left:151.866133pt;}
.xb6{left:153.146400pt;}
.xa3{left:156.021867pt;}
.x83{left:168.642533pt;}
.x76{left:169.927467pt;}
.xa0{left:174.009333pt;}
.x81{left:177.410933pt;}
.xb7{left:182.173200pt;}
.x5d{left:183.911733pt;}
.xa2{left:187.252667pt;}
.x5f{left:192.453467pt;}
.x19{left:195.477067pt;}
.x5e{left:202.582667pt;}
.x93{left:203.729067pt;}
.x94{left:209.597600pt;}
.x82{left:215.433067pt;}
.x59{left:217.549600pt;}
.x95{left:218.990800pt;}
.x1a{left:224.277067pt;}
.x4e{left:225.940133pt;}
.xbb{left:227.227347pt;}
.x90{left:232.148133pt;}
.x15{left:233.725867pt;}
.x98{left:235.534800pt;}
.x23{left:239.773200pt;}
.xa1{left:241.511733pt;}
.x99{left:248.918667pt;}
.x24{left:253.984133pt;}
.x79{left:259.804667pt;}
.x16{left:262.752667pt;}
.xb0{left:264.491333pt;}
.x28{left:266.758933pt;}
.x25{left:269.782533pt;}
.x5a{left:270.992000pt;}
.x7a{left:273.713333pt;}
.x91{left:275.094533pt;}
.xba{left:276.889653pt;}
.x77{left:279.080267pt;}
.x7b{left:284.144800pt;}
.x29{left:287.017200pt;}
.x7c{left:288.680267pt;}
.xb9{left:292.158800pt;}
.xb1{left:293.744800pt;}
.x26{left:297.373200pt;}
.x5c{left:310.525867pt;}
.xb2{left:311.962133pt;}
.x27{left:315.817200pt;}
.x7d{left:320.881733pt;}
.x1b{left:325.946400pt;}
.x7e{left:334.714933pt;}
.x1c{left:341.669200pt;}
.x7f{left:345.222000pt;}
.xb3{left:348.547867pt;}
.x80{left:349.757467pt;}
.x4c{left:353.234533pt;}
.x62{left:354.746400pt;}
.x1d{left:355.955867pt;}
.x9b{left:362.689840pt;}
.xb4{left:366.689600pt;}
.x4f{left:367.974667pt;}
.x4d{left:370.620400pt;}
.x1e{left:371.754267pt;}
.x9a{left:380.342000pt;}
.x2b{left:404.031333pt;}
.xe{left:408.036933pt;}
.x85{left:409.625067pt;}
.x63{left:413.631333pt;}
.x2a{left:417.336000pt;}
.xaa{left:418.580133pt;}
.x6f{left:422.226933pt;}
.x6e{left:427.848467pt;}
.xbd{left:429.430413pt;}
.x2d{left:431.848667pt;}
.x6d{left:437.127013pt;}
.x9c{left:446.084267pt;}
.x75{left:448.582933pt;}
.x2e{left:451.124267pt;}
.xa7{left:454.471867pt;}
.xf{left:456.566800pt;}
.x49{left:467.375467pt;}
.x3d{left:468.283880pt;}
.x70{left:470.304800pt;}
.xb8{left:475.162133pt;}
.x37{left:477.580933pt;}
.x86{left:481.209333pt;}
.x33{left:483.552667pt;}
.x38{left:484.459733pt;}
.xa9{left:486.582400pt;}
.x34{left:490.431333pt;}
.x10{left:492.018800pt;}
.x89{left:495.722667pt;}
.x39{left:500.031333pt;}
.x8a{left:504.718000pt;}
.x35{left:506.078667pt;}
.xa8{left:508.531600pt;}
.x3a{left:511.521067pt;}
.x2{left:514.695867pt;}
.x36{left:517.492800pt;}
.x3b{left:524.371467pt;}
.x6a{left:527.621867pt;}
.x4a{left:531.703613pt;}
.x3e{left:538.355733pt;}
.x64{left:540.699067pt;}
.xab{left:542.238000pt;}
.xc{left:544.629733pt;}
.x8b{left:545.612533pt;}
.x87{left:548.862933pt;}
.x3f{left:552.718000pt;}
.x65{left:554.532133pt;}
.xac{left:556.270000pt;}
.x40{left:561.562000pt;}
.x6c{left:563.149467pt;}
.x72{left:564.186533pt;}
.x9{left:568.894400pt;}
.x5{left:572.598267pt;}
.x7{left:575.319600pt;}
.xd{left:577.058133pt;}
.xa{left:578.872267pt;}
.x66{left:581.215600pt;}
.x41{left:582.425440pt;}
.x43{left:584.617200pt;}
.x42{left:586.809333pt;}
.x6{left:594.595200pt;}
.x8{left:596.484933pt;}
.x4b{left:601.626133pt;}
.xb{left:604.573067pt;}
.x13{left:605.556947pt;}
.x44{left:612.208000pt;}
.x6b{left:616.818667pt;}
.x68{left:618.935333pt;}
.x8c{left:619.993467pt;}
.x8d{left:631.407733pt;}
.x69{left:639.420267pt;}
.x3{left:646.299067pt;}
.x9d{left:653.730667pt;}
.x88{left:655.974667pt;}
.x45{left:657.940000pt;}
.x12{left:660.132133pt;}
.x84{left:662.475467pt;}
.x4{left:675.098933pt;}
.x46{left:682.733640pt;}
.x2f{left:684.774533pt;}
.x3c{left:687.420267pt;}
.xaf{left:689.914800pt;}
.x30{left:691.653467pt;}
.x71{left:692.636533pt;}
.x31{left:707.225067pt;}
.x47{left:709.341507pt;}
.x48{left:710.248667pt;}
.x2c{left:711.760400pt;}
.x67{left:712.743200pt;}
.x73{left:715.744400pt;}
.x32{left:718.714800pt;}
.x74{left:724.471067pt;}
}


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