
/* 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_01dbfa177ad8.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_8395d384701f.woff")format("woff");}.ff2{font-family:ff2;line-height:1.226000;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_90bf2be83003.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_36162e25cfac.woff")format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_4633b537ab07.woff")format("woff");}.ff5{font-family:ff5;line-height:1.000488;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_fd7b8c120c9a.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_4c89cdbedb8f.woff")format("woff");}.ff7{font-family:ff7;line-height:1.215332;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_a7b3b341aae0.woff")format("woff");}.ff8{font-family:ff8;line-height:0.773000;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_184d16a94d3b.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_d3aa395b42f3.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000488;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_6d2fe80cced1.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_bb2ae2a1a8f8.woff")format("woff");}.ffc{font-family:ffc;line-height:1.215332;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_7355d1de8dc0.woff")format("woff");}.ffd{font-family:ffd;line-height:1.000488;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_3852c47fb85f.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_45eb6ef3adf6.woff")format("woff");}.fff{font-family:fff;line-height:1.215332;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_7355d1de8dc0.woff")format("woff");}.ff10{font-family:ff10;line-height:1.000488;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_3852c47fb85f.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_45eb6ef3adf6.woff")format("woff");}.ff12{font-family:ff12;line-height:1.215332;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_c8c9d9e2b978.woff")format("woff");}.ff13{font-family:ff13;line-height:1.000488;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_eb83deaca406.woff")format("woff");}.ff14{font-family:ff14;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:ff15;src:url("fonts/font_0020_aae8851f6b04.woff")format("woff");}.ff15{font-family:ff15;line-height:1.215332;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_d75f43e8cc5f.woff")format("woff");}.ff16{font-family:ff16;line-height:0.988000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_c4b93ec19bb4.woff")format("woff");}.ff17{font-family:ff17;line-height:0.234000;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_822ec6e27eff.woff")format("woff");}.ff18{font-family:ff18;line-height:0.933000;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;}
.m5{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);}
.m25{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);}
.m2c{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);}
.m15{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);}
.m28{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);}
.m1{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);}
.m16{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);}
.m9{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);}
.mb{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);}
.m29{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);}
.m20{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);}
.m14{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);}
.m23{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);}
.m22{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);}
.m2d{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);}
.m21{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);}
.m7{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);}
.m11{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);}
.m2b{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);}
.ma{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);}
.m1b{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);}
.m18{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);}
.m1a{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);}
.m19{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);}
.m6{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);}
.m24{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);}
.md{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);}
.m17{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);}
.mc{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);}
.m1e{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);}
.m1d{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);}
.m13{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);}
.m2a{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);}
.me{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);}
.m27{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);}
.m4{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);}
.m12{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);}
.m3{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);}
.m8{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);}
.m1f{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);}
.m10{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);}
.mf{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.364000px;}
.v7{vertical-align:-16.178400px;}
.vb{vertical-align:-14.212800px;}
.v5{vertical-align:-12.306000px;}
.v4{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.488000px;}
.v8{vertical-align:12.850980px;}
.va{vertical-align:14.362860px;}
.v6{vertical-align:16.178400px;}
.v9{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.vc{vertical-align:40.470000px;}
.ls60{letter-spacing:-0.364014px;}
.ls2a{letter-spacing:-0.334800px;}
.lsc9{letter-spacing:-0.319788px;}
.lsca{letter-spacing:-0.309636px;}
.ls61{letter-spacing:-0.271566px;}
.ls39{letter-spacing:-0.264528px;}
.lsd7{letter-spacing:-0.254308px;}
.ls2b{letter-spacing:-0.253800px;}
.ls2c{letter-spacing:-0.226800px;}
.ls2f{letter-spacing:-0.176400px;}
.ls2e{letter-spacing:-0.168336px;}
.ls27{letter-spacing:-0.162324px;}
.lsd6{letter-spacing:-0.158236px;}
.lscf{letter-spacing:-0.146933px;}
.lse2{letter-spacing:-0.135631px;}
.lsdb{letter-spacing:-0.129979px;}
.ls31{letter-spacing:-0.126252px;}
.lsdd{letter-spacing:-0.124328px;}
.lsa5{letter-spacing:-0.123120px;}
.lsce{letter-spacing:-0.113026px;}
.ls9a{letter-spacing:-0.110160px;}
.ls26{letter-spacing:-0.108216px;}
.lse0{letter-spacing:-0.107374px;}
.lsd5{letter-spacing:-0.101723px;}
.lse4{letter-spacing:-0.090420px;}
.lsd8{letter-spacing:-0.084769px;}
.lsd2{letter-spacing:-0.079118px;}
.ls28{letter-spacing:-0.078156px;}
.ls2d{letter-spacing:-0.075600px;}
.ls66{letter-spacing:-0.075114px;}
.ls34{letter-spacing:-0.072144px;}
.lsa0{letter-spacing:-0.071820px;}
.lsda{letter-spacing:-0.071064px;}
.lscb{letter-spacing:-0.065988px;}
.ls95{letter-spacing:-0.064260px;}
.ls38{letter-spacing:-0.054108px;}
.lscd{letter-spacing:-0.050760px;}
.ls36{letter-spacing:-0.048096px;}
.ls65{letter-spacing:-0.046224px;}
.ls9c{letter-spacing:-0.046170px;}
.lse1{letter-spacing:-0.045210px;}
.ls24{letter-spacing:-0.042084px;}
.ls91{letter-spacing:-0.041310px;}
.ls37{letter-spacing:-0.036072px;}
.ls9b{letter-spacing:-0.035910px;}
.lsd0{letter-spacing:-0.033908px;}
.ls90{letter-spacing:-0.032130px;}
.ls9d{letter-spacing:-0.030780px;}
.ls67{letter-spacing:-0.028890px;}
.lsd4{letter-spacing:-0.028256px;}
.ls92{letter-spacing:-0.027540px;}
.lsa2{letter-spacing:-0.025650px;}
.ls97{letter-spacing:-0.022950px;}
.lse5{letter-spacing:-0.022605px;}
.lsa1{letter-spacing:-0.020520px;}
.lsc7{letter-spacing:-0.020304px;}
.ls96{letter-spacing:-0.018360px;}
.ls33{letter-spacing:-0.018036px;}
.ls64{letter-spacing:-0.017334px;}
.lsde{letter-spacing:-0.016954px;}
.ls9e{letter-spacing:-0.015390px;}
.ls93{letter-spacing:-0.013770px;}
.ls35{letter-spacing:-0.012024px;}
.ls62{letter-spacing:-0.011556px;}
.lsdf{letter-spacing:-0.011303px;}
.lsa3{letter-spacing:-0.010260px;}
.ls98{letter-spacing:-0.009180px;}
.ls25{letter-spacing:-0.006012px;}
.ls63{letter-spacing:-0.005778px;}
.lsd9{letter-spacing:-0.005651px;}
.lsa4{letter-spacing:-0.005130px;}
.lscc{letter-spacing:-0.005076px;}
.ls99{letter-spacing:-0.004590px;}
.ls4{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.000145px;}
.lsc1{letter-spacing:0.000435px;}
.lseb{letter-spacing:0.000537px;}
.ls104{letter-spacing:0.000566px;}
.ls4c{letter-spacing:0.000583px;}
.ls102{letter-spacing:0.000800px;}
.ls109{letter-spacing:0.001303px;}
.ls77{letter-spacing:0.001530px;}
.ls8c{letter-spacing:0.001710px;}
.ls107{letter-spacing:0.002293px;}
.lsf7{letter-spacing:0.002683px;}
.lsfe{letter-spacing:0.002841px;}
.ls3f{letter-spacing:0.004168px;}
.ls105{letter-spacing:0.004458px;}
.ls6c{letter-spacing:0.004590px;}
.ls10c{letter-spacing:0.004800px;}
.lsb4{letter-spacing:0.005076px;}
.ls81{letter-spacing:0.005130px;}
.lsb7{letter-spacing:0.005651px;}
.ls5b{letter-spacing:0.005778px;}
.ls20{letter-spacing:0.006012px;}
.ls74{letter-spacing:0.009180px;}
.lsaa{letter-spacing:0.010152px;}
.ls89{letter-spacing:0.010260px;}
.ls1a{letter-spacing:0.010800px;}
.ls57{letter-spacing:0.011556px;}
.lsb{letter-spacing:0.012024px;}
.ls75{letter-spacing:0.013770px;}
.lsab{letter-spacing:0.015228px;}
.ls8a{letter-spacing:0.015390px;}
.ls15{letter-spacing:0.016200px;}
.ls5c{letter-spacing:0.017334px;}
.lsd{letter-spacing:0.018036px;}
.ls70{letter-spacing:0.018360px;}
.ls85{letter-spacing:0.020520px;}
.ls72{letter-spacing:0.022950px;}
.ls5d{letter-spacing:0.023112px;}
.lsf{letter-spacing:0.024048px;}
.lsb9{letter-spacing:0.025075px;}
.ls87{letter-spacing:0.025650px;}
.ls1d{letter-spacing:0.027000px;}
.ls6e{letter-spacing:0.027540px;}
.lsbb{letter-spacing:0.028256px;}
.ls6a{letter-spacing:0.028489px;}
.ls55{letter-spacing:0.028890px;}
.ls13{letter-spacing:0.030060px;}
.lsad{letter-spacing:0.030456px;}
.ls83{letter-spacing:0.030780px;}
.lsa8{letter-spacing:0.031505px;}
.ls7f{letter-spacing:0.031840px;}
.ls76{letter-spacing:0.032130px;}
.ls56{letter-spacing:0.034668px;}
.lsb5{letter-spacing:0.035532px;}
.ls53{letter-spacing:0.035862px;}
.ls8b{letter-spacing:0.035910px;}
.ls10{letter-spacing:0.036072px;}
.ls68{letter-spacing:0.036628px;}
.ls78{letter-spacing:0.036720px;}
.ls16{letter-spacing:0.037800px;}
.lsbd{letter-spacing:0.039559px;}
.ls59{letter-spacing:0.040446px;}
.lsa6{letter-spacing:0.040506px;}
.lsb0{letter-spacing:0.040608px;}
.ls7d{letter-spacing:0.040937px;}
.ls8d{letter-spacing:0.041040px;}
.ls71{letter-spacing:0.041310px;}
.ls9{letter-spacing:0.043092px;}
.lsb3{letter-spacing:0.045684px;}
.ls79{letter-spacing:0.045900px;}
.ls51{letter-spacing:0.046108px;}
.ls86{letter-spacing:0.046170px;}
.ls1e{letter-spacing:0.048096px;}
.ls19{letter-spacing:0.048600px;}
.lsae{letter-spacing:0.050760px;}
.lsbe{letter-spacing:0.050862px;}
.ls8e{letter-spacing:0.051300px;}
.ls5a{letter-spacing:0.052002px;}
.ls7{letter-spacing:0.052668px;}
.ls12{letter-spacing:0.054108px;}
.ls7a{letter-spacing:0.055080px;}
.lsb1{letter-spacing:0.055836px;}
.ls94{letter-spacing:0.056304px;}
.ls18{letter-spacing:0.059400px;}
.ls3a{letter-spacing:0.060120px;}
.ls8f{letter-spacing:0.061560px;}
.lsc8{letter-spacing:0.062266px;}
.ls9f{letter-spacing:0.062928px;}
.ls14{letter-spacing:0.066132px;}
.lsbc{letter-spacing:0.067815px;}
.ls5e{letter-spacing:0.069336px;}
.ls17{letter-spacing:0.072864px;}
.ls73{letter-spacing:0.078030px;}
.lse{letter-spacing:0.078156px;}
.lsdc{letter-spacing:0.079118px;}
.lsba{letter-spacing:0.084769px;}
.lsac{letter-spacing:0.086292px;}
.ls88{letter-spacing:0.087210px;}
.ls1f{letter-spacing:0.090180px;}
.lse3{letter-spacing:0.096072px;}
.lsc{letter-spacing:0.096192px;}
.ls29{letter-spacing:0.097200px;}
.ls58{letter-spacing:0.098226px;}
.ls6f{letter-spacing:0.105570px;}
.lsaf{letter-spacing:0.116748px;}
.ls84{letter-spacing:0.117990px;}
.lsb2{letter-spacing:0.137052px;}
.ls1b{letter-spacing:0.140400px;}
.ls6b{letter-spacing:0.146513px;}
.ls69{letter-spacing:0.154652px;}
.ls1c{letter-spacing:0.156600px;}
.lsa9{letter-spacing:0.162026px;}
.ls80{letter-spacing:0.163750px;}
.lsb8{letter-spacing:0.169538px;}
.lsb6{letter-spacing:0.169674px;}
.lsa7{letter-spacing:0.171027px;}
.ls7e{letter-spacing:0.172847px;}
.lsa{letter-spacing:0.181944px;}
.ls54{letter-spacing:0.184434px;}
.ls8{letter-spacing:0.191520px;}
.ls11{letter-spacing:0.192384px;}
.ls52{letter-spacing:0.194680px;}
.ls4b{letter-spacing:0.542815px;}
.ls3e{letter-spacing:0.548815px;}
.ls7b{letter-spacing:0.651088px;}
.lsd3{letter-spacing:0.762923px;}
.ls49{letter-spacing:1.405200px;}
.ls48{letter-spacing:1.411200px;}
.ls21{letter-spacing:2.946600px;}
.ls7c{letter-spacing:2.988600px;}
.ls50{letter-spacing:2.989200px;}
.ls47{letter-spacing:3.055200px;}
.lsd1{letter-spacing:3.469886px;}
.ls6d{letter-spacing:3.520530px;}
.ls5f{letter-spacing:3.660600px;}
.ls3b{letter-spacing:3.733200px;}
.ls23{letter-spacing:3.739200px;}
.ls82{letter-spacing:3.934710px;}
.ls32{letter-spacing:6.216408px;}
.ls0{letter-spacing:10.461300px;}
.ls3{letter-spacing:11.954850px;}
.lsfc{letter-spacing:12.270808px;}
.lsfd{letter-spacing:12.601420px;}
.ls10e{letter-spacing:12.742237px;}
.lse7{letter-spacing:12.791978px;}
.lsbf{letter-spacing:12.933453px;}
.ls45{letter-spacing:13.031081px;}
.ls46{letter-spacing:13.090856px;}
.ls10f{letter-spacing:13.120988px;}
.lsf6{letter-spacing:13.273889px;}
.ls106{letter-spacing:13.302639px;}
.lsf8{letter-spacing:13.335261px;}
.ls30{letter-spacing:13.418784px;}
.lsf4{letter-spacing:13.448400px;}
.lsf5{letter-spacing:13.454400px;}
.lsf9{letter-spacing:13.472244px;}
.lsfa{letter-spacing:13.472556px;}
.ls43{letter-spacing:13.514241px;}
.ls103{letter-spacing:13.515106px;}
.ls108{letter-spacing:13.517234px;}
.ls44{letter-spacing:13.520363px;}
.ls10b{letter-spacing:13.571506px;}
.ls10a{letter-spacing:13.595809px;}
.ls5{letter-spacing:13.724140px;}
.ls6{letter-spacing:13.822200px;}
.ls4a{letter-spacing:14.157098px;}
.ls101{letter-spacing:14.226871px;}
.lsc6{letter-spacing:14.635170px;}
.lsc5{letter-spacing:14.640771px;}
.ls40{letter-spacing:14.716271px;}
.lse8{letter-spacing:14.941029px;}
.lse9{letter-spacing:14.941152px;}
.lsee{letter-spacing:14.944200px;}
.ls41{letter-spacing:14.947365px;}
.ls22{letter-spacing:14.999492px;}
.ls42{letter-spacing:15.167840px;}
.lse6{letter-spacing:15.259259px;}
.lsff{letter-spacing:15.368047px;}
.ls4d{letter-spacing:15.663483px;}
.ls100{letter-spacing:15.797459px;}
.lsf2{letter-spacing:16.233483px;}
.lsf3{letter-spacing:16.430050px;}
.ls10d{letter-spacing:16.868047px;}
.lsef{letter-spacing:17.155597px;}
.lsc0{letter-spacing:17.476906px;}
.lsfb{letter-spacing:17.856282px;}
.lsea{letter-spacing:17.906318px;}
.ls4e{letter-spacing:17.929200px;}
.lsc2{letter-spacing:17.935200px;}
.ls3c{letter-spacing:18.047869px;}
.lsf1{letter-spacing:18.069483px;}
.ls3d{letter-spacing:18.071024px;}
.lsf0{letter-spacing:18.097625px;}
.lsec{letter-spacing:21.900435px;}
.lsed{letter-spacing:21.905398px;}
.lsc3{letter-spacing:23.271024px;}
.lsc4{letter-spacing:23.275986px;}
.ls1{letter-spacing:62.761200px;}
.ls2{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;}
}
.ws21e{word-spacing:-40.580133px;}
.ws1b5{word-spacing:-32.099497px;}
.ws4a{word-spacing:-15.222384px;}
.ws50{word-spacing:-15.066072px;}
.ws4b{word-spacing:-15.030000px;}
.ws47{word-spacing:-14.943900px;}
.ws51{word-spacing:-14.765472px;}
.wsb5{word-spacing:-14.543226px;}
.wsb6{word-spacing:-14.445000px;}
.wsb8{word-spacing:-14.416110px;}
.wsb7{word-spacing:-14.369886px;}
.ws14a{word-spacing:-14.128200px;}
.wsb4{word-spacing:-14.080986px;}
.ws4d{word-spacing:-13.559400px;}
.ws4e{word-spacing:-13.510800px;}
.ws54{word-spacing:-13.449600px;}
.wsb1{word-spacing:-13.002580px;}
.wsf0{word-spacing:-12.912210px;}
.wsee{word-spacing:-12.866040px;}
.wsf2{word-spacing:-12.845520px;}
.wsf1{word-spacing:-12.835260px;}
.wsec{word-spacing:-12.825000px;}
.wsb2{word-spacing:-12.807900px;}
.ws147{word-spacing:-12.776292px;}
.ws148{word-spacing:-12.690000px;}
.ws145{word-spacing:-12.370212px;}
.ws48{word-spacing:-12.161520px;}
.ws49{word-spacing:-11.970000px;}
.ws2b{word-spacing:-11.955150px;}
.wse3{word-spacing:-11.553030px;}
.wsea{word-spacing:-11.544347px;}
.wse1{word-spacing:-11.511720px;}
.wse5{word-spacing:-11.493360px;}
.wse4{word-spacing:-11.484180px;}
.wsdf{word-spacing:-11.475000px;}
.ws142{word-spacing:-11.422827px;}
.wseb{word-spacing:-11.371500px;}
.wsf{word-spacing:-11.357400px;}
.ws143{word-spacing:-11.251800px;}
.ws4{word-spacing:-10.460700px;}
.wsdd{word-spacing:-10.329152px;}
.wsde{word-spacing:-10.174500px;}
.wsb3{word-spacing:-8.859600px;}
.ws4f{word-spacing:-8.823600px;}
.ws149{word-spacing:-8.460000px;}
.ws14b{word-spacing:-8.388936px;}
.ws4c{word-spacing:-8.352864px;}
.wsed{word-spacing:-7.928928px;}
.wsef{word-spacing:-7.866000px;}
.ws144{word-spacing:-7.845466px;}
.ws146{word-spacing:-7.783200px;}
.wse0{word-spacing:-7.094304px;}
.wse2{word-spacing:-7.038000px;}
.ws217{word-spacing:-4.250074px;}
.ws1c3{word-spacing:-3.407209px;}
.ws3a{word-spacing:-3.287658px;}
.ws218{word-spacing:-3.281702px;}
.ws1c2{word-spacing:-3.108331px;}
.ws9c{word-spacing:-2.869229px;}
.ws1cf{word-spacing:-2.851315px;}
.ws3b{word-spacing:-2.570351px;}
.ws1af{word-spacing:-2.450800px;}
.ws1b0{word-spacing:-2.443540px;}
.ws1b8{word-spacing:-2.391024px;}
.wsa4{word-spacing:-2.331248px;}
.wse6{word-spacing:-2.313331px;}
.ws59{word-spacing:-2.271473px;}
.wsa6{word-spacing:-2.211697px;}
.wsbb{word-spacing:-2.205734px;}
.wsa5{word-spacing:-2.151922px;}
.wse7{word-spacing:-2.098138px;}
.wsa2{word-spacing:-2.092146px;}
.ws3d{word-spacing:-2.032370px;}
.ws9a{word-spacing:-1.972595px;}
.ws91{word-spacing:-1.912819px;}
.wsf7{word-spacing:-1.882944px;}
.wsa3{word-spacing:-1.853044px;}
.ws222{word-spacing:-1.829146px;}
.ws9e{word-spacing:-1.793268px;}
.ws225{word-spacing:-1.775347px;}
.ws1a6{word-spacing:-1.673717px;}
.ws219{word-spacing:-1.667750px;}
.ws1ce{word-spacing:-1.613952px;}
.ws2e{word-spacing:-1.613941px;}
.ws1d1{word-spacing:-1.560154px;}
.ws1a2{word-spacing:-1.554166px;}
.ws210{word-spacing:-1.506355px;}
.ws1c5{word-spacing:-1.494390px;}
.wsa0{word-spacing:-1.434614px;}
.wsa1{word-spacing:-1.421542px;}
.wsd9{word-spacing:-1.415610px;}
.wsca{word-spacing:-1.398276px;}
.wsc9{word-spacing:-1.386720px;}
.ws1a5{word-spacing:-1.374839px;}
.wsd8{word-spacing:-1.369386px;}
.ws41{word-spacing:-1.315063px;}
.ws46{word-spacing:-1.255288px;}
.ws44{word-spacing:-1.229538px;}
.ws45{word-spacing:-1.220002px;}
.wsb0{word-spacing:-1.195512px;}
.ws1f0{word-spacing:-1.183565px;}
.ws5{word-spacing:-1.171598px;}
.ws38{word-spacing:-1.135736px;}
.ws53{word-spacing:-1.129766px;}
.ws98{word-spacing:-1.075961px;}
.ws7{word-spacing:-1.046070px;}
.ws6f{word-spacing:-1.040076px;}
.ws55{word-spacing:-1.022170px;}
.ws1a8{word-spacing:-1.016185px;}
.ws58{word-spacing:-1.014538px;}
.ws56{word-spacing:-1.011091px;}
.ws57{word-spacing:-1.008538px;}
.wsda{word-spacing:-1.005372px;}
.ws6e{word-spacing:-0.997992px;}
.wsdb{word-spacing:-0.988038px;}
.ws1ee{word-spacing:-0.968371px;}
.ws2f{word-spacing:-0.956410px;}
.ws13d{word-spacing:-0.908010px;}
.ws1a4{word-spacing:-0.896634px;}
.ws13e{word-spacing:-0.877230px;}
.ws1d2{word-spacing:-0.860774px;}
.ws13c{word-spacing:-0.851580px;}
.ws197{word-spacing:-0.836858px;}
.wsa8{word-spacing:-0.812686px;}
.ws119{word-spacing:-0.812430px;}
.wsf9{word-spacing:-0.806976px;}
.ws11a{word-spacing:-0.784890px;}
.wsa9{word-spacing:-0.777083px;}
.ws118{word-spacing:-0.761940px;}
.ws14c{word-spacing:-0.699379px;}
.wsd6{word-spacing:-0.612468px;}
.ws1b6{word-spacing:-0.597756px;}
.ws1d0{word-spacing:-0.591782px;}
.wsd7{word-spacing:-0.583578px;}
.ws196{word-spacing:-0.552378px;}
.ws14e{word-spacing:-0.537984px;}
.ws195{word-spacing:-0.537980px;}
.ws167{word-spacing:-0.502524px;}
.wsf8{word-spacing:-0.498334px;}
.ws19{word-spacing:-0.484186px;}
.ws19d{word-spacing:-0.478205px;}
.ws1da{word-spacing:-0.430387px;}
.ws17c{word-spacing:-0.423846px;}
.wsf5{word-spacing:-0.376589px;}
.ws63{word-spacing:-0.360720px;}
.ws19b{word-spacing:-0.358654px;}
.ws71{word-spacing:-0.330660px;}
.ws209{word-spacing:-0.322790px;}
.ws2c{word-spacing:-0.298878px;}
.ws70{word-spacing:-0.294588px;}
.wsc1{word-spacing:-0.292020px;}
.wsc3{word-spacing:-0.281774px;}
.ws5f{word-spacing:-0.277704px;}
.wsf6{word-spacing:-0.268992px;}
.ws61{word-spacing:-0.268128px;}
.ws11e{word-spacing:-0.259270px;}
.ws159{word-spacing:-0.256541px;}
.ws82{word-spacing:-0.252504px;}
.ws120{word-spacing:-0.250173px;}
.ws15b{word-spacing:-0.247540px;}
.ws28{word-spacing:-0.239102px;}
.wsfa{word-spacing:-0.231979px;}
.wsfc{word-spacing:-0.223839px;}
.ws178{word-spacing:-0.220400px;}
.ws85{word-spacing:-0.216432px;}
.ws15{word-spacing:-0.215194px;}
.ws1aa{word-spacing:-0.179705px;}
.ws1e{word-spacing:-0.179327px;}
.ws17a{word-spacing:-0.169538px;}
.ws16{word-spacing:-0.161395px;}
.wsc2{word-spacing:-0.133202px;}
.ws60{word-spacing:-0.129276px;}
.ws29{word-spacing:-0.119551px;}
.ws11f{word-spacing:-0.118264px;}
.ws15a{word-spacing:-0.117019px;}
.wsbd{word-spacing:-0.107597px;}
.wsfb{word-spacing:-0.105815px;}
.ws179{word-spacing:-0.096072px;}
.ws24{word-spacing:-0.059776px;}
.wsbe{word-spacing:-0.053798px;}
.ws198{word-spacing:-0.047338px;}
.ws221{word-spacing:-0.029760px;}
.ws1e2{word-spacing:-0.007133px;}
.ws22d{word-spacing:-0.006826px;}
.ws1de{word-spacing:-0.006326px;}
.ws211{word-spacing:-0.005933px;}
.ws1ed{word-spacing:-0.005779px;}
.ws21d{word-spacing:-0.004214px;}
.ws1f7{word-spacing:-0.003571px;}
.ws2a{word-spacing:-0.001643px;}
.ws1f5{word-spacing:-0.001162px;}
.ws201{word-spacing:-0.000806px;}
.ws229{word-spacing:-0.000557px;}
.ws1{word-spacing:0.000000px;}
.ws199{word-spacing:0.000775px;}
.ws3{word-spacing:0.002494px;}
.ws52{word-spacing:0.053798px;}
.ws39{word-spacing:0.059776px;}
.ws62{word-spacing:0.084168px;}
.ws17b{word-spacing:0.090420px;}
.ws11b{word-spacing:0.096390px;}
.ws81{word-spacing:0.102204px;}
.wse9{word-spacing:0.107597px;}
.ws13f{word-spacing:0.107730px;}
.ws11d{word-spacing:0.119340px;}
.ws20{word-spacing:0.119551px;}
.ws1ba{word-spacing:0.123818px;}
.ws106{word-spacing:0.128520px;}
.ws141{word-spacing:0.133380px;}
.ws10c{word-spacing:0.137700px;}
.ws10{word-spacing:0.143462px;}
.ws12a{word-spacing:0.143640px;}
.ws130{word-spacing:0.153900px;}
.ws1c{word-spacing:0.161395px;}
.wsdc{word-spacing:0.161784px;}
.ws72{word-spacing:0.174348px;}
.ws22{word-spacing:0.179327px;}
.ws17d{word-spacing:0.214749px;}
.wsbc{word-spacing:0.215194px;}
.ws9d{word-spacing:0.215475px;}
.ws21{word-spacing:0.239102px;}
.ws175{word-spacing:0.254308px;}
.ws11c{word-spacing:0.261630px;}
.wse8{word-spacing:0.268992px;}
.ws140{word-spacing:0.292410px;}
.ws31{word-spacing:0.298878px;}
.ws1e3{word-spacing:0.322790px;}
.ws26{word-spacing:0.358654px;}
.ws3c{word-spacing:0.418429px;}
.ws8d{word-spacing:0.420840px;}
.ws17{word-spacing:0.430387px;}
.ws8c{word-spacing:0.462924px;}
.ws37{word-spacing:0.478205px;}
.wsd1{word-spacing:0.479574px;}
.ws75{word-spacing:0.496800px;}
.ws76{word-spacing:0.529200px;}
.ws78{word-spacing:0.534600px;}
.ws93{word-spacing:0.537980px;}
.ws1e7{word-spacing:0.537984px;}
.wsd0{word-spacing:0.554688px;}
.wscf{word-spacing:0.572022px;}
.ws13{word-spacing:0.591782px;}
.wsce{word-spacing:0.595134px;}
.ws1ac{word-spacing:0.597756px;}
.ws1ab{word-spacing:0.657532px;}
.wsc0{word-spacing:0.699379px;}
.ws96{word-spacing:0.717307px;}
.wsaa{word-spacing:0.744986px;}
.ws200{word-spacing:0.753178px;}
.ws79{word-spacing:0.772200px;}
.ws43{word-spacing:0.777083px;}
.ws176{word-spacing:0.791179px;}
.ws77{word-spacing:0.799200px;}
.ws36{word-spacing:0.836858px;}
.ws177{word-spacing:0.864646px;}
.ws19a{word-spacing:0.896634px;}
.ws202{word-spacing:0.914573px;}
.ws214{word-spacing:0.968371px;}
.ws6{word-spacing:1.004227px;}
.ws1a9{word-spacing:1.016185px;}
.ws1a1{word-spacing:1.075961px;}
.ws204{word-spacing:1.075968px;}
.wsad{word-spacing:1.135736px;}
.ws161{word-spacing:1.152252px;}
.ws162{word-spacing:1.172556px;}
.ws212{word-spacing:1.183565px;}
.ws157{word-spacing:1.195512px;}
.ws1d4{word-spacing:1.237363px;}
.ws1c7{word-spacing:1.255288px;}
.ws215{word-spacing:1.291162px;}
.wsd2{word-spacing:1.294272px;}
.ws27{word-spacing:1.315063px;}
.ws206{word-spacing:1.344960px;}
.wsd3{word-spacing:1.352052px;}
.ws190{word-spacing:1.384564px;}
.ws14d{word-spacing:1.398758px;}
.ws19f{word-spacing:1.434614px;}
.ws184{word-spacing:1.446728px;}
.ws18f{word-spacing:1.480635px;}
.ws99{word-spacing:1.494390px;}
.ws1f9{word-spacing:1.506355px;}
.ws16a{word-spacing:1.512648px;}
.ws16b{word-spacing:1.527876px;}
.ws185{word-spacing:1.542799px;}
.ws18{word-spacing:1.613952px;}
.ws1a{word-spacing:1.667750px;}
.ws90{word-spacing:1.673717px;}
.wsd5{word-spacing:1.727622px;}
.ws1f6{word-spacing:1.775347px;}
.wsd4{word-spacing:1.779624px;}
.ws18c{word-spacing:1.819712px;}
.ws1fb{word-spacing:1.829146px;}
.ws18d{word-spacing:1.910133px;}
.ws2d{word-spacing:1.912819px;}
.ws1ae{word-spacing:1.920715px;}
.ws10f{word-spacing:1.964520px;}
.ws1b9{word-spacing:1.972595px;}
.ws10e{word-spacing:1.982880px;}
.ws10d{word-spacing:1.996650px;}
.ws68{word-spacing:2.001996px;}
.ws5a{word-spacing:2.032370px;}
.ws69{word-spacing:2.056104px;}
.ws1e4{word-spacing:2.098138px;}
.wscd{word-spacing:2.103192px;}
.wscc{word-spacing:2.114748px;}
.wscb{word-spacing:2.126304px;}
.ws1a7{word-spacing:2.151922px;}
.ws16c{word-spacing:2.192832px;}
.ws133{word-spacing:2.195640px;}
.ws1b4{word-spacing:2.211697px;}
.ws132{word-spacing:2.216160px;}
.ws131{word-spacing:2.231550px;}
.ws88{word-spacing:2.248488px;}
.ws16d{word-spacing:2.248668px;}
.ws1e5{word-spacing:2.259533px;}
.ws9b{word-spacing:2.271473px;}
.ws89{word-spacing:2.302596px;}
.wsba{word-spacing:2.313331px;}
.ws1bd{word-spacing:2.331248px;}
.wsab{word-spacing:2.450800px;}
.ws2{word-spacing:2.508766px;}
.ws3f{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws87{word-spacing:2.525040px;}
.ws14f{word-spacing:2.534396px;}
.ws66{word-spacing:2.537064px;}
.ws35{word-spacing:2.570351px;}
.ws116{word-spacing:2.579580px;}
.ws115{word-spacing:2.593350px;}
.ws117{word-spacing:2.620890px;}
.ws67{word-spacing:2.621232px;}
.wsb9{word-spacing:2.636122px;}
.ws86{word-spacing:2.651292px;}
.ws65{word-spacing:2.657304px;}
.ws226{word-spacing:2.689920px;}
.ws25{word-spacing:2.749678px;}
.ws187{word-spacing:2.752173px;}
.ws183{word-spacing:2.763476px;}
.ws23{word-spacing:2.869229px;}
.ws13a{word-spacing:2.883060px;}
.ws8b{word-spacing:2.885760px;}
.ws139{word-spacing:2.898450px;}
.ws1b{word-spacing:2.905114px;}
.ws8e{word-spacing:2.915820px;}
.ws1a3{word-spacing:2.929004px;}
.ws13b{word-spacing:2.929230px;}
.wsfe{word-spacing:2.937600px;}
.wsff{word-spacing:2.946780px;}
.ws1ef{word-spacing:2.958912px;}
.ws12{word-spacing:3.012710px;}
.ws94{word-spacing:3.108331px;}
.ws1e6{word-spacing:3.120307px;}
.ws97{word-spacing:3.132480px;}
.ws1c4{word-spacing:3.168107px;}
.ws1f1{word-spacing:3.174106px;}
.ws103{word-spacing:3.185460px;}
.ws104{word-spacing:3.194640px;}
.ws203{word-spacing:3.217190px;}
.ws1fe{word-spacing:3.217699px;}
.ws1ea{word-spacing:3.220214px;}
.ws223{word-spacing:3.220234px;}
.ws20b{word-spacing:3.220349px;}
.ws1dc{word-spacing:3.220416px;}
.ws22a{word-spacing:3.220646px;}
.ws20f{word-spacing:3.220762px;}
.ws1ec{word-spacing:3.221779px;}
.ws1e9{word-spacing:3.222000px;}
.ws22c{word-spacing:3.222298px;}
.ws20c{word-spacing:3.222941px;}
.ws207{word-spacing:3.222950px;}
.ws208{word-spacing:3.223075px;}
.ws1e8{word-spacing:3.223190px;}
.ws21b{word-spacing:3.223258px;}
.ws216{word-spacing:3.223334px;}
.ws1f4{word-spacing:3.224064px;}
.ws213{word-spacing:3.224333px;}
.ws1db{word-spacing:3.224832px;}
.ws205{word-spacing:3.225571px;}
.ws1df{word-spacing:3.226022px;}
.ws21f{word-spacing:3.226646px;}
.ws1e1{word-spacing:3.227030px;}
.ws224{word-spacing:3.227578px;}
.ws22e{word-spacing:3.227846px;}
.ws1f{word-spacing:3.227882px;}
.ws1dd{word-spacing:3.227904px;}
.ws122{word-spacing:3.283200px;}
.ws33{word-spacing:3.287658px;}
.ws123{word-spacing:3.293460px;}
.ws173{word-spacing:3.300348px;}
.ws1d8{word-spacing:3.335501px;}
.ws8a{word-spacing:3.378744px;}
.ws1f2{word-spacing:3.389299px;}
.ws1ca{word-spacing:3.407209px;}
.ws228{word-spacing:3.443098px;}
.ws150{word-spacing:3.466985px;}
.ws1d3{word-spacing:3.496896px;}
.ws166{word-spacing:3.497364px;}
.ws172{word-spacing:3.503794px;}
.ws165{word-spacing:3.512592px;}
.wsfd{word-spacing:3.515940px;}
.ws30{word-spacing:3.526760px;}
.ws174{word-spacing:3.549004px;}
.ws127{word-spacing:3.560220px;}
.ws128{word-spacing:3.570480px;}
.ws1d{word-spacing:3.586536px;}
.ws1bf{word-spacing:3.706087px;}
.ws5d{word-spacing:3.765863px;}
.ws11{word-spacing:3.765888px;}
.ws105{word-spacing:3.782160px;}
.ws1d5{word-spacing:3.819686px;}
.ws32{word-spacing:3.825638px;}
.ws163{word-spacing:3.842532px;}
.ws21c{word-spacing:3.873485px;}
.wsae{word-spacing:3.885414px;}
.ws121{word-spacing:3.929580px;}
.ws95{word-spacing:3.945190px;}
.ws164{word-spacing:3.959280px;}
.ws14{word-spacing:3.981082px;}
.ws5b{word-spacing:4.004965px;}
.wsc6{word-spacing:4.033044px;}
.ws6b{word-spacing:4.040064px;}
.wsc8{word-spacing:4.056156px;}
.ws6c{word-spacing:4.058100px;}
.ws3e{word-spacing:4.064741px;}
.ws7f{word-spacing:4.076136px;}
.ws1e0{word-spacing:4.088678px;}
.ws152{word-spacing:4.124516px;}
.ws80{word-spacing:4.130244px;}
.ws129{word-spacing:4.227120px;}
.ws1c1{word-spacing:4.303843px;}
.ws1f8{word-spacing:4.303872px;}
.wsc7{word-spacing:4.316166px;}
.ws1c0{word-spacing:4.363619px;}
.ws180{word-spacing:4.402347px;}
.ws1eb{word-spacing:4.411469px;}
.ws83{word-spacing:4.418820px;}
.ws151{word-spacing:4.423394px;}
.ws1fd{word-spacing:4.465267px;}
.ws1b3{word-spacing:4.602721px;}
.ws111{word-spacing:4.709340px;}
.ws112{word-spacing:4.713930px;}
.ws110{word-spacing:4.727700px;}
.wsd{word-spacing:4.770079px;}
.ws5e{word-spacing:4.782048px;}
.ws84{word-spacing:4.797576px;}
.ws194{word-spacing:4.843147px;}
.wse{word-spacing:4.853765px;}
.wsa7{word-spacing:4.901599px;}
.ws193{word-spacing:4.910962px;}
.ws42{word-spacing:4.961375px;}
.ws158{word-spacing:5.021150px;}
.ws170{word-spacing:5.153967px;}
.ws7a{word-spacing:5.182344px;}
.ws171{word-spacing:5.193526px;}
.ws19c{word-spacing:5.200477px;}
.ws19e{word-spacing:5.260253px;}
.ws135{word-spacing:5.263380px;}
.ws136{word-spacing:5.268510px;}
.ws1d9{word-spacing:5.272243px;}
.ws134{word-spacing:5.283900px;}
.ws7b{word-spacing:5.308596px;}
.ws9f{word-spacing:5.379804px;}
.ws1ff{word-spacing:5.379840px;}
.ws17f{word-spacing:5.413926px;}
.ws17e{word-spacing:5.532603px;}
.wsc5{word-spacing:5.558436px;}
.ws1cb{word-spacing:5.559131px;}
.wsac{word-spacing:5.738458px;}
.ws40{word-spacing:5.798233px;}
.ws1fc{word-spacing:5.810227px;}
.ws21a{word-spacing:5.864026px;}
.ws15d{word-spacing:5.913540px;}
.wsbf{word-spacing:5.917824px;}
.ws1bb{word-spacing:5.977560px;}
.ws8f{word-spacing:6.097111px;}
.ws220{word-spacing:6.133018px;}
.ws1c6{word-spacing:6.156887px;}
.ws7d{word-spacing:6.168312px;}
.wsaf{word-spacing:6.216662px;}
.ws20d{word-spacing:6.240614px;}
.ws92{word-spacing:6.276438px;}
.wsc4{word-spacing:6.326910px;}
.ws7e{word-spacing:6.342660px;}
.ws5c{word-spacing:6.455765px;}
.ws1bc{word-spacing:6.515540px;}
.ws182{word-spacing:6.532880px;}
.ws154{word-spacing:6.573000px;}
.ws1c9{word-spacing:6.575316px;}
.ws1d7{word-spacing:6.617203px;}
.ws15c{word-spacing:6.619104px;}
.ws1c8{word-spacing:6.635092px;}
.ws1d6{word-spacing:6.671002px;}
.ws1be{word-spacing:6.814418px;}
.ws189{word-spacing:6.815444px;}
.ws1b7{word-spacing:6.874194px;}
.ws1b2{word-spacing:6.933970px;}
.ws181{word-spacing:6.979331px;}
.ws100{word-spacing:7.164990px;}
.ws102{word-spacing:7.169580px;}
.ws191{word-spacing:7.194079px;}
.ws101{word-spacing:7.206300px;}
.ws188{word-spacing:7.216685px;}
.ws192{word-spacing:7.222336px;}
.ws15e{word-spacing:7.258680px;}
.ws1ad{word-spacing:7.290526px;}
.ws160{word-spacing:7.294212px;}
.ws22b{word-spacing:7.531776px;}
.ws15f{word-spacing:7.583544px;}
.ws169{word-spacing:7.619076px;}
.ws64{word-spacing:7.641252px;}
.ws113{word-spacing:7.761690px;}
.wsb{word-spacing:7.782761px;}
.ws10b{word-spacing:7.803000px;}
.ws10a{word-spacing:7.816770px;}
.ws1b1{word-spacing:7.830604px;}
.ws168{word-spacing:7.908408px;}
.ws124{word-spacing:8.007930px;}
.ws126{word-spacing:8.013060px;}
.ws125{word-spacing:8.054100px;}
.ws114{word-spacing:8.073810px;}
.ws1fa{word-spacing:8.123558px;}
.ws156{word-spacing:8.189257px;}
.ws155{word-spacing:8.308808px;}
.ws1cd{word-spacing:8.553946px;}
.ws16e{word-spacing:8.657761px;}
.ws137{word-spacing:8.674830px;}
.ws16f{word-spacing:8.691669px;}
.ws12f{word-spacing:8.721000px;}
.ws12e{word-spacing:8.736390px;}
.ws138{word-spacing:9.023670px;}
.ws1f3{word-spacing:9.522317px;}
.ws1cc{word-spacing:9.791309px;}
.ws6a{word-spacing:9.793548px;}
.ws186{word-spacing:10.505730px;}
.ws18a{word-spacing:10.861760px;}
.ws18b{word-spacing:10.997391px;}
.ws20a{word-spacing:11.405261px;}
.ws227{word-spacing:11.728051px;}
.wsf4{word-spacing:11.889446px;}
.ws1a0{word-spacing:12.134447px;}
.ws9{word-spacing:12.176255px;}
.wsf3{word-spacing:12.427430px;}
.ws7c{word-spacing:13.424796px;}
.ws18e{word-spacing:13.862590px;}
.ws108{word-spacing:13.921470px;}
.ws109{word-spacing:13.944420px;}
.ws34{word-spacing:14.047266px;}
.ws107{word-spacing:14.554890px;}
.ws74{word-spacing:14.914800px;}
.ws12c{word-spacing:15.559290px;}
.ws12d{word-spacing:15.584940px;}
.ws73{word-spacing:15.654600px;}
.wsa{word-spacing:16.109478px;}
.ws12b{word-spacing:16.267230px;}
.ws153{word-spacing:16.498066px;}
.ws6d{word-spacing:20.230380px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
.ws20e{word-spacing:48.418560px;}
._29{margin-left:-17.155597px;}
._1c{margin-left:-13.683312px;}
._7{margin-left:-11.943245px;}
._8{margin-left:-7.962163px;}
._1{margin-left:-6.276420px;}
._d{margin-left:-5.033138px;}
._0{margin-left:-3.765852px;}
._5{margin-left:-2.301354px;}
._2{margin-left:-1.213441px;}
._1b{width:1.064124px;}
._4{width:2.301354px;}
._a{width:3.312890px;}
._2a{width:4.782048px;}
._2f{width:9.014177px;}
._2c{width:10.508540px;}
._13{width:11.943245px;}
._3{width:12.971268px;}
._15{width:14.828586px;}
._11{width:16.073744px;}
._e{width:17.621964px;}
._14{width:18.709763px;}
._1d{width:20.562788px;}
._12{width:22.057344px;}
._1e{width:23.970016px;}
._26{width:25.422559px;}
._f{width:26.779626px;}
._10{width:28.190362px;}
._6{width:30.587087px;}
._2b{width:32.075580px;}
._9{width:33.355008px;}
._19{width:35.410982px;}
._21{width:36.821770px;}
._18{width:38.806240px;}
._28{width:42.697708px;}
._b{width:54.429634px;}
._2e{width:61.868160px;}
._c{width:69.980794px;}
._2d{width:88.767360px;}
._20{width:93.548814px;}
._1f{width:96.537594px;}
._16{width:903.331134px;}
._23{width:1813.250552px;}
._25{width:2005.241787px;}
._24{width:2026.574147px;}
._1a{width:2134.155240px;}
._22{width:2282.562460px;}
._27{width:2494.970700px;}
._17{width:2518.880700px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(137,92,52);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:28.152000px;}
.fs1f{font-size:31.132800px;}
.fs1b{font-size:31.464000px;}
.fsb{font-size:33.120000px;}
.fs20{font-size:33.840000px;}
.fs13{font-size:35.438400px;}
.fs5{font-size:35.865600px;}
.fsc{font-size:36.000000px;}
.fs14{font-size:40.698000px;}
.fs0{font-size:41.842800px;}
.fs1c{font-size:45.007200px;}
.fs4{font-size:45.429600px;}
.fs18{font-size:45.486000px;}
.fs16{font-size:45.900000px;}
.fsf{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs1e{font-size:50.760000px;}
.fs15{font-size:51.102000px;}
.fs10{font-size:51.231600px;}
.fs1a{font-size:51.300000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsd{font-size:56.058000px;}
.fs1d{font-size:56.512800px;}
.fs19{font-size:57.114000px;}
.fs12{font-size:57.780000px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fse{font-size:62.286600px;}
.fs11{font-size:64.328400px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:147.405960px;}
.y171{bottom:-636.548307px;}
.y191{bottom:-560.991624px;}
.y190{bottom:-542.887749px;}
.y117{bottom:-527.428198px;}
.y18f{bottom:-524.868642px;}
.y18e{bottom:-506.764767px;}
.y18d{bottom:-488.660891px;}
.y18c{bottom:-470.641785px;}
.y18b{bottom:-452.537910px;}
.y18a{bottom:-434.434034px;}
.y136{bottom:-424.325992px;}
.y189{bottom:-416.414928px;}
.y188{bottom:-398.311052px;}
.y187{bottom:-380.291946px;}
.y146{bottom:-376.360748px;}
.y186{bottom:-362.188071px;}
.y145{bottom:-361.672748px;}
.y87{bottom:-360.968550px;}
.y144{bottom:-346.907865px;}
.y185{bottom:-344.084195px;}
.y143{bottom:-332.219992px;}
.y184{bottom:-326.065089px;}
.y142{bottom:-317.532375px;}
.y183{bottom:-307.961213px;}
.y141{bottom:-302.844375px;}
.ya7{bottom:-301.927254px;}
.y182{bottom:-289.941582px;}
.y140{bottom:-288.079492px;}
.ya6{bottom:-282.667812px;}
.y13f{bottom:-273.391747px;}
.y181{bottom:-271.837041px;}
.ya5{bottom:-263.498550px;}
.ya3{bottom:-263.494284px;}
.ya4{bottom:-259.718550px;}
.y13e{bottom:-258.626865px;}
.y180{bottom:-253.732613px;}
.ya2{bottom:-244.234842px;}
.y13d{bottom:-239.501992px;}
.y17f{bottom:-235.712148px;}
.ya1{bottom:-224.975400px;}
.y124{bottom:-222.157680px;}
.y17e{bottom:-217.608272px;}
.ya0{bottom:-205.806138px;}
.y150{bottom:-204.326048px;}
.y123{bottom:-203.668080px;}
.y17d{bottom:-199.589166px;}
.y9f{bottom:-186.546696px;}
.y122{bottom:-185.081698px;}
.y9e{bottom:-167.377434px;}
.y121{bottom:-166.495317px;}
.y17c{bottom:-164.987907px;}
.y160{bottom:-150.717833px;}
.y17b{bottom:-148.744707px;}
.y9d{bottom:-148.117992px;}
.y120{bottom:-148.005717px;}
.y15f{bottom:-134.301833px;}
.y17a{bottom:-132.501507px;}
.y11f{bottom:-129.516117px;}
.y9c{bottom:-128.858550px;}
.y9b{bottom:-128.857812px;}
.y15e{bottom:-117.799905px;}
.y179{bottom:-116.173284px;}
.y11e{bottom:-111.026517px;}
.y9a{bottom:-109.688550px;}
.y98{bottom:-109.687992px;}
.y99{bottom:-105.908550px;}
.y15d{bottom:-101.384048px;}
.y178{bottom:-99.845061px;}
.y11d{bottom:-92.536917px;}
.y97{bottom:-90.428550px;}
.y15c{bottom:-84.968475px;}
.y177{bottom:-83.686884px;}
.y13c{bottom:-75.026865px;}
.y11c{bottom:-74.047317px;}
.y15b{bottom:-68.552475px;}
.y176{bottom:-67.358661px;}
.y13b{bottom:-60.338865px;}
.y11b{bottom:-55.557717px;}
.y96{bottom:-53.619000px;}
.y15a{bottom:-52.050547px;}
.y175{bottom:-51.200484px;}
.y13a{bottom:-45.650610px;}
.y11a{bottom:-36.875998px;}
.y95{bottom:-36.339000px;}
.y159{bottom:-35.634832px;}
.y174{bottom:-34.788507px;}
.y139{bottom:-30.809993px;}
.y158{bottom:-19.132905px;}
.y93{bottom:-18.968550px;}
.y173{bottom:-18.545307px;}
.y119{bottom:-18.386398px;}
.y138{bottom:-16.121993px;}
.y94{bottom:-15.188400px;}
.y0{bottom:0.000000px;}
.y157{bottom:2.241953px;}
.y172{bottom:2.604397px;}
.y137{bottom:2.926332px;}
.y92{bottom:3.441315px;}
.y118{bottom:5.592099px;}
.y1b{bottom:15.837920px;}
.y4b{bottom:31.890000px;}
.y272{bottom:91.771500px;}
.yc4{bottom:91.849500px;}
.yc3{bottom:94.579500px;}
.y21f{bottom:97.285500px;}
.y113{bottom:100.468500px;}
.y19{bottom:104.646000px;}
.y4a{bottom:104.755500px;}
.y83{bottom:105.847500px;}
.y209{bottom:107.193000px;}
.y1cf{bottom:107.641500px;}
.y271{bottom:109.032000px;}
.yc2{bottom:113.407500px;}
.y21e{bottom:116.115000px;}
.y112{bottom:119.298000px;}
.y1bc{bottom:120.910500px;}
.y2a7{bottom:121.762500px;}
.yd3{bottom:121.987500px;}
.y18{bottom:122.535000px;}
.y49{bottom:123.585000px;}
.y82{bottom:124.677000px;}
.y208{bottom:126.022500px;}
.y270{bottom:126.291000px;}
.y1ce{bottom:126.471000px;}
.yc1{bottom:132.237000px;}
.y111{bottom:138.127500px;}
.y2a6{bottom:139.023000px;}
.y21d{bottom:139.428000px;}
.y1bb{bottom:139.740000px;}
.y17{bottom:140.422500px;}
.yd2{bottom:140.817000px;}
.y16d{bottom:141.337500px;}
.y48{bottom:142.414500px;}
.y81{bottom:143.506500px;}
.y26f{bottom:143.551500px;}
.y23b{bottom:144.762000px;}
.y207{bottom:144.852000px;}
.y1cd{bottom:145.300500px;}
.yc0{bottom:148.338000px;}
.ybf{bottom:151.066500px;}
.y2a5{bottom:156.283500px;}
.y110{bottom:156.957000px;}
.y16{bottom:158.310000px;}
.y1ba{bottom:158.569500px;}
.yd1{bottom:159.646500px;}
.y16c{bottom:160.570500px;}
.y26e{bottom:160.812000px;}
.y206{bottom:160.951500px;}
.y47{bottom:161.244000px;}
.y23a{bottom:162.336000px;}
.y205{bottom:163.681500px;}
.y1cc{bottom:164.130000px;}
.y80{bottom:166.819500px;}
.ybe{bottom:169.896000px;}
.y21c{bottom:173.052000px;}
.y2a4{bottom:173.544000px;}
.y10f{bottom:175.786500px;}
.y15{bottom:176.199000px;}
.y1b9{bottom:177.399000px;}
.y26d{bottom:178.072500px;}
.yd0{bottom:178.476000px;}
.y16b{bottom:179.803500px;}
.y46{bottom:180.073500px;}
.y204{bottom:182.511000px;}
.y1cb{bottom:182.959500px;}
.y156{bottom:186.067095px;}
.y7f{bottom:186.994500px;}
.ybd{bottom:188.725500px;}
.y239{bottom:188.877000px;}
.y2a3{bottom:190.804500px;}
.y21b{bottom:191.881500px;}
.y14{bottom:194.086500px;}
.y10e{bottom:194.616000px;}
.y26c{bottom:195.333000px;}
.y1b8{bottom:196.228500px;}
.y16a{bottom:196.414500px;}
.ycf{bottom:197.305500px;}
.y203{bottom:198.610500px;}
.y45{bottom:198.903000px;}
.y169{bottom:199.036500px;}
.y221{bottom:199.059000px;}
.y202{bottom:201.340500px;}
.y1ca{bottom:201.789000px;}
.y155{bottom:202.483095px;}
.y238{bottom:206.451000px;}
.ybc{bottom:207.555000px;}
.y2a2{bottom:208.065000px;}
.y21a{bottom:210.711000px;}
.y13{bottom:211.974000px;}
.y26b{bottom:212.593500px;}
.y10d{bottom:213.445500px;}
.y1b7{bottom:215.058000px;}
.y168{bottom:215.647500px;}
.y201{bottom:217.440000px;}
.y44{bottom:217.732500px;}
.y167{bottom:218.269500px;}
.y154{bottom:218.899380px;}
.y200{bottom:220.170000px;}
.y7e{bottom:220.618500px;}
.y237{bottom:224.025000px;}
.y2a1{bottom:225.325500px;}
.ybb{bottom:226.384500px;}
.y219{bottom:229.540500px;}
.y26a{bottom:229.854000px;}
.y12{bottom:229.863000px;}
.y1b6{bottom:231.157500px;}
.y132{bottom:231.853500px;}
.y10c{bottom:232.275000px;}
.y1b5{bottom:233.887500px;}
.y153{bottom:235.485952px;}
.y43{bottom:236.562000px;}
.y166{bottom:237.502500px;}
.y1ff{bottom:238.999500px;}
.y7d{bottom:239.446500px;}
.y236{bottom:241.599000px;}
.yba{bottom:242.484000px;}
.y2a0{bottom:242.586000px;}
.yb8{bottom:245.214000px;}
.y269{bottom:247.114500px;}
.y218{bottom:248.370000px;}
.yb9{bottom:250.639500px;}
.y131{bottom:251.086500px;}
.y10b{bottom:251.104500px;}
.y152{bottom:251.901952px;}
.y1b4{bottom:252.717000px;}
.y1fe{bottom:255.099000px;}
.y42{bottom:255.391500px;}
.y165{bottom:256.735500px;}
.y1fd{bottom:257.829000px;}
.y7c{bottom:258.276000px;}
.y29f{bottom:259.846500px;}
.yb7{bottom:264.043500px;}
.y268{bottom:264.373500px;}
.y217{bottom:267.199500px;}
.y235{bottom:268.140000px;}
.y1b3{bottom:268.816500px;}
.y10a{bottom:269.932500px;}
.y130{bottom:270.319500px;}
.y1b2{bottom:271.546500px;}
.y151{bottom:273.191256px;}
.y164{bottom:273.345000px;}
.y41{bottom:274.221000px;}
.y162{bottom:275.968500px;}
.y1fc{bottom:276.658500px;}
.y7b{bottom:277.105500px;}
.y163{bottom:280.849500px;}
.y267{bottom:281.634000px;}
.yb6{bottom:282.873000px;}
.y216{bottom:286.027500px;}
.y234{bottom:286.185000px;}
.y109{bottom:288.762000px;}
.y12f{bottom:289.552500px;}
.y1b0{bottom:290.376000px;}
.y40{bottom:293.050500px;}
.y7a{bottom:293.205000px;}
.y29e{bottom:294.366000px;}
.y161{bottom:295.201500px;}
.y1fb{bottom:295.488000px;}
.y1b1{bottom:295.800000px;}
.y78{bottom:295.935000px;}
.y266{bottom:298.894500px;}
.y11{bottom:300.154500px;}
.y79{bottom:301.360500px;}
.yb5{bottom:301.702500px;}
.y233{bottom:304.230000px;}
.y215{bottom:304.857000px;}
.y1af{bottom:306.475500px;}
.y108{bottom:307.591500px;}
.y12e{bottom:308.785500px;}
.y1ae{bottom:309.205500px;}
.y1fa{bottom:311.587500px;}
.y29d{bottom:311.626500px;}
.y3f{bottom:311.880000px;}
.y1f9{bottom:314.317500px;}
.y77{bottom:314.764500px;}
.y265{bottom:316.155000px;}
.y14d{bottom:317.629500px;}
.y10{bottom:318.043500px;}
.yb4{bottom:320.532000px;}
.y214{bottom:320.956500px;}
.y232{bottom:322.275000px;}
.y213{bottom:323.686500px;}
.y107{bottom:326.421000px;}
.y12d{bottom:328.017000px;}
.y1ad{bottom:328.035000px;}
.y29c{bottom:328.887000px;}
.y3e{bottom:330.709500px;}
.y1f8{bottom:333.145500px;}
.y264{bottom:333.415500px;}
.y76{bottom:333.594000px;}
.yf{bottom:335.931000px;}
.yb3{bottom:339.361500px;}
.y231{bottom:340.320000px;}
.y212{bottom:342.516000px;}
.y106{bottom:345.250500px;}
.y29b{bottom:346.147500px;}
.y1ab{bottom:346.864500px;}
.y12c{bottom:347.250000px;}
.y1f7{bottom:349.246500px;}
.y3d{bottom:349.539000px;}
.yce{bottom:350.182500px;}
.y263{bottom:350.676000px;}
.y1f6{bottom:351.975000px;}
.y1ac{bottom:352.288500px;}
.y75{bottom:352.423500px;}
.ye{bottom:353.818500px;}
.yb2{bottom:358.191000px;}
.y230{bottom:358.365000px;}
.y211{bottom:358.615500px;}
.y210{bottom:361.345500px;}
.y1a9{bottom:362.964000px;}
.y29a{bottom:363.408000px;}
.y105{bottom:364.080000px;}
.y1a8{bottom:365.694000px;}
.y12b{bottom:366.483000px;}
.y262{bottom:367.936500px;}
.y224{bottom:368.523000px;}
.y1f5{bottom:370.804500px;}
.y1aa{bottom:371.118000px;}
.y74{bottom:371.253000px;}
.y3c{bottom:372.850500px;}
.yb1{bottom:374.290500px;}
.y22f{bottom:376.408500px;}
.yb0{bottom:377.020500px;}
.y20f{bottom:380.175000px;}
.y299{bottom:380.668500px;}
.yd{bottom:380.673000px;}
.y104{bottom:382.909500px;}
.y1a7{bottom:384.523500px;}
.y261{bottom:385.197000px;}
.y12a{bottom:385.716000px;}
.y1f4{bottom:386.904000px;}
.y223{bottom:387.346500px;}
.y1f3{bottom:389.634000px;}
.y73{bottom:390.082500px;}
.yaf{bottom:393.120000px;}
.y22e{bottom:394.453500px;}
.yad{bottom:395.850000px;}
.y298{bottom:397.929000px;}
.yc{bottom:398.562000px;}
.yae{bottom:401.274000px;}
.y103{bottom:401.739000px;}
.y260{bottom:402.457500px;}
.y1a6{bottom:403.353000px;}
.y129{bottom:404.949000px;}
.y222{bottom:406.176000px;}
.y1f2{bottom:408.463500px;}
.y72{bottom:408.912000px;}
.y20d{bottom:412.305000px;}
.y22d{bottom:412.498500px;}
.yac{bottom:414.679500px;}
.y297{bottom:415.188000px;}
.yb{bottom:416.449500px;}
.y25f{bottom:419.716500px;}
.y102{bottom:420.568500px;}
.y128{bottom:421.560000px;}
.y1a5{bottom:422.182500px;}
.y20c{bottom:422.556000px;}
.y126{bottom:424.182000px;}
.y220{bottom:425.011500px;}
.y1f1{bottom:427.293000px;}
.y71{bottom:427.741500px;}
.y22c{bottom:427.921500px;}
.y127{bottom:429.064500px;}
.y170{bottom:429.412243px;}
.y22a{bottom:430.543500px;}
.y296{bottom:432.448500px;}
.y20e{bottom:432.673500px;}
.y1c9{bottom:433.167000px;}
.y22b{bottom:435.426000px;}
.y25e{bottom:436.977000px;}
.y16f{bottom:438.633093px;}
.y100{bottom:439.398000px;}
.y1a3{bottom:441.012000px;}
.y125{bottom:443.415000px;}
.ya{bottom:444.798000px;}
.y101{bottom:444.823500px;}
.y1ef{bottom:446.122500px;}
.y1a4{bottom:446.436000px;}
.y70{bottom:446.571000px;}
.y3b{bottom:448.000500px;}
.yab{bottom:448.245000px;}
.y229{bottom:448.588500px;}
.y295{bottom:449.709000px;}
.y1f0{bottom:451.548000px;}
.y25d{bottom:454.237500px;}
.yfe{bottom:458.227500px;}
.y1a2{bottom:459.841500px;}
.y9{bottom:462.685500px;}
.yff{bottom:463.653000px;}
.yaa{bottom:464.856000px;}
.y1ee{bottom:464.952000px;}
.y6f{bottom:465.400500px;}
.y114{bottom:465.844500px;}
.y228{bottom:466.633500px;}
.y294{bottom:466.969500px;}
.y3a{bottom:467.458500px;}
.ya8{bottom:467.478000px;}
.y25c{bottom:471.498000px;}
.ya9{bottom:472.360500px;}
.yfc{bottom:477.057000px;}
.y1a1{bottom:478.671000px;}
.yfd{bottom:482.482500px;}
.y1ed{bottom:483.781500px;}
.y6e{bottom:484.230000px;}
.y25b{bottom:488.758500px;}
.y8{bottom:489.540000px;}
.y84{bottom:489.907500px;}
.yfb{bottom:495.886500px;}
.y1a0{bottom:497.499000px;}
.y20b{bottom:499.881000px;}
.ycd{bottom:500.329500px;}
.y293{bottom:501.490500px;}
.y1ec{bottom:502.611000px;}
.y6d{bottom:503.059500px;}
.y39{bottom:504.847500px;}
.y25a{bottom:506.019000px;}
.y7{bottom:507.429000px;}
.ycc{bottom:508.483500px;}
.y14c{bottom:510.442500px;}
.yfa{bottom:511.986000px;}
.y19f{bottom:513.600000px;}
.yf9{bottom:514.716000px;}
.y19d{bottom:516.328500px;}
.y292{bottom:518.751000px;}
.y1ea{bottom:521.440500px;}
.y19e{bottom:521.754000px;}
.y6c{bottom:521.889000px;}
.y259{bottom:523.279500px;}
.y38{bottom:524.305500px;}
.y6{bottom:525.316500px;}
.y1eb{bottom:526.866000px;}
.y14b{bottom:529.674000px;}
.yf8{bottom:533.545500px;}
.y291{bottom:536.011500px;}
.y91{bottom:536.421648px;}
.y135{bottom:539.574505px;}
.y1e9{bottom:540.270000px;}
.y258{bottom:540.540000px;}
.y6b{bottom:540.718500px;}
.y5{bottom:543.204000px;}
.y37{bottom:543.762000px;}
.y1c8{bottom:546.142500px;}
.y134{bottom:547.912507px;}
.y149{bottom:548.907000px;}
.yf7{bottom:549.645000px;}
.y19c{bottom:549.895500px;}
.yf5{bottom:552.375000px;}
.y290{bottom:553.272000px;}
.y14a{bottom:553.789500px;}
.y90{bottom:555.681090px;}
.y1e8{bottom:556.369500px;}
.yf6{bottom:557.799000px;}
.y1e7{bottom:559.099500px;}
.y6a{bottom:559.548000px;}
.y4{bottom:561.093000px;}
.y36{bottom:563.220000px;}
.y1c7{bottom:564.972000px;}
.y148{bottom:568.140000px;}
.yf4{bottom:568.474500px;}
.y19b{bottom:569.127000px;}
.y28f{bottom:570.531000px;}
.yf2{bottom:571.204500px;}
.y8f{bottom:574.940532px;}
.y257{bottom:575.059500px;}
.yf3{bottom:576.628500px;}
.y1e6{bottom:577.929000px;}
.y69{bottom:578.377500px;}
.y3{bottom:578.980500px;}
.y35{bottom:582.676500px;}
.ycb{bottom:583.801500px;}
.yf1{bottom:587.304000px;}
.y147{bottom:587.373000px;}
.y28e{bottom:587.791500px;}
.y19a{bottom:588.360000px;}
.yf0{bottom:590.034000px;}
.y256{bottom:592.320000px;}
.y8e{bottom:594.111297px;}
.y1e5{bottom:596.758500px;}
.y2{bottom:596.868000px;}
.y68{bottom:597.207000px;}
.y34{bottom:599.511000px;}
.y33{bottom:602.133000px;}
.y28d{bottom:605.052000px;}
.y199{bottom:607.593000px;}
.yef{bottom:608.863500px;}
.y255{bottom:609.580500px;}
.y133{bottom:609.802500px;}
.y8d{bottom:613.370739px;}
.y1{bottom:614.757000px;}
.y1e4{bottom:615.588000px;}
.y67{bottom:616.036500px;}
.y32{bottom:621.591000px;}
.y28c{bottom:622.312500px;}
.yee{bottom:624.963000px;}
.y198{bottom:626.826000px;}
.y254{bottom:626.841000px;}
.yec{bottom:627.693000px;}
.y227{bottom:631.687500px;}
.y8c{bottom:632.541504px;}
.yed{bottom:633.117000px;}
.y1e3{bottom:634.417500px;}
.y66{bottom:634.866000px;}
.y31{bottom:638.425500px;}
.y28b{bottom:639.573000px;}
.y30{bottom:641.047500px;}
.y253{bottom:644.101500px;}
.y197{bottom:646.059000px;}
.yeb{bottom:646.522500px;}
.y226{bottom:650.517000px;}
.y8b{bottom:651.800946px;}
.y1e2{bottom:653.247000px;}
.y65{bottom:653.695500px;}
.y28a{bottom:656.833500px;}
.y2f{bottom:660.504000px;}
.y252{bottom:661.362000px;}
.y196{bottom:665.292000px;}
.yea{bottom:669.834000px;}
.y8a{bottom:671.060388px;}
.y1e1{bottom:672.076500px;}
.y64{bottom:672.525000px;}
.y289{bottom:674.094000px;}
.y251{bottom:678.622500px;}
.y2e{bottom:679.962000px;}
.y195{bottom:681.901500px;}
.y193{bottom:684.525000px;}
.y116{bottom:685.952427px;}
.yca{bottom:688.624500px;}
.y194{bottom:689.407500px;}
.ye9{bottom:690.009000px;}
.y1e0{bottom:690.906000px;}
.y63{bottom:691.354500px;}
.y89{bottom:694.731135px;}
.y20a{bottom:695.389500px;}
.y250{bottom:695.883000px;}
.y115{bottom:696.448502px;}
.yc9{bottom:696.778500px;}
.y2d{bottom:699.418500px;}
.y192{bottom:703.758000px;}
.y288{bottom:708.613500px;}
.y1df{bottom:709.735500px;}
.y62{bottom:710.184000px;}
.y24f{bottom:713.142000px;}
.y88{bottom:718.580739px;}
.y2c{bottom:718.876500px;}
.ye8{bottom:723.633000px;}
.y287{bottom:725.874000px;}
.y16e{bottom:726.187500px;}
.y1de{bottom:728.565000px;}
.y61{bottom:729.013500px;}
.y24e{bottom:730.402500px;}
.y2b{bottom:738.333000px;}
.ye7{bottom:740.221500px;}
.ye6{bottom:742.462500px;}
.y286{bottom:743.134500px;}
.y1dc{bottom:744.318000px;}
.y1db{bottom:745.152000px;}
.y1da{bottom:747.394500px;}
.y60{bottom:747.843000px;}
.y24d{bottom:752.146500px;}
.y1dd{bottom:752.818500px;}
.y2a{bottom:757.789500px;}
.y285{bottom:760.395000px;}
.y1d9{bottom:763.147500px;}
.y1d8{bottom:763.981500px;}
.ye5{bottom:765.775500px;}
.y1d7{bottom:766.224000px;}
.y5f{bottom:766.671000px;}
.y1c6{bottom:772.096500px;}
.y86{bottom:773.032035px;}
.y29{bottom:777.247500px;}
.y284{bottom:777.655500px;}
.y85{bottom:782.841450px;}
.y1d6{bottom:785.053500px;}
.y5e{bottom:785.500500px;}
.y24c{bottom:788.908500px;}
.y225{bottom:789.535500px;}
.y283{bottom:794.916000px;}
.y28{bottom:796.704000px;}
.ye4{bottom:799.399500px;}
.y1d5{bottom:803.883000px;}
.y5d{bottom:804.330000px;}
.y1c5{bottom:809.755500px;}
.y282{bottom:812.176500px;}
.y24b{bottom:815.449500px;}
.ye3{bottom:815.499000px;}
.y27{bottom:816.160500px;}
.ye2{bottom:818.229000px;}
.y1d4{bottom:822.712500px;}
.y5c{bottom:823.159500px;}
.y281{bottom:829.437000px;}
.y24a{bottom:833.023500px;}
.ye1{bottom:837.058500px;}
.y1d3{bottom:841.540500px;}
.y5b{bottom:841.989000px;}
.y280{bottom:846.697500px;}
.y249{bottom:850.597500px;}
.y26{bottom:854.746500px;}
.ye0{bottom:855.888000px;}
.y1c4{bottom:858.088500px;}
.y1d2{bottom:860.370000px;}
.y5a{bottom:860.818500px;}
.y27f{bottom:863.956500px;}
.y248{bottom:868.171500px;}
.y14f{bottom:872.974508px;}
.ydf{bottom:874.717500px;}
.y25{bottom:875.226000px;}
.yc8{bottom:876.918000px;}
.y59{bottom:879.648000px;}
.y27e{bottom:881.217000px;}
.y14e{bottom:882.293453px;}
.y1d1{bottom:883.683000px;}
.yc7{bottom:885.073500px;}
.y247{bottom:885.745500px;}
.y24{bottom:891.366000px;}
.yde{bottom:893.547000px;}
.y58{bottom:898.477500px;}
.y23{bottom:903.165000px;}
.y1c3{bottom:903.903000px;}
.y246{bottom:912.286500px;}
.ydd{bottom:912.376500px;}
.y1c2{bottom:914.577000px;}
.yc6{bottom:915.066000px;}
.y27d{bottom:915.738000px;}
.y57{bottom:917.307000px;}
.y22{bottom:919.305000px;}
.y1c1{bottom:922.732500px;}
.y21{bottom:923.644500px;}
.y245{bottom:929.860500px;}
.ydc{bottom:931.206000px;}
.y27c{bottom:932.998500px;}
.y1c0{bottom:933.406500px;}
.y56{bottom:936.136500px;}
.y244{bottom:947.434500px;}
.ydb{bottom:950.034000px;}
.y27b{bottom:950.259000px;}
.y1bf{bottom:952.236000px;}
.y55{bottom:954.966000px;}
.y243{bottom:965.008500px;}
.y27a{bottom:967.519500px;}
.y20{bottom:968.320500px;}
.yda{bottom:973.347000px;}
.y54{bottom:973.795500px;}
.y242{bottom:982.582500px;}
.y279{bottom:984.780000px;}
.yc5{bottom:989.895000px;}
.y53{bottom:992.625000px;}
.y241{bottom:1000.156500px;}
.y2a8{bottom:1002.039000px;}
.y278{bottom:1002.040500px;}
.yd9{bottom:1006.971000px;}
.y1f{bottom:1008.240000px;}
.y1d0{bottom:1008.724500px;}
.y52{bottom:1011.454500px;}
.y240{bottom:1017.730500px;}
.y277{bottom:1019.299500px;}
.yd8{bottom:1025.800500px;}
.y51{bottom:1030.284000px;}
.y23f{bottom:1035.304500px;}
.y1e{bottom:1036.485000px;}
.y276{bottom:1036.560000px;}
.yd7{bottom:1044.630000px;}
.y1be{bottom:1046.383500px;}
.y50{bottom:1049.113500px;}
.y23e{bottom:1052.880000px;}
.y275{bottom:1053.820500px;}
.yd6{bottom:1063.459500px;}
.y1d{bottom:1064.728500px;}
.y1bd{bottom:1065.213000px;}
.y4f{bottom:1067.943000px;}
.y23d{bottom:1070.454000px;}
.y274{bottom:1071.081000px;}
.yd5{bottom:1079.559000px;}
.yd4{bottom:1082.289000px;}
.y4e{bottom:1086.772500px;}
.y23c{bottom:1088.028000px;}
.y273{bottom:1088.341500px;}
.y1c{bottom:1092.972000px;}
.y4d{bottom:1105.602000px;}
.y1a{bottom:1136.460000px;}
.y4c{bottom:1168.366500px;}
.h37{height:30.106714px;}
.h16{height:30.936797px;}
.h39{height:33.299897px;}
.h17{height:33.626953px;}
.h8{height:33.821261px;}
.h3a{height:35.652888px;}
.h3b{height:37.551283px;}
.h22{height:38.015271px;}
.ha{height:38.734848px;}
.hc{height:39.434227px;}
.h2{height:39.457760px;}
.h1b{height:39.614278px;}
.h1a{height:41.723369px;}
.h32{height:42.040417px;}
.h2a{height:42.487655px;}
.hf{height:42.840113px;}
.h24{height:42.874365px;}
.h27{height:42.874875px;}
.h25{height:42.875385px;}
.h26{height:42.875895px;}
.hd{height:43.038432px;}
.h14{height:43.269961px;}
.h5{height:43.815515px;}
.h13{height:43.886426px;}
.h11{height:44.723848px;}
.h9{height:45.094826px;}
.h18{height:46.140888px;}
.h30{height:46.146888px;}
.h34{height:47.414004px;}
.h23{height:47.733460px;}
.h1e{height:47.854517px;}
.h2c{height:47.918408px;}
.h2f{height:47.918978px;}
.h2d{height:47.919548px;}
.h2e{height:47.920118px;}
.h15{height:50.440430px;}
.h19{height:50.534278px;}
.hb{height:50.731891px;}
.h3{height:50.930649px;}
.h36{height:51.920278px;}
.h33{height:52.787591px;}
.h2b{height:53.349161px;}
.h20{height:53.971260px;}
.h7{height:54.411312px;}
.h12{height:56.157012px;}
.he{height:56.368391px;}
.h28{height:58.981760px;}
.h1f{height:60.088003px;}
.h35{height:64.536113px;}
.h1c{height:64.542113px;}
.h6{height:77.469696px;}
.h38{height:96.838391px;}
.h4{height:99.941241px;}
.h29{height:167.615625px;}
.h31{height:394.358670px;}
.h21{height:510.740775px;}
.h10{height:516.826500px;}
.h1d{height:654.698760px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:198.822293px;}
.w5{width:426.617550px;}
.w3{width:523.896000px;}
.w7{width:559.683990px;}
.w6{width:559.784175px;}
.w4{width:569.813520px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xc0{left:-201.913815px;}
.x50{left:-191.061000px;}
.xcc{left:-183.894825px;}
.xd1{left:-179.852550px;}
.xc8{left:-163.069950px;}
.x0{left:0.000000px;}
.xcd{left:1.896675px;}
.xc9{left:3.164550px;}
.x51{left:4.507910px;}
.xc1{left:7.346085px;}
.xd2{left:33.931650px;}
.x52{left:36.367805px;}
.x1{left:53.574000px;}
.x2{left:57.551633px;}
.x12f{left:83.830500px;}
.x12c{left:85.848000px;}
.x5b{left:111.339000px;}
.x5c{left:115.839000px;}
.x57{left:208.449000px;}
.x58{left:220.419000px;}
.x134{left:242.878500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x135{left:251.790000px;}
.x59{left:254.709000px;}
.x9{left:256.288500px;}
.x100{left:257.667000px;}
.x5a{left:259.209000px;}
.xe2{left:260.919000px;}
.xef{left:262.591500px;}
.x97{left:263.629500px;}
.xa{left:265.611000px;}
.x101{left:267.270000px;}
.x4{left:269.752500px;}
.x8a{left:270.778500px;}
.x118{left:274.531500px;}
.xe3{left:276.946500px;}
.xc{left:281.479500px;}
.x98{left:282.826500px;}
.x9f{left:284.184000px;}
.x35{left:285.345000px;}
.x8b{left:286.744500px;}
.x12a{left:289.449000px;}
.xe4{left:291.898500px;}
.x10f{left:293.991000px;}
.x4d{left:296.029500px;}
.x6b{left:298.743000px;}
.x36{left:300.289500px;}
.x112{left:301.623000px;}
.x99{left:302.647500px;}
.x102{left:304.024500px;}
.x61{left:306.768000px;}
.x6c{left:308.884500px;}
.x6{left:310.207500px;}
.x126{left:311.508000px;}
.xcf{left:313.215000px;}
.xb4{left:314.265000px;}
.xa0{left:317.599500px;}
.x113{left:318.703500px;}
.xb{left:319.887000px;}
.x77{left:326.790000px;}
.x2d{left:328.126500px;}
.xbb{left:329.245500px;}
.x8c{left:330.868500px;}
.xe5{left:333.430500px;}
.xd6{left:334.497000px;}
.xa7{left:339.103500px;}
.xb5{left:340.779000px;}
.x2e{left:343.069500px;}
.xa8{left:345.135000px;}
.x2f{left:346.828500px;}
.x114{left:349.959000px;}
.xfc{left:351.447000px;}
.xa4{left:353.271000px;}
.x37{left:358.467000px;}
.x75{left:360.115500px;}
.x30{left:361.771500px;}
.x115{left:364.903500px;}
.xa5{left:367.819500px;}
.xd0{left:371.076000px;}
.x12b{left:372.307500px;}
.x38{left:373.410000px;}
.x76{left:375.060000px;}
.xe7{left:376.084500px;}
.x27{left:377.091000px;}
.x10a{left:378.409500px;}
.x116{left:383.658000px;}
.xe6{left:385.693500px;}
.xdb{left:387.588000px;}
.x10b{left:388.965000px;}
.xea{left:390.103500px;}
.x28{left:392.035500px;}
.x78{left:393.342000px;}
.x29{left:395.697000px;}
.xdc{left:398.470500px;}
.x79{left:399.768000px;}
.x82{left:403.296000px;}
.xeb{left:405.048000px;}
.xa9{left:407.721000px;}
.xa6{left:409.180500px;}
.x2a{left:410.640000px;}
.x123{left:417.616500px;}
.x11f{left:419.430000px;}
.xf0{left:420.435000px;}
.x67{left:422.281500px;}
.x105{left:423.556500px;}
.x127{left:427.998000px;}
.x9a{left:429.324000px;}
.xf1{left:432.520500px;}
.x5d{left:433.809000px;}
.xfe{left:435.301500px;}
.x11b{left:437.148000px;}
.x68{left:438.247500px;}
.xaa{left:440.145000px;}
.x9b{left:444.267000px;}
.x5e{left:445.779000px;}
.xff{left:448.044000px;}
.xab{left:450.870000px;}
.xd3{left:452.188500px;}
.xa1{left:461.175000px;}
.xd{left:462.504000px;}
.xc3{left:465.543000px;}
.xbc{left:466.884000px;}
.xe{left:469.977000px;}
.xa2{left:471.342000px;}
.x69{left:472.651500px;}
.xc4{left:473.760000px;}
.x4e{left:475.615500px;}
.xf{left:477.358500px;}
.x6a{left:479.077500px;}
.x1e{left:480.394500px;}
.xbd{left:481.827000px;}
.x119{left:483.729000px;}
.x10{left:484.831500px;}
.x4f{left:490.558500px;}
.x1b{left:492.421500px;}
.x83{left:494.064000px;}
.x1c{left:496.233000px;}
.x1f{left:499.135500px;}
.xca{left:500.796923px;}
.x39{left:503.310000px;}
.x84{left:504.522000px;}
.x54{left:507.249000px;}
.x5f{left:508.328850px;}
.x1d{left:511.176000px;}
.x60{left:512.828850px;}
.x20{left:514.078500px;}
.xf2{left:516.187500px;}
.x3a{left:518.253000px;}
.x15{left:519.643500px;}
.x3f{left:520.677000px;}
.x53{left:522.006586px;}
.x11{left:526.983000px;}
.x9c{left:528.706500px;}
.x16{left:530.874000px;}
.xd4{left:532.737000px;}
.x12{left:534.456000px;}
.x40{left:535.621500px;}
.xcb{left:536.874000px;}
.x17{left:538.345500px;}
.x92{left:540.534000px;}
.x13{left:541.837500px;}
.x9d{left:543.651000px;}
.x21{left:545.953500px;}
.x111{left:547.984500px;}
.x14{left:549.309000px;}
.x108{left:551.584500px;}
.x55{left:553.239000px;}
.x18{left:557.049000px;}
.xce{left:558.074033px;}
.x22{left:560.898000px;}
.xbe{left:562.617000px;}
.x23{left:564.679500px;}
.xd5{left:567.195000px;}
.x124{left:568.801500px;}
.xf4{left:570.358500px;}
.x56{left:574.659000px;}
.x11c{left:576.348000px;}
.xbf{left:577.561500px;}
.x24{left:579.622500px;}
.x9e{left:580.623000px;}
.xdd{left:581.902500px;}
.xf5{left:584.076000px;}
.xad{left:588.802500px;}
.x93{left:589.948500px;}
.x80{left:592.821000px;}
.xac{left:594.147000px;}
.xae{left:595.228500px;}
.x11d{left:599.226000px;}
.x94{left:601.066500px;}
.x121{left:603.772500px;}
.x7a{left:605.052000px;}
.x104{left:606.705000px;}
.x47{left:608.380500px;}
.x122{left:610.198500px;}
.x7b{left:611.478000px;}
.x11e{left:614.170500px;}
.x85{left:615.198000px;}
.xb6{left:616.479000px;}
.x128{left:619.164000px;}
.x95{left:620.574000px;}
.x25{left:621.801000px;}
.x48{left:624.346500px;}
.x96{left:627.000000px;}
.x86{left:630.141000px;}
.xb7{left:632.238000px;}
.x106{left:633.537000px;}
.x26{left:636.745500px;}
.xdf{left:639.481500px;}
.xec{left:640.782000px;}
.x129{left:642.768000px;}
.xb8{left:647.025000px;}
.x31{left:648.313500px;}
.x131{left:649.470000px;}
.xe0{left:653.118000px;}
.xc5{left:654.801000px;}
.x19{left:656.724000px;}
.x49{left:658.581000px;}
.xed{left:659.598000px;}
.x32{left:663.258000px;}
.x4a{left:665.007000px;}
.xb9{left:666.259500px;}
.xd7{left:669.531000px;}
.x1a{left:671.668500px;}
.x120{left:673.018500px;}
.x7c{left:675.255000px;}
.x132{left:676.369500px;}
.xd8{left:677.749500px;}
.xba{left:679.191000px;}
.x12d{left:680.431500px;}
.x7d{left:681.681000px;}
.xee{left:684.384000px;}
.x33{left:685.719000px;}
.x6d{left:687.585000px;}
.xa3{left:689.760000px;}
.xc2{left:693.313500px;}
.xfd{left:696.151500px;}
.x103{left:697.590000px;}
.xf6{left:698.853000px;}
.xfa{left:701.949000px;}
.x2b{left:703.575000px;}
.x3b{left:705.406500px;}
.x62{left:707.403000px;}
.xd9{left:709.269000px;}
.xde{left:711.616500px;}
.xfb{left:713.880000px;}
.x87{left:715.980000px;}
.x2c{left:718.519500px;}
.x3c{left:720.349500px;}
.x41{left:722.053500px;}
.x91{left:723.474000px;}
.xda{left:725.235000px;}
.x7{left:726.489000px;}
.x3d{left:727.672500px;}
.xf7{left:728.796000px;}
.xaf{left:730.285500px;}
.x88{left:731.608500px;}
.x6e{left:733.005000px;}
.x8{left:735.640500px;}
.x42{left:736.998000px;}
.x4b{left:738.852000px;}
.x34{left:741.589500px;}
.x3e{left:742.617000px;}
.x7e{left:743.767500px;}
.xb0{left:746.326500px;}
.x10d{left:747.747000px;}
.x7f{left:750.193500px;}
.x63{left:751.900500px;}
.x6f{left:753.010500px;}
.x10c{left:754.443000px;}
.x43{left:755.752500px;}
.x45{left:757.066500px;}
.x4c{left:758.568000px;}
.x109{left:760.692000px;}
.x64{left:761.721000px;}
.xf3{left:765.529500px;}
.x11a{left:767.041500px;}
.x70{left:769.293000px;}
.x44{left:770.523000px;}
.x46{left:772.011000px;}
.x133{left:774.360000px;}
.x89{left:777.171000px;}
.x65{left:779.517000px;}
.x107{left:782.629500px;}
.x8d{left:783.781500px;}
.x66{left:785.314500px;}
.xb1{left:786.744000px;}
.x71{left:789.915000px;}
.xc6{left:791.683500px;}
.x8e{left:794.899500px;}
.x117{left:796.582500px;}
.xb2{left:800.058000px;}
.x72{left:801.712500px;}
.x125{left:803.446500px;}
.x10e{left:805.183500px;}
.xb3{left:806.484000px;}
.xf8{left:807.910500px;}
.x130{left:809.128500px;}
.x110{left:810.361500px;}
.x8f{left:814.705500px;}
.x81{left:816.951000px;}
.xe8{left:818.893500px;}
.x90{left:821.131500px;}
.x73{left:822.336000px;}
.xf9{left:824.049000px;}
.xe1{left:825.621000px;}
.x74{left:832.488000px;}
.xe9{left:833.838000px;}
.xc7{left:835.770000px;}
.x12e{left:837.222000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v7{vertical-align:-14.380800pt;}
.vb{vertical-align:-12.633600pt;}
.v5{vertical-align:-10.938667pt;}
.v4{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.322667pt;}
.v8{vertical-align:11.423093pt;}
.va{vertical-align:12.766987pt;}
.v6{vertical-align:14.380800pt;}
.v9{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.vc{vertical-align:35.973333pt;}
.ls60{letter-spacing:-0.323568pt;}
.ls2a{letter-spacing:-0.297600pt;}
.lsc9{letter-spacing:-0.284256pt;}
.lsca{letter-spacing:-0.275232pt;}
.ls61{letter-spacing:-0.241392pt;}
.ls39{letter-spacing:-0.235136pt;}
.lsd7{letter-spacing:-0.226051pt;}
.ls2b{letter-spacing:-0.225600pt;}
.ls2c{letter-spacing:-0.201600pt;}
.ls2f{letter-spacing:-0.156800pt;}
.ls2e{letter-spacing:-0.149632pt;}
.ls27{letter-spacing:-0.144288pt;}
.lsd6{letter-spacing:-0.140654pt;}
.lscf{letter-spacing:-0.130607pt;}
.lse2{letter-spacing:-0.120561pt;}
.lsdb{letter-spacing:-0.115537pt;}
.ls31{letter-spacing:-0.112224pt;}
.lsdd{letter-spacing:-0.110514pt;}
.lsa5{letter-spacing:-0.109440pt;}
.lsce{letter-spacing:-0.100467pt;}
.ls9a{letter-spacing:-0.097920pt;}
.ls26{letter-spacing:-0.096192pt;}
.lse0{letter-spacing:-0.095444pt;}
.lsd5{letter-spacing:-0.090420pt;}
.lse4{letter-spacing:-0.080374pt;}
.lsd8{letter-spacing:-0.075350pt;}
.lsd2{letter-spacing:-0.070327pt;}
.ls28{letter-spacing:-0.069472pt;}
.ls2d{letter-spacing:-0.067200pt;}
.ls66{letter-spacing:-0.066768pt;}
.ls34{letter-spacing:-0.064128pt;}
.lsa0{letter-spacing:-0.063840pt;}
.lsda{letter-spacing:-0.063168pt;}
.lscb{letter-spacing:-0.058656pt;}
.ls95{letter-spacing:-0.057120pt;}
.ls38{letter-spacing:-0.048096pt;}
.lscd{letter-spacing:-0.045120pt;}
.ls36{letter-spacing:-0.042752pt;}
.ls65{letter-spacing:-0.041088pt;}
.ls9c{letter-spacing:-0.041040pt;}
.lse1{letter-spacing:-0.040187pt;}
.ls24{letter-spacing:-0.037408pt;}
.ls91{letter-spacing:-0.036720pt;}
.ls37{letter-spacing:-0.032064pt;}
.ls9b{letter-spacing:-0.031920pt;}
.lsd0{letter-spacing:-0.030140pt;}
.ls90{letter-spacing:-0.028560pt;}
.ls9d{letter-spacing:-0.027360pt;}
.ls67{letter-spacing:-0.025680pt;}
.lsd4{letter-spacing:-0.025117pt;}
.ls92{letter-spacing:-0.024480pt;}
.lsa2{letter-spacing:-0.022800pt;}
.ls97{letter-spacing:-0.020400pt;}
.lse5{letter-spacing:-0.020093pt;}
.lsa1{letter-spacing:-0.018240pt;}
.lsc7{letter-spacing:-0.018048pt;}
.ls96{letter-spacing:-0.016320pt;}
.ls33{letter-spacing:-0.016032pt;}
.ls64{letter-spacing:-0.015408pt;}
.lsde{letter-spacing:-0.015070pt;}
.ls9e{letter-spacing:-0.013680pt;}
.ls93{letter-spacing:-0.012240pt;}
.ls35{letter-spacing:-0.010688pt;}
.ls62{letter-spacing:-0.010272pt;}
.lsdf{letter-spacing:-0.010047pt;}
.lsa3{letter-spacing:-0.009120pt;}
.ls98{letter-spacing:-0.008160pt;}
.ls25{letter-spacing:-0.005344pt;}
.ls63{letter-spacing:-0.005136pt;}
.lsd9{letter-spacing:-0.005023pt;}
.lsa4{letter-spacing:-0.004560pt;}
.lscc{letter-spacing:-0.004512pt;}
.ls99{letter-spacing:-0.004080pt;}
.ls4{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.000129pt;}
.lsc1{letter-spacing:0.000387pt;}
.lseb{letter-spacing:0.000477pt;}
.ls104{letter-spacing:0.000503pt;}
.ls4c{letter-spacing:0.000518pt;}
.ls102{letter-spacing:0.000711pt;}
.ls109{letter-spacing:0.001158pt;}
.ls77{letter-spacing:0.001360pt;}
.ls8c{letter-spacing:0.001520pt;}
.ls107{letter-spacing:0.002038pt;}
.lsf7{letter-spacing:0.002385pt;}
.lsfe{letter-spacing:0.002525pt;}
.ls3f{letter-spacing:0.003705pt;}
.ls105{letter-spacing:0.003963pt;}
.ls6c{letter-spacing:0.004080pt;}
.ls10c{letter-spacing:0.004267pt;}
.lsb4{letter-spacing:0.004512pt;}
.ls81{letter-spacing:0.004560pt;}
.lsb7{letter-spacing:0.005023pt;}
.ls5b{letter-spacing:0.005136pt;}
.ls20{letter-spacing:0.005344pt;}
.ls74{letter-spacing:0.008160pt;}
.lsaa{letter-spacing:0.009024pt;}
.ls89{letter-spacing:0.009120pt;}
.ls1a{letter-spacing:0.009600pt;}
.ls57{letter-spacing:0.010272pt;}
.lsb{letter-spacing:0.010688pt;}
.ls75{letter-spacing:0.012240pt;}
.lsab{letter-spacing:0.013536pt;}
.ls8a{letter-spacing:0.013680pt;}
.ls15{letter-spacing:0.014400pt;}
.ls5c{letter-spacing:0.015408pt;}
.lsd{letter-spacing:0.016032pt;}
.ls70{letter-spacing:0.016320pt;}
.ls85{letter-spacing:0.018240pt;}
.ls72{letter-spacing:0.020400pt;}
.ls5d{letter-spacing:0.020544pt;}
.lsf{letter-spacing:0.021376pt;}
.lsb9{letter-spacing:0.022289pt;}
.ls87{letter-spacing:0.022800pt;}
.ls1d{letter-spacing:0.024000pt;}
.ls6e{letter-spacing:0.024480pt;}
.lsbb{letter-spacing:0.025117pt;}
.ls6a{letter-spacing:0.025323pt;}
.ls55{letter-spacing:0.025680pt;}
.ls13{letter-spacing:0.026720pt;}
.lsad{letter-spacing:0.027072pt;}
.ls83{letter-spacing:0.027360pt;}
.lsa8{letter-spacing:0.028004pt;}
.ls7f{letter-spacing:0.028302pt;}
.ls76{letter-spacing:0.028560pt;}
.ls56{letter-spacing:0.030816pt;}
.lsb5{letter-spacing:0.031584pt;}
.ls53{letter-spacing:0.031877pt;}
.ls8b{letter-spacing:0.031920pt;}
.ls10{letter-spacing:0.032064pt;}
.ls68{letter-spacing:0.032558pt;}
.ls78{letter-spacing:0.032640pt;}
.ls16{letter-spacing:0.033600pt;}
.lsbd{letter-spacing:0.035164pt;}
.ls59{letter-spacing:0.035952pt;}
.lsa6{letter-spacing:0.036006pt;}
.lsb0{letter-spacing:0.036096pt;}
.ls7d{letter-spacing:0.036389pt;}
.ls8d{letter-spacing:0.036480pt;}
.ls71{letter-spacing:0.036720pt;}
.ls9{letter-spacing:0.038304pt;}
.lsb3{letter-spacing:0.040608pt;}
.ls79{letter-spacing:0.040800pt;}
.ls51{letter-spacing:0.040985pt;}
.ls86{letter-spacing:0.041040pt;}
.ls1e{letter-spacing:0.042752pt;}
.ls19{letter-spacing:0.043200pt;}
.lsae{letter-spacing:0.045120pt;}
.lsbe{letter-spacing:0.045210pt;}
.ls8e{letter-spacing:0.045600pt;}
.ls5a{letter-spacing:0.046224pt;}
.ls7{letter-spacing:0.046816pt;}
.ls12{letter-spacing:0.048096pt;}
.ls7a{letter-spacing:0.048960pt;}
.lsb1{letter-spacing:0.049632pt;}
.ls94{letter-spacing:0.050048pt;}
.ls18{letter-spacing:0.052800pt;}
.ls3a{letter-spacing:0.053440pt;}
.ls8f{letter-spacing:0.054720pt;}
.lsc8{letter-spacing:0.055347pt;}
.ls9f{letter-spacing:0.055936pt;}
.ls14{letter-spacing:0.058784pt;}
.lsbc{letter-spacing:0.060280pt;}
.ls5e{letter-spacing:0.061632pt;}
.ls17{letter-spacing:0.064768pt;}
.ls73{letter-spacing:0.069360pt;}
.lse{letter-spacing:0.069472pt;}
.lsdc{letter-spacing:0.070327pt;}
.lsba{letter-spacing:0.075350pt;}
.lsac{letter-spacing:0.076704pt;}
.ls88{letter-spacing:0.077520pt;}
.ls1f{letter-spacing:0.080160pt;}
.lse3{letter-spacing:0.085397pt;}
.lsc{letter-spacing:0.085504pt;}
.ls29{letter-spacing:0.086400pt;}
.ls58{letter-spacing:0.087312pt;}
.ls6f{letter-spacing:0.093840pt;}
.lsaf{letter-spacing:0.103776pt;}
.ls84{letter-spacing:0.104880pt;}
.lsb2{letter-spacing:0.121824pt;}
.ls1b{letter-spacing:0.124800pt;}
.ls6b{letter-spacing:0.130234pt;}
.ls69{letter-spacing:0.137469pt;}
.ls1c{letter-spacing:0.139200pt;}
.lsa9{letter-spacing:0.144023pt;}
.ls80{letter-spacing:0.145555pt;}
.lsb8{letter-spacing:0.150701pt;}
.lsb6{letter-spacing:0.150821pt;}
.lsa7{letter-spacing:0.152024pt;}
.ls7e{letter-spacing:0.153642pt;}
.lsa{letter-spacing:0.161728pt;}
.ls54{letter-spacing:0.163941pt;}
.ls8{letter-spacing:0.170240pt;}
.ls11{letter-spacing:0.171008pt;}
.ls52{letter-spacing:0.173049pt;}
.ls4b{letter-spacing:0.482502pt;}
.ls3e{letter-spacing:0.487835pt;}
.ls7b{letter-spacing:0.578745pt;}
.lsd3{letter-spacing:0.678154pt;}
.ls49{letter-spacing:1.249067pt;}
.ls48{letter-spacing:1.254400pt;}
.ls21{letter-spacing:2.619200pt;}
.ls7c{letter-spacing:2.656533pt;}
.ls50{letter-spacing:2.657067pt;}
.ls47{letter-spacing:2.715733pt;}
.lsd1{letter-spacing:3.084343pt;}
.ls6d{letter-spacing:3.129360pt;}
.ls5f{letter-spacing:3.253867pt;}
.ls3b{letter-spacing:3.318400pt;}
.ls23{letter-spacing:3.323733pt;}
.ls82{letter-spacing:3.497520pt;}
.ls32{letter-spacing:5.525696pt;}
.ls0{letter-spacing:9.298933pt;}
.ls3{letter-spacing:10.626533pt;}
.lsfc{letter-spacing:10.907385pt;}
.lsfd{letter-spacing:11.201263pt;}
.ls10e{letter-spacing:11.326433pt;}
.lse7{letter-spacing:11.370647pt;}
.lsbf{letter-spacing:11.496403pt;}
.ls45{letter-spacing:11.583183pt;}
.ls46{letter-spacing:11.636317pt;}
.ls10f{letter-spacing:11.663101pt;}
.lsf6{letter-spacing:11.799012pt;}
.ls106{letter-spacing:11.824568pt;}
.lsf8{letter-spacing:11.853565pt;}
.ls30{letter-spacing:11.927808pt;}
.lsf4{letter-spacing:11.954133pt;}
.lsf5{letter-spacing:11.959467pt;}
.lsf9{letter-spacing:11.975328pt;}
.lsfa{letter-spacing:11.975605pt;}
.ls43{letter-spacing:12.012659pt;}
.ls103{letter-spacing:12.013427pt;}
.ls108{letter-spacing:12.015319pt;}
.ls44{letter-spacing:12.018101pt;}
.ls10b{letter-spacing:12.063560pt;}
.ls10a{letter-spacing:12.085163pt;}
.ls5{letter-spacing:12.199236pt;}
.ls6{letter-spacing:12.286400pt;}
.ls4a{letter-spacing:12.584087pt;}
.ls101{letter-spacing:12.646107pt;}
.lsc6{letter-spacing:13.009040pt;}
.lsc5{letter-spacing:13.014019pt;}
.ls40{letter-spacing:13.081130pt;}
.lse8{letter-spacing:13.280915pt;}
.lse9{letter-spacing:13.281024pt;}
.lsee{letter-spacing:13.283733pt;}
.ls41{letter-spacing:13.286547pt;}
.ls22{letter-spacing:13.332882pt;}
.ls42{letter-spacing:13.482525pt;}
.lse6{letter-spacing:13.563786pt;}
.lsff{letter-spacing:13.660486pt;}
.ls4d{letter-spacing:13.923096pt;}
.ls100{letter-spacing:14.042186pt;}
.lsf2{letter-spacing:14.429762pt;}
.lsf3{letter-spacing:14.604489pt;}
.ls10d{letter-spacing:14.993820pt;}
.lsef{letter-spacing:15.249420pt;}
.lsc0{letter-spacing:15.535027pt;}
.lsfb{letter-spacing:15.872251pt;}
.lsea{letter-spacing:15.916727pt;}
.ls4e{letter-spacing:15.937067pt;}
.lsc2{letter-spacing:15.942400pt;}
.ls3c{letter-spacing:16.042550pt;}
.lsf1{letter-spacing:16.061762pt;}
.ls3d{letter-spacing:16.063132pt;}
.lsf0{letter-spacing:16.086778pt;}
.lsec{letter-spacing:19.467054pt;}
.lsed{letter-spacing:19.471465pt;}
.lsc3{letter-spacing:20.685354pt;}
.lsc4{letter-spacing:20.689766pt;}
.ls1{letter-spacing:55.787733pt;}
.ls2{letter-spacing:57.174803pt;}
.ws21e{word-spacing:-36.071229pt;}
.ws1b5{word-spacing:-28.532886pt;}
.ws4a{word-spacing:-13.531008pt;}
.ws50{word-spacing:-13.392064pt;}
.ws4b{word-spacing:-13.360000pt;}
.ws47{word-spacing:-13.283467pt;}
.ws51{word-spacing:-13.124864pt;}
.wsb5{word-spacing:-12.927312pt;}
.wsb6{word-spacing:-12.840000pt;}
.wsb8{word-spacing:-12.814320pt;}
.wsb7{word-spacing:-12.773232pt;}
.ws14a{word-spacing:-12.558400pt;}
.wsb4{word-spacing:-12.516432pt;}
.ws4d{word-spacing:-12.052800pt;}
.ws4e{word-spacing:-12.009600pt;}
.ws54{word-spacing:-11.955200pt;}
.wsb1{word-spacing:-11.557849pt;}
.wsf0{word-spacing:-11.477520pt;}
.wsee{word-spacing:-11.436480pt;}
.wsf2{word-spacing:-11.418240pt;}
.wsf1{word-spacing:-11.409120pt;}
.wsec{word-spacing:-11.400000pt;}
.wsb2{word-spacing:-11.384800pt;}
.ws147{word-spacing:-11.356704pt;}
.ws148{word-spacing:-11.280000pt;}
.ws145{word-spacing:-10.995744pt;}
.ws48{word-spacing:-10.810240pt;}
.ws49{word-spacing:-10.640000pt;}
.ws2b{word-spacing:-10.626800pt;}
.wse3{word-spacing:-10.269360pt;}
.wsea{word-spacing:-10.261642pt;}
.wse1{word-spacing:-10.232640pt;}
.wse5{word-spacing:-10.216320pt;}
.wse4{word-spacing:-10.208160pt;}
.wsdf{word-spacing:-10.200000pt;}
.ws142{word-spacing:-10.153624pt;}
.wseb{word-spacing:-10.108000pt;}
.wsf{word-spacing:-10.095467pt;}
.ws143{word-spacing:-10.001600pt;}
.ws4{word-spacing:-9.298400pt;}
.wsdd{word-spacing:-9.181469pt;}
.wsde{word-spacing:-9.044000pt;}
.wsb3{word-spacing:-7.875200pt;}
.ws4f{word-spacing:-7.843200pt;}
.ws149{word-spacing:-7.520000pt;}
.ws14b{word-spacing:-7.456832pt;}
.ws4c{word-spacing:-7.424768pt;}
.wsed{word-spacing:-7.047936pt;}
.wsef{word-spacing:-6.992000pt;}
.ws144{word-spacing:-6.973747pt;}
.ws146{word-spacing:-6.918400pt;}
.wse0{word-spacing:-6.306048pt;}
.wse2{word-spacing:-6.256000pt;}
.ws217{word-spacing:-3.777843pt;}
.ws1c3{word-spacing:-3.028630pt;}
.ws3a{word-spacing:-2.922363pt;}
.ws218{word-spacing:-2.917069pt;}
.ws1c2{word-spacing:-2.762961pt;}
.ws9c{word-spacing:-2.550426pt;}
.ws1cf{word-spacing:-2.534502pt;}
.ws3b{word-spacing:-2.284756pt;}
.ws1af{word-spacing:-2.178489pt;}
.ws1b0{word-spacing:-2.172035pt;}
.ws1b8{word-spacing:-2.125355pt;}
.wsa4{word-spacing:-2.072221pt;}
.wse6{word-spacing:-2.056294pt;}
.ws59{word-spacing:-2.019087pt;}
.wsa6{word-spacing:-1.965953pt;}
.wsbb{word-spacing:-1.960653pt;}
.wsa5{word-spacing:-1.912819pt;}
.wse7{word-spacing:-1.865011pt;}
.wsa2{word-spacing:-1.859685pt;}
.ws3d{word-spacing:-1.806551pt;}
.ws9a{word-spacing:-1.753418pt;}
.ws91{word-spacing:-1.700284pt;}
.wsf7{word-spacing:-1.673728pt;}
.wsa3{word-spacing:-1.647150pt;}
.ws222{word-spacing:-1.625907pt;}
.ws9e{word-spacing:-1.594016pt;}
.ws225{word-spacing:-1.578086pt;}
.ws1a6{word-spacing:-1.487748pt;}
.ws219{word-spacing:-1.482445pt;}
.ws1ce{word-spacing:-1.434624pt;}
.ws2e{word-spacing:-1.434614pt;}
.ws1d1{word-spacing:-1.386803pt;}
.ws1a2{word-spacing:-1.381481pt;}
.ws210{word-spacing:-1.338982pt;}
.ws1c5{word-spacing:-1.328347pt;}
.wsa0{word-spacing:-1.275213pt;}
.wsa1{word-spacing:-1.263593pt;}
.wsd9{word-spacing:-1.258320pt;}
.wsca{word-spacing:-1.242912pt;}
.wsc9{word-spacing:-1.232640pt;}
.ws1a5{word-spacing:-1.222079pt;}
.wsd8{word-spacing:-1.217232pt;}
.ws41{word-spacing:-1.168945pt;}
.ws46{word-spacing:-1.115811pt;}
.ws44{word-spacing:-1.092923pt;}
.ws45{word-spacing:-1.084446pt;}
.wsb0{word-spacing:-1.062677pt;}
.ws1f0{word-spacing:-1.052058pt;}
.ws5{word-spacing:-1.041421pt;}
.ws38{word-spacing:-1.009543pt;}
.ws53{word-spacing:-1.004237pt;}
.ws98{word-spacing:-0.956410pt;}
.ws7{word-spacing:-0.929840pt;}
.ws6f{word-spacing:-0.924512pt;}
.ws55{word-spacing:-0.908595pt;}
.ws1a8{word-spacing:-0.903276pt;}
.ws58{word-spacing:-0.901811pt;}
.ws56{word-spacing:-0.898748pt;}
.ws57{word-spacing:-0.896478pt;}
.wsda{word-spacing:-0.893664pt;}
.ws6e{word-spacing:-0.887104pt;}
.wsdb{word-spacing:-0.878256pt;}
.ws1ee{word-spacing:-0.860774pt;}
.ws2f{word-spacing:-0.850142pt;}
.ws13d{word-spacing:-0.807120pt;}
.ws1a4{word-spacing:-0.797008pt;}
.ws13e{word-spacing:-0.779760pt;}
.ws1d2{word-spacing:-0.765133pt;}
.ws13c{word-spacing:-0.756960pt;}
.ws197{word-spacing:-0.743874pt;}
.wsa8{word-spacing:-0.722388pt;}
.ws119{word-spacing:-0.722160pt;}
.wsf9{word-spacing:-0.717312pt;}
.ws11a{word-spacing:-0.697680pt;}
.wsa9{word-spacing:-0.690740pt;}
.ws118{word-spacing:-0.677280pt;}
.ws14c{word-spacing:-0.621670pt;}
.wsd6{word-spacing:-0.544416pt;}
.ws1b6{word-spacing:-0.531339pt;}
.ws1d0{word-spacing:-0.526029pt;}
.wsd7{word-spacing:-0.518736pt;}
.ws196{word-spacing:-0.491003pt;}
.ws14e{word-spacing:-0.478208pt;}
.ws195{word-spacing:-0.478205pt;}
.ws167{word-spacing:-0.446688pt;}
.wsf8{word-spacing:-0.442964pt;}
.ws19{word-spacing:-0.430387pt;}
.ws19d{word-spacing:-0.425071pt;}
.ws1da{word-spacing:-0.382566pt;}
.ws17c{word-spacing:-0.376752pt;}
.wsf5{word-spacing:-0.334746pt;}
.ws63{word-spacing:-0.320640pt;}
.ws19b{word-spacing:-0.318803pt;}
.ws71{word-spacing:-0.293920pt;}
.ws209{word-spacing:-0.286925pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws70{word-spacing:-0.261856pt;}
.wsc1{word-spacing:-0.259573pt;}
.wsc3{word-spacing:-0.250466pt;}
.ws5f{word-spacing:-0.246848pt;}
.wsf6{word-spacing:-0.239104pt;}
.ws61{word-spacing:-0.238336pt;}
.ws11e{word-spacing:-0.230462pt;}
.ws159{word-spacing:-0.228036pt;}
.ws82{word-spacing:-0.224448pt;}
.ws120{word-spacing:-0.222376pt;}
.ws15b{word-spacing:-0.220035pt;}
.ws28{word-spacing:-0.212535pt;}
.wsfa{word-spacing:-0.206203pt;}
.wsfc{word-spacing:-0.198968pt;}
.ws178{word-spacing:-0.195911pt;}
.ws85{word-spacing:-0.192384pt;}
.ws15{word-spacing:-0.191283pt;}
.ws1aa{word-spacing:-0.159738pt;}
.ws1e{word-spacing:-0.159402pt;}
.ws17a{word-spacing:-0.150701pt;}
.ws16{word-spacing:-0.143462pt;}
.wsc2{word-spacing:-0.118402pt;}
.ws60{word-spacing:-0.114912pt;}
.ws29{word-spacing:-0.106268pt;}
.ws11f{word-spacing:-0.105123pt;}
.ws15a{word-spacing:-0.104017pt;}
.wsbd{word-spacing:-0.095642pt;}
.wsfb{word-spacing:-0.094058pt;}
.ws179{word-spacing:-0.085397pt;}
.ws24{word-spacing:-0.053134pt;}
.wsbe{word-spacing:-0.047821pt;}
.ws198{word-spacing:-0.042078pt;}
.ws221{word-spacing:-0.026453pt;}
.ws1e2{word-spacing:-0.006340pt;}
.ws22d{word-spacing:-0.006067pt;}
.ws1de{word-spacing:-0.005623pt;}
.ws211{word-spacing:-0.005274pt;}
.ws1ed{word-spacing:-0.005137pt;}
.ws21d{word-spacing:-0.003746pt;}
.ws1f7{word-spacing:-0.003174pt;}
.ws2a{word-spacing:-0.001460pt;}
.ws1f5{word-spacing:-0.001033pt;}
.ws201{word-spacing:-0.000717pt;}
.ws229{word-spacing:-0.000495pt;}
.ws1{word-spacing:0.000000pt;}
.ws199{word-spacing:0.000688pt;}
.ws3{word-spacing:0.002217pt;}
.ws52{word-spacing:0.047821pt;}
.ws39{word-spacing:0.053134pt;}
.ws62{word-spacing:0.074816pt;}
.ws17b{word-spacing:0.080374pt;}
.ws11b{word-spacing:0.085680pt;}
.ws81{word-spacing:0.090848pt;}
.wse9{word-spacing:0.095642pt;}
.ws13f{word-spacing:0.095760pt;}
.ws11d{word-spacing:0.106080pt;}
.ws20{word-spacing:0.106268pt;}
.ws1ba{word-spacing:0.110060pt;}
.ws106{word-spacing:0.114240pt;}
.ws141{word-spacing:0.118560pt;}
.ws10c{word-spacing:0.122400pt;}
.ws10{word-spacing:0.127522pt;}
.ws12a{word-spacing:0.127680pt;}
.ws130{word-spacing:0.136800pt;}
.ws1c{word-spacing:0.143462pt;}
.wsdc{word-spacing:0.143808pt;}
.ws72{word-spacing:0.154976pt;}
.ws22{word-spacing:0.159402pt;}
.ws17d{word-spacing:0.190888pt;}
.wsbc{word-spacing:0.191283pt;}
.ws9d{word-spacing:0.191534pt;}
.ws21{word-spacing:0.212535pt;}
.ws175{word-spacing:0.226051pt;}
.ws11c{word-spacing:0.232560pt;}
.wse8{word-spacing:0.239104pt;}
.ws140{word-spacing:0.259920pt;}
.ws31{word-spacing:0.265669pt;}
.ws1e3{word-spacing:0.286925pt;}
.ws26{word-spacing:0.318803pt;}
.ws3c{word-spacing:0.371937pt;}
.ws8d{word-spacing:0.374080pt;}
.ws17{word-spacing:0.382566pt;}
.ws8c{word-spacing:0.411488pt;}
.ws37{word-spacing:0.425071pt;}
.wsd1{word-spacing:0.426288pt;}
.ws75{word-spacing:0.441600pt;}
.ws76{word-spacing:0.470400pt;}
.ws78{word-spacing:0.475200pt;}
.ws93{word-spacing:0.478205pt;}
.ws1e7{word-spacing:0.478208pt;}
.wsd0{word-spacing:0.493056pt;}
.wscf{word-spacing:0.508464pt;}
.ws13{word-spacing:0.526029pt;}
.wsce{word-spacing:0.529008pt;}
.ws1ac{word-spacing:0.531339pt;}
.ws1ab{word-spacing:0.584473pt;}
.wsc0{word-spacing:0.621670pt;}
.ws96{word-spacing:0.637606pt;}
.wsaa{word-spacing:0.662210pt;}
.ws200{word-spacing:0.669491pt;}
.ws79{word-spacing:0.686400pt;}
.ws43{word-spacing:0.690740pt;}
.ws176{word-spacing:0.703270pt;}
.ws77{word-spacing:0.710400pt;}
.ws36{word-spacing:0.743874pt;}
.ws177{word-spacing:0.768574pt;}
.ws19a{word-spacing:0.797008pt;}
.ws202{word-spacing:0.812954pt;}
.ws214{word-spacing:0.860774pt;}
.ws6{word-spacing:0.892646pt;}
.ws1a9{word-spacing:0.903276pt;}
.ws1a1{word-spacing:0.956410pt;}
.ws204{word-spacing:0.956416pt;}
.wsad{word-spacing:1.009543pt;}
.ws161{word-spacing:1.024224pt;}
.ws162{word-spacing:1.042272pt;}
.ws212{word-spacing:1.052058pt;}
.ws157{word-spacing:1.062677pt;}
.ws1d4{word-spacing:1.099878pt;}
.ws1c7{word-spacing:1.115811pt;}
.ws215{word-spacing:1.147699pt;}
.wsd2{word-spacing:1.150464pt;}
.ws27{word-spacing:1.168945pt;}
.ws206{word-spacing:1.195520pt;}
.wsd3{word-spacing:1.201824pt;}
.ws190{word-spacing:1.230723pt;}
.ws14d{word-spacing:1.243341pt;}
.ws19f{word-spacing:1.275213pt;}
.ws184{word-spacing:1.285980pt;}
.ws18f{word-spacing:1.316120pt;}
.ws99{word-spacing:1.328347pt;}
.ws1f9{word-spacing:1.338982pt;}
.ws16a{word-spacing:1.344576pt;}
.ws16b{word-spacing:1.358112pt;}
.ws185{word-spacing:1.371377pt;}
.ws18{word-spacing:1.434624pt;}
.ws1a{word-spacing:1.482445pt;}
.ws90{word-spacing:1.487748pt;}
.wsd5{word-spacing:1.535664pt;}
.ws1f6{word-spacing:1.578086pt;}
.wsd4{word-spacing:1.581888pt;}
.ws18c{word-spacing:1.617522pt;}
.ws1fb{word-spacing:1.625907pt;}
.ws18d{word-spacing:1.697896pt;}
.ws2d{word-spacing:1.700284pt;}
.ws1ae{word-spacing:1.707302pt;}
.ws10f{word-spacing:1.746240pt;}
.ws1b9{word-spacing:1.753418pt;}
.ws10e{word-spacing:1.762560pt;}
.ws10d{word-spacing:1.774800pt;}
.ws68{word-spacing:1.779552pt;}
.ws5a{word-spacing:1.806551pt;}
.ws69{word-spacing:1.827648pt;}
.ws1e4{word-spacing:1.865011pt;}
.wscd{word-spacing:1.869504pt;}
.wscc{word-spacing:1.879776pt;}
.wscb{word-spacing:1.890048pt;}
.ws1a7{word-spacing:1.912819pt;}
.ws16c{word-spacing:1.949184pt;}
.ws133{word-spacing:1.951680pt;}
.ws1b4{word-spacing:1.965953pt;}
.ws132{word-spacing:1.969920pt;}
.ws131{word-spacing:1.983600pt;}
.ws88{word-spacing:1.998656pt;}
.ws16d{word-spacing:1.998816pt;}
.ws1e5{word-spacing:2.008474pt;}
.ws9b{word-spacing:2.019087pt;}
.ws89{word-spacing:2.046752pt;}
.wsba{word-spacing:2.056294pt;}
.ws1bd{word-spacing:2.072221pt;}
.wsab{word-spacing:2.178489pt;}
.ws2{word-spacing:2.230014pt;}
.ws3f{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws87{word-spacing:2.244480pt;}
.ws14f{word-spacing:2.252796pt;}
.ws66{word-spacing:2.255168pt;}
.ws35{word-spacing:2.284756pt;}
.ws116{word-spacing:2.292960pt;}
.ws115{word-spacing:2.305200pt;}
.ws117{word-spacing:2.329680pt;}
.ws67{word-spacing:2.329984pt;}
.wsb9{word-spacing:2.343219pt;}
.ws86{word-spacing:2.356704pt;}
.ws65{word-spacing:2.362048pt;}
.ws226{word-spacing:2.391040pt;}
.ws25{word-spacing:2.444158pt;}
.ws187{word-spacing:2.446376pt;}
.ws183{word-spacing:2.456423pt;}
.ws23{word-spacing:2.550426pt;}
.ws13a{word-spacing:2.562720pt;}
.ws8b{word-spacing:2.565120pt;}
.ws139{word-spacing:2.576400pt;}
.ws1b{word-spacing:2.582323pt;}
.ws8e{word-spacing:2.591840pt;}
.ws1a3{word-spacing:2.603559pt;}
.ws13b{word-spacing:2.603760pt;}
.wsfe{word-spacing:2.611200pt;}
.wsff{word-spacing:2.619360pt;}
.ws1ef{word-spacing:2.630144pt;}
.ws12{word-spacing:2.677965pt;}
.ws94{word-spacing:2.762961pt;}
.ws1e6{word-spacing:2.773606pt;}
.ws97{word-spacing:2.784426pt;}
.ws1c4{word-spacing:2.816095pt;}
.ws1f1{word-spacing:2.821427pt;}
.ws103{word-spacing:2.831520pt;}
.ws104{word-spacing:2.839680pt;}
.ws203{word-spacing:2.859725pt;}
.ws1fe{word-spacing:2.860177pt;}
.ws1ea{word-spacing:2.862413pt;}
.ws223{word-spacing:2.862430pt;}
.ws20b{word-spacing:2.862532pt;}
.ws1dc{word-spacing:2.862592pt;}
.ws22a{word-spacing:2.862797pt;}
.ws20f{word-spacing:2.862899pt;}
.ws1ec{word-spacing:2.863804pt;}
.ws1e9{word-spacing:2.864000pt;}
.ws22c{word-spacing:2.864265pt;}
.ws20c{word-spacing:2.864836pt;}
.ws207{word-spacing:2.864845pt;}
.ws208{word-spacing:2.864956pt;}
.ws1e8{word-spacing:2.865058pt;}
.ws21b{word-spacing:2.865118pt;}
.ws216{word-spacing:2.865186pt;}
.ws1f4{word-spacing:2.865835pt;}
.ws213{word-spacing:2.866074pt;}
.ws1db{word-spacing:2.866517pt;}
.ws205{word-spacing:2.867174pt;}
.ws1df{word-spacing:2.867575pt;}
.ws21f{word-spacing:2.868130pt;}
.ws1e1{word-spacing:2.868471pt;}
.ws224{word-spacing:2.868958pt;}
.ws22e{word-spacing:2.869197pt;}
.ws1f{word-spacing:2.869229pt;}
.ws1dd{word-spacing:2.869248pt;}
.ws122{word-spacing:2.918400pt;}
.ws33{word-spacing:2.922363pt;}
.ws123{word-spacing:2.927520pt;}
.ws173{word-spacing:2.933642pt;}
.ws1d8{word-spacing:2.964890pt;}
.ws8a{word-spacing:3.003328pt;}
.ws1f2{word-spacing:3.012710pt;}
.ws1ca{word-spacing:3.028630pt;}
.ws228{word-spacing:3.060531pt;}
.ws150{word-spacing:3.081764pt;}
.ws1d3{word-spacing:3.108352pt;}
.ws166{word-spacing:3.108768pt;}
.ws172{word-spacing:3.114483pt;}
.ws165{word-spacing:3.122304pt;}
.wsfd{word-spacing:3.125280pt;}
.ws30{word-spacing:3.134898pt;}
.ws174{word-spacing:3.154670pt;}
.ws127{word-spacing:3.164640pt;}
.ws128{word-spacing:3.173760pt;}
.ws1d{word-spacing:3.188032pt;}
.ws1bf{word-spacing:3.294300pt;}
.ws5d{word-spacing:3.347434pt;}
.ws11{word-spacing:3.347456pt;}
.ws105{word-spacing:3.361920pt;}
.ws1d5{word-spacing:3.395277pt;}
.ws32{word-spacing:3.400567pt;}
.ws163{word-spacing:3.415584pt;}
.ws21c{word-spacing:3.443098pt;}
.wsae{word-spacing:3.453701pt;}
.ws121{word-spacing:3.492960pt;}
.ws95{word-spacing:3.506835pt;}
.ws164{word-spacing:3.519360pt;}
.ws14{word-spacing:3.538739pt;}
.ws5b{word-spacing:3.559969pt;}
.wsc6{word-spacing:3.584928pt;}
.ws6b{word-spacing:3.591168pt;}
.wsc8{word-spacing:3.605472pt;}
.ws6c{word-spacing:3.607200pt;}
.ws3e{word-spacing:3.613103pt;}
.ws7f{word-spacing:3.623232pt;}
.ws1e0{word-spacing:3.634381pt;}
.ws152{word-spacing:3.666237pt;}
.ws80{word-spacing:3.671328pt;}
.ws129{word-spacing:3.757440pt;}
.ws1c1{word-spacing:3.825638pt;}
.ws1f8{word-spacing:3.825664pt;}
.wsc7{word-spacing:3.836592pt;}
.ws1c0{word-spacing:3.878772pt;}
.ws180{word-spacing:3.913197pt;}
.ws1eb{word-spacing:3.921306pt;}
.ws83{word-spacing:3.927840pt;}
.ws151{word-spacing:3.931906pt;}
.ws1fd{word-spacing:3.969126pt;}
.ws1b3{word-spacing:4.091308pt;}
.ws111{word-spacing:4.186080pt;}
.ws112{word-spacing:4.190160pt;}
.ws110{word-spacing:4.202400pt;}
.wsd{word-spacing:4.240070pt;}
.ws5e{word-spacing:4.250709pt;}
.ws84{word-spacing:4.264512pt;}
.ws194{word-spacing:4.305020pt;}
.wse{word-spacing:4.314458pt;}
.wsa7{word-spacing:4.356977pt;}
.ws193{word-spacing:4.365300pt;}
.ws42{word-spacing:4.410111pt;}
.ws158{word-spacing:4.463245pt;}
.ws170{word-spacing:4.581304pt;}
.ws7a{word-spacing:4.606528pt;}
.ws171{word-spacing:4.616468pt;}
.ws19c{word-spacing:4.622646pt;}
.ws19e{word-spacing:4.675780pt;}
.ws135{word-spacing:4.678560pt;}
.ws136{word-spacing:4.683120pt;}
.ws1d9{word-spacing:4.686438pt;}
.ws134{word-spacing:4.696800pt;}
.ws7b{word-spacing:4.718752pt;}
.ws9f{word-spacing:4.782048pt;}
.ws1ff{word-spacing:4.782080pt;}
.ws17f{word-spacing:4.812379pt;}
.ws17e{word-spacing:4.917869pt;}
.wsc5{word-spacing:4.940832pt;}
.ws1cb{word-spacing:4.941450pt;}
.wsac{word-spacing:5.100851pt;}
.ws40{word-spacing:5.153985pt;}
.ws1fc{word-spacing:5.164646pt;}
.ws21a{word-spacing:5.212467pt;}
.ws15d{word-spacing:5.256480pt;}
.wsbf{word-spacing:5.260288pt;}
.ws1bb{word-spacing:5.313387pt;}
.ws8f{word-spacing:5.419654pt;}
.ws220{word-spacing:5.451571pt;}
.ws1c6{word-spacing:5.472788pt;}
.ws7d{word-spacing:5.482944pt;}
.wsaf{word-spacing:5.525922pt;}
.ws20d{word-spacing:5.547213pt;}
.ws92{word-spacing:5.579056pt;}
.wsc4{word-spacing:5.623920pt;}
.ws7e{word-spacing:5.637920pt;}
.ws5c{word-spacing:5.738458pt;}
.ws1bc{word-spacing:5.791591pt;}
.ws182{word-spacing:5.807004pt;}
.ws154{word-spacing:5.842667pt;}
.ws1c9{word-spacing:5.844725pt;}
.ws1d7{word-spacing:5.881958pt;}
.ws15c{word-spacing:5.883648pt;}
.ws1c8{word-spacing:5.897859pt;}
.ws1d6{word-spacing:5.929779pt;}
.ws1be{word-spacing:6.057261pt;}
.ws189{word-spacing:6.058172pt;}
.ws1b7{word-spacing:6.110395pt;}
.ws1b2{word-spacing:6.163529pt;}
.ws181{word-spacing:6.203850pt;}
.ws100{word-spacing:6.368880pt;}
.ws102{word-spacing:6.372960pt;}
.ws191{word-spacing:6.394737pt;}
.ws101{word-spacing:6.405600pt;}
.ws188{word-spacing:6.414831pt;}
.ws192{word-spacing:6.419854pt;}
.ws15e{word-spacing:6.452160pt;}
.ws1ad{word-spacing:6.480467pt;}
.ws160{word-spacing:6.483744pt;}
.ws22b{word-spacing:6.694912pt;}
.ws15f{word-spacing:6.740928pt;}
.ws169{word-spacing:6.772512pt;}
.ws64{word-spacing:6.792224pt;}
.ws113{word-spacing:6.899280pt;}
.wsb{word-spacing:6.918010pt;}
.ws10b{word-spacing:6.936000pt;}
.ws10a{word-spacing:6.948240pt;}
.ws1b1{word-spacing:6.960537pt;}
.ws168{word-spacing:7.029696pt;}
.ws124{word-spacing:7.118160pt;}
.ws126{word-spacing:7.122720pt;}
.ws125{word-spacing:7.159200pt;}
.ws114{word-spacing:7.176720pt;}
.ws1fa{word-spacing:7.220941pt;}
.ws156{word-spacing:7.279340pt;}
.ws155{word-spacing:7.385607pt;}
.ws1cd{word-spacing:7.603507pt;}
.ws16e{word-spacing:7.695788pt;}
.ws137{word-spacing:7.710960pt;}
.ws16f{word-spacing:7.725928pt;}
.ws12f{word-spacing:7.752000pt;}
.ws12e{word-spacing:7.765680pt;}
.ws138{word-spacing:8.021040pt;}
.ws1f3{word-spacing:8.464282pt;}
.ws1cc{word-spacing:8.703386pt;}
.ws6a{word-spacing:8.705376pt;}
.ws186{word-spacing:9.338426pt;}
.ws18a{word-spacing:9.654898pt;}
.ws18b{word-spacing:9.775459pt;}
.ws20a{word-spacing:10.138010pt;}
.ws227{word-spacing:10.424934pt;}
.wsf4{word-spacing:10.568397pt;}
.ws1a0{word-spacing:10.786175pt;}
.ws9{word-spacing:10.823338pt;}
.wsf3{word-spacing:11.046605pt;}
.ws7c{word-spacing:11.933152pt;}
.ws18e{word-spacing:12.322302pt;}
.ws108{word-spacing:12.374640pt;}
.ws109{word-spacing:12.395040pt;}
.ws34{word-spacing:12.486459pt;}
.ws107{word-spacing:12.937680pt;}
.ws74{word-spacing:13.257600pt;}
.ws12c{word-spacing:13.830480pt;}
.ws12d{word-spacing:13.853280pt;}
.ws73{word-spacing:13.915200pt;}
.wsa{word-spacing:14.319536pt;}
.ws12b{word-spacing:14.459760pt;}
.ws153{word-spacing:14.664947pt;}
.ws6d{word-spacing:17.982560pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
.ws20e{word-spacing:43.038720pt;}
._29{margin-left:-15.249420pt;}
._1c{margin-left:-12.162944pt;}
._7{margin-left:-10.616218pt;}
._8{margin-left:-7.077478pt;}
._1{margin-left:-5.579040pt;}
._d{margin-left:-4.473901pt;}
._0{margin-left:-3.347424pt;}
._5{margin-left:-2.045648pt;}
._2{margin-left:-1.078614pt;}
._1b{width:0.945888pt;}
._4{width:2.045648pt;}
._a{width:2.944791pt;}
._2a{width:4.250709pt;}
._2f{width:8.012602pt;}
._2c{width:9.340925pt;}
._13{width:10.616218pt;}
._3{width:11.530016pt;}
._15{width:13.180965pt;}
._11{width:14.287773pt;}
._e{width:15.663968pt;}
._14{width:16.630900pt;}
._1d{width:18.278034pt;}
._12{width:19.606528pt;}
._1e{width:21.306681pt;}
._26{width:22.597830pt;}
._f{width:23.804112pt;}
._10{width:25.058099pt;}
._6{width:27.188522pt;}
._2b{width:28.511627pt;}
._9{width:29.648896pt;}
._19{width:31.476429pt;}
._21{width:32.730462pt;}
._18{width:34.494435pt;}
._28{width:37.953518pt;}
._b{width:48.381897pt;}
._2e{width:54.993920pt;}
._c{width:62.205150pt;}
._2d{width:78.904320pt;}
._20{width:83.154501pt;}
._1f{width:85.811195pt;}
._16{width:802.961008pt;}
._23{width:1611.778269pt;}
._25{width:1782.437144pt;}
._24{width:1801.399242pt;}
._1a{width:1897.026880pt;}
._22{width:2028.944409pt;}
._27{width:2217.751733pt;}
._17{width:2239.005067pt;}
.fs17{font-size:25.024000pt;}
.fs1f{font-size:27.673600pt;}
.fs1b{font-size:27.968000pt;}
.fsb{font-size:29.440000pt;}
.fs20{font-size:30.080000pt;}
.fs13{font-size:31.500800pt;}
.fs5{font-size:31.880533pt;}
.fsc{font-size:32.000000pt;}
.fs14{font-size:36.176000pt;}
.fs0{font-size:37.193600pt;}
.fs1c{font-size:40.006400pt;}
.fs4{font-size:40.381867pt;}
.fs18{font-size:40.432000pt;}
.fs16{font-size:40.800000pt;}
.fsf{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs1e{font-size:45.120000pt;}
.fs15{font-size:45.424000pt;}
.fs10{font-size:45.539200pt;}
.fs1a{font-size:45.600000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsd{font-size:49.829333pt;}
.fs1d{font-size:50.233600pt;}
.fs19{font-size:50.768000pt;}
.fs12{font-size:51.360000pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fse{font-size:55.365867pt;}
.fs11{font-size:57.180800pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:131.027520pt;}
.y171{bottom:-565.820717pt;}
.y191{bottom:-498.659221pt;}
.y190{bottom:-482.566888pt;}
.y117{bottom:-468.825065pt;}
.y18f{bottom:-466.549904pt;}
.y18e{bottom:-450.457570pt;}
.y18d{bottom:-434.365237pt;}
.y18c{bottom:-418.348253pt;}
.y18b{bottom:-402.255920pt;}
.y18a{bottom:-386.163586pt;}
.y136{bottom:-377.178660pt;}
.y189{bottom:-370.146602pt;}
.y188{bottom:-354.054269pt;}
.y187{bottom:-338.037285pt;}
.y146{bottom:-334.542887pt;}
.y186{bottom:-321.944952pt;}
.y145{bottom:-321.486887pt;}
.y87{bottom:-320.860933pt;}
.y144{bottom:-308.362547pt;}
.y185{bottom:-305.852618pt;}
.y143{bottom:-295.306660pt;}
.y184{bottom:-289.835634pt;}
.y142{bottom:-282.251000pt;}
.y183{bottom:-273.743301pt;}
.y141{bottom:-269.195000pt;}
.ya7{bottom:-268.379781pt;}
.y182{bottom:-257.725851pt;}
.y140{bottom:-256.070660pt;}
.ya6{bottom:-251.260277pt;}
.y13f{bottom:-243.014887pt;}
.y181{bottom:-241.632926pt;}
.ya5{bottom:-234.220933pt;}
.ya3{bottom:-234.217141pt;}
.ya4{bottom:-230.860933pt;}
.y13e{bottom:-229.890547pt;}
.y180{bottom:-225.540101pt;}
.ya2{bottom:-217.097637pt;}
.y13d{bottom:-212.890660pt;}
.y17f{bottom:-209.521909pt;}
.ya1{bottom:-199.978133pt;}
.y124{bottom:-197.473493pt;}
.y17e{bottom:-193.429575pt;}
.ya0{bottom:-182.938789pt;}
.y150{bottom:-181.623153pt;}
.y123{bottom:-181.038293pt;}
.y17d{bottom:-177.412592pt;}
.y9f{bottom:-165.819285pt;}
.y122{bottom:-164.517065pt;}
.y9e{bottom:-148.779941pt;}
.y121{bottom:-147.995837pt;}
.y17c{bottom:-146.655917pt;}
.y160{bottom:-133.971407pt;}
.y17b{bottom:-132.217517pt;}
.y9d{bottom:-131.660437pt;}
.y120{bottom:-131.560637pt;}
.y15f{bottom:-119.379407pt;}
.y17a{bottom:-117.779117pt;}
.y11f{bottom:-115.125437pt;}
.y9c{bottom:-114.540933pt;}
.y9b{bottom:-114.540277pt;}
.y15e{bottom:-104.711027pt;}
.y179{bottom:-103.265141pt;}
.y11e{bottom:-98.690237pt;}
.y9a{bottom:-97.500933pt;}
.y98{bottom:-97.500437pt;}
.y99{bottom:-94.140933pt;}
.y15d{bottom:-90.119153pt;}
.y178{bottom:-88.751165pt;}
.y11d{bottom:-82.255037pt;}
.y97{bottom:-80.380933pt;}
.y15c{bottom:-75.527533pt;}
.y177{bottom:-74.388341pt;}
.y13c{bottom:-66.690547pt;}
.y11c{bottom:-65.819837pt;}
.y15b{bottom:-60.935533pt;}
.y176{bottom:-59.874365pt;}
.y13b{bottom:-53.634547pt;}
.y11b{bottom:-49.384637pt;}
.y96{bottom:-47.661333pt;}
.y15a{bottom:-46.267153pt;}
.y175{bottom:-45.511541pt;}
.y13a{bottom:-40.578320pt;}
.y11a{bottom:-32.778665pt;}
.y95{bottom:-32.301333pt;}
.y159{bottom:-31.675407pt;}
.y174{bottom:-30.923117pt;}
.y139{bottom:-27.386660pt;}
.y158{bottom:-17.007027pt;}
.y93{bottom:-16.860933pt;}
.y173{bottom:-16.484717pt;}
.y119{bottom:-16.343465pt;}
.y138{bottom:-14.330660pt;}
.y94{bottom:-13.500800pt;}
.y0{bottom:0.000000pt;}
.y157{bottom:1.992847pt;}
.y172{bottom:2.315019pt;}
.y137{bottom:2.601184pt;}
.y92{bottom:3.058947pt;}
.y118{bottom:4.970755pt;}
.y1b{bottom:14.078151pt;}
.y4b{bottom:28.346667pt;}
.y272{bottom:81.574667pt;}
.yc4{bottom:81.644000pt;}
.yc3{bottom:84.070667pt;}
.y21f{bottom:86.476000pt;}
.y113{bottom:89.305333pt;}
.y19{bottom:93.018667pt;}
.y4a{bottom:93.116000pt;}
.y83{bottom:94.086667pt;}
.y209{bottom:95.282667pt;}
.y1cf{bottom:95.681333pt;}
.y271{bottom:96.917333pt;}
.yc2{bottom:100.806667pt;}
.y21e{bottom:103.213333pt;}
.y112{bottom:106.042667pt;}
.y1bc{bottom:107.476000pt;}
.y2a7{bottom:108.233333pt;}
.yd3{bottom:108.433333pt;}
.y18{bottom:108.920000pt;}
.y49{bottom:109.853333pt;}
.y82{bottom:110.824000pt;}
.y208{bottom:112.020000pt;}
.y270{bottom:112.258667pt;}
.y1ce{bottom:112.418667pt;}
.yc1{bottom:117.544000pt;}
.y111{bottom:122.780000pt;}
.y2a6{bottom:123.576000pt;}
.y21d{bottom:123.936000pt;}
.y1bb{bottom:124.213333pt;}
.y17{bottom:124.820000pt;}
.yd2{bottom:125.170667pt;}
.y16d{bottom:125.633333pt;}
.y48{bottom:126.590667pt;}
.y81{bottom:127.561333pt;}
.y26f{bottom:127.601333pt;}
.y23b{bottom:128.677333pt;}
.y207{bottom:128.757333pt;}
.y1cd{bottom:129.156000pt;}
.yc0{bottom:131.856000pt;}
.ybf{bottom:134.281333pt;}
.y2a5{bottom:138.918667pt;}
.y110{bottom:139.517333pt;}
.y16{bottom:140.720000pt;}
.y1ba{bottom:140.950667pt;}
.yd1{bottom:141.908000pt;}
.y16c{bottom:142.729333pt;}
.y26e{bottom:142.944000pt;}
.y206{bottom:143.068000pt;}
.y47{bottom:143.328000pt;}
.y23a{bottom:144.298667pt;}
.y205{bottom:145.494667pt;}
.y1cc{bottom:145.893333pt;}
.y80{bottom:148.284000pt;}
.ybe{bottom:151.018667pt;}
.y21c{bottom:153.824000pt;}
.y2a4{bottom:154.261333pt;}
.y10f{bottom:156.254667pt;}
.y15{bottom:156.621333pt;}
.y1b9{bottom:157.688000pt;}
.y26d{bottom:158.286667pt;}
.yd0{bottom:158.645333pt;}
.y16b{bottom:159.825333pt;}
.y46{bottom:160.065333pt;}
.y204{bottom:162.232000pt;}
.y1cb{bottom:162.630667pt;}
.y156{bottom:165.392973pt;}
.y7f{bottom:166.217333pt;}
.ybd{bottom:167.756000pt;}
.y239{bottom:167.890667pt;}
.y2a3{bottom:169.604000pt;}
.y21b{bottom:170.561333pt;}
.y14{bottom:172.521333pt;}
.y10e{bottom:172.992000pt;}
.y26c{bottom:173.629333pt;}
.y1b8{bottom:174.425333pt;}
.y16a{bottom:174.590667pt;}
.ycf{bottom:175.382667pt;}
.y203{bottom:176.542667pt;}
.y45{bottom:176.802667pt;}
.y169{bottom:176.921333pt;}
.y221{bottom:176.941333pt;}
.y202{bottom:178.969333pt;}
.y1ca{bottom:179.368000pt;}
.y155{bottom:179.984973pt;}
.y238{bottom:183.512000pt;}
.ybc{bottom:184.493333pt;}
.y2a2{bottom:184.946667pt;}
.y21a{bottom:187.298667pt;}
.y13{bottom:188.421333pt;}
.y26b{bottom:188.972000pt;}
.y10d{bottom:189.729333pt;}
.y1b7{bottom:191.162667pt;}
.y168{bottom:191.686667pt;}
.y201{bottom:193.280000pt;}
.y44{bottom:193.540000pt;}
.y167{bottom:194.017333pt;}
.y154{bottom:194.577227pt;}
.y200{bottom:195.706667pt;}
.y7e{bottom:196.105333pt;}
.y237{bottom:199.133333pt;}
.y2a1{bottom:200.289333pt;}
.ybb{bottom:201.230667pt;}
.y219{bottom:204.036000pt;}
.y26a{bottom:204.314667pt;}
.y12{bottom:204.322667pt;}
.y1b6{bottom:205.473333pt;}
.y132{bottom:206.092000pt;}
.y10c{bottom:206.466667pt;}
.y1b5{bottom:207.900000pt;}
.y153{bottom:209.320847pt;}
.y43{bottom:210.277333pt;}
.y166{bottom:211.113333pt;}
.y1ff{bottom:212.444000pt;}
.y7d{bottom:212.841333pt;}
.y236{bottom:214.754667pt;}
.yba{bottom:215.541333pt;}
.y2a0{bottom:215.632000pt;}
.yb8{bottom:217.968000pt;}
.y269{bottom:219.657333pt;}
.y218{bottom:220.773333pt;}
.yb9{bottom:222.790667pt;}
.y131{bottom:223.188000pt;}
.y10b{bottom:223.204000pt;}
.y152{bottom:223.912847pt;}
.y1b4{bottom:224.637333pt;}
.y1fe{bottom:226.754667pt;}
.y42{bottom:227.014667pt;}
.y165{bottom:228.209333pt;}
.y1fd{bottom:229.181333pt;}
.y7c{bottom:229.578667pt;}
.y29f{bottom:230.974667pt;}
.yb7{bottom:234.705333pt;}
.y268{bottom:234.998667pt;}
.y217{bottom:237.510667pt;}
.y235{bottom:238.346667pt;}
.y1b3{bottom:238.948000pt;}
.y10a{bottom:239.940000pt;}
.y130{bottom:240.284000pt;}
.y1b2{bottom:241.374667pt;}
.y151{bottom:242.836672pt;}
.y164{bottom:242.973333pt;}
.y41{bottom:243.752000pt;}
.y162{bottom:245.305333pt;}
.y1fc{bottom:245.918667pt;}
.y7b{bottom:246.316000pt;}
.y163{bottom:249.644000pt;}
.y267{bottom:250.341333pt;}
.yb6{bottom:251.442667pt;}
.y216{bottom:254.246667pt;}
.y234{bottom:254.386667pt;}
.y109{bottom:256.677333pt;}
.y12f{bottom:257.380000pt;}
.y1b0{bottom:258.112000pt;}
.y40{bottom:260.489333pt;}
.y7a{bottom:260.626667pt;}
.y29e{bottom:261.658667pt;}
.y161{bottom:262.401333pt;}
.y1fb{bottom:262.656000pt;}
.y1b1{bottom:262.933333pt;}
.y78{bottom:263.053333pt;}
.y266{bottom:265.684000pt;}
.y11{bottom:266.804000pt;}
.y79{bottom:267.876000pt;}
.yb5{bottom:268.180000pt;}
.y233{bottom:270.426667pt;}
.y215{bottom:270.984000pt;}
.y1af{bottom:272.422667pt;}
.y108{bottom:273.414667pt;}
.y12e{bottom:274.476000pt;}
.y1ae{bottom:274.849333pt;}
.y1fa{bottom:276.966667pt;}
.y29d{bottom:277.001333pt;}
.y3f{bottom:277.226667pt;}
.y1f9{bottom:279.393333pt;}
.y77{bottom:279.790667pt;}
.y265{bottom:281.026667pt;}
.y14d{bottom:282.337333pt;}
.y10{bottom:282.705333pt;}
.yb4{bottom:284.917333pt;}
.y214{bottom:285.294667pt;}
.y232{bottom:286.466667pt;}
.y213{bottom:287.721333pt;}
.y107{bottom:290.152000pt;}
.y12d{bottom:291.570667pt;}
.y1ad{bottom:291.586667pt;}
.y29c{bottom:292.344000pt;}
.y3e{bottom:293.964000pt;}
.y1f8{bottom:296.129333pt;}
.y264{bottom:296.369333pt;}
.y76{bottom:296.528000pt;}
.yf{bottom:298.605333pt;}
.yb3{bottom:301.654667pt;}
.y231{bottom:302.506667pt;}
.y212{bottom:304.458667pt;}
.y106{bottom:306.889333pt;}
.y29b{bottom:307.686667pt;}
.y1ab{bottom:308.324000pt;}
.y12c{bottom:308.666667pt;}
.y1f7{bottom:310.441333pt;}
.y3d{bottom:310.701333pt;}
.yce{bottom:311.273333pt;}
.y263{bottom:311.712000pt;}
.y1f6{bottom:312.866667pt;}
.y1ac{bottom:313.145333pt;}
.y75{bottom:313.265333pt;}
.ye{bottom:314.505333pt;}
.yb2{bottom:318.392000pt;}
.y230{bottom:318.546667pt;}
.y211{bottom:318.769333pt;}
.y210{bottom:321.196000pt;}
.y1a9{bottom:322.634667pt;}
.y29a{bottom:323.029333pt;}
.y105{bottom:323.626667pt;}
.y1a8{bottom:325.061333pt;}
.y12b{bottom:325.762667pt;}
.y262{bottom:327.054667pt;}
.y224{bottom:327.576000pt;}
.y1f5{bottom:329.604000pt;}
.y1aa{bottom:329.882667pt;}
.y74{bottom:330.002667pt;}
.y3c{bottom:331.422667pt;}
.yb1{bottom:332.702667pt;}
.y22f{bottom:334.585333pt;}
.yb0{bottom:335.129333pt;}
.y20f{bottom:337.933333pt;}
.y299{bottom:338.372000pt;}
.yd{bottom:338.376000pt;}
.y104{bottom:340.364000pt;}
.y1a7{bottom:341.798667pt;}
.y261{bottom:342.397333pt;}
.y12a{bottom:342.858667pt;}
.y1f4{bottom:343.914667pt;}
.y223{bottom:344.308000pt;}
.y1f3{bottom:346.341333pt;}
.y73{bottom:346.740000pt;}
.yaf{bottom:349.440000pt;}
.y22e{bottom:350.625333pt;}
.yad{bottom:351.866667pt;}
.y298{bottom:353.714667pt;}
.yc{bottom:354.277333pt;}
.yae{bottom:356.688000pt;}
.y103{bottom:357.101333pt;}
.y260{bottom:357.740000pt;}
.y1a6{bottom:358.536000pt;}
.y129{bottom:359.954667pt;}
.y222{bottom:361.045333pt;}
.y1f2{bottom:363.078667pt;}
.y72{bottom:363.477333pt;}
.y20d{bottom:366.493333pt;}
.y22d{bottom:366.665333pt;}
.yac{bottom:368.604000pt;}
.y297{bottom:369.056000pt;}
.yb{bottom:370.177333pt;}
.y25f{bottom:373.081333pt;}
.y102{bottom:373.838667pt;}
.y128{bottom:374.720000pt;}
.y1a5{bottom:375.273333pt;}
.y20c{bottom:375.605333pt;}
.y126{bottom:377.050667pt;}
.y220{bottom:377.788000pt;}
.y1f1{bottom:379.816000pt;}
.y71{bottom:380.214667pt;}
.y22c{bottom:380.374667pt;}
.y127{bottom:381.390667pt;}
.y170{bottom:381.699771pt;}
.y22a{bottom:382.705333pt;}
.y296{bottom:384.398667pt;}
.y20e{bottom:384.598667pt;}
.y1c9{bottom:385.037333pt;}
.y22b{bottom:387.045333pt;}
.y25e{bottom:388.424000pt;}
.y16f{bottom:389.896083pt;}
.y100{bottom:390.576000pt;}
.y1a3{bottom:392.010667pt;}
.y125{bottom:394.146667pt;}
.ya{bottom:395.376000pt;}
.y101{bottom:395.398667pt;}
.y1ef{bottom:396.553333pt;}
.y1a4{bottom:396.832000pt;}
.y70{bottom:396.952000pt;}
.y3b{bottom:398.222667pt;}
.yab{bottom:398.440000pt;}
.y229{bottom:398.745333pt;}
.y295{bottom:399.741333pt;}
.y1f0{bottom:401.376000pt;}
.y25d{bottom:403.766667pt;}
.yfe{bottom:407.313333pt;}
.y1a2{bottom:408.748000pt;}
.y9{bottom:411.276000pt;}
.yff{bottom:412.136000pt;}
.yaa{bottom:413.205333pt;}
.y1ee{bottom:413.290667pt;}
.y6f{bottom:413.689333pt;}
.y114{bottom:414.084000pt;}
.y228{bottom:414.785333pt;}
.y294{bottom:415.084000pt;}
.y3a{bottom:415.518667pt;}
.ya8{bottom:415.536000pt;}
.y25c{bottom:419.109333pt;}
.ya9{bottom:419.876000pt;}
.yfc{bottom:424.050667pt;}
.y1a1{bottom:425.485333pt;}
.yfd{bottom:428.873333pt;}
.y1ed{bottom:430.028000pt;}
.y6e{bottom:430.426667pt;}
.y25b{bottom:434.452000pt;}
.y8{bottom:435.146667pt;}
.y84{bottom:435.473333pt;}
.yfb{bottom:440.788000pt;}
.y1a0{bottom:442.221333pt;}
.y20b{bottom:444.338667pt;}
.ycd{bottom:444.737333pt;}
.y293{bottom:445.769333pt;}
.y1ec{bottom:446.765333pt;}
.y6d{bottom:447.164000pt;}
.y39{bottom:448.753333pt;}
.y25a{bottom:449.794667pt;}
.y7{bottom:451.048000pt;}
.ycc{bottom:451.985333pt;}
.y14c{bottom:453.726667pt;}
.yfa{bottom:455.098667pt;}
.y19f{bottom:456.533333pt;}
.yf9{bottom:457.525333pt;}
.y19d{bottom:458.958667pt;}
.y292{bottom:461.112000pt;}
.y1ea{bottom:463.502667pt;}
.y19e{bottom:463.781333pt;}
.y6c{bottom:463.901333pt;}
.y259{bottom:465.137333pt;}
.y38{bottom:466.049333pt;}
.y6{bottom:466.948000pt;}
.y1eb{bottom:468.325333pt;}
.y14b{bottom:470.821333pt;}
.yf8{bottom:474.262667pt;}
.y291{bottom:476.454667pt;}
.y91{bottom:476.819243pt;}
.y135{bottom:479.621782pt;}
.y1e9{bottom:480.240000pt;}
.y258{bottom:480.480000pt;}
.y6b{bottom:480.638667pt;}
.y5{bottom:482.848000pt;}
.y37{bottom:483.344000pt;}
.y1c8{bottom:485.460000pt;}
.y134{bottom:487.033340pt;}
.y149{bottom:487.917333pt;}
.yf7{bottom:488.573333pt;}
.y19c{bottom:488.796000pt;}
.yf5{bottom:491.000000pt;}
.y290{bottom:491.797333pt;}
.y14a{bottom:492.257333pt;}
.y90{bottom:493.938747pt;}
.y1e8{bottom:494.550667pt;}
.yf6{bottom:495.821333pt;}
.y1e7{bottom:496.977333pt;}
.y6a{bottom:497.376000pt;}
.y4{bottom:498.749333pt;}
.y36{bottom:500.640000pt;}
.y1c7{bottom:502.197333pt;}
.y148{bottom:505.013333pt;}
.yf4{bottom:505.310667pt;}
.y19b{bottom:505.890667pt;}
.y28f{bottom:507.138667pt;}
.yf2{bottom:507.737333pt;}
.y8f{bottom:511.058251pt;}
.y257{bottom:511.164000pt;}
.yf3{bottom:512.558667pt;}
.y1e6{bottom:513.714667pt;}
.y69{bottom:514.113333pt;}
.y3{bottom:514.649333pt;}
.y35{bottom:517.934667pt;}
.ycb{bottom:518.934667pt;}
.yf1{bottom:522.048000pt;}
.y147{bottom:522.109333pt;}
.y28e{bottom:522.481333pt;}
.y19a{bottom:522.986667pt;}
.yf0{bottom:524.474667pt;}
.y256{bottom:526.506667pt;}
.y8e{bottom:528.098931pt;}
.y1e5{bottom:530.452000pt;}
.y2{bottom:530.549333pt;}
.y68{bottom:530.850667pt;}
.y34{bottom:532.898667pt;}
.y33{bottom:535.229333pt;}
.y28d{bottom:537.824000pt;}
.y199{bottom:540.082667pt;}
.yef{bottom:541.212000pt;}
.y255{bottom:541.849333pt;}
.y133{bottom:542.046667pt;}
.y8d{bottom:545.218435pt;}
.y1{bottom:546.450667pt;}
.y1e4{bottom:547.189333pt;}
.y67{bottom:547.588000pt;}
.y32{bottom:552.525333pt;}
.y28c{bottom:553.166667pt;}
.yee{bottom:555.522667pt;}
.y198{bottom:557.178667pt;}
.y254{bottom:557.192000pt;}
.yec{bottom:557.949333pt;}
.y227{bottom:561.500000pt;}
.y8c{bottom:562.259115pt;}
.yed{bottom:562.770667pt;}
.y1e3{bottom:563.926667pt;}
.y66{bottom:564.325333pt;}
.y31{bottom:567.489333pt;}
.y28b{bottom:568.509333pt;}
.y30{bottom:569.820000pt;}
.y253{bottom:572.534667pt;}
.y197{bottom:574.274667pt;}
.yeb{bottom:574.686667pt;}
.y226{bottom:578.237333pt;}
.y8b{bottom:579.378619pt;}
.y1e2{bottom:580.664000pt;}
.y65{bottom:581.062667pt;}
.y28a{bottom:583.852000pt;}
.y2f{bottom:587.114667pt;}
.y252{bottom:587.877333pt;}
.y196{bottom:591.370667pt;}
.yea{bottom:595.408000pt;}
.y8a{bottom:596.498123pt;}
.y1e1{bottom:597.401333pt;}
.y64{bottom:597.800000pt;}
.y289{bottom:599.194667pt;}
.y251{bottom:603.220000pt;}
.y2e{bottom:604.410667pt;}
.y195{bottom:606.134667pt;}
.y193{bottom:608.466667pt;}
.y116{bottom:609.735491pt;}
.yca{bottom:612.110667pt;}
.y194{bottom:612.806667pt;}
.ye9{bottom:613.341333pt;}
.y1e0{bottom:614.138667pt;}
.y63{bottom:614.537333pt;}
.y89{bottom:617.538787pt;}
.y20a{bottom:618.124000pt;}
.y250{bottom:618.562667pt;}
.y115{bottom:619.065335pt;}
.yc9{bottom:619.358667pt;}
.y2d{bottom:621.705333pt;}
.y192{bottom:625.562667pt;}
.y288{bottom:629.878667pt;}
.y1df{bottom:630.876000pt;}
.y62{bottom:631.274667pt;}
.y24f{bottom:633.904000pt;}
.y88{bottom:638.738435pt;}
.y2c{bottom:639.001333pt;}
.ye8{bottom:643.229333pt;}
.y287{bottom:645.221333pt;}
.y16e{bottom:645.500000pt;}
.y1de{bottom:647.613333pt;}
.y61{bottom:648.012000pt;}
.y24e{bottom:649.246667pt;}
.y2b{bottom:656.296000pt;}
.ye7{bottom:657.974667pt;}
.ye6{bottom:659.966667pt;}
.y286{bottom:660.564000pt;}
.y1dc{bottom:661.616000pt;}
.y1db{bottom:662.357333pt;}
.y1da{bottom:664.350667pt;}
.y60{bottom:664.749333pt;}
.y24d{bottom:668.574667pt;}
.y1dd{bottom:669.172000pt;}
.y2a{bottom:673.590667pt;}
.y285{bottom:675.906667pt;}
.y1d9{bottom:678.353333pt;}
.y1d8{bottom:679.094667pt;}
.ye5{bottom:680.689333pt;}
.y1d7{bottom:681.088000pt;}
.y5f{bottom:681.485333pt;}
.y1c6{bottom:686.308000pt;}
.y86{bottom:687.139587pt;}
.y29{bottom:690.886667pt;}
.y284{bottom:691.249333pt;}
.y85{bottom:695.859067pt;}
.y1d6{bottom:697.825333pt;}
.y5e{bottom:698.222667pt;}
.y24c{bottom:701.252000pt;}
.y225{bottom:701.809333pt;}
.y283{bottom:706.592000pt;}
.y28{bottom:708.181333pt;}
.ye4{bottom:710.577333pt;}
.y1d5{bottom:714.562667pt;}
.y5d{bottom:714.960000pt;}
.y1c5{bottom:719.782667pt;}
.y282{bottom:721.934667pt;}
.y24b{bottom:724.844000pt;}
.ye3{bottom:724.888000pt;}
.y27{bottom:725.476000pt;}
.ye2{bottom:727.314667pt;}
.y1d4{bottom:731.300000pt;}
.y5c{bottom:731.697333pt;}
.y281{bottom:737.277333pt;}
.y24a{bottom:740.465333pt;}
.ye1{bottom:744.052000pt;}
.y1d3{bottom:748.036000pt;}
.y5b{bottom:748.434667pt;}
.y280{bottom:752.620000pt;}
.y249{bottom:756.086667pt;}
.y26{bottom:759.774667pt;}
.ye0{bottom:760.789333pt;}
.y1c4{bottom:762.745333pt;}
.y1d2{bottom:764.773333pt;}
.y5a{bottom:765.172000pt;}
.y27f{bottom:767.961333pt;}
.y248{bottom:771.708000pt;}
.y14f{bottom:775.977341pt;}
.ydf{bottom:777.526667pt;}
.y25{bottom:777.978667pt;}
.yc8{bottom:779.482667pt;}
.y59{bottom:781.909333pt;}
.y27e{bottom:783.304000pt;}
.y14e{bottom:784.260847pt;}
.y1d1{bottom:785.496000pt;}
.yc7{bottom:786.732000pt;}
.y247{bottom:787.329333pt;}
.y24{bottom:792.325333pt;}
.yde{bottom:794.264000pt;}
.y58{bottom:798.646667pt;}
.y23{bottom:802.813333pt;}
.y1c3{bottom:803.469333pt;}
.y246{bottom:810.921333pt;}
.ydd{bottom:811.001333pt;}
.y1c2{bottom:812.957333pt;}
.yc6{bottom:813.392000pt;}
.y27d{bottom:813.989333pt;}
.y57{bottom:815.384000pt;}
.y22{bottom:817.160000pt;}
.y1c1{bottom:820.206667pt;}
.y21{bottom:821.017333pt;}
.y245{bottom:826.542667pt;}
.ydc{bottom:827.738667pt;}
.y27c{bottom:829.332000pt;}
.y1c0{bottom:829.694667pt;}
.y56{bottom:832.121333pt;}
.y244{bottom:842.164000pt;}
.ydb{bottom:844.474667pt;}
.y27b{bottom:844.674667pt;}
.y1bf{bottom:846.432000pt;}
.y55{bottom:848.858667pt;}
.y243{bottom:857.785333pt;}
.y27a{bottom:860.017333pt;}
.y20{bottom:860.729333pt;}
.yda{bottom:865.197333pt;}
.y54{bottom:865.596000pt;}
.y242{bottom:873.406667pt;}
.y279{bottom:875.360000pt;}
.yc5{bottom:879.906667pt;}
.y53{bottom:882.333333pt;}
.y241{bottom:889.028000pt;}
.y2a8{bottom:890.701333pt;}
.y278{bottom:890.702667pt;}
.yd9{bottom:895.085333pt;}
.y1f{bottom:896.213333pt;}
.y1d0{bottom:896.644000pt;}
.y52{bottom:899.070667pt;}
.y240{bottom:904.649333pt;}
.y277{bottom:906.044000pt;}
.yd8{bottom:911.822667pt;}
.y51{bottom:915.808000pt;}
.y23f{bottom:920.270667pt;}
.y1e{bottom:921.320000pt;}
.y276{bottom:921.386667pt;}
.yd7{bottom:928.560000pt;}
.y1be{bottom:930.118667pt;}
.y50{bottom:932.545333pt;}
.y23e{bottom:935.893333pt;}
.y275{bottom:936.729333pt;}
.yd6{bottom:945.297333pt;}
.y1d{bottom:946.425333pt;}
.y1bd{bottom:946.856000pt;}
.y4f{bottom:949.282667pt;}
.y23d{bottom:951.514667pt;}
.y274{bottom:952.072000pt;}
.yd5{bottom:959.608000pt;}
.yd4{bottom:962.034667pt;}
.y4e{bottom:966.020000pt;}
.y23c{bottom:967.136000pt;}
.y273{bottom:967.414667pt;}
.y1c{bottom:971.530667pt;}
.y4d{bottom:982.757333pt;}
.y1a{bottom:1010.186667pt;}
.y4c{bottom:1038.548000pt;}
.h37{height:26.761523pt;}
.h16{height:27.499375pt;}
.h39{height:29.599908pt;}
.h17{height:29.890625pt;}
.h8{height:30.063343pt;}
.h3a{height:31.691456pt;}
.h3b{height:33.378918pt;}
.h22{height:33.791352pt;}
.ha{height:34.430976pt;}
.hc{height:35.052646pt;}
.h2{height:35.073565pt;}
.h1b{height:35.212691pt;}
.h1a{height:37.087439pt;}
.h32{height:37.369259pt;}
.h2a{height:37.766805pt;}
.hf{height:38.080100pt;}
.h24{height:38.110547pt;}
.h27{height:38.111000pt;}
.h25{height:38.111454pt;}
.h26{height:38.111907pt;}
.hd{height:38.256384pt;}
.h14{height:38.462187pt;}
.h5{height:38.947124pt;}
.h13{height:39.010156pt;}
.h11{height:39.754531pt;}
.h9{height:40.084290pt;}
.h18{height:41.014123pt;}
.h30{height:41.019456pt;}
.h34{height:42.145781pt;}
.h23{height:42.429742pt;}
.h1e{height:42.537348pt;}
.h2c{height:42.594141pt;}
.h2f{height:42.594647pt;}
.h2d{height:42.595154pt;}
.h2e{height:42.595661pt;}
.h15{height:44.835938pt;}
.h19{height:44.919358pt;}
.hb{height:45.095014pt;}
.h3{height:45.271688pt;}
.h36{height:46.151358pt;}
.h33{height:46.922303pt;}
.h2b{height:47.421477pt;}
.h20{height:47.974453pt;}
.h7{height:48.365611pt;}
.h12{height:49.917344pt;}
.he{height:50.105236pt;}
.h28{height:52.428231pt;}
.h1f{height:53.411558pt;}
.h35{height:57.365434pt;}
.h1c{height:57.370767pt;}
.h6{height:68.861952pt;}
.h38{height:86.078570pt;}
.h4{height:88.836659pt;}
.h29{height:148.991667pt;}
.h31{height:350.541040pt;}
.h21{height:453.991800pt;}
.h10{height:459.401333pt;}
.h1d{height:581.954453pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:176.730927pt;}
.w5{width:379.215600pt;}
.w3{width:465.685333pt;}
.w7{width:497.496880pt;}
.w6{width:497.585933pt;}
.w4{width:506.500907pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xc0{left:-179.478947pt;}
.x50{left:-169.832000pt;}
.xcc{left:-163.462067pt;}
.xd1{left:-159.868933pt;}
.xc8{left:-144.951067pt;}
.x0{left:0.000000pt;}
.xcd{left:1.685933pt;}
.xc9{left:2.812933pt;}
.x51{left:4.007031pt;}
.xc1{left:6.529853pt;}
.xd2{left:30.161467pt;}
.x52{left:32.326938pt;}
.x1{left:47.621333pt;}
.x2{left:51.157007pt;}
.x12f{left:74.516000pt;}
.x12c{left:76.309333pt;}
.x5b{left:98.968000pt;}
.x5c{left:102.968000pt;}
.x57{left:185.288000pt;}
.x58{left:195.928000pt;}
.x134{left:215.892000pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x135{left:223.813333pt;}
.x59{left:226.408000pt;}
.x9{left:227.812000pt;}
.x100{left:229.037333pt;}
.x5a{left:230.408000pt;}
.xe2{left:231.928000pt;}
.xef{left:233.414667pt;}
.x97{left:234.337333pt;}
.xa{left:236.098667pt;}
.x101{left:237.573333pt;}
.x4{left:239.780000pt;}
.x8a{left:240.692000pt;}
.x118{left:244.028000pt;}
.xe3{left:246.174667pt;}
.xc{left:250.204000pt;}
.x98{left:251.401333pt;}
.x9f{left:252.608000pt;}
.x35{left:253.640000pt;}
.x8b{left:254.884000pt;}
.x12a{left:257.288000pt;}
.xe4{left:259.465333pt;}
.x10f{left:261.325333pt;}
.x4d{left:263.137333pt;}
.x6b{left:265.549333pt;}
.x36{left:266.924000pt;}
.x112{left:268.109333pt;}
.x99{left:269.020000pt;}
.x102{left:270.244000pt;}
.x61{left:272.682667pt;}
.x6c{left:274.564000pt;}
.x6{left:275.740000pt;}
.x126{left:276.896000pt;}
.xcf{left:278.413333pt;}
.xb4{left:279.346667pt;}
.xa0{left:282.310667pt;}
.x113{left:283.292000pt;}
.xb{left:284.344000pt;}
.x77{left:290.480000pt;}
.x2d{left:291.668000pt;}
.xbb{left:292.662667pt;}
.x8c{left:294.105333pt;}
.xe5{left:296.382667pt;}
.xd6{left:297.330667pt;}
.xa7{left:301.425333pt;}
.xb5{left:302.914667pt;}
.x2e{left:304.950667pt;}
.xa8{left:306.786667pt;}
.x2f{left:308.292000pt;}
.x114{left:311.074667pt;}
.xfc{left:312.397333pt;}
.xa4{left:314.018667pt;}
.x37{left:318.637333pt;}
.x75{left:320.102667pt;}
.x30{left:321.574667pt;}
.x115{left:324.358667pt;}
.xa5{left:326.950667pt;}
.xd0{left:329.845333pt;}
.x12b{left:330.940000pt;}
.x38{left:331.920000pt;}
.x76{left:333.386667pt;}
.xe7{left:334.297333pt;}
.x27{left:335.192000pt;}
.x10a{left:336.364000pt;}
.x116{left:341.029333pt;}
.xe6{left:342.838667pt;}
.xdb{left:344.522667pt;}
.x10b{left:345.746667pt;}
.xea{left:346.758667pt;}
.x28{left:348.476000pt;}
.x78{left:349.637333pt;}
.x29{left:351.730667pt;}
.xdc{left:354.196000pt;}
.x79{left:355.349333pt;}
.x82{left:358.485333pt;}
.xeb{left:360.042667pt;}
.xa9{left:362.418667pt;}
.xa6{left:363.716000pt;}
.x2a{left:365.013333pt;}
.x123{left:371.214667pt;}
.x11f{left:372.826667pt;}
.xf0{left:373.720000pt;}
.x67{left:375.361333pt;}
.x105{left:376.494667pt;}
.x127{left:380.442667pt;}
.x9a{left:381.621333pt;}
.xf1{left:384.462667pt;}
.x5d{left:385.608000pt;}
.xfe{left:386.934667pt;}
.x11b{left:388.576000pt;}
.x68{left:389.553333pt;}
.xaa{left:391.240000pt;}
.x9b{left:394.904000pt;}
.x5e{left:396.248000pt;}
.xff{left:398.261333pt;}
.xab{left:400.773333pt;}
.xd3{left:401.945333pt;}
.xa1{left:409.933333pt;}
.xd{left:411.114667pt;}
.xc3{left:413.816000pt;}
.xbc{left:415.008000pt;}
.xe{left:417.757333pt;}
.xa2{left:418.970667pt;}
.x69{left:420.134667pt;}
.xc4{left:421.120000pt;}
.x4e{left:422.769333pt;}
.xf{left:424.318667pt;}
.x6a{left:425.846667pt;}
.x1e{left:427.017333pt;}
.xbd{left:428.290667pt;}
.x119{left:429.981333pt;}
.x10{left:430.961333pt;}
.x4f{left:436.052000pt;}
.x1b{left:437.708000pt;}
.x83{left:439.168000pt;}
.x1c{left:441.096000pt;}
.x1f{left:443.676000pt;}
.xca{left:445.152820pt;}
.x39{left:447.386667pt;}
.x84{left:448.464000pt;}
.x54{left:450.888000pt;}
.x5f{left:451.847867pt;}
.x1d{left:454.378667pt;}
.x60{left:455.847867pt;}
.x20{left:456.958667pt;}
.xf2{left:458.833333pt;}
.x3a{left:460.669333pt;}
.x15{left:461.905333pt;}
.x3f{left:462.824000pt;}
.x53{left:464.005854pt;}
.x11{left:468.429333pt;}
.x9c{left:469.961333pt;}
.x16{left:471.888000pt;}
.xd4{left:473.544000pt;}
.x12{left:475.072000pt;}
.x40{left:476.108000pt;}
.xcb{left:477.221333pt;}
.x17{left:478.529333pt;}
.x92{left:480.474667pt;}
.x13{left:481.633333pt;}
.x9d{left:483.245333pt;}
.x21{left:485.292000pt;}
.x111{left:487.097333pt;}
.x14{left:488.274667pt;}
.x108{left:490.297333pt;}
.x55{left:491.768000pt;}
.x18{left:495.154667pt;}
.xce{left:496.065807pt;}
.x22{left:498.576000pt;}
.xbe{left:500.104000pt;}
.x23{left:501.937333pt;}
.xd5{left:504.173333pt;}
.x124{left:505.601333pt;}
.xf4{left:506.985333pt;}
.x56{left:510.808000pt;}
.x11c{left:512.309333pt;}
.xbf{left:513.388000pt;}
.x24{left:515.220000pt;}
.x9e{left:516.109333pt;}
.xdd{left:517.246667pt;}
.xf5{left:519.178667pt;}
.xad{left:523.380000pt;}
.x93{left:524.398667pt;}
.x80{left:526.952000pt;}
.xac{left:528.130667pt;}
.xae{left:529.092000pt;}
.x11d{left:532.645333pt;}
.x94{left:534.281333pt;}
.x121{left:536.686667pt;}
.x7a{left:537.824000pt;}
.x104{left:539.293333pt;}
.x47{left:540.782667pt;}
.x122{left:542.398667pt;}
.x7b{left:543.536000pt;}
.x11e{left:545.929333pt;}
.x85{left:546.842667pt;}
.xb6{left:547.981333pt;}
.x128{left:550.368000pt;}
.x95{left:551.621333pt;}
.x25{left:552.712000pt;}
.x48{left:554.974667pt;}
.x96{left:557.333333pt;}
.x86{left:560.125333pt;}
.xb7{left:561.989333pt;}
.x106{left:563.144000pt;}
.x26{left:565.996000pt;}
.xdf{left:568.428000pt;}
.xec{left:569.584000pt;}
.x129{left:571.349333pt;}
.xb8{left:575.133333pt;}
.x31{left:576.278667pt;}
.x131{left:577.306667pt;}
.xe0{left:580.549333pt;}
.xc5{left:582.045333pt;}
.x19{left:583.754667pt;}
.x49{left:585.405333pt;}
.xed{left:586.309333pt;}
.x32{left:589.562667pt;}
.x4a{left:591.117333pt;}
.xb9{left:592.230667pt;}
.xd7{left:595.138667pt;}
.x1a{left:597.038667pt;}
.x120{left:598.238667pt;}
.x7c{left:600.226667pt;}
.x132{left:601.217333pt;}
.xd8{left:602.444000pt;}
.xba{left:603.725333pt;}
.x12d{left:604.828000pt;}
.x7d{left:605.938667pt;}
.xee{left:608.341333pt;}
.x33{left:609.528000pt;}
.x6d{left:611.186667pt;}
.xa3{left:613.120000pt;}
.xc2{left:616.278667pt;}
.xfd{left:618.801333pt;}
.x103{left:620.080000pt;}
.xf6{left:621.202667pt;}
.xfa{left:623.954667pt;}
.x2b{left:625.400000pt;}
.x3b{left:627.028000pt;}
.x62{left:628.802667pt;}
.xd9{left:630.461333pt;}
.xde{left:632.548000pt;}
.xfb{left:634.560000pt;}
.x87{left:636.426667pt;}
.x2c{left:638.684000pt;}
.x3c{left:640.310667pt;}
.x41{left:641.825333pt;}
.x91{left:643.088000pt;}
.xda{left:644.653333pt;}
.x7{left:645.768000pt;}
.x3d{left:646.820000pt;}
.xf7{left:647.818667pt;}
.xaf{left:649.142667pt;}
.x88{left:650.318667pt;}
.x6e{left:651.560000pt;}
.x8{left:653.902667pt;}
.x42{left:655.109333pt;}
.x4b{left:656.757333pt;}
.x34{left:659.190667pt;}
.x3e{left:660.104000pt;}
.x7e{left:661.126667pt;}
.xb0{left:663.401333pt;}
.x10d{left:664.664000pt;}
.x7f{left:666.838667pt;}
.x63{left:668.356000pt;}
.x6f{left:669.342667pt;}
.x10c{left:670.616000pt;}
.x43{left:671.780000pt;}
.x45{left:672.948000pt;}
.x4c{left:674.282667pt;}
.x109{left:676.170667pt;}
.x64{left:677.085333pt;}
.xf3{left:680.470667pt;}
.x11a{left:681.814667pt;}
.x70{left:683.816000pt;}
.x44{left:684.909333pt;}
.x46{left:686.232000pt;}
.x133{left:688.320000pt;}
.x89{left:690.818667pt;}
.x65{left:692.904000pt;}
.x107{left:695.670667pt;}
.x8d{left:696.694667pt;}
.x66{left:698.057333pt;}
.xb1{left:699.328000pt;}
.x71{left:702.146667pt;}
.xc6{left:703.718667pt;}
.x8e{left:706.577333pt;}
.x117{left:708.073333pt;}
.xb2{left:711.162667pt;}
.x72{left:712.633333pt;}
.x125{left:714.174667pt;}
.x10e{left:715.718667pt;}
.xb3{left:716.874667pt;}
.xf8{left:718.142667pt;}
.x130{left:719.225333pt;}
.x110{left:720.321333pt;}
.x8f{left:724.182667pt;}
.x81{left:726.178667pt;}
.xe8{left:727.905333pt;}
.x90{left:729.894667pt;}
.x73{left:730.965333pt;}
.xf9{left:732.488000pt;}
.xe1{left:733.885333pt;}
.x74{left:739.989333pt;}
.xe9{left:741.189333pt;}
.xc7{left:742.906667pt;}
.x12e{left:744.197333pt;}
}


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