
/* 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_c001a21aa425.woff")format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_be269a11d021.woff")format("woff");}.ff2{font-family:ff2;line-height:1.014000;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_48e13ef69e6d.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_8936f7a5b0be.woff")format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_929cd45e72db.woff")format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_695a12b0ab0f.woff")format("woff");}.ff6{font-family:ff6;line-height:0.703000;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_97fad9c0804a.woff")format("woff");}.ff7{font-family:ff7;line-height:0.482000;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_e5bbc84b0c5a.woff")format("woff");}.ff8{font-family:ff8;line-height:0.889000;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_f92ade140182.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_24e5b5642ed7.woff")format("woff");}.ffa{font-family:ffa;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_d756317b39e9.woff")format("woff");}.ffb{font-family:ffb;line-height:1.011230;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_b39f7ffc8c94.woff")format("woff");}.ffc{font-family:ffc;line-height:0.925293;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_76835cf2a922.woff")format("woff");}.ffd{font-family:ffd;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_f92ade140182.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_82ae6a9f1cfd.woff")format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_54bb16eb42d4.woff")format("woff");}.ff10{font-family:ff10;line-height:1.011230;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_f92ade140182.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_82ae6a9f1cfd.woff")format("woff");}.ff12{font-family:ff12;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_54bb16eb42d4.woff")format("woff");}.ff13{font-family:ff13;line-height:1.011230;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_f92ade140182.woff")format("woff");}.ff14{font-family:ff14;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:ff15;src:url("fonts/font_0020_d2b9e78c1fba.woff")format("woff");}.ff15{font-family:ff15;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_b880bb6b4ea6.woff")format("woff");}.ff16{font-family:ff16;line-height:1.011230;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_ecf11ee22a9a.woff")format("woff");}.ff17{font-family:ff17;line-height:0.925293;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_f92ade140182.woff")format("woff");}.ff18{font-family:ff18;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:ff19;src:url("fonts/font_0024_d2b9e78c1fba.woff")format("woff");}.ff19{font-family:ff19;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_b880bb6b4ea6.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_ecf11ee22a9a.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.925293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_57c2a6288c37.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_39677b00930c.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_7f2e8ab21fd8.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m9{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);}
.ma{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);}
.m1f{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);}
.m14{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);}
.m24{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);}
.m20{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);}
.m18{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);}
.m5{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);}
.m12{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);}
.m16{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.mf{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);}
.me{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);}
.m1a{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);}
.m21{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);}
.m28{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);}
.m7{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);}
.m2c{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);}
.m2a{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);}
.m2d{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);}
.m2b{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);}
.md{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);}
.m3{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);}
.m4{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);}
.m15{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);}
.m26{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m29{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);}
.m1e{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);}
.m1b{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);}
.m8{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);}
.m10{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);}
.m19{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);}
.m22{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);}
.m1c{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);}
.m27{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);}
.m23{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);}
.mb{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);}
.mc{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);}
.v3{vertical-align:-21.702000px;}
.v2{vertical-align:-17.358000px;}
.v6{vertical-align:-15.120600px;}
.v8{vertical-align:-10.488000px;}
.v4{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.076932px;}
.v7{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.ls44{letter-spacing:-2.783556px;}
.ls35{letter-spacing:-1.346688px;}
.ls6b{letter-spacing:-0.240480px;}
.lsbb{letter-spacing:-0.229878px;}
.lsca{letter-spacing:-0.226171px;}
.ls65{letter-spacing:-0.222444px;}
.lsd0{letter-spacing:-0.220220px;}
.lsbc{letter-spacing:-0.208494px;}
.ls6f{letter-spacing:-0.174348px;}
.lsb0{letter-spacing:-0.162000px;}
.lscd{letter-spacing:-0.160701px;}
.ls87{letter-spacing:-0.158760px;}
.ls62{letter-spacing:-0.153216px;}
.ls48{letter-spacing:-0.150300px;}
.ls84{letter-spacing:-0.150152px;}
.lsc9{letter-spacing:-0.148797px;}
.ls3d{letter-spacing:-0.144288px;}
.ls2f{letter-spacing:-0.143640px;}
.lsb7{letter-spacing:-0.142204px;}
.ls40{letter-spacing:-0.138276px;}
.lsbf{letter-spacing:-0.136893px;}
.ls45{letter-spacing:-0.132264px;}
.lsb2{letter-spacing:-0.129600px;}
.lsd2{letter-spacing:-0.128304px;}
.ls89{letter-spacing:-0.127008px;}
.ls42{letter-spacing:-0.126252px;}
.ls95{letter-spacing:-0.123727px;}
.ls47{letter-spacing:-0.120240px;}
.ls38{letter-spacing:-0.114228px;}
.lsc1{letter-spacing:-0.113086px;}
.ls98{letter-spacing:-0.111943px;}
.ls31{letter-spacing:-0.108216px;}
.ls6a{letter-spacing:-0.102204px;}
.lsc8{letter-spacing:-0.101182px;}
.ls32{letter-spacing:-0.096192px;}
.lsc2{letter-spacing:-0.095230px;}
.ls43{letter-spacing:-0.090180px;}
.ls91{letter-spacing:-0.088376px;}
.ls69{letter-spacing:-0.084168px;}
.lsce{letter-spacing:-0.083326px;}
.lsb6{letter-spacing:-0.078156px;}
.lscb{letter-spacing:-0.077374px;}
.ls90{letter-spacing:-0.076593px;}
.ls6c{letter-spacing:-0.072144px;}
.ls94{letter-spacing:-0.070701px;}
.ls46{letter-spacing:-0.066132px;}
.lscc{letter-spacing:-0.065471px;}
.ls6e{letter-spacing:-0.060120px;}
.ls67{letter-spacing:-0.059400px;}
.ls97{letter-spacing:-0.058918px;}
.ls64{letter-spacing:-0.054000px;}
.ls36{letter-spacing:-0.048600px;}
.ls3c{letter-spacing:-0.048096px;}
.lsc3{letter-spacing:-0.047615px;}
.ls3b{letter-spacing:-0.042084px;}
.lscf{letter-spacing:-0.041663px;}
.ls8d{letter-spacing:-0.041242px;}
.ls41{letter-spacing:-0.036072px;}
.ls96{letter-spacing:-0.035351px;}
.ls39{letter-spacing:-0.030060px;}
.lsc7{letter-spacing:-0.029759px;}
.ls68{letter-spacing:-0.024048px;}
.lsc4{letter-spacing:-0.023808px;}
.ls92{letter-spacing:-0.023567px;}
.lsaf{letter-spacing:-0.021600px;}
.lsd1{letter-spacing:-0.021384px;}
.ls86{letter-spacing:-0.021168px;}
.ls3a{letter-spacing:-0.018036px;}
.lsc6{letter-spacing:-0.017856px;}
.ls8c{letter-spacing:-0.017675px;}
.ls37{letter-spacing:-0.016200px;}
.lsba{letter-spacing:-0.016038px;}
.ls8b{letter-spacing:-0.015876px;}
.ls63{letter-spacing:-0.014364px;}
.ls85{letter-spacing:-0.014077px;}
.ls3f{letter-spacing:-0.012024px;}
.lsc5{letter-spacing:-0.011904px;}
.ls93{letter-spacing:-0.011784px;}
.ls66{letter-spacing:-0.010800px;}
.ls3e{letter-spacing:-0.006012px;}
.lsc0{letter-spacing:-0.005952px;}
.lsb1{letter-spacing:-0.005400px;}
.ls88{letter-spacing:-0.005292px;}
.ls30{letter-spacing:-0.004788px;}
.lsb8{letter-spacing:-0.004740px;}
.ls83{letter-spacing:-0.004692px;}
.ls6{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.000061px;}
.lse5{letter-spacing:0.000406px;}
.lsf{letter-spacing:0.000456px;}
.ls4a{letter-spacing:0.000612px;}
.ls4c{letter-spacing:0.000624px;}
.lse9{letter-spacing:0.000800px;}
.lsf3{letter-spacing:0.001133px;}
.ls4b{letter-spacing:0.002182px;}
.lsd6{letter-spacing:0.002728px;}
.lsd9{letter-spacing:0.003040px;}
.ls4d{letter-spacing:0.003542px;}
.lsdd{letter-spacing:0.003634px;}
.lsae{letter-spacing:0.004090px;}
.ls9a{letter-spacing:0.004740px;}
.ls1b{letter-spacing:0.004788px;}
.lsed{letter-spacing:0.004800px;}
.ls75{letter-spacing:0.005292px;}
.lsa0{letter-spacing:0.005346px;}
.ls56{letter-spacing:0.005400px;}
.ls25{letter-spacing:0.006012px;}
.lsb9{letter-spacing:0.006558px;}
.ls1f{letter-spacing:0.007200px;}
.ls76{letter-spacing:0.010584px;}
.lsad{letter-spacing:0.010692px;}
.ls55{letter-spacing:0.010800px;}
.ls2c{letter-spacing:0.012024px;}
.ls78{letter-spacing:0.015876px;}
.ls9d{letter-spacing:0.016038px;}
.ls5a{letter-spacing:0.016200px;}
.lsa7{letter-spacing:0.017856px;}
.ls2e{letter-spacing:0.018036px;}
.ls74{letter-spacing:0.021168px;}
.lsa1{letter-spacing:0.021384px;}
.ls57{letter-spacing:0.021600px;}
.lsa3{letter-spacing:0.023808px;}
.ls79{letter-spacing:0.026460px;}
.ls23{letter-spacing:0.027000px;}
.ls7e{letter-spacing:0.029459px;}
.lsa8{letter-spacing:0.029759px;}
.ls2a{letter-spacing:0.030060px;}
.ls77{letter-spacing:0.031752px;}
.ls9f{letter-spacing:0.032076px;}
.ls22{letter-spacing:0.032400px;}
.ls27{letter-spacing:0.036072px;}
.ls7a{letter-spacing:0.037044px;}
.lsa2{letter-spacing:0.037422px;}
.ls20{letter-spacing:0.037800px;}
.lsa6{letter-spacing:0.041663px;}
.ls2d{letter-spacing:0.042084px;}
.ls58{letter-spacing:0.043200px;}
.ls7f{letter-spacing:0.047134px;}
.lsa9{letter-spacing:0.047615px;}
.ls5c{letter-spacing:0.048096px;}
.lsac{letter-spacing:0.048114px;}
.lsbe{letter-spacing:0.053460px;}
.lsab{letter-spacing:0.053567px;}
.ls1e{letter-spacing:0.054108px;}
.ls80{letter-spacing:0.058918px;}
.ls24{letter-spacing:0.059400px;}
.lsa5{letter-spacing:0.059519px;}
.ls2b{letter-spacing:0.060120px;}
.ls7c{letter-spacing:0.063504px;}
.ls21{letter-spacing:0.064800px;}
.lsaa{letter-spacing:0.065471px;}
.ls49{letter-spacing:0.066132px;}
.ls9e{letter-spacing:0.069498px;}
.lsa4{letter-spacing:0.071423px;}
.ls26{letter-spacing:0.072144px;}
.ls8e{letter-spacing:0.076593px;}
.lsb4{letter-spacing:0.078156px;}
.ls28{letter-spacing:0.084168px;}
.ls33{letter-spacing:0.102204px;}
.ls8a{letter-spacing:0.116424px;}
.lsb3{letter-spacing:0.118800px;}
.ls7b{letter-spacing:0.121716px;}
.ls5b{letter-spacing:0.124200px;}
.ls59{letter-spacing:0.138276px;}
.ls7d{letter-spacing:0.142884px;}
.ls99{letter-spacing:0.145800px;}
.ls29{letter-spacing:0.156312px;}
.ls73{letter-spacing:0.168921px;}
.ls54{letter-spacing:0.172368px;}
.ls1d{letter-spacing:0.177156px;}
.ls72{letter-spacing:0.178305px;}
.ls9c{letter-spacing:0.180125px;}
.ls53{letter-spacing:0.181944px;}
.ls9b{letter-spacing:0.189605px;}
.ls1c{letter-spacing:0.191520px;}
.ls34{letter-spacing:0.192384px;}
.ls8{letter-spacing:0.314815px;}
.ls9{letter-spacing:0.320815px;}
.ls6d{letter-spacing:0.372744px;}
.lsf2{letter-spacing:0.503764px;}
.lsf1{letter-spacing:0.522600px;}
.ls11{letter-spacing:0.542815px;}
.ls12{letter-spacing:0.548815px;}
.ls13{letter-spacing:0.565200px;}
.lsd{letter-spacing:0.751694px;}
.ls8f{letter-spacing:2.910529px;}
.lsb5{letter-spacing:2.969928px;}
.lse{letter-spacing:2.988326px;}
.ls1{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls5e{letter-spacing:3.033900px;}
.ls81{letter-spacing:3.507900px;}
.ls14{letter-spacing:3.553200px;}
.ls15{letter-spacing:3.559200px;}
.lsbd{letter-spacing:4.105728px;}
.ls0{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.954850px;}
.ls5d{letter-spacing:12.772800px;}
.lse4{letter-spacing:13.178353px;}
.lsd4{letter-spacing:13.263700px;}
.lseb{letter-spacing:13.283073px;}
.lse7{letter-spacing:13.337382px;}
.lsea{letter-spacing:13.354360px;}
.lsf5{letter-spacing:13.378971px;}
.lsf4{letter-spacing:13.416072px;}
.lsd3{letter-spacing:13.448400px;}
.lsd7{letter-spacing:13.454400px;}
.lse2{letter-spacing:13.457120px;}
.lsf0{letter-spacing:13.556473px;}
.lsdc{letter-spacing:13.611129px;}
.lsde{letter-spacing:13.635593px;}
.lsee{letter-spacing:13.666254px;}
.lse0{letter-spacing:13.681631px;}
.lsd8{letter-spacing:13.690930px;}
.lsf6{letter-spacing:13.697040px;}
.lsec{letter-spacing:14.050400px;}
.lse6{letter-spacing:14.120988px;}
.lse8{letter-spacing:14.220988px;}
.ls16{letter-spacing:14.269580px;}
.ls10{letter-spacing:14.287215px;}
.lsc{letter-spacing:14.566200px;}
.ls71{letter-spacing:14.645022px;}
.ls4f{letter-spacing:14.676096px;}
.ls70{letter-spacing:14.704798px;}
.ls50{letter-spacing:14.926443px;}
.ls60{letter-spacing:15.035851px;}
.ls61{letter-spacing:15.183002px;}
.lsdb{letter-spacing:15.215106px;}
.ls1a{letter-spacing:15.242778px;}
.lsa{letter-spacing:15.291483px;}
.ls7{letter-spacing:15.302554px;}
.ls5f{letter-spacing:15.353002px;}
.ls18{letter-spacing:15.657483px;}
.ls17{letter-spacing:15.694200px;}
.lsef{letter-spacing:15.897459px;}
.lsda{letter-spacing:16.326871px;}
.lsd5{letter-spacing:16.579812px;}
.lse1{letter-spacing:16.797459px;}
.lse3{letter-spacing:16.815106px;}
.ls52{letter-spacing:16.917708px;}
.lsb{letter-spacing:17.593200px;}
.ls19{letter-spacing:17.935200px;}
.ls51{letter-spacing:18.231558px;}
.ls82{letter-spacing:19.187968px;}
.lsdf{letter-spacing:19.403341px;}
.ls3{letter-spacing:62.761200px;}
.ls4{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;}
}
.ws94{word-spacing:-60.120000px;}
.ws144{word-spacing:-58.917600px;}
.wsf8{word-spacing:-15.030000px;}
.ws44{word-spacing:-14.943900px;}
.wsfb{word-spacing:-14.855652px;}
.wsf{word-spacing:-14.355754px;}
.wsf9{word-spacing:-13.500000px;}
.ws93{word-spacing:-13.483800px;}
.ws92{word-spacing:-13.451400px;}
.ws98{word-spacing:-13.449600px;}
.ws143{word-spacing:-13.230000px;}
.ws90{word-spacing:-12.161520px;}
.wsf7{word-spacing:-12.151944px;}
.ws172{word-spacing:-12.039905px;}
.ws91{word-spacing:-11.970000px;}
.ws2e{word-spacing:-11.955150px;}
.ws141{word-spacing:-11.908905px;}
.ws173{word-spacing:-11.850300px;}
.ws142{word-spacing:-11.730600px;}
.wsd{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws95{word-spacing:-9.007200px;}
.wsfa{word-spacing:-9.000000px;}
.wsf2{word-spacing:-5.260253px;}
.ws53{word-spacing:-3.347434px;}
.wsd9{word-spacing:-3.174336px;}
.wsd8{word-spacing:-3.132252px;}
.wsec{word-spacing:-3.048556px;}
.ws1ac{word-spacing:-3.017603px;}
.wscc{word-spacing:-2.843676px;}
.wsd3{word-spacing:-2.813616px;}
.ws56{word-spacing:-2.809453px;}
.wsd2{word-spacing:-2.795580px;}
.ws79{word-spacing:-2.749678px;}
.wse6{word-spacing:-2.689902px;}
.ws1ab{word-spacing:-2.642635px;}
.ws12{word-spacing:-2.582323px;}
.wse7{word-spacing:-2.510575px;}
.wsae{word-spacing:-2.404800px;}
.wsad{word-spacing:-2.380752px;}
.wse9{word-spacing:-2.331248px;}
.ws13c{word-spacing:-2.151936px;}
.ws8c{word-spacing:-2.151922px;}
.wsce{word-spacing:-2.050092px;}
.wsac{word-spacing:-2.044080px;}
.ws1a9{word-spacing:-2.035543px;}
.ws12b{word-spacing:-2.001996px;}
.ws190{word-spacing:-1.995984px;}
.wseb{word-spacing:-1.972595px;}
.ws167{word-spacing:-1.956064px;}
.ws13d{word-spacing:-1.936742px;}
.ws30{word-spacing:-1.912819px;}
.wscd{word-spacing:-1.911816px;}
.ws1a8{word-spacing:-1.904602px;}
.ws4a{word-spacing:-1.853044px;}
.ws1d7{word-spacing:-1.821275px;}
.wsea{word-spacing:-1.793268px;}
.wsc1{word-spacing:-1.737468px;}
.ws68{word-spacing:-1.733492px;}
.ws20d{word-spacing:-1.721549px;}
.ws18f{word-spacing:-1.695384px;}
.ws115{word-spacing:-1.684800px;}
.ws1d6{word-spacing:-1.672478px;}
.ws136{word-spacing:-1.671336px;}
.ws20a{word-spacing:-1.667750px;}
.ws166{word-spacing:-1.661476px;}
.ws1d5{word-spacing:-1.648671px;}
.ws114{word-spacing:-1.636200px;}
.ws12c{word-spacing:-1.635264px;}
.ws8f{word-spacing:-1.613941px;}
.ws137{word-spacing:-1.605204px;}
.wsc2{word-spacing:-1.581156px;}
.ws116{word-spacing:-1.560600px;}
.ws6c{word-spacing:-1.554166px;}
.ws4b{word-spacing:-1.494390px;}
.ws21a{word-spacing:-1.452557px;}
.ws60{word-spacing:-1.434614px;}
.ws18e{word-spacing:-1.400796px;}
.ws20f{word-spacing:-1.398758px;}
.ws85{word-spacing:-1.374839px;}
.ws165{word-spacing:-1.372780px;}
.ws13b{word-spacing:-1.344960px;}
.ws86{word-spacing:-1.315063px;}
.ws87{word-spacing:-1.255288px;}
.ws1f{word-spacing:-1.195512px;}
.ws20{word-spacing:-1.135736px;}
.wsfd{word-spacing:-1.129766px;}
.ws102{word-spacing:-1.075961px;}
.ws13a{word-spacing:-1.022170px;}
.wse0{word-spacing:-1.016185px;}
.ws1c6{word-spacing:-0.993964px;}
.wsc0{word-spacing:-0.985968px;}
.ws5d{word-spacing:-0.956410px;}
.ws1e0{word-spacing:-0.935550px;}
.ws1df{word-spacing:-0.908820px;}
.ws17d{word-spacing:-0.907200px;}
.ws1db{word-spacing:-0.898128px;}
.ws61{word-spacing:-0.896634px;}
.ws17c{word-spacing:-0.896400px;}
.wsb6{word-spacing:-0.889776px;}
.ws152{word-spacing:-0.889056px;}
.ws151{word-spacing:-0.878472px;}
.ws262{word-spacing:-0.860774px;}
.wsde{word-spacing:-0.836858px;}
.ws81{word-spacing:-0.777083px;}
.wsfc{word-spacing:-0.753178px;}
.ws3d{word-spacing:-0.717307px;}
.ws101{word-spacing:-0.699379px;}
.wsa0{word-spacing:-0.679356px;}
.ws11d{word-spacing:-0.673344px;}
.ws6b{word-spacing:-0.661010px;}
.ws45{word-spacing:-0.657532px;}
.wsff{word-spacing:-0.645581px;}
.ws1aa{word-spacing:-0.642803px;}
.ws43{word-spacing:-0.597756px;}
.ws24b{word-spacing:-0.591782px;}
.ws10e{word-spacing:-0.583200px;}
.ws1d9{word-spacing:-0.577368px;}
.ws10f{word-spacing:-0.572400px;}
.ws1c4{word-spacing:-0.571380px;}
.ws10d{word-spacing:-0.550800px;}
.ws13{word-spacing:-0.537984px;}
.wse4{word-spacing:-0.537980px;}
.wsa1{word-spacing:-0.529056px;}
.ws1da{word-spacing:-0.513216px;}
.ws1dc{word-spacing:-0.507870px;}
.ws1c3{word-spacing:-0.505910px;}
.wsb5{word-spacing:-0.486972px;}
.wsfe{word-spacing:-0.484186px;}
.ws6d{word-spacing:-0.478205px;}
.ws54{word-spacing:-0.418429px;}
.ws1ea{word-spacing:-0.376589px;}
.ws4e{word-spacing:-0.358654px;}
.ws1ae{word-spacing:-0.339257px;}
.wsb2{word-spacing:-0.336672px;}
.ws1ad{word-spacing:-0.333305px;}
.ws175{word-spacing:-0.322790px;}
.ws1d1{word-spacing:-0.321402px;}
.ws32{word-spacing:-0.298878px;}
.ws1bc{word-spacing:-0.279738px;}
.ws1e5{word-spacing:-0.268992px;}
.ws25{word-spacing:-0.239102px;}
.wscb{word-spacing:-0.222444px;}
.ws10a{word-spacing:-0.216000px;}
.ws1fc{word-spacing:-0.215194px;}
.ws109{word-spacing:-0.199800px;}
.wsc7{word-spacing:-0.198396px;}
.ws1c7{word-spacing:-0.184508px;}
.ws108{word-spacing:-0.183600px;}
.ws2c{word-spacing:-0.179327px;}
.ws10c{word-spacing:-0.162000px;}
.ws146{word-spacing:-0.161395px;}
.wsc6{word-spacing:-0.132264px;}
.ws10b{word-spacing:-0.124200px;}
.wsb1{word-spacing:-0.120240px;}
.ws33{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws9c{word-spacing:-0.081396px;}
.ws19a{word-spacing:-0.080582px;}
.ws104{word-spacing:-0.076608px;}
.ws14b{word-spacing:-0.075076px;}
.ws22{word-spacing:-0.059776px;}
.ws100{word-spacing:-0.053798px;}
.ws2f{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws239{word-spacing:-0.034901px;}
.ws20e{word-spacing:-0.005194px;}
.wse{word-spacing:-0.004043px;}
.ws25a{word-spacing:-0.003446px;}
.wsc{word-spacing:-0.003325px;}
.ws25d{word-spacing:-0.002515px;}
.ws253{word-spacing:-0.002131px;}
.ws1{word-spacing:0.000000px;}
.ws23e{word-spacing:0.001200px;}
.wse5{word-spacing:0.001500px;}
.ws26e{word-spacing:0.002400px;}
.ws265{word-spacing:0.003734px;}
.wscf{word-spacing:0.030060px;}
.ws1c2{word-spacing:0.047615px;}
.ws1c5{word-spacing:0.053567px;}
.ws1e4{word-spacing:0.053798px;}
.ws122{word-spacing:0.054108px;}
.ws199{word-spacing:0.056881px;}
.ws9b{word-spacing:0.057456px;}
.ws21{word-spacing:0.059776px;}
.ws14a{word-spacing:0.060999px;}
.ws103{word-spacing:0.062244px;}
.ws1b6{word-spacing:0.077374px;}
.ws132{word-spacing:0.078156px;}
.wsd7{word-spacing:0.084168px;}
.wsbf{word-spacing:0.096192px;}
.ws1d8{word-spacing:0.101182px;}
.ws145{word-spacing:0.107597px;}
.ws1b5{word-spacing:0.113086px;}
.ws36{word-spacing:0.119551px;}
.wsa8{word-spacing:0.124200px;}
.ws154{word-spacing:0.142884px;}
.ws1a7{word-spacing:0.144342px;}
.ws17f{word-spacing:0.145800px;}
.ws156{word-spacing:0.148176px;}
.ws1e1{word-spacing:0.149688px;}
.ws181{word-spacing:0.151200px;}
.ws155{word-spacing:0.158760px;}
.ws1a6{word-spacing:0.160380px;}
.ws17{word-spacing:0.161395px;}
.ws180{word-spacing:0.162000px;}
.ws153{word-spacing:0.164052px;}
.ws161{word-spacing:0.164969px;}
.ws17e{word-spacing:0.167400px;}
.ws18b{word-spacing:0.168336px;}
.ws38{word-spacing:0.179327px;}
.ws138{word-spacing:0.180360px;}
.ws15d{word-spacing:0.190512px;}
.wsbc{word-spacing:0.192384px;}
.ws119{word-spacing:0.194400px;}
.ws170{word-spacing:0.200320px;}
.wsa4{word-spacing:0.204408px;}
.ws124{word-spacing:0.210420px;}
.ws1e9{word-spacing:0.215194px;}
.ws6a{word-spacing:0.236894px;}
.ws2a{word-spacing:0.239102px;}
.ws1f6{word-spacing:0.268992px;}
.ws1e{word-spacing:0.298878px;}
.ws217{word-spacing:0.322790px;}
.ws3c{word-spacing:0.358654px;}
.ws52{word-spacing:0.370356px;}
.ws201{word-spacing:0.376589px;}
.wsd5{word-spacing:0.414828px;}
.wsed{word-spacing:0.418429px;}
.ws171{word-spacing:0.430387px;}
.ws11b{word-spacing:0.438876px;}
.ws133{word-spacing:0.468936px;}
.ws19d{word-spacing:0.470448px;}
.ws16d{word-spacing:0.477233px;}
.ws65{word-spacing:0.478205px;}
.ws200{word-spacing:0.484186px;}
.ws196{word-spacing:0.486972px;}
.ws19e{word-spacing:0.507870px;}
.ws16e{word-spacing:0.518475px;}
.ws148{word-spacing:0.522000px;}
.ws19c{word-spacing:0.523908px;}
.ws267{word-spacing:0.526800px;}
.ws197{word-spacing:0.529056px;}
.ws1d2{word-spacing:0.535669px;}
.ws23{word-spacing:0.537980px;}
.ws259{word-spacing:0.537984px;}
.ws10{word-spacing:0.562186px;}
.wsdd{word-spacing:0.562500px;}
.ws139{word-spacing:0.591782px;}
.ws34{word-spacing:0.597756px;}
.ws37{word-spacing:0.657532px;}
.wsbb{word-spacing:0.661320px;}
.ws1c{word-spacing:0.699379px;}
.ws225{word-spacing:0.753178px;}
.ws120{word-spacing:0.757512px;}
.ws62{word-spacing:0.777083px;}
.ws1fe{word-spacing:0.806976px;}
.wsba{word-spacing:0.829656px;}
.ws4f{word-spacing:0.836858px;}
.ws1dd{word-spacing:0.850014px;}
.ws121{word-spacing:0.859716px;}
.ws274{word-spacing:0.860774px;}
.ws135{word-spacing:0.871740px;}
.ws29{word-spacing:0.896634px;}
.ws256{word-spacing:0.914573px;}
.ws9f{word-spacing:0.919836px;}
.ws1c9{word-spacing:0.922541px;}
.ws35{word-spacing:0.956410px;}
.ws1ca{word-spacing:0.970156px;}
.ws1de{word-spacing:1.026432px;}
.ws4c{word-spacing:1.075961px;}
.ws219{word-spacing:1.075968px;}
.ws241{word-spacing:1.129766px;}
.ws2b{word-spacing:1.135736px;}
.ws127{word-spacing:1.154304px;}
.ws220{word-spacing:1.183565px;}
.ws13e{word-spacing:1.195512px;}
.wsc5{word-spacing:1.220436px;}
.ws255{word-spacing:1.237363px;}
.ws63{word-spacing:1.255288px;}
.ws9e{word-spacing:1.286568px;}
.ws50{word-spacing:1.315063px;}
.ws21c{word-spacing:1.344960px;}
.ws64{word-spacing:1.374839px;}
.ws205{word-spacing:1.398758px;}
.ws128{word-spacing:1.412820px;}
.ws25f{word-spacing:1.452557px;}
.ws58{word-spacing:1.494390px;}
.wsb8{word-spacing:1.503000px;}
.ws266{word-spacing:1.506355px;}
.wsbe{word-spacing:1.545084px;}
.wsb7{word-spacing:1.551096px;}
.ws5c{word-spacing:1.554166px;}
.ws12e{word-spacing:1.557108px;}
.ws222{word-spacing:1.560154px;}
.ws14f{word-spacing:1.566432px;}
.wsbd{word-spacing:1.575144px;}
.ws111{word-spacing:1.593000px;}
.ws17a{word-spacing:1.598400px;}
.ws31{word-spacing:1.613941px;}
.ws113{word-spacing:1.620000px;}
.ws131{word-spacing:1.623240px;}
.ws112{word-spacing:1.630800px;}
.ws11c{word-spacing:1.635264px;}
.ws12d{word-spacing:1.665324px;}
.ws49{word-spacing:1.673717px;}
.ws1f9{word-spacing:1.721549px;}
.ws76{word-spacing:1.733492px;}
.ws21e{word-spacing:1.775347px;}
.ws1b2{word-spacing:1.815323px;}
.ws268{word-spacing:1.829146px;}
.ws80{word-spacing:1.853044px;}
.ws1fb{word-spacing:1.882944px;}
.ws1b1{word-spacing:1.898650px;}
.ws6f{word-spacing:1.912819px;}
.ws26d{word-spacing:1.936742px;}
.ws14e{word-spacing:1.942164px;}
.ws106{word-spacing:1.954800px;}
.ws1a0{word-spacing:1.961982px;}
.ws14d{word-spacing:1.963332px;}
.ws107{word-spacing:1.971000px;}
.ws70{word-spacing:1.972595px;}
.ws179{word-spacing:1.981800px;}
.ws19f{word-spacing:1.983366px;}
.ws178{word-spacing:2.003400px;}
.ws24{word-spacing:2.032370px;}
.ws27{word-spacing:2.092146px;}
.ws1a{word-spacing:2.098138px;}
.ws150{word-spacing:2.100924px;}
.ws17b{word-spacing:2.143800px;}
.ws140{word-spacing:2.151922px;}
.ws19{word-spacing:2.151936px;}
.ws18{word-spacing:2.161606px;}
.ws1a2{word-spacing:2.175822px;}
.ws1ba{word-spacing:2.190292px;}
.ws1a1{word-spacing:2.197206px;}
.ws1e7{word-spacing:2.205734px;}
.ws67{word-spacing:2.211697px;}
.ws214{word-spacing:2.259533px;}
.ws39{word-spacing:2.271473px;}
.ws158{word-spacing:2.275560px;}
.ws157{word-spacing:2.312604px;}
.ws223{word-spacing:2.313331px;}
.ws183{word-spacing:2.322000px;}
.ws7d{word-spacing:2.331248px;}
.ws1b9{word-spacing:2.339089px;}
.ws182{word-spacing:2.359800px;}
.ws3e{word-spacing:2.391024px;}
.ws1b{word-spacing:2.420928px;}
.ws78{word-spacing:2.450800px;}
.ws14{word-spacing:2.474726px;}
.ws72{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.wsb9{word-spacing:2.531052px;}
.ws3f{word-spacing:2.570351px;}
.ws164{word-spacing:2.580591px;}
.ws1f1{word-spacing:2.582323px;}
.wsd1{word-spacing:2.585160px;}
.wsc3{word-spacing:2.615220px;}
.ws8a{word-spacing:2.630126px;}
.wsc4{word-spacing:2.633256px;}
.ws1f4{word-spacing:2.636122px;}
.wsc8{word-spacing:2.663316px;}
.wsf6{word-spacing:2.689902px;}
.wsd0{word-spacing:2.711412px;}
.ws1ee{word-spacing:2.743718px;}
.ws59{word-spacing:2.749678px;}
.ws28{word-spacing:2.809453px;}
.ws7c{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.ws216{word-spacing:2.905114px;}
.ws5f{word-spacing:2.929004px;}
.ws1ff{word-spacing:2.958912px;}
.wsca{word-spacing:2.987964px;}
.ws51{word-spacing:2.988780px;}
.ws42{word-spacing:3.048556px;}
.ws123{word-spacing:3.054096px;}
.wsc9{word-spacing:3.096180px;}
.wsef{word-spacing:3.108331px;}
.ws245{word-spacing:3.120307px;}
.ws66{word-spacing:3.168107px;}
.ws211{word-spacing:3.218074px;}
.ws208{word-spacing:3.218861px;}
.ws24a{word-spacing:3.219072px;}
.ws26b{word-spacing:3.219216px;}
.ws20b{word-spacing:3.222163px;}
.ws206{word-spacing:3.224813px;}
.ws257{word-spacing:3.226963px;}
.ws5b{word-spacing:3.227882px;}
.ws147{word-spacing:3.227904px;}
.ws1d3{word-spacing:3.237823px;}
.ws229{word-spacing:3.281702px;}
.ws69{word-spacing:3.287658px;}
.ws16a{word-spacing:3.299386px;}
.ws97{word-spacing:3.335501px;}
.ws55{word-spacing:3.347434px;}
.ws193{word-spacing:3.366720px;}
.ws169{word-spacing:3.387762px;}
.ws244{word-spacing:3.389299px;}
.wse2{word-spacing:3.407209px;}
.ws1e6{word-spacing:3.443098px;}
.ws192{word-spacing:3.456900px;}
.ws26{word-spacing:3.526760px;}
.ws1f0{word-spacing:3.550694px;}
.ws168{word-spacing:3.558623px;}
.ws1d{word-spacing:3.586536px;}
.ws15c{word-spacing:3.587976px;}
.ws163{word-spacing:3.588082px;}
.ws191{word-spacing:3.631248px;}
.ws96{word-spacing:3.658291px;}
.ws187{word-spacing:3.661200px;}
.ws18d{word-spacing:3.661308px;}
.ws162{word-spacing:3.705917px;}
.ws41{word-spacing:3.706087px;}
.ws260{word-spacing:3.712090px;}
.ws5e{word-spacing:3.765863px;}
.ws18c{word-spacing:3.781548px;}
.wsdf{word-spacing:3.825638px;}
.ws40{word-spacing:3.885414px;}
.ws8b{word-spacing:3.945190px;}
.ws21b{word-spacing:3.981082px;}
.ws15e{word-spacing:3.988722px;}
.ws15b{word-spacing:3.995460px;}
.ws15f{word-spacing:4.012289px;}
.ws159{word-spacing:4.021920px;}
.ws258{word-spacing:4.034880px;}
.ws1a5{word-spacing:4.052268px;}
.ws84{word-spacing:4.064741px;}
.ws188{word-spacing:4.070124px;}
.ws186{word-spacing:4.077000px;}
.wsab{word-spacing:4.088160px;}
.ws1a4{word-spacing:4.089690px;}
.ws189{word-spacing:4.094172px;}
.ws1a3{word-spacing:4.100382px;}
.ws184{word-spacing:4.104000px;}
.ws13f{word-spacing:4.124516px;}
.ws20c{word-spacing:4.142477px;}
.wsaa{word-spacing:4.172328px;}
.ws149{word-spacing:4.184292px;}
.ws15a{word-spacing:4.185972px;}
.ws23f{word-spacing:4.196275px;}
.ws276{word-spacing:4.250074px;}
.ws185{word-spacing:4.271400px;}
.ws1f7{word-spacing:4.303872px;}
.wsa3{word-spacing:4.316616px;}
.ws1b3{word-spacing:4.332969px;}
.ws1fa{word-spacing:4.357670px;}
.ws1b4{word-spacing:4.386536px;}
.wsdc{word-spacing:4.423394px;}
.wsb3{word-spacing:4.424832px;}
.wsb4{word-spacing:4.430844px;}
.ws24c{word-spacing:4.519066px;}
.ws1e2{word-spacing:4.542946px;}
.ws275{word-spacing:4.626662px;}
.ws1cc{word-spacing:4.660322px;}
.ws48{word-spacing:4.662497px;}
.ws272{word-spacing:4.680461px;}
.wse1{word-spacing:4.722272px;}
.ws1e8{word-spacing:4.734259px;}
.ws1cb{word-spacing:4.737696px;}
.ws126{word-spacing:4.761504px;}
.wsa{word-spacing:4.770079px;}
.ws77{word-spacing:4.782048px;}
.ws99{word-spacing:4.841824px;}
.ws240{word-spacing:4.841856px;}
.ws125{word-spacing:4.851684px;}
.wsb{word-spacing:4.853765px;}
.ws75{word-spacing:4.961375px;}
.ws24d{word-spacing:5.003251px;}
.ws73{word-spacing:5.021150px;}
.ws7a{word-spacing:5.140702px;}
.ws249{word-spacing:5.272243px;}
.wse8{word-spacing:5.320028px;}
.ws1c1{word-spacing:5.422163px;}
.ws1b7{word-spacing:5.469778px;}
.ws47{word-spacing:5.499355px;}
.ws11e{word-spacing:5.525028px;}
.wsd6{word-spacing:5.537052px;}
.ws1b8{word-spacing:5.541200px;}
.ws273{word-spacing:5.595034px;}
.wsf0{word-spacing:5.678682px;}
.ws1cf{word-spacing:5.731660px;}
.ws1d4{word-spacing:5.743564px;}
.wsda{word-spacing:5.783544px;}
.ws1ce{word-spacing:5.797131px;}
.ws15{word-spacing:5.810227px;}
.wsdb{word-spacing:5.837652px;}
.ws1cd{word-spacing:5.862602px;}
.ws248{word-spacing:5.864026px;}
.ws118{word-spacing:5.896800px;}
.ws57{word-spacing:5.917784px;}
.ws117{word-spacing:5.929200px;}
.ws1d0{word-spacing:5.945928px;}
.ws11f{word-spacing:5.957892px;}
.ws228{word-spacing:5.971622px;}
.ws1e3{word-spacing:5.977560px;}
.ws174{word-spacing:5.998500px;}
.ws1c0{word-spacing:6.023303px;}
.ws88{word-spacing:6.037336px;}
.ws226{word-spacing:6.079219px;}
.wsa2{word-spacing:6.162300px;}
.ws23d{word-spacing:6.186816px;}
.ws134{word-spacing:6.198372px;}
.ws1c8{word-spacing:6.219715px;}
.ws218{word-spacing:6.240614px;}
.wsa6{word-spacing:6.242400px;}
.ws11a{word-spacing:6.252480px;}
.wsa5{word-spacing:6.269400px;}
.wsa7{word-spacing:6.274800px;}
.ws233{word-spacing:6.294413px;}
.ws270{word-spacing:6.402010px;}
.ws6e{word-spacing:6.515540px;}
.wsf5{word-spacing:6.577925px;}
.ws24e{word-spacing:6.617203px;}
.ws7f{word-spacing:6.635092px;}
.ws8e{word-spacing:6.694867px;}
.ws24f{word-spacing:6.724800px;}
.ws46{word-spacing:6.814418px;}
.ws9a{word-spacing:6.874194px;}
.ws89{word-spacing:6.933970px;}
.ws176{word-spacing:7.047590px;}
.ws83{word-spacing:7.053521px;}
.ws160{word-spacing:7.070112px;}
.ws1bf{word-spacing:7.195823px;}
.ws18a{word-spacing:7.214400px;}
.ws5a{word-spacing:7.232848px;}
.ws177{word-spacing:7.424179px;}
.ws231{word-spacing:7.477978px;}
.ws22f{word-spacing:7.531776px;}
.ws1ec{word-spacing:7.585574px;}
.wsd4{word-spacing:7.617204px;}
.ws236{word-spacing:7.693171px;}
.ws8{word-spacing:7.782761px;}
.ws264{word-spacing:7.800768px;}
.ws3a{word-spacing:7.830604px;}
.ws3b{word-spacing:7.890379px;}
.ws238{word-spacing:8.015962px;}
.ws129{word-spacing:8.050068px;}
.ws82{word-spacing:8.069706px;}
.ws12a{word-spacing:8.116200px;}
.ws4d{word-spacing:8.189257px;}
.ws22b{word-spacing:8.231155px;}
.ws251{word-spacing:8.284954px;}
.ws1be{word-spacing:8.439766px;}
.ws1bd{word-spacing:8.445718px;}
.wsee{word-spacing:8.488135px;}
.ws7e{word-spacing:8.607686px;}
.ws242{word-spacing:8.930534px;}
.ws16b{word-spacing:8.943692px;}
.ws16c{word-spacing:8.967259px;}
.ws130{word-spacing:9.096156px;}
.ws194{word-spacing:9.126216px;}
.ws195{word-spacing:9.150264px;}
.ws12f{word-spacing:9.216396px;}
.ws16f{word-spacing:9.285414px;}
.ws71{word-spacing:9.444545px;}
.wsaf{word-spacing:9.450864px;}
.ws198{word-spacing:9.474912px;}
.wsb0{word-spacing:9.504972px;}
.wsf1{word-spacing:9.623872px;}
.wsf4{word-spacing:10.102076px;}
.ws2{word-spacing:10.420984px;}
.ws26a{word-spacing:10.974874px;}
.ws14c{word-spacing:11.383374px;}
.ws19b{word-spacing:11.499531px;}
.ws105{word-spacing:11.615688px;}
.ws9d{word-spacing:11.620476px;}
.wse3{word-spacing:11.716018px;}
.ws2d{word-spacing:11.906962px;}
.ws8d{word-spacing:12.134447px;}
.ws6{word-spacing:12.176255px;}
.ws204{word-spacing:13.073011px;}
.ws247{word-spacing:13.126810px;}
.ws1fd{word-spacing:13.180608px;}
.ws1bb{word-spacing:13.225077px;}
.ws22c{word-spacing:13.288205px;}
.ws23a{word-spacing:13.342003px;}
.ws271{word-spacing:13.385683px;}
.ws224{word-spacing:13.387325px;}
.ws23c{word-spacing:13.387622px;}
.ws1f5{word-spacing:13.390714px;}
.ws212{word-spacing:13.392941px;}
.ws210{word-spacing:13.393622px;}
.ws1ed{word-spacing:13.395802px;}
.ws26f{word-spacing:13.396714px;}
.ws246{word-spacing:13.449600px;}
.ws254{word-spacing:13.503398px;}
.ws1f8{word-spacing:13.557197px;}
.ws1f2{word-spacing:13.610995px;}
.ws1b0{word-spacing:13.641709px;}
.ws209{word-spacing:13.664794px;}
.ws261{word-spacing:13.826189px;}
.ws25c{word-spacing:13.933786px;}
.ws1af{word-spacing:14.046437px;}
.ws221{word-spacing:14.579366px;}
.ws269{word-spacing:15.278746px;}
.ws215{word-spacing:15.655334px;}
.ws252{word-spacing:15.816730px;}
.ws243{word-spacing:16.031923px;}
.ws7{word-spacing:16.109478px;}
.ws1ef{word-spacing:16.193318px;}
.ws263{word-spacing:16.354714px;}
.wsa9{word-spacing:16.418772px;}
.ws25e{word-spacing:16.462310px;}
.ws203{word-spacing:16.569907px;}
.ws25b{word-spacing:16.610506px;}
.ws207{word-spacing:16.615498px;}
.ws22d{word-spacing:16.615824px;}
.ws237{word-spacing:16.616342px;}
.ws26c{word-spacing:16.619549px;}
.ws202{word-spacing:16.621498px;}
.ws232{word-spacing:16.622342px;}
.ws1f3{word-spacing:16.623379px;}
.ws213{word-spacing:16.623706px;}
.ws234{word-spacing:16.677504px;}
.ws21f{word-spacing:16.838899px;}
.ws22a{word-spacing:16.892698px;}
.ws22e{word-spacing:16.946496px;}
.ws250{word-spacing:18.506650px;}
.ws74{word-spacing:19.128192px;}
.ws235{word-spacing:19.528819px;}
.ws7b{word-spacing:19.606397px;}
.wsf3{word-spacing:20.443255px;}
.ws21d{word-spacing:21.142771px;}
.ws1eb{word-spacing:23.725094px;}
.ws230{word-spacing:24.962458px;}
.ws9{word-spacing:26.109907px;}
.ws5{word-spacing:26.840252px;}
.ws227{word-spacing:31.256870px;}
.ws23b{word-spacing:35.506944px;}
.ws110{word-spacing:1090.390428px;}
._2e{margin-left:-20.719311px;}
._6{margin-left:-7.962163px;}
._a{margin-left:-6.168857px;}
._0{margin-left:-4.644551px;}
._1{margin-left:-3.054524px;}
._5{margin-left:-1.506341px;}
._1e{width:1.417248px;}
._8{width:3.001679px;}
._1d{width:4.542946px;}
._29{width:8.500133px;}
._28{width:9.677547px;}
._2a{width:10.694041px;}
._2d{width:11.715919px;}
._2{width:12.971268px;}
._d{width:14.633165px;}
._c{width:16.031923px;}
._27{width:17.054093px;}
._e{width:18.060661px;}
._13{width:19.140143px;}
._12{width:20.347606px;}
._2c{width:21.357965px;}
._f{width:22.368025px;}
._26{width:23.456577px;}
._b{width:24.532027px;}
._3{width:25.940136px;}
._21{width:27.078347px;}
._1a{width:28.094532px;}
._18{width:29.361770px;}
._4{width:30.587087px;}
._24{width:31.621292px;}
._7{width:33.355008px;}
._16{width:34.711667px;}
._15{width:37.210313px;}
._1b{width:38.674813px;}
._17{width:40.121378px;}
._14{width:41.723239px;}
._1c{width:47.055368px;}
._9{width:54.407401px;}
._2b{width:61.868160px;}
._19{width:107.596080px;}
._10{width:771.774802px;}
._23{width:2040.584601px;}
._25{width:2062.312497px;}
._22{width:2082.258108px;}
._1f{width:2106.930672px;}
._20{width:2516.823000px;}
._11{width:2540.733000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(55,53,86);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:32.788800px;}
.fs17{font-size:35.640000px;}
.fs6{font-size:35.865600px;}
.fsd{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fsf{font-size:43.600200px;}
.fs5{font-size:45.429600px;}
.fs10{font-size:46.922400px;}
.fs9{font-size:47.337600px;}
.fs13{font-size:47.401200px;}
.fs7{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs12{font-size:52.920000px;}
.fs15{font-size:53.460000px;}
.fs8{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs11{font-size:58.917600px;}
.fs14{font-size:59.518800px;}
.fs3{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs2{font-size:75.592800px;}
.fs4{font-size:107.596800px;}
.fs1{font-size:113.389200px;}
.y241{bottom:-896.318824px;}
.y1fa{bottom:-864.802029px;}
.y186{bottom:-863.350050px;}
.y26b{bottom:-808.110715px;}
.y26a{bottom:-790.913970px;}
.y269{bottom:-773.717224px;}
.y12e{bottom:-769.481550px;}
.y1a7{bottom:-762.278754px;}
.y268{bottom:-756.610025px;}
.y1a6{bottom:-743.019312px;}
.y1a5{bottom:-723.839133px;}
.y267{bottom:-721.318961px;}
.y1a4{bottom:-704.579691px;}
.y266{bottom:-702.252113px;}
.y15d{bottom:-692.432487px;}
.y1a3{bottom:-685.320249px;}
.y265{bottom:-683.274544px;}
.y15c{bottom:-673.173045px;}
.y1a2{bottom:-666.150987px;}
.y264{bottom:-664.207696px;}
.y15b{bottom:-653.913603px;}
.y210{bottom:-650.556238px;}
.y1a1{bottom:-646.891545px;}
.y263{bottom:-645.230127px;}
.y15a{bottom:-634.744341px;}
.y1c7{bottom:-633.592050px;}
.y20f{bottom:-631.770361px;}
.y1a0{bottom:-627.722283px;}
.y262{bottom:-626.163279px;}
.y159{bottom:-615.484899px;}
.y20e{bottom:-612.896108px;}
.y19f{bottom:-608.462841px;}
.y261{bottom:-607.096432px;}
.y158{bottom:-596.225457px;}
.y20d{bottom:-594.110231px;}
.y19e{bottom:-589.203399px;}
.y260{bottom:-588.118862px;}
.y157{bottom:-577.056195px;}
.y20c{bottom:-575.235978px;}
.y19d{bottom:-570.034137px;}
.y25f{bottom:-569.052015px;}
.y224{bottom:-563.735550px;}
.y156{bottom:-557.796753px;}
.y20b{bottom:-556.361725px;}
.y19c{bottom:-550.774695px;}
.y25e{bottom:-550.074445px;}
.y155{bottom:-538.627491px;}
.y20a{bottom:-537.575848px;}
.y1e8{bottom:-532.520754px;}
.y19b{bottom:-531.605433px;}
.y25d{bottom:-531.007598px;}
.y154{bottom:-519.368049px;}
.y209{bottom:-518.701595px;}
.y1e7{bottom:-513.261312px;}
.y19a{bottom:-512.345991px;}
.y25c{bottom:-511.940750px;}
.y153{bottom:-500.108607px;}
.y208{bottom:-499.915718px;}
.y1e6{bottom:-494.081133px;}
.y199{bottom:-493.086549px;}
.y25b{bottom:-492.961693px;}
.y207{bottom:-481.041465px;}
.y152{bottom:-480.939345px;}
.y1e5{bottom:-474.821691px;}
.y198{bottom:-473.915784px;}
.y25a{bottom:-473.894845px;}
.y206{bottom:-462.167212px;}
.y151{bottom:-461.679903px;}
.y1e4{bottom:-455.562249px;}
.y259{bottom:-454.917276px;}
.y258{bottom:-454.909851px;}
.y197{bottom:-454.656342px;}
.y205{bottom:-443.381335px;}
.y150{bottom:-442.510641px;}
.y1e3{bottom:-436.392987px;}
.y257{bottom:-435.843003px;}
.y196{bottom:-435.396900px;}
.y204{bottom:-424.507082px;}
.y14f{bottom:-423.251199px;}
.y1e2{bottom:-417.133545px;}
.y256{bottom:-416.776156px;}
.y195{bottom:-416.227638px;}
.y203{bottom:-405.632829px;}
.y14e{bottom:-403.991757px;}
.y1e1{bottom:-397.964283px;}
.y255{bottom:-397.798586px;}
.y194{bottom:-396.968196px;}
.y14d{bottom:-384.820992px;}
.y254{bottom:-378.731739px;}
.y1e0{bottom:-378.704841px;}
.y193{bottom:-377.798934px;}
.y202{bottom:-369.646788px;}
.y14b{bottom:-365.562165px;}
.y14c{bottom:-365.561550px;}
.y253{bottom:-359.664891px;}
.y1df{bottom:-359.445399px;}
.y192{bottom:-358.539492px;}
.y201{bottom:-352.536429px;}
.y14a{bottom:-346.391400px;}
.y149{bottom:-346.388436px;}
.y23a{bottom:-345.117396px;}
.y252{bottom:-340.685834px;}
.y1de{bottom:-340.276137px;}
.y191{bottom:-339.280050px;}
.y200{bottom:-335.602029px;}
.y148{bottom:-327.128994px;}
.y239{bottom:-325.948134px;}
.y251{bottom:-321.618986px;}
.y1dd{bottom:-321.016695px;}
.y1ff{bottom:-313.640229px;}
.y147{bottom:-307.869552px;}
.y238{bottom:-306.688692px;}
.y250{bottom:-302.641417px;}
.y190{bottom:-302.559600px;}
.y1dc{bottom:-301.847433px;}
.y146{bottom:-288.698787px;}
.y237{bottom:-287.519430px;}
.y18f{bottom:-285.100050px;}
.y24f{bottom:-283.574569px;}
.y1db{bottom:-282.587991px;}
.y145{bottom:-269.439345px;}
.y236{bottom:-268.259988px;}
.y18e{bottom:-267.820050px;}
.y24e{bottom:-264.507722px;}
.y1da{bottom:-263.328549px;}
.y18d{bottom:-250.540050px;}
.y144{bottom:-250.179903px;}
.y235{bottom:-249.000546px;}
.y24d{bottom:-245.528664px;}
.y1d9{bottom:-244.157784px;}
.y143{bottom:-231.010641px;}
.y234{bottom:-229.831284px;}
.y24c{bottom:-226.461817px;}
.y1d8{bottom:-224.898342px;}
.y18c{bottom:-223.629969px;}
.y142{bottom:-211.751199px;}
.y233{bottom:-210.571842px;}
.y1d7{bottom:-205.638900px;}
.y18b{bottom:-203.380050px;}
.y24b{bottom:-203.029265px;}
.y141{bottom:-192.580434px;}
.y232{bottom:-191.402580px;}
.y1d6{bottom:-186.469638px;}
.y140{bottom:-173.320992px;}
.y231{bottom:-172.143138px;}
.y1d5{bottom:-167.210196px;}
.y24a{bottom:-166.142489px;}
.y13e{bottom:-154.061964px;}
.y13f{bottom:-154.061550px;}
.y230{bottom:-152.883696px;}
.y1d4{bottom:-148.040934px;}
.y249{bottom:-147.075641px;}
.y13d{bottom:-134.891199px;}
.y22f{bottom:-133.714434px;}
.y1d3{bottom:-128.781492px;}
.y248{bottom:-128.098072px;}
.y13c{bottom:-115.631757px;}
.y22e{bottom:-114.454992px;}
.y1d2{bottom:-109.522050px;}
.y247{bottom:-109.031224px;}
.y13b{bottom:-96.460992px;}
.y22d{bottom:-95.195550px;}
.y13a{bottom:-77.201550px;}
.y1d1{bottom:-72.801600px;}
.y246{bottom:-72.589770px;}
.y22c{bottom:-58.475100px;}
.y1fe{bottom:-57.243711px;}
.y245{bottom:-55.393025px;}
.y1d0{bottom:-55.342050px;}
.y18a{bottom:-54.699600px;}
.y22b{bottom:-41.015550px;}
.y139{bottom:-40.392000px;}
.y1fd{bottom:-40.220670px;}
.y244{bottom:-38.285824px;}
.y1cf{bottom:-38.062050px;}
.y189{bottom:-37.240050px;}
.y22a{bottom:-23.735550px;}
.y1fc{bottom:-23.197629px;}
.y138{bottom:-23.021550px;}
.y243{bottom:-21.178625px;}
.y1ce{bottom:-20.782050px;}
.y188{bottom:-19.960050px;}
.y229{bottom:-1.325550px;}
.y1fb{bottom:-1.236455px;}
.y137{bottom:-0.611397px;}
.y0{bottom:0.000000px;}
.y242{bottom:1.096714px;}
.y187{bottom:2.450094px;}
.y1cd{bottom:6.128031px;}
.y15{bottom:17.658006px;}
.y1cc{bottom:26.377950px;}
.y45{bottom:31.890000px;}
.y16{bottom:35.066838px;}
.y29e{bottom:98.406000px;}
.y164{bottom:102.483000px;}
.y2d5{bottom:104.503500px;}
.y13{bottom:104.646000px;}
.y7c{bottom:107.193000px;}
.y17f{bottom:107.641500px;}
.y11b{bottom:110.331000px;}
.ye5{bottom:113.020500px;}
.y29d{bottom:115.666500px;}
.y283{bottom:116.265000px;}
.y44{bottom:119.281500px;}
.y163{bottom:121.312500px;}
.y2d3{bottom:121.762500px;}
.y12{bottom:122.535000px;}
.y7b{bottom:126.022500px;}
.ya8{bottom:126.471000px;}
.ye4{bottom:129.120000px;}
.y11a{bottom:129.160500px;}
.ye2{bottom:131.850000px;}
.y1c3{bottom:132.541500px;}
.y29c{bottom:132.927000px;}
.y282{bottom:135.094500px;}
.ye3{bottom:137.275500px;}
.y43{bottom:138.111000px;}
.y2d2{bottom:139.023000px;}
.y162{bottom:140.142000px;}
.y11{bottom:140.422500px;}
.y170{bottom:142.122000px;}
.ya7{bottom:143.058000px;}
.y7a{bottom:144.852000px;}
.ya6{bottom:145.300500px;}
.y119{bottom:147.990000px;}
.y29b{bottom:150.187500px;}
.ye1{bottom:150.679500px;}
.y1c2{bottom:151.371000px;}
.y220{bottom:151.588500px;}
.y2d1{bottom:156.283500px;}
.y42{bottom:156.940500px;}
.y10{bottom:158.310000px;}
.y281{bottom:158.407500px;}
.y161{bottom:158.971500px;}
.y16e{bottom:160.951500px;}
.y79{bottom:163.681500px;}
.ya5{bottom:164.130000px;}
.y118{bottom:166.819500px;}
.y29a{bottom:167.448000px;}
.y16f{bottom:169.105500px;}
.ye0{bottom:169.509000px;}
.y1c1{bottom:170.200500px;}
.y21f{bottom:170.418000px;}
.y2d4{bottom:171.526500px;}
.y124{bottom:172.243500px;}
.y2d0{bottom:173.544000px;}
.y1cb{bottom:175.058400px;}
.y41{bottom:175.770000px;}
.yf{bottom:176.199000px;}
.y160{bottom:177.801000px;}
.y78{bottom:182.511000px;}
.y123{bottom:182.572500px;}
.ya4{bottom:182.959500px;}
.y299{bottom:184.708500px;}
.y117{bottom:185.649000px;}
.ydf{bottom:188.338500px;}
.y1bf{bottom:189.030000px;}
.y21d{bottom:189.247500px;}
.y2cf{bottom:190.804500px;}
.y280{bottom:192.031500px;}
.y1ca{bottom:192.517950px;}
.ye{bottom:194.086500px;}
.y1c0{bottom:194.454000px;}
.y40{bottom:194.599500px;}
.y21e{bottom:194.671500px;}
.ya3{bottom:199.546500px;}
.y77{bottom:201.340500px;}
.ya2{bottom:201.789000px;}
.y298{bottom:201.967500px;}
.y116{bottom:204.478500px;}
.y16d{bottom:205.824000px;}
.yde{bottom:207.168000px;}
.y1bd{bottom:207.859500px;}
.y2ce{bottom:208.065000px;}
.y21c{bottom:208.077000px;}
.y1c9{bottom:209.797950px;}
.y122{bottom:209.902500px;}
.y27f{bottom:210.861000px;}
.y15f{bottom:211.366500px;}
.yd{bottom:211.974000px;}
.y1be{bottom:213.283500px;}
.y3f{bottom:213.427500px;}
.y136{bottom:213.769008px;}
.y297{bottom:219.228000px;}
.y76{bottom:220.170000px;}
.ya1{bottom:220.618500px;}
.y115{bottom:223.308000px;}
.y2cd{bottom:225.325500px;}
.ydd{bottom:225.997500px;}
.y240{bottom:226.430409px;}
.y1bc{bottom:226.689000px;}
.y21b{bottom:226.906500px;}
.y27e{bottom:229.690500px;}
.yc{bottom:229.863000px;}
.y15e{bottom:230.599500px;}
.y1c8{bottom:232.208094px;}
.y3e{bottom:232.257000px;}
.y135{bottom:233.028450px;}
.y133{bottom:233.029971px;}
.y23f{bottom:235.963975px;}
.y17a{bottom:236.718000px;}
.y134{bottom:236.808450px;}
.ya0{bottom:237.205500px;}
.y75{bottom:238.999500px;}
.y9f{bottom:239.446500px;}
.y296{bottom:240.972000px;}
.y114{bottom:242.137500px;}
.y2cc{bottom:242.586000px;}
.ydb{bottom:244.827000px;}
.y17b{bottom:244.872000px;}
.y1ba{bottom:245.518500px;}
.y21a{bottom:245.734500px;}
.y1f9{bottom:246.606303px;}
.y27d{bottom:248.520000px;}
.ydc{bottom:250.252500px;}
.y1bb{bottom:250.942500px;}
.y3d{bottom:251.086500px;}
.y132{bottom:252.199233px;}
.y12b{bottom:253.029000px;}
.y1f8{bottom:256.043571px;}
.y74{bottom:257.829000px;}
.y9e{bottom:258.276000px;}
.y2cb{bottom:259.846500px;}
.y228{bottom:260.303550px;}
.y113{bottom:260.967000px;}
.yda{bottom:263.656500px;}
.y1b9{bottom:264.348000px;}
.y219{bottom:264.564000px;}
.y27c{bottom:267.349500px;}
.y3c{bottom:269.916000px;}
.y185{bottom:270.740085px;}
.y131{bottom:271.458675px;}
.y179{bottom:274.377000px;}
.y295{bottom:274.596000px;}
.y73{bottom:276.658500px;}
.y9d{bottom:277.105500px;}
.y227{bottom:277.674000px;}
.y112{bottom:279.796500px;}
.y184{bottom:280.369950px;}
.yd9{bottom:282.486000px;}
.y1b8{bottom:283.177500px;}
.y218{bottom:283.393500px;}
.y27b{bottom:286.179000px;}
.y3b{bottom:288.745500px;}
.y130{bottom:290.718117px;}
.y2ca{bottom:294.366000px;}
.y226{bottom:295.044450px;}
.y72{bottom:295.488000px;}
.y9c{bottom:295.935000px;}
.yb{bottom:297.166500px;}
.y110{bottom:298.626000px;}
.y294{bottom:301.137000px;}
.yd8{bottom:301.315500px;}
.y1b6{bottom:302.007000px;}
.y217{bottom:302.223000px;}
.y111{bottom:304.050000px;}
.y27a{bottom:305.008500px;}
.y1b7{bottom:307.431000px;}
.y3a{bottom:307.575000px;}
.y12f{bottom:309.888882px;}
.y2c9{bottom:311.626500px;}
.y71{bottom:314.317500px;}
.y9b{bottom:314.764500px;}
.ya{bottom:315.054000px;}
.y225{bottom:317.453811px;}
.y10f{bottom:317.455500px;}
.yd7{bottom:320.145000px;}
.y1b4{bottom:320.836500px;}
.y216{bottom:321.052500px;}
.y279{bottom:323.838000px;}
.y1b5{bottom:326.260500px;}
.y39{bottom:326.404500px;}
.y293{bottom:327.676500px;}
.y2c8{bottom:328.887000px;}
.y9{bottom:332.943000px;}
.y70{bottom:333.145500px;}
.y9a{bottom:333.594000px;}
.y10d{bottom:336.285000px;}
.yd6{bottom:338.974500px;}
.y1b3{bottom:339.666000px;}
.y215{bottom:339.882000px;}
.y10e{bottom:341.709000px;}
.y278{bottom:342.666000px;}
.y38{bottom:345.234000px;}
.y2c7{bottom:346.147500px;}
.y8{bottom:350.830500px;}
.y6f{bottom:351.975000px;}
.y99{bottom:352.423500px;}
.y292{bottom:354.217500px;}
.y10c{bottom:355.114500px;}
.yd4{bottom:357.804000px;}
.y1b2{bottom:358.495500px;}
.y214{bottom:358.711500px;}
.y277{bottom:361.495500px;}
.yd5{bottom:363.228000px;}
.y2c6{bottom:363.408000px;}
.y37{bottom:364.063500px;}
.y12d{bottom:364.608585px;}
.y6e{bottom:370.804500px;}
.y98{bottom:371.253000px;}
.y10b{bottom:373.944000px;}
.y12c{bottom:374.238450px;}
.yd2{bottom:376.633500px;}
.y1b1{bottom:377.325000px;}
.y7{bottom:377.685000px;}
.y276{bottom:380.325000px;}
.y2c5{bottom:380.668500px;}
.y291{bottom:380.758500px;}
.yd3{bottom:382.057500px;}
.y36{bottom:382.893000px;}
.y6d{bottom:389.634000px;}
.y97{bottom:390.082500px;}
.y213{bottom:392.277000px;}
.y10a{bottom:392.773500px;}
.yd1{bottom:395.463000px;}
.y6{bottom:395.572500px;}
.y1b0{bottom:396.154500px;}
.y2c4{bottom:397.929000px;}
.y290{bottom:398.332500px;}
.y275{bottom:399.154500px;}
.y35{bottom:401.722500px;}
.y6c{bottom:408.463500px;}
.y96{bottom:408.912000px;}
.y212{bottom:411.510000px;}
.y109{bottom:411.601500px;}
.y5{bottom:413.460000px;}
.yd0{bottom:414.292500px;}
.y1af{bottom:414.982500px;}
.y2c3{bottom:415.188000px;}
.y28f{bottom:415.906500px;}
.y274{bottom:417.984000px;}
.y34{bottom:420.552000px;}
.y6b{bottom:427.293000px;}
.y95{bottom:427.741500px;}
.y108{bottom:430.431000px;}
.y211{bottom:430.743000px;}
.y4{bottom:431.349000px;}
.y2c2{bottom:432.448500px;}
.ycf{bottom:433.122000px;}
.y178{bottom:433.167000px;}
.y28e{bottom:433.480500px;}
.y1ae{bottom:433.812000px;}
.y273{bottom:436.813500px;}
.y33{bottom:439.381500px;}
.y6a{bottom:446.122500px;}
.y107{bottom:446.532000px;}
.y94{bottom:446.571000px;}
.y3{bottom:449.236500px;}
.y106{bottom:449.260500px;}
.y2c1{bottom:449.709000px;}
.y28d{bottom:451.054500px;}
.yce{bottom:451.951500px;}
.y1ad{bottom:452.641500px;}
.y1f7{bottom:453.172500px;}
.y121{bottom:454.686000px;}
.y272{bottom:455.643000px;}
.y32{bottom:462.694500px;}
.y69{bottom:464.952000px;}
.y93{bottom:465.400500px;}
.y2c0{bottom:466.969500px;}
.y2{bottom:467.124000px;}
.y105{bottom:468.090000px;}
.y1ac{bottom:468.396000px;}
.y28c{bottom:468.628500px;}
.ycc{bottom:470.781000px;}
.y1ab{bottom:471.471000px;}
.y271{bottom:474.472500px;}
.ycd{bottom:476.205000px;}
.y68{bottom:483.781500px;}
.y104{bottom:484.189500px;}
.y92{bottom:484.230000px;}
.y1{bottom:485.013000px;}
.y28b{bottom:486.202500px;}
.y103{bottom:486.919500px;}
.ycb{bottom:489.610500px;}
.y177{bottom:489.654000px;}
.y270{bottom:493.302000px;}
.y1c6{bottom:500.498085px;}
.y2bf{bottom:501.490500px;}
.y67{bottom:502.611000px;}
.y91{bottom:503.059500px;}
.y28a{bottom:503.776500px;}
.y1aa{bottom:505.038000px;}
.y102{bottom:505.749000px;}
.yc9{bottom:508.440000px;}
.y1c5{bottom:510.127950px;}
.y120{bottom:511.174500px;}
.yca{bottom:513.864000px;}
.y2be{bottom:518.751000px;}
.y17e{bottom:519.159000px;}
.y17d{bottom:519.648000px;}
.y289{bottom:521.350500px;}
.y66{bottom:521.440500px;}
.y101{bottom:521.848500px;}
.y90{bottom:521.889000px;}
.y1a9{bottom:524.269500px;}
.y100{bottom:524.578500px;}
.y26f{bottom:526.867500px;}
.yc8{bottom:527.269500px;}
.y2bd{bottom:536.011500px;}
.y31{bottom:537.844500px;}
.y288{bottom:538.924500px;}
.y65{bottom:540.270000px;}
.y8f{bottom:540.718500px;}
.yff{bottom:543.408000px;}
.y1a8{bottom:543.502500px;}
.yc7{bottom:546.097500px;}
.y26e{bottom:546.100500px;}
.y2bc{bottom:553.272000px;}
.y30{bottom:557.301000px;}
.y64{bottom:559.099500px;}
.y8e{bottom:559.548000px;}
.yfe{bottom:562.237500px;}
.yc5{bottom:564.927000px;}
.y26d{bottom:565.333500px;}
.y287{bottom:565.465500px;}
.y183{bottom:565.932000px;}
.yc6{bottom:570.352500px;}
.y223{bottom:570.354585px;}
.y2bb{bottom:570.531000px;}
.y12a{bottom:577.929000px;}
.yfd{bottom:578.337000px;}
.y8d{bottom:578.377500px;}
.y222{bottom:579.984450px;}
.yfc{bottom:581.067000px;}
.y63{bottom:582.412500px;}
.y286{bottom:583.039500px;}
.yc4{bottom:583.756500px;}
.y176{bottom:583.801500px;}
.y26c{bottom:584.566500px;}
.y2ba{bottom:587.791500px;}
.y2d8{bottom:592.674000px;}
.y16c{bottom:594.477000px;}
.y2f{bottom:594.691500px;}
.y129{bottom:596.758500px;}
.y8c{bottom:597.207000px;}
.yfa{bottom:599.896500px;}
.y285{bottom:600.613500px;}
.yc3{bottom:602.586000px;}
.y11f{bottom:604.380000px;}
.y2b9{bottom:605.052000px;}
.yfb{bottom:605.322000px;}
.y23e{bottom:606.996000px;}
.y16b{bottom:613.306500px;}
.y2e{bottom:614.148000px;}
.y128{bottom:615.588000px;}
.yf9{bottom:615.996000px;}
.y62{bottom:616.036500px;}
.y284{bottom:618.187500px;}
.yc2{bottom:618.340500px;}
.yf8{bottom:618.726000px;}
.y11e{bottom:620.071500px;}
.yc1{bottom:621.415500px;}
.y2b8{bottom:622.312500px;}
.y2d{bottom:633.606000px;}
.y127{bottom:634.417500px;}
.y61{bottom:634.866000px;}
.yf7{bottom:637.555500px;}
.y2b7{bottom:639.573000px;}
.yc0{bottom:640.245000px;}
.y2c{bottom:650.121000px;}
.y2b{bottom:653.062500px;}
.y126{bottom:653.247000px;}
.y60{bottom:653.695500px;}
.yf6{bottom:656.385000px;}
.y2b6{bottom:656.833500px;}
.ybf{bottom:659.074500px;}
.y175{bottom:669.795000px;}
.y2a{bottom:672.519000px;}
.y5f{bottom:672.525000px;}
.y2b5{bottom:674.094000px;}
.yf4{bottom:675.214500px;}
.y125{bottom:676.560000px;}
.ybe{bottom:677.904000px;}
.y174{bottom:677.949000px;}
.yf5{bottom:680.638500px;}
.y1f6{bottom:686.620500px;}
.y5e{bottom:691.354500px;}
.y29{bottom:691.977000px;}
.yf3{bottom:694.044000px;}
.y2d7{bottom:696.235500px;}
.ybd{bottom:701.217000px;}
.y1f5{bottom:705.450000px;}
.y2b4{bottom:708.613500px;}
.y5d{bottom:710.184000px;}
.y28{bottom:711.433500px;}
.yf2{bottom:712.873500px;}
.y16a{bottom:715.608000px;}
.ybc{bottom:720.046500px;}
.y1f4{bottom:724.279500px;}
.y2b3{bottom:725.874000px;}
.y5c{bottom:729.013500px;}
.y27{bottom:730.890000px;}
.yf1{bottom:731.703000px;}
.y169{bottom:734.437500px;}
.ybb{bottom:738.876000px;}
.y1f3{bottom:743.109000px;}
.y2b2{bottom:743.134500px;}
.y5b{bottom:747.843000px;}
.y26{bottom:750.348000px;}
.yf0{bottom:750.532500px;}
.yba{bottom:757.705500px;}
.y2b1{bottom:760.395000px;}
.y1f2{bottom:761.938500px;}
.y8b{bottom:763.942500px;}
.y5a{bottom:766.671000px;}
.yef{bottom:769.362000px;}
.y25{bottom:769.804500px;}
.y168{bottom:772.096500px;}
.yb9{bottom:776.535000px;}
.y2b0{bottom:777.655500px;}
.y1f1{bottom:780.768000px;}
.y8a{bottom:782.772000px;}
.y59{bottom:785.500500px;}
.yee{bottom:788.191500px;}
.y24{bottom:789.262500px;}
.y2af{bottom:794.916000px;}
.yb8{bottom:795.364500px;}
.y1f0{bottom:799.597500px;}
.y167{bottom:801.600000px;}
.y58{bottom:804.330000px;}
.yed{bottom:807.021000px;}
.y2ae{bottom:812.176500px;}
.yb7{bottom:814.194000px;}
.y1ef{bottom:818.427000px;}
.y23d{bottom:818.431500px;}
.y57{bottom:823.159500px;}
.yec{bottom:825.850500px;}
.y23{bottom:827.847000px;}
.y2ad{bottom:829.437000px;}
.y1ee{bottom:837.256500px;}
.yb6{bottom:837.507000px;}
.y23c{bottom:837.664500px;}
.y182{bottom:838.912500px;}
.y89{bottom:839.259000px;}
.y56{bottom:841.989000px;}
.y22{bottom:843.987000px;}
.yeb{bottom:844.680000px;}
.y2ac{bottom:846.697500px;}
.y1ed{bottom:856.086000px;}
.yb5{bottom:856.335000px;}
.y23b{bottom:856.897500px;}
.y181{bottom:857.742000px;}
.y88{bottom:858.088500px;}
.y55{bottom:860.818500px;}
.yea{bottom:863.509500px;}
.y2ab{bottom:863.956500px;}
.y21{bottom:864.466500px;}
.y173{bottom:866.244000px;}
.y1ec{bottom:874.915500px;}
.yb4{bottom:875.164500px;}
.y20{bottom:876.265500px;}
.y87{bottom:876.918000px;}
.y221{bottom:879.327000px;}
.y54{bottom:879.648000px;}
.y2aa{bottom:881.217000px;}
.ye9{bottom:882.339000px;}
.y11d{bottom:885.073500px;}
.yb3{bottom:893.994000px;}
.y180{bottom:895.401000px;}
.y86{bottom:895.747500px;}
.y1f{bottom:896.745000px;}
.y53{bottom:898.477500px;}
.y11c{bottom:903.903000px;}
.ye8{bottom:905.650500px;}
.y1eb{bottom:908.481000px;}
.yb2{bottom:912.823500px;}
.y1e{bottom:912.885000px;}
.y85{bottom:914.577000px;}
.y2a9{bottom:915.738000px;}
.y52{bottom:917.307000px;}
.ye7{bottom:921.342000px;}
.y166{bottom:922.732500px;}
.y1ea{bottom:927.714000px;}
.y2dd{bottom:928.440000px;}
.y1d{bottom:929.023500px;}
.y2d9{bottom:930.376500px;}
.y2da{bottom:930.981000px;}
.yb1{bottom:931.653000px;}
.y2a8{bottom:932.998500px;}
.y51{bottom:936.136500px;}
.y165{bottom:941.562000px;}
.y1c{bottom:945.163500px;}
.y2dc{bottom:945.700500px;}
.y1e9{bottom:946.947000px;}
.y2a7{bottom:950.259000px;}
.yb0{bottom:950.482500px;}
.y172{bottom:952.236000px;}
.y50{bottom:954.966000px;}
.y17c{bottom:960.391500px;}
.y1b{bottom:961.303500px;}
.y2db{bottom:962.961000px;}
.y2a6{bottom:967.519500px;}
.yaf{bottom:969.312000px;}
.y1c4{bottom:969.376500px;}
.y4f{bottom:973.795500px;}
.y2a5{bottom:984.780000px;}
.yae{bottom:988.141500px;}
.y84{bottom:989.895000px;}
.y4e{bottom:992.625000px;}
.y83{bottom:998.049000px;}
.y2d6{bottom:1002.039000px;}
.y2a4{bottom:1002.040500px;}
.y1a{bottom:1005.979500px;}
.yad{bottom:1006.971000px;}
.y4d{bottom:1011.454500px;}
.y82{bottom:1016.878500px;}
.y2a3{bottom:1019.299500px;}
.y19{bottom:1024.809000px;}
.yac{bottom:1025.800500px;}
.y4c{bottom:1030.284000px;}
.y81{bottom:1035.708000px;}
.y2a2{bottom:1036.560000px;}
.yab{bottom:1044.630000px;}
.y4b{bottom:1046.383500px;}
.y4a{bottom:1049.113500px;}
.y2a1{bottom:1053.820500px;}
.y171{bottom:1054.537500px;}
.yaa{bottom:1063.459500px;}
.y18{bottom:1064.728500px;}
.y80{bottom:1065.213000px;}
.y49{bottom:1067.943000px;}
.y2a0{bottom:1071.081000px;}
.ya9{bottom:1082.289000px;}
.y7f{bottom:1084.042500px;}
.ye6{bottom:1084.530000px;}
.y48{bottom:1086.772500px;}
.y29f{bottom:1088.341500px;}
.y7e{bottom:1092.196500px;}
.y17{bottom:1092.972000px;}
.y7d{bottom:1102.872000px;}
.y47{bottom:1105.602000px;}
.y14{bottom:1136.460000px;}
.y46{bottom:1168.366500px;}
.h38{height:21.407698px;}
.h17{height:23.242762px;}
.h34{height:23.935184px;}
.h37{height:26.016504px;}
.ha{height:26.217754px;}
.h1f{height:26.279297px;}
.h14{height:30.582721px;}
.h2{height:30.587087px;}
.h3{height:30.670772px;}
.h12{height:33.209038px;}
.h29{height:34.252436px;}
.h28{height:34.550283px;}
.h31{height:34.601950px;}
.h30{height:34.902837px;}
.h1d{height:34.951465px;}
.hb{height:34.956859px;}
.h11{height:35.052500px;}
.h1c{height:35.255391px;}
.h24{height:37.120896px;}
.h2c{height:38.630566px;}
.hc{height:38.896243px;}
.h2b{height:38.966484px;}
.h35{height:39.024756px;}
.hd{height:39.326630px;}
.h33{height:39.364102px;}
.h22{height:39.418945px;}
.he{height:39.434227px;}
.h20{height:39.761719px;}
.h25{height:40.931698px;}
.h2d{height:40.937698px;}
.h16{height:41.245164px;}
.h13{height:41.842920px;}
.h2a{height:43.008697px;}
.hf{height:43.217759px;}
.h32{height:43.447562px;}
.h10{height:43.695964px;}
.h7{height:43.815515px;}
.h36{height:43.825366px;}
.h1e{height:43.886426px;}
.h23{height:44.268047px;}
.h18{height:44.938762px;}
.h19{height:44.944762px;}
.h4{height:50.931027px;}
.h6{height:52.536996px;}
.h9{height:54.547601px;}
.h1a{height:54.905038px;}
.h15{height:54.911038px;}
.h5{height:76.877878px;}
.h8{height:77.792486px;}
.h26{height:151.170000px;}
.h1b{height:188.283000px;}
.h2f{height:190.721520px;}
.h27{height:211.258110px;}
.h21{height:234.670500px;}
.h2e{height:241.219500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:203.668736px;}
.w5{width:576.307500px;}
.w7{width:577.398000px;}
.w6{width:580.291320px;}
.w3{width:583.401000px;}
.w8{width:585.131580px;}
.w4{width:585.585000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x149{left:-201.954000px;}
.x10e{left:-199.771500px;}
.x143{left:-195.405000px;}
.x150{left:-189.893130px;}
.x14a{left:-6.384000px;}
.x10f{left:-4.202590px;}
.x0{left:0.000000px;}
.x151{left:1.765470px;}
.x155{left:4.484700px;}
.x116{left:9.568500px;}
.x110{left:10.918500px;}
.x3{left:16.179032px;}
.x111{left:24.328500px;}
.x14d{left:25.476000px;}
.x112{left:27.658500px;}
.x144{left:32.025000px;}
.x156{left:36.026100px;}
.x117{left:44.308500px;}
.x1{left:53.574000px;}
.x2{left:59.141066px;}
.x118{left:76.168500px;}
.x17f{left:84.220500px;}
.x161{left:85.848000px;}
.x119{left:91.828500px;}
.x178{left:94.155000px;}
.x16d{left:101.680500px;}
.x17b{left:103.981500px;}
.x17c{left:110.308500px;}
.x14c{left:128.705379px;}
.x113{left:130.978500px;}
.x114{left:135.478500px;}
.x16e{left:148.762500px;}
.x157{left:153.192600px;}
.x163{left:154.795500px;}
.x158{left:157.647600px;}
.x169{left:160.830000px;}
.x16a{left:166.975500px;}
.x176{left:176.482500px;}
.x17a{left:184.833000px;}
.x16b{left:192.465000px;}
.x16c{left:202.452000px;}
.x16f{left:236.241000px;}
.x164{left:238.027500px;}
.x170{left:244.549500px;}
.x165{left:246.334500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.xaa{left:250.591500px;}
.x5f{left:254.119500px;}
.xb9{left:257.943000px;}
.xa6{left:260.065500px;}
.xd6{left:261.097500px;}
.x60{left:264.333000px;}
.xba{left:265.573500px;}
.x104{left:266.646000px;}
.x17d{left:267.795000px;}
.x5{left:269.914500px;}
.x8{left:271.260000px;}
.x78{left:273.372000px;}
.x74{left:278.125500px;}
.x79{left:279.732000px;}
.xb{left:281.479500px;}
.x147{left:283.434000px;}
.x37{left:284.989500px;}
.x85{left:286.743000px;}
.xf5{left:287.752500px;}
.x2b{left:290.505000px;}
.x100{left:292.252500px;}
.x9{left:294.001500px;}
.xc{left:297.733500px;}
.x38{left:299.934000px;}
.x3b{left:301.417500px;}
.x13b{left:302.641500px;}
.xd{left:305.205000px;}
.x4d{left:306.448500px;}
.x7{left:307.789500px;}
.x2c{left:310.411500px;}
.xc5{left:312.123000px;}
.x34{left:313.275000px;}
.x139{left:314.569500px;}
.xc6{left:315.880500px;}
.x2d{left:317.883000px;}
.xa{left:320.394000px;}
.x4e{left:322.092000px;}
.x35{left:323.563500px;}
.x10b{left:325.570500px;}
.x105{left:327.871500px;}
.xd7{left:329.997000px;}
.x39{left:331.105500px;}
.xf0{left:332.319000px;}
.x152{left:334.372500px;}
.x4f{left:335.626500px;}
.x123{left:336.799500px;}
.xa1{left:338.187000px;}
.xbd{left:339.240000px;}
.xbe{left:343.051500px;}
.xa2{left:344.794500px;}
.xa7{left:346.290000px;}
.x73{left:347.397000px;}
.x8f{left:349.209000px;}
.xd8{left:350.211000px;}
.x99{left:351.364500px;}
.x115{left:353.818500px;}
.x50{left:355.443000px;}
.x8d{left:357.198000px;}
.xe9{left:358.354500px;}
.xe5{left:360.466500px;}
.x86{left:361.741500px;}
.x75{left:364.338000px;}
.x9a{left:366.309000px;}
.xf2{left:367.488000px;}
.x23{left:369.247500px;}
.x106{left:370.260000px;}
.x8e{left:372.142500px;}
.x15a{left:373.228500px;}
.x76{left:374.430000px;}
.x87{left:376.686000px;}
.xe6{left:379.717500px;}
.x61{left:382.509000px;}
.x24{left:384.192000px;}
.x14e{left:386.725500px;}
.xd9{left:387.784500px;}
.x160{left:390.744000px;}
.x25{left:391.753500px;}
.x124{left:392.932500px;}
.x14f{left:394.674000px;}
.x173{left:396.975000px;}
.x62{left:398.433000px;}
.xe7{left:400.341000px;}
.x17e{left:401.353500px;}
.x153{left:402.514500px;}
.x179{left:405.343500px;}
.x26{left:406.698000px;}
.x6c{left:408.199500px;}
.x63{left:413.178000px;}
.x12f{left:415.047000px;}
.x94{left:416.478000px;}
.x13c{left:417.547500px;}
.x51{left:419.790000px;}
.x130{left:421.854000px;}
.x64{left:423.246000px;}
.x10c{left:424.882500px;}
.x134{left:426.376500px;}
.x6d{left:428.067000px;}
.x5b{left:430.852500px;}
.x6e{left:433.066500px;}
.x52{left:434.584500px;}
.x11f{left:437.046000px;}
.x95{left:438.745500px;}
.x5c{left:441.067500px;}
.x15b{left:443.203500px;}
.xad{left:444.666000px;}
.x3c{left:447.033000px;}
.x129{left:449.080500px;}
.x6f{left:451.596000px;}
.x96{left:453.688500px;}
.x40{left:454.695000px;}
.x10d{left:456.052500px;}
.x3d{left:457.321500px;}
.x32{left:458.961000px;}
.x137{left:460.377000px;}
.xa8{left:462.711000px;}
.x12b{left:463.723500px;}
.xbb{left:465.328500px;}
.x70{left:466.390500px;}
.xc9{left:468.034500px;}
.x41{left:469.639500px;}
.x65{left:471.204000px;}
.x148{left:472.611000px;}
.x33{left:473.904000px;}
.x77{left:476.091000px;}
.x108{left:478.356000px;}
.x128{left:479.608500px;}
.xeb{left:481.735500px;}
.xca{left:482.977500px;}
.x131{left:484.071000px;}
.x12{left:485.403000px;}
.xae{left:487.404000px;}
.xda{left:488.568000px;}
.x66{left:489.645000px;}
.x132{left:490.876500px;}
.x13{left:492.874500px;}
.x15c{left:494.785500px;}
.xec{left:496.678500px;}
.xaf{left:497.692500px;}
.x69{left:500.388000px;}
.x42{left:501.739500px;}
.x12c{left:503.404500px;}
.x67{left:504.439500px;}
.xb0{left:505.909500px;}
.xf9{left:507.075000px;}
.xd2{left:508.905000px;}
.xc1{left:510.571500px;}
.xff{left:513.108000px;}
.x53{left:515.373000px;}
.x43{left:516.534000px;}
.xb1{left:519.457500px;}
.x15d{left:520.576500px;}
.x3e{left:522.661500px;}
.xd3{left:524.148000px;}
.xc2{left:525.514500px;}
.x7a{left:528.196500px;}
.xc3{left:529.216500px;}
.x54{left:531.016500px;}
.x107{left:534.262500px;}
.xb6{left:535.672500px;}
.x3f{left:537.606000px;}
.xd4{left:540.559500px;}
.xb7{left:543.303000px;}
.x55{left:544.551000px;}
.xcb{left:546.043500px;}
.x162{left:548.541000px;}
.xcc{left:549.705000px;}
.xa3{left:551.665500px;}
.xbc{left:552.817500px;}
.xb2{left:553.924500px;}
.x46{left:555.058500px;}
.xf1{left:556.095000px;}
.x8c{left:557.304000px;}
.x6a{left:559.603500px;}
.x47{left:561.418500px;}
.x6b{left:563.337000px;}
.x56{left:564.367500px;}
.xb3{left:566.815500px;}
.xcd{left:568.311000px;}
.x101{left:570.325500px;}
.x18{left:571.371000px;}
.x177{left:573.624000px;}
.x14b{left:574.656000px;}
.x11b{left:576.781500px;}
.x19{left:577.797000px;}
.x174{left:578.914500px;}
.xee{left:579.928500px;}
.xd5{left:581.004000px;}
.xf6{left:582.504000px;}
.xa4{left:584.148000px;}
.x102{left:585.270000px;}
.xce{left:586.915500px;}
.x71{left:589.216500px;}
.xe{left:590.712000px;}
.xc4{left:593.169000px;}
.x14{left:594.498000px;}
.x48{left:596.302500px;}
.xf{left:598.185000px;}
.x29{left:599.334000px;}
.x109{left:600.966000px;}
.x15{left:601.969500px;}
.x127{left:603.406500px;}
.x120{left:604.464000px;}
.xcf{left:605.521500px;}
.x7e{left:606.685500px;}
.xdf{left:608.538000px;}
.x12a{left:609.718500px;}
.x10a{left:611.208000px;}
.x11a{left:612.765000px;}
.x2a{left:614.278500px;}
.x122{left:615.810000px;}
.xef{left:617.310000px;}
.x135{left:618.480000px;}
.x27{left:619.942500px;}
.x1a{left:621.612000px;}
.xe0{left:623.482500px;}
.x15e{left:624.745500px;}
.x49{left:627.012000px;}
.x1b{left:628.038000px;}
.x11d{left:629.134500px;}
.x3a{left:631.603500px;}
.x16{left:633.477000px;}
.x28{left:634.887000px;}
.xb5{left:635.991000px;}
.xed{left:637.546500px;}
.xf3{left:639.046500px;}
.x17{left:640.948500px;}
.x133{left:642.691500px;}
.x4a{left:645.286500px;}
.xf4{left:646.473000px;}
.x68{left:648.289500px;}
.xc7{left:650.635500px;}
.x4b{left:651.646500px;}
.x103{left:652.666500px;}
.x9b{left:654.682500px;}
.xa5{left:656.365500px;}
.x1c{left:658.368000px;}
.xe1{left:659.907000px;}
.x83{left:661.341000px;}
.x88{left:663.363000px;}
.x1d{left:664.794000px;}
.x9f{left:666.747000px;}
.x84{left:667.767000px;}
.x89{left:669.789000px;}
.x11e{left:671.131500px;}
.x9c{left:672.760500px;}
.xe2{left:674.851500px;}
.x9d{left:676.342500px;}
.x57{left:677.391000px;}
.x154{left:678.498000px;}
.xb4{left:679.851000px;}
.x12d{left:680.914500px;}
.x136{left:681.937500px;}
.x58{left:683.751000px;}
.xb8{left:687.081000px;}
.x9e{left:690.838500px;}
.xfc{left:692.748000px;}
.xe3{left:694.647000px;}
.x59{left:695.665500px;}
.xd0{left:698.752500px;}
.x140{left:699.972000px;}
.x5a{left:702.025500px;}
.x13f{left:703.650000px;}
.xe8{left:705.447000px;}
.x81{left:707.392500px;}
.x72{left:709.023000px;}
.x141{left:710.445000px;}
.x166{left:711.874500px;}
.xd1{left:713.697000px;}
.x82{left:716.548500px;}
.x2e{left:718.171500px;}
.x1e{left:719.244000px;}
.x142{left:720.733500px;}
.xea{left:722.848500px;}
.x90{left:724.092000px;}
.x1f{left:725.670000px;}
.xf7{left:728.994000px;}
.x13e{left:730.363500px;}
.x2f{left:733.116000px;}
.x146{left:734.347500px;}
.x30{left:736.926000px;}
.x167{left:738.024000px;}
.xc8{left:739.173000px;}
.x4c{left:740.659500px;}
.x7b{left:742.533000px;}
.x121{left:743.535000px;}
.xa9{left:745.056000px;}
.x12e{left:746.731500px;}
.x145{left:748.039500px;}
.x11c{left:749.151000px;}
.x159{left:750.384000px;}
.x31{left:751.870500px;}
.x44{left:753.685500px;}
.xde{left:754.744500px;}
.x13d{left:755.808000px;}
.x97{left:757.963500px;}
.x7f{left:759.877500px;}
.xfa{left:761.373000px;}
.x20{left:763.113000px;}
.x168{left:764.923500px;}
.x80{left:766.239000px;}
.x45{left:768.480000px;}
.x21{left:769.539000px;}
.x98{left:772.908000px;}
.xf8{left:775.398000px;}
.xab{left:776.761500px;}
.xdb{left:778.237500px;}
.x36{left:780.787500px;}
.x125{left:781.882500px;}
.xfb{left:783.789000px;}
.xdc{left:784.845000px;}
.x7c{left:786.222000px;}
.x13a{left:788.239500px;}
.x175{left:789.516000px;}
.x92{left:792.468000px;}
.x91{left:795.549000px;}
.x171{left:796.684500px;}
.x5d{left:798.480000px;}
.x7d{left:801.016500px;}
.xe4{left:802.660500px;}
.x5e{left:804.840000px;}
.x93{left:807.412500px;}
.x138{left:808.471500px;}
.xac{left:810.310500px;}
.x126{left:811.620000px;}
.xbf{left:815.082000px;}
.x8a{left:817.029000px;}
.x22{left:818.967000px;}
.xdd{left:820.609500px;}
.x172{left:823.582500px;}
.x10{left:825.169500px;}
.x15f{left:827.134500px;}
.xfd{left:828.882000px;}
.xa0{left:830.041500px;}
.x11{left:832.642500px;}
.xc0{left:833.838000px;}
.xfe{left:836.314500px;}
.x8b{left:838.972500px;}
@media print{
.v3{vertical-align:-19.290667pt;}
.v2{vertical-align:-15.429333pt;}
.v6{vertical-align:-13.440533pt;}
.v8{vertical-align:-9.322667pt;}
.v4{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.401717pt;}
.v7{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.ls44{letter-spacing:-2.474272pt;}
.ls35{letter-spacing:-1.197056pt;}
.ls6b{letter-spacing:-0.213760pt;}
.lsbb{letter-spacing:-0.204336pt;}
.lsca{letter-spacing:-0.201041pt;}
.ls65{letter-spacing:-0.197728pt;}
.lsd0{letter-spacing:-0.195751pt;}
.lsbc{letter-spacing:-0.185328pt;}
.ls6f{letter-spacing:-0.154976pt;}
.lsb0{letter-spacing:-0.144000pt;}
.lscd{letter-spacing:-0.142845pt;}
.ls87{letter-spacing:-0.141120pt;}
.ls62{letter-spacing:-0.136192pt;}
.ls48{letter-spacing:-0.133600pt;}
.ls84{letter-spacing:-0.133468pt;}
.lsc9{letter-spacing:-0.132264pt;}
.ls3d{letter-spacing:-0.128256pt;}
.ls2f{letter-spacing:-0.127680pt;}
.lsb7{letter-spacing:-0.126403pt;}
.ls40{letter-spacing:-0.122912pt;}
.lsbf{letter-spacing:-0.121683pt;}
.ls45{letter-spacing:-0.117568pt;}
.lsb2{letter-spacing:-0.115200pt;}
.lsd2{letter-spacing:-0.114048pt;}
.ls89{letter-spacing:-0.112896pt;}
.ls42{letter-spacing:-0.112224pt;}
.ls95{letter-spacing:-0.109980pt;}
.ls47{letter-spacing:-0.106880pt;}
.ls38{letter-spacing:-0.101536pt;}
.lsc1{letter-spacing:-0.100521pt;}
.ls98{letter-spacing:-0.099505pt;}
.ls31{letter-spacing:-0.096192pt;}
.ls6a{letter-spacing:-0.090848pt;}
.lsc8{letter-spacing:-0.089940pt;}
.ls32{letter-spacing:-0.085504pt;}
.lsc2{letter-spacing:-0.084649pt;}
.ls43{letter-spacing:-0.080160pt;}
.ls91{letter-spacing:-0.078557pt;}
.ls69{letter-spacing:-0.074816pt;}
.lsce{letter-spacing:-0.074068pt;}
.lsb6{letter-spacing:-0.069472pt;}
.lscb{letter-spacing:-0.068777pt;}
.ls90{letter-spacing:-0.068083pt;}
.ls6c{letter-spacing:-0.064128pt;}
.ls94{letter-spacing:-0.062845pt;}
.ls46{letter-spacing:-0.058784pt;}
.lscc{letter-spacing:-0.058196pt;}
.ls6e{letter-spacing:-0.053440pt;}
.ls67{letter-spacing:-0.052800pt;}
.ls97{letter-spacing:-0.052371pt;}
.ls64{letter-spacing:-0.048000pt;}
.ls36{letter-spacing:-0.043200pt;}
.ls3c{letter-spacing:-0.042752pt;}
.lsc3{letter-spacing:-0.042324pt;}
.ls3b{letter-spacing:-0.037408pt;}
.lscf{letter-spacing:-0.037034pt;}
.ls8d{letter-spacing:-0.036660pt;}
.ls41{letter-spacing:-0.032064pt;}
.ls96{letter-spacing:-0.031423pt;}
.ls39{letter-spacing:-0.026720pt;}
.lsc7{letter-spacing:-0.026453pt;}
.ls68{letter-spacing:-0.021376pt;}
.lsc4{letter-spacing:-0.021162pt;}
.ls92{letter-spacing:-0.020948pt;}
.lsaf{letter-spacing:-0.019200pt;}
.lsd1{letter-spacing:-0.019008pt;}
.ls86{letter-spacing:-0.018816pt;}
.ls3a{letter-spacing:-0.016032pt;}
.lsc6{letter-spacing:-0.015872pt;}
.ls8c{letter-spacing:-0.015711pt;}
.ls37{letter-spacing:-0.014400pt;}
.lsba{letter-spacing:-0.014256pt;}
.ls8b{letter-spacing:-0.014112pt;}
.ls63{letter-spacing:-0.012768pt;}
.ls85{letter-spacing:-0.012513pt;}
.ls3f{letter-spacing:-0.010688pt;}
.lsc5{letter-spacing:-0.010581pt;}
.ls93{letter-spacing:-0.010474pt;}
.ls66{letter-spacing:-0.009600pt;}
.ls3e{letter-spacing:-0.005344pt;}
.lsc0{letter-spacing:-0.005291pt;}
.lsb1{letter-spacing:-0.004800pt;}
.ls88{letter-spacing:-0.004704pt;}
.ls30{letter-spacing:-0.004256pt;}
.lsb8{letter-spacing:-0.004213pt;}
.ls83{letter-spacing:-0.004171pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.000054pt;}
.lse5{letter-spacing:0.000361pt;}
.lsf{letter-spacing:0.000405pt;}
.ls4a{letter-spacing:0.000544pt;}
.ls4c{letter-spacing:0.000554pt;}
.lse9{letter-spacing:0.000711pt;}
.lsf3{letter-spacing:0.001007pt;}
.ls4b{letter-spacing:0.001940pt;}
.lsd6{letter-spacing:0.002425pt;}
.lsd9{letter-spacing:0.002703pt;}
.ls4d{letter-spacing:0.003148pt;}
.lsdd{letter-spacing:0.003230pt;}
.lsae{letter-spacing:0.003635pt;}
.ls9a{letter-spacing:0.004213pt;}
.ls1b{letter-spacing:0.004256pt;}
.lsed{letter-spacing:0.004267pt;}
.ls75{letter-spacing:0.004704pt;}
.lsa0{letter-spacing:0.004752pt;}
.ls56{letter-spacing:0.004800pt;}
.ls25{letter-spacing:0.005344pt;}
.lsb9{letter-spacing:0.005829pt;}
.ls1f{letter-spacing:0.006400pt;}
.ls76{letter-spacing:0.009408pt;}
.lsad{letter-spacing:0.009504pt;}
.ls55{letter-spacing:0.009600pt;}
.ls2c{letter-spacing:0.010688pt;}
.ls78{letter-spacing:0.014112pt;}
.ls9d{letter-spacing:0.014256pt;}
.ls5a{letter-spacing:0.014400pt;}
.lsa7{letter-spacing:0.015872pt;}
.ls2e{letter-spacing:0.016032pt;}
.ls74{letter-spacing:0.018816pt;}
.lsa1{letter-spacing:0.019008pt;}
.ls57{letter-spacing:0.019200pt;}
.lsa3{letter-spacing:0.021162pt;}
.ls79{letter-spacing:0.023520pt;}
.ls23{letter-spacing:0.024000pt;}
.ls7e{letter-spacing:0.026186pt;}
.lsa8{letter-spacing:0.026453pt;}
.ls2a{letter-spacing:0.026720pt;}
.ls77{letter-spacing:0.028224pt;}
.ls9f{letter-spacing:0.028512pt;}
.ls22{letter-spacing:0.028800pt;}
.ls27{letter-spacing:0.032064pt;}
.ls7a{letter-spacing:0.032928pt;}
.lsa2{letter-spacing:0.033264pt;}
.ls20{letter-spacing:0.033600pt;}
.lsa6{letter-spacing:0.037034pt;}
.ls2d{letter-spacing:0.037408pt;}
.ls58{letter-spacing:0.038400pt;}
.ls7f{letter-spacing:0.041897pt;}
.lsa9{letter-spacing:0.042324pt;}
.ls5c{letter-spacing:0.042752pt;}
.lsac{letter-spacing:0.042768pt;}
.lsbe{letter-spacing:0.047520pt;}
.lsab{letter-spacing:0.047615pt;}
.ls1e{letter-spacing:0.048096pt;}
.ls80{letter-spacing:0.052371pt;}
.ls24{letter-spacing:0.052800pt;}
.lsa5{letter-spacing:0.052906pt;}
.ls2b{letter-spacing:0.053440pt;}
.ls7c{letter-spacing:0.056448pt;}
.ls21{letter-spacing:0.057600pt;}
.lsaa{letter-spacing:0.058196pt;}
.ls49{letter-spacing:0.058784pt;}
.ls9e{letter-spacing:0.061776pt;}
.lsa4{letter-spacing:0.063487pt;}
.ls26{letter-spacing:0.064128pt;}
.ls8e{letter-spacing:0.068083pt;}
.lsb4{letter-spacing:0.069472pt;}
.ls28{letter-spacing:0.074816pt;}
.ls33{letter-spacing:0.090848pt;}
.ls8a{letter-spacing:0.103488pt;}
.lsb3{letter-spacing:0.105600pt;}
.ls7b{letter-spacing:0.108192pt;}
.ls5b{letter-spacing:0.110400pt;}
.ls59{letter-spacing:0.122912pt;}
.ls7d{letter-spacing:0.127008pt;}
.ls99{letter-spacing:0.129600pt;}
.ls29{letter-spacing:0.138944pt;}
.ls73{letter-spacing:0.150152pt;}
.ls54{letter-spacing:0.153216pt;}
.ls1d{letter-spacing:0.157472pt;}
.ls72{letter-spacing:0.158493pt;}
.ls9c{letter-spacing:0.160111pt;}
.ls53{letter-spacing:0.161728pt;}
.ls9b{letter-spacing:0.168538pt;}
.ls1c{letter-spacing:0.170240pt;}
.ls34{letter-spacing:0.171008pt;}
.ls8{letter-spacing:0.279835pt;}
.ls9{letter-spacing:0.285169pt;}
.ls6d{letter-spacing:0.331328pt;}
.lsf2{letter-spacing:0.447791pt;}
.lsf1{letter-spacing:0.464533pt;}
.ls11{letter-spacing:0.482502pt;}
.ls12{letter-spacing:0.487835pt;}
.ls13{letter-spacing:0.502400pt;}
.lsd{letter-spacing:0.668173pt;}
.ls8f{letter-spacing:2.587137pt;}
.lsb5{letter-spacing:2.639936pt;}
.lse{letter-spacing:2.656290pt;}
.ls1{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls5e{letter-spacing:2.696800pt;}
.ls81{letter-spacing:3.118133pt;}
.ls14{letter-spacing:3.158400pt;}
.ls15{letter-spacing:3.163733pt;}
.lsbd{letter-spacing:3.649536pt;}
.ls0{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.626533pt;}
.ls5d{letter-spacing:11.353600pt;}
.lse4{letter-spacing:11.714091pt;}
.lsd4{letter-spacing:11.789956pt;}
.lseb{letter-spacing:11.807176pt;}
.lse7{letter-spacing:11.855451pt;}
.lsea{letter-spacing:11.870543pt;}
.lsf5{letter-spacing:11.892419pt;}
.lsf4{letter-spacing:11.925397pt;}
.lsd3{letter-spacing:11.954133pt;}
.lsd7{letter-spacing:11.959467pt;}
.lse2{letter-spacing:11.961885pt;}
.lsf0{letter-spacing:12.050198pt;}
.lsdc{letter-spacing:12.098781pt;}
.lsde{letter-spacing:12.120527pt;}
.lsee{letter-spacing:12.147781pt;}
.lse0{letter-spacing:12.161450pt;}
.lsd8{letter-spacing:12.169715pt;}
.lsf6{letter-spacing:12.175146pt;}
.lsec{letter-spacing:12.489244pt;}
.lse6{letter-spacing:12.551990pt;}
.lse8{letter-spacing:12.640878pt;}
.ls16{letter-spacing:12.684071pt;}
.ls10{letter-spacing:12.699747pt;}
.lsc{letter-spacing:12.947733pt;}
.ls71{letter-spacing:13.017797pt;}
.ls4f{letter-spacing:13.045419pt;}
.ls70{letter-spacing:13.070931pt;}
.ls50{letter-spacing:13.267949pt;}
.ls60{letter-spacing:13.365201pt;}
.ls61{letter-spacing:13.496002pt;}
.lsdb{letter-spacing:13.524539pt;}
.ls1a{letter-spacing:13.549136pt;}
.lsa{letter-spacing:13.592429pt;}
.ls7{letter-spacing:13.602270pt;}
.ls5f{letter-spacing:13.647113pt;}
.ls18{letter-spacing:13.917762pt;}
.ls17{letter-spacing:13.950400pt;}
.lsef{letter-spacing:14.131075pt;}
.lsda{letter-spacing:14.512774pt;}
.lsd5{letter-spacing:14.737610pt;}
.lse1{letter-spacing:14.931075pt;}
.lse3{letter-spacing:14.946761pt;}
.ls52{letter-spacing:15.037962pt;}
.lsb{letter-spacing:15.638400pt;}
.ls19{letter-spacing:15.942400pt;}
.ls51{letter-spacing:16.205829pt;}
.ls82{letter-spacing:17.055971pt;}
.lsdf{letter-spacing:17.247414pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ws94{word-spacing:-53.440000pt;}
.ws144{word-spacing:-52.371200pt;}
.wsf8{word-spacing:-13.360000pt;}
.ws44{word-spacing:-13.283467pt;}
.wsfb{word-spacing:-13.205024pt;}
.wsf{word-spacing:-12.760670pt;}
.wsf9{word-spacing:-12.000000pt;}
.ws93{word-spacing:-11.985600pt;}
.ws92{word-spacing:-11.956800pt;}
.ws98{word-spacing:-11.955200pt;}
.ws143{word-spacing:-11.760000pt;}
.ws90{word-spacing:-10.810240pt;}
.wsf7{word-spacing:-10.801728pt;}
.ws172{word-spacing:-10.702138pt;}
.ws91{word-spacing:-10.640000pt;}
.ws2e{word-spacing:-10.626800pt;}
.ws141{word-spacing:-10.585693pt;}
.ws173{word-spacing:-10.533600pt;}
.ws142{word-spacing:-10.427200pt;}
.wsd{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws95{word-spacing:-8.006400pt;}
.wsfa{word-spacing:-8.000000pt;}
.wsf2{word-spacing:-4.675780pt;}
.ws53{word-spacing:-2.975497pt;}
.wsd9{word-spacing:-2.821632pt;}
.wsd8{word-spacing:-2.784224pt;}
.wsec{word-spacing:-2.709827pt;}
.ws1ac{word-spacing:-2.682314pt;}
.wscc{word-spacing:-2.527712pt;}
.wsd3{word-spacing:-2.500992pt;}
.ws56{word-spacing:-2.497292pt;}
.wsd2{word-spacing:-2.484960pt;}
.ws79{word-spacing:-2.444158pt;}
.wse6{word-spacing:-2.391024pt;}
.ws1ab{word-spacing:-2.349009pt;}
.ws12{word-spacing:-2.295398pt;}
.wse7{word-spacing:-2.231622pt;}
.wsae{word-spacing:-2.137600pt;}
.wsad{word-spacing:-2.116224pt;}
.wse9{word-spacing:-2.072221pt;}
.ws13c{word-spacing:-1.912832pt;}
.ws8c{word-spacing:-1.912819pt;}
.wsce{word-spacing:-1.822304pt;}
.wsac{word-spacing:-1.816960pt;}
.ws1a9{word-spacing:-1.809372pt;}
.ws12b{word-spacing:-1.779552pt;}
.ws190{word-spacing:-1.774208pt;}
.wseb{word-spacing:-1.753418pt;}
.ws167{word-spacing:-1.738724pt;}
.ws13d{word-spacing:-1.721549pt;}
.ws30{word-spacing:-1.700284pt;}
.wscd{word-spacing:-1.699392pt;}
.ws1a8{word-spacing:-1.692979pt;}
.ws4a{word-spacing:-1.647150pt;}
.ws1d7{word-spacing:-1.618911pt;}
.wsea{word-spacing:-1.594016pt;}
.wsc1{word-spacing:-1.544416pt;}
.ws68{word-spacing:-1.540882pt;}
.ws20d{word-spacing:-1.530266pt;}
.ws18f{word-spacing:-1.507008pt;}
.ws115{word-spacing:-1.497600pt;}
.ws1d6{word-spacing:-1.486647pt;}
.ws136{word-spacing:-1.485632pt;}
.ws20a{word-spacing:-1.482445pt;}
.ws166{word-spacing:-1.476868pt;}
.ws1d5{word-spacing:-1.465485pt;}
.ws114{word-spacing:-1.454400pt;}
.ws12c{word-spacing:-1.453568pt;}
.ws8f{word-spacing:-1.434614pt;}
.ws137{word-spacing:-1.426848pt;}
.wsc2{word-spacing:-1.405472pt;}
.ws116{word-spacing:-1.387200pt;}
.ws6c{word-spacing:-1.381481pt;}
.ws4b{word-spacing:-1.328347pt;}
.ws21a{word-spacing:-1.291162pt;}
.ws60{word-spacing:-1.275213pt;}
.ws18e{word-spacing:-1.245152pt;}
.ws20f{word-spacing:-1.243341pt;}
.ws85{word-spacing:-1.222079pt;}
.ws165{word-spacing:-1.220249pt;}
.ws13b{word-spacing:-1.195520pt;}
.ws86{word-spacing:-1.168945pt;}
.ws87{word-spacing:-1.115811pt;}
.ws1f{word-spacing:-1.062677pt;}
.ws20{word-spacing:-1.009543pt;}
.wsfd{word-spacing:-1.004237pt;}
.ws102{word-spacing:-0.956410pt;}
.ws13a{word-spacing:-0.908595pt;}
.wse0{word-spacing:-0.903276pt;}
.ws1c6{word-spacing:-0.883524pt;}
.wsc0{word-spacing:-0.876416pt;}
.ws5d{word-spacing:-0.850142pt;}
.ws1e0{word-spacing:-0.831600pt;}
.ws1df{word-spacing:-0.807840pt;}
.ws17d{word-spacing:-0.806400pt;}
.ws1db{word-spacing:-0.798336pt;}
.ws61{word-spacing:-0.797008pt;}
.ws17c{word-spacing:-0.796800pt;}
.wsb6{word-spacing:-0.790912pt;}
.ws152{word-spacing:-0.790272pt;}
.ws151{word-spacing:-0.780864pt;}
.ws262{word-spacing:-0.765133pt;}
.wsde{word-spacing:-0.743874pt;}
.ws81{word-spacing:-0.690740pt;}
.wsfc{word-spacing:-0.669491pt;}
.ws3d{word-spacing:-0.637606pt;}
.ws101{word-spacing:-0.621670pt;}
.wsa0{word-spacing:-0.603872pt;}
.ws11d{word-spacing:-0.598528pt;}
.ws6b{word-spacing:-0.587565pt;}
.ws45{word-spacing:-0.584473pt;}
.wsff{word-spacing:-0.573850pt;}
.ws1aa{word-spacing:-0.571380pt;}
.ws43{word-spacing:-0.531339pt;}
.ws24b{word-spacing:-0.526029pt;}
.ws10e{word-spacing:-0.518400pt;}
.ws1d9{word-spacing:-0.513216pt;}
.ws10f{word-spacing:-0.508800pt;}
.ws1c4{word-spacing:-0.507894pt;}
.ws10d{word-spacing:-0.489600pt;}
.ws13{word-spacing:-0.478208pt;}
.wse4{word-spacing:-0.478205pt;}
.wsa1{word-spacing:-0.470272pt;}
.ws1da{word-spacing:-0.456192pt;}
.ws1dc{word-spacing:-0.451440pt;}
.ws1c3{word-spacing:-0.449698pt;}
.wsb5{word-spacing:-0.432864pt;}
.wsfe{word-spacing:-0.430387pt;}
.ws6d{word-spacing:-0.425071pt;}
.ws54{word-spacing:-0.371937pt;}
.ws1ea{word-spacing:-0.334746pt;}
.ws4e{word-spacing:-0.318803pt;}
.ws1ae{word-spacing:-0.301562pt;}
.wsb2{word-spacing:-0.299264pt;}
.ws1ad{word-spacing:-0.296271pt;}
.ws175{word-spacing:-0.286925pt;}
.ws1d1{word-spacing:-0.285690pt;}
.ws32{word-spacing:-0.265669pt;}
.ws1bc{word-spacing:-0.248656pt;}
.ws1e5{word-spacing:-0.239104pt;}
.ws25{word-spacing:-0.212535pt;}
.wscb{word-spacing:-0.197728pt;}
.ws10a{word-spacing:-0.192000pt;}
.ws1fc{word-spacing:-0.191283pt;}
.ws109{word-spacing:-0.177600pt;}
.wsc7{word-spacing:-0.176352pt;}
.ws1c7{word-spacing:-0.164007pt;}
.ws108{word-spacing:-0.163200pt;}
.ws2c{word-spacing:-0.159402pt;}
.ws10c{word-spacing:-0.144000pt;}
.ws146{word-spacing:-0.143462pt;}
.wsc6{word-spacing:-0.117568pt;}
.ws10b{word-spacing:-0.110400pt;}
.wsb1{word-spacing:-0.106880pt;}
.ws33{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws9c{word-spacing:-0.072352pt;}
.ws19a{word-spacing:-0.071628pt;}
.ws104{word-spacing:-0.068096pt;}
.ws14b{word-spacing:-0.066734pt;}
.ws22{word-spacing:-0.053134pt;}
.ws100{word-spacing:-0.047821pt;}
.ws2f{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws239{word-spacing:-0.031023pt;}
.ws20e{word-spacing:-0.004617pt;}
.wse{word-spacing:-0.003594pt;}
.ws25a{word-spacing:-0.003063pt;}
.wsc{word-spacing:-0.002956pt;}
.ws25d{word-spacing:-0.002236pt;}
.ws253{word-spacing:-0.001894pt;}
.ws1{word-spacing:0.000000pt;}
.ws23e{word-spacing:0.001067pt;}
.wse5{word-spacing:0.001333pt;}
.ws26e{word-spacing:0.002133pt;}
.ws265{word-spacing:0.003319pt;}
.wscf{word-spacing:0.026720pt;}
.ws1c2{word-spacing:0.042324pt;}
.ws1c5{word-spacing:0.047615pt;}
.ws1e4{word-spacing:0.047821pt;}
.ws122{word-spacing:0.048096pt;}
.ws199{word-spacing:0.050561pt;}
.ws9b{word-spacing:0.051072pt;}
.ws21{word-spacing:0.053134pt;}
.ws14a{word-spacing:0.054221pt;}
.ws103{word-spacing:0.055328pt;}
.ws1b6{word-spacing:0.068777pt;}
.ws132{word-spacing:0.069472pt;}
.wsd7{word-spacing:0.074816pt;}
.wsbf{word-spacing:0.085504pt;}
.ws1d8{word-spacing:0.089940pt;}
.ws145{word-spacing:0.095642pt;}
.ws1b5{word-spacing:0.100521pt;}
.ws36{word-spacing:0.106268pt;}
.wsa8{word-spacing:0.110400pt;}
.ws154{word-spacing:0.127008pt;}
.ws1a7{word-spacing:0.128304pt;}
.ws17f{word-spacing:0.129600pt;}
.ws156{word-spacing:0.131712pt;}
.ws1e1{word-spacing:0.133056pt;}
.ws181{word-spacing:0.134400pt;}
.ws155{word-spacing:0.141120pt;}
.ws1a6{word-spacing:0.142560pt;}
.ws17{word-spacing:0.143462pt;}
.ws180{word-spacing:0.144000pt;}
.ws153{word-spacing:0.145824pt;}
.ws161{word-spacing:0.146639pt;}
.ws17e{word-spacing:0.148800pt;}
.ws18b{word-spacing:0.149632pt;}
.ws38{word-spacing:0.159402pt;}
.ws138{word-spacing:0.160320pt;}
.ws15d{word-spacing:0.169344pt;}
.wsbc{word-spacing:0.171008pt;}
.ws119{word-spacing:0.172800pt;}
.ws170{word-spacing:0.178062pt;}
.wsa4{word-spacing:0.181696pt;}
.ws124{word-spacing:0.187040pt;}
.ws1e9{word-spacing:0.191283pt;}
.ws6a{word-spacing:0.210573pt;}
.ws2a{word-spacing:0.212535pt;}
.ws1f6{word-spacing:0.239104pt;}
.ws1e{word-spacing:0.265669pt;}
.ws217{word-spacing:0.286925pt;}
.ws3c{word-spacing:0.318803pt;}
.ws52{word-spacing:0.329205pt;}
.ws201{word-spacing:0.334746pt;}
.wsd5{word-spacing:0.368736pt;}
.wsed{word-spacing:0.371937pt;}
.ws171{word-spacing:0.382566pt;}
.ws11b{word-spacing:0.390112pt;}
.ws133{word-spacing:0.416832pt;}
.ws19d{word-spacing:0.418176pt;}
.ws16d{word-spacing:0.424207pt;}
.ws65{word-spacing:0.425071pt;}
.ws200{word-spacing:0.430387pt;}
.ws196{word-spacing:0.432864pt;}
.ws19e{word-spacing:0.451440pt;}
.ws16e{word-spacing:0.460867pt;}
.ws148{word-spacing:0.464000pt;}
.ws19c{word-spacing:0.465696pt;}
.ws267{word-spacing:0.468267pt;}
.ws197{word-spacing:0.470272pt;}
.ws1d2{word-spacing:0.476150pt;}
.ws23{word-spacing:0.478205pt;}
.ws259{word-spacing:0.478208pt;}
.ws10{word-spacing:0.499721pt;}
.wsdd{word-spacing:0.500000pt;}
.ws139{word-spacing:0.526029pt;}
.ws34{word-spacing:0.531339pt;}
.ws37{word-spacing:0.584473pt;}
.wsbb{word-spacing:0.587840pt;}
.ws1c{word-spacing:0.621670pt;}
.ws225{word-spacing:0.669491pt;}
.ws120{word-spacing:0.673344pt;}
.ws62{word-spacing:0.690740pt;}
.ws1fe{word-spacing:0.717312pt;}
.wsba{word-spacing:0.737472pt;}
.ws4f{word-spacing:0.743874pt;}
.ws1dd{word-spacing:0.755568pt;}
.ws121{word-spacing:0.764192pt;}
.ws274{word-spacing:0.765133pt;}
.ws135{word-spacing:0.774880pt;}
.ws29{word-spacing:0.797008pt;}
.ws256{word-spacing:0.812954pt;}
.ws9f{word-spacing:0.817632pt;}
.ws1c9{word-spacing:0.820037pt;}
.ws35{word-spacing:0.850142pt;}
.ws1ca{word-spacing:0.862361pt;}
.ws1de{word-spacing:0.912384pt;}
.ws4c{word-spacing:0.956410pt;}
.ws219{word-spacing:0.956416pt;}
.ws241{word-spacing:1.004237pt;}
.ws2b{word-spacing:1.009543pt;}
.ws127{word-spacing:1.026048pt;}
.ws220{word-spacing:1.052058pt;}
.ws13e{word-spacing:1.062677pt;}
.wsc5{word-spacing:1.084832pt;}
.ws255{word-spacing:1.099878pt;}
.ws63{word-spacing:1.115811pt;}
.ws9e{word-spacing:1.143616pt;}
.ws50{word-spacing:1.168945pt;}
.ws21c{word-spacing:1.195520pt;}
.ws64{word-spacing:1.222079pt;}
.ws205{word-spacing:1.243341pt;}
.ws128{word-spacing:1.255840pt;}
.ws25f{word-spacing:1.291162pt;}
.ws58{word-spacing:1.328347pt;}
.wsb8{word-spacing:1.336000pt;}
.ws266{word-spacing:1.338982pt;}
.wsbe{word-spacing:1.373408pt;}
.wsb7{word-spacing:1.378752pt;}
.ws5c{word-spacing:1.381481pt;}
.ws12e{word-spacing:1.384096pt;}
.ws222{word-spacing:1.386803pt;}
.ws14f{word-spacing:1.392384pt;}
.wsbd{word-spacing:1.400128pt;}
.ws111{word-spacing:1.416000pt;}
.ws17a{word-spacing:1.420800pt;}
.ws31{word-spacing:1.434614pt;}
.ws113{word-spacing:1.440000pt;}
.ws131{word-spacing:1.442880pt;}
.ws112{word-spacing:1.449600pt;}
.ws11c{word-spacing:1.453568pt;}
.ws12d{word-spacing:1.480288pt;}
.ws49{word-spacing:1.487748pt;}
.ws1f9{word-spacing:1.530266pt;}
.ws76{word-spacing:1.540882pt;}
.ws21e{word-spacing:1.578086pt;}
.ws1b2{word-spacing:1.613621pt;}
.ws268{word-spacing:1.625907pt;}
.ws80{word-spacing:1.647150pt;}
.ws1fb{word-spacing:1.673728pt;}
.ws1b1{word-spacing:1.687689pt;}
.ws6f{word-spacing:1.700284pt;}
.ws26d{word-spacing:1.721549pt;}
.ws14e{word-spacing:1.726368pt;}
.ws106{word-spacing:1.737600pt;}
.ws1a0{word-spacing:1.743984pt;}
.ws14d{word-spacing:1.745184pt;}
.ws107{word-spacing:1.752000pt;}
.ws70{word-spacing:1.753418pt;}
.ws179{word-spacing:1.761600pt;}
.ws19f{word-spacing:1.762992pt;}
.ws178{word-spacing:1.780800pt;}
.ws24{word-spacing:1.806551pt;}
.ws27{word-spacing:1.859685pt;}
.ws1a{word-spacing:1.865011pt;}
.ws150{word-spacing:1.867488pt;}
.ws17b{word-spacing:1.905600pt;}
.ws140{word-spacing:1.912819pt;}
.ws19{word-spacing:1.912832pt;}
.ws18{word-spacing:1.921428pt;}
.ws1a2{word-spacing:1.934064pt;}
.ws1ba{word-spacing:1.946926pt;}
.ws1a1{word-spacing:1.953072pt;}
.ws1e7{word-spacing:1.960653pt;}
.ws67{word-spacing:1.965953pt;}
.ws214{word-spacing:2.008474pt;}
.ws39{word-spacing:2.019087pt;}
.ws158{word-spacing:2.022720pt;}
.ws157{word-spacing:2.055648pt;}
.ws223{word-spacing:2.056294pt;}
.ws183{word-spacing:2.064000pt;}
.ws7d{word-spacing:2.072221pt;}
.ws1b9{word-spacing:2.079190pt;}
.ws182{word-spacing:2.097600pt;}
.ws3e{word-spacing:2.125355pt;}
.ws1b{word-spacing:2.151936pt;}
.ws78{word-spacing:2.178489pt;}
.ws14{word-spacing:2.199757pt;}
.ws72{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.wsb9{word-spacing:2.249824pt;}
.ws3f{word-spacing:2.284756pt;}
.ws164{word-spacing:2.293859pt;}
.ws1f1{word-spacing:2.295398pt;}
.wsd1{word-spacing:2.297920pt;}
.wsc3{word-spacing:2.324640pt;}
.ws8a{word-spacing:2.337890pt;}
.wsc4{word-spacing:2.340672pt;}
.ws1f4{word-spacing:2.343219pt;}
.wsc8{word-spacing:2.367392pt;}
.wsf6{word-spacing:2.391024pt;}
.wsd0{word-spacing:2.410144pt;}
.ws1ee{word-spacing:2.438861pt;}
.ws59{word-spacing:2.444158pt;}
.ws28{word-spacing:2.497292pt;}
.ws7c{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.ws216{word-spacing:2.582323pt;}
.ws5f{word-spacing:2.603559pt;}
.ws1ff{word-spacing:2.630144pt;}
.wsca{word-spacing:2.655968pt;}
.ws51{word-spacing:2.656693pt;}
.ws42{word-spacing:2.709827pt;}
.ws123{word-spacing:2.714752pt;}
.wsc9{word-spacing:2.752160pt;}
.wsef{word-spacing:2.762961pt;}
.ws245{word-spacing:2.773606pt;}
.ws66{word-spacing:2.816095pt;}
.ws211{word-spacing:2.860510pt;}
.ws208{word-spacing:2.861210pt;}
.ws24a{word-spacing:2.861397pt;}
.ws26b{word-spacing:2.861525pt;}
.ws20b{word-spacing:2.864145pt;}
.ws206{word-spacing:2.866500pt;}
.ws257{word-spacing:2.868412pt;}
.ws5b{word-spacing:2.869229pt;}
.ws147{word-spacing:2.869248pt;}
.ws1d3{word-spacing:2.878065pt;}
.ws229{word-spacing:2.917069pt;}
.ws69{word-spacing:2.922363pt;}
.ws16a{word-spacing:2.932787pt;}
.ws97{word-spacing:2.964890pt;}
.ws55{word-spacing:2.975497pt;}
.ws193{word-spacing:2.992640pt;}
.ws169{word-spacing:3.011344pt;}
.ws244{word-spacing:3.012710pt;}
.wse2{word-spacing:3.028630pt;}
.ws1e6{word-spacing:3.060531pt;}
.ws192{word-spacing:3.072800pt;}
.ws26{word-spacing:3.134898pt;}
.ws1f0{word-spacing:3.156173pt;}
.ws168{word-spacing:3.163220pt;}
.ws1d{word-spacing:3.188032pt;}
.ws15c{word-spacing:3.189312pt;}
.ws163{word-spacing:3.189406pt;}
.ws191{word-spacing:3.227776pt;}
.ws96{word-spacing:3.251814pt;}
.ws187{word-spacing:3.254400pt;}
.ws18d{word-spacing:3.254496pt;}
.ws162{word-spacing:3.294148pt;}
.ws41{word-spacing:3.294300pt;}
.ws260{word-spacing:3.299635pt;}
.ws5e{word-spacing:3.347434pt;}
.ws18c{word-spacing:3.361376pt;}
.wsdf{word-spacing:3.400567pt;}
.ws40{word-spacing:3.453701pt;}
.ws8b{word-spacing:3.506835pt;}
.ws21b{word-spacing:3.538739pt;}
.ws15e{word-spacing:3.545530pt;}
.ws15b{word-spacing:3.551520pt;}
.ws15f{word-spacing:3.566479pt;}
.ws159{word-spacing:3.575040pt;}
.ws258{word-spacing:3.586560pt;}
.ws1a5{word-spacing:3.602016pt;}
.ws84{word-spacing:3.613103pt;}
.ws188{word-spacing:3.617888pt;}
.ws186{word-spacing:3.624000pt;}
.wsab{word-spacing:3.633920pt;}
.ws1a4{word-spacing:3.635280pt;}
.ws189{word-spacing:3.639264pt;}
.ws1a3{word-spacing:3.644784pt;}
.ws184{word-spacing:3.648000pt;}
.ws13f{word-spacing:3.666237pt;}
.ws20c{word-spacing:3.682202pt;}
.wsaa{word-spacing:3.708736pt;}
.ws149{word-spacing:3.719371pt;}
.ws15a{word-spacing:3.720864pt;}
.ws23f{word-spacing:3.730022pt;}
.ws276{word-spacing:3.777843pt;}
.ws185{word-spacing:3.796800pt;}
.ws1f7{word-spacing:3.825664pt;}
.wsa3{word-spacing:3.836992pt;}
.ws1b3{word-spacing:3.851528pt;}
.ws1fa{word-spacing:3.873485pt;}
.ws1b4{word-spacing:3.899143pt;}
.wsdc{word-spacing:3.931906pt;}
.wsb3{word-spacing:3.933184pt;}
.wsb4{word-spacing:3.938528pt;}
.ws24c{word-spacing:4.016947pt;}
.ws1e2{word-spacing:4.038174pt;}
.ws275{word-spacing:4.112589pt;}
.ws1cc{word-spacing:4.142508pt;}
.ws48{word-spacing:4.144442pt;}
.ws272{word-spacing:4.160410pt;}
.wse1{word-spacing:4.197575pt;}
.ws1e8{word-spacing:4.208230pt;}
.ws1cb{word-spacing:4.211286pt;}
.ws126{word-spacing:4.232448pt;}
.wsa{word-spacing:4.240070pt;}
.ws77{word-spacing:4.250709pt;}
.ws99{word-spacing:4.303843pt;}
.ws240{word-spacing:4.303872pt;}
.ws125{word-spacing:4.312608pt;}
.wsb{word-spacing:4.314458pt;}
.ws75{word-spacing:4.410111pt;}
.ws24d{word-spacing:4.447334pt;}
.ws73{word-spacing:4.463245pt;}
.ws7a{word-spacing:4.569513pt;}
.ws249{word-spacing:4.686438pt;}
.wse8{word-spacing:4.728914pt;}
.ws1c1{word-spacing:4.819700pt;}
.ws1b7{word-spacing:4.862025pt;}
.ws47{word-spacing:4.888316pt;}
.ws11e{word-spacing:4.911136pt;}
.wsd6{word-spacing:4.921824pt;}
.ws1b8{word-spacing:4.925511pt;}
.ws273{word-spacing:4.973363pt;}
.wsf0{word-spacing:5.047717pt;}
.ws1cf{word-spacing:5.094809pt;}
.ws1d4{word-spacing:5.105390pt;}
.wsda{word-spacing:5.140928pt;}
.ws1ce{word-spacing:5.153005pt;}
.ws15{word-spacing:5.164646pt;}
.wsdb{word-spacing:5.189024pt;}
.ws1cd{word-spacing:5.211202pt;}
.ws248{word-spacing:5.212467pt;}
.ws118{word-spacing:5.241600pt;}
.ws57{word-spacing:5.260253pt;}
.ws117{word-spacing:5.270400pt;}
.ws1d0{word-spacing:5.285269pt;}
.ws11f{word-spacing:5.295904pt;}
.ws228{word-spacing:5.308109pt;}
.ws1e3{word-spacing:5.313387pt;}
.ws174{word-spacing:5.332000pt;}
.ws1c0{word-spacing:5.354047pt;}
.ws88{word-spacing:5.366521pt;}
.ws226{word-spacing:5.403750pt;}
.wsa2{word-spacing:5.477600pt;}
.ws23d{word-spacing:5.499392pt;}
.ws134{word-spacing:5.509664pt;}
.ws1c8{word-spacing:5.528635pt;}
.ws218{word-spacing:5.547213pt;}
.wsa6{word-spacing:5.548800pt;}
.ws11a{word-spacing:5.557760pt;}
.wsa5{word-spacing:5.572800pt;}
.wsa7{word-spacing:5.577600pt;}
.ws233{word-spacing:5.595034pt;}
.ws270{word-spacing:5.690675pt;}
.ws6e{word-spacing:5.791591pt;}
.wsf5{word-spacing:5.847044pt;}
.ws24e{word-spacing:5.881958pt;}
.ws7f{word-spacing:5.897859pt;}
.ws8e{word-spacing:5.950993pt;}
.ws24f{word-spacing:5.977600pt;}
.ws46{word-spacing:6.057261pt;}
.ws9a{word-spacing:6.110395pt;}
.ws89{word-spacing:6.163529pt;}
.ws176{word-spacing:6.264525pt;}
.ws83{word-spacing:6.269796pt;}
.ws160{word-spacing:6.284544pt;}
.ws1bf{word-spacing:6.396287pt;}
.ws18a{word-spacing:6.412800pt;}
.ws5a{word-spacing:6.429198pt;}
.ws177{word-spacing:6.599270pt;}
.ws231{word-spacing:6.647091pt;}
.ws22f{word-spacing:6.694912pt;}
.ws1ec{word-spacing:6.742733pt;}
.wsd4{word-spacing:6.770848pt;}
.ws236{word-spacing:6.838374pt;}
.ws8{word-spacing:6.918010pt;}
.ws264{word-spacing:6.934016pt;}
.ws3a{word-spacing:6.960537pt;}
.ws3b{word-spacing:7.013670pt;}
.ws238{word-spacing:7.125299pt;}
.ws129{word-spacing:7.155616pt;}
.ws82{word-spacing:7.173072pt;}
.ws12a{word-spacing:7.214400pt;}
.ws4d{word-spacing:7.279340pt;}
.ws22b{word-spacing:7.316582pt;}
.ws251{word-spacing:7.364403pt;}
.ws1be{word-spacing:7.502014pt;}
.ws1bd{word-spacing:7.507305pt;}
.wsee{word-spacing:7.545009pt;}
.ws7e{word-spacing:7.651277pt;}
.ws242{word-spacing:7.938253pt;}
.ws16b{word-spacing:7.949948pt;}
.ws16c{word-spacing:7.970897pt;}
.ws130{word-spacing:8.085472pt;}
.ws194{word-spacing:8.112192pt;}
.ws195{word-spacing:8.133568pt;}
.ws12f{word-spacing:8.192352pt;}
.ws16f{word-spacing:8.253701pt;}
.ws71{word-spacing:8.395151pt;}
.wsaf{word-spacing:8.400768pt;}
.ws198{word-spacing:8.422144pt;}
.wsb0{word-spacing:8.448864pt;}
.wsf1{word-spacing:8.554553pt;}
.wsf4{word-spacing:8.979623pt;}
.ws2{word-spacing:9.263097pt;}
.ws26a{word-spacing:9.755443pt;}
.ws14c{word-spacing:10.118555pt;}
.ws19b{word-spacing:10.221805pt;}
.ws105{word-spacing:10.325056pt;}
.ws9d{word-spacing:10.329312pt;}
.wse3{word-spacing:10.414238pt;}
.ws2d{word-spacing:10.583966pt;}
.ws8d{word-spacing:10.786175pt;}
.ws6{word-spacing:10.823338pt;}
.ws204{word-spacing:11.620454pt;}
.ws247{word-spacing:11.668275pt;}
.ws1fd{word-spacing:11.716096pt;}
.ws1bb{word-spacing:11.755624pt;}
.ws22c{word-spacing:11.811738pt;}
.ws23a{word-spacing:11.859558pt;}
.ws271{word-spacing:11.898385pt;}
.ws224{word-spacing:11.899844pt;}
.ws23c{word-spacing:11.900109pt;}
.ws1f5{word-spacing:11.902857pt;}
.ws212{word-spacing:11.904836pt;}
.ws210{word-spacing:11.905442pt;}
.ws1ed{word-spacing:11.907379pt;}
.ws26f{word-spacing:11.908190pt;}
.ws246{word-spacing:11.955200pt;}
.ws254{word-spacing:12.003021pt;}
.ws1f8{word-spacing:12.050842pt;}
.ws1f2{word-spacing:12.098662pt;}
.ws1b0{word-spacing:12.125964pt;}
.ws209{word-spacing:12.146483pt;}
.ws261{word-spacing:12.289946pt;}
.ws25c{word-spacing:12.385587pt;}
.ws1af{word-spacing:12.485722pt;}
.ws221{word-spacing:12.959437pt;}
.ws269{word-spacing:13.581107pt;}
.ws215{word-spacing:13.915853pt;}
.ws252{word-spacing:14.059315pt;}
.ws243{word-spacing:14.250598pt;}
.ws7{word-spacing:14.319536pt;}
.ws1ef{word-spacing:14.394061pt;}
.ws263{word-spacing:14.537523pt;}
.wsa9{word-spacing:14.594464pt;}
.ws25e{word-spacing:14.633165pt;}
.ws203{word-spacing:14.728806pt;}
.ws25b{word-spacing:14.764894pt;}
.ws207{word-spacing:14.769331pt;}
.ws22d{word-spacing:14.769621pt;}
.ws237{word-spacing:14.770082pt;}
.ws26c{word-spacing:14.772932pt;}
.ws202{word-spacing:14.774665pt;}
.ws232{word-spacing:14.775415pt;}
.ws1f3{word-spacing:14.776337pt;}
.ws213{word-spacing:14.776627pt;}
.ws234{word-spacing:14.824448pt;}
.ws21f{word-spacing:14.967910pt;}
.ws22a{word-spacing:15.015731pt;}
.ws22e{word-spacing:15.063552pt;}
.ws250{word-spacing:16.450355pt;}
.ws74{word-spacing:17.002837pt;}
.ws235{word-spacing:17.358950pt;}
.ws7b{word-spacing:17.427908pt;}
.wsf3{word-spacing:18.171782pt;}
.ws21d{word-spacing:18.793574pt;}
.ws1eb{word-spacing:21.088973pt;}
.ws230{word-spacing:22.188851pt;}
.ws9{word-spacing:23.208806pt;}
.ws5{word-spacing:23.858002pt;}
.ws227{word-spacing:27.783885pt;}
.ws23b{word-spacing:31.561728pt;}
.ws110{word-spacing:969.235936pt;}
._2e{margin-left:-18.417165pt;}
._6{margin-left:-7.077478pt;}
._a{margin-left:-5.483429pt;}
._0{margin-left:-4.128490pt;}
._1{margin-left:-2.715133pt;}
._5{margin-left:-1.338970pt;}
._1e{width:1.259776pt;}
._8{width:2.668159pt;}
._1d{width:4.038174pt;}
._29{width:7.555674pt;}
._28{width:8.602264pt;}
._2a{width:9.505814pt;}
._2d{width:10.414150pt;}
._2{width:11.530016pt;}
._d{width:13.007258pt;}
._c{width:14.250598pt;}
._27{width:15.159194pt;}
._e{width:16.053921pt;}
._13{width:17.013460pt;}
._12{width:18.086761pt;}
._2c{width:18.984858pt;}
._f{width:19.882689pt;}
._26{width:20.850290pt;}
._b{width:21.806246pt;}
._3{width:23.057899pt;}
._21{width:24.069642pt;}
._1a{width:24.972917pt;}
._18{width:26.099351pt;}
._4{width:27.188522pt;}
._24{width:28.107815pt;}
._7{width:29.648896pt;}
._16{width:30.854815pt;}
._15{width:33.075834pt;}
._1b{width:34.377612pt;}
._17{width:35.663447pt;}
._14{width:37.087324pt;}
._1c{width:41.826994pt;}
._9{width:48.362134pt;}
._2b{width:54.993920pt;}
._19{width:95.640960pt;}
._10{width:686.022046pt;}
._23{width:1813.852979pt;}
._25{width:1833.166664pt;}
._22{width:1850.896096pt;}
._1f{width:1872.827264pt;}
._20{width:2237.176000pt;}
._11{width:2258.429333pt;}
.fs16{font-size:29.145600pt;}
.fs17{font-size:31.680000pt;}
.fs6{font-size:31.880533pt;}
.fsd{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fsf{font-size:38.755733pt;}
.fs5{font-size:40.381867pt;}
.fs10{font-size:41.708800pt;}
.fs9{font-size:42.077867pt;}
.fs13{font-size:42.134400pt;}
.fs7{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs12{font-size:47.040000pt;}
.fs15{font-size:47.520000pt;}
.fs8{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs11{font-size:52.371200pt;}
.fs14{font-size:52.905600pt;}
.fs3{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs2{font-size:67.193600pt;}
.fs4{font-size:95.641600pt;}
.fs1{font-size:100.790400pt;}
.y241{bottom:-796.727844pt;}
.y1fa{bottom:-768.712915pt;}
.y186{bottom:-767.422267pt;}
.y26b{bottom:-718.320636pt;}
.y26a{bottom:-703.034640pt;}
.y269{bottom:-687.748644pt;}
.y12e{bottom:-683.983600pt;}
.y1a7{bottom:-677.581115pt;}
.y268{bottom:-672.542244pt;}
.y1a6{bottom:-660.461611pt;}
.y1a5{bottom:-643.412563pt;}
.y267{bottom:-641.172410pt;}
.y1a4{bottom:-626.293059pt;}
.y266{bottom:-624.224101pt;}
.y15d{bottom:-615.495544pt;}
.y1a3{bottom:-609.173555pt;}
.y265{bottom:-607.355150pt;}
.y15c{bottom:-598.376040pt;}
.y1a2{bottom:-592.134211pt;}
.y264{bottom:-590.406841pt;}
.y15b{bottom:-581.256536pt;}
.y210{bottom:-578.272212pt;}
.y1a1{bottom:-575.014707pt;}
.y263{bottom:-573.537891pt;}
.y15a{bottom:-564.217192pt;}
.y1c7{bottom:-563.192933pt;}
.y20f{bottom:-561.573655pt;}
.y1a0{bottom:-557.975363pt;}
.y262{bottom:-556.589582pt;}
.y159{bottom:-547.097688pt;}
.y20e{bottom:-544.796541pt;}
.y19f{bottom:-540.855859pt;}
.y261{bottom:-539.641273pt;}
.y158{bottom:-529.978184pt;}
.y20d{bottom:-528.097983pt;}
.y19e{bottom:-523.736355pt;}
.y260{bottom:-522.772322pt;}
.y157{bottom:-512.938840pt;}
.y20c{bottom:-511.320870pt;}
.y19d{bottom:-506.697011pt;}
.y25f{bottom:-505.824013pt;}
.y224{bottom:-501.098267pt;}
.y156{bottom:-495.819336pt;}
.y20b{bottom:-494.543756pt;}
.y19c{bottom:-489.577507pt;}
.y25e{bottom:-488.955063pt;}
.y155{bottom:-478.779992pt;}
.y20a{bottom:-477.845199pt;}
.y1e8{bottom:-473.351781pt;}
.y19b{bottom:-472.538163pt;}
.y25d{bottom:-472.006754pt;}
.y154{bottom:-461.660488pt;}
.y209{bottom:-461.068085pt;}
.y1e7{bottom:-456.232277pt;}
.y19a{bottom:-455.418659pt;}
.y25c{bottom:-455.058445pt;}
.y153{bottom:-444.540984pt;}
.y208{bottom:-444.369527pt;}
.y1e6{bottom:-439.183229pt;}
.y199{bottom:-438.299155pt;}
.y25b{bottom:-438.188172pt;}
.y207{bottom:-427.592414pt;}
.y152{bottom:-427.501640pt;}
.y1e5{bottom:-422.063725pt;}
.y198{bottom:-421.258475pt;}
.y25a{bottom:-421.239863pt;}
.y206{bottom:-410.815300pt;}
.y151{bottom:-410.382136pt;}
.y1e4{bottom:-404.944221pt;}
.y259{bottom:-404.370912pt;}
.y258{bottom:-404.364312pt;}
.y197{bottom:-404.138971pt;}
.y205{bottom:-394.116743pt;}
.y150{bottom:-393.342792pt;}
.y1e3{bottom:-387.904877pt;}
.y257{bottom:-387.416003pt;}
.y196{bottom:-387.019467pt;}
.y204{bottom:-377.339629pt;}
.y14f{bottom:-376.223288pt;}
.y1e2{bottom:-370.785373pt;}
.y256{bottom:-370.467694pt;}
.y195{bottom:-369.980123pt;}
.y203{bottom:-360.562515pt;}
.y14e{bottom:-359.103784pt;}
.y1e1{bottom:-353.746029pt;}
.y255{bottom:-353.598744pt;}
.y194{bottom:-352.860619pt;}
.y14d{bottom:-342.063104pt;}
.y254{bottom:-336.650435pt;}
.y1e0{bottom:-336.626525pt;}
.y193{bottom:-335.821275pt;}
.y202{bottom:-328.574923pt;}
.y14b{bottom:-324.944147pt;}
.y14c{bottom:-324.943600pt;}
.y253{bottom:-319.702126pt;}
.y1df{bottom:-319.507021pt;}
.y192{bottom:-318.701771pt;}
.y201{bottom:-313.365715pt;}
.y14a{bottom:-307.903467pt;}
.y149{bottom:-307.900832pt;}
.y23a{bottom:-306.771019pt;}
.y252{bottom:-302.831852pt;}
.y1de{bottom:-302.467677pt;}
.y191{bottom:-301.582267pt;}
.y200{bottom:-298.312915pt;}
.y148{bottom:-290.781328pt;}
.y239{bottom:-289.731675pt;}
.y251{bottom:-285.883543pt;}
.y1dd{bottom:-285.348173pt;}
.y1ff{bottom:-278.791315pt;}
.y147{bottom:-273.661824pt;}
.y238{bottom:-272.612171pt;}
.y250{bottom:-269.014593pt;}
.y190{bottom:-268.941867pt;}
.y1dc{bottom:-268.308829pt;}
.y146{bottom:-256.621144pt;}
.y237{bottom:-255.572827pt;}
.y18f{bottom:-253.422267pt;}
.y24f{bottom:-252.066284pt;}
.y1db{bottom:-251.189325pt;}
.y145{bottom:-239.501640pt;}
.y236{bottom:-238.453323pt;}
.y18e{bottom:-238.062267pt;}
.y24e{bottom:-235.117975pt;}
.y1da{bottom:-234.069821pt;}
.y18d{bottom:-222.702267pt;}
.y144{bottom:-222.382136pt;}
.y235{bottom:-221.333819pt;}
.y24d{bottom:-218.247702pt;}
.y1d9{bottom:-217.029141pt;}
.y143{bottom:-205.342792pt;}
.y234{bottom:-204.294475pt;}
.y24c{bottom:-201.299393pt;}
.y1d8{bottom:-199.909637pt;}
.y18c{bottom:-198.782195pt;}
.y142{bottom:-188.223288pt;}
.y233{bottom:-187.174971pt;}
.y1d7{bottom:-182.790133pt;}
.y18b{bottom:-180.782267pt;}
.y24b{bottom:-180.470458pt;}
.y141{bottom:-171.182608pt;}
.y232{bottom:-170.135627pt;}
.y1d6{bottom:-165.750789pt;}
.y140{bottom:-154.063104pt;}
.y231{bottom:-153.016123pt;}
.y1d5{bottom:-148.631285pt;}
.y24a{bottom:-147.682212pt;}
.y13e{bottom:-136.943968pt;}
.y13f{bottom:-136.943600pt;}
.y230{bottom:-135.896619pt;}
.y1d4{bottom:-131.591941pt;}
.y249{bottom:-130.733904pt;}
.y13d{bottom:-119.903288pt;}
.y22f{bottom:-118.857275pt;}
.y1d3{bottom:-114.472437pt;}
.y248{bottom:-113.864953pt;}
.y13c{bottom:-102.783784pt;}
.y22e{bottom:-101.737771pt;}
.y1d2{bottom:-97.352933pt;}
.y247{bottom:-96.916644pt;}
.y13b{bottom:-85.743104pt;}
.y22d{bottom:-84.618267pt;}
.y13a{bottom:-68.623600pt;}
.y1d1{bottom:-64.712533pt;}
.y246{bottom:-64.524240pt;}
.y22c{bottom:-51.977867pt;}
.y1fe{bottom:-50.883299pt;}
.y245{bottom:-49.238244pt;}
.y1d0{bottom:-49.192933pt;}
.y18a{bottom:-48.621867pt;}
.y22b{bottom:-36.458267pt;}
.y139{bottom:-35.904000pt;}
.y1fd{bottom:-35.751707pt;}
.y244{bottom:-34.031844pt;}
.y1cf{bottom:-33.832933pt;}
.y189{bottom:-33.102267pt;}
.y22a{bottom:-21.098267pt;}
.y1fc{bottom:-20.620115pt;}
.y138{bottom:-20.463600pt;}
.y243{bottom:-18.825444pt;}
.y1ce{bottom:-18.472933pt;}
.y188{bottom:-17.742267pt;}
.y229{bottom:-1.178267pt;}
.y1fb{bottom:-1.099071pt;}
.y137{bottom:-0.543464pt;}
.y0{bottom:0.000000pt;}
.y242{bottom:0.974857pt;}
.y187{bottom:2.177861pt;}
.y1cd{bottom:5.447139pt;}
.y15{bottom:15.696005pt;}
.y1cc{bottom:23.447067pt;}
.y45{bottom:28.346667pt;}
.y16{bottom:31.170523pt;}
.y29e{bottom:87.472000pt;}
.y164{bottom:91.096000pt;}
.y2d5{bottom:92.892000pt;}
.y13{bottom:93.018667pt;}
.y7c{bottom:95.282667pt;}
.y17f{bottom:95.681333pt;}
.y11b{bottom:98.072000pt;}
.ye5{bottom:100.462667pt;}
.y29d{bottom:102.814667pt;}
.y283{bottom:103.346667pt;}
.y44{bottom:106.028000pt;}
.y163{bottom:107.833333pt;}
.y2d3{bottom:108.233333pt;}
.y12{bottom:108.920000pt;}
.y7b{bottom:112.020000pt;}
.ya8{bottom:112.418667pt;}
.ye4{bottom:114.773333pt;}
.y11a{bottom:114.809333pt;}
.ye2{bottom:117.200000pt;}
.y1c3{bottom:117.814667pt;}
.y29c{bottom:118.157333pt;}
.y282{bottom:120.084000pt;}
.ye3{bottom:122.022667pt;}
.y43{bottom:122.765333pt;}
.y2d2{bottom:123.576000pt;}
.y162{bottom:124.570667pt;}
.y11{bottom:124.820000pt;}
.y170{bottom:126.330667pt;}
.ya7{bottom:127.162667pt;}
.y7a{bottom:128.757333pt;}
.ya6{bottom:129.156000pt;}
.y119{bottom:131.546667pt;}
.y29b{bottom:133.500000pt;}
.ye1{bottom:133.937333pt;}
.y1c2{bottom:134.552000pt;}
.y220{bottom:134.745333pt;}
.y2d1{bottom:138.918667pt;}
.y42{bottom:139.502667pt;}
.y10{bottom:140.720000pt;}
.y281{bottom:140.806667pt;}
.y161{bottom:141.308000pt;}
.y16e{bottom:143.068000pt;}
.y79{bottom:145.494667pt;}
.ya5{bottom:145.893333pt;}
.y118{bottom:148.284000pt;}
.y29a{bottom:148.842667pt;}
.y16f{bottom:150.316000pt;}
.ye0{bottom:150.674667pt;}
.y1c1{bottom:151.289333pt;}
.y21f{bottom:151.482667pt;}
.y2d4{bottom:152.468000pt;}
.y124{bottom:153.105333pt;}
.y2d0{bottom:154.261333pt;}
.y1cb{bottom:155.607467pt;}
.y41{bottom:156.240000pt;}
.yf{bottom:156.621333pt;}
.y160{bottom:158.045333pt;}
.y78{bottom:162.232000pt;}
.y123{bottom:162.286667pt;}
.ya4{bottom:162.630667pt;}
.y299{bottom:164.185333pt;}
.y117{bottom:165.021333pt;}
.ydf{bottom:167.412000pt;}
.y1bf{bottom:168.026667pt;}
.y21d{bottom:168.220000pt;}
.y2cf{bottom:169.604000pt;}
.y280{bottom:170.694667pt;}
.y1ca{bottom:171.127067pt;}
.ye{bottom:172.521333pt;}
.y1c0{bottom:172.848000pt;}
.y40{bottom:172.977333pt;}
.y21e{bottom:173.041333pt;}
.ya3{bottom:177.374667pt;}
.y77{bottom:178.969333pt;}
.ya2{bottom:179.368000pt;}
.y298{bottom:179.526667pt;}
.y116{bottom:181.758667pt;}
.y16d{bottom:182.954667pt;}
.yde{bottom:184.149333pt;}
.y1bd{bottom:184.764000pt;}
.y2ce{bottom:184.946667pt;}
.y21c{bottom:184.957333pt;}
.y1c9{bottom:186.487067pt;}
.y122{bottom:186.580000pt;}
.y27f{bottom:187.432000pt;}
.y15f{bottom:187.881333pt;}
.yd{bottom:188.421333pt;}
.y1be{bottom:189.585333pt;}
.y3f{bottom:189.713333pt;}
.y136{bottom:190.016896pt;}
.y297{bottom:194.869333pt;}
.y76{bottom:195.706667pt;}
.ya1{bottom:196.105333pt;}
.y115{bottom:198.496000pt;}
.y2cd{bottom:200.289333pt;}
.ydd{bottom:200.886667pt;}
.y240{bottom:201.271475pt;}
.y1bc{bottom:201.501333pt;}
.y21b{bottom:201.694667pt;}
.y27e{bottom:204.169333pt;}
.yc{bottom:204.322667pt;}
.y15e{bottom:204.977333pt;}
.y1c8{bottom:206.407195pt;}
.y3e{bottom:206.450667pt;}
.y135{bottom:207.136400pt;}
.y133{bottom:207.137752pt;}
.y23f{bottom:209.745756pt;}
.y17a{bottom:210.416000pt;}
.y134{bottom:210.496400pt;}
.ya0{bottom:210.849333pt;}
.y75{bottom:212.444000pt;}
.y9f{bottom:212.841333pt;}
.y296{bottom:214.197333pt;}
.y114{bottom:215.233333pt;}
.y2cc{bottom:215.632000pt;}
.ydb{bottom:217.624000pt;}
.y17b{bottom:217.664000pt;}
.y1ba{bottom:218.238667pt;}
.y21a{bottom:218.430667pt;}
.y1f9{bottom:219.205603pt;}
.y27d{bottom:220.906667pt;}
.ydc{bottom:222.446667pt;}
.y1bb{bottom:223.060000pt;}
.y3d{bottom:223.188000pt;}
.y132{bottom:224.177096pt;}
.y12b{bottom:224.914667pt;}
.y1f8{bottom:227.594285pt;}
.y74{bottom:229.181333pt;}
.y9e{bottom:229.578667pt;}
.y2cb{bottom:230.974667pt;}
.y228{bottom:231.380933pt;}
.y113{bottom:231.970667pt;}
.yda{bottom:234.361333pt;}
.y1b9{bottom:234.976000pt;}
.y219{bottom:235.168000pt;}
.y27c{bottom:237.644000pt;}
.y3c{bottom:239.925333pt;}
.y185{bottom:240.657853pt;}
.y131{bottom:241.296600pt;}
.y179{bottom:243.890667pt;}
.y295{bottom:244.085333pt;}
.y73{bottom:245.918667pt;}
.y9d{bottom:246.316000pt;}
.y227{bottom:246.821333pt;}
.y112{bottom:248.708000pt;}
.y184{bottom:249.217733pt;}
.yd9{bottom:251.098667pt;}
.y1b8{bottom:251.713333pt;}
.y218{bottom:251.905333pt;}
.y27b{bottom:254.381333pt;}
.y3b{bottom:256.662667pt;}
.y130{bottom:258.416104pt;}
.y2ca{bottom:261.658667pt;}
.y226{bottom:262.261733pt;}
.y72{bottom:262.656000pt;}
.y9c{bottom:263.053333pt;}
.yb{bottom:264.148000pt;}
.y110{bottom:265.445333pt;}
.y294{bottom:267.677333pt;}
.yd8{bottom:267.836000pt;}
.y1b6{bottom:268.450667pt;}
.y217{bottom:268.642667pt;}
.y111{bottom:270.266667pt;}
.y27a{bottom:271.118667pt;}
.y1b7{bottom:273.272000pt;}
.y3a{bottom:273.400000pt;}
.y12f{bottom:275.456784pt;}
.y2c9{bottom:277.001333pt;}
.y71{bottom:279.393333pt;}
.y9b{bottom:279.790667pt;}
.ya{bottom:280.048000pt;}
.y225{bottom:282.181165pt;}
.y10f{bottom:282.182667pt;}
.yd7{bottom:284.573333pt;}
.y1b4{bottom:285.188000pt;}
.y216{bottom:285.380000pt;}
.y279{bottom:287.856000pt;}
.y1b5{bottom:290.009333pt;}
.y39{bottom:290.137333pt;}
.y293{bottom:291.268000pt;}
.y2c8{bottom:292.344000pt;}
.y9{bottom:295.949333pt;}
.y70{bottom:296.129333pt;}
.y9a{bottom:296.528000pt;}
.y10d{bottom:298.920000pt;}
.yd6{bottom:301.310667pt;}
.y1b3{bottom:301.925333pt;}
.y215{bottom:302.117333pt;}
.y10e{bottom:303.741333pt;}
.y278{bottom:304.592000pt;}
.y38{bottom:306.874667pt;}
.y2c7{bottom:307.686667pt;}
.y8{bottom:311.849333pt;}
.y6f{bottom:312.866667pt;}
.y99{bottom:313.265333pt;}
.y292{bottom:314.860000pt;}
.y10c{bottom:315.657333pt;}
.yd4{bottom:318.048000pt;}
.y1b2{bottom:318.662667pt;}
.y214{bottom:318.854667pt;}
.y277{bottom:321.329333pt;}
.yd5{bottom:322.869333pt;}
.y2c6{bottom:323.029333pt;}
.y37{bottom:323.612000pt;}
.y12d{bottom:324.096520pt;}
.y6e{bottom:329.604000pt;}
.y98{bottom:330.002667pt;}
.y10b{bottom:332.394667pt;}
.y12c{bottom:332.656400pt;}
.yd2{bottom:334.785333pt;}
.y1b1{bottom:335.400000pt;}
.y7{bottom:335.720000pt;}
.y276{bottom:338.066667pt;}
.y2c5{bottom:338.372000pt;}
.y291{bottom:338.452000pt;}
.yd3{bottom:339.606667pt;}
.y36{bottom:340.349333pt;}
.y6d{bottom:346.341333pt;}
.y97{bottom:346.740000pt;}
.y213{bottom:348.690667pt;}
.y10a{bottom:349.132000pt;}
.yd1{bottom:351.522667pt;}
.y6{bottom:351.620000pt;}
.y1b0{bottom:352.137333pt;}
.y2c4{bottom:353.714667pt;}
.y290{bottom:354.073333pt;}
.y275{bottom:354.804000pt;}
.y35{bottom:357.086667pt;}
.y6c{bottom:363.078667pt;}
.y96{bottom:363.477333pt;}
.y212{bottom:365.786667pt;}
.y109{bottom:365.868000pt;}
.y5{bottom:367.520000pt;}
.yd0{bottom:368.260000pt;}
.y1af{bottom:368.873333pt;}
.y2c3{bottom:369.056000pt;}
.y28f{bottom:369.694667pt;}
.y274{bottom:371.541333pt;}
.y34{bottom:373.824000pt;}
.y6b{bottom:379.816000pt;}
.y95{bottom:380.214667pt;}
.y108{bottom:382.605333pt;}
.y211{bottom:382.882667pt;}
.y4{bottom:383.421333pt;}
.y2c2{bottom:384.398667pt;}
.ycf{bottom:384.997333pt;}
.y178{bottom:385.037333pt;}
.y28e{bottom:385.316000pt;}
.y1ae{bottom:385.610667pt;}
.y273{bottom:388.278667pt;}
.y33{bottom:390.561333pt;}
.y6a{bottom:396.553333pt;}
.y107{bottom:396.917333pt;}
.y94{bottom:396.952000pt;}
.y3{bottom:399.321333pt;}
.y106{bottom:399.342667pt;}
.y2c1{bottom:399.741333pt;}
.y28d{bottom:400.937333pt;}
.yce{bottom:401.734667pt;}
.y1ad{bottom:402.348000pt;}
.y1f7{bottom:402.820000pt;}
.y121{bottom:404.165333pt;}
.y272{bottom:405.016000pt;}
.y32{bottom:411.284000pt;}
.y69{bottom:413.290667pt;}
.y93{bottom:413.689333pt;}
.y2c0{bottom:415.084000pt;}
.y2{bottom:415.221333pt;}
.y105{bottom:416.080000pt;}
.y1ac{bottom:416.352000pt;}
.y28c{bottom:416.558667pt;}
.ycc{bottom:418.472000pt;}
.y1ab{bottom:419.085333pt;}
.y271{bottom:421.753333pt;}
.ycd{bottom:423.293333pt;}
.y68{bottom:430.028000pt;}
.y104{bottom:430.390667pt;}
.y92{bottom:430.426667pt;}
.y1{bottom:431.122667pt;}
.y28b{bottom:432.180000pt;}
.y103{bottom:432.817333pt;}
.ycb{bottom:435.209333pt;}
.y177{bottom:435.248000pt;}
.y270{bottom:438.490667pt;}
.y1c6{bottom:444.887187pt;}
.y2bf{bottom:445.769333pt;}
.y67{bottom:446.765333pt;}
.y91{bottom:447.164000pt;}
.y28a{bottom:447.801333pt;}
.y1aa{bottom:448.922667pt;}
.y102{bottom:449.554667pt;}
.yc9{bottom:451.946667pt;}
.y1c5{bottom:453.447067pt;}
.y120{bottom:454.377333pt;}
.yca{bottom:456.768000pt;}
.y2be{bottom:461.112000pt;}
.y17e{bottom:461.474667pt;}
.y17d{bottom:461.909333pt;}
.y289{bottom:463.422667pt;}
.y66{bottom:463.502667pt;}
.y101{bottom:463.865333pt;}
.y90{bottom:463.901333pt;}
.y1a9{bottom:466.017333pt;}
.y100{bottom:466.292000pt;}
.y26f{bottom:468.326667pt;}
.yc8{bottom:468.684000pt;}
.y2bd{bottom:476.454667pt;}
.y31{bottom:478.084000pt;}
.y288{bottom:479.044000pt;}
.y65{bottom:480.240000pt;}
.y8f{bottom:480.638667pt;}
.yff{bottom:483.029333pt;}
.y1a8{bottom:483.113333pt;}
.yc7{bottom:485.420000pt;}
.y26e{bottom:485.422667pt;}
.y2bc{bottom:491.797333pt;}
.y30{bottom:495.378667pt;}
.y64{bottom:496.977333pt;}
.y8e{bottom:497.376000pt;}
.yfe{bottom:499.766667pt;}
.yc5{bottom:502.157333pt;}
.y26d{bottom:502.518667pt;}
.y287{bottom:502.636000pt;}
.y183{bottom:503.050667pt;}
.yc6{bottom:506.980000pt;}
.y223{bottom:506.981853pt;}
.y2bb{bottom:507.138667pt;}
.y12a{bottom:513.714667pt;}
.yfd{bottom:514.077333pt;}
.y8d{bottom:514.113333pt;}
.y222{bottom:515.541733pt;}
.yfc{bottom:516.504000pt;}
.y63{bottom:517.700000pt;}
.y286{bottom:518.257333pt;}
.yc4{bottom:518.894667pt;}
.y176{bottom:518.934667pt;}
.y26c{bottom:519.614667pt;}
.y2ba{bottom:522.481333pt;}
.y2d8{bottom:526.821333pt;}
.y16c{bottom:528.424000pt;}
.y2f{bottom:528.614667pt;}
.y129{bottom:530.452000pt;}
.y8c{bottom:530.850667pt;}
.yfa{bottom:533.241333pt;}
.y285{bottom:533.878667pt;}
.yc3{bottom:535.632000pt;}
.y11f{bottom:537.226667pt;}
.y2b9{bottom:537.824000pt;}
.yfb{bottom:538.064000pt;}
.y23e{bottom:539.552000pt;}
.y16b{bottom:545.161333pt;}
.y2e{bottom:545.909333pt;}
.y128{bottom:547.189333pt;}
.yf9{bottom:547.552000pt;}
.y62{bottom:547.588000pt;}
.y284{bottom:549.500000pt;}
.yc2{bottom:549.636000pt;}
.yf8{bottom:549.978667pt;}
.y11e{bottom:551.174667pt;}
.yc1{bottom:552.369333pt;}
.y2b8{bottom:553.166667pt;}
.y2d{bottom:563.205333pt;}
.y127{bottom:563.926667pt;}
.y61{bottom:564.325333pt;}
.yf7{bottom:566.716000pt;}
.y2b7{bottom:568.509333pt;}
.yc0{bottom:569.106667pt;}
.y2c{bottom:577.885333pt;}
.y2b{bottom:580.500000pt;}
.y126{bottom:580.664000pt;}
.y60{bottom:581.062667pt;}
.yf6{bottom:583.453333pt;}
.y2b6{bottom:583.852000pt;}
.ybf{bottom:585.844000pt;}
.y175{bottom:595.373333pt;}
.y2a{bottom:597.794667pt;}
.y5f{bottom:597.800000pt;}
.y2b5{bottom:599.194667pt;}
.yf4{bottom:600.190667pt;}
.y125{bottom:601.386667pt;}
.ybe{bottom:602.581333pt;}
.y174{bottom:602.621333pt;}
.yf5{bottom:605.012000pt;}
.y1f6{bottom:610.329333pt;}
.y5e{bottom:614.537333pt;}
.y29{bottom:615.090667pt;}
.yf3{bottom:616.928000pt;}
.y2d7{bottom:618.876000pt;}
.ybd{bottom:623.304000pt;}
.y1f5{bottom:627.066667pt;}
.y2b4{bottom:629.878667pt;}
.y5d{bottom:631.274667pt;}
.y28{bottom:632.385333pt;}
.yf2{bottom:633.665333pt;}
.y16a{bottom:636.096000pt;}
.ybc{bottom:640.041333pt;}
.y1f4{bottom:643.804000pt;}
.y2b3{bottom:645.221333pt;}
.y5c{bottom:648.012000pt;}
.y27{bottom:649.680000pt;}
.yf1{bottom:650.402667pt;}
.y169{bottom:652.833333pt;}
.ybb{bottom:656.778667pt;}
.y1f3{bottom:660.541333pt;}
.y2b2{bottom:660.564000pt;}
.y5b{bottom:664.749333pt;}
.y26{bottom:666.976000pt;}
.yf0{bottom:667.140000pt;}
.yba{bottom:673.516000pt;}
.y2b1{bottom:675.906667pt;}
.y1f2{bottom:677.278667pt;}
.y8b{bottom:679.060000pt;}
.y5a{bottom:681.485333pt;}
.yef{bottom:683.877333pt;}
.y25{bottom:684.270667pt;}
.y168{bottom:686.308000pt;}
.yb9{bottom:690.253333pt;}
.y2b0{bottom:691.249333pt;}
.y1f1{bottom:694.016000pt;}
.y8a{bottom:695.797333pt;}
.y59{bottom:698.222667pt;}
.yee{bottom:700.614667pt;}
.y24{bottom:701.566667pt;}
.y2af{bottom:706.592000pt;}
.yb8{bottom:706.990667pt;}
.y1f0{bottom:710.753333pt;}
.y167{bottom:712.533333pt;}
.y58{bottom:714.960000pt;}
.yed{bottom:717.352000pt;}
.y2ae{bottom:721.934667pt;}
.yb7{bottom:723.728000pt;}
.y1ef{bottom:727.490667pt;}
.y23d{bottom:727.494667pt;}
.y57{bottom:731.697333pt;}
.yec{bottom:734.089333pt;}
.y23{bottom:735.864000pt;}
.y2ad{bottom:737.277333pt;}
.y1ee{bottom:744.228000pt;}
.yb6{bottom:744.450667pt;}
.y23c{bottom:744.590667pt;}
.y182{bottom:745.700000pt;}
.y89{bottom:746.008000pt;}
.y56{bottom:748.434667pt;}
.y22{bottom:750.210667pt;}
.yeb{bottom:750.826667pt;}
.y2ac{bottom:752.620000pt;}
.y1ed{bottom:760.965333pt;}
.yb5{bottom:761.186667pt;}
.y23b{bottom:761.686667pt;}
.y181{bottom:762.437333pt;}
.y88{bottom:762.745333pt;}
.y55{bottom:765.172000pt;}
.yea{bottom:767.564000pt;}
.y2ab{bottom:767.961333pt;}
.y21{bottom:768.414667pt;}
.y173{bottom:769.994667pt;}
.y1ec{bottom:777.702667pt;}
.yb4{bottom:777.924000pt;}
.y20{bottom:778.902667pt;}
.y87{bottom:779.482667pt;}
.y221{bottom:781.624000pt;}
.y54{bottom:781.909333pt;}
.y2aa{bottom:783.304000pt;}
.ye9{bottom:784.301333pt;}
.y11d{bottom:786.732000pt;}
.yb3{bottom:794.661333pt;}
.y180{bottom:795.912000pt;}
.y86{bottom:796.220000pt;}
.y1f{bottom:797.106667pt;}
.y53{bottom:798.646667pt;}
.y11c{bottom:803.469333pt;}
.ye8{bottom:805.022667pt;}
.y1eb{bottom:807.538667pt;}
.yb2{bottom:811.398667pt;}
.y1e{bottom:811.453333pt;}
.y85{bottom:812.957333pt;}
.y2a9{bottom:813.989333pt;}
.y52{bottom:815.384000pt;}
.ye7{bottom:818.970667pt;}
.y166{bottom:820.206667pt;}
.y1ea{bottom:824.634667pt;}
.y2dd{bottom:825.280000pt;}
.y1d{bottom:825.798667pt;}
.y2d9{bottom:827.001333pt;}
.y2da{bottom:827.538667pt;}
.yb1{bottom:828.136000pt;}
.y2a8{bottom:829.332000pt;}
.y51{bottom:832.121333pt;}
.y165{bottom:836.944000pt;}
.y1c{bottom:840.145333pt;}
.y2dc{bottom:840.622667pt;}
.y1e9{bottom:841.730667pt;}
.y2a7{bottom:844.674667pt;}
.yb0{bottom:844.873333pt;}
.y172{bottom:846.432000pt;}
.y50{bottom:848.858667pt;}
.y17c{bottom:853.681333pt;}
.y1b{bottom:854.492000pt;}
.y2db{bottom:855.965333pt;}
.y2a6{bottom:860.017333pt;}
.yaf{bottom:861.610667pt;}
.y1c4{bottom:861.668000pt;}
.y4f{bottom:865.596000pt;}
.y2a5{bottom:875.360000pt;}
.yae{bottom:878.348000pt;}
.y84{bottom:879.906667pt;}
.y4e{bottom:882.333333pt;}
.y83{bottom:887.154667pt;}
.y2d6{bottom:890.701333pt;}
.y2a4{bottom:890.702667pt;}
.y1a{bottom:894.204000pt;}
.yad{bottom:895.085333pt;}
.y4d{bottom:899.070667pt;}
.y82{bottom:903.892000pt;}
.y2a3{bottom:906.044000pt;}
.y19{bottom:910.941333pt;}
.yac{bottom:911.822667pt;}
.y4c{bottom:915.808000pt;}
.y81{bottom:920.629333pt;}
.y2a2{bottom:921.386667pt;}
.yab{bottom:928.560000pt;}
.y4b{bottom:930.118667pt;}
.y4a{bottom:932.545333pt;}
.y2a1{bottom:936.729333pt;}
.y171{bottom:937.366667pt;}
.yaa{bottom:945.297333pt;}
.y18{bottom:946.425333pt;}
.y80{bottom:946.856000pt;}
.y49{bottom:949.282667pt;}
.y2a0{bottom:952.072000pt;}
.ya9{bottom:962.034667pt;}
.y7f{bottom:963.593333pt;}
.ye6{bottom:964.026667pt;}
.y48{bottom:966.020000pt;}
.y29f{bottom:967.414667pt;}
.y7e{bottom:970.841333pt;}
.y17{bottom:971.530667pt;}
.y7d{bottom:980.330667pt;}
.y47{bottom:982.757333pt;}
.y14{bottom:1010.186667pt;}
.y46{bottom:1038.548000pt;}
.h38{height:19.029065pt;}
.h17{height:20.660233pt;}
.h34{height:21.275719pt;}
.h37{height:23.125781pt;}
.ha{height:23.304670pt;}
.h1f{height:23.359375pt;}
.h14{height:27.184641pt;}
.h2{height:27.188522pt;}
.h3{height:27.262909pt;}
.h12{height:29.519145pt;}
.h29{height:30.446609pt;}
.h28{height:30.711362pt;}
.h31{height:30.757289pt;}
.h30{height:31.024744pt;}
.h1d{height:31.067969pt;}
.hb{height:31.072763pt;}
.h11{height:31.157778pt;}
.h1c{height:31.338125pt;}
.h24{height:32.996352pt;}
.h2c{height:34.338281pt;}
.hc{height:34.574438pt;}
.h2b{height:34.636875pt;}
.h35{height:34.688672pt;}
.hd{height:34.957005pt;}
.h33{height:34.990312pt;}
.h22{height:35.039062pt;}
.he{height:35.052646pt;}
.h20{height:35.343750pt;}
.h25{height:36.383732pt;}
.h2d{height:36.389065pt;}
.h16{height:36.662368pt;}
.h13{height:37.193707pt;}
.h2a{height:38.229953pt;}
.hf{height:38.415786pt;}
.h32{height:38.620055pt;}
.h10{height:38.840857pt;}
.h7{height:38.947124pt;}
.h36{height:38.955881pt;}
.h1e{height:39.010156pt;}
.h23{height:39.349375pt;}
.h18{height:39.945566pt;}
.h19{height:39.950899pt;}
.h4{height:45.272024pt;}
.h6{height:46.699552pt;}
.h9{height:48.486756pt;}
.h1a{height:48.804478pt;}
.h15{height:48.809811pt;}
.h5{height:68.335891pt;}
.h8{height:69.148877pt;}
.h26{height:134.373333pt;}
.h1b{height:167.362667pt;}
.h2f{height:169.530240pt;}
.h27{height:187.784987pt;}
.h21{height:208.596000pt;}
.h2e{height:214.417333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:181.038877pt;}
.w5{width:512.273333pt;}
.w7{width:513.242667pt;}
.w6{width:515.814507pt;}
.w3{width:518.578667pt;}
.w8{width:520.116960pt;}
.w4{width:520.520000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x149{left:-179.514667pt;}
.x10e{left:-177.574667pt;}
.x143{left:-173.693333pt;}
.x150{left:-168.793893pt;}
.x14a{left:-5.674667pt;}
.x10f{left:-3.735635pt;}
.x0{left:0.000000pt;}
.x151{left:1.569307pt;}
.x155{left:3.986400pt;}
.x116{left:8.505333pt;}
.x110{left:9.705333pt;}
.x3{left:14.381362pt;}
.x111{left:21.625333pt;}
.x14d{left:22.645333pt;}
.x112{left:24.585333pt;}
.x144{left:28.466667pt;}
.x156{left:32.023200pt;}
.x117{left:39.385333pt;}
.x1{left:47.621333pt;}
.x2{left:52.569837pt;}
.x118{left:67.705333pt;}
.x17f{left:74.862667pt;}
.x161{left:76.309333pt;}
.x119{left:81.625333pt;}
.x178{left:83.693333pt;}
.x16d{left:90.382667pt;}
.x17b{left:92.428000pt;}
.x17c{left:98.052000pt;}
.x14c{left:114.404781pt;}
.x113{left:116.425333pt;}
.x114{left:120.425333pt;}
.x16e{left:132.233333pt;}
.x157{left:136.171200pt;}
.x163{left:137.596000pt;}
.x158{left:140.131200pt;}
.x169{left:142.960000pt;}
.x16a{left:148.422667pt;}
.x176{left:156.873333pt;}
.x17a{left:164.296000pt;}
.x16b{left:171.080000pt;}
.x16c{left:179.957333pt;}
.x16f{left:209.992000pt;}
.x164{left:211.580000pt;}
.x170{left:217.377333pt;}
.x165{left:218.964000pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.xaa{left:222.748000pt;}
.x5f{left:225.884000pt;}
.xb9{left:229.282667pt;}
.xa6{left:231.169333pt;}
.xd6{left:232.086667pt;}
.x60{left:234.962667pt;}
.xba{left:236.065333pt;}
.x104{left:237.018667pt;}
.x17d{left:238.040000pt;}
.x5{left:239.924000pt;}
.x8{left:241.120000pt;}
.x78{left:242.997333pt;}
.x74{left:247.222667pt;}
.x79{left:248.650667pt;}
.xb{left:250.204000pt;}
.x147{left:251.941333pt;}
.x37{left:253.324000pt;}
.x85{left:254.882667pt;}
.xf5{left:255.780000pt;}
.x2b{left:258.226667pt;}
.x100{left:259.780000pt;}
.x9{left:261.334667pt;}
.xc{left:264.652000pt;}
.x38{left:266.608000pt;}
.x3b{left:267.926667pt;}
.x13b{left:269.014667pt;}
.xd{left:271.293333pt;}
.x4d{left:272.398667pt;}
.x7{left:273.590667pt;}
.x2c{left:275.921333pt;}
.xc5{left:277.442667pt;}
.x34{left:278.466667pt;}
.x139{left:279.617333pt;}
.xc6{left:280.782667pt;}
.x2d{left:282.562667pt;}
.xa{left:284.794667pt;}
.x4e{left:286.304000pt;}
.x35{left:287.612000pt;}
.x10b{left:289.396000pt;}
.x105{left:291.441333pt;}
.xd7{left:293.330667pt;}
.x39{left:294.316000pt;}
.xf0{left:295.394667pt;}
.x152{left:297.220000pt;}
.x4f{left:298.334667pt;}
.x123{left:299.377333pt;}
.xa1{left:300.610667pt;}
.xbd{left:301.546667pt;}
.xbe{left:304.934667pt;}
.xa2{left:306.484000pt;}
.xa7{left:307.813333pt;}
.x73{left:308.797333pt;}
.x8f{left:310.408000pt;}
.xd8{left:311.298667pt;}
.x99{left:312.324000pt;}
.x115{left:314.505333pt;}
.x50{left:315.949333pt;}
.x8d{left:317.509333pt;}
.xe9{left:318.537333pt;}
.xe5{left:320.414667pt;}
.x86{left:321.548000pt;}
.x75{left:323.856000pt;}
.x9a{left:325.608000pt;}
.xf2{left:326.656000pt;}
.x23{left:328.220000pt;}
.x106{left:329.120000pt;}
.x8e{left:330.793333pt;}
.x15a{left:331.758667pt;}
.x76{left:332.826667pt;}
.x87{left:334.832000pt;}
.xe6{left:337.526667pt;}
.x61{left:340.008000pt;}
.x24{left:341.504000pt;}
.x14e{left:343.756000pt;}
.xd9{left:344.697333pt;}
.x160{left:347.328000pt;}
.x25{left:348.225333pt;}
.x124{left:349.273333pt;}
.x14f{left:350.821333pt;}
.x173{left:352.866667pt;}
.x62{left:354.162667pt;}
.xe7{left:355.858667pt;}
.x17e{left:356.758667pt;}
.x153{left:357.790667pt;}
.x179{left:360.305333pt;}
.x26{left:361.509333pt;}
.x6c{left:362.844000pt;}
.x63{left:367.269333pt;}
.x12f{left:368.930667pt;}
.x94{left:370.202667pt;}
.x13c{left:371.153333pt;}
.x51{left:373.146667pt;}
.x130{left:374.981333pt;}
.x64{left:376.218667pt;}
.x10c{left:377.673333pt;}
.x134{left:379.001333pt;}
.x6d{left:380.504000pt;}
.x5b{left:382.980000pt;}
.x6e{left:384.948000pt;}
.x52{left:386.297333pt;}
.x11f{left:388.485333pt;}
.x95{left:389.996000pt;}
.x5c{left:392.060000pt;}
.x15b{left:393.958667pt;}
.xad{left:395.258667pt;}
.x3c{left:397.362667pt;}
.x129{left:399.182667pt;}
.x6f{left:401.418667pt;}
.x96{left:403.278667pt;}
.x40{left:404.173333pt;}
.x10d{left:405.380000pt;}
.x3d{left:406.508000pt;}
.x32{left:407.965333pt;}
.x137{left:409.224000pt;}
.xa8{left:411.298667pt;}
.x12b{left:412.198667pt;}
.xbb{left:413.625333pt;}
.x70{left:414.569333pt;}
.xc9{left:416.030667pt;}
.x41{left:417.457333pt;}
.x65{left:418.848000pt;}
.x148{left:420.098667pt;}
.x33{left:421.248000pt;}
.x77{left:423.192000pt;}
.x108{left:425.205333pt;}
.x128{left:426.318667pt;}
.xeb{left:428.209333pt;}
.xca{left:429.313333pt;}
.x131{left:430.285333pt;}
.x12{left:431.469333pt;}
.xae{left:433.248000pt;}
.xda{left:434.282667pt;}
.x66{left:435.240000pt;}
.x132{left:436.334667pt;}
.x13{left:438.110667pt;}
.x15c{left:439.809333pt;}
.xec{left:441.492000pt;}
.xaf{left:442.393333pt;}
.x69{left:444.789333pt;}
.x42{left:445.990667pt;}
.x12c{left:447.470667pt;}
.x67{left:448.390667pt;}
.xb0{left:449.697333pt;}
.xf9{left:450.733333pt;}
.xd2{left:452.360000pt;}
.xc1{left:453.841333pt;}
.xff{left:456.096000pt;}
.x53{left:458.109333pt;}
.x43{left:459.141333pt;}
.xb1{left:461.740000pt;}
.x15d{left:462.734667pt;}
.x3e{left:464.588000pt;}
.xd3{left:465.909333pt;}
.xc2{left:467.124000pt;}
.x7a{left:469.508000pt;}
.xc3{left:470.414667pt;}
.x54{left:472.014667pt;}
.x107{left:474.900000pt;}
.xb6{left:476.153333pt;}
.x3f{left:477.872000pt;}
.xd4{left:480.497333pt;}
.xb7{left:482.936000pt;}
.x55{left:484.045333pt;}
.xcb{left:485.372000pt;}
.x162{left:487.592000pt;}
.xcc{left:488.626667pt;}
.xa3{left:490.369333pt;}
.xbc{left:491.393333pt;}
.xb2{left:492.377333pt;}
.x46{left:493.385333pt;}
.xf1{left:494.306667pt;}
.x8c{left:495.381333pt;}
.x6a{left:497.425333pt;}
.x47{left:499.038667pt;}
.x6b{left:500.744000pt;}
.x56{left:501.660000pt;}
.xb3{left:503.836000pt;}
.xcd{left:505.165333pt;}
.x101{left:506.956000pt;}
.x18{left:507.885333pt;}
.x177{left:509.888000pt;}
.x14b{left:510.805333pt;}
.x11b{left:512.694667pt;}
.x19{left:513.597333pt;}
.x174{left:514.590667pt;}
.xee{left:515.492000pt;}
.xd5{left:516.448000pt;}
.xf6{left:517.781333pt;}
.xa4{left:519.242667pt;}
.x102{left:520.240000pt;}
.xce{left:521.702667pt;}
.x71{left:523.748000pt;}
.xe{left:525.077333pt;}
.xc4{left:527.261333pt;}
.x14{left:528.442667pt;}
.x48{left:530.046667pt;}
.xf{left:531.720000pt;}
.x29{left:532.741333pt;}
.x109{left:534.192000pt;}
.x15{left:535.084000pt;}
.x127{left:536.361333pt;}
.x120{left:537.301333pt;}
.xcf{left:538.241333pt;}
.x7e{left:539.276000pt;}
.xdf{left:540.922667pt;}
.x12a{left:541.972000pt;}
.x10a{left:543.296000pt;}
.x11a{left:544.680000pt;}
.x2a{left:546.025333pt;}
.x122{left:547.386667pt;}
.xef{left:548.720000pt;}
.x135{left:549.760000pt;}
.x27{left:551.060000pt;}
.x1a{left:552.544000pt;}
.xe0{left:554.206667pt;}
.x15e{left:555.329333pt;}
.x49{left:557.344000pt;}
.x1b{left:558.256000pt;}
.x11d{left:559.230667pt;}
.x3a{left:561.425333pt;}
.x16{left:563.090667pt;}
.x28{left:564.344000pt;}
.xb5{left:565.325333pt;}
.xed{left:566.708000pt;}
.xf3{left:568.041333pt;}
.x17{left:569.732000pt;}
.x133{left:571.281333pt;}
.x4a{left:573.588000pt;}
.xf4{left:574.642667pt;}
.x68{left:576.257333pt;}
.xc7{left:578.342667pt;}
.x4b{left:579.241333pt;}
.x103{left:580.148000pt;}
.x9b{left:581.940000pt;}
.xa5{left:583.436000pt;}
.x1c{left:585.216000pt;}
.xe1{left:586.584000pt;}
.x83{left:587.858667pt;}
.x88{left:589.656000pt;}
.x1d{left:590.928000pt;}
.x9f{left:592.664000pt;}
.x84{left:593.570667pt;}
.x89{left:595.368000pt;}
.x11e{left:596.561333pt;}
.x9c{left:598.009333pt;}
.xe2{left:599.868000pt;}
.x9d{left:601.193333pt;}
.x57{left:602.125333pt;}
.x154{left:603.109333pt;}
.xb4{left:604.312000pt;}
.x12d{left:605.257333pt;}
.x136{left:606.166667pt;}
.x58{left:607.778667pt;}
.xb8{left:610.738667pt;}
.x9e{left:614.078667pt;}
.xfc{left:615.776000pt;}
.xe3{left:617.464000pt;}
.x59{left:618.369333pt;}
.xd0{left:621.113333pt;}
.x140{left:622.197333pt;}
.x5a{left:624.022667pt;}
.x13f{left:625.466667pt;}
.xe8{left:627.064000pt;}
.x81{left:628.793333pt;}
.x72{left:630.242667pt;}
.x141{left:631.506667pt;}
.x166{left:632.777333pt;}
.xd1{left:634.397333pt;}
.x82{left:636.932000pt;}
.x2e{left:638.374667pt;}
.x1e{left:639.328000pt;}
.x142{left:640.652000pt;}
.xea{left:642.532000pt;}
.x90{left:643.637333pt;}
.x1f{left:645.040000pt;}
.xf7{left:647.994667pt;}
.x13e{left:649.212000pt;}
.x2f{left:651.658667pt;}
.x146{left:652.753333pt;}
.x30{left:655.045333pt;}
.x167{left:656.021333pt;}
.xc8{left:657.042667pt;}
.x4c{left:658.364000pt;}
.x7b{left:660.029333pt;}
.x121{left:660.920000pt;}
.xa9{left:662.272000pt;}
.x12e{left:663.761333pt;}
.x145{left:664.924000pt;}
.x11c{left:665.912000pt;}
.x159{left:667.008000pt;}
.x31{left:668.329333pt;}
.x44{left:669.942667pt;}
.xde{left:670.884000pt;}
.x13d{left:671.829333pt;}
.x97{left:673.745333pt;}
.x7f{left:675.446667pt;}
.xfa{left:676.776000pt;}
.x20{left:678.322667pt;}
.x168{left:679.932000pt;}
.x80{left:681.101333pt;}
.x45{left:683.093333pt;}
.x21{left:684.034667pt;}
.x98{left:687.029333pt;}
.xf8{left:689.242667pt;}
.xab{left:690.454667pt;}
.xdb{left:691.766667pt;}
.x36{left:694.033333pt;}
.x125{left:695.006667pt;}
.xfb{left:696.701333pt;}
.xdc{left:697.640000pt;}
.x7c{left:698.864000pt;}
.x13a{left:700.657333pt;}
.x175{left:701.792000pt;}
.x92{left:704.416000pt;}
.x91{left:707.154667pt;}
.x171{left:708.164000pt;}
.x5d{left:709.760000pt;}
.x7d{left:712.014667pt;}
.xe4{left:713.476000pt;}
.x5e{left:715.413333pt;}
.x93{left:717.700000pt;}
.x138{left:718.641333pt;}
.xac{left:720.276000pt;}
.x126{left:721.440000pt;}
.xbf{left:724.517333pt;}
.x8a{left:726.248000pt;}
.x22{left:727.970667pt;}
.xdd{left:729.430667pt;}
.x172{left:732.073333pt;}
.x10{left:733.484000pt;}
.x15f{left:735.230667pt;}
.xfd{left:736.784000pt;}
.xa0{left:737.814667pt;}
.x11{left:740.126667pt;}
.xc0{left:741.189333pt;}
.xfe{left:743.390667pt;}
.x8b{left:745.753333pt;}
}


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