
/* 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_4c217e285a71.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_fd0a55dbd7cd.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_64c5c1b8cc90.woff")format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_14278c8ceaa4.woff")format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_a58f7836026f.woff")format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_1ae56354975e.woff")format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_79dcdc6f476d.woff")format("woff");}.ff7{font-family:ff7;line-height:0.885000;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_bf82d94da405.woff")format("woff");}.ff8{font-family:ff8;line-height:1.154000;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_08f02e0cae59.woff")format("woff");}.ff9{font-family:ff9;line-height:0.734000;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_a78fc3fbcd28.woff")format("woff");}.ffa{font-family:ffa;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_df341760f7b6.woff")format("woff");}.ffb{font-family:ffb;line-height:0.937000;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_ce401a4fce1b.woff")format("woff");}.ffc{font-family:ffc;line-height:0.666000;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_92ff508d8de7.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_c845c00a7d91.woff")format("woff");}.ffe{font-family:ffe;line-height:0.738281;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_129b469bfcb2.woff")format("woff");}.fff{font-family:fff;line-height:1.006348;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_93b21d6a7f18.woff")format("woff");}.ff10{font-family:ff10;line-height:1.174316;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_2cf15523d3fc.woff")format("woff");}.ff11{font-family:ff11;line-height:1.057617;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_c845c00a7d91.woff")format("woff");}.ff12{font-family:ff12;line-height:0.738281;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_447a1468ba08.woff")format("woff");}.ff13{font-family:ff13;line-height:1.006348;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_88ecb6e2f8d2.woff")format("woff");}.ff14{font-family:ff14;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_2175f281845f.woff")format("woff");}.ff15{font-family:ff15;line-height:1.057617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_8506336ae3d5.woff")format("woff");}.ff16{font-family:ff16;line-height:1.024414;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:ff17;src:url("fonts/font_0022_2ccc62758f3b.woff")format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_c845c00a7d91.woff")format("woff");}.ff18{font-family:ff18;line-height:0.738281;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:ff19;src:url("fonts/font_0024_54226e4a24cb.woff")format("woff");}.ff19{font-family:ff19;line-height:1.006348;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:ff1a;src:url("fonts/font_0025_1f88da085d48.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.174316;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:ff1b;src:url("fonts/font_0026_5931c4355349.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.024414;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:ff1c;src:url("fonts/font_0027_7e3703e17a84.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.057617;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:ff1d;src:url("fonts/font_0028_c845c00a7d91.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.738281;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:ff1e;src:url("fonts/font_0029_ac1504e9d881.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.006348;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:ff1f;src:url("fonts/font_0030_37b2b0c4cf88.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.174316;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:ff20;src:url("fonts/font_0031_9f9cddc45312.woff")format("woff");}.ff20{font-family:ff20;line-height:1.024414;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:ff21;src:url("fonts/font_0032_fe3be96320c0.woff")format("woff");}.ff21{font-family:ff21;line-height:1.057617;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:ff22;src:url("fonts/font_0033_c845c00a7d91.woff")format("woff");}.ff22{font-family:ff22;line-height:0.738281;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:ff23;src:url("fonts/font_0034_47e6be80b307.woff")format("woff");}.ff23{font-family:ff23;line-height:1.006348;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:ff24;src:url("fonts/font_0035_7d516040ecd5.woff")format("woff");}.ff24{font-family:ff24;line-height:1.174316;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:ff25;src:url("fonts/font_0036_8506336ae3d5.woff")format("woff");}.ff25{font-family:ff25;line-height:1.024414;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:ff26;src:url("fonts/font_0037_00514234f145.woff")format("woff");}.ff26{font-family:ff26;line-height:1.057617;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:ff27;src:url("fonts/font_0038_c845c00a7d91.woff")format("woff");}.ff27{font-family:ff27;line-height:0.738281;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:ff28;src:url("fonts/font_0039_2c7abeef80e2.woff")format("woff");}.ff28{font-family:ff28;line-height:1.006348;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:ff29;src:url("fonts/font_0040_551efc0259c0.woff")format("woff");}.ff29{font-family:ff29;line-height:1.174316;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:ff2a;src:url("fonts/font_0041_9f9cddc45312.woff")format("woff");}.ff2a{font-family:ff2a;line-height:1.024414;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:ff2b;src:url("fonts/font_0042_c845c00a7d91.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.738281;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:ff2c;src:url("fonts/font_0043_0a2d8195feda.woff")format("woff");}.ff2c{font-family:ff2c;line-height:1.006348;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:ff2d;src:url("fonts/font_0044_09ecb418c1a9.woff")format("woff");}.ff2d{font-family:ff2d;line-height:1.174316;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:ff2e;src:url("fonts/font_0045_5ebc3af8b345.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.024414;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:ff2f;src:url("fonts/font_0046_68a860028a78.woff")format("woff");}.ff2f{font-family:ff2f;line-height:1.057617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m8{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-10.920000px;}
.v4{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:15.120000px;}
.v8{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:31.500000px;}
.va{vertical-align:32.616000px;}
.v5{vertical-align:39.840000px;}
.v7{vertical-align:41.004000px;}
.lscd{letter-spacing:-1.339200px;}
.lscb{letter-spacing:-1.263600px;}
.lsd0{letter-spacing:-1.172340px;}
.lscc{letter-spacing:-1.112400px;}
.lscf{letter-spacing:-1.040076px;}
.lsd1{letter-spacing:-0.967932px;}
.ls50{letter-spacing:-0.378756px;}
.ls82{letter-spacing:-0.359818px;}
.lsa6{letter-spacing:-0.334800px;}
.lsce{letter-spacing:-0.318636px;}
.ls42{letter-spacing:-0.300600px;}
.lsac{letter-spacing:-0.276552px;}
.lsb2{letter-spacing:-0.258516px;}
.lsaa{letter-spacing:-0.240480px;}
.ls4e{letter-spacing:-0.222444px;}
.lsae{letter-spacing:-0.204408px;}
.lsad{letter-spacing:-0.180360px;}
.ls47{letter-spacing:-0.168336px;}
.lsd2{letter-spacing:-0.162324px;}
.ls4d{letter-spacing:-0.156312px;}
.lsb0{letter-spacing:-0.150300px;}
.ls43{letter-spacing:-0.144288px;}
.ls3d{letter-spacing:-0.140400px;}
.lsa4{letter-spacing:-0.138276px;}
.ls7e{letter-spacing:-0.133380px;}
.ls46{letter-spacing:-0.132264px;}
.lsb1{letter-spacing:-0.126252px;}
.lsa8{letter-spacing:-0.120240px;}
.ls8d{letter-spacing:-0.119939px;}
.lsa9{letter-spacing:-0.114228px;}
.ls84{letter-spacing:-0.108517px;}
.ls4f{letter-spacing:-0.108216px;}
.ls3e{letter-spacing:-0.102204px;}
.ls83{letter-spacing:-0.097094px;}
.ls4b{letter-spacing:-0.096192px;}
.lsc8{letter-spacing:-0.090972px;}
.ls40{letter-spacing:-0.090180px;}
.ls39{letter-spacing:-0.086184px;}
.ls44{letter-spacing:-0.084168px;}
.ls7c{letter-spacing:-0.081875px;}
.lsab{letter-spacing:-0.078156px;}
.ls52{letter-spacing:-0.072144px;}
.ls4c{letter-spacing:-0.066132px;}
.ls4a{letter-spacing:-0.060120px;}
.lsa5{letter-spacing:-0.054108px;}
.lsaf{letter-spacing:-0.048096px;}
.ls53{letter-spacing:-0.042084px;}
.ls81{letter-spacing:-0.039980px;}
.ls49{letter-spacing:-0.036072px;}
.ls80{letter-spacing:-0.035910px;}
.ls89{letter-spacing:-0.034268px;}
.ls54{letter-spacing:-0.030060px;}
.ls3f{letter-spacing:-0.024048px;}
.ls88{letter-spacing:-0.022846px;}
.lsa7{letter-spacing:-0.021600px;}
.ls7f{letter-spacing:-0.020520px;}
.lsc9{letter-spacing:-0.019152px;}
.ls45{letter-spacing:-0.018036px;}
.ls87{letter-spacing:-0.017134px;}
.ls3b{letter-spacing:-0.016200px;}
.ls48{letter-spacing:-0.012024px;}
.ls8c{letter-spacing:-0.011423px;}
.ls3a{letter-spacing:-0.009576px;}
.ls7d{letter-spacing:-0.009097px;}
.ls41{letter-spacing:-0.006012px;}
.ls85{letter-spacing:-0.005711px;}
.ls3c{letter-spacing:-0.005400px;}
.lsb{letter-spacing:0.000000px;}
.lse2{letter-spacing:0.000503px;}
.ls1b{letter-spacing:0.000583px;}
.ls8{letter-spacing:0.000683px;}
.ls13{letter-spacing:0.000701px;}
.ls7b{letter-spacing:0.000915px;}
.ls7a{letter-spacing:0.000933px;}
.lsdc{letter-spacing:0.000959px;}
.lse0{letter-spacing:0.001036px;}
.lsa0{letter-spacing:0.001839px;}
.lse4{letter-spacing:0.001899px;}
.ls9{letter-spacing:0.001936px;}
.ls6{letter-spacing:0.001952px;}
.lsd9{letter-spacing:0.002293px;}
.ls1d{letter-spacing:0.002400px;}
.ls1{letter-spacing:0.002725px;}
.ls20{letter-spacing:0.003100px;}
.lsba{letter-spacing:0.003226px;}
.lsdf{letter-spacing:0.003239px;}
.lsdd{letter-spacing:0.004560px;}
.lsde{letter-spacing:0.004981px;}
.ls66{letter-spacing:0.005130px;}
.ls93{letter-spacing:0.005400px;}
.ls74{letter-spacing:0.005711px;}
.ls2b{letter-spacing:0.006012px;}
.lsbf{letter-spacing:0.007200px;}
.ls61{letter-spacing:0.010260px;}
.ls92{letter-spacing:0.010800px;}
.ls2a{letter-spacing:0.012024px;}
.ls68{letter-spacing:0.015390px;}
.ls97{letter-spacing:0.016200px;}
.ls6f{letter-spacing:0.017134px;}
.ls9d{letter-spacing:0.018036px;}
.lsb4{letter-spacing:0.021600px;}
.ls73{letter-spacing:0.022846px;}
.ls8f{letter-spacing:0.024048px;}
.ls65{letter-spacing:0.025650px;}
.ls98{letter-spacing:0.027000px;}
.ls35{letter-spacing:0.030060px;}
.ls60{letter-spacing:0.030780px;}
.ls27{letter-spacing:0.032400px;}
.ls70{letter-spacing:0.034268px;}
.ls2c{letter-spacing:0.036072px;}
.ls29{letter-spacing:0.037800px;}
.ls71{letter-spacing:0.039980px;}
.ls62{letter-spacing:0.041040px;}
.ls90{letter-spacing:0.042084px;}
.ls28{letter-spacing:0.043200px;}
.ls6d{letter-spacing:0.045691px;}
.ls30{letter-spacing:0.048096px;}
.ls96{letter-spacing:0.048600px;}
.ls6a{letter-spacing:0.051403px;}
.ls31{letter-spacing:0.054108px;}
.ls67{letter-spacing:0.056430px;}
.ls6e{letter-spacing:0.057114px;}
.lsbe{letter-spacing:0.059400px;}
.ls2d{letter-spacing:0.060120px;}
.ls63{letter-spacing:0.061560px;}
.lsc3{letter-spacing:0.062244px;}
.ls99{letter-spacing:0.064800px;}
.ls2f{letter-spacing:0.066132px;}
.ls5e{letter-spacing:0.068229px;}
.ls6c{letter-spacing:0.068537px;}
.ls24{letter-spacing:0.071820px;}
.ls33{letter-spacing:0.072144px;}
.ls72{letter-spacing:0.074248px;}
.ls94{letter-spacing:0.075600px;}
.lsa2{letter-spacing:0.078156px;}
.ls34{letter-spacing:0.084168px;}
.lsc1{letter-spacing:0.090180px;}
.lsa1{letter-spacing:0.096192px;}
.ls8a{letter-spacing:0.097094px;}
.ls9e{letter-spacing:0.102204px;}
.ls91{letter-spacing:0.102600px;}
.lsbd{letter-spacing:0.114228px;}
.ls51{letter-spacing:0.120240px;}
.ls8b{letter-spacing:0.125651px;}
.ls9c{letter-spacing:0.126252px;}
.ls64{letter-spacing:0.133380px;}
.ls95{letter-spacing:0.140400px;}
.ls69{letter-spacing:0.142785px;}
.ls9b{letter-spacing:0.144288px;}
.ls32{letter-spacing:0.150300px;}
.lsb5{letter-spacing:0.151200px;}
.lsbc{letter-spacing:0.156312px;}
.ls6b{letter-spacing:0.171342px;}
.lsc4{letter-spacing:0.172368px;}
.ls5f{letter-spacing:0.172847px;}
.ls2e{letter-spacing:0.180360px;}
.ls26{letter-spacing:0.181944px;}
.ls25{letter-spacing:0.191520px;}
.ls9f{letter-spacing:0.192384px;}
.lsc0{letter-spacing:0.228456px;}
.ls55{letter-spacing:0.336672px;}
.lse{letter-spacing:0.670741px;}
.ls12{letter-spacing:0.676741px;}
.ls18{letter-spacing:0.717483px;}
.lsf{letter-spacing:0.746496px;}
.lsb6{letter-spacing:1.160316px;}
.lsb7{letter-spacing:1.190376px;}
.lsbb{letter-spacing:1.256508px;}
.lsc{letter-spacing:1.275394px;}
.ls1c{letter-spacing:1.420741px;}
.ls86{letter-spacing:1.462118px;}
.ls3{letter-spacing:1.861130px;}
.lsd3{letter-spacing:2.609208px;}
.ls0{letter-spacing:2.989200px;}
.lsa3{letter-spacing:3.513900px;}
.ls19{letter-spacing:3.553200px;}
.ls14{letter-spacing:3.731460px;}
.ls21{letter-spacing:3.733200px;}
.lsd{letter-spacing:3.735634px;}
.ls15{letter-spacing:3.739222px;}
.lsd4{letter-spacing:5.128236px;}
.ls9a{letter-spacing:6.216408px;}
.lsca{letter-spacing:7.647264px;}
.ls4{letter-spacing:10.461300px;}
.lsa{letter-spacing:11.954850px;}
.ls56{letter-spacing:12.038731px;}
.ls17{letter-spacing:12.339483px;}
.ls57{letter-spacing:12.724445px;}
.ls16{letter-spacing:13.042741px;}
.lsdb{letter-spacing:13.258938px;}
.lsd8{letter-spacing:13.368310px;}
.ls75{letter-spacing:13.416276px;}
.ls36{letter-spacing:13.444800px;}
.lsd7{letter-spacing:13.448400px;}
.ls76{letter-spacing:13.450800px;}
.lsda{letter-spacing:13.454400px;}
.lsc5{letter-spacing:13.596231px;}
.ls8e{letter-spacing:13.606078px;}
.lse1{letter-spacing:13.632467px;}
.lse3{letter-spacing:13.641678px;}
.ls5a{letter-spacing:13.795873px;}
.lsc7{letter-spacing:14.022404px;}
.lsb3{letter-spacing:14.541483px;}
.ls58{letter-spacing:14.743468px;}
.ls5d{letter-spacing:14.888764px;}
.ls5b{letter-spacing:14.914595px;}
.lsc6{letter-spacing:15.000866px;}
.ls37{letter-spacing:15.003676px;}
.lsc2{letter-spacing:15.063451px;}
.ls22{letter-spacing:15.361200px;}
.lsb9{letter-spacing:15.657483px;}
.lsb8{letter-spacing:15.663483px;}
.ls23{letter-spacing:16.378514px;}
.ls79{letter-spacing:16.465141px;}
.lsd5{letter-spacing:16.929847px;}
.lsd6{letter-spacing:16.965900px;}
.ls1f{letter-spacing:17.319483px;}
.ls10{letter-spacing:18.022741px;}
.ls1e{letter-spacing:18.028741px;}
.ls11{letter-spacing:18.069483px;}
.ls59{letter-spacing:18.371024px;}
.ls78{letter-spacing:18.600435px;}
.ls1a{letter-spacing:18.918082px;}
.ls77{letter-spacing:22.488671px;}
.ls38{letter-spacing:22.929847px;}
.ls5c{letter-spacing:23.059259px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.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;}
}
.ws11b{word-spacing:-60.120000px;}
.wsd7{word-spacing:-57.114000px;}
.ws87{word-spacing:-15.102144px;}
.ws11f{word-spacing:-15.096132px;}
.ws122{word-spacing:-15.048036px;}
.ws11d{word-spacing:-15.030000px;}
.ws4a{word-spacing:-14.943900px;}
.ws11e{word-spacing:-14.915772px;}
.ws88{word-spacing:-14.651244px;}
.wsd6{word-spacing:-14.169983px;}
.wsd5{word-spacing:-13.918682px;}
.ws11c{word-spacing:-13.478400px;}
.ws192{word-spacing:-13.449600px;}
.ws86{word-spacing:-12.161520px;}
.ws1e3{word-spacing:-12.151944px;}
.ws16{word-spacing:-11.955150px;}
.wsd4{word-spacing:-11.553444px;}
.ws4{word-spacing:-11.357400px;}
.ws9{word-spacing:-10.460700px;}
.ws18e{word-spacing:-4.004965px;}
.wsbd{word-spacing:-3.625236px;}
.ws158{word-spacing:-3.571128px;}
.ws169{word-spacing:-3.535056px;}
.ws17d{word-spacing:-3.498984px;}
.ws93{word-spacing:-3.480948px;}
.ws46{word-spacing:-3.466985px;}
.ws10d{word-spacing:-3.346880px;}
.ws181{word-spacing:-3.210408px;}
.ws1ad{word-spacing:-3.198384px;}
.ws1c2{word-spacing:-3.168107px;}
.ws1ae{word-spacing:-3.138264px;}
.wsbe{word-spacing:-3.120228px;}
.ws10e{word-spacing:-3.061310px;}
.ws92{word-spacing:-3.042072px;}
.wsca{word-spacing:-2.929004px;}
.ws114{word-spacing:-2.889968px;}
.ws115{word-spacing:-2.878546px;}
.ws1cb{word-spacing:-2.861712px;}
.wsb0{word-spacing:-2.843676px;}
.ws1c9{word-spacing:-2.825640px;}
.ws1d7{word-spacing:-2.813616px;}
.ws1c{word-spacing:-2.797517px;}
.ws1de{word-spacing:-2.771532px;}
.wsb1{word-spacing:-2.765520px;}
.ws1ca{word-spacing:-2.741472px;}
.ws176{word-spacing:-2.699388px;}
.ws97{word-spacing:-2.639268px;}
.ws1cc{word-spacing:-2.537064px;}
.ws191{word-spacing:-2.510575px;}
.ws1cd{word-spacing:-2.507004px;}
.ws120{word-spacing:-2.474726px;}
.ws1f6{word-spacing:-2.464920px;}
.ws95{word-spacing:-2.434860px;}
.ws96{word-spacing:-2.416824px;}
.ws15c{word-spacing:-2.404800px;}
.ws53{word-spacing:-2.391024px;}
.ws29{word-spacing:-2.367130px;}
.ws121{word-spacing:-2.259533px;}
.ws1ef{word-spacing:-2.248488px;}
.ws1af{word-spacing:-2.218428px;}
.wscb{word-spacing:-2.211697px;}
.ws175{word-spacing:-2.122236px;}
.ws187{word-spacing:-2.110212px;}
.ws5a{word-spacing:-2.092146px;}
.ws221{word-spacing:-2.044339px;}
.ws190{word-spacing:-2.032370px;}
.ws1ee{word-spacing:-1.911816px;}
.ws6{word-spacing:-1.908367px;}
.ws1b0{word-spacing:-1.821636px;}
.ws222{word-spacing:-1.775347px;}
.ws1b1{word-spacing:-1.761516px;}
.ws157{word-spacing:-1.737468px;}
.ws1bd{word-spacing:-1.719432px;}
.ws1bc{word-spacing:-1.701396px;}
.wsaf{word-spacing:-1.683360px;}
.ws213{word-spacing:-1.677348px;}
.wsae{word-spacing:-1.671336px;}
.ws212{word-spacing:-1.617228px;}
.ws5c{word-spacing:-1.613941px;}
.ws42{word-spacing:-1.554166px;}
.ws152{word-spacing:-1.448892px;}
.ws7d{word-spacing:-1.434614px;}
.ws1d9{word-spacing:-1.412820px;}
.ws15d{word-spacing:-1.400796px;}
.ws1d0{word-spacing:-1.388772px;}
.ws4b{word-spacing:-1.374839px;}
.ws200{word-spacing:-1.340676px;}
.ws5{word-spacing:-1.322630px;}
.ws119{word-spacing:-1.315063px;}
.ws8{word-spacing:-1.297127px;}
.ws15e{word-spacing:-1.292580px;}
.ws1f3{word-spacing:-1.250496px;}
.ws2b{word-spacing:-1.237363px;}
.ws1f2{word-spacing:-1.196388px;}
.ws50{word-spacing:-1.195512px;}
.ws3d{word-spacing:-1.135736px;}
.ws160{word-spacing:-1.112220px;}
.wsef{word-spacing:-1.079455px;}
.ws51{word-spacing:-1.075961px;}
.ws1c8{word-spacing:-1.064124px;}
.ws183{word-spacing:-1.040076px;}
.ws201{word-spacing:-1.034064px;}
.ws1f5{word-spacing:-1.028052px;}
.wsd8{word-spacing:-1.022170px;}
.wsa1{word-spacing:-1.022040px;}
.ws49{word-spacing:-1.016185px;}
.wsf7{word-spacing:-1.005206px;}
.ws106{word-spacing:-0.982361px;}
.ws107{word-spacing:-0.976649px;}
.wsb3{word-spacing:-0.973944px;}
.ws48{word-spacing:-0.956410px;}
.ws153{word-spacing:-0.955908px;}
.ws16a{word-spacing:-0.937872px;}
.wsf6{word-spacing:-0.936670px;}
.ws102{word-spacing:-0.930958px;}
.wsed{word-spacing:-0.902401px;}
.ws65{word-spacing:-0.896634px;}
.ws1f9{word-spacing:-0.883764px;}
.ws16b{word-spacing:-0.871740px;}
.ws1e0{word-spacing:-0.847692px;}
.wsee{word-spacing:-0.839576px;}
.ws4e{word-spacing:-0.836858px;}
.ws44{word-spacing:-0.777083px;}
.wsb4{word-spacing:-0.763524px;}
.wsd9{word-spacing:-0.753178px;}
.ws1dd{word-spacing:-0.715428px;}
.ws138{word-spacing:-0.709416px;}
.ws1ff{word-spacing:-0.685368px;}
.ws1bb{word-spacing:-0.673344px;}
.ws139{word-spacing:-0.661320px;}
.ws84{word-spacing:-0.657532px;}
.ws1d8{word-spacing:-0.613224px;}
.ws1dc{word-spacing:-0.601200px;}
.ws69{word-spacing:-0.597756px;}
.ws15f{word-spacing:-0.589176px;}
.ws1f8{word-spacing:-0.553104px;}
.ws1ba{word-spacing:-0.541080px;}
.ws236{word-spacing:-0.537984px;}
.ws6c{word-spacing:-0.537980px;}
.ws94{word-spacing:-0.535068px;}
.ws1df{word-spacing:-0.511020px;}
.ws80{word-spacing:-0.478205px;}
.ws81{word-spacing:-0.418429px;}
.ws18f{word-spacing:-0.378132px;}
.ws52{word-spacing:-0.358654px;}
.ws1bf{word-spacing:-0.342684px;}
.ws118{word-spacing:-0.319838px;}
.ws45{word-spacing:-0.298878px;}
.ws112{word-spacing:-0.274147px;}
.ws9c{word-spacing:-0.270540px;}
.ws242{word-spacing:-0.268992px;}
.ws8c{word-spacing:-0.268128px;}
.ws1e6{word-spacing:-0.263340px;}
.ws1b9{word-spacing:-0.258516px;}
.wse1{word-spacing:-0.254722px;}
.ws9d{word-spacing:-0.252504px;}
.ws14e{word-spacing:-0.240480px;}
.ws30{word-spacing:-0.239102px;}
.ws1b7{word-spacing:-0.234468px;}
.ws113{word-spacing:-0.234167px;}
.wsc0{word-spacing:-0.222444px;}
.ws133{word-spacing:-0.221400px;}
.ws89{word-spacing:-0.215194px;}
.ws1fe{word-spacing:-0.198396px;}
.ws2e{word-spacing:-0.179327px;}
.ws204{word-spacing:-0.168336px;}
.wsda{word-spacing:-0.161395px;}
.ws19d{word-spacing:-0.151200px;}
.ws14d{word-spacing:-0.150300px;}
.ws1b6{word-spacing:-0.132264px;}
.ws32{word-spacing:-0.119551px;}
.ws28{word-spacing:-0.107597px;}
.ws8b{word-spacing:-0.076608px;}
.wse0{word-spacing:-0.072778px;}
.ws1e5{word-spacing:-0.071820px;}
.ws7a{word-spacing:-0.062287px;}
.ws1{word-spacing:-0.059776px;}
.ws25{word-spacing:-0.053798px;}
.ws34{word-spacing:-0.047821px;}
.wsa{word-spacing:-0.041843px;}
.ws1c1{word-spacing:-0.004790px;}
.ws23f{word-spacing:-0.002554px;}
.ws2{word-spacing:-0.001500px;}
.ws22d{word-spacing:-0.001018px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.000900px;}
.ws199{word-spacing:0.004800px;}
.ws1fa{word-spacing:0.005400px;}
.ws1da{word-spacing:0.042084px;}
.ws206{word-spacing:0.048096px;}
.ws1e4{word-spacing:0.053798px;}
.ws3a{word-spacing:0.059776px;}
.ws12a{word-spacing:0.060120px;}
.ws128{word-spacing:0.072144px;}
.ws131{word-spacing:0.081000px;}
.ws12b{word-spacing:0.090180px;}
.ws136{word-spacing:0.096192px;}
.ws137{word-spacing:0.102204px;}
.ws22{word-spacing:0.107597px;}
.ws132{word-spacing:0.108000px;}
.ws130{word-spacing:0.108216px;}
.wse6{word-spacing:0.112860px;}
.wsf8{word-spacing:0.114228px;}
.wse9{word-spacing:0.117990px;}
.ws40{word-spacing:0.119551px;}
.wsc3{word-spacing:0.120240px;}
.ws1c5{word-spacing:0.124200px;}
.wsc1{word-spacing:0.126252px;}
.ws129{word-spacing:0.132264px;}
.wse5{word-spacing:0.133380px;}
.ws1b8{word-spacing:0.138276px;}
.ws8e{word-spacing:0.140400px;}
.wse2{word-spacing:0.143640px;}
.ws91{word-spacing:0.145800px;}
.wse7{word-spacing:0.148770px;}
.ws214{word-spacing:0.150300px;}
.ws8d{word-spacing:0.151200px;}
.ws182{word-spacing:0.156312px;}
.ws135{word-spacing:0.156600px;}
.wseb{word-spacing:0.159030px;}
.ws21{word-spacing:0.161395px;}
.ws19c{word-spacing:0.162000px;}
.wse4{word-spacing:0.164160px;}
.ws134{word-spacing:0.167400px;}
.wsbf{word-spacing:0.168336px;}
.wse8{word-spacing:0.169290px;}
.ws1c6{word-spacing:0.172800px;}
.wse3{word-spacing:0.174420px;}
.ws16f{word-spacing:0.178200px;}
.ws38{word-spacing:0.179327px;}
.ws1f7{word-spacing:0.180360px;}
.ws166{word-spacing:0.186372px;}
.ws90{word-spacing:0.189000px;}
.ws1fd{word-spacing:0.194400px;}
.wsea{word-spacing:0.194940px;}
.ws8f{word-spacing:0.199800px;}
.ws1db{word-spacing:0.204408px;}
.wsc{word-spacing:0.209214px;}
.wsec{word-spacing:0.210330px;}
.ws205{word-spacing:0.210420px;}
.ws1fb{word-spacing:0.210600px;}
.ws1d{word-spacing:0.215194px;}
.ws1d3{word-spacing:0.228456px;}
.ws17{word-spacing:0.239103px;}
.ws16e{word-spacing:0.246492px;}
.wsad{word-spacing:0.252504px;}
.ws1e{word-spacing:0.268992px;}
.wse{word-spacing:0.292900px;}
.ws35{word-spacing:0.298878px;}
.ws243{word-spacing:0.322790px;}
.ws55{word-spacing:0.358654px;}
.ws20f{word-spacing:0.408816px;}
.ws12e{word-spacing:0.414828px;}
.ws1fc{word-spacing:0.437400px;}
.ws12d{word-spacing:0.450900px;}
.wsfc{word-spacing:0.451201px;}
.wsfb{word-spacing:0.456912px;}
.ws188{word-spacing:0.468936px;}
.ws1a5{word-spacing:0.474948px;}
.ws1c0{word-spacing:0.478205px;}
.ws1a6{word-spacing:0.480960px;}
.wsc2{word-spacing:0.486972px;}
.ws1a7{word-spacing:0.498996px;}
.ws12f{word-spacing:0.511020px;}
.ws19b{word-spacing:0.518400px;}
.ws12c{word-spacing:0.553104px;}
.ws73{word-spacing:0.568500px;}
.ws67{word-spacing:0.597756px;}
.ws70{word-spacing:0.657532px;}
.ws100{word-spacing:0.679657px;}
.ws20{word-spacing:0.699379px;}
.wsff{word-spacing:0.708214px;}
.ws189{word-spacing:0.715428px;}
.ws198{word-spacing:0.742800px;}
.ws71{word-spacing:0.746822px;}
.ws78{word-spacing:0.747431px;}
.ws19a{word-spacing:0.748800px;}
.ws39{word-spacing:0.777083px;}
.ws101{word-spacing:0.799596px;}
.ws149{word-spacing:0.829656px;}
.ws171{word-spacing:0.835668px;}
.ws59{word-spacing:0.836858px;}
.ws7e{word-spacing:0.896634px;}
.ws68{word-spacing:0.956410px;}
.ws172{word-spacing:0.961920px;}
.ws1a{word-spacing:1.022170px;}
.ws108{word-spacing:1.068032px;}
.wsa6{word-spacing:1.112220px;}
.ws1e7{word-spacing:1.118232px;}
.wsb2{word-spacing:1.124244px;}
.wsc8{word-spacing:1.195512px;}
.ws99{word-spacing:1.196388px;}
.ws177{word-spacing:1.208412px;}
.ws1e8{word-spacing:1.214424px;}
.ws82{word-spacing:1.255288px;}
.wsa7{word-spacing:1.274544px;}
.ws22c{word-spacing:1.291162px;}
.ws9a{word-spacing:1.310616px;}
.ws1e1{word-spacing:1.315063px;}
.ws9b{word-spacing:1.346688px;}
.ws85{word-spacing:1.374839px;}
.wsf1{word-spacing:1.410716px;}
.ws10a{word-spacing:1.422139px;}
.ws31{word-spacing:1.434614px;}
.wsf0{word-spacing:1.467830px;}
.ws109{word-spacing:1.484964px;}
.ws5b{word-spacing:1.494390px;}
.ws1f0{word-spacing:1.496988px;}
.ws19{word-spacing:1.506355px;}
.wsba{word-spacing:1.509012px;}
.wsb9{word-spacing:1.533060px;}
.ws3f{word-spacing:1.554166px;}
.wsa5{word-spacing:1.557108px;}
.ws227{word-spacing:1.560154px;}
.ws1f1{word-spacing:1.581156px;}
.ws178{word-spacing:1.605204px;}
.ws2a{word-spacing:1.667750px;}
.wsc7{word-spacing:1.673717px;}
.ws1f{word-spacing:1.721549px;}
.ws4d{word-spacing:1.733492px;}
.wscf{word-spacing:1.853044px;}
.ws43{word-spacing:1.912819px;}
.ws219{word-spacing:1.917828px;}
.ws218{word-spacing:1.947888px;}
.ws21a{word-spacing:1.972595px;}
.wsd{word-spacing:2.008454px;}
.ws167{word-spacing:2.014020px;}
.wscc{word-spacing:2.032370px;}
.ws21c{word-spacing:2.092146px;}
.ws168{word-spacing:2.104200px;}
.wsfe{word-spacing:2.124641px;}
.ws76{word-spacing:2.151922px;}
.ws14b{word-spacing:2.152296px;}
.wsfd{word-spacing:2.176043px;}
.ws237{word-spacing:2.205734px;}
.ws16c{word-spacing:2.206404px;}
.ws58{word-spacing:2.211697px;}
.ws1c7{word-spacing:2.218428px;}
.ws1ac{word-spacing:2.236464px;}
.ws179{word-spacing:2.248488px;}
.ws17a{word-spacing:2.254500px;}
.ws220{word-spacing:2.259533px;}
.ws125{word-spacing:2.266524px;}
.ws6e{word-spacing:2.271473px;}
.wsbc{word-spacing:2.272536px;}
.ws16d{word-spacing:2.284560px;}
.ws11a{word-spacing:2.331248px;}
.ws14c{word-spacing:2.332656px;}
.ws14a{word-spacing:2.350692px;}
.wsbb{word-spacing:2.356704px;}
.ws103{word-spacing:2.358808px;}
.wsb5{word-spacing:2.362716px;}
.wsb6{word-spacing:2.386764px;}
.ws104{word-spacing:2.415922px;}
.ws47{word-spacing:2.450800px;}
.ws1b{word-spacing:2.474726px;}
.ws203{word-spacing:2.500992px;}
.ws1a1{word-spacing:2.507004px;}
.ws37{word-spacing:2.510575px;}
.ws1a0{word-spacing:2.537064px;}
.ws20d{word-spacing:2.555100px;}
.ws1b4{word-spacing:2.567124px;}
.ws195{word-spacing:2.570351px;}
.wsa8{word-spacing:2.615220px;}
.wsa9{word-spacing:2.621232px;}
.ws185{word-spacing:2.627244px;}
.wsde{word-spacing:2.630126px;}
.ws1b5{word-spacing:2.645280px;}
.ws20c{word-spacing:2.651292px;}
.ws41{word-spacing:2.689902px;}
.ws74{word-spacing:2.749678px;}
.ws111{word-spacing:2.804297px;}
.ws186{word-spacing:2.819628px;}
.ws18{word-spacing:2.869236px;}
.ws202{word-spacing:2.927844px;}
.ws1be{word-spacing:2.939868px;}
.ws234{word-spacing:2.958912px;}
.ws1a9{word-spacing:2.999988px;}
.ws1a8{word-spacing:3.060108px;}
.wsfa{word-spacing:3.107002px;}
.ws83{word-spacing:3.108331px;}
.wsf9{word-spacing:3.124136px;}
.ws1a2{word-spacing:3.162312px;}
.wsdf{word-spacing:3.168107px;}
.ws10f{word-spacing:3.181250px;}
.ws141{word-spacing:3.192372px;}
.ws143{word-spacing:3.210408px;}
.ws2c{word-spacing:3.219667px;}
.ws244{word-spacing:3.224506px;}
.ws223{word-spacing:3.224928px;}
.ws238{word-spacing:3.225917px;}
.ws241{word-spacing:3.226771px;}
.ws18b{word-spacing:3.227882px;}
.ws23d{word-spacing:3.227904px;}
.ws18c{word-spacing:3.287658px;}
.ws110{word-spacing:3.289766px;}
.ws1d6{word-spacing:3.342672px;}
.ws6f{word-spacing:3.347434px;}
.wscd{word-spacing:3.407209px;}
.ws17c{word-spacing:3.438864px;}
.ws231{word-spacing:3.441511px;}
.ws75{word-spacing:3.466985px;}
.ws1c3{word-spacing:3.526760px;}
.ws2d{word-spacing:3.586536px;}
.ws162{word-spacing:3.601188px;}
.ws17b{word-spacing:3.637260px;}
.ws6a{word-spacing:3.646312px;}
.ws163{word-spacing:3.679344px;}
.ws1d4{word-spacing:3.703392px;}
.ws1d5{word-spacing:3.727440px;}
.ws142{word-spacing:3.733452px;}
.ws24{word-spacing:3.819686px;}
.ws2f{word-spacing:3.885414px;}
.ws144{word-spacing:3.937860px;}
.ws77{word-spacing:3.945190px;}
.ws207{word-spacing:3.991968px;}
.ws7b{word-spacing:4.002113px;}
.ws61{word-spacing:4.004965px;}
.ws1b2{word-spacing:4.010004px;}
.ws210{word-spacing:4.028040px;}
.ws211{word-spacing:4.064112px;}
.ws1e2{word-spacing:4.064741px;}
.ws197{word-spacing:4.124516px;}
.ws161{word-spacing:4.154292px;}
.wsa4{word-spacing:4.238460px;}
.ws216{word-spacing:4.298580px;}
.wsd1{word-spacing:4.303843px;}
.wsb7{word-spacing:4.334652px;}
.ws4c{word-spacing:4.363619px;}
.wsb8{word-spacing:4.412808px;}
.ws196{word-spacing:4.423394px;}
.wsac{word-spacing:4.436856px;}
.ws1b3{word-spacing:4.460904px;}
.wsab{word-spacing:4.484952px;}
.ws21d{word-spacing:4.519066px;}
.ws36{word-spacing:4.542946px;}
.ws64{word-spacing:4.602721px;}
.ws217{word-spacing:4.689360px;}
.ws17f{word-spacing:4.701384px;}
.wsf3{word-spacing:4.711905px;}
.ws17e{word-spacing:4.749480px;}
.ws1a3{word-spacing:4.767516px;}
.ws15a{word-spacing:4.785552px;}
.ws27{word-spacing:4.788058px;}
.ws159{word-spacing:4.791564px;}
.ws215{word-spacing:4.809600px;}
.wsa2{word-spacing:4.839660px;}
.wsc9{word-spacing:4.841824px;}
.ws26{word-spacing:4.841856px;}
.ws117{word-spacing:4.860401px;}
.ws116{word-spacing:4.877536px;}
.ws1e9{word-spacing:4.881744px;}
.ws15b{word-spacing:4.893768px;}
.wsf4{word-spacing:4.900381px;}
.wsa3{word-spacing:4.911804px;}
.wsc6{word-spacing:4.961375px;}
.ws13e{word-spacing:5.020020px;}
.ws3e{word-spacing:5.021150px;}
.ws14f{word-spacing:5.104188px;}
.ws13c{word-spacing:5.128236px;}
.ws1cf{word-spacing:5.140260px;}
.ws13d{word-spacing:5.146272px;}
.wsf5{word-spacing:5.151683px;}
.ws20e{word-spacing:5.164308px;}
.wsf2{word-spacing:5.168817px;}
.ws146{word-spacing:5.176332px;}
.ws3b{word-spacing:5.200477px;}
.ws1ce{word-spacing:5.206392px;}
.ws156{word-spacing:5.212404px;}
.ws145{word-spacing:5.218416px;}
.ws154{word-spacing:5.248476px;}
.wsc5{word-spacing:5.260253px;}
.ws150{word-spacing:5.260500px;}
.ws21e{word-spacing:5.272243px;}
.ws155{word-spacing:5.278536px;}
.ws1c4{word-spacing:5.320028px;}
.ws151{word-spacing:5.416812px;}
.wsd2{word-spacing:5.439580px;}
.wsaa{word-spacing:5.446872px;}
.ws1eb{word-spacing:5.482944px;}
.ws1ed{word-spacing:5.494968px;}
.ws5f{word-spacing:5.499355px;}
.ws170{word-spacing:5.513004px;}
.ws1ec{word-spacing:5.525028px;}
.ws105{word-spacing:5.528635px;}
.wsd3{word-spacing:5.559131px;}
.ws60{word-spacing:5.618906px;}
.ws124{word-spacing:5.801580px;}
.ws148{word-spacing:5.813604px;}
.ws127{word-spacing:5.819616px;}
.wsd0{word-spacing:5.858009px;}
.ws226{word-spacing:5.864026px;}
.ws164{word-spacing:5.891760px;}
.ws126{word-spacing:5.957892px;}
.ws147{word-spacing:5.987952px;}
.ws123{word-spacing:5.993964px;}
.ws18d{word-spacing:6.037336px;}
.ws14{word-spacing:6.067206px;}
.ws4f{word-spacing:6.097111px;}
.ws15{word-spacing:6.150892px;}
.ws10b{word-spacing:6.179735px;}
.ws13a{word-spacing:6.222420px;}
.ws13b{word-spacing:6.246468px;}
.ws10c{word-spacing:6.265406px;}
.ws165{word-spacing:6.318612px;}
.ws13f{word-spacing:6.336648px;}
.ws1d2{word-spacing:6.342660px;}
.ws1d1{word-spacing:6.366708px;}
.ws21f{word-spacing:6.509606px;}
.ws1ab{word-spacing:6.517008px;}
.ws19e{word-spacing:6.523020px;}
.ws18a{word-spacing:6.575316px;}
.ws19f{word-spacing:6.577128px;}
.ws173{word-spacing:6.589152px;}
.ws140{word-spacing:6.595164px;}
.ws174{word-spacing:6.601176px;}
.ws9f{word-spacing:6.613200px;}
.ws98{word-spacing:6.661296px;}
.ws23{word-spacing:6.671002px;}
.ws1f4{word-spacing:6.673320px;}
.ws54{word-spacing:6.694867px;}
.ws194{word-spacing:6.874194px;}
.ws184{word-spacing:6.889752px;}
.ws9e{word-spacing:6.901776px;}
.ws1ea{word-spacing:7.274520px;}
.wsdd{word-spacing:7.352399px;}
.ws193{word-spacing:7.412174px;}
.wsc4{word-spacing:7.531726px;}
.ws23a{word-spacing:7.531776px;}
.ws8a{word-spacing:8.009930px;}
.ws209{word-spacing:8.044056px;}
.wsce{word-spacing:8.129482px;}
.ws208{word-spacing:8.170308px;}
.ws57{word-spacing:8.249033px;}
.ws21b{word-spacing:8.308808px;}
.wsdb{word-spacing:8.488135px;}
.ws22f{word-spacing:8.500147px;}
.ws12{word-spacing:8.661460px;}
.ws180{word-spacing:8.675316px;}
.wsa0{word-spacing:8.681328px;}
.ws56{word-spacing:10.341179px;}
.wsb{word-spacing:10.460700px;}
.ws1a4{word-spacing:11.212380px;}
.ws33{word-spacing:11.908720px;}
.ws20a{word-spacing:11.999952px;}
.ws20b{word-spacing:12.090132px;}
.ws7{word-spacing:12.189541px;}
.ws22a{word-spacing:13.180608px;}
.ws225{word-spacing:13.288205px;}
.ws240{word-spacing:13.386355px;}
.ws22e{word-spacing:13.388544px;}
.ws228{word-spacing:13.395802px;}
.ws229{word-spacing:13.502009px;}
.ws230{word-spacing:13.503398px;}
.ws23c{word-spacing:13.557197px;}
.ws23e{word-spacing:13.610995px;}
.ws5e{word-spacing:14.645022px;}
.ws66{word-spacing:14.686071px;}
.ws3c{word-spacing:14.798027px;}
.ws63{word-spacing:14.884124px;}
.ws6b{word-spacing:15.085712px;}
.ws62{word-spacing:15.095028px;}
.wsf{word-spacing:16.142252px;}
.ws10{word-spacing:16.151321px;}
.ws22b{word-spacing:16.569907px;}
.ws239{word-spacing:16.614682px;}
.ws235{word-spacing:16.619030px;}
.ws23b{word-spacing:16.621402px;}
.ws224{word-spacing:16.623706px;}
.ws233{word-spacing:16.625914px;}
.ws232{word-spacing:16.838899px;}
.ws11{word-spacing:17.699504px;}
.ws79{word-spacing:17.938541px;}
.ws5d{word-spacing:18.470660px;}
.ws6d{word-spacing:19.218824px;}
.ws1aa{word-spacing:19.545012px;}
.wsdc{word-spacing:21.698543px;}
.ws13{word-spacing:27.448877px;}
.ws7f{word-spacing:509.885868px;}
.ws7c{word-spacing:619.674113px;}
.ws72{word-spacing:733.805266px;}
._23{margin-left:-8.961326px;}
._16{margin-left:-7.722982px;}
._9{margin-left:-6.168857px;}
._3{margin-left:-4.536788px;}
._7{margin-left:-2.999080px;}
._0{margin-left:-1.936742px;}
._2{width:1.091170px;}
._1{width:2.999080px;}
._1d{width:4.869720px;}
._4{width:10.849259px;}
._1e{width:11.927808px;}
._5{width:12.967393px;}
._11{width:14.822586px;}
._c{width:16.785101px;}
._b{width:18.614246px;}
._f{width:20.275104px;}
._1a{width:21.363812px;}
._a{width:22.433933px;}
._17{width:23.581350px;}
._15{width:24.866650px;}
._6{width:25.946136px;}
._1f{width:27.221821px;}
._e{width:28.464120px;}
._1b{width:29.469371px;}
._10{width:30.969920px;}
._8{width:32.637384px;}
._14{width:34.610072px;}
._19{width:35.739652px;}
._d{width:37.174694px;}
._18{width:39.153018px;}
._24{width:42.631973px;}
._12{width:1015.661723px;}
._20{width:2098.005855px;}
._21{width:2184.353126px;}
._1c{width:2208.484646px;}
._22{width:2592.873000px;}
._13{width:2616.783000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(83,133,55);}
.fs7{font-size:35.865600px;}
.fs13{font-size:36.000000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs12{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fsf{font-size:45.486000px;}
.fs4{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fs11{font-size:51.300000px;}
.fs9{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs10{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y1e2{bottom:-901.466550px;}
.y102{bottom:-779.120550px;}
.y122{bottom:-634.850400px;}
.y121{bottom:-615.591297px;}
.y120{bottom:-591.920550px;}
.y1b3{bottom:-574.483050px;}
.y214{bottom:-569.386050px;}
.y156{bottom:-563.746672px;}
.y11f{bottom:-554.659254px;}
.y11e{bottom:-535.399812px;}
.y11d{bottom:-516.230550px;}
.y172{bottom:-506.710956px;}
.y22e{bottom:-505.936050px;}
.y11c{bottom:-496.969254px;}
.y1dc{bottom:-492.941754px;}
.y171{bottom:-488.414486px;}
.y22d{bottom:-486.663657px;}
.y11b{bottom:-477.799992px;}
.y1fa{bottom:-477.026400px;}
.y1db{bottom:-473.772492px;}
.y170{bottom:-470.203687px;}
.y22c{bottom:-467.494395px;}
.y24a{bottom:-467.431050px;}
.y11a{bottom:-458.540550px;}
.y1f9{bottom:-457.855434px;}
.y1da{bottom:-454.513050px;}
.y16f{bottom:-451.907218px;}
.y22b{bottom:-448.234953px;}
.y119{bottom:-439.280550px;}
.y1f8{bottom:-438.595992px;}
.y1d9{bottom:-435.242511px;}
.y16e{bottom:-433.696419px;}
.y22a{bottom:-428.975511px;}
.y118{bottom:-420.104988px;}
.y1f7{bottom:-419.336550px;}
.y1d8{bottom:-416.073249px;}
.y16d{bottom:-415.399949px;}
.y229{bottom:-409.806249px;}
.y270{bottom:-405.060312px;}
.y192{bottom:-401.888550px;}
.y117{bottom:-400.845546px;}
.y16c{bottom:-397.103479px;}
.y1d7{bottom:-396.813807px;}
.y1f6{bottom:-395.666550px;}
.y228{bottom:-390.546807px;}
.y26f{bottom:-385.891050px;}
.y116{bottom:-381.586104px;}
.y16b{bottom:-378.892680px;}
.y1d6{bottom:-377.644545px;}
.y227{bottom:-371.377545px;}
.y26e{bottom:-366.623454px;}
.y115{bottom:-362.416842px;}
.y16a{bottom:-360.596210px;}
.y1f5{bottom:-358.405812px;}
.y1d5{bottom:-358.385103px;}
.y226{bottom:-352.118103px;}
.y26d{bottom:-347.364012px;}
.y114{bottom:-343.157400px;}
.y169{bottom:-342.299740px;}
.y1ad{bottom:-342.122808px;}
.y1f4{bottom:-339.236550px;}
.y1d4{bottom:-339.125661px;}
.y225{bottom:-332.858661px;}
.y26c{bottom:-328.194750px;}
.y168{bottom:-324.088941px;}
.y113{bottom:-323.988138px;}
.y1ac{bottom:-322.953546px;}
.y1f3{bottom:-319.974345px;}
.y1d3{bottom:-319.956399px;}
.y224{bottom:-313.689399px;}
.y26b{bottom:-308.935308px;}
.y167{bottom:-305.792471px;}
.y112{bottom:-304.728696px;}
.y1ab{bottom:-303.694104px;}
.y1f2{bottom:-300.714903px;}
.y1d2{bottom:-300.696957px;}
.y223{bottom:-294.429957px;}
.y26a{bottom:-289.675866px;}
.y166{bottom:-287.581672px;}
.y111{bottom:-285.469254px;}
.y1aa{bottom:-284.434662px;}
.y1f1{bottom:-281.545641px;}
.y1d1{bottom:-281.527695px;}
.y222{bottom:-275.260695px;}
.y269{bottom:-270.506604px;}
.y165{bottom:-269.283441px;}
.y110{bottom:-266.299992px;}
.y1a9{bottom:-265.265400px;}
.y1f0{bottom:-262.286199px;}
.y1d0{bottom:-262.268253px;}
.y221{bottom:-256.001253px;}
.y268{bottom:-251.247162px;}
.y164{bottom:-250.986971px;}
.y10f{bottom:-247.040550px;}
.y1a8{bottom:-246.005958px;}
.y1ef{bottom:-243.115434px;}
.y1cf{bottom:-243.008811px;}
.y220{bottom:-236.741811px;}
.y163{bottom:-232.776172px;}
.y267{bottom:-232.077900px;}
.y10e{bottom:-227.866842px;}
.y1a7{bottom:-226.836696px;}
.y1ee{bottom:-223.855992px;}
.y1ce{bottom:-223.839549px;}
.y21f{bottom:-217.572549px;}
.y162{bottom:-214.479757px;}
.y266{bottom:-212.818458px;}
.y10d{bottom:-208.607400px;}
.y1a6{bottom:-207.577254px;}
.y1ed{bottom:-204.596550px;}
.y1cd{bottom:-204.580107px;}
.y21e{bottom:-198.313107px;}
.y161{bottom:-196.267530px;}
.y265{bottom:-193.559016px;}
.y10c{bottom:-189.347958px;}
.y1a5{bottom:-188.317812px;}
.y1ec{bottom:-185.423637px;}
.y1cc{bottom:-185.409342px;}
.y21d{bottom:-179.053665px;}
.y160{bottom:-177.970672px;}
.y264{bottom:-174.389754px;}
.y10b{bottom:-170.178696px;}
.y1a4{bottom:-169.148550px;}
.y1eb{bottom:-166.164195px;}
.y1cb{bottom:-166.149900px;}
.y21c{bottom:-159.882900px;}
.y15f{bottom:-159.672829px;}
.y263{bottom:-155.130312px;}
.y10a{bottom:-150.919254px;}
.y1a3{bottom:-149.887254px;}
.y1ea{bottom:-146.993430px;}
.y1ca{bottom:-146.890458px;}
.y15e{bottom:-141.462030px;}
.y21b{bottom:-140.623458px;}
.y262{bottom:-135.961050px;}
.y109{bottom:-131.749992px;}
.y1a2{bottom:-130.717992px;}
.y1e9{bottom:-127.733988px;}
.y1c9{bottom:-127.721196px;}
.y15d{bottom:-123.164329px;}
.y21a{bottom:-121.454196px;}
.y261{bottom:-116.701050px;}
.y108{bottom:-112.490550px;}
.y1a1{bottom:-111.458550px;}
.y1e8{bottom:-108.474546px;}
.y1c8{bottom:-108.461754px;}
.y15c{bottom:-104.953530px;}
.y219{bottom:-102.194754px;}
.y260{bottom:-97.441050px;}
.y107{bottom:-93.231315px;}
.y1a0{bottom:-92.198550px;}
.y1e7{bottom:-89.305284px;}
.y1c7{bottom:-89.202312px;}
.y218{bottom:-82.935312px;}
.y106{bottom:-74.060550px;}
.y19f{bottom:-73.028400px;}
.y1e6{bottom:-70.045842px;}
.y1c6{bottom:-70.033050px;}
.y15b{bottom:-69.984172px;}
.y217{bottom:-63.766050px;}
.y25f{bottom:-60.721050px;}
.y15a{bottom:-53.568172px;}
.y1e5{bottom:-50.786400px;}
.y25e{bottom:-43.441050px;}
.y105{bottom:-37.250550px;}
.y159{bottom:-37.066672px;}
.y19e{bottom:-36.219000px;}
.y1c5{bottom:-33.312600px;}
.y216{bottom:-26.956050px;}
.y25d{bottom:-26.070900px;}
.y158{bottom:-20.650672px;}
.y104{bottom:-19.880550px;}
.y19d{bottom:-18.848550px;}
.y1c4{bottom:-15.853050px;}
.y1e4{bottom:-13.976550px;}
.y215{bottom:-4.456446px;}
.y25c{bottom:-3.660492px;}
.y0{bottom:0.000000px;}
.y157{bottom:0.723840px;}
.y103{bottom:2.529630px;}
.yb{bottom:3.425340px;}
.y19c{bottom:3.560829px;}
.y1c3{bottom:6.556905px;}
.y1e3{bottom:8.433117px;}
.ya{bottom:14.151273px;}
.y2{bottom:15.759303px;}
.y4c{bottom:31.890000px;}
.y1de{bottom:85.797000px;}
.ye4{bottom:91.453500px;}
.y18e{bottom:98.271000px;}
.y2d2{bottom:99.073500px;}
.y126{bottom:99.907500px;}
.y241{bottom:100.053000px;}
.y27f{bottom:101.836500px;}
.y25{bottom:102.823500px;}
.yb5{bottom:103.557000px;}
.y1dd{bottom:105.030000px;}
.y152{bottom:106.246500px;}
.y280{bottom:107.262000px;}
.y83{bottom:109.366500px;}
.ye3{bottom:110.281500px;}
.y2d1{bottom:116.334000px;}
.y18d{bottom:117.100500px;}
.y4b{bottom:118.735500px;}
.y125{bottom:118.737000px;}
.y240{bottom:118.882500px;}
.y27e{bottom:120.666000px;}
.y24{bottom:120.711000px;}
.yb4{bottom:122.386500px;}
.y151{bottom:125.076000px;}
.y1b0{bottom:127.459500px;}
.y82{bottom:128.196000px;}
.ye2{bottom:129.111000px;}
.y20c{bottom:131.703000px;}
.y2d0{bottom:133.594500px;}
.y18c{bottom:135.930000px;}
.y4a{bottom:137.565000px;}
.y23f{bottom:137.712000px;}
.y23{bottom:138.600000px;}
.y27d{bottom:139.495500px;}
.y150{bottom:143.905500px;}
.yb3{bottom:145.699500px;}
.y81{bottom:147.025500px;}
.ye1{bottom:147.940500px;}
.y20b{bottom:150.532500px;}
.y2ce{bottom:150.855000px;}
.y18b{bottom:154.759500px;}
.y2cf{bottom:155.737500px;}
.y49{bottom:156.394500px;}
.y22{bottom:156.487500px;}
.y23e{bottom:156.541500px;}
.y27c{bottom:158.325000px;}
.y14f{bottom:162.735000px;}
.y80{bottom:165.855000px;}
.ye0{bottom:166.770000px;}
.y2cd{bottom:168.115500px;}
.y20a{bottom:169.362000px;}
.y297{bottom:170.088000px;}
.y124{bottom:171.132000px;}
.y18a{bottom:173.589000px;}
.y21{bottom:174.375000px;}
.y48{bottom:175.224000px;}
.y23d{bottom:175.371000px;}
.y27b{bottom:177.154500px;}
.yb2{bottom:179.323500px;}
.y14e{bottom:181.564500px;}
.y7f{bottom:184.684500px;}
.y2cc{bottom:185.376000px;}
.ydf{bottom:185.599500px;}
.y296{bottom:187.662000px;}
.y209{bottom:188.191500px;}
.y123{bottom:190.365000px;}
.y20{bottom:192.264000px;}
.y189{bottom:192.418500px;}
.y47{bottom:194.053500px;}
.y23c{bottom:194.200500px;}
.y279{bottom:195.984000px;}
.yb1{bottom:198.153000px;}
.y14d{bottom:200.394000px;}
.y27a{bottom:201.409500px;}
.y2cb{bottom:202.636500px;}
.y7e{bottom:203.514000px;}
.yde{bottom:204.429000px;}
.y295{bottom:205.236000px;}
.y208{bottom:207.021000px;}
.y1f{bottom:210.151500px;}
.y188{bottom:211.248000px;}
.yff{bottom:212.793000px;}
.y46{bottom:212.883000px;}
.y23b{bottom:213.030000px;}
.y278{bottom:214.813500px;}
.yb0{bottom:216.982500px;}
.y14c{bottom:219.223500px;}
.y2ca{bottom:219.895500px;}
.y7d{bottom:222.343500px;}
.y207{bottom:225.850500px;}
.ydd{bottom:227.742000px;}
.y1e{bottom:228.039000px;}
.y187{bottom:230.077500px;}
.y45{bottom:231.712500px;}
.y294{bottom:231.777000px;}
.y23a{bottom:231.859500px;}
.y1e1{bottom:232.534035px;}
.y277{bottom:233.643000px;}
.y1c2{bottom:235.786950px;}
.yaf{bottom:235.812000px;}
.y2c9{bottom:237.156000px;}
.y14b{bottom:238.053000px;}
.y7c{bottom:241.173000px;}
.y1e0{bottom:242.343450px;}
.y206{bottom:244.680000px;}
.y186{bottom:248.907000px;}
.y293{bottom:249.351000px;}
.y44{bottom:250.542000px;}
.y239{bottom:250.689000px;}
.y275{bottom:252.472500px;}
.y2c8{bottom:254.416500px;}
.yae{bottom:254.641500px;}
.y1c1{bottom:255.048183px;}
.y14a{bottom:256.882500px;}
.y276{bottom:257.898000px;}
.y7b{bottom:260.002500px;}
.ydc{bottom:261.366000px;}
.y205{bottom:263.509500px;}
.y292{bottom:266.925000px;}
.y185{bottom:267.736500px;}
.y43{bottom:269.371500px;}
.y238{bottom:269.518500px;}
.y274{bottom:271.302000px;}
.y2c7{bottom:271.677000px;}
.yad{bottom:273.471000px;}
.y1c0{bottom:274.218948px;}
.y149{bottom:275.712000px;}
.y7a{bottom:278.832000px;}
.yda{bottom:280.195500px;}
.y25b{bottom:281.909508px;}
.y204{bottom:282.339000px;}
.y291{bottom:284.499000px;}
.ydb{bottom:285.619500px;}
.y184{bottom:286.566000px;}
.y237{bottom:288.348000px;}
.y2c6{bottom:288.937500px;}
.yac{bottom:292.300500px;}
.y42{bottom:292.684500px;}
.y1bf{bottom:293.478390px;}
.y148{bottom:294.541500px;}
.y79{bottom:297.661500px;}
.yd9{bottom:299.025000px;}
.y203{bottom:301.168500px;}
.y25a{bottom:301.168950px;}
.y290{bottom:302.073000px;}
.y273{bottom:304.867500px;}
.y183{bottom:305.395500px;}
.y2c5{bottom:306.198000px;}
.y236{bottom:307.177500px;}
.y1d{bottom:307.299000px;}
.yab{bottom:311.130000px;}
.y1be{bottom:312.737832px;}
.y147{bottom:313.371000px;}
.y78{bottom:316.491000px;}
.yd8{bottom:317.854500px;}
.y202{bottom:319.998000px;}
.y2c4{bottom:323.458500px;}
.y272{bottom:324.100500px;}
.y182{bottom:324.225000px;}
.y259{bottom:324.839100px;}
.y1c{bottom:325.186500px;}
.y235{bottom:326.007000px;}
.y28f{bottom:328.614000px;}
.yaa{bottom:329.959500px;}
.y1bd{bottom:331.907094px;}
.y146{bottom:332.200500px;}
.y77{bottom:335.320500px;}
.yd7{bottom:336.684000px;}
.y201{bottom:338.827500px;}
.y2c3{bottom:340.719000px;}
.y181{bottom:343.054500px;}
.y1b{bottom:343.074000px;}
.y271{bottom:343.333500px;}
.y234{bottom:344.836500px;}
.ya9{bottom:348.789000px;}
.y145{bottom:351.030000px;}
.y1bc{bottom:351.166536px;}
.y76{bottom:354.150000px;}
.y101{bottom:354.880035px;}
.y28e{bottom:355.155000px;}
.y200{bottom:357.657000px;}
.y2c2{bottom:357.978000px;}
.yd6{bottom:359.997000px;}
.y1a{bottom:360.963000px;}
.y180{bottom:361.884000px;}
.y258{bottom:362.100741px;}
.y233{bottom:363.666000px;}
.y100{bottom:364.689450px;}
.y247{bottom:365.763000px;}
.ya8{bottom:367.618500px;}
.y41{bottom:367.834500px;}
.y144{bottom:369.859500px;}
.y1bb{bottom:370.425978px;}
.y75{bottom:372.979500px;}
.y2c1{bottom:375.238500px;}
.y1af{bottom:375.342000px;}
.y1ff{bottom:376.486500px;}
.y17f{bottom:380.713500px;}
.y257{bottom:381.271506px;}
.y28d{bottom:381.694500px;}
.y232{bottom:382.495500px;}
.ya7{bottom:386.446500px;}
.y143{bottom:388.689000px;}
.y1ba{bottom:389.596743px;}
.y74{bottom:391.809000px;}
.y2c0{bottom:392.499000px;}
.yd5{bottom:393.621000px;}
.y1ae{bottom:394.575000px;}
.y1fe{bottom:395.316000px;}
.y19{bottom:399.024000px;}
.y17e{bottom:399.543000px;}
.y256{bottom:400.530948px;}
.y231{bottom:401.325000px;}
.y40{bottom:405.223500px;}
.ya6{bottom:405.276000px;}
.y142{bottom:407.518500px;}
.y28c{bottom:408.235500px;}
.y1b9{bottom:408.856185px;}
.y2bf{bottom:409.759500px;}
.y73{bottom:410.638500px;}
.yd4{bottom:412.450500px;}
.y1fd{bottom:414.145500px;}
.y18{bottom:416.913000px;}
.y18f{bottom:417.004500px;}
.y17d{bottom:418.372500px;}
.y255{bottom:419.790390px;}
.y230{bottom:420.154500px;}
.ya5{bottom:424.105500px;}
.y3f{bottom:424.681500px;}
.y28b{bottom:425.809500px;}
.y141{bottom:426.348000px;}
.y2be{bottom:427.020000px;}
.y1b8{bottom:428.026950px;}
.y72{bottom:429.468000px;}
.yd3{bottom:431.280000px;}
.y1fc{bottom:432.973500px;}
.y17{bottom:434.800500px;}
.y17c{bottom:437.202000px;}
.y254{bottom:438.959652px;}
.ya4{bottom:442.935000px;}
.y3e{bottom:444.138000px;}
.y2bd{bottom:444.280500px;}
.y140{bottom:445.177500px;}
.y1b7{bottom:447.286950px;}
.y71{bottom:448.297500px;}
.yd2{bottom:450.108000px;}
.y28a{bottom:452.350500px;}
.y16{bottom:452.688000px;}
.y22f{bottom:453.720000px;}
.y17b{bottom:456.031500px;}
.y253{bottom:458.219094px;}
.y2bc{bottom:461.541000px;}
.ya3{bottom:461.764500px;}
.y3d{bottom:463.594500px;}
.y13f{bottom:464.007000px;}
.y1fb{bottom:466.540500px;}
.y1b6{bottom:466.548858px;}
.y70{bottom:467.127000px;}
.yd1{bottom:468.937500px;}
.y289{bottom:469.924500px;}
.y15{bottom:470.577000px;}
.y17a{bottom:474.859500px;}
.y211{bottom:476.149500px;}
.y252{bottom:477.478536px;}
.y2bb{bottom:478.801500px;}
.y13e{bottom:482.836500px;}
.y3c{bottom:483.052500px;}
.ya2{bottom:485.077500px;}
.y1b5{bottom:485.718120px;}
.y6f{bottom:485.956500px;}
.y288{bottom:487.498500px;}
.y1df{bottom:488.968500px;}
.yd0{bottom:492.250500px;}
.y179{bottom:493.689000px;}
.y2ba{bottom:496.062000px;}
.y251{bottom:496.649301px;}
.y19b{bottom:501.261243px;}
.y13d{bottom:501.666000px;}
.y3b{bottom:502.509000px;}
.y6e{bottom:504.786000px;}
.y1b4{bottom:504.977562px;}
.y287{bottom:505.072500px;}
.y14{bottom:506.397000px;}
.y178{bottom:512.518500px;}
.y2b9{bottom:513.321000px;}
.y155{bottom:513.553883px;}
.y250{bottom:515.908743px;}
.ya1{bottom:518.701500px;}
.y13c{bottom:520.495500px;}
.y19a{bottom:520.520685px;}
.y3a{bottom:521.965500px;}
.y286{bottom:522.646500px;}
.y154{bottom:522.872827px;}
.y6d{bottom:523.615500px;}
.y13{bottom:524.286000px;}
.ycf{bottom:525.874500px;}
.y2b8{bottom:530.581500px;}
.y24f{bottom:535.079508px;}
.y177{bottom:535.831500px;}
.ya0{bottom:537.531000px;}
.y13b{bottom:539.323500px;}
.y199{bottom:539.691450px;}
.y39{bottom:541.423500px;}
.y12{bottom:542.173500px;}
.y6c{bottom:542.445000px;}
.yce{bottom:542.463000px;}
.ycd{bottom:544.704000px;}
.y2b7{bottom:547.842000px;}
.y24e{bottom:554.338950px;}
.y9f{bottom:556.360500px;}
.yfe{bottom:556.864500px;}
.y13a{bottom:558.153000px;}
.y198{bottom:558.950703px;}
.y1b2{bottom:559.517535px;}
.y11{bottom:560.061000px;}
.y38{bottom:560.880000px;}
.y6b{bottom:561.274500px;}
.y213{bottom:564.614535px;}
.y2b6{bottom:565.102500px;}
.y176{bottom:566.259000px;}
.y1b1{bottom:569.326950px;}
.y24d{bottom:573.599688px;}
.y212{bottom:574.423950px;}
.y9e{bottom:575.190000px;}
.yfd{bottom:575.694000px;}
.y139{bottom:576.982500px;}
.y10{bottom:577.950000px;}
.ycc{bottom:579.225000px;}
.y6a{bottom:580.104000px;}
.y37{bottom:580.338000px;}
.y2b5{bottom:582.363000px;}
.y197{bottom:582.621450px;}
.y175{bottom:585.492000px;}
.y24c{bottom:592.768950px;}
.y9d{bottom:594.019500px;}
.yfc{bottom:594.523500px;}
.y138{bottom:595.812000px;}
.yf{bottom:595.837500px;}
.y69{bottom:598.932000px;}
.y2b4{bottom:599.623500px;}
.y36{bottom:599.794500px;}
.y174{bottom:604.725000px;}
.y24b{bottom:612.029562px;}
.y9c{bottom:612.849000px;}
.ye{bottom:613.725000px;}
.ycb{bottom:613.746000px;}
.y137{bottom:614.641500px;}
.y2b3{bottom:616.884000px;}
.y68{bottom:617.761500px;}
.yfb{bottom:617.835000px;}
.y35{bottom:619.251000px;}
.y196{bottom:619.883916px;}
.y173{bottom:623.958000px;}
.yd{bottom:631.614000px;}
.y9b{bottom:631.678500px;}
.yca{bottom:632.575500px;}
.y136{bottom:633.471000px;}
.y2b2{bottom:634.144500px;}
.y67{bottom:636.591000px;}
.yfa{bottom:638.010000px;}
.y34{bottom:638.709000px;}
.y195{bottom:639.143358px;}
.y153{bottom:646.387500px;}
.yc{bottom:649.501500px;}
.y9a{bottom:650.508000px;}
.y2b1{bottom:651.403500px;}
.yc8{bottom:651.405000px;}
.y246{bottom:652.300500px;}
.y66{bottom:655.420500px;}
.y135{bottom:656.784000px;}
.yc9{bottom:656.829000px;}
.y33{bottom:658.165500px;}
.y194{bottom:658.312620px;}
.y249{bottom:666.569535px;}
.y2b0{bottom:668.664000px;}
.y99{bottom:669.337500px;}
.yc7{bottom:670.234500px;}
.y244{bottom:671.130000px;}
.yf9{bottom:671.634000px;}
.y9{bottom:671.872464px;}
.y65{bottom:674.250000px;}
.y248{bottom:676.378950px;}
.y245{bottom:676.555500px;}
.y193{bottom:677.572062px;}
.y32{bottom:677.622000px;}
.y2af{bottom:685.924500px;}
.y98{bottom:688.167000px;}
.yc6{bottom:689.064000px;}
.y285{bottom:689.959500px;}
.y134{bottom:690.408000px;}
.yf8{bottom:690.463500px;}
.y64{bottom:693.079500px;}
.y243{bottom:694.443000px;}
.y31{bottom:697.080000px;}
.y2ae{bottom:703.185000px;}
.y97{bottom:706.996500px;}
.yc5{bottom:707.892000px;}
.y284{bottom:708.789000px;}
.y133{bottom:709.237500px;}
.yf7{bottom:709.293000px;}
.y63{bottom:711.909000px;}
.y30{bottom:716.536500px;}
.y2ad{bottom:720.445500px;}
.y283{bottom:727.618500px;}
.y132{bottom:728.067000px;}
.yf6{bottom:728.122500px;}
.y96{bottom:730.308000px;}
.y62{bottom:730.738500px;}
.yc4{bottom:731.205000px;}
.y191{bottom:732.112035px;}
.y2f{bottom:735.994500px;}
.y2ac{bottom:737.706000px;}
.y190{bottom:741.921450px;}
.y2e6{bottom:742.189500px;}
.y282{bottom:746.448000px;}
.y131{bottom:746.896500px;}
.yf5{bottom:746.952000px;}
.y61{bottom:749.568000px;}
.y2ab{bottom:754.966500px;}
.y2e5{bottom:759.450000px;}
.y95{bottom:763.932000px;}
.yc3{bottom:764.829000px;}
.y130{bottom:765.726000px;}
.y60{bottom:768.397500px;}
.y281{bottom:769.761000px;}
.yf4{bottom:770.265000px;}
.y2aa{bottom:772.227000px;}
.y2e{bottom:774.579000px;}
.y2e4{bottom:776.709000px;}
.y94{bottom:782.761500px;}
.yc2{bottom:783.658500px;}
.y12f{bottom:784.555500px;}
.y5f{bottom:787.227000px;}
.y2a9{bottom:789.487500px;}
.y2d{bottom:790.719000px;}
.y2e3{bottom:793.969500px;}
.y93{bottom:801.591000px;}
.yc1{bottom:802.488000px;}
.y12e{bottom:803.385000px;}
.yf3{bottom:803.889000px;}
.y5e{bottom:806.056500px;}
.y2a8{bottom:806.746500px;}
.y2c{bottom:811.198500px;}
.y2e2{bottom:811.230000px;}
.yf2{bottom:819.988500px;}
.y92{bottom:820.420500px;}
.yc0{bottom:821.317500px;}
.y12d{bottom:822.214500px;}
.yf1{bottom:822.717000px;}
.y2a7{bottom:824.007000px;}
.y5d{bottom:824.886000px;}
.y2b{bottom:827.337000px;}
.y2e1{bottom:828.490500px;}
.yf0{bottom:838.818000px;}
.y2a{bottom:839.137500px;}
.y91{bottom:839.250000px;}
.ybf{bottom:840.147000px;}
.y12c{bottom:841.044000px;}
.y2a6{bottom:841.267500px;}
.yef{bottom:841.546500px;}
.y5c{bottom:843.715500px;}
.y2e0{bottom:845.751000px;}
.y90{bottom:858.079500px;}
.y2a5{bottom:858.528000px;}
.y29{bottom:859.617000px;}
.y12b{bottom:859.873500px;}
.y5b{bottom:862.545000px;}
.y2df{bottom:863.011500px;}
.ybe{bottom:863.460000px;}
.yee{bottom:869.791500px;}
.y28{bottom:875.757000px;}
.y2a4{bottom:875.788500px;}
.y8f{bottom:876.909000px;}
.y12a{bottom:878.703000px;}
.y2de{bottom:880.272000px;}
.y5a{bottom:881.374500px;}
.y27{bottom:887.556000px;}
.yed{bottom:888.621000px;}
.y2a3{bottom:893.049000px;}
.ybd{bottom:897.084000px;}
.y129{bottom:897.532500px;}
.y59{bottom:900.204000px;}
.y8e{bottom:900.222000px;}
.yec{bottom:907.450500px;}
.y26{bottom:908.035500px;}
.y2a2{bottom:910.309500px;}
.y2dd{bottom:914.793000px;}
.ybb{bottom:915.913500px;}
.y128{bottom:916.362000px;}
.y58{bottom:919.033500px;}
.y8d{bottom:920.397000px;}
.ybc{bottom:921.337500px;}
.yeb{bottom:926.280000px;}
.y2a1{bottom:927.570000px;}
.y2dc{bottom:932.052000px;}
.yba{bottom:934.743000px;}
.y127{bottom:935.191500px;}
.y57{bottom:937.863000px;}
.y2a0{bottom:944.829000px;}
.y8{bottom:948.229500px;}
.y2db{bottom:949.312500px;}
.yea{bottom:949.593000px;}
.yb9{bottom:953.572500px;}
.y8c{bottom:954.021000px;}
.y56{bottom:956.692500px;}
.y29f{bottom:962.089500px;}
.y2da{bottom:966.573000px;}
.y7{bottom:967.057500px;}
.yb8{bottom:972.402000px;}
.y8b{bottom:972.849000px;}
.y55{bottom:975.522000px;}
.y29e{bottom:979.350000px;}
.ye9{bottom:983.217000px;}
.y2d9{bottom:983.833500px;}
.y242{bottom:988.950000px;}
.yb7{bottom:991.231500px;}
.y8a{bottom:991.678500px;}
.y54{bottom:994.351500px;}
.y29d{bottom:996.610500px;}
.ye8{bottom:999.804000px;}
.y2d8{bottom:1001.094000px;}
.ye7{bottom:1002.045000px;}
.y89{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y53{bottom:1013.181000px;}
.y29c{bottom:1013.871000px;}
.yb6{bottom:1014.543000px;}
.y2d7{bottom:1018.354500px;}
.y210{bottom:1024.855500px;}
.y88{bottom:1029.337500px;}
.y29b{bottom:1031.131500px;}
.y52{bottom:1032.010500px;}
.ye6{bottom:1032.529500px;}
.y2d6{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.ye5{bottom:1042.780500px;}
.y20f{bottom:1043.685000px;}
.y87{bottom:1048.167000px;}
.y29a{bottom:1048.392000px;}
.y51{bottom:1050.840000px;}
.y2d5{bottom:1052.875500px;}
.y20e{bottom:1062.513000px;}
.y299{bottom:1065.652500px;}
.y86{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y50{bottom:1069.669500px;}
.y2d4{bottom:1070.134500px;}
.y20d{bottom:1081.342500px;}
.y298{bottom:1082.913000px;}
.y85{bottom:1085.826000px;}
.y2d3{bottom:1087.395000px;}
.y4f{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y84{bottom:1104.655500px;}
.y4e{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4d{bottom:1173.397500px;}
.h8{height:25.508090px;}
.hc{height:31.238938px;}
.h14{height:31.526842px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.hb{height:36.445079px;}
.h10{height:37.551283px;}
.he{height:38.734848px;}
.h15{height:39.569182px;}
.h20{height:40.622019px;}
.h17{height:41.482876px;}
.hd{height:41.651743px;}
.h13{height:41.723369px;}
.h1b{height:42.760020px;}
.h11{height:43.038432px;}
.h4{height:43.815515px;}
.h22{height:45.814307px;}
.h1e{height:46.645840px;}
.hf{height:46.858406px;}
.h28{height:47.270391px;}
.h1d{height:48.225586px;}
.h25{height:48.567733px;}
.h2{height:50.930649px;}
.h21{height:51.006595px;}
.h12{height:52.064548px;}
.h16{height:53.222842px;}
.h1c{height:53.691152px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h29{height:72.185182px;}
.h5{height:77.469696px;}
.h18{height:92.534548px;}
.h19{height:93.068548px;}
.h3{height:102.503837px;}
.h26{height:196.627500px;}
.h24{height:217.746000px;}
.h2a{height:262.897500px;}
.h1a{height:320.430000px;}
.h1f{height:473.215425px;}
.h23{height:477.730500px;}
.h27{height:525.066000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:145.826070px;}
.w7{width:364.123500px;}
.w6{width:369.222000px;}
.wa{width:453.699000px;}
.w5{width:461.454900px;}
.w9{width:501.763500px;}
.w4{width:511.957500px;}
.w8{width:680.912550px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x96{left:-203.071500px;}
.x74{left:-201.615000px;}
.xb5{left:-197.245500px;}
.x53{left:-195.061500px;}
.x7d{left:-188.506500px;}
.x65{left:-185.999550px;}
.x87{left:-51.595950px;}
.x98{left:-7.501500px;}
.x76{left:-6.046090px;}
.xb6{left:-1.675140px;}
.x0{left:0.000000px;}
.x7e{left:7.062410px;}
.x99{left:24.358500px;}
.x75{left:25.813805px;}
.x3{left:29.274117px;}
.x55{left:32.368500px;}
.x7f{left:38.923394px;}
.x1{left:54.000000px;}
.x2{left:61.836233px;}
.x9a{left:63.958500px;}
.x9b{left:72.958500px;}
.xbf{left:86.272500px;}
.x86{left:106.000950px;}
.x89{left:107.974050px;}
.x8b{left:143.974156px;}
.x8a{left:175.834050px;}
.x8c{left:215.046000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.xa5{left:258.549000px;}
.xab{left:263.374500px;}
.x5{left:270.754500px;}
.x48{left:280.822500px;}
.xc{left:282.786000px;}
.x6e{left:285.187500px;}
.xb2{left:290.431500px;}
.x6f{left:292.840500px;}
.x49{left:297.937500px;}
.x6d{left:301.695000px;}
.x4f{left:304.492500px;}
.x4b{left:306.571500px;}
.x40{left:308.362500px;}
.x7{left:310.335000px;}
.x39{left:312.693000px;}
.x50{left:314.475000px;}
.x41{left:318.291000px;}
.x3a{left:320.346000px;}
.x9e{left:321.508500px;}
.x4c{left:325.887000px;}
.x8d{left:328.651500px;}
.x67{left:335.418000px;}
.x8e{left:337.882500px;}
.x24{left:341.119500px;}
.x68{left:342.142500px;}
.x4a{left:350.353500px;}
.x91{left:353.020500px;}
.x25{left:355.615500px;}
.x20{left:356.988000px;}
.x5b{left:358.495500px;}
.x21{left:361.993500px;}
.x78{left:368.530500px;}
.x77{left:369.703738px;}
.x8{left:372.955500px;}
.x79{left:375.660000px;}
.x9{left:377.460000px;}
.x34{left:378.999000px;}
.x7a{left:380.164500px;}
.x92{left:382.282500px;}
.x3d{left:383.854500px;}
.xc6{left:387.870000px;}
.x35{left:393.943500px;}
.xbe{left:395.391000px;}
.x3e{left:398.799000px;}
.x84{left:400.449000px;}
.xb8{left:401.599500px;}
.x94{left:407.563500px;}
.x60{left:410.766000px;}
.xaf{left:413.326500px;}
.xad{left:414.738000px;}
.x61{left:418.419000px;}
.x95{left:422.508000px;}
.x51{left:425.326500px;}
.x37{left:427.504500px;}
.x57{left:430.005000px;}
.x17{left:432.343500px;}
.x52{left:435.481500px;}
.x38{left:436.735500px;}
.x2e{left:438.586500px;}
.x4e{left:442.821000px;}
.x15{left:446.146500px;}
.x18{left:447.288000px;}
.x2f{left:448.486500px;}
.xac{left:450.525000px;}
.xa6{left:451.620000px;}
.x16{left:453.619500px;}
.x26{left:454.692000px;}
.x64{left:457.741500px;}
.xa7{left:459.271500px;}
.x66{left:462.173971px;}
.x36{left:463.962000px;}
.x6a{left:466.468500px;}
.x27{left:469.188000px;}
.xb0{left:470.746500px;}
.x2a{left:473.155500px;}
.xb7{left:476.044941px;}
.xb1{left:478.219500px;}
.x6c{left:480.669000px;}
.x93{left:484.405500px;}
.xbb{left:486.046500px;}
.x2b{left:487.651500px;}
.x3b{left:493.167000px;}
.x9f{left:494.392500px;}
.x3c{left:499.972500px;}
.x97{left:500.995207px;}
.x44{left:504.294000px;}
.xa0{left:509.566500px;}
.x45{left:511.101000px;}
.x54{left:513.504895px;}
.x85{left:527.526000px;}
.x2c{left:529.666500px;}
.xa{left:531.642000px;}
.x82{left:532.902000px;}
.xc9{left:536.176500px;}
.xb{left:538.528500px;}
.x69{left:539.806500px;}
.x5c{left:543.421500px;}
.x2d{left:544.609500px;}
.x62{left:546.931500px;}
.xf{left:553.675500px;}
.x3f{left:554.730000px;}
.x19{left:558.735000px;}
.x10{left:561.148500px;}
.x11{left:564.958500px;}
.x12{left:572.430000px;}
.x1a{left:573.679500px;}
.xd{left:575.430000px;}
.xbc{left:577.263000px;}
.xa1{left:580.309500px;}
.xe{left:582.901500px;}
.xbd{left:584.736000px;}
.xa2{left:592.600500px;}
.x9c{left:597.625500px;}
.x83{left:600.858000px;}
.x4d{left:603.121500px;}
.x9d{left:605.097000px;}
.x32{left:613.488000px;}
.x28{left:618.456000px;}
.xa3{left:621.300000px;}
.xa4{left:627.144000px;}
.x33{left:628.431000px;}
.x29{left:632.952000px;}
.x70{left:634.324500px;}
.x1b{left:636.631500px;}
.x8f{left:639.798000px;}
.x80{left:643.872000px;}
.x71{left:646.615500px;}
.x1c{left:651.576000px;}
.x90{left:654.742500px;}
.xb9{left:656.992500px;}
.x81{left:658.368000px;}
.xa8{left:659.607000px;}
.xba{left:663.798000px;}
.x7b{left:671.331000px;}
.x88{left:674.970700px;}
.x7c{left:679.549500px;}
.xc7{left:683.269500px;}
.x42{left:686.607000px;}
.x43{left:695.911500px;}
.xa9{left:701.536500px;}
.x6b{left:702.865500px;}
.xc8{left:710.169000px;}
.x46{left:714.172500px;}
.xaa{left:717.571500px;}
.x47{left:721.645500px;}
.x1e{left:727.149000px;}
.xc2{left:728.811000px;}
.x56{left:734.376000px;}
.xae{left:742.738500px;}
.x22{left:746.092500px;}
.x58{left:750.472500px;}
.x59{left:751.632000px;}
.xc3{left:755.709000px;}
.x23{left:760.588500px;}
.x5a{left:766.576500px;}
.xc0{left:770.478000px;}
.x63{left:773.751000px;}
.x5d{left:779.230500px;}
.x5f{left:785.175000px;}
.xc5{left:790.419000px;}
.x5e{left:794.175000px;}
.xb3{left:796.096500px;}
.xc1{left:797.377500px;}
.x72{left:799.230000px;}
.xb4{left:802.902000px;}
.xc4{left:810.322500px;}
.x73{left:814.173000px;}
.x1d{left:817.698000px;}
.x13{left:825.169500px;}
.x30{left:826.477500px;}
.x14{left:832.642500px;}
.x31{left:836.317500px;}
.x1f{left:837.717000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.706667pt;}
.v4{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:13.440000pt;}
.v8{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:28.000000pt;}
.va{vertical-align:28.992000pt;}
.v5{vertical-align:35.413333pt;}
.v7{vertical-align:36.448000pt;}
.lscd{letter-spacing:-1.190400pt;}
.lscb{letter-spacing:-1.123200pt;}
.lsd0{letter-spacing:-1.042080pt;}
.lscc{letter-spacing:-0.988800pt;}
.lscf{letter-spacing:-0.924512pt;}
.lsd1{letter-spacing:-0.860384pt;}
.ls50{letter-spacing:-0.336672pt;}
.ls82{letter-spacing:-0.319838pt;}
.lsa6{letter-spacing:-0.297600pt;}
.lsce{letter-spacing:-0.283232pt;}
.ls42{letter-spacing:-0.267200pt;}
.lsac{letter-spacing:-0.245824pt;}
.lsb2{letter-spacing:-0.229792pt;}
.lsaa{letter-spacing:-0.213760pt;}
.ls4e{letter-spacing:-0.197728pt;}
.lsae{letter-spacing:-0.181696pt;}
.lsad{letter-spacing:-0.160320pt;}
.ls47{letter-spacing:-0.149632pt;}
.lsd2{letter-spacing:-0.144288pt;}
.ls4d{letter-spacing:-0.138944pt;}
.lsb0{letter-spacing:-0.133600pt;}
.ls43{letter-spacing:-0.128256pt;}
.ls3d{letter-spacing:-0.124800pt;}
.lsa4{letter-spacing:-0.122912pt;}
.ls7e{letter-spacing:-0.118560pt;}
.ls46{letter-spacing:-0.117568pt;}
.lsb1{letter-spacing:-0.112224pt;}
.lsa8{letter-spacing:-0.106880pt;}
.ls8d{letter-spacing:-0.106613pt;}
.lsa9{letter-spacing:-0.101536pt;}
.ls84{letter-spacing:-0.096459pt;}
.ls4f{letter-spacing:-0.096192pt;}
.ls3e{letter-spacing:-0.090848pt;}
.ls83{letter-spacing:-0.086306pt;}
.ls4b{letter-spacing:-0.085504pt;}
.lsc8{letter-spacing:-0.080864pt;}
.ls40{letter-spacing:-0.080160pt;}
.ls39{letter-spacing:-0.076608pt;}
.ls44{letter-spacing:-0.074816pt;}
.ls7c{letter-spacing:-0.072778pt;}
.lsab{letter-spacing:-0.069472pt;}
.ls52{letter-spacing:-0.064128pt;}
.ls4c{letter-spacing:-0.058784pt;}
.ls4a{letter-spacing:-0.053440pt;}
.lsa5{letter-spacing:-0.048096pt;}
.lsaf{letter-spacing:-0.042752pt;}
.ls53{letter-spacing:-0.037408pt;}
.ls81{letter-spacing:-0.035538pt;}
.ls49{letter-spacing:-0.032064pt;}
.ls80{letter-spacing:-0.031920pt;}
.ls89{letter-spacing:-0.030461pt;}
.ls54{letter-spacing:-0.026720pt;}
.ls3f{letter-spacing:-0.021376pt;}
.ls88{letter-spacing:-0.020307pt;}
.lsa7{letter-spacing:-0.019200pt;}
.ls7f{letter-spacing:-0.018240pt;}
.lsc9{letter-spacing:-0.017024pt;}
.ls45{letter-spacing:-0.016032pt;}
.ls87{letter-spacing:-0.015230pt;}
.ls3b{letter-spacing:-0.014400pt;}
.ls48{letter-spacing:-0.010688pt;}
.ls8c{letter-spacing:-0.010154pt;}
.ls3a{letter-spacing:-0.008512pt;}
.ls7d{letter-spacing:-0.008086pt;}
.ls41{letter-spacing:-0.005344pt;}
.ls85{letter-spacing:-0.005077pt;}
.ls3c{letter-spacing:-0.004800pt;}
.lsb{letter-spacing:0.000000pt;}
.lse2{letter-spacing:0.000447pt;}
.ls1b{letter-spacing:0.000518pt;}
.ls8{letter-spacing:0.000607pt;}
.ls13{letter-spacing:0.000623pt;}
.ls7b{letter-spacing:0.000814pt;}
.ls7a{letter-spacing:0.000830pt;}
.lsdc{letter-spacing:0.000853pt;}
.lse0{letter-spacing:0.000921pt;}
.lsa0{letter-spacing:0.001635pt;}
.lse4{letter-spacing:0.001688pt;}
.ls9{letter-spacing:0.001721pt;}
.ls6{letter-spacing:0.001735pt;}
.lsd9{letter-spacing:0.002038pt;}
.ls1d{letter-spacing:0.002133pt;}
.ls1{letter-spacing:0.002422pt;}
.ls20{letter-spacing:0.002755pt;}
.lsba{letter-spacing:0.002868pt;}
.lsdf{letter-spacing:0.002879pt;}
.lsdd{letter-spacing:0.004053pt;}
.lsde{letter-spacing:0.004428pt;}
.ls66{letter-spacing:0.004560pt;}
.ls93{letter-spacing:0.004800pt;}
.ls74{letter-spacing:0.005077pt;}
.ls2b{letter-spacing:0.005344pt;}
.lsbf{letter-spacing:0.006400pt;}
.ls61{letter-spacing:0.009120pt;}
.ls92{letter-spacing:0.009600pt;}
.ls2a{letter-spacing:0.010688pt;}
.ls68{letter-spacing:0.013680pt;}
.ls97{letter-spacing:0.014400pt;}
.ls6f{letter-spacing:0.015230pt;}
.ls9d{letter-spacing:0.016032pt;}
.lsb4{letter-spacing:0.019200pt;}
.ls73{letter-spacing:0.020307pt;}
.ls8f{letter-spacing:0.021376pt;}
.ls65{letter-spacing:0.022800pt;}
.ls98{letter-spacing:0.024000pt;}
.ls35{letter-spacing:0.026720pt;}
.ls60{letter-spacing:0.027360pt;}
.ls27{letter-spacing:0.028800pt;}
.ls70{letter-spacing:0.030461pt;}
.ls2c{letter-spacing:0.032064pt;}
.ls29{letter-spacing:0.033600pt;}
.ls71{letter-spacing:0.035538pt;}
.ls62{letter-spacing:0.036480pt;}
.ls90{letter-spacing:0.037408pt;}
.ls28{letter-spacing:0.038400pt;}
.ls6d{letter-spacing:0.040614pt;}
.ls30{letter-spacing:0.042752pt;}
.ls96{letter-spacing:0.043200pt;}
.ls6a{letter-spacing:0.045691pt;}
.ls31{letter-spacing:0.048096pt;}
.ls67{letter-spacing:0.050160pt;}
.ls6e{letter-spacing:0.050768pt;}
.lsbe{letter-spacing:0.052800pt;}
.ls2d{letter-spacing:0.053440pt;}
.ls63{letter-spacing:0.054720pt;}
.lsc3{letter-spacing:0.055328pt;}
.ls99{letter-spacing:0.057600pt;}
.ls2f{letter-spacing:0.058784pt;}
.ls5e{letter-spacing:0.060648pt;}
.ls6c{letter-spacing:0.060922pt;}
.ls24{letter-spacing:0.063840pt;}
.ls33{letter-spacing:0.064128pt;}
.ls72{letter-spacing:0.065998pt;}
.ls94{letter-spacing:0.067200pt;}
.lsa2{letter-spacing:0.069472pt;}
.ls34{letter-spacing:0.074816pt;}
.lsc1{letter-spacing:0.080160pt;}
.lsa1{letter-spacing:0.085504pt;}
.ls8a{letter-spacing:0.086306pt;}
.ls9e{letter-spacing:0.090848pt;}
.ls91{letter-spacing:0.091200pt;}
.lsbd{letter-spacing:0.101536pt;}
.ls51{letter-spacing:0.106880pt;}
.ls8b{letter-spacing:0.111690pt;}
.ls9c{letter-spacing:0.112224pt;}
.ls64{letter-spacing:0.118560pt;}
.ls95{letter-spacing:0.124800pt;}
.ls69{letter-spacing:0.126920pt;}
.ls9b{letter-spacing:0.128256pt;}
.ls32{letter-spacing:0.133600pt;}
.lsb5{letter-spacing:0.134400pt;}
.lsbc{letter-spacing:0.138944pt;}
.ls6b{letter-spacing:0.152304pt;}
.lsc4{letter-spacing:0.153216pt;}
.ls5f{letter-spacing:0.153642pt;}
.ls2e{letter-spacing:0.160320pt;}
.ls26{letter-spacing:0.161728pt;}
.ls25{letter-spacing:0.170240pt;}
.ls9f{letter-spacing:0.171008pt;}
.lsc0{letter-spacing:0.203072pt;}
.ls55{letter-spacing:0.299264pt;}
.lse{letter-spacing:0.596214pt;}
.ls12{letter-spacing:0.601548pt;}
.ls18{letter-spacing:0.637762pt;}
.lsf{letter-spacing:0.663552pt;}
.lsb6{letter-spacing:1.031392pt;}
.lsb7{letter-spacing:1.058112pt;}
.lsbb{letter-spacing:1.116896pt;}
.lsc{letter-spacing:1.133683pt;}
.ls1c{letter-spacing:1.262881pt;}
.ls86{letter-spacing:1.299661pt;}
.ls3{letter-spacing:1.654338pt;}
.lsd3{letter-spacing:2.319296pt;}
.ls0{letter-spacing:2.657067pt;}
.lsa3{letter-spacing:3.123467pt;}
.ls19{letter-spacing:3.158400pt;}
.ls14{letter-spacing:3.316853pt;}
.ls21{letter-spacing:3.318400pt;}
.lsd{letter-spacing:3.320563pt;}
.ls15{letter-spacing:3.323753pt;}
.lsd4{letter-spacing:4.558432pt;}
.ls9a{letter-spacing:5.525696pt;}
.lsca{letter-spacing:6.797568pt;}
.ls4{letter-spacing:9.298933pt;}
.lsa{letter-spacing:10.626533pt;}
.ls56{letter-spacing:10.701094pt;}
.ls17{letter-spacing:10.968429pt;}
.ls57{letter-spacing:11.310618pt;}
.ls16{letter-spacing:11.593548pt;}
.lsdb{letter-spacing:11.785722pt;}
.lsd8{letter-spacing:11.882943pt;}
.ls75{letter-spacing:11.925579pt;}
.ls36{letter-spacing:11.950933pt;}
.lsd7{letter-spacing:11.954133pt;}
.ls76{letter-spacing:11.956267pt;}
.lsda{letter-spacing:11.959467pt;}
.lsc5{letter-spacing:12.085539pt;}
.ls8e{letter-spacing:12.094291pt;}
.lse1{letter-spacing:12.117748pt;}
.lse3{letter-spacing:12.125936pt;}
.ls5a{letter-spacing:12.262999pt;}
.lsc7{letter-spacing:12.464359pt;}
.lsb3{letter-spacing:12.925762pt;}
.ls58{letter-spacing:13.105305pt;}
.ls5d{letter-spacing:13.234457pt;}
.ls5b{letter-spacing:13.257418pt;}
.lsc6{letter-spacing:13.334103pt;}
.ls37{letter-spacing:13.336601pt;}
.lsc2{letter-spacing:13.389734pt;}
.ls22{letter-spacing:13.654400pt;}
.lsb9{letter-spacing:13.917762pt;}
.lsb8{letter-spacing:13.923096pt;}
.ls23{letter-spacing:14.558679pt;}
.ls79{letter-spacing:14.635681pt;}
.lsd5{letter-spacing:15.048753pt;}
.lsd6{letter-spacing:15.080800pt;}
.ls1f{letter-spacing:15.395096pt;}
.ls10{letter-spacing:16.020214pt;}
.ls1e{letter-spacing:16.025548pt;}
.ls11{letter-spacing:16.061762pt;}
.ls59{letter-spacing:16.329799pt;}
.ls78{letter-spacing:16.533720pt;}
.ls1a{letter-spacing:16.816073pt;}
.ls77{letter-spacing:19.989929pt;}
.ls38{letter-spacing:20.382086pt;}
.ls5c{letter-spacing:20.497119pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ws11b{word-spacing:-53.440000pt;}
.wsd7{word-spacing:-50.768000pt;}
.ws87{word-spacing:-13.424128pt;}
.ws11f{word-spacing:-13.418784pt;}
.ws122{word-spacing:-13.376032pt;}
.ws11d{word-spacing:-13.360000pt;}
.ws4a{word-spacing:-13.283467pt;}
.ws11e{word-spacing:-13.258464pt;}
.ws88{word-spacing:-13.023328pt;}
.wsd6{word-spacing:-12.595541pt;}
.wsd5{word-spacing:-12.372162pt;}
.ws11c{word-spacing:-11.980800pt;}
.ws192{word-spacing:-11.955200pt;}
.ws86{word-spacing:-10.810240pt;}
.ws1e3{word-spacing:-10.801728pt;}
.ws16{word-spacing:-10.626800pt;}
.wsd4{word-spacing:-10.269728pt;}
.ws4{word-spacing:-10.095467pt;}
.ws9{word-spacing:-9.298400pt;}
.ws18e{word-spacing:-3.559969pt;}
.wsbd{word-spacing:-3.222432pt;}
.ws158{word-spacing:-3.174336pt;}
.ws169{word-spacing:-3.142272pt;}
.ws17d{word-spacing:-3.110208pt;}
.ws93{word-spacing:-3.094176pt;}
.ws46{word-spacing:-3.081764pt;}
.ws10d{word-spacing:-2.975005pt;}
.ws181{word-spacing:-2.853696pt;}
.ws1ad{word-spacing:-2.843008pt;}
.ws1c2{word-spacing:-2.816095pt;}
.ws1ae{word-spacing:-2.789568pt;}
.wsbe{word-spacing:-2.773536pt;}
.ws10e{word-spacing:-2.721165pt;}
.ws92{word-spacing:-2.704064pt;}
.wsca{word-spacing:-2.603559pt;}
.ws114{word-spacing:-2.568861pt;}
.ws115{word-spacing:-2.558707pt;}
.ws1cb{word-spacing:-2.543744pt;}
.wsb0{word-spacing:-2.527712pt;}
.ws1c9{word-spacing:-2.511680pt;}
.ws1d7{word-spacing:-2.500992pt;}
.ws1c{word-spacing:-2.486682pt;}
.ws1de{word-spacing:-2.463584pt;}
.wsb1{word-spacing:-2.458240pt;}
.ws1ca{word-spacing:-2.436864pt;}
.ws176{word-spacing:-2.399456pt;}
.ws97{word-spacing:-2.346016pt;}
.ws1cc{word-spacing:-2.255168pt;}
.ws191{word-spacing:-2.231622pt;}
.ws1cd{word-spacing:-2.228448pt;}
.ws120{word-spacing:-2.199757pt;}
.ws1f6{word-spacing:-2.191040pt;}
.ws95{word-spacing:-2.164320pt;}
.ws96{word-spacing:-2.148288pt;}
.ws15c{word-spacing:-2.137600pt;}
.ws53{word-spacing:-2.125355pt;}
.ws29{word-spacing:-2.104115pt;}
.ws121{word-spacing:-2.008474pt;}
.ws1ef{word-spacing:-1.998656pt;}
.ws1af{word-spacing:-1.971936pt;}
.wscb{word-spacing:-1.965953pt;}
.ws175{word-spacing:-1.886432pt;}
.ws187{word-spacing:-1.875744pt;}
.ws5a{word-spacing:-1.859685pt;}
.ws221{word-spacing:-1.817190pt;}
.ws190{word-spacing:-1.806551pt;}
.ws1ee{word-spacing:-1.699392pt;}
.ws6{word-spacing:-1.696326pt;}
.ws1b0{word-spacing:-1.619232pt;}
.ws222{word-spacing:-1.578086pt;}
.ws1b1{word-spacing:-1.565792pt;}
.ws157{word-spacing:-1.544416pt;}
.ws1bd{word-spacing:-1.528384pt;}
.ws1bc{word-spacing:-1.512352pt;}
.wsaf{word-spacing:-1.496320pt;}
.ws213{word-spacing:-1.490976pt;}
.wsae{word-spacing:-1.485632pt;}
.ws212{word-spacing:-1.437536pt;}
.ws5c{word-spacing:-1.434614pt;}
.ws42{word-spacing:-1.381481pt;}
.ws152{word-spacing:-1.287904pt;}
.ws7d{word-spacing:-1.275213pt;}
.ws1d9{word-spacing:-1.255840pt;}
.ws15d{word-spacing:-1.245152pt;}
.ws1d0{word-spacing:-1.234464pt;}
.ws4b{word-spacing:-1.222079pt;}
.ws200{word-spacing:-1.191712pt;}
.ws5{word-spacing:-1.175671pt;}
.ws119{word-spacing:-1.168945pt;}
.ws8{word-spacing:-1.153002pt;}
.ws15e{word-spacing:-1.148960pt;}
.ws1f3{word-spacing:-1.111552pt;}
.ws2b{word-spacing:-1.099878pt;}
.ws1f2{word-spacing:-1.063456pt;}
.ws50{word-spacing:-1.062677pt;}
.ws3d{word-spacing:-1.009543pt;}
.ws160{word-spacing:-0.988640pt;}
.wsef{word-spacing:-0.959515pt;}
.ws51{word-spacing:-0.956410pt;}
.ws1c8{word-spacing:-0.945888pt;}
.ws183{word-spacing:-0.924512pt;}
.ws201{word-spacing:-0.919168pt;}
.ws1f5{word-spacing:-0.913824pt;}
.wsd8{word-spacing:-0.908595pt;}
.wsa1{word-spacing:-0.908480pt;}
.ws49{word-spacing:-0.903276pt;}
.wsf7{word-spacing:-0.893517pt;}
.ws106{word-spacing:-0.873210pt;}
.ws107{word-spacing:-0.868133pt;}
.wsb3{word-spacing:-0.865728pt;}
.ws48{word-spacing:-0.850142pt;}
.ws153{word-spacing:-0.849696pt;}
.ws16a{word-spacing:-0.833664pt;}
.wsf6{word-spacing:-0.832595pt;}
.ws102{word-spacing:-0.827518pt;}
.wsed{word-spacing:-0.802134pt;}
.ws65{word-spacing:-0.797008pt;}
.ws1f9{word-spacing:-0.785568pt;}
.ws16b{word-spacing:-0.774880pt;}
.ws1e0{word-spacing:-0.753504pt;}
.wsee{word-spacing:-0.746290pt;}
.ws4e{word-spacing:-0.743874pt;}
.ws44{word-spacing:-0.690740pt;}
.wsb4{word-spacing:-0.678688pt;}
.wsd9{word-spacing:-0.669491pt;}
.ws1dd{word-spacing:-0.635936pt;}
.ws138{word-spacing:-0.630592pt;}
.ws1ff{word-spacing:-0.609216pt;}
.ws1bb{word-spacing:-0.598528pt;}
.ws139{word-spacing:-0.587840pt;}
.ws84{word-spacing:-0.584473pt;}
.ws1d8{word-spacing:-0.545088pt;}
.ws1dc{word-spacing:-0.534400pt;}
.ws69{word-spacing:-0.531339pt;}
.ws15f{word-spacing:-0.523712pt;}
.ws1f8{word-spacing:-0.491648pt;}
.ws1ba{word-spacing:-0.480960pt;}
.ws236{word-spacing:-0.478208pt;}
.ws6c{word-spacing:-0.478205pt;}
.ws94{word-spacing:-0.475616pt;}
.ws1df{word-spacing:-0.454240pt;}
.ws80{word-spacing:-0.425071pt;}
.ws81{word-spacing:-0.371937pt;}
.ws18f{word-spacing:-0.336117pt;}
.ws52{word-spacing:-0.318803pt;}
.ws1bf{word-spacing:-0.304608pt;}
.ws118{word-spacing:-0.284301pt;}
.ws45{word-spacing:-0.265669pt;}
.ws112{word-spacing:-0.243686pt;}
.ws9c{word-spacing:-0.240480pt;}
.ws242{word-spacing:-0.239104pt;}
.ws8c{word-spacing:-0.238336pt;}
.ws1e6{word-spacing:-0.234080pt;}
.ws1b9{word-spacing:-0.229792pt;}
.wse1{word-spacing:-0.226419pt;}
.ws9d{word-spacing:-0.224448pt;}
.ws14e{word-spacing:-0.213760pt;}
.ws30{word-spacing:-0.212535pt;}
.ws1b7{word-spacing:-0.208416pt;}
.ws113{word-spacing:-0.208149pt;}
.wsc0{word-spacing:-0.197728pt;}
.ws133{word-spacing:-0.196800pt;}
.ws89{word-spacing:-0.191283pt;}
.ws1fe{word-spacing:-0.176352pt;}
.ws2e{word-spacing:-0.159402pt;}
.ws204{word-spacing:-0.149632pt;}
.wsda{word-spacing:-0.143462pt;}
.ws19d{word-spacing:-0.134400pt;}
.ws14d{word-spacing:-0.133600pt;}
.ws1b6{word-spacing:-0.117568pt;}
.ws32{word-spacing:-0.106268pt;}
.ws28{word-spacing:-0.095642pt;}
.ws8b{word-spacing:-0.068096pt;}
.wse0{word-spacing:-0.064691pt;}
.ws1e5{word-spacing:-0.063840pt;}
.ws7a{word-spacing:-0.055366pt;}
.ws1{word-spacing:-0.053134pt;}
.ws25{word-spacing:-0.047821pt;}
.ws34{word-spacing:-0.042507pt;}
.wsa{word-spacing:-0.037194pt;}
.ws1c1{word-spacing:-0.004258pt;}
.ws23f{word-spacing:-0.002270pt;}
.ws2{word-spacing:-0.001333pt;}
.ws22d{word-spacing:-0.000905pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.000800pt;}
.ws199{word-spacing:0.004267pt;}
.ws1fa{word-spacing:0.004800pt;}
.ws1da{word-spacing:0.037408pt;}
.ws206{word-spacing:0.042752pt;}
.ws1e4{word-spacing:0.047821pt;}
.ws3a{word-spacing:0.053134pt;}
.ws12a{word-spacing:0.053440pt;}
.ws128{word-spacing:0.064128pt;}
.ws131{word-spacing:0.072000pt;}
.ws12b{word-spacing:0.080160pt;}
.ws136{word-spacing:0.085504pt;}
.ws137{word-spacing:0.090848pt;}
.ws22{word-spacing:0.095642pt;}
.ws132{word-spacing:0.096000pt;}
.ws130{word-spacing:0.096192pt;}
.wse6{word-spacing:0.100320pt;}
.wsf8{word-spacing:0.101536pt;}
.wse9{word-spacing:0.104880pt;}
.ws40{word-spacing:0.106268pt;}
.wsc3{word-spacing:0.106880pt;}
.ws1c5{word-spacing:0.110400pt;}
.wsc1{word-spacing:0.112224pt;}
.ws129{word-spacing:0.117568pt;}
.wse5{word-spacing:0.118560pt;}
.ws1b8{word-spacing:0.122912pt;}
.ws8e{word-spacing:0.124800pt;}
.wse2{word-spacing:0.127680pt;}
.ws91{word-spacing:0.129600pt;}
.wse7{word-spacing:0.132240pt;}
.ws214{word-spacing:0.133600pt;}
.ws8d{word-spacing:0.134400pt;}
.ws182{word-spacing:0.138944pt;}
.ws135{word-spacing:0.139200pt;}
.wseb{word-spacing:0.141360pt;}
.ws21{word-spacing:0.143462pt;}
.ws19c{word-spacing:0.144000pt;}
.wse4{word-spacing:0.145920pt;}
.ws134{word-spacing:0.148800pt;}
.wsbf{word-spacing:0.149632pt;}
.wse8{word-spacing:0.150480pt;}
.ws1c6{word-spacing:0.153600pt;}
.wse3{word-spacing:0.155040pt;}
.ws16f{word-spacing:0.158400pt;}
.ws38{word-spacing:0.159402pt;}
.ws1f7{word-spacing:0.160320pt;}
.ws166{word-spacing:0.165664pt;}
.ws90{word-spacing:0.168000pt;}
.ws1fd{word-spacing:0.172800pt;}
.wsea{word-spacing:0.173280pt;}
.ws8f{word-spacing:0.177600pt;}
.ws1db{word-spacing:0.181696pt;}
.wsc{word-spacing:0.185968pt;}
.wsec{word-spacing:0.186960pt;}
.ws205{word-spacing:0.187040pt;}
.ws1fb{word-spacing:0.187200pt;}
.ws1d{word-spacing:0.191283pt;}
.ws1d3{word-spacing:0.203072pt;}
.ws17{word-spacing:0.212536pt;}
.ws16e{word-spacing:0.219104pt;}
.wsad{word-spacing:0.224448pt;}
.ws1e{word-spacing:0.239104pt;}
.wse{word-spacing:0.260355pt;}
.ws35{word-spacing:0.265669pt;}
.ws243{word-spacing:0.286925pt;}
.ws55{word-spacing:0.318803pt;}
.ws20f{word-spacing:0.363392pt;}
.ws12e{word-spacing:0.368736pt;}
.ws1fc{word-spacing:0.388800pt;}
.ws12d{word-spacing:0.400800pt;}
.wsfc{word-spacing:0.401067pt;}
.wsfb{word-spacing:0.406144pt;}
.ws188{word-spacing:0.416832pt;}
.ws1a5{word-spacing:0.422176pt;}
.ws1c0{word-spacing:0.425071pt;}
.ws1a6{word-spacing:0.427520pt;}
.wsc2{word-spacing:0.432864pt;}
.ws1a7{word-spacing:0.443552pt;}
.ws12f{word-spacing:0.454240pt;}
.ws19b{word-spacing:0.460800pt;}
.ws12c{word-spacing:0.491648pt;}
.ws73{word-spacing:0.505333pt;}
.ws67{word-spacing:0.531339pt;}
.ws70{word-spacing:0.584473pt;}
.ws100{word-spacing:0.604139pt;}
.ws20{word-spacing:0.621670pt;}
.wsff{word-spacing:0.629523pt;}
.ws189{word-spacing:0.635936pt;}
.ws198{word-spacing:0.660267pt;}
.ws71{word-spacing:0.663842pt;}
.ws78{word-spacing:0.664383pt;}
.ws19a{word-spacing:0.665600pt;}
.ws39{word-spacing:0.690740pt;}
.ws101{word-spacing:0.710752pt;}
.ws149{word-spacing:0.737472pt;}
.ws171{word-spacing:0.742816pt;}
.ws59{word-spacing:0.743874pt;}
.ws7e{word-spacing:0.797008pt;}
.ws68{word-spacing:0.850142pt;}
.ws172{word-spacing:0.855040pt;}
.ws1a{word-spacing:0.908595pt;}
.ws108{word-spacing:0.949362pt;}
.wsa6{word-spacing:0.988640pt;}
.ws1e7{word-spacing:0.993984pt;}
.wsb2{word-spacing:0.999328pt;}
.wsc8{word-spacing:1.062677pt;}
.ws99{word-spacing:1.063456pt;}
.ws177{word-spacing:1.074144pt;}
.ws1e8{word-spacing:1.079488pt;}
.ws82{word-spacing:1.115811pt;}
.wsa7{word-spacing:1.132928pt;}
.ws22c{word-spacing:1.147699pt;}
.ws9a{word-spacing:1.164992pt;}
.ws1e1{word-spacing:1.168945pt;}
.ws9b{word-spacing:1.197056pt;}
.ws85{word-spacing:1.222079pt;}
.wsf1{word-spacing:1.253970pt;}
.ws10a{word-spacing:1.264123pt;}
.ws31{word-spacing:1.275213pt;}
.wsf0{word-spacing:1.304738pt;}
.ws109{word-spacing:1.319968pt;}
.ws5b{word-spacing:1.328347pt;}
.ws1f0{word-spacing:1.330656pt;}
.ws19{word-spacing:1.338982pt;}
.wsba{word-spacing:1.341344pt;}
.wsb9{word-spacing:1.362720pt;}
.ws3f{word-spacing:1.381481pt;}
.wsa5{word-spacing:1.384096pt;}
.ws227{word-spacing:1.386803pt;}
.ws1f1{word-spacing:1.405472pt;}
.ws178{word-spacing:1.426848pt;}
.ws2a{word-spacing:1.482445pt;}
.wsc7{word-spacing:1.487748pt;}
.ws1f{word-spacing:1.530266pt;}
.ws4d{word-spacing:1.540882pt;}
.wscf{word-spacing:1.647150pt;}
.ws43{word-spacing:1.700284pt;}
.ws219{word-spacing:1.704736pt;}
.ws218{word-spacing:1.731456pt;}
.ws21a{word-spacing:1.753418pt;}
.wsd{word-spacing:1.785293pt;}
.ws167{word-spacing:1.790240pt;}
.wscc{word-spacing:1.806551pt;}
.ws21c{word-spacing:1.859685pt;}
.ws168{word-spacing:1.870400pt;}
.wsfe{word-spacing:1.888570pt;}
.ws76{word-spacing:1.912819pt;}
.ws14b{word-spacing:1.913152pt;}
.wsfd{word-spacing:1.934261pt;}
.ws237{word-spacing:1.960653pt;}
.ws16c{word-spacing:1.961248pt;}
.ws58{word-spacing:1.965953pt;}
.ws1c7{word-spacing:1.971936pt;}
.ws1ac{word-spacing:1.987968pt;}
.ws179{word-spacing:1.998656pt;}
.ws17a{word-spacing:2.004000pt;}
.ws220{word-spacing:2.008474pt;}
.ws125{word-spacing:2.014688pt;}
.ws6e{word-spacing:2.019087pt;}
.wsbc{word-spacing:2.020032pt;}
.ws16d{word-spacing:2.030720pt;}
.ws11a{word-spacing:2.072221pt;}
.ws14c{word-spacing:2.073472pt;}
.ws14a{word-spacing:2.089504pt;}
.wsbb{word-spacing:2.094848pt;}
.ws103{word-spacing:2.096718pt;}
.wsb5{word-spacing:2.100192pt;}
.wsb6{word-spacing:2.121568pt;}
.ws104{word-spacing:2.147486pt;}
.ws47{word-spacing:2.178489pt;}
.ws1b{word-spacing:2.199757pt;}
.ws203{word-spacing:2.223104pt;}
.ws1a1{word-spacing:2.228448pt;}
.ws37{word-spacing:2.231622pt;}
.ws1a0{word-spacing:2.255168pt;}
.ws20d{word-spacing:2.271200pt;}
.ws1b4{word-spacing:2.281888pt;}
.ws195{word-spacing:2.284756pt;}
.wsa8{word-spacing:2.324640pt;}
.wsa9{word-spacing:2.329984pt;}
.ws185{word-spacing:2.335328pt;}
.wsde{word-spacing:2.337890pt;}
.ws1b5{word-spacing:2.351360pt;}
.ws20c{word-spacing:2.356704pt;}
.ws41{word-spacing:2.391024pt;}
.ws74{word-spacing:2.444158pt;}
.ws111{word-spacing:2.492709pt;}
.ws186{word-spacing:2.506336pt;}
.ws18{word-spacing:2.550432pt;}
.ws202{word-spacing:2.602528pt;}
.ws1be{word-spacing:2.613216pt;}
.ws234{word-spacing:2.630144pt;}
.ws1a9{word-spacing:2.666656pt;}
.ws1a8{word-spacing:2.720096pt;}
.wsfa{word-spacing:2.761779pt;}
.ws83{word-spacing:2.762961pt;}
.wsf9{word-spacing:2.777010pt;}
.ws1a2{word-spacing:2.810944pt;}
.wsdf{word-spacing:2.816095pt;}
.ws10f{word-spacing:2.827778pt;}
.ws141{word-spacing:2.837664pt;}
.ws143{word-spacing:2.853696pt;}
.ws2c{word-spacing:2.861926pt;}
.ws244{word-spacing:2.866227pt;}
.ws223{word-spacing:2.866603pt;}
.ws238{word-spacing:2.867482pt;}
.ws241{word-spacing:2.868241pt;}
.ws18b{word-spacing:2.869229pt;}
.ws23d{word-spacing:2.869248pt;}
.ws18c{word-spacing:2.922363pt;}
.ws110{word-spacing:2.924237pt;}
.ws1d6{word-spacing:2.971264pt;}
.ws6f{word-spacing:2.975497pt;}
.wscd{word-spacing:3.028630pt;}
.ws17c{word-spacing:3.056768pt;}
.ws231{word-spacing:3.059121pt;}
.ws75{word-spacing:3.081764pt;}
.ws1c3{word-spacing:3.134898pt;}
.ws2d{word-spacing:3.188032pt;}
.ws162{word-spacing:3.201056pt;}
.ws17b{word-spacing:3.233120pt;}
.ws6a{word-spacing:3.241166pt;}
.ws163{word-spacing:3.270528pt;}
.ws1d4{word-spacing:3.291904pt;}
.ws1d5{word-spacing:3.313280pt;}
.ws142{word-spacing:3.318624pt;}
.ws24{word-spacing:3.395277pt;}
.ws2f{word-spacing:3.453701pt;}
.ws144{word-spacing:3.500320pt;}
.ws77{word-spacing:3.506835pt;}
.ws207{word-spacing:3.548416pt;}
.ws7b{word-spacing:3.557434pt;}
.ws61{word-spacing:3.559969pt;}
.ws1b2{word-spacing:3.564448pt;}
.ws210{word-spacing:3.580480pt;}
.ws211{word-spacing:3.612544pt;}
.ws1e2{word-spacing:3.613103pt;}
.ws197{word-spacing:3.666237pt;}
.ws161{word-spacing:3.692704pt;}
.wsa4{word-spacing:3.767520pt;}
.ws216{word-spacing:3.820960pt;}
.wsd1{word-spacing:3.825638pt;}
.wsb7{word-spacing:3.853024pt;}
.ws4c{word-spacing:3.878772pt;}
.wsb8{word-spacing:3.922496pt;}
.ws196{word-spacing:3.931906pt;}
.wsac{word-spacing:3.943872pt;}
.ws1b3{word-spacing:3.965248pt;}
.wsab{word-spacing:3.986624pt;}
.ws21d{word-spacing:4.016947pt;}
.ws36{word-spacing:4.038174pt;}
.ws64{word-spacing:4.091308pt;}
.ws217{word-spacing:4.168320pt;}
.ws17f{word-spacing:4.179008pt;}
.wsf3{word-spacing:4.188360pt;}
.ws17e{word-spacing:4.221760pt;}
.ws1a3{word-spacing:4.237792pt;}
.ws15a{word-spacing:4.253824pt;}
.ws27{word-spacing:4.256051pt;}
.ws159{word-spacing:4.259168pt;}
.ws215{word-spacing:4.275200pt;}
.wsa2{word-spacing:4.301920pt;}
.wsc9{word-spacing:4.303843pt;}
.ws26{word-spacing:4.303872pt;}
.ws117{word-spacing:4.320357pt;}
.ws116{word-spacing:4.335587pt;}
.ws1e9{word-spacing:4.339328pt;}
.ws15b{word-spacing:4.350016pt;}
.wsf4{word-spacing:4.355894pt;}
.wsa3{word-spacing:4.366048pt;}
.wsc6{word-spacing:4.410111pt;}
.ws13e{word-spacing:4.462240pt;}
.ws3e{word-spacing:4.463245pt;}
.ws14f{word-spacing:4.537056pt;}
.ws13c{word-spacing:4.558432pt;}
.ws1cf{word-spacing:4.569120pt;}
.ws13d{word-spacing:4.574464pt;}
.wsf5{word-spacing:4.579274pt;}
.ws20e{word-spacing:4.590496pt;}
.wsf2{word-spacing:4.594504pt;}
.ws146{word-spacing:4.601184pt;}
.ws3b{word-spacing:4.622646pt;}
.ws1ce{word-spacing:4.627904pt;}
.ws156{word-spacing:4.633248pt;}
.ws145{word-spacing:4.638592pt;}
.ws154{word-spacing:4.665312pt;}
.wsc5{word-spacing:4.675780pt;}
.ws150{word-spacing:4.676000pt;}
.ws21e{word-spacing:4.686438pt;}
.ws155{word-spacing:4.692032pt;}
.ws1c4{word-spacing:4.728914pt;}
.ws151{word-spacing:4.814944pt;}
.wsd2{word-spacing:4.835182pt;}
.wsaa{word-spacing:4.841664pt;}
.ws1eb{word-spacing:4.873728pt;}
.ws1ed{word-spacing:4.884416pt;}
.ws5f{word-spacing:4.888316pt;}
.ws170{word-spacing:4.900448pt;}
.ws1ec{word-spacing:4.911136pt;}
.ws105{word-spacing:4.914342pt;}
.wsd3{word-spacing:4.941450pt;}
.ws60{word-spacing:4.994583pt;}
.ws124{word-spacing:5.156960pt;}
.ws148{word-spacing:5.167648pt;}
.ws127{word-spacing:5.172992pt;}
.wsd0{word-spacing:5.207119pt;}
.ws226{word-spacing:5.212467pt;}
.ws164{word-spacing:5.237120pt;}
.ws126{word-spacing:5.295904pt;}
.ws147{word-spacing:5.322624pt;}
.ws123{word-spacing:5.327968pt;}
.ws18d{word-spacing:5.366521pt;}
.ws14{word-spacing:5.393072pt;}
.ws4f{word-spacing:5.419654pt;}
.ws15{word-spacing:5.467459pt;}
.ws10b{word-spacing:5.493098pt;}
.ws13a{word-spacing:5.531040pt;}
.ws13b{word-spacing:5.552416pt;}
.ws10c{word-spacing:5.569250pt;}
.ws165{word-spacing:5.616544pt;}
.ws13f{word-spacing:5.632576pt;}
.ws1d2{word-spacing:5.637920pt;}
.ws1d1{word-spacing:5.659296pt;}
.ws21f{word-spacing:5.786317pt;}
.ws1ab{word-spacing:5.792896pt;}
.ws19e{word-spacing:5.798240pt;}
.ws18a{word-spacing:5.844725pt;}
.ws19f{word-spacing:5.846336pt;}
.ws173{word-spacing:5.857024pt;}
.ws140{word-spacing:5.862368pt;}
.ws174{word-spacing:5.867712pt;}
.ws9f{word-spacing:5.878400pt;}
.ws98{word-spacing:5.921152pt;}
.ws23{word-spacing:5.929779pt;}
.ws1f4{word-spacing:5.931840pt;}
.ws54{word-spacing:5.950993pt;}
.ws194{word-spacing:6.110395pt;}
.ws184{word-spacing:6.124224pt;}
.ws9e{word-spacing:6.134912pt;}
.ws1ea{word-spacing:6.466240pt;}
.wsdd{word-spacing:6.535466pt;}
.ws193{word-spacing:6.588599pt;}
.wsc4{word-spacing:6.694867pt;}
.ws23a{word-spacing:6.694912pt;}
.ws8a{word-spacing:7.119938pt;}
.ws209{word-spacing:7.150272pt;}
.wsce{word-spacing:7.226206pt;}
.ws208{word-spacing:7.262496pt;}
.ws57{word-spacing:7.332474pt;}
.ws21b{word-spacing:7.385607pt;}
.wsdb{word-spacing:7.545009pt;}
.ws22f{word-spacing:7.555686pt;}
.ws12{word-spacing:7.699075pt;}
.ws180{word-spacing:7.711392pt;}
.wsa0{word-spacing:7.716736pt;}
.ws56{word-spacing:9.192159pt;}
.wsb{word-spacing:9.298400pt;}
.ws1a4{word-spacing:9.966560pt;}
.ws33{word-spacing:10.585529pt;}
.ws20a{word-spacing:10.666624pt;}
.ws20b{word-spacing:10.746784pt;}
.ws7{word-spacing:10.835148pt;}
.ws22a{word-spacing:11.716096pt;}
.ws225{word-spacing:11.811738pt;}
.ws240{word-spacing:11.898982pt;}
.ws22e{word-spacing:11.900928pt;}
.ws228{word-spacing:11.907379pt;}
.ws229{word-spacing:12.001785pt;}
.ws230{word-spacing:12.003021pt;}
.ws23c{word-spacing:12.050842pt;}
.ws23e{word-spacing:12.098662pt;}
.ws5e{word-spacing:13.017797pt;}
.ws66{word-spacing:13.054285pt;}
.ws3c{word-spacing:13.153802pt;}
.ws63{word-spacing:13.230333pt;}
.ws6b{word-spacing:13.409522pt;}
.ws62{word-spacing:13.417802pt;}
.wsf{word-spacing:14.348669pt;}
.ws10{word-spacing:14.356730pt;}
.ws22b{word-spacing:14.728806pt;}
.ws239{word-spacing:14.768606pt;}
.ws235{word-spacing:14.772471pt;}
.ws23b{word-spacing:14.774579pt;}
.ws224{word-spacing:14.776627pt;}
.ws233{word-spacing:14.778590pt;}
.ws232{word-spacing:14.967910pt;}
.ws11{word-spacing:15.732893pt;}
.ws79{word-spacing:15.945370pt;}
.ws5d{word-spacing:16.418365pt;}
.ws6d{word-spacing:17.083399pt;}
.ws1aa{word-spacing:17.373344pt;}
.wsdc{word-spacing:19.287594pt;}
.ws13{word-spacing:24.399002pt;}
.ws7f{word-spacing:453.231883pt;}
.ws7c{word-spacing:550.821434pt;}
.ws72{word-spacing:652.271347pt;}
._23{margin-left:-7.965623pt;}
._16{margin-left:-6.864873pt;}
._9{margin-left:-5.483429pt;}
._3{margin-left:-4.032701pt;}
._7{margin-left:-2.665849pt;}
._0{margin-left:-1.721549pt;}
._2{width:0.969929pt;}
._1{width:2.665849pt;}
._1d{width:4.328640pt;}
._4{width:9.643786pt;}
._1e{width:10.602496pt;}
._5{width:11.526572pt;}
._11{width:13.175632pt;}
._c{width:14.920090pt;}
._b{width:16.545997pt;}
._f{width:18.022315pt;}
._1a{width:18.990055pt;}
._a{width:19.941274pt;}
._17{width:20.961200pt;}
._15{width:22.103689pt;}
._6{width:23.063232pt;}
._1f{width:24.197174pt;}
._e{width:25.301440pt;}
._1b{width:26.194996pt;}
._10{width:27.528818pt;}
._8{width:29.011008pt;}
._14{width:30.764509pt;}
._19{width:31.768579pt;}
._d{width:33.044173pt;}
._18{width:34.802683pt;}
._24{width:37.895087pt;}
._12{width:902.810421pt;}
._20{width:1864.894093pt;}
._21{width:1941.647223pt;}
._1c{width:1963.097463pt;}
._22{width:2304.776000pt;}
._13{width:2326.029333pt;}
.fs7{font-size:31.880533pt;}
.fs13{font-size:32.000000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs12{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fsf{font-size:40.432000pt;}
.fs4{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fs11{font-size:45.600000pt;}
.fs9{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs10{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y1e2{bottom:-801.303600pt;}
.y102{bottom:-692.551600pt;}
.y122{bottom:-564.311467pt;}
.y121{bottom:-547.192264pt;}
.y120{bottom:-526.151600pt;}
.y1b3{bottom:-510.651600pt;}
.y214{bottom:-506.120933pt;}
.y156{bottom:-501.108153pt;}
.y11f{bottom:-493.030448pt;}
.y11e{bottom:-475.910944pt;}
.y11d{bottom:-458.871600pt;}
.y172{bottom:-450.409739pt;}
.y22e{bottom:-449.720933pt;}
.y11c{bottom:-441.750448pt;}
.y1dc{bottom:-438.170448pt;}
.y171{bottom:-434.146210pt;}
.y22d{bottom:-432.589917pt;}
.y11b{bottom:-424.711104pt;}
.y1fa{bottom:-424.023467pt;}
.y1db{bottom:-421.131104pt;}
.y170{bottom:-417.958833pt;}
.y22c{bottom:-415.550573pt;}
.y24a{bottom:-415.494267pt;}
.y11a{bottom:-407.591600pt;}
.y1f9{bottom:-406.982608pt;}
.y1da{bottom:-404.011600pt;}
.y16f{bottom:-401.695305pt;}
.y22b{bottom:-398.431069pt;}
.y119{bottom:-390.471600pt;}
.y1f8{bottom:-389.863104pt;}
.y1d9{bottom:-386.882232pt;}
.y16e{bottom:-385.507928pt;}
.y22a{bottom:-381.311565pt;}
.y118{bottom:-373.426656pt;}
.y1f7{bottom:-372.743600pt;}
.y1d8{bottom:-369.842888pt;}
.y16d{bottom:-369.244399pt;}
.y229{bottom:-364.272221pt;}
.y270{bottom:-360.053611pt;}
.y192{bottom:-357.234267pt;}
.y117{bottom:-356.307152pt;}
.y16c{bottom:-352.980870pt;}
.y1d7{bottom:-352.723384pt;}
.y1f6{bottom:-351.703600pt;}
.y228{bottom:-347.152717pt;}
.y26f{bottom:-343.014267pt;}
.y116{bottom:-339.187648pt;}
.y16b{bottom:-336.793493pt;}
.y1d6{bottom:-335.684040pt;}
.y227{bottom:-330.113373pt;}
.y26e{bottom:-325.887515pt;}
.y115{bottom:-322.148304pt;}
.y16a{bottom:-320.529965pt;}
.y1f5{bottom:-318.582944pt;}
.y1d5{bottom:-318.564536pt;}
.y226{bottom:-312.993869pt;}
.y26d{bottom:-308.768011pt;}
.y114{bottom:-305.028800pt;}
.y169{bottom:-304.266436pt;}
.y1ad{bottom:-304.109163pt;}
.y1f4{bottom:-301.543600pt;}
.y1d4{bottom:-301.445032pt;}
.y225{bottom:-295.874365pt;}
.y26c{bottom:-291.728667pt;}
.y168{bottom:-288.079059pt;}
.y113{bottom:-287.989456pt;}
.y1ac{bottom:-287.069819pt;}
.y1f3{bottom:-284.421640pt;}
.y1d3{bottom:-284.405688pt;}
.y224{bottom:-278.835021pt;}
.y26b{bottom:-274.609163pt;}
.y167{bottom:-271.815530pt;}
.y112{bottom:-270.869952pt;}
.y1ab{bottom:-269.950315pt;}
.y1f2{bottom:-267.302136pt;}
.y1d2{bottom:-267.286184pt;}
.y223{bottom:-261.715517pt;}
.y26a{bottom:-257.489659pt;}
.y166{bottom:-255.628153pt;}
.y111{bottom:-253.750448pt;}
.y1aa{bottom:-252.830811pt;}
.y1f1{bottom:-250.262792pt;}
.y1d1{bottom:-250.246840pt;}
.y222{bottom:-244.676173pt;}
.y269{bottom:-240.450315pt;}
.y165{bottom:-239.363059pt;}
.y110{bottom:-236.711104pt;}
.y1a9{bottom:-235.791467pt;}
.y1f0{bottom:-233.143288pt;}
.y1d0{bottom:-233.127336pt;}
.y221{bottom:-227.556669pt;}
.y268{bottom:-223.330811pt;}
.y164{bottom:-223.099530pt;}
.y10f{bottom:-219.591600pt;}
.y1a8{bottom:-218.671963pt;}
.y1ef{bottom:-216.102608pt;}
.y1cf{bottom:-216.007832pt;}
.y220{bottom:-210.437165pt;}
.y163{bottom:-206.912153pt;}
.y267{bottom:-206.291467pt;}
.y10e{bottom:-202.548304pt;}
.y1a7{bottom:-201.632619pt;}
.y1ee{bottom:-198.983104pt;}
.y1ce{bottom:-198.968488pt;}
.y21f{bottom:-193.397821pt;}
.y162{bottom:-190.648673pt;}
.y266{bottom:-189.171963pt;}
.y10d{bottom:-185.428800pt;}
.y1a6{bottom:-184.513115pt;}
.y1ed{bottom:-181.863600pt;}
.y1cd{bottom:-181.848984pt;}
.y21e{bottom:-176.278317pt;}
.y161{bottom:-174.460027pt;}
.y265{bottom:-172.052459pt;}
.y10c{bottom:-168.309296pt;}
.y1a5{bottom:-167.393611pt;}
.y1ec{bottom:-164.821011pt;}
.y1cc{bottom:-164.808304pt;}
.y21d{bottom:-159.158813pt;}
.y160{bottom:-158.196153pt;}
.y264{bottom:-155.013115pt;}
.y10b{bottom:-151.269952pt;}
.y1a4{bottom:-150.354267pt;}
.y1eb{bottom:-147.701507pt;}
.y1cb{bottom:-147.688800pt;}
.y21c{bottom:-142.118133pt;}
.y15f{bottom:-141.931403pt;}
.y263{bottom:-137.893611pt;}
.y10a{bottom:-134.150448pt;}
.y1a3{bottom:-133.233115pt;}
.y1ea{bottom:-130.660827pt;}
.y1ca{bottom:-130.569296pt;}
.y15e{bottom:-125.744027pt;}
.y21b{bottom:-124.998629pt;}
.y262{bottom:-120.854267pt;}
.y109{bottom:-117.111104pt;}
.y1a2{bottom:-116.193771pt;}
.y1e9{bottom:-113.541323pt;}
.y1c9{bottom:-113.529952pt;}
.y15d{bottom:-109.479403pt;}
.y21a{bottom:-107.959285pt;}
.y261{bottom:-103.734267pt;}
.y108{bottom:-99.991600pt;}
.y1a1{bottom:-99.074267pt;}
.y1e8{bottom:-96.421819pt;}
.y1c8{bottom:-96.410448pt;}
.y15c{bottom:-93.292027pt;}
.y219{bottom:-90.839781pt;}
.y260{bottom:-86.614267pt;}
.y107{bottom:-82.872280pt;}
.y1a0{bottom:-81.954267pt;}
.y1e7{bottom:-79.382475pt;}
.y1c7{bottom:-79.290944pt;}
.y218{bottom:-73.720277pt;}
.y106{bottom:-65.831600pt;}
.y19f{bottom:-64.914133pt;}
.y1e6{bottom:-62.262971pt;}
.y1c6{bottom:-62.251600pt;}
.y15b{bottom:-62.208153pt;}
.y217{bottom:-56.680933pt;}
.y25f{bottom:-53.974267pt;}
.y15a{bottom:-47.616153pt;}
.y1e5{bottom:-45.143467pt;}
.y25e{bottom:-38.614267pt;}
.y105{bottom:-33.111600pt;}
.y159{bottom:-32.948153pt;}
.y19e{bottom:-32.194667pt;}
.y1c5{bottom:-29.611200pt;}
.y216{bottom:-23.960933pt;}
.y25d{bottom:-23.174133pt;}
.y158{bottom:-18.356153pt;}
.y104{bottom:-17.671600pt;}
.y19d{bottom:-16.754267pt;}
.y1c4{bottom:-14.091600pt;}
.y1e4{bottom:-12.423600pt;}
.y215{bottom:-3.961285pt;}
.y25c{bottom:-3.253771pt;}
.y0{bottom:0.000000pt;}
.y157{bottom:0.643413pt;}
.y103{bottom:2.248560pt;}
.yb{bottom:3.044747pt;}
.y19c{bottom:3.165181pt;}
.y1c3{bottom:5.828360pt;}
.y1e3{bottom:7.496104pt;}
.ya{bottom:12.578910pt;}
.y2{bottom:14.008270pt;}
.y4c{bottom:28.346667pt;}
.y1de{bottom:76.264000pt;}
.ye4{bottom:81.292000pt;}
.y18e{bottom:87.352000pt;}
.y2d2{bottom:88.065333pt;}
.y126{bottom:88.806667pt;}
.y241{bottom:88.936000pt;}
.y27f{bottom:90.521333pt;}
.y25{bottom:91.398667pt;}
.yb5{bottom:92.050667pt;}
.y1dd{bottom:93.360000pt;}
.y152{bottom:94.441333pt;}
.y280{bottom:95.344000pt;}
.y83{bottom:97.214667pt;}
.ye3{bottom:98.028000pt;}
.y2d1{bottom:103.408000pt;}
.y18d{bottom:104.089333pt;}
.y4b{bottom:105.542667pt;}
.y125{bottom:105.544000pt;}
.y240{bottom:105.673333pt;}
.y27e{bottom:107.258667pt;}
.y24{bottom:107.298667pt;}
.yb4{bottom:108.788000pt;}
.y151{bottom:111.178667pt;}
.y1b0{bottom:113.297333pt;}
.y82{bottom:113.952000pt;}
.ye2{bottom:114.765333pt;}
.y20c{bottom:117.069333pt;}
.y2d0{bottom:118.750667pt;}
.y18c{bottom:120.826667pt;}
.y4a{bottom:122.280000pt;}
.y23f{bottom:122.410667pt;}
.y23{bottom:123.200000pt;}
.y27d{bottom:123.996000pt;}
.y150{bottom:127.916000pt;}
.yb3{bottom:129.510667pt;}
.y81{bottom:130.689333pt;}
.ye1{bottom:131.502667pt;}
.y20b{bottom:133.806667pt;}
.y2ce{bottom:134.093333pt;}
.y18b{bottom:137.564000pt;}
.y2cf{bottom:138.433333pt;}
.y49{bottom:139.017333pt;}
.y22{bottom:139.100000pt;}
.y23e{bottom:139.148000pt;}
.y27c{bottom:140.733333pt;}
.y14f{bottom:144.653333pt;}
.y80{bottom:147.426667pt;}
.ye0{bottom:148.240000pt;}
.y2cd{bottom:149.436000pt;}
.y20a{bottom:150.544000pt;}
.y297{bottom:151.189333pt;}
.y124{bottom:152.117333pt;}
.y18a{bottom:154.301333pt;}
.y21{bottom:155.000000pt;}
.y48{bottom:155.754667pt;}
.y23d{bottom:155.885333pt;}
.y27b{bottom:157.470667pt;}
.yb2{bottom:159.398667pt;}
.y14e{bottom:161.390667pt;}
.y7f{bottom:164.164000pt;}
.y2cc{bottom:164.778667pt;}
.ydf{bottom:164.977333pt;}
.y296{bottom:166.810667pt;}
.y209{bottom:167.281333pt;}
.y123{bottom:169.213333pt;}
.y20{bottom:170.901333pt;}
.y189{bottom:171.038667pt;}
.y47{bottom:172.492000pt;}
.y23c{bottom:172.622667pt;}
.y279{bottom:174.208000pt;}
.yb1{bottom:176.136000pt;}
.y14d{bottom:178.128000pt;}
.y27a{bottom:179.030667pt;}
.y2cb{bottom:180.121333pt;}
.y7e{bottom:180.901333pt;}
.yde{bottom:181.714667pt;}
.y295{bottom:182.432000pt;}
.y208{bottom:184.018667pt;}
.y1f{bottom:186.801333pt;}
.y188{bottom:187.776000pt;}
.yff{bottom:189.149333pt;}
.y46{bottom:189.229333pt;}
.y23b{bottom:189.360000pt;}
.y278{bottom:190.945333pt;}
.yb0{bottom:192.873333pt;}
.y14c{bottom:194.865333pt;}
.y2ca{bottom:195.462667pt;}
.y7d{bottom:197.638667pt;}
.y207{bottom:200.756000pt;}
.ydd{bottom:202.437333pt;}
.y1e{bottom:202.701333pt;}
.y187{bottom:204.513333pt;}
.y45{bottom:205.966667pt;}
.y294{bottom:206.024000pt;}
.y23a{bottom:206.097333pt;}
.y1e1{bottom:206.696920pt;}
.y277{bottom:207.682667pt;}
.y1c2{bottom:209.588400pt;}
.yaf{bottom:209.610667pt;}
.y2c9{bottom:210.805333pt;}
.y14b{bottom:211.602667pt;}
.y7c{bottom:214.376000pt;}
.y1e0{bottom:215.416400pt;}
.y206{bottom:217.493333pt;}
.y186{bottom:221.250667pt;}
.y293{bottom:221.645333pt;}
.y44{bottom:222.704000pt;}
.y239{bottom:222.834667pt;}
.y275{bottom:224.420000pt;}
.y2c8{bottom:226.148000pt;}
.yae{bottom:226.348000pt;}
.y1c1{bottom:226.709496pt;}
.y14a{bottom:228.340000pt;}
.y276{bottom:229.242667pt;}
.y7b{bottom:231.113333pt;}
.ydc{bottom:232.325333pt;}
.y205{bottom:234.230667pt;}
.y292{bottom:237.266667pt;}
.y185{bottom:237.988000pt;}
.y43{bottom:239.441333pt;}
.y238{bottom:239.572000pt;}
.y274{bottom:241.157333pt;}
.y2c7{bottom:241.490667pt;}
.yad{bottom:243.085333pt;}
.y1c0{bottom:243.750176pt;}
.y149{bottom:245.077333pt;}
.y7a{bottom:247.850667pt;}
.yda{bottom:249.062667pt;}
.y25b{bottom:250.586229pt;}
.y204{bottom:250.968000pt;}
.y291{bottom:252.888000pt;}
.ydb{bottom:253.884000pt;}
.y184{bottom:254.725333pt;}
.y237{bottom:256.309333pt;}
.y2c6{bottom:256.833333pt;}
.yac{bottom:259.822667pt;}
.y42{bottom:260.164000pt;}
.y1bf{bottom:260.869680pt;}
.y148{bottom:261.814667pt;}
.y79{bottom:264.588000pt;}
.yd9{bottom:265.800000pt;}
.y203{bottom:267.705333pt;}
.y25a{bottom:267.705733pt;}
.y290{bottom:268.509333pt;}
.y273{bottom:270.993333pt;}
.y183{bottom:271.462667pt;}
.y2c5{bottom:272.176000pt;}
.y236{bottom:273.046667pt;}
.y1d{bottom:273.154667pt;}
.yab{bottom:276.560000pt;}
.y1be{bottom:277.989184pt;}
.y147{bottom:278.552000pt;}
.y78{bottom:281.325333pt;}
.yd8{bottom:282.537333pt;}
.y202{bottom:284.442667pt;}
.y2c4{bottom:287.518667pt;}
.y272{bottom:288.089333pt;}
.y182{bottom:288.200000pt;}
.y259{bottom:288.745867pt;}
.y1c{bottom:289.054667pt;}
.y235{bottom:289.784000pt;}
.y28f{bottom:292.101333pt;}
.yaa{bottom:293.297333pt;}
.y1bd{bottom:295.028528pt;}
.y146{bottom:295.289333pt;}
.y77{bottom:298.062667pt;}
.yd7{bottom:299.274667pt;}
.y201{bottom:301.180000pt;}
.y2c3{bottom:302.861333pt;}
.y181{bottom:304.937333pt;}
.y1b{bottom:304.954667pt;}
.y271{bottom:305.185333pt;}
.y234{bottom:306.521333pt;}
.ya9{bottom:310.034667pt;}
.y145{bottom:312.026667pt;}
.y1bc{bottom:312.148032pt;}
.y76{bottom:314.800000pt;}
.y101{bottom:315.448920pt;}
.y28e{bottom:315.693333pt;}
.y200{bottom:317.917333pt;}
.y2c2{bottom:318.202667pt;}
.yd6{bottom:319.997333pt;}
.y1a{bottom:320.856000pt;}
.y180{bottom:321.674667pt;}
.y258{bottom:321.867325pt;}
.y233{bottom:323.258667pt;}
.y100{bottom:324.168400pt;}
.y247{bottom:325.122667pt;}
.ya8{bottom:326.772000pt;}
.y41{bottom:326.964000pt;}
.y144{bottom:328.764000pt;}
.y1bb{bottom:329.267536pt;}
.y75{bottom:331.537333pt;}
.y2c1{bottom:333.545333pt;}
.y1af{bottom:333.637333pt;}
.y1ff{bottom:334.654667pt;}
.y17f{bottom:338.412000pt;}
.y257{bottom:338.908005pt;}
.y28d{bottom:339.284000pt;}
.y232{bottom:339.996000pt;}
.ya7{bottom:343.508000pt;}
.y143{bottom:345.501333pt;}
.y1ba{bottom:346.308216pt;}
.y74{bottom:348.274667pt;}
.y2c0{bottom:348.888000pt;}
.yd5{bottom:349.885333pt;}
.y1ae{bottom:350.733333pt;}
.y1fe{bottom:351.392000pt;}
.y19{bottom:354.688000pt;}
.y17e{bottom:355.149333pt;}
.y256{bottom:356.027509pt;}
.y231{bottom:356.733333pt;}
.y40{bottom:360.198667pt;}
.ya6{bottom:360.245333pt;}
.y142{bottom:362.238667pt;}
.y28c{bottom:362.876000pt;}
.y1b9{bottom:363.427720pt;}
.y2bf{bottom:364.230667pt;}
.y73{bottom:365.012000pt;}
.yd4{bottom:366.622667pt;}
.y1fd{bottom:368.129333pt;}
.y18{bottom:370.589333pt;}
.y18f{bottom:370.670667pt;}
.y17d{bottom:371.886667pt;}
.y255{bottom:373.147013pt;}
.y230{bottom:373.470667pt;}
.ya5{bottom:376.982667pt;}
.y3f{bottom:377.494667pt;}
.y28b{bottom:378.497333pt;}
.y141{bottom:378.976000pt;}
.y2be{bottom:379.573333pt;}
.y1b8{bottom:380.468400pt;}
.y72{bottom:381.749333pt;}
.yd3{bottom:383.360000pt;}
.y1fc{bottom:384.865333pt;}
.y17{bottom:386.489333pt;}
.y17c{bottom:388.624000pt;}
.y254{bottom:390.186357pt;}
.ya4{bottom:393.720000pt;}
.y3e{bottom:394.789333pt;}
.y2bd{bottom:394.916000pt;}
.y140{bottom:395.713333pt;}
.y1b7{bottom:397.588400pt;}
.y71{bottom:398.486667pt;}
.yd2{bottom:400.096000pt;}
.y28a{bottom:402.089333pt;}
.y16{bottom:402.389333pt;}
.y22f{bottom:403.306667pt;}
.y17b{bottom:405.361333pt;}
.y253{bottom:407.305861pt;}
.y2bc{bottom:410.258667pt;}
.ya3{bottom:410.457333pt;}
.y3d{bottom:412.084000pt;}
.y13f{bottom:412.450667pt;}
.y1fb{bottom:414.702667pt;}
.y1b6{bottom:414.710096pt;}
.y70{bottom:415.224000pt;}
.yd1{bottom:416.833333pt;}
.y289{bottom:417.710667pt;}
.y15{bottom:418.290667pt;}
.y17a{bottom:422.097333pt;}
.y211{bottom:423.244000pt;}
.y252{bottom:424.425365pt;}
.y2bb{bottom:425.601333pt;}
.y13e{bottom:429.188000pt;}
.y3c{bottom:429.380000pt;}
.ya2{bottom:431.180000pt;}
.y1b5{bottom:431.749440pt;}
.y6f{bottom:431.961333pt;}
.y288{bottom:433.332000pt;}
.y1df{bottom:434.638667pt;}
.yd0{bottom:437.556000pt;}
.y179{bottom:438.834667pt;}
.y2ba{bottom:440.944000pt;}
.y251{bottom:441.466045pt;}
.y19b{bottom:445.565549pt;}
.y13d{bottom:445.925333pt;}
.y3b{bottom:446.674667pt;}
.y6e{bottom:448.698667pt;}
.y1b4{bottom:448.868944pt;}
.y287{bottom:448.953333pt;}
.y14{bottom:450.130667pt;}
.y178{bottom:455.572000pt;}
.y2b9{bottom:456.285333pt;}
.y155{bottom:456.492341pt;}
.y250{bottom:458.585549pt;}
.ya1{bottom:461.068000pt;}
.y13c{bottom:462.662667pt;}
.y19a{bottom:462.685053pt;}
.y3a{bottom:463.969333pt;}
.y286{bottom:464.574667pt;}
.y154{bottom:464.775847pt;}
.y6d{bottom:465.436000pt;}
.y13{bottom:466.032000pt;}
.ycf{bottom:467.444000pt;}
.y2b8{bottom:471.628000pt;}
.y24f{bottom:475.626229pt;}
.y177{bottom:476.294667pt;}
.ya0{bottom:477.805333pt;}
.y13b{bottom:479.398667pt;}
.y199{bottom:479.725733pt;}
.y39{bottom:481.265333pt;}
.y12{bottom:481.932000pt;}
.y6c{bottom:482.173333pt;}
.yce{bottom:482.189333pt;}
.ycd{bottom:484.181333pt;}
.y2b7{bottom:486.970667pt;}
.y24e{bottom:492.745733pt;}
.y9f{bottom:494.542667pt;}
.yfe{bottom:494.990667pt;}
.y13a{bottom:496.136000pt;}
.y198{bottom:496.845069pt;}
.y1b2{bottom:497.348920pt;}
.y11{bottom:497.832000pt;}
.y38{bottom:498.560000pt;}
.y6b{bottom:498.910667pt;}
.y213{bottom:501.879587pt;}
.y2b6{bottom:502.313333pt;}
.y176{bottom:503.341333pt;}
.y1b1{bottom:506.068400pt;}
.y24d{bottom:509.866389pt;}
.y212{bottom:510.599067pt;}
.y9e{bottom:511.280000pt;}
.yfd{bottom:511.728000pt;}
.y139{bottom:512.873333pt;}
.y10{bottom:513.733333pt;}
.ycc{bottom:514.866667pt;}
.y6a{bottom:515.648000pt;}
.y37{bottom:515.856000pt;}
.y2b5{bottom:517.656000pt;}
.y197{bottom:517.885733pt;}
.y175{bottom:520.437333pt;}
.y24c{bottom:526.905733pt;}
.y9d{bottom:528.017333pt;}
.yfc{bottom:528.465333pt;}
.y138{bottom:529.610667pt;}
.yf{bottom:529.633333pt;}
.y69{bottom:532.384000pt;}
.y2b4{bottom:532.998667pt;}
.y36{bottom:533.150667pt;}
.y174{bottom:537.533333pt;}
.y24b{bottom:544.026277pt;}
.y9c{bottom:544.754667pt;}
.ye{bottom:545.533333pt;}
.ycb{bottom:545.552000pt;}
.y137{bottom:546.348000pt;}
.y2b3{bottom:548.341333pt;}
.y68{bottom:549.121333pt;}
.yfb{bottom:549.186667pt;}
.y35{bottom:550.445333pt;}
.y196{bottom:551.007925pt;}
.y173{bottom:554.629333pt;}
.yd{bottom:561.434667pt;}
.y9b{bottom:561.492000pt;}
.yca{bottom:562.289333pt;}
.y136{bottom:563.085333pt;}
.y2b2{bottom:563.684000pt;}
.y67{bottom:565.858667pt;}
.yfa{bottom:567.120000pt;}
.y34{bottom:567.741333pt;}
.y195{bottom:568.127429pt;}
.y153{bottom:574.566667pt;}
.yc{bottom:577.334667pt;}
.y9a{bottom:578.229333pt;}
.y2b1{bottom:579.025333pt;}
.yc8{bottom:579.026667pt;}
.y246{bottom:579.822667pt;}
.y66{bottom:582.596000pt;}
.y135{bottom:583.808000pt;}
.yc9{bottom:583.848000pt;}
.y33{bottom:585.036000pt;}
.y194{bottom:585.166773pt;}
.y249{bottom:592.506253pt;}
.y2b0{bottom:594.368000pt;}
.y99{bottom:594.966667pt;}
.yc7{bottom:595.764000pt;}
.y244{bottom:596.560000pt;}
.yf9{bottom:597.008000pt;}
.y9{bottom:597.219968pt;}
.y65{bottom:599.333333pt;}
.y248{bottom:601.225733pt;}
.y245{bottom:601.382667pt;}
.y193{bottom:602.286277pt;}
.y32{bottom:602.330667pt;}
.y2af{bottom:609.710667pt;}
.y98{bottom:611.704000pt;}
.yc6{bottom:612.501333pt;}
.y285{bottom:613.297333pt;}
.y134{bottom:613.696000pt;}
.yf8{bottom:613.745333pt;}
.y64{bottom:616.070667pt;}
.y243{bottom:617.282667pt;}
.y31{bottom:619.626667pt;}
.y2ae{bottom:625.053333pt;}
.y97{bottom:628.441333pt;}
.yc5{bottom:629.237333pt;}
.y284{bottom:630.034667pt;}
.y133{bottom:630.433333pt;}
.yf7{bottom:630.482667pt;}
.y63{bottom:632.808000pt;}
.y30{bottom:636.921333pt;}
.y2ad{bottom:640.396000pt;}
.y283{bottom:646.772000pt;}
.y132{bottom:647.170667pt;}
.yf6{bottom:647.220000pt;}
.y96{bottom:649.162667pt;}
.y62{bottom:649.545333pt;}
.yc4{bottom:649.960000pt;}
.y191{bottom:650.766253pt;}
.y2f{bottom:654.217333pt;}
.y2ac{bottom:655.738667pt;}
.y190{bottom:659.485733pt;}
.y2e6{bottom:659.724000pt;}
.y282{bottom:663.509333pt;}
.y131{bottom:663.908000pt;}
.yf5{bottom:663.957333pt;}
.y61{bottom:666.282667pt;}
.y2ab{bottom:671.081333pt;}
.y2e5{bottom:675.066667pt;}
.y95{bottom:679.050667pt;}
.yc3{bottom:679.848000pt;}
.y130{bottom:680.645333pt;}
.y60{bottom:683.020000pt;}
.y281{bottom:684.232000pt;}
.yf4{bottom:684.680000pt;}
.y2aa{bottom:686.424000pt;}
.y2e{bottom:688.514667pt;}
.y2e4{bottom:690.408000pt;}
.y94{bottom:695.788000pt;}
.yc2{bottom:696.585333pt;}
.y12f{bottom:697.382667pt;}
.y5f{bottom:699.757333pt;}
.y2a9{bottom:701.766667pt;}
.y2d{bottom:702.861333pt;}
.y2e3{bottom:705.750667pt;}
.y93{bottom:712.525333pt;}
.yc1{bottom:713.322667pt;}
.y12e{bottom:714.120000pt;}
.yf3{bottom:714.568000pt;}
.y5e{bottom:716.494667pt;}
.y2a8{bottom:717.108000pt;}
.y2c{bottom:721.065333pt;}
.y2e2{bottom:721.093333pt;}
.yf2{bottom:728.878667pt;}
.y92{bottom:729.262667pt;}
.yc0{bottom:730.060000pt;}
.y12d{bottom:730.857333pt;}
.yf1{bottom:731.304000pt;}
.y2a7{bottom:732.450667pt;}
.y5d{bottom:733.232000pt;}
.y2b{bottom:735.410667pt;}
.y2e1{bottom:736.436000pt;}
.yf0{bottom:745.616000pt;}
.y2a{bottom:745.900000pt;}
.y91{bottom:746.000000pt;}
.ybf{bottom:746.797333pt;}
.y12c{bottom:747.594667pt;}
.y2a6{bottom:747.793333pt;}
.yef{bottom:748.041333pt;}
.y5c{bottom:749.969333pt;}
.y2e0{bottom:751.778667pt;}
.y90{bottom:762.737333pt;}
.y2a5{bottom:763.136000pt;}
.y29{bottom:764.104000pt;}
.y12b{bottom:764.332000pt;}
.y5b{bottom:766.706667pt;}
.y2df{bottom:767.121333pt;}
.ybe{bottom:767.520000pt;}
.yee{bottom:773.148000pt;}
.y28{bottom:778.450667pt;}
.y2a4{bottom:778.478667pt;}
.y8f{bottom:779.474667pt;}
.y12a{bottom:781.069333pt;}
.y2de{bottom:782.464000pt;}
.y5a{bottom:783.444000pt;}
.y27{bottom:788.938667pt;}
.yed{bottom:789.885333pt;}
.y2a3{bottom:793.821333pt;}
.ybd{bottom:797.408000pt;}
.y129{bottom:797.806667pt;}
.y59{bottom:800.181333pt;}
.y8e{bottom:800.197333pt;}
.yec{bottom:806.622667pt;}
.y26{bottom:807.142667pt;}
.y2a2{bottom:809.164000pt;}
.y2dd{bottom:813.149333pt;}
.ybb{bottom:814.145333pt;}
.y128{bottom:814.544000pt;}
.y58{bottom:816.918667pt;}
.y8d{bottom:818.130667pt;}
.ybc{bottom:818.966667pt;}
.yeb{bottom:823.360000pt;}
.y2a1{bottom:824.506667pt;}
.y2dc{bottom:828.490667pt;}
.yba{bottom:830.882667pt;}
.y127{bottom:831.281333pt;}
.y57{bottom:833.656000pt;}
.y2a0{bottom:839.848000pt;}
.y8{bottom:842.870667pt;}
.y2db{bottom:843.833333pt;}
.yea{bottom:844.082667pt;}
.yb9{bottom:847.620000pt;}
.y8c{bottom:848.018667pt;}
.y56{bottom:850.393333pt;}
.y29f{bottom:855.190667pt;}
.y2da{bottom:859.176000pt;}
.y7{bottom:859.606667pt;}
.yb8{bottom:864.357333pt;}
.y8b{bottom:864.754667pt;}
.y55{bottom:867.130667pt;}
.y29e{bottom:870.533333pt;}
.ye9{bottom:873.970667pt;}
.y2d9{bottom:874.518667pt;}
.y242{bottom:879.066667pt;}
.yb7{bottom:881.094667pt;}
.y8a{bottom:881.492000pt;}
.y54{bottom:883.868000pt;}
.y29d{bottom:885.876000pt;}
.ye8{bottom:888.714667pt;}
.y2d8{bottom:889.861333pt;}
.ye7{bottom:890.706667pt;}
.y89{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y53{bottom:900.605333pt;}
.y29c{bottom:901.218667pt;}
.yb6{bottom:901.816000pt;}
.y2d7{bottom:905.204000pt;}
.y210{bottom:910.982667pt;}
.y88{bottom:914.966667pt;}
.y29b{bottom:916.561333pt;}
.y52{bottom:917.342667pt;}
.ye6{bottom:917.804000pt;}
.y2d6{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.ye5{bottom:926.916000pt;}
.y20f{bottom:927.720000pt;}
.y87{bottom:931.704000pt;}
.y29a{bottom:931.904000pt;}
.y51{bottom:934.080000pt;}
.y2d5{bottom:935.889333pt;}
.y20e{bottom:944.456000pt;}
.y299{bottom:947.246667pt;}
.y86{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y50{bottom:950.817333pt;}
.y2d4{bottom:951.230667pt;}
.y20d{bottom:961.193333pt;}
.y298{bottom:962.589333pt;}
.y85{bottom:965.178667pt;}
.y2d3{bottom:966.573333pt;}
.y4f{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y84{bottom:981.916000pt;}
.y4e{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4d{bottom:1043.020000pt;}
.h8{height:22.673858pt;}
.hc{height:27.767945pt;}
.h14{height:28.023859pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.hb{height:32.395626pt;}
.h10{height:33.378918pt;}
.he{height:34.430976pt;}
.h15{height:35.172606pt;}
.h20{height:36.108461pt;}
.h17{height:36.873667pt;}
.hd{height:37.023771pt;}
.h13{height:37.087439pt;}
.h1b{height:38.008906pt;}
.h11{height:38.256384pt;}
.h4{height:38.947124pt;}
.h22{height:40.723828pt;}
.h1e{height:41.462969pt;}
.hf{height:41.651917pt;}
.h28{height:42.018125pt;}
.h1d{height:42.867188pt;}
.h25{height:43.171318pt;}
.h2{height:45.271688pt;}
.h21{height:45.339195pt;}
.h12{height:46.279598pt;}
.h16{height:47.309193pt;}
.h1c{height:47.725469pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h29{height:64.164606pt;}
.h5{height:68.861952pt;}
.h18{height:82.252931pt;}
.h19{height:82.727598pt;}
.h3{height:91.114522pt;}
.h26{height:174.780000pt;}
.h24{height:193.552000pt;}
.h2a{height:233.686667pt;}
.h1a{height:284.826667pt;}
.h1f{height:420.635933pt;}
.h23{height:424.649333pt;}
.h27{height:466.725333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:129.623174pt;}
.w7{width:323.665333pt;}
.w6{width:328.197333pt;}
.wa{width:403.288000pt;}
.w5{width:410.182133pt;}
.w9{width:446.012000pt;}
.w4{width:455.073333pt;}
.w8{width:605.255600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x96{left:-180.508000pt;}
.x74{left:-179.213333pt;}
.xb5{left:-175.329333pt;}
.x53{left:-173.388000pt;}
.x7d{left:-167.561333pt;}
.x65{left:-165.332933pt;}
.x87{left:-45.863067pt;}
.x98{left:-6.668000pt;}
.x76{left:-5.374302pt;}
.xb6{left:-1.489013pt;}
.x0{left:0.000000pt;}
.x7e{left:6.277698pt;}
.x99{left:21.652000pt;}
.x75{left:22.945604pt;}
.x3{left:26.021437pt;}
.x55{left:28.772000pt;}
.x7f{left:34.598573pt;}
.x1{left:48.000000pt;}
.x2{left:54.965541pt;}
.x9a{left:56.852000pt;}
.x9b{left:64.852000pt;}
.xbf{left:76.686667pt;}
.x86{left:94.223067pt;}
.x89{left:95.976933pt;}
.x8b{left:127.977027pt;}
.x8a{left:156.296933pt;}
.x8c{left:191.152000pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.xa5{left:229.821333pt;}
.xab{left:234.110667pt;}
.x5{left:240.670667pt;}
.x48{left:249.620000pt;}
.xc{left:251.365333pt;}
.x6e{left:253.500000pt;}
.xb2{left:258.161333pt;}
.x6f{left:260.302667pt;}
.x49{left:264.833333pt;}
.x6d{left:268.173333pt;}
.x4f{left:270.660000pt;}
.x4b{left:272.508000pt;}
.x40{left:274.100000pt;}
.x7{left:275.853333pt;}
.x39{left:277.949333pt;}
.x50{left:279.533333pt;}
.x41{left:282.925333pt;}
.x3a{left:284.752000pt;}
.x9e{left:285.785333pt;}
.x4c{left:289.677333pt;}
.x8d{left:292.134667pt;}
.x67{left:298.149333pt;}
.x8e{left:300.340000pt;}
.x24{left:303.217333pt;}
.x68{left:304.126667pt;}
.x4a{left:311.425333pt;}
.x91{left:313.796000pt;}
.x25{left:316.102667pt;}
.x20{left:317.322667pt;}
.x5b{left:318.662667pt;}
.x21{left:321.772000pt;}
.x78{left:327.582667pt;}
.x77{left:328.625545pt;}
.x8{left:331.516000pt;}
.x79{left:333.920000pt;}
.x9{left:335.520000pt;}
.x34{left:336.888000pt;}
.x7a{left:337.924000pt;}
.x92{left:339.806667pt;}
.x3d{left:341.204000pt;}
.xc6{left:344.773333pt;}
.x35{left:350.172000pt;}
.xbe{left:351.458667pt;}
.x3e{left:354.488000pt;}
.x84{left:355.954667pt;}
.xb8{left:356.977333pt;}
.x94{left:362.278667pt;}
.x60{left:365.125333pt;}
.xaf{left:367.401333pt;}
.xad{left:368.656000pt;}
.x61{left:371.928000pt;}
.x95{left:375.562667pt;}
.x51{left:378.068000pt;}
.x37{left:380.004000pt;}
.x57{left:382.226667pt;}
.x17{left:384.305333pt;}
.x52{left:387.094667pt;}
.x38{left:388.209333pt;}
.x2e{left:389.854667pt;}
.x4e{left:393.618667pt;}
.x15{left:396.574667pt;}
.x18{left:397.589333pt;}
.x2f{left:398.654667pt;}
.xac{left:400.466667pt;}
.xa6{left:401.440000pt;}
.x16{left:403.217333pt;}
.x26{left:404.170667pt;}
.x64{left:406.881333pt;}
.xa7{left:408.241333pt;}
.x66{left:410.821308pt;}
.x36{left:412.410667pt;}
.x6a{left:414.638667pt;}
.x27{left:417.056000pt;}
.xb0{left:418.441333pt;}
.x2a{left:420.582667pt;}
.xb7{left:423.151059pt;}
.xb1{left:425.084000pt;}
.x6c{left:427.261333pt;}
.x93{left:430.582667pt;}
.xbb{left:432.041333pt;}
.x2b{left:433.468000pt;}
.x3b{left:438.370667pt;}
.x9f{left:439.460000pt;}
.x3c{left:444.420000pt;}
.x97{left:445.329073pt;}
.x44{left:448.261333pt;}
.xa0{left:452.948000pt;}
.x45{left:454.312000pt;}
.x54{left:456.448796pt;}
.x85{left:468.912000pt;}
.x2c{left:470.814667pt;}
.xa{left:472.570667pt;}
.x82{left:473.690667pt;}
.xc9{left:476.601333pt;}
.xb{left:478.692000pt;}
.x69{left:479.828000pt;}
.x5c{left:483.041333pt;}
.x2d{left:484.097333pt;}
.x62{left:486.161333pt;}
.xf{left:492.156000pt;}
.x3f{left:493.093333pt;}
.x19{left:496.653333pt;}
.x10{left:498.798667pt;}
.x11{left:502.185333pt;}
.x12{left:508.826667pt;}
.x1a{left:509.937333pt;}
.xd{left:511.493333pt;}
.xbc{left:513.122667pt;}
.xa1{left:515.830667pt;}
.xe{left:518.134667pt;}
.xbd{left:519.765333pt;}
.xa2{left:526.756000pt;}
.x9c{left:531.222667pt;}
.x83{left:534.096000pt;}
.x4d{left:536.108000pt;}
.x9d{left:537.864000pt;}
.x32{left:545.322667pt;}
.x28{left:549.738667pt;}
.xa3{left:552.266667pt;}
.xa4{left:557.461333pt;}
.x33{left:558.605333pt;}
.x29{left:562.624000pt;}
.x70{left:563.844000pt;}
.x1b{left:565.894667pt;}
.x8f{left:568.709333pt;}
.x80{left:572.330667pt;}
.x71{left:574.769333pt;}
.x1c{left:579.178667pt;}
.x90{left:581.993333pt;}
.xb9{left:583.993333pt;}
.x81{left:585.216000pt;}
.xa8{left:586.317333pt;}
.xba{left:590.042667pt;}
.x7b{left:596.738667pt;}
.x88{left:599.973955pt;}
.x7c{left:604.044000pt;}
.xc7{left:607.350667pt;}
.x42{left:610.317333pt;}
.x43{left:618.588000pt;}
.xa9{left:623.588000pt;}
.x6b{left:624.769333pt;}
.xc8{left:631.261333pt;}
.x46{left:634.820000pt;}
.xaa{left:637.841333pt;}
.x47{left:641.462667pt;}
.x1e{left:646.354667pt;}
.xc2{left:647.832000pt;}
.x56{left:652.778667pt;}
.xae{left:660.212000pt;}
.x22{left:663.193333pt;}
.x58{left:667.086667pt;}
.x59{left:668.117333pt;}
.xc3{left:671.741333pt;}
.x23{left:676.078667pt;}
.x5a{left:681.401333pt;}
.xc0{left:684.869333pt;}
.x63{left:687.778667pt;}
.x5d{left:692.649333pt;}
.x5f{left:697.933333pt;}
.xc5{left:702.594667pt;}
.x5e{left:705.933333pt;}
.xb3{left:707.641333pt;}
.xc1{left:708.780000pt;}
.x72{left:710.426667pt;}
.xb4{left:713.690667pt;}
.xc4{left:720.286667pt;}
.x73{left:723.709333pt;}
.x1d{left:726.842667pt;}
.x13{left:733.484000pt;}
.x30{left:734.646667pt;}
.x14{left:740.126667pt;}
.x31{left:743.393333pt;}
.x1f{left:744.637333pt;}
}


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