
/* 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_ae6c72f3f2f4.woff")format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_3424f97da46d.woff")format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_e9f2490f5fad.woff")format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_5a7b2f3ab9e7.woff")format("woff");}.ff4{font-family:ff4;line-height:0.730000;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_6545143eb9b6.woff")format("woff");}.ff5{font-family:ff5;line-height:0.812000;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_694d1d5d9c9e.woff")format("woff");}.ff6{font-family:ff6;line-height:0.812000;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_e9e6a4964b66.woff")format("woff");}.ff7{font-family:ff7;line-height:0.932000;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_5b1478e463a5.woff")format("woff");}.ff8{font-family:ff8;line-height:0.825000;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_d12c63ca09ac.woff")format("woff");}.ff9{font-family:ff9;line-height:0.952000;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_b5652fc5494e.woff")format("woff");}.ffa{font-family:ffa;line-height:0.722000;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_ddbe2595f95a.woff")format("woff");}.ffb{font-family:ffb;line-height:1.144000;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_1d93d57be2ad.woff")format("woff");}.ffc{font-family:ffc;line-height:0.956000;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_9d8a9ef4f1c3.woff")format("woff");}.ffd{font-family:ffd;line-height:0.825000;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_1d3fad522bc2.woff")format("woff");}.ffe{font-family:ffe;line-height:0.954000;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_05a12fd49ad8.woff")format("woff");}.fff{font-family:fff;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_282f2c5c7b36.woff")format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_266d4171228b.woff")format("woff");}.ff11{font-family:ff11;line-height:1.174000;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_3424f97da46d.woff")format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_e9f2490f5fad.woff")format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_ae6c72f3f2f4.woff")format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_7efbd04dde59.woff")format("woff");}.ff15{font-family:ff15;line-height:0.724000;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_0619d1ce5227.woff")format("woff");}.ff16{font-family:ff16;line-height:0.355000;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_d60534daa3c1.woff")format("woff");}.ff17{font-family:ff17;line-height:0.265000;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_1e4f2485e6a9.woff")format("woff");}.ff18{font-family:ff18;line-height:0.715000;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_ae6c72f3f2f4.woff")format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_3424f97da46d.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_e9f2490f5fad.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_24d6575eb436.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.246000;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_31ab3cea9e45.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.723000;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_3424f97da46d.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_e9f2490f5fad.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_ae6c72f3f2f4.woff")format("woff");}.ff20{font-family:ff20;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_89256a573869.woff")format("woff");}.ff21{font-family:ff21;line-height:0.628000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v1{vertical-align:-1.359891px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-2.268499px;}
.lsf{letter-spacing:-2.264016px;}
.ls77{letter-spacing:-2.221849px;}
.ls7b{letter-spacing:-2.216469px;}
.ls7a{letter-spacing:-2.173431px;}
.ls74{letter-spacing:-2.151912px;}
.ls78{letter-spacing:-2.130393px;}
.ls28{letter-spacing:-2.119633px;}
.ls79{letter-spacing:-2.103494px;}
.ls76{letter-spacing:-2.098114px;}
.ls27{letter-spacing:-2.092734px;}
.ls2b{letter-spacing:-2.087355px;}
.ls2d{letter-spacing:-2.081975px;}
.ls29{letter-spacing:-2.033557px;}
.ls7c{letter-spacing:-2.006658px;}
.ls2e{letter-spacing:-1.974379px;}
.ls1f{letter-spacing:-1.942101px;}
.ls2c{letter-spacing:-1.925961px;}
.ls20{letter-spacing:-1.899062px;}
.ls1c{letter-spacing:-1.893683px;}
.ls21{letter-spacing:-1.861404px;}
.ls1d{letter-spacing:-1.856024px;}
.ls2a{letter-spacing:-1.821729px;}
.lsad{letter-spacing:-1.735910px;}
.ls75{letter-spacing:-1.717732px;}
.ls1e{letter-spacing:-1.656972px;}
.ls64{letter-spacing:-1.619314px;}
.ls62{letter-spacing:-1.608554px;}
.ls60{letter-spacing:-1.592415px;}
.ls5e{letter-spacing:-1.570896px;}
.ls19{letter-spacing:-1.558971px;}
.ls5f{letter-spacing:-1.554756px;}
.ls16{letter-spacing:-1.549407px;}
.ls18{letter-spacing:-1.520714px;}
.ls1a{letter-spacing:-1.515932px;}
.lsaa{letter-spacing:-1.511150px;}
.ls1b{letter-spacing:-1.492021px;}
.lsb0{letter-spacing:-1.472893px;}
.lsa2{letter-spacing:-1.463300px;}
.lsaf{letter-spacing:-1.453764px;}
.lsa0{letter-spacing:-1.441781px;}
.lsb1{letter-spacing:-1.434636px;}
.ls39{letter-spacing:-1.431021px;}
.lsa4{letter-spacing:-1.425642px;}
.lsab{letter-spacing:-1.425072px;}
.lsb2{letter-spacing:-1.415508px;}
.lsac{letter-spacing:-1.396379px;}
.ls17{letter-spacing:-1.386815px;}
.ls36{letter-spacing:-1.371844px;}
.ls63{letter-spacing:-1.366464px;}
.ls3b{letter-spacing:-1.361084px;}
.ls31{letter-spacing:-1.355705px;}
.ls30{letter-spacing:-1.339565px;}
.ls9f{letter-spacing:-1.328806px;}
.ls3a{letter-spacing:-1.323426px;}
.ls6c{letter-spacing:-1.318046px;}
.lsa1{letter-spacing:-1.312666px;}
.ls34{letter-spacing:-1.307287px;}
.ls98{letter-spacing:-1.304576px;}
.ls38{letter-spacing:-1.301907px;}
.ls2f{letter-spacing:-1.296527px;}
.lsa5{letter-spacing:-1.291147px;}
.lsa3{letter-spacing:-1.280388px;}
.ls33{letter-spacing:-1.275008px;}
.ls37{letter-spacing:-1.269628px;}
.ls35{letter-spacing:-1.264248px;}
.ls3c{letter-spacing:-1.253489px;}
.lsa7{letter-spacing:-1.242729px;}
.ls90{letter-spacing:-1.241813px;}
.lsa6{letter-spacing:-1.231970px;}
.ls8d{letter-spacing:-1.223881px;}
.ls8f{letter-spacing:-1.192499px;}
.ls82{letter-spacing:-1.188931px;}
.ls9a{letter-spacing:-1.188016px;}
.ls8c{letter-spacing:-1.183533px;}
.ls81{letter-spacing:-1.178172px;}
.ls89{letter-spacing:-1.167412px;}
.ls32{letter-spacing:-1.165476px;}
.ls40{letter-spacing:-1.156653px;}
.ls26{letter-spacing:-1.140513px;}
.ls71{letter-spacing:-1.135134px;}
.ls92{letter-spacing:-1.120770px;}
.ls22{letter-spacing:-1.118994px;}
.ls24{letter-spacing:-1.113614px;}
.ls42{letter-spacing:-1.111685px;}
.ls72{letter-spacing:-1.108235px;}
.ls7e{letter-spacing:-1.102855px;}
.ls8e{letter-spacing:-1.102838px;}
.ls58{letter-spacing:-1.097475px;}
.ls54{letter-spacing:-1.092095px;}
.ls6f{letter-spacing:-1.086716px;}
.ls86{letter-spacing:-1.081336px;}
.ls99{letter-spacing:-1.080422px;}
.ls23{letter-spacing:-1.075956px;}
.ls91{letter-spacing:-1.072800px;}
.ls80{letter-spacing:-1.070576px;}
.ls56{letter-spacing:-1.065196px;}
.ls96{letter-spacing:-1.062490px;}
.ls51{letter-spacing:-1.059817px;}
.ls3f{letter-spacing:-1.054437px;}
.ls73{letter-spacing:-1.043677px;}
.ls88{letter-spacing:-1.038298px;}
.ls5a{letter-spacing:-1.032918px;}
.ls9b{letter-spacing:-1.031108px;}
.ls3e{letter-spacing:-1.027538px;}
.ls53{letter-spacing:-1.022158px;}
.ls3d{letter-spacing:-1.016778px;}
.ls41{letter-spacing:-1.006019px;}
.ls7d{letter-spacing:-0.995259px;}
.ls52{letter-spacing:-0.989880px;}
.ls95{letter-spacing:-0.989127px;}
.ls8b{letter-spacing:-0.986278px;}
.ls5b{letter-spacing:-0.984500px;}
.ls83{letter-spacing:-0.973740px;}
.ls8a{letter-spacing:-0.963862px;}
.ls5c{letter-spacing:-0.957601px;}
.ls5d{letter-spacing:-0.946841px;}
.ls87{letter-spacing:-0.941462px;}
.ls94{letter-spacing:-0.936964px;}
.ls59{letter-spacing:-0.925322px;}
.ls57{letter-spacing:-0.893043px;}
.ls70{letter-spacing:-0.835557px;}
.ls97{letter-spacing:-0.811437px;}
.ls55{letter-spacing:-0.810454px;}
.ls93{letter-spacing:-0.770981px;}
.ls49{letter-spacing:-0.050212px;}
.lsd{letter-spacing:-0.022416px;}
.lse{letter-spacing:-0.013450px;}
.ls15{letter-spacing:-0.009564px;}
.lsc{letter-spacing:-0.008966px;}
.ls11{letter-spacing:-0.004352px;}
.ls65{letter-spacing:-0.002988px;}
.ls12{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.003586px;}
.ls48{letter-spacing:0.004184px;}
.ls4{letter-spacing:0.004352px;}
.ls50{letter-spacing:0.004483px;}
.ls0{letter-spacing:0.004782px;}
.ls13{letter-spacing:0.017407px;}
.ls2{letter-spacing:0.017933px;}
.ls9e{letter-spacing:0.047821px;}
.ls6b{letter-spacing:0.075317px;}
.lsa{letter-spacing:0.167371px;}
.ls4f{letter-spacing:0.200820px;}
.ls6a{letter-spacing:0.225951px;}
.ls9d{letter-spacing:0.306056px;}
.ls45{letter-spacing:0.398055px;}
.ls47{letter-spacing:0.505699px;}
.ls6{letter-spacing:0.516459px;}
.ls5{letter-spacing:0.537978px;}
.ls4e{letter-spacing:0.543358px;}
.ls4c{letter-spacing:0.554117px;}
.ls7{letter-spacing:0.559497px;}
.ls4d{letter-spacing:0.575636px;}
.ls61{letter-spacing:0.693992px;}
.ls46{letter-spacing:0.702872px;}
.ls9{letter-spacing:1.070576px;}
.ls8{letter-spacing:1.118994px;}
.ls4a{letter-spacing:6.693418px;}
.ls3{letter-spacing:6.747216px;}
.lsa9{letter-spacing:9.540329px;}
.ls6d{letter-spacing:11.394374px;}
.ls84{letter-spacing:12.717800px;}
.ls66{letter-spacing:13.503248px;}
.ls6e{letter-spacing:13.756097px;}
.lsae{letter-spacing:14.652416px;}
.ls25{letter-spacing:15.187119px;}
.ls7f{letter-spacing:15.364652px;}
.ls14{letter-spacing:15.896687px;}
.ls44{letter-spacing:16.768774px;}
.lsb{letter-spacing:17.176469px;}
.ls4b{letter-spacing:17.925427px;}
.ls67{letter-spacing:21.239371px;}
.ls85{letter-spacing:23.391283px;}
.ls68{letter-spacing:23.445081px;}
.ls69{letter-spacing:23.509639px;}
.lsa8{letter-spacing:23.776701px;}
.ls1{letter-spacing:26.276035px;}
.ls9c{letter-spacing:27.583268px;}
.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;}
}
.ws1b7{word-spacing:-27.631089px;}
.ws186{word-spacing:-23.824522px;}
.ws10e{word-spacing:-23.445081px;}
.wsfe{word-spacing:-21.293169px;}
.wsa{word-spacing:-15.940204px;}
.ws103{word-spacing:-15.418449px;}
.ws28{word-spacing:-15.240917px;}
.ws1c1{word-spacing:-14.700237px;}
.wse5{word-spacing:-13.809895px;}
.ws10c{word-spacing:-12.771598px;}
.wse0{word-spacing:-11.448172px;}
.ws1bd{word-spacing:-9.588151px;}
.ws74{word-spacing:-0.095642px;}
.ws9{word-spacing:-0.060924px;}
.ws64{word-spacing:-0.053798px;}
.ws176{word-spacing:-0.047821px;}
.ws140{word-spacing:-0.044831px;}
.ws73{word-spacing:-0.043338px;}
.ws2d{word-spacing:-0.035861px;}
.ws148{word-spacing:-0.029883px;}
.ws3{word-spacing:-0.022416px;}
.ws75{word-spacing:0.000000px;}
.wse7{word-spacing:0.799696px;}
.ws10a{word-spacing:0.919942px;}
.ws147{word-spacing:0.959244px;}
.wse9{word-spacing:1.054437px;}
.ws36{word-spacing:1.221210px;}
.ws1c6{word-spacing:1.348558px;}
.ws1c0{word-spacing:1.688088px;}
.ws8{word-spacing:8.233379px;}
.ws7{word-spacing:8.986219px;}
.wsf7{word-spacing:9.914935px;}
.wsd4{word-spacing:9.992785px;}
.ws18e{word-spacing:10.114184px;}
.ws18f{word-spacing:10.315033px;}
.ws190{word-spacing:10.367636px;}
.ws192{word-spacing:10.434586px;}
.ws191{word-spacing:10.511100px;}
.wsfb{word-spacing:10.732661px;}
.wsfa{word-spacing:10.754180px;}
.ws7d{word-spacing:10.813358px;}
.ws1e9{word-spacing:10.845848px;}
.ws1cd{word-spacing:11.185379px;}
.ws1cb{word-spacing:11.190161px;}
.ws12b{word-spacing:11.286778px;}
.ws1ca{word-spacing:11.357535px;}
.ws1d1{word-spacing:11.405356px;}
.ws1cc{word-spacing:11.462742px;}
.ws7c{word-spacing:11.593426px;}
.ws9d{word-spacing:11.598806px;}
.wsbe{word-spacing:11.781718px;}
.ws84{word-spacing:11.819377px;}
.ws17{word-spacing:11.916213px;}
.wsb6{word-spacing:11.932352px;}
.ws5{word-spacing:11.952211px;}
.ws142{word-spacing:12.010171px;}
.ws76{word-spacing:12.019459px;}
.wsde{word-spacing:12.023808px;}
.wsb4{word-spacing:12.082986px;}
.wsa3{word-spacing:12.152923px;}
.ws1dd{word-spacing:12.313959px;}
.ws9f{word-spacing:12.373494px;}
.ws1de{word-spacing:12.419166px;}
.ws81{word-spacing:12.448811px;}
.ws83{word-spacing:12.454191px;}
.ws12e{word-spacing:12.464950px;}
.wsa2{word-spacing:12.647863px;}
.ws12a{word-spacing:12.653243px;}
.ws82{word-spacing:12.674762px;}
.ws138{word-spacing:12.793117px;}
.ws14d{word-spacing:12.889953px;}
.ws150{word-spacing:13.019068px;}
.wsd5{word-spacing:13.045763px;}
.ws79{word-spacing:13.115904px;}
.ws132{word-spacing:13.132043px;}
.ws116{word-spacing:13.142803px;}
.ws6e{word-spacing:13.151192px;}
.wscd{word-spacing:13.193704px;}
.ws6b{word-spacing:13.247430px;}
.wsce{word-spacing:13.247501px;}
.ws7a{word-spacing:13.255778px;}
.ws1b{word-spacing:13.261158px;}
.ws9b{word-spacing:13.293436px;}
.ws6c{word-spacing:13.306010px;}
.ws39{word-spacing:13.314956px;}
.ws1{word-spacing:13.324070px;}
.ws10b{word-spacing:13.341854px;}
.ws3b{word-spacing:13.363374px;}
.ws122{word-spacing:13.374133px;}
.ws78{word-spacing:13.427184px;}
.ws3a{word-spacing:13.470969px;}
.ws2{word-spacing:13.480982px;}
.ws168{word-spacing:13.519387px;}
.ws11{word-spacing:13.562092px;}
.ws12{word-spacing:13.566874px;}
.ws1b1{word-spacing:13.590785px;}
.wsca{word-spacing:13.619597px;}
.ws131{word-spacing:13.637742px;}
.ws1b2{word-spacing:13.662517px;}
.ws6d{word-spacing:13.690964px;}
.ws169{word-spacing:13.696920px;}
.ws107{word-spacing:13.729199px;}
.ws1c2{word-spacing:13.758159px;}
.ws17a{word-spacing:13.762941px;}
.ws17c{word-spacing:13.772506px;}
.ws17b{word-spacing:13.782070px;}
.wsf6{word-spacing:13.782996px;}
.ws1eb{word-spacing:13.786852px;}
.wsa9{word-spacing:13.793756px;}
.ws1c3{word-spacing:13.796416px;}
.ws151{word-spacing:13.804515px;}
.wsb5{word-spacing:13.815275px;}
.ws185{word-spacing:13.834673px;}
.ws137{word-spacing:13.852934px;}
.wsdf{word-spacing:13.922871px;}
.ws71{word-spacing:13.946168px;}
.ws113{word-spacing:13.976668px;}
.ws70{word-spacing:13.980839px;}
.wsa4{word-spacing:13.992808px;}
.ws72{word-spacing:14.115187px;}
.ws1c8{word-spacing:14.116818px;}
.ws1c{word-spacing:14.132682px;}
.ws18{word-spacing:14.164961px;}
.wsd3{word-spacing:14.197914px;}
.ws3e{word-spacing:14.207999px;}
.wsc3{word-spacing:14.218759px;}
.wscf{word-spacing:14.224813px;}
.ws14{word-spacing:14.236371px;}
.wsc2{word-spacing:14.245657px;}
.ws17d{word-spacing:14.250718px;}
.wsa1{word-spacing:14.272556px;}
.ws3f{word-spacing:14.304835px;}
.ws8d{word-spacing:14.417810px;}
.ws101{word-spacing:14.423190px;}
.ws102{word-spacing:14.482368px;}
.ws5b{word-spacing:14.487748px;}
.ws7b{word-spacing:14.493127px;}
.ws14f{word-spacing:14.498507px;}
.wsb7{word-spacing:14.509267px;}
.ws154{word-spacing:14.525406px;}
.ws1a2{word-spacing:14.595030px;}
.ws34{word-spacing:14.643761px;}
.ws146{word-spacing:14.650705px;}
.ws11e{word-spacing:14.654521px;}
.wsa8{word-spacing:14.686799px;}
.ws1a3{word-spacing:14.695455px;}
.wsc5{word-spacing:14.724458px;}
.ws1d4{word-spacing:14.728930px;}
.ws8c{word-spacing:14.762116px;}
.wsb8{word-spacing:14.789015px;}
.ws1a1{word-spacing:14.791097px;}
.ws8e{word-spacing:14.810534px;}
.ws1a0{word-spacing:14.824572px;}
.ws33{word-spacing:14.832053px;}
.wsff{word-spacing:14.875092px;}
.ws184{word-spacing:14.886740px;}
.ws1d6{word-spacing:14.891522px;}
.wsb9{word-spacing:14.896611px;}
.ws1bc{word-spacing:14.905868px;}
.ws1d5{word-spacing:14.929779px;}
.ws181{word-spacing:14.934561px;}
.ws179{word-spacing:14.944125px;}
.ws1ba{word-spacing:14.948907px;}
.ws178{word-spacing:14.953689px;}
.ws174{word-spacing:14.963253px;}
.ws1d2{word-spacing:14.968036px;}
.ws19b{word-spacing:14.977600px;}
.ws159{word-spacing:14.988067px;}
.wsc4{word-spacing:14.998827px;}
.ws153{word-spacing:15.004206px;}
.ws145{word-spacing:15.063149px;}
.ws180{word-spacing:15.078024px;}
.ws195{word-spacing:15.097153px;}
.ws1d3{word-spacing:15.101935px;}
.ws175{word-spacing:15.130628px;}
.ws15a{word-spacing:15.144081px;}
.ws1df{word-spacing:15.144974px;}
.ws183{word-spacing:15.149756px;}
.ws124{word-spacing:15.165600px;}
.ws16b{word-spacing:15.181739px;}
.ws1bb{word-spacing:15.183231px;}
.ws194{word-spacing:15.197577px;}
.ws19a{word-spacing:15.211924px;}
.ws1d9{word-spacing:15.254963px;}
.ws177{word-spacing:15.274091px;}
.ws17f{word-spacing:15.293220px;}
.wsc6{word-spacing:15.391551px;}
.wscc{word-spacing:15.417312px;}
.wscb{word-spacing:15.435244px;}
.ws158{word-spacing:15.499146px;}
.ws1e{word-spacing:15.552944px;}
.wsda{word-spacing:15.606742px;}
.ws1c9{word-spacing:15.608840px;}
.ws143{word-spacing:15.636983px;}
.ws65{word-spacing:15.676679px;}
.wsf5{word-spacing:15.703578px;}
.ws48{word-spacing:15.773515px;}
.ws16c{word-spacing:15.854212px;}
.ws115{word-spacing:15.864971px;}
.ws94{word-spacing:15.891870px;}
.ws16f{word-spacing:15.902630px;}
.ws4{word-spacing:15.915360px;}
.ws85{word-spacing:15.918769px;}
.ws95{word-spacing:15.940288px;}
.ws135{word-spacing:15.945668px;}
.wsd8{word-spacing:15.969158px;}
.ws144{word-spacing:16.000113px;}
.ws9c{word-spacing:16.015605px;}
.ws47{word-spacing:16.064023px;}
.ws98{word-spacing:16.096302px;}
.wsc1{word-spacing:16.176998px;}
.ws12f{word-spacing:16.193138px;}
.wsc9{word-spacing:16.209277px;}
.ws11d{word-spacing:16.236176px;}
.ws139{word-spacing:16.289974px;}
.wsc0{word-spacing:16.354531px;}
.ws1c5{word-spacing:16.369197px;}
.ws16d{word-spacing:16.376050px;}
.ws27{word-spacing:16.419089px;}
.ws130{word-spacing:16.435228px;}
.ws23{word-spacing:16.445987px;}
.wsf{word-spacing:16.450493px;}
.ws1b9{word-spacing:16.507878px;}
.ws22{word-spacing:16.532064px;}
.ws2a{word-spacing:16.537444px;}
.ws13f{word-spacing:16.547048px;}
.wsb2{word-spacing:16.569722px;}
.ws15{word-spacing:16.570046px;}
.ws117{word-spacing:16.575102px;}
.ws52{word-spacing:16.618140px;}
.wsd9{word-spacing:16.628900px;}
.ws87{word-spacing:16.634280px;}
.wsdd{word-spacing:16.645039px;}
.ws26{word-spacing:16.655799px;}
.ws141{word-spacing:16.690507px;}
.wsb0{word-spacing:16.698837px;}
.ws51{word-spacing:16.704217px;}
.ws2b{word-spacing:16.731116px;}
.ws19d{word-spacing:16.742202px;}
.ws1c4{word-spacing:16.780459px;}
.ws16a{word-spacing:16.795673px;}
.wsf3{word-spacing:16.822572px;}
.ws127{word-spacing:16.876370px;}
.ws50{word-spacing:16.967826px;}
.ws125{word-spacing:16.989345px;}
.ws21{word-spacing:17.016244px;}
.ws19c{word-spacing:17.033911px;}
.ws171{word-spacing:17.048523px;}
.ws2c{word-spacing:17.053903px;}
.wsf4{word-spacing:17.070042px;}
.ws129{word-spacing:17.139979px;}
.ws66{word-spacing:17.215296px;}
.ws2e{word-spacing:17.317512px;}
.ws61{word-spacing:17.360550px;}
.ws1f{word-spacing:17.376689px;}
.ws109{word-spacing:17.382069px;}
.ws1bf{word-spacing:17.387788px;}
.ws128{word-spacing:17.408968px;}
.wsf0{word-spacing:17.435867px;}
.ws1be{word-spacing:17.445174px;}
.wsf1{word-spacing:17.446627px;}
.ws1cf{word-spacing:17.459520px;}
.ws20{word-spacing:17.473525px;}
.ws1ea{word-spacing:17.478649px;}
.wsf2{word-spacing:17.478905px;}
.ws104{word-spacing:17.495045px;}
.wsa6{word-spacing:17.516564px;}
.ws1ce{word-spacing:17.526470px;}
.ws69{word-spacing:17.538083px;}
.ws67{word-spacing:17.564982px;}
.ws12d{word-spacing:17.570361px;}
.ws11a{word-spacing:17.597260px;}
.ws1d0{word-spacing:17.655587px;}
.wsbf{word-spacing:17.677957px;}
.wsb1{word-spacing:17.715616px;}
.wsa7{word-spacing:17.753274px;}
.ws4a{word-spacing:17.764034px;}
.ws6{word-spacing:17.946250px;}
.ws77{word-spacing:17.964182px;}
.ws167{word-spacing:17.984605px;}
.ws1da{word-spacing:18.033375px;}
.ws24{word-spacing:18.038402px;}
.ws126{word-spacing:18.059921px;}
.ws112{word-spacing:18.081441px;}
.ws1db{word-spacing:18.095542px;}
.ws18d{word-spacing:18.210313px;}
.ws1c7{word-spacing:18.224659px;}
.ws1a9{word-spacing:18.234224px;}
.wsba{word-spacing:18.237454px;}
.ws119{word-spacing:18.275113px;}
.ws133{word-spacing:18.285872px;}
.ws68{word-spacing:18.334290px;}
.ws1dc{word-spacing:18.334648px;}
.ws1d{word-spacing:18.398848px;}
.ws157{word-spacing:18.458025px;}
.ws11b{word-spacing:18.533342px;}
.ws163{word-spacing:18.544102px;}
.ws9a{word-spacing:18.597899px;}
.ws99{word-spacing:18.662457px;}
.ws1ab{word-spacing:18.674179px;}
.wsdb{word-spacing:18.716255px;}
.ws1aa{word-spacing:18.741128px;}
.ws31{word-spacing:18.823850px;}
.ws55{word-spacing:18.899167px;}
.wsaf{word-spacing:18.915306px;}
.wse{word-spacing:18.918977px;}
.ws111{word-spacing:18.920686px;}
.ws161{word-spacing:19.060561px;}
.wsb3{word-spacing:19.076700px;}
.ws54{word-spacing:19.082080px;}
.wsd{word-spacing:19.104282px;}
.ws15b{word-spacing:19.157397px;}
.ws160{word-spacing:19.162776px;}
.ws3c{word-spacing:19.189675px;}
.wsa5{word-spacing:19.270372px;}
.ws121{word-spacing:19.345689px;}
.ws152{word-spacing:19.356448px;}
.ws100{word-spacing:19.367208px;}
.ws193{word-spacing:19.472793px;}
.ws3d{word-spacing:19.577019px;}
.ws89{word-spacing:19.641577px;}
.wse1{word-spacing:19.689995px;}
.ws14b{word-spacing:19.722273px;}
.wse2{word-spacing:19.759932px;}
.ws57{word-spacing:19.765312px;}
.ws14a{word-spacing:19.813730px;}
.ws86{word-spacing:19.835249px;}
.ws15d{word-spacing:19.883667px;}
.ws4e{word-spacing:19.948224px;}
.ws5e{word-spacing:20.028921px;}
.ws80{word-spacing:20.055820px;}
.ws7f{word-spacing:20.061200px;}
.ws14c{word-spacing:20.104238px;}
.ws5d{word-spacing:20.109618px;}
.wseb{word-spacing:20.147276px;}
.ws136{word-spacing:20.158036px;}
.ws5f{word-spacing:20.168795px;}
.ws43{word-spacing:20.265631px;}
.ws1b3{word-spacing:20.357485px;}
.ws4d{word-spacing:20.389366px;}
.wsea{word-spacing:20.405506px;}
.ws44{word-spacing:20.432404px;}
.ws1b4{word-spacing:20.433999px;}
.ws15c{word-spacing:20.496962px;}
.ws1d8{word-spacing:20.567898px;}
.wsae{word-spacing:20.588418px;}
.ws1d7{word-spacing:20.591809px;}
.ws173{word-spacing:20.639630px;}
.wsfd{word-spacing:20.647596px;}
.ws5a{word-spacing:20.658355px;}
.ws8b{word-spacing:20.696014px;}
.wsc8{word-spacing:20.706773px;}
.ws49{word-spacing:20.739052px;}
.ws38{word-spacing:20.835888px;}
.ws8f{word-spacing:20.852027px;}
.ws88{word-spacing:20.970382px;}
.ws16e{word-spacing:20.997281px;}
.ws53{word-spacing:21.061839px;}
.ws14e{word-spacing:21.083358px;}
.ws105{word-spacing:21.099497px;}
.ws10{word-spacing:21.227831px;}
.ws15e{word-spacing:21.330828px;}
.ws19f{word-spacing:21.347384px;}
.ws15f{word-spacing:21.481462px;}
.ws56{word-spacing:21.626716px;}
.wsaa{word-spacing:21.798869px;}
.ws16{word-spacing:21.858046px;}
.ws1a{word-spacing:21.933363px;}
.wsf9{word-spacing:21.987161px;}
.ws1e4{word-spacing:22.093394px;}
.ws19{word-spacing:22.121655px;}
.ws11c{word-spacing:22.159314px;}
.ws1e5{word-spacing:22.275115px;}
.ws9e{word-spacing:22.315327px;}
.ws1e3{word-spacing:22.342065px;}
.ws58{word-spacing:22.374505px;}
.ws59{word-spacing:22.401404px;}
.ws7e{word-spacing:22.659633px;}
.ws13{word-spacing:22.762891px;}
.ws40{word-spacing:22.977040px;}
.ws1e0{word-spacing:22.987651px;}
.ws62{word-spacing:23.009319px;}
.ws196{word-spacing:23.021126px;}
.ws1e1{word-spacing:23.030690px;}
.wse6{word-spacing:23.030838px;}
.wse8{word-spacing:23.046978px;}
.ws1e2{word-spacing:23.097640px;}
.ws2f{word-spacing:23.348245px;}
.ws30{word-spacing:23.428942px;}
.ws19e{word-spacing:23.690622px;}
.ws93{word-spacing:23.800147px;}
.ws8a{word-spacing:23.961540px;}
.ws1e8{word-spacing:23.977550px;}
.ws1e6{word-spacing:24.006242px;}
.ws1e7{word-spacing:24.049281px;}
.ws63{word-spacing:24.058376px;}
.ws29{word-spacing:24.112174px;}
.ws32{word-spacing:24.128313px;}
.ws13e{word-spacing:24.139073px;}
.wsad{word-spacing:24.155212px;}
.ws13b{word-spacing:24.187491px;}
.ws92{word-spacing:24.203630px;}
.ws13a{word-spacing:24.289707px;}
.ws1ad{word-spacing:24.307516px;}
.ws13d{word-spacing:24.365024px;}
.ws17e{word-spacing:24.517929px;}
.ws4c{word-spacing:24.698570px;}
.ws1ac{word-spacing:24.718778px;}
.wsac{word-spacing:24.730849px;}
.wsdc{word-spacing:24.795406px;}
.ws90{word-spacing:24.849204px;}
.ws91{word-spacing:24.886862px;}
.ws188{word-spacing:24.986577px;}
.ws189{word-spacing:25.302197px;}
.ws10f{word-spacing:25.338764px;}
.ws4f{word-spacing:25.381802px;}
.ws6a{word-spacing:25.387182px;}
.ws1ec{word-spacing:25.402621px;}
.ws41{word-spacing:25.424840px;}
.ws106{word-spacing:25.532436px;}
.ws10d{word-spacing:25.543195px;}
.wsd0{word-spacing:25.544590px;}
.wsd1{word-spacing:25.692531px;}
.ws42{word-spacing:25.758387px;}
.wsd2{word-spacing:25.791159px;}
.ws118{word-spacing:25.882122px;}
.wsbd{word-spacing:26.038135px;}
.ws123{word-spacing:26.237187px;}
.ws25{word-spacing:26.420100px;}
.ws172{word-spacing:26.645495px;}
.wsee{word-spacing:26.656810px;}
.ws170{word-spacing:26.796129px;}
.ws164{word-spacing:26.818203px;}
.ws166{word-spacing:26.828963px;}
.ws114{word-spacing:26.904280px;}
.wsed{word-spacing:26.958078px;}
.ws165{word-spacing:26.995736px;}
.ws1b6{word-spacing:27.181570px;}
.ws18c{word-spacing:27.248520px;}
.wsbc{word-spacing:27.259345px;}
.wsfc{word-spacing:27.275485px;}
.ws18a{word-spacing:27.377637px;}
.ws187{word-spacing:27.391983px;}
.ws1b8{word-spacing:27.401548px;}
.ws1b5{word-spacing:27.425458px;}
.ws18b{word-spacing:27.521101px;}
.ws110{word-spacing:27.695107px;}
.ws1a7{word-spacing:28.056698px;}
.wsef{word-spacing:28.130870px;}
.wsc7{word-spacing:28.259984px;}
.ws1a6{word-spacing:28.396229px;}
.ws1a8{word-spacing:28.415357px;}
.wsab{word-spacing:28.550492px;}
.ws12c{word-spacing:28.663468px;}
.wsbb{word-spacing:28.819481px;}
.ws155{word-spacing:28.862520px;}
.ws108{word-spacing:29.018533px;}
.ws5c{word-spacing:29.029293px;}
.ws1a5{word-spacing:29.089636px;}
.ws156{word-spacing:29.147648px;}
.ws120{word-spacing:29.169167px;}
.ws11f{word-spacing:29.282143px;}
.ws60{word-spacing:29.432776px;}
.ws1a4{word-spacing:29.433949px;}
.ws4b{word-spacing:29.561891px;}
.ws6f{word-spacing:29.729309px;}
.ws0{word-spacing:29.846695px;}
.wsd7{word-spacing:29.862782px;}
.ws37{word-spacing:30.228984px;}
.wsb{word-spacing:30.270630px;}
.wsc{word-spacing:30.385400px;}
.ws134{word-spacing:30.643227px;}
.wse4{word-spacing:30.917596px;}
.ws45{word-spacing:31.186585px;}
.ws182{word-spacing:31.700673px;}
.wsa0{word-spacing:31.821399px;}
.ws1af{word-spacing:31.868048px;}
.ws1ae{word-spacing:31.939779px;}
.ws1b0{word-spacing:31.958908px;}
.ws35{word-spacing:33.198622px;}
.ws162{word-spacing:33.370775px;}
.wsf8{word-spacing:33.612865px;}
.ws46{word-spacing:34.285338px;}
.ws199{word-spacing:34.952515px;}
.ws197{word-spacing:34.981208px;}
.ws97{word-spacing:35.259078px;}
.ws198{word-spacing:35.344649px;}
.ws96{word-spacing:35.818575px;}
.wse3{word-spacing:36.243578px;}
.wsec{word-spacing:37.319534px;}
.ws13c{word-spacing:46.147753px;}
.ws149{word-spacing:2305.015159px;}
.wsd6{word-spacing:2305.257249px;}
._28{margin-left:-27.195916px;}
._23{margin-left:-25.210565px;}
._26{margin-left:-23.728879px;}
._22{margin-left:-21.937543px;}
._f{margin-left:-16.946165px;}
._7{margin-left:-15.905390px;}
._20{margin-left:-14.665280px;}
._1d{margin-left:-12.782357px;}
._29{margin-left:-11.291065px;}
._21{margin-left:-10.045249px;}
._1c{margin-left:-8.532331px;}
._1{margin-left:-6.514090px;}
._e{margin-left:-2.201530px;}
._b{margin-left:-1.195530px;}
._4{width:1.743965px;}
._3{width:2.779584px;}
._6{width:10.317833px;}
._17{width:12.114684px;}
._5{width:14.086388px;}
._0{width:15.794314px;}
._d{width:17.146788px;}
._10{width:19.012143px;}
._12{width:20.674495px;}
._19{width:21.871205px;}
._c{width:23.337486px;}
._15{width:24.377659px;}
._14{width:25.860602px;}
._18{width:27.729224px;}
._11{width:28.851760px;}
._13{width:30.788481px;}
._1f{width:32.219502px;}
._27{width:36.109788px;}
._1e{width:37.303395px;}
._1a{width:44.862182px;}
._24{width:47.245228px;}
._8{width:80.026971px;}
._9{width:98.340226px;}
._a{width:99.427832px;}
._2{width:969.411302px;}
._1b{width:974.705962px;}
._25{width:977.032742px;}
._16{width:987.671376px;}
.fc2{color:rgb(46,51,55);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs10{font-size:29.883000px;}
.fs6{font-size:31.876200px;}
.fs8{font-size:35.860800px;}
.fse{font-size:36.000000px;}
.fs9{font-size:41.842800px;}
.fsa{font-size:43.338000px;}
.fs2{font-size:43.516800px;}
.fsf{font-size:44.830800px;}
.fs1{font-size:44.832000px;}
.fs0{font-size:47.820600px;}
.fs5{font-size:47.821200px;}
.fsc{font-size:48.000000px;}
.fs7{font-size:53.797800px;}
.fsd{font-size:54.000000px;}
.fs4{font-size:59.775600px;}
.fs11{font-size:83.685600px;}
.fs3{font-size:95.641800px;}
.fsb{font-size:125.530200px;}
.y0{bottom:0.000000px;}
.y82{bottom:3.000000px;}
.y4{bottom:3.986743px;}
.y3{bottom:18.931500px;}
.y1{bottom:38.304000px;}
.y140{bottom:95.584200px;}
.y77{bottom:97.794950px;}
.y71{bottom:97.795200px;}
.y12e{bottom:97.795978px;}
.y6f{bottom:97.796755px;}
.yde{bottom:98.135616px;}
.y70{bottom:103.747950px;}
.y76{bottom:112.762119px;}
.ydd{bottom:113.017200px;}
.y12d{bottom:115.738889px;}
.y6e{bottom:115.739666px;}
.y75{bottom:127.729289px;}
.y12c{bottom:131.470800px;}
.y12b{bottom:133.681800px;}
.y6d{bottom:133.682578px;}
.y13f{bottom:133.684592px;}
.y73{bottom:142.610680px;}
.y74{bottom:142.950653px;}
.y12a{bottom:149.329050px;}
.y6c{bottom:151.625489px;}
.y13e{bottom:151.627503px;}
.y72{bottom:157.577850px;}
.y129{bottom:167.272350px;}
.y6b{bottom:169.568400px;}
.y69{bottom:169.568789px;}
.y128{bottom:169.569637px;}
.y13d{bottom:169.570414px;}
.y6a{bottom:175.521150px;}
.y68{bottom:187.511700px;}
.y66{bottom:187.511770px;}
.y127{bottom:187.512548px;}
.y13c{bottom:187.513325px;}
.y67{bottom:193.464450px;}
.y64{bottom:203.158950px;}
.y65{bottom:205.369950px;}
.y63{bottom:205.370339px;}
.y126{bottom:205.370728px;}
.y39{bottom:205.371116px;}
.y13b{bottom:205.371505px;}
.y61{bottom:221.102250px;}
.y62{bottom:223.313250px;}
.y125{bottom:223.313639px;}
.y38{bottom:223.314028px;}
.y13a{bottom:223.314416px;}
.y123{bottom:239.045700px;}
.y124{bottom:241.256550px;}
.y37{bottom:241.256939px;}
.y122{bottom:241.257328px;}
.y1be{bottom:251.030998px;}
.y17d{bottom:251.032077px;}
.y60{bottom:256.988850px;}
.y36{bottom:259.199850px;}
.y121{bottom:259.200239px;}
.y34{bottom:259.200628px;}
.y5f{bottom:259.202014px;}
.y1bd{bottom:264.467560px;}
.y17c{bottom:264.468639px;}
.y35{bottom:265.152600px;}
.y11f{bottom:274.932150px;}
.y120{bottom:277.143150px;}
.y33{bottom:277.143539px;}
.y5e{bottom:277.144925px;}
.y11e{bottom:277.145314px;}
.y1bc{bottom:277.904121px;}
.y17b{bottom:277.905201px;}
.y1bb{bottom:291.340683px;}
.y17a{bottom:291.341762px;}
.y139{bottom:292.875450px;}
.y32{bottom:295.086450px;}
.y138{bottom:295.087378px;}
.y5d{bottom:295.087837px;}
.y11d{bottom:295.088225px;}
.y1ba{bottom:304.777245px;}
.y179{bottom:304.778324px;}
.yab{bottom:307.419144px;}
.y137{bottom:313.030289px;}
.y30{bottom:313.030359px;}
.y5c{bottom:313.030748px;}
.y11c{bottom:313.031137px;}
.y1b9{bottom:318.213806px;}
.y178{bottom:318.214886px;}
.y31{bottom:318.982650px;}
.yaa{bottom:325.362055px;}
.y135{bottom:328.677000px;}
.y136{bottom:330.973200px;}
.y2f{bottom:330.973270px;}
.y5b{bottom:330.973659px;}
.y11b{bottom:330.974048px;}
.y1b8{bottom:331.650368px;}
.y177{bottom:331.651447px;}
.ya9{bottom:343.304966px;}
.y1b7{bottom:345.171812px;}
.y176{bottom:345.172892px;}
.y2e{bottom:348.831450px;}
.y2c{bottom:348.831839px;}
.y11a{bottom:348.832228px;}
.y2d{bottom:354.869250px;}
.y1b6{bottom:358.608374px;}
.y175{bottom:358.609453px;}
.ya8{bottom:361.247878px;}
.y134{bottom:364.563600px;}
.y2b{bottom:366.774750px;}
.y119{bottom:366.775139px;}
.y29{bottom:366.775916px;}
.y1b5{bottom:372.044936px;}
.y174{bottom:372.046015px;}
.y2a{bottom:372.812400px;}
.ya7{bottom:379.190789px;}
.y58{bottom:382.506900px;}
.y59{bottom:384.718050px;}
.y57{bottom:384.718439px;}
.y28{bottom:384.718828px;}
.y118{bottom:384.724022px;}
.y1b4{bottom:385.481497px;}
.y173{bottom:385.482577px;}
.y5a{bottom:390.670800px;}
.ya6{bottom:397.133700px;}
.y1b3{bottom:398.918059px;}
.y172{bottom:398.919138px;}
.y55{bottom:400.450200px;}
.y56{bottom:402.661350px;}
.y27{bottom:402.661739px;}
.y54{bottom:402.662128px;}
.y133{bottom:402.665420px;}
.y117{bottom:402.666933px;}
.y1b2{bottom:412.354621px;}
.y171{bottom:412.355700px;}
.ya4{bottom:412.780950px;}
.ya5{bottom:414.991950px;}
.ya3{bottom:414.993894px;}
.y26{bottom:420.604650px;}
.y53{bottom:420.605039px;}
.y24{bottom:420.605666px;}
.yd4{bottom:420.607442px;}
.y132{bottom:420.608331px;}
.y116{bottom:420.609844px;}
.y1b1{bottom:425.876065px;}
.y25{bottom:426.557400px;}
.ya2{bottom:432.936805px;}
.y51{bottom:436.251900px;}
.y170{bottom:437.782500px;}
.y52{bottom:438.547950px;}
.y23{bottom:438.548578px;}
.y50{bottom:438.549575px;}
.yd3{bottom:438.550353px;}
.y131{bottom:438.551243px;}
.y115{bottom:438.552756px;}
.y1b0{bottom:439.312627px;}
.ya1{bottom:450.879716px;}
.y1af{bottom:452.749188px;}
.y22{bottom:456.491489px;}
.y4f{bottom:456.492487px;}
.yd2{bottom:456.493264px;}
.y130{bottom:456.494154px;}
.y114{bottom:456.495667px;}
.y1ae{bottom:466.185750px;}
.ya0{bottom:468.822628px;}
.y7e{bottom:468.825000px;}
.y16f{bottom:471.373050px;}
.y21{bottom:474.434400px;}
.y1f{bottom:474.434620px;}
.y4e{bottom:474.435398px;}
.yd1{bottom:474.436175px;}
.y12f{bottom:474.437065px;}
.y113{bottom:474.438578px;}
.y1ad{bottom:479.612893px;}
.y20{bottom:480.387300px;}
.y9f{bottom:486.765539px;}
.y1e{bottom:492.292800px;}
.y4d{bottom:492.293578px;}
.y1c{bottom:492.294355px;}
.y112{bottom:492.296758px;}
.y1ac{bottom:493.049454px;}
.y1d{bottom:498.330600px;}
.y16e{bottom:501.307050px;}
.y9d{bottom:502.412400px;}
.y9e{bottom:504.708450px;}
.y9c{bottom:504.709228px;}
.y1ab{bottom:506.486016px;}
.y4c{bottom:510.236489px;}
.y1b{bottom:510.237266px;}
.y111{bottom:510.239669px;}
.y1aa{bottom:520.007460px;}
.y9b{bottom:522.652139px;}
.y14a{bottom:524.862750px;}
.y4b{bottom:528.179400px;}
.y1a{bottom:528.180178px;}
.y110{bottom:528.182580px;}
.y14b{bottom:529.880100px;}
.y1a9{bottom:533.444022px;}
.y7f{bottom:534.570000px;}
.y147{bottom:537.958950px;}
.y99{bottom:538.299000px;}
.y148{bottom:539.829750px;}
.y146{bottom:539.829987px;}
.y9a{bottom:540.595050px;}
.y98{bottom:540.596825px;}
.y49{bottom:543.911700px;}
.y149{bottom:544.762050px;}
.y4a{bottom:546.122700px;}
.y19{bottom:546.123089px;}
.y48{bottom:546.123478px;}
.y16d{bottom:546.123866px;}
.y10f{bottom:546.125492px;}
.y1a8{bottom:546.880584px;}
.y145{bottom:554.796750px;}
.y97{bottom:558.455005px;}
.y1a7{bottom:560.317145px;}
.yd0{bottom:561.854850px;}
.y17{bottom:564.066000px;}
.y47{bottom:564.066389px;}
.y16c{bottom:564.066778px;}
.ycf{bottom:564.067237px;}
.y10e{bottom:564.068403px;}
.y144{bottom:567.807750px;}
.y143{bottom:569.678787px;}
.y18{bottom:570.018750px;}
.y1a6{bottom:573.753707px;}
.y96{bottom:576.397916px;}
.y16{bottom:582.009300px;}
.y16b{bottom:582.009689px;}
.y14{bottom:582.010148px;}
.y10d{bottom:582.011314px;}
.y142{bottom:582.774600px;}
.y141{bottom:584.645550px;}
.y1a5{bottom:587.190269px;}
.y15{bottom:587.962050px;}
.y95{bottom:594.340828px;}
.y169{bottom:597.656550px;}
.y16a{bottom:599.952600px;}
.y13{bottom:599.953059px;}
.y168{bottom:599.953448px;}
.y10c{bottom:599.954225px;}
.y45{bottom:599.955392px;}
.y1a4{bottom:600.711713px;}
.y46{bottom:605.905350px;}
.y94{bottom:612.283739px;}
.y1a3{bottom:614.148275px;}
.y12{bottom:617.895970px;}
.y167{bottom:617.896359px;}
.y10b{bottom:617.897137px;}
.y44{bottom:617.898303px;}
.y1a2{bottom:627.584836px;}
.y93{bottom:630.226650px;}
.y11{bottom:635.754150px;}
.y166{bottom:635.754539px;}
.y10a{bottom:635.755316px;}
.y43{bottom:635.756483px;}
.y1a1{bottom:641.021398px;}
.y91{bottom:645.873900px;}
.y92{bottom:648.169950px;}
.y90{bottom:648.170798px;}
.ycd{bottom:651.486450px;}
.yce{bottom:653.697450px;}
.ycc{bottom:653.697839px;}
.y109{bottom:653.698228px;}
.y165{bottom:653.698616px;}
.y42{bottom:653.699394px;}
.y1a0{bottom:654.457960px;}
.y8f{bottom:666.113709px;}
.y19f{bottom:667.894521px;}
.yf{bottom:669.684750px;}
.ye{bottom:671.638701px;}
.y10{bottom:671.640750px;}
.y108{bottom:671.641139px;}
.y164{bottom:671.641528px;}
.y41{bottom:671.642305px;}
.yca{bottom:671.642694px;}
.ycb{bottom:677.593500px;}
.y19e{bottom:681.331083px;}
.y8e{bottom:684.056620px;}
.y80{bottom:687.735000px;}
.yd{bottom:689.582411px;}
.y107{bottom:689.584050px;}
.y163{bottom:689.584439px;}
.y40{bottom:689.585216px;}
.yc9{bottom:689.585605px;}
.y105{bottom:689.586064px;}
.y19d{bottom:694.852527px;}
.y106{bottom:695.536800px;}
.y8b{bottom:699.703800px;}
.y8c{bottom:701.914800px;}
.y8a{bottom:701.916744px;}
.y161{bottom:705.316350px;}
.yc{bottom:707.526121px;}
.y162{bottom:707.527350px;}
.y3f{bottom:707.528128px;}
.yc8{bottom:707.528516px;}
.y160{bottom:707.528737px;}
.y104{bottom:707.528975px;}
.y8d{bottom:707.952600px;}
.y19c{bottom:708.289089px;}
.y89{bottom:719.859655px;}
.y19b{bottom:721.725651px;}
.yb{bottom:725.469830px;}
.y3e{bottom:725.471039px;}
.yc7{bottom:725.471428px;}
.y15f{bottom:725.471648px;}
.y103{bottom:725.471887px;}
.y19a{bottom:735.162212px;}
.y88{bottom:737.802566px;}
.ya{bottom:743.413540px;}
.y3d{bottom:743.413950px;}
.yc6{bottom:743.414339px;}
.y15e{bottom:743.414559px;}
.y102{bottom:743.414798px;}
.y3b{bottom:743.417708px;}
.y199{bottom:748.598774px;}
.y3c{bottom:749.366700px;}
.y87{bottom:755.745478px;}
.y9{bottom:761.357250px;}
.y15d{bottom:761.357470px;}
.y101{bottom:761.357709px;}
.y3a{bottom:761.360620px;}
.y198{bottom:762.035336px;}
.y86{bottom:773.688389px;}
.y197{bottom:775.556780px;}
.yc4{bottom:777.004500px;}
.yc5{bottom:779.215650px;}
.y100{bottom:779.215889px;}
.yc3{bottom:779.218292px;}
.y195{bottom:788.993342px;}
.y196{bottom:789.334068px;}
.y85{bottom:789.335250px;}
.y84{bottom:791.631300px;}
.y15c{bottom:794.947800px;}
.yff{bottom:797.158800px;}
.yfd{bottom:797.159578px;}
.y15b{bottom:797.161133px;}
.yc2{bottom:797.161203px;}
.y7b{bottom:800.730607px;}
.y193{bottom:802.429903px;}
.y194{bottom:802.770629px;}
.yfe{bottom:803.196600px;}
.yfc{bottom:815.102489px;}
.y15a{bottom:815.104044px;}
.yc1{bottom:815.104114px;}
.y192{bottom:815.866465px;}
.y7a{bottom:827.263214px;}
.y191{bottom:829.303027px;}
.yfb{bottom:833.045400px;}
.yf9{bottom:833.046178px;}
.y159{bottom:833.046955px;}
.yc0{bottom:833.047025px;}
.ydb{bottom:837.552450px;}
.yfa{bottom:838.998300px;}
.ydc{bottom:839.423400px;}
.yda{bottom:839.423487px;}
.y190{bottom:842.739588px;}
.yf8{bottom:850.989089px;}
.y158{bottom:850.989866px;}
.ybf{bottom:850.989937px;}
.yd8{bottom:852.519450px;}
.yd9{bottom:854.390250px;}
.yd7{bottom:854.390616px;}
.y79{bottom:854.560737px;}
.y18f{bottom:856.169911px;}
.y8{bottom:866.210859px;}
.yd6{bottom:867.486300px;}
.y78{bottom:867.996600px;}
.yf7{bottom:868.932000px;}
.yf5{bottom:868.932389px;}
.y157{bottom:868.932778px;}
.ybe{bottom:868.932848px;}
.yd5{bottom:869.272200px;}
.y18e{bottom:869.691355px;}
.yf6{bottom:874.884750px;}
.y18d{bottom:883.127917px;}
.y7{bottom:884.154000px;}
.yf4{bottom:884.579250px;}
.y2{bottom:886.500000px;}
.yf3{bottom:886.875300px;}
.y156{bottom:886.875689px;}
.ybd{bottom:886.875759px;}
.yf1{bottom:886.876687px;}
.yf2{bottom:892.828200px;}
.y18c{bottom:896.564478px;}
.y154{bottom:902.522550px;}
.y155{bottom:904.818600px;}
.ybc{bottom:904.818670px;}
.yf0{bottom:904.819598px;}
.y153{bottom:904.820764px;}
.y18b{bottom:910.001040px;}
.y6{bottom:920.040145px;}
.ybb{bottom:920.465850px;}
.yba{bottom:922.676850px;}
.yef{bottom:922.677778px;}
.y152{bottom:922.678944px;}
.y18a{bottom:923.437602px;}
.y189{bottom:936.874163px;}
.yee{bottom:940.620689px;}
.yb8{bottom:940.621855px;}
.yb9{bottom:946.657950px;}
.y5{bottom:946.913100px;}
.y188{bottom:950.395608px;}
.yec{bottom:958.563600px;}
.yb7{bottom:958.564766px;}
.y187{bottom:963.832169px;}
.yed{bottom:964.516350px;}
.yeb{bottom:976.506750px;}
.ye9{bottom:976.507139px;}
.yb6{bottom:976.507678px;}
.y186{bottom:977.268731px;}
.yea{bottom:982.459500px;}
.y185{bottom:990.705293px;}
.ye8{bottom:994.450050px;}
.yb5{bottom:994.450589px;}
.ye6{bottom:994.451825px;}
.y83{bottom:999.795000px;}
.ye7{bottom:1000.402800px;}
.y184{bottom:1004.141854px;}
.y7d{bottom:1008.056400px;}
.yb3{bottom:1010.097450px;}
.yb4{bottom:1012.393500px;}
.yb2{bottom:1012.393739px;}
.ye5{bottom:1012.394737px;}
.y81{bottom:1014.795000px;}
.y183{bottom:1017.578416px;}
.y151{bottom:1028.040750px;}
.yb1{bottom:1030.336650px;}
.y150{bottom:1030.337259px;}
.ye4{bottom:1030.337648px;}
.yaf{bottom:1030.341876px;}
.y182{bottom:1031.099860px;}
.yb0{bottom:1036.289400px;}
.y181{bottom:1044.536422px;}
.y14f{bottom:1048.280170px;}
.ye3{bottom:1048.280559px;}
.yae{bottom:1048.284787px;}
.y180{bottom:1057.972984px;}
.y14d{bottom:1063.927200px;}
.y7c{bottom:1065.117900px;}
.y14e{bottom:1066.138350px;}
.ye2{bottom:1066.138739px;}
.yad{bottom:1066.142967px;}
.y17f{bottom:1071.409545px;}
.ye1{bottom:1084.081650px;}
.yac{bottom:1084.085878px;}
.y17e{bottom:1084.846107px;}
.y14c{bottom:1090.119450px;}
.ydf{bottom:1119.543000px;}
.ye0{bottom:1142.295000px;}
.h16{height:12.000000px;}
.h14{height:16.500000px;}
.h19{height:22.173186px;}
.h8{height:23.014616px;}
.hb{height:29.624702px;}
.h4{height:31.245062px;}
.ha{height:31.987834px;}
.hd{height:32.156796px;}
.he{height:32.243472px;}
.h1a{height:33.264454px;}
.h18{height:33.354115px;}
.h17{height:33.876000px;}
.h7{height:34.526906px;}
.hc{height:37.323778px;}
.h3{height:38.256480px;}
.h1b{height:39.272394px;}
.h1d{height:42.656510px;}
.h1e{height:42.681467px;}
.h6{height:44.353495px;}
.h11{height:47.109375px;}
.h9{height:47.987638px;}
.h15{height:50.814000px;}
.h2{height:51.024000px;}
.h1c{height:62.262086px;}
.h5{height:69.053380px;}
.hf{height:91.637046px;}
.h12{height:152.310000px;}
.h13{height:343.635000px;}
.h10{height:463.290000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w3{width:15.000000px;}
.w6{width:52.620000px;}
.w5{width:55.605000px;}
.w7{width:82.860000px;}
.w4{width:124.290000px;}
.w2{width:729.414000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:4.500000px;}
.x40{left:12.000000px;}
.x41{left:21.000000px;}
.x3d{left:62.589000px;}
.x1{left:63.760500px;}
.xbf{left:69.732300px;}
.x3e{left:74.834700px;}
.x52{left:76.110150px;}
.x17{left:81.722850px;}
.x8f{left:82.828350px;}
.x53{left:86.144850px;}
.x90{left:92.182650px;}
.x54{left:95.499150px;}
.x80{left:106.554300px;}
.x55{left:111.231450px;}
.x8{left:113.527500px;}
.x9{left:122.031450px;}
.x81{left:125.262900px;}
.xe{left:129.429900px;}
.xf{left:134.277150px;}
.x4c{left:136.062900px;}
.x4d{left:146.607900px;}
.x7a{left:149.839350px;}
.x3c{left:154.601440px;}
.x4e{left:156.217350px;}
.x6f{left:164.976300px;}
.x4f{left:169.738500px;}
.x70{left:173.735400px;}
.xc{left:176.966850px;}
.x71{left:183.004650px;}
.xd{left:185.640900px;}
.xbb{left:187.511700px;}
.x72{left:196.525950px;}
.xb3{left:202.308600px;}
.x10{left:204.094350px;}
.x69{left:208.261350px;}
.xbc{left:210.217200px;}
.x7e{left:211.322700px;}
.x11{left:212.938500px;}
.x6a{left:217.105500px;}
.xa{left:219.146400px;}
.xb7{left:223.653450px;}
.x6b{left:226.374750px;}
.xb{left:227.735400px;}
.x7f{left:228.925950px;}
.x84{left:233.177850px;}
.x87{left:237.769950px;}
.x6c{left:240.151050px;}
.x46{left:241.681800px;}
.xb8{left:242.787300px;}
.xb6{left:250.611000px;}
.x47{left:251.971650px;}
.x5{left:253.077150px;}
.x3{left:255.033000px;}
.x2{left:258.094500px;}
.x4{left:259.795200px;}
.x48{left:261.496050px;}
.x6{left:263.877150px;}
.x12{left:269.914950px;}
.x49{left:271.785750px;}
.x4a{left:275.272350px;}
.x13{left:278.333700px;}
.x8d{left:279.439350px;}
.x6d{left:284.116500px;}
.x56{left:286.922700px;}
.x8e{left:289.218750px;}
.x4b{left:290.834550px;}
.x6e{left:293.300700px;}
.x57{left:296.957400px;}
.x85{left:298.488150px;}
.x75{left:300.188850px;}
.x58{left:306.311700px;}
.x16{left:312.094350px;}
.x76{left:313.284900px;}
.x86{left:314.900700px;}
.x59{left:319.747950px;}
.xb5{left:322.384200px;}
.x43{left:329.442450px;}
.x14{left:337.521150px;}
.x44{left:339.732150px;}
.x91{left:345.089700px;}
.x18{left:349.171500px;}
.x7b{left:350.617200px;}
.x15{left:356.655000px;}
.x92{left:357.675450px;}
.x7c{left:359.971500px;}
.x45{left:363.118050px;}
.xb4{left:365.158950px;}
.xb9{left:368.560500px;}
.x7d{left:375.533700px;}
.x88{left:377.744700px;}
.xbd{left:379.530600px;}
.xba{left:383.527500px;}
.x78{left:385.908450px;}
.x89{left:387.779400px;}
.xbe{left:388.884900px;}
.x19{left:393.902250px;}
.x8a{left:397.133700px;}
.x82{left:400.790400px;}
.x79{left:403.936950px;}
.x8b{left:406.062900px;}
.x5a{left:408.273900px;}
.x74{left:411.930600px;}
.x8c{left:415.417200px;}
.x83{left:416.437650px;}
.x50{left:417.798300px;}
.x51{left:422.985750px;}
.x77{left:424.941600px;}
.x5b{left:427.662900px;}
.x7{left:432.680250px;}
.x1a{left:454.961408px;}
.xad{left:459.637650px;}
.xc0{left:460.914498px;}
.x30{left:467.461350px;}
.xae{left:471.883350px;}
.x1e{left:472.903800px;}
.xaf{left:476.560500px;}
.x31{left:477.666000px;}
.x2c{left:485.489700px;}
.x32{left:487.190400px;}
.xb0{left:489.231300px;}
.x2d{left:496.034550px;}
.x98{left:497.650200px;}
.x3a{left:500.116350px;}
.x33{left:502.072350px;}
.x2e{left:505.728900px;}
.x99{left:507.855000px;}
.xb1{left:513.382500px;}
.x3b{left:514.658100px;}
.x9a{left:517.379400px;}
.x2f{left:521.291250px;}
.xb2{left:531.240750px;}
.x61{left:532.346400px;}
.x62{left:541.870650px;}
.x9f{left:547.143150px;}
.xa0{left:552.415650px;}
.x63{left:555.902250px;}
.x22{left:582.604500px;}
.x93{left:584.135250px;}
.x23{left:587.877000px;}
.x94{left:592.639200px;}
.x67{left:601.058100px;}
.x1d{left:608.881650px;}
.x1b{left:610.667550px;}
.x24{left:618.831300px;}
.x68{left:620.787300px;}
.x25{left:628.525800px;}
.x1c{left:636.094350px;}
.x26{left:643.237650px;}
.x5e{left:645.618750px;}
.x9c{left:650.125800px;}
.x96{left:653.527350px;}
.x5f{left:655.823400px;}
.x5c{left:659.310000px;}
.x97{left:661.606050px;}
.x60{left:665.347800px;}
.x5d{left:673.341600px;}
.x42{left:678.615000px;}
.xa3{left:679.634400px;}
.xa4{left:692.135250px;}
.x65{left:696.132150px;}
.x27{left:700.469100px;}
.x9b{left:702.680100px;}
.x37{left:705.316350px;}
.xa5{left:708.973050px;}
.x28{left:711.269100px;}
.x34{left:717.051750px;}
.x29{left:721.048650px;}
.x9d{left:723.684750px;}
.x35{left:727.341450px;}
.x66{left:728.787150px;}
.x9e{left:734.995050px;}
.x2a{left:736.780950px;}
.xa6{left:738.056550px;}
.x73{left:745.545000px;}
.xa7{left:750.642300px;}
.x36{left:753.193500px;}
.x38{left:759.486300px;}
.x39{left:774.283200px;}
.xa8{left:779.300700px;}
.xa9{left:791.461350px;}
.xa1{left:796.563600px;}
.x1f{left:798.434400px;}
.xaa{left:800.050200px;}
.x95{left:801.410850px;}
.xa2{left:804.982500px;}
.x20{left:808.979400px;}
.xab{left:811.785600px;}
.x2b{left:814.677000px;}
.x21{left:818.588700px;}
.xac{left:820.459650px;}
.x64{left:823.861200px;}
@media print{
.v1{vertical-align:-1.208792pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-2.016444pt;}
.lsf{letter-spacing:-2.012459pt;}
.ls77{letter-spacing:-1.974977pt;}
.ls7b{letter-spacing:-1.970195pt;}
.ls7a{letter-spacing:-1.931939pt;}
.ls74{letter-spacing:-1.912811pt;}
.ls78{letter-spacing:-1.893683pt;}
.ls28{letter-spacing:-1.884119pt;}
.ls79{letter-spacing:-1.869772pt;}
.ls76{letter-spacing:-1.864990pt;}
.ls27{letter-spacing:-1.860208pt;}
.ls2b{letter-spacing:-1.855426pt;}
.ls2d{letter-spacing:-1.850644pt;}
.ls29{letter-spacing:-1.807606pt;}
.ls7c{letter-spacing:-1.783696pt;}
.ls2e{letter-spacing:-1.755004pt;}
.ls1f{letter-spacing:-1.726312pt;}
.ls2c{letter-spacing:-1.711966pt;}
.ls20{letter-spacing:-1.688055pt;}
.ls1c{letter-spacing:-1.683273pt;}
.ls21{letter-spacing:-1.654581pt;}
.ls1d{letter-spacing:-1.649799pt;}
.ls2a{letter-spacing:-1.619314pt;}
.lsad{letter-spacing:-1.543031pt;}
.ls75{letter-spacing:-1.526873pt;}
.ls1e{letter-spacing:-1.472864pt;}
.ls64{letter-spacing:-1.439390pt;}
.ls62{letter-spacing:-1.429826pt;}
.ls60{letter-spacing:-1.415480pt;}
.ls5e{letter-spacing:-1.396352pt;}
.ls19{letter-spacing:-1.385752pt;}
.ls5f{letter-spacing:-1.382006pt;}
.ls16{letter-spacing:-1.377251pt;}
.ls18{letter-spacing:-1.351746pt;}
.ls1a{letter-spacing:-1.347495pt;}
.lsaa{letter-spacing:-1.343244pt;}
.ls1b{letter-spacing:-1.326241pt;}
.lsb0{letter-spacing:-1.309238pt;}
.lsa2{letter-spacing:-1.300711pt;}
.lsaf{letter-spacing:-1.292235pt;}
.lsa0{letter-spacing:-1.281583pt;}
.lsb1{letter-spacing:-1.275232pt;}
.ls39{letter-spacing:-1.272019pt;}
.lsa4{letter-spacing:-1.267237pt;}
.lsab{letter-spacing:-1.266730pt;}
.lsb2{letter-spacing:-1.258229pt;}
.lsac{letter-spacing:-1.241226pt;}
.ls17{letter-spacing:-1.232724pt;}
.ls36{letter-spacing:-1.219417pt;}
.ls63{letter-spacing:-1.214635pt;}
.ls3b{letter-spacing:-1.209853pt;}
.ls31{letter-spacing:-1.205071pt;}
.ls30{letter-spacing:-1.190725pt;}
.ls9f{letter-spacing:-1.181161pt;}
.ls3a{letter-spacing:-1.176379pt;}
.ls6c{letter-spacing:-1.171597pt;}
.lsa1{letter-spacing:-1.166815pt;}
.ls34{letter-spacing:-1.162032pt;}
.ls98{letter-spacing:-1.159623pt;}
.ls38{letter-spacing:-1.157250pt;}
.ls2f{letter-spacing:-1.152468pt;}
.lsa5{letter-spacing:-1.147686pt;}
.lsa3{letter-spacing:-1.138122pt;}
.ls33{letter-spacing:-1.133340pt;}
.ls37{letter-spacing:-1.128558pt;}
.ls35{letter-spacing:-1.123776pt;}
.ls3c{letter-spacing:-1.114212pt;}
.lsa7{letter-spacing:-1.104648pt;}
.ls90{letter-spacing:-1.103834pt;}
.lsa6{letter-spacing:-1.095084pt;}
.ls8d{letter-spacing:-1.087894pt;}
.ls8f{letter-spacing:-1.059999pt;}
.ls82{letter-spacing:-1.056828pt;}
.ls9a{letter-spacing:-1.056014pt;}
.ls8c{letter-spacing:-1.052029pt;}
.ls81{letter-spacing:-1.047264pt;}
.ls89{letter-spacing:-1.037700pt;}
.ls32{letter-spacing:-1.035979pt;}
.ls40{letter-spacing:-1.028136pt;}
.ls26{letter-spacing:-1.013790pt;}
.ls71{letter-spacing:-1.009008pt;}
.ls92{letter-spacing:-0.996240pt;}
.ls22{letter-spacing:-0.994662pt;}
.ls24{letter-spacing:-0.989880pt;}
.ls42{letter-spacing:-0.988164pt;}
.ls72{letter-spacing:-0.985097pt;}
.ls7e{letter-spacing:-0.980315pt;}
.ls8e{letter-spacing:-0.980300pt;}
.ls58{letter-spacing:-0.975533pt;}
.ls54{letter-spacing:-0.970751pt;}
.ls6f{letter-spacing:-0.965969pt;}
.ls86{letter-spacing:-0.961187pt;}
.ls99{letter-spacing:-0.960375pt;}
.ls23{letter-spacing:-0.956405pt;}
.ls91{letter-spacing:-0.953600pt;}
.ls80{letter-spacing:-0.951623pt;}
.ls56{letter-spacing:-0.946841pt;}
.ls96{letter-spacing:-0.944436pt;}
.ls51{letter-spacing:-0.942059pt;}
.ls3f{letter-spacing:-0.937277pt;}
.ls73{letter-spacing:-0.927713pt;}
.ls88{letter-spacing:-0.922931pt;}
.ls5a{letter-spacing:-0.918149pt;}
.ls9b{letter-spacing:-0.916541pt;}
.ls3e{letter-spacing:-0.913367pt;}
.ls53{letter-spacing:-0.908585pt;}
.ls3d{letter-spacing:-0.903803pt;}
.ls41{letter-spacing:-0.894239pt;}
.ls7d{letter-spacing:-0.884675pt;}
.ls52{letter-spacing:-0.879893pt;}
.ls95{letter-spacing:-0.879224pt;}
.ls8b{letter-spacing:-0.876691pt;}
.ls5b{letter-spacing:-0.875111pt;}
.ls83{letter-spacing:-0.865547pt;}
.ls8a{letter-spacing:-0.856766pt;}
.ls5c{letter-spacing:-0.851201pt;}
.ls5d{letter-spacing:-0.841637pt;}
.ls87{letter-spacing:-0.836855pt;}
.ls94{letter-spacing:-0.832857pt;}
.ls59{letter-spacing:-0.822509pt;}
.ls57{letter-spacing:-0.793816pt;}
.ls70{letter-spacing:-0.742717pt;}
.ls97{letter-spacing:-0.721278pt;}
.ls55{letter-spacing:-0.720404pt;}
.ls93{letter-spacing:-0.685317pt;}
.ls49{letter-spacing:-0.044633pt;}
.lsd{letter-spacing:-0.019925pt;}
.lse{letter-spacing:-0.011955pt;}
.ls15{letter-spacing:-0.008501pt;}
.lsc{letter-spacing:-0.007970pt;}
.ls11{letter-spacing:-0.003868pt;}
.ls65{letter-spacing:-0.002656pt;}
.ls12{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.003188pt;}
.ls48{letter-spacing:0.003719pt;}
.ls4{letter-spacing:0.003868pt;}
.ls50{letter-spacing:0.003985pt;}
.ls0{letter-spacing:0.004251pt;}
.ls13{letter-spacing:0.015473pt;}
.ls2{letter-spacing:0.015940pt;}
.ls9e{letter-spacing:0.042508pt;}
.ls6b{letter-spacing:0.066948pt;}
.lsa{letter-spacing:0.148774pt;}
.ls4f{letter-spacing:0.178507pt;}
.ls6a{letter-spacing:0.200845pt;}
.ls9d{letter-spacing:0.272049pt;}
.ls45{letter-spacing:0.353827pt;}
.ls47{letter-spacing:0.449511pt;}
.ls6{letter-spacing:0.459075pt;}
.ls5{letter-spacing:0.478203pt;}
.ls4e{letter-spacing:0.482985pt;}
.ls4c{letter-spacing:0.492549pt;}
.ls7{letter-spacing:0.497331pt;}
.ls4d{letter-spacing:0.511677pt;}
.ls61{letter-spacing:0.616881pt;}
.ls46{letter-spacing:0.624775pt;}
.ls9{letter-spacing:0.951623pt;}
.ls8{letter-spacing:0.994662pt;}
.ls4a{letter-spacing:5.949705pt;}
.ls3{letter-spacing:5.997525pt;}
.lsa9{letter-spacing:8.480293pt;}
.ls6d{letter-spacing:10.128332pt;}
.ls84{letter-spacing:11.304711pt;}
.ls66{letter-spacing:12.002887pt;}
.ls6e{letter-spacing:12.227642pt;}
.lsae{letter-spacing:13.024369pt;}
.ls25{letter-spacing:13.499661pt;}
.ls7f{letter-spacing:13.657468pt;}
.ls14{letter-spacing:14.130388pt;}
.ls44{letter-spacing:14.905577pt;}
.lsb{letter-spacing:15.267973pt;}
.ls4b{letter-spacing:15.933713pt;}
.ls67{letter-spacing:18.879441pt;}
.ls85{letter-spacing:20.792252pt;}
.ls68{letter-spacing:20.840072pt;}
.ls69{letter-spacing:20.897457pt;}
.lsa8{letter-spacing:21.134845pt;}
.ls1{letter-spacing:23.356476pt;}
.ls9c{letter-spacing:24.518461pt;}
.ws1b7{word-spacing:-24.560968pt;}
.ws186{word-spacing:-21.177353pt;}
.ws10e{word-spacing:-20.840072pt;}
.wsfe{word-spacing:-18.927262pt;}
.wsa{word-spacing:-14.169070pt;}
.ws103{word-spacing:-13.705288pt;}
.ws28{word-spacing:-13.547482pt;}
.ws1c1{word-spacing:-13.066877pt;}
.wse5{word-spacing:-12.275462pt;}
.ws10c{word-spacing:-11.352531pt;}
.wse0{word-spacing:-10.176153pt;}
.ws1bd{word-spacing:-8.522801pt;}
.ws74{word-spacing:-0.085015pt;}
.ws9{word-spacing:-0.054154pt;}
.ws64{word-spacing:-0.047820pt;}
.ws176{word-spacing:-0.042508pt;}
.ws140{word-spacing:-0.039850pt;}
.ws73{word-spacing:-0.038523pt;}
.ws2d{word-spacing:-0.031876pt;}
.ws148{word-spacing:-0.026563pt;}
.ws3{word-spacing:-0.019925pt;}
.ws75{word-spacing:0.000000pt;}
.wse7{word-spacing:0.710841pt;}
.ws10a{word-spacing:0.817727pt;}
.ws147{word-spacing:0.852662pt;}
.wse9{word-spacing:0.937277pt;}
.ws36{word-spacing:1.085520pt;}
.ws1c6{word-spacing:1.198718pt;}
.ws1c0{word-spacing:1.500523pt;}
.ws8{word-spacing:7.318559pt;}
.ws7{word-spacing:7.987750pt;}
.wsf7{word-spacing:8.813275pt;}
.wsd4{word-spacing:8.882476pt;}
.ws18e{word-spacing:8.990386pt;}
.ws18f{word-spacing:9.168918pt;}
.ws190{word-spacing:9.215677pt;}
.ws192{word-spacing:9.275187pt;}
.ws191{word-spacing:9.343200pt;}
.wsfb{word-spacing:9.540143pt;}
.wsfa{word-spacing:9.559271pt;}
.ws7d{word-spacing:9.611874pt;}
.ws1e9{word-spacing:9.640754pt;}
.ws1cd{word-spacing:9.942559pt;}
.ws1cb{word-spacing:9.946810pt;}
.ws12b{word-spacing:10.032692pt;}
.ws1ca{word-spacing:10.095587pt;}
.ws1d1{word-spacing:10.138094pt;}
.ws1cc{word-spacing:10.189104pt;}
.ws7c{word-spacing:10.305267pt;}
.ws9d{word-spacing:10.310049pt;}
.wsbe{word-spacing:10.472638pt;}
.ws84{word-spacing:10.506113pt;}
.ws17{word-spacing:10.592189pt;}
.wsb6{word-spacing:10.606535pt;}
.ws5{word-spacing:10.624188pt;}
.ws142{word-spacing:10.675708pt;}
.ws76{word-spacing:10.683964pt;}
.wsde{word-spacing:10.687830pt;}
.wsb4{word-spacing:10.740432pt;}
.wsa3{word-spacing:10.802598pt;}
.ws1dd{word-spacing:10.945741pt;}
.ws9f{word-spacing:10.998661pt;}
.ws1de{word-spacing:11.039258pt;}
.ws81{word-spacing:11.065610pt;}
.ws83{word-spacing:11.070392pt;}
.ws12e{word-spacing:11.079956pt;}
.wsa2{word-spacing:11.242545pt;}
.ws12a{word-spacing:11.247327pt;}
.ws82{word-spacing:11.266455pt;}
.ws138{word-spacing:11.371659pt;}
.ws14d{word-spacing:11.457736pt;}
.ws150{word-spacing:11.572505pt;}
.wsd5{word-spacing:11.596234pt;}
.ws79{word-spacing:11.658581pt;}
.ws132{word-spacing:11.672927pt;}
.ws116{word-spacing:11.682491pt;}
.ws6e{word-spacing:11.689948pt;}
.wscd{word-spacing:11.727737pt;}
.ws6b{word-spacing:11.775494pt;}
.wsce{word-spacing:11.775557pt;}
.ws7a{word-spacing:11.782914pt;}
.ws1b{word-spacing:11.787696pt;}
.ws9b{word-spacing:11.816388pt;}
.ws6c{word-spacing:11.827565pt;}
.ws39{word-spacing:11.835516pt;}
.ws1{word-spacing:11.843618pt;}
.ws10b{word-spacing:11.859426pt;}
.ws3b{word-spacing:11.878554pt;}
.ws122{word-spacing:11.888118pt;}
.ws78{word-spacing:11.935275pt;}
.ws3a{word-spacing:11.974195pt;}
.ws2{word-spacing:11.983095pt;}
.ws168{word-spacing:12.017233pt;}
.ws11{word-spacing:12.055193pt;}
.ws12{word-spacing:12.059444pt;}
.ws1b1{word-spacing:12.080698pt;}
.wsca{word-spacing:12.106308pt;}
.ws131{word-spacing:12.122438pt;}
.ws1b2{word-spacing:12.144459pt;}
.ws6d{word-spacing:12.169746pt;}
.ws169{word-spacing:12.175040pt;}
.ws107{word-spacing:12.203732pt;}
.ws1c2{word-spacing:12.229475pt;}
.ws17a{word-spacing:12.233726pt;}
.ws17c{word-spacing:12.242227pt;}
.ws17b{word-spacing:12.250729pt;}
.wsf6{word-spacing:12.251552pt;}
.ws1eb{word-spacing:12.254980pt;}
.wsa9{word-spacing:12.261116pt;}
.ws1c3{word-spacing:12.263481pt;}
.ws151{word-spacing:12.270680pt;}
.wsb5{word-spacing:12.280244pt;}
.ws185{word-spacing:12.297487pt;}
.ws137{word-spacing:12.313719pt;}
.wsdf{word-spacing:12.375885pt;}
.ws71{word-spacing:12.396594pt;}
.ws113{word-spacing:12.423705pt;}
.ws70{word-spacing:12.427412pt;}
.wsa4{word-spacing:12.438051pt;}
.ws72{word-spacing:12.546833pt;}
.ws1c8{word-spacing:12.548283pt;}
.ws1c{word-spacing:12.562384pt;}
.ws18{word-spacing:12.591076pt;}
.wsd3{word-spacing:12.620368pt;}
.ws3e{word-spacing:12.629332pt;}
.wsc3{word-spacing:12.638896pt;}
.wscf{word-spacing:12.644278pt;}
.ws14{word-spacing:12.654552pt;}
.wsc2{word-spacing:12.662807pt;}
.ws17d{word-spacing:12.667305pt;}
.wsa1{word-spacing:12.686717pt;}
.ws3f{word-spacing:12.715409pt;}
.ws8d{word-spacing:12.815831pt;}
.ws101{word-spacing:12.820613pt;}
.ws102{word-spacing:12.873216pt;}
.ws5b{word-spacing:12.877998pt;}
.ws7b{word-spacing:12.882780pt;}
.ws14f{word-spacing:12.887562pt;}
.wsb7{word-spacing:12.897126pt;}
.ws154{word-spacing:12.911472pt;}
.ws1a2{word-spacing:12.973360pt;}
.ws34{word-spacing:13.016677pt;}
.ws146{word-spacing:13.022849pt;}
.ws11e{word-spacing:13.026241pt;}
.wsa8{word-spacing:13.054933pt;}
.ws1a3{word-spacing:13.062626pt;}
.wsc5{word-spacing:13.088407pt;}
.ws1d4{word-spacing:13.092382pt;}
.ws8c{word-spacing:13.121881pt;}
.wsb8{word-spacing:13.145791pt;}
.ws1a1{word-spacing:13.147642pt;}
.ws8e{word-spacing:13.164919pt;}
.ws1a0{word-spacing:13.177397pt;}
.ws33{word-spacing:13.184048pt;}
.wsff{word-spacing:13.222304pt;}
.ws184{word-spacing:13.232657pt;}
.ws1d6{word-spacing:13.236908pt;}
.wsb9{word-spacing:13.241432pt;}
.ws1bc{word-spacing:13.249660pt;}
.ws1d5{word-spacing:13.270914pt;}
.ws181{word-spacing:13.275165pt;}
.ws179{word-spacing:13.283667pt;}
.ws1ba{word-spacing:13.287917pt;}
.ws178{word-spacing:13.292168pt;}
.ws174{word-spacing:13.300670pt;}
.ws1d2{word-spacing:13.304921pt;}
.ws19b{word-spacing:13.313422pt;}
.ws159{word-spacing:13.322726pt;}
.wsc4{word-spacing:13.332290pt;}
.ws153{word-spacing:13.337072pt;}
.ws145{word-spacing:13.389466pt;}
.ws180{word-spacing:13.402688pt;}
.ws195{word-spacing:13.419691pt;}
.ws1d3{word-spacing:13.423942pt;}
.ws175{word-spacing:13.449447pt;}
.ws15a{word-spacing:13.461405pt;}
.ws1df{word-spacing:13.462199pt;}
.ws183{word-spacing:13.466450pt;}
.ws124{word-spacing:13.480533pt;}
.ws16b{word-spacing:13.494879pt;}
.ws1bb{word-spacing:13.496205pt;}
.ws194{word-spacing:13.508958pt;}
.ws19a{word-spacing:13.521710pt;}
.ws1d9{word-spacing:13.559967pt;}
.ws177{word-spacing:13.576970pt;}
.ws17f{word-spacing:13.593973pt;}
.wsc6{word-spacing:13.681378pt;}
.wscc{word-spacing:13.704277pt;}
.wscb{word-spacing:13.720217pt;}
.ws158{word-spacing:13.777019pt;}
.ws1e{word-spacing:13.824839pt;}
.wsda{word-spacing:13.872659pt;}
.ws1c9{word-spacing:13.874524pt;}
.ws143{word-spacing:13.899540pt;}
.ws65{word-spacing:13.934826pt;}
.wsf5{word-spacing:13.958736pt;}
.ws48{word-spacing:14.020902pt;}
.ws16c{word-spacing:14.092633pt;}
.ws115{word-spacing:14.102197pt;}
.ws94{word-spacing:14.126107pt;}
.ws16f{word-spacing:14.135671pt;}
.ws4{word-spacing:14.146987pt;}
.ws85{word-spacing:14.150017pt;}
.ws95{word-spacing:14.169145pt;}
.ws135{word-spacing:14.173927pt;}
.wsd8{word-spacing:14.194807pt;}
.ws144{word-spacing:14.222322pt;}
.ws9c{word-spacing:14.236093pt;}
.ws47{word-spacing:14.279132pt;}
.ws98{word-spacing:14.307824pt;}
.wsc1{word-spacing:14.379554pt;}
.ws12f{word-spacing:14.393900pt;}
.wsc9{word-spacing:14.408246pt;}
.ws11d{word-spacing:14.432156pt;}
.ws139{word-spacing:14.479977pt;}
.wsc0{word-spacing:14.537361pt;}
.ws1c5{word-spacing:14.550397pt;}
.ws16d{word-spacing:14.556489pt;}
.ws27{word-spacing:14.594745pt;}
.ws130{word-spacing:14.609091pt;}
.ws23{word-spacing:14.618656pt;}
.wsf{word-spacing:14.622660pt;}
.ws1b9{word-spacing:14.673670pt;}
.ws22{word-spacing:14.695168pt;}
.ws2a{word-spacing:14.699950pt;}
.ws13f{word-spacing:14.708487pt;}
.wsb2{word-spacing:14.728642pt;}
.ws15{word-spacing:14.728930pt;}
.ws117{word-spacing:14.733424pt;}
.ws52{word-spacing:14.771680pt;}
.wsd9{word-spacing:14.781244pt;}
.ws87{word-spacing:14.786026pt;}
.wsdd{word-spacing:14.795591pt;}
.ws26{word-spacing:14.805155pt;}
.ws141{word-spacing:14.836006pt;}
.wsb0{word-spacing:14.843411pt;}
.ws51{word-spacing:14.848193pt;}
.ws2b{word-spacing:14.872103pt;}
.ws19d{word-spacing:14.881957pt;}
.ws1c4{word-spacing:14.915964pt;}
.ws16a{word-spacing:14.929487pt;}
.wsf3{word-spacing:14.953397pt;}
.ws127{word-spacing:15.001218pt;}
.ws50{word-spacing:15.082512pt;}
.ws125{word-spacing:15.101640pt;}
.ws21{word-spacing:15.125550pt;}
.ws19c{word-spacing:15.141255pt;}
.ws171{word-spacing:15.154243pt;}
.ws2c{word-spacing:15.159025pt;}
.wsf4{word-spacing:15.173371pt;}
.ws129{word-spacing:15.235537pt;}
.ws66{word-spacing:15.302485pt;}
.ws2e{word-spacing:15.393344pt;}
.ws61{word-spacing:15.431600pt;}
.ws1f{word-spacing:15.445946pt;}
.ws109{word-spacing:15.450728pt;}
.ws1bf{word-spacing:15.455812pt;}
.ws128{word-spacing:15.474638pt;}
.wsf0{word-spacing:15.498548pt;}
.ws1be{word-spacing:15.506821pt;}
.wsf1{word-spacing:15.508112pt;}
.ws1cf{word-spacing:15.519573pt;}
.ws20{word-spacing:15.532023pt;}
.ws1ea{word-spacing:15.536577pt;}
.wsf2{word-spacing:15.536805pt;}
.ws104{word-spacing:15.551151pt;}
.wsa6{word-spacing:15.570279pt;}
.ws1ce{word-spacing:15.579084pt;}
.ws69{word-spacing:15.589407pt;}
.ws67{word-spacing:15.613317pt;}
.ws12d{word-spacing:15.618099pt;}
.ws11a{word-spacing:15.642009pt;}
.ws1d0{word-spacing:15.693855pt;}
.wsbf{word-spacing:15.713740pt;}
.wsb1{word-spacing:15.747214pt;}
.wsa7{word-spacing:15.780688pt;}
.ws4a{word-spacing:15.790252pt;}
.ws6{word-spacing:15.952222pt;}
.ws77{word-spacing:15.968162pt;}
.ws167{word-spacing:15.986315pt;}
.ws1da{word-spacing:16.029666pt;}
.ws24{word-spacing:16.034135pt;}
.ws126{word-spacing:16.053264pt;}
.ws112{word-spacing:16.072392pt;}
.ws1db{word-spacing:16.084926pt;}
.ws18d{word-spacing:16.186945pt;}
.ws1c7{word-spacing:16.199697pt;}
.ws1a9{word-spacing:16.208199pt;}
.wsba{word-spacing:16.211070pt;}
.ws119{word-spacing:16.244545pt;}
.ws133{word-spacing:16.254109pt;}
.ws68{word-spacing:16.297147pt;}
.ws1dc{word-spacing:16.297465pt;}
.ws1d{word-spacing:16.354531pt;}
.ws157{word-spacing:16.407133pt;}
.ws11b{word-spacing:16.474082pt;}
.ws163{word-spacing:16.483646pt;}
.ws9a{word-spacing:16.531466pt;}
.ws99{word-spacing:16.588851pt;}
.ws1ab{word-spacing:16.599270pt;}
.wsdb{word-spacing:16.636671pt;}
.ws1aa{word-spacing:16.658781pt;}
.ws31{word-spacing:16.732311pt;}
.ws55{word-spacing:16.799260pt;}
.wsaf{word-spacing:16.813606pt;}
.wse{word-spacing:16.816869pt;}
.ws111{word-spacing:16.818388pt;}
.ws161{word-spacing:16.942720pt;}
.wsb3{word-spacing:16.957067pt;}
.ws54{word-spacing:16.961849pt;}
.wsd{word-spacing:16.981584pt;}
.ws15b{word-spacing:17.028797pt;}
.ws160{word-spacing:17.033579pt;}
.ws3c{word-spacing:17.057489pt;}
.wsa5{word-spacing:17.129220pt;}
.ws121{word-spacing:17.196168pt;}
.ws152{word-spacing:17.205732pt;}
.ws100{word-spacing:17.215296pt;}
.ws193{word-spacing:17.309149pt;}
.ws3d{word-spacing:17.401795pt;}
.ws89{word-spacing:17.459179pt;}
.wse1{word-spacing:17.502218pt;}
.ws14b{word-spacing:17.530910pt;}
.wse2{word-spacing:17.564384pt;}
.ws57{word-spacing:17.569166pt;}
.ws14a{word-spacing:17.612204pt;}
.ws86{word-spacing:17.631332pt;}
.ws15d{word-spacing:17.674371pt;}
.ws4e{word-spacing:17.731755pt;}
.ws5e{word-spacing:17.803485pt;}
.ws80{word-spacing:17.827395pt;}
.ws7f{word-spacing:17.832177pt;}
.ws14c{word-spacing:17.870434pt;}
.ws5d{word-spacing:17.875216pt;}
.wseb{word-spacing:17.908690pt;}
.ws136{word-spacing:17.918254pt;}
.ws5f{word-spacing:17.927818pt;}
.ws43{word-spacing:18.013894pt;}
.ws1b3{word-spacing:18.095542pt;}
.ws4d{word-spacing:18.123881pt;}
.wsea{word-spacing:18.138227pt;}
.ws44{word-spacing:18.162137pt;}
.ws1b4{word-spacing:18.163554pt;}
.ws15c{word-spacing:18.219522pt;}
.ws1d8{word-spacing:18.282576pt;}
.wsae{word-spacing:18.300816pt;}
.ws1d7{word-spacing:18.303830pt;}
.ws173{word-spacing:18.346338pt;}
.wsfd{word-spacing:18.353418pt;}
.ws5a{word-spacing:18.362982pt;}
.ws8b{word-spacing:18.396457pt;}
.wsc8{word-spacing:18.406021pt;}
.ws49{word-spacing:18.434713pt;}
.ws38{word-spacing:18.520789pt;}
.ws8f{word-spacing:18.535135pt;}
.ws88{word-spacing:18.640340pt;}
.ws16e{word-spacing:18.664250pt;}
.ws53{word-spacing:18.721634pt;}
.ws14e{word-spacing:18.740763pt;}
.ws105{word-spacing:18.755109pt;}
.ws10{word-spacing:18.869183pt;}
.ws15e{word-spacing:18.960736pt;}
.ws19f{word-spacing:18.975452pt;}
.ws15f{word-spacing:19.094632pt;}
.ws56{word-spacing:19.223747pt;}
.wsaa{word-spacing:19.376772pt;}
.ws16{word-spacing:19.429374pt;}
.ws1a{word-spacing:19.496323pt;}
.wsf9{word-spacing:19.544143pt;}
.ws1e4{word-spacing:19.638573pt;}
.ws19{word-spacing:19.663694pt;}
.ws11c{word-spacing:19.697168pt;}
.ws1e5{word-spacing:19.800102pt;}
.ws9e{word-spacing:19.835847pt;}
.ws1e3{word-spacing:19.859613pt;}
.ws58{word-spacing:19.888449pt;}
.ws59{word-spacing:19.912359pt;}
.ws7e{word-spacing:20.141896pt;}
.ws13{word-spacing:20.233681pt;}
.ws40{word-spacing:20.424036pt;}
.ws1e0{word-spacing:20.433467pt;}
.ws62{word-spacing:20.452728pt;}
.ws196{word-spacing:20.463223pt;}
.ws1e1{word-spacing:20.471724pt;}
.wse6{word-spacing:20.471856pt;}
.wse8{word-spacing:20.486202pt;}
.ws1e2{word-spacing:20.531235pt;}
.ws2f{word-spacing:20.753996pt;}
.ws30{word-spacing:20.825726pt;}
.ws19e{word-spacing:21.058331pt;}
.ws93{word-spacing:21.155686pt;}
.ws8a{word-spacing:21.299147pt;}
.ws1e8{word-spacing:21.313377pt;}
.ws1e6{word-spacing:21.338882pt;}
.ws1e7{word-spacing:21.377139pt;}
.ws63{word-spacing:21.385223pt;}
.ws29{word-spacing:21.433044pt;}
.ws32{word-spacing:21.447390pt;}
.ws13e{word-spacing:21.456954pt;}
.wsad{word-spacing:21.471300pt;}
.ws13b{word-spacing:21.499992pt;}
.ws92{word-spacing:21.514338pt;}
.ws13a{word-spacing:21.590850pt;}
.ws1ad{word-spacing:21.606681pt;}
.ws13d{word-spacing:21.657799pt;}
.ws17e{word-spacing:21.793715pt;}
.ws4c{word-spacing:21.954284pt;}
.ws1ac{word-spacing:21.972247pt;}
.wsac{word-spacing:21.982977pt;}
.wsdc{word-spacing:22.040361pt;}
.ws90{word-spacing:22.088181pt;}
.ws91{word-spacing:22.121655pt;}
.ws188{word-spacing:22.210291pt;}
.ws189{word-spacing:22.490842pt;}
.ws10f{word-spacing:22.523346pt;}
.ws4f{word-spacing:22.561602pt;}
.ws6a{word-spacing:22.566384pt;}
.ws1ec{word-spacing:22.580108pt;}
.ws41{word-spacing:22.599858pt;}
.ws106{word-spacing:22.695499pt;}
.ws10d{word-spacing:22.705063pt;}
.wsd0{word-spacing:22.706302pt;}
.wsd1{word-spacing:22.837806pt;}
.ws42{word-spacing:22.896344pt;}
.wsd2{word-spacing:22.925475pt;}
.ws118{word-spacing:23.006330pt;}
.wsbd{word-spacing:23.145009pt;}
.ws123{word-spacing:23.321944pt;}
.ws25{word-spacing:23.484533pt;}
.ws172{word-spacing:23.684884pt;}
.wsee{word-spacing:23.694942pt;}
.ws170{word-spacing:23.818781pt;}
.ws164{word-spacing:23.838403pt;}
.ws166{word-spacing:23.847967pt;}
.ws114{word-spacing:23.914915pt;}
.wsed{word-spacing:23.962736pt;}
.ws165{word-spacing:23.996210pt;}
.ws1b6{word-spacing:24.161396pt;}
.ws18c{word-spacing:24.220906pt;}
.wsbc{word-spacing:24.230529pt;}
.wsfc{word-spacing:24.244875pt;}
.ws18a{word-spacing:24.335677pt;}
.ws187{word-spacing:24.348430pt;}
.ws1b8{word-spacing:24.356931pt;}
.ws1b5{word-spacing:24.378185pt;}
.ws18b{word-spacing:24.463201pt;}
.ws110{word-spacing:24.617873pt;}
.ws1a7{word-spacing:24.939287pt;}
.wsef{word-spacing:25.005217pt;}
.wsc7{word-spacing:25.119986pt;}
.ws1a6{word-spacing:25.241092pt;}
.ws1a8{word-spacing:25.258095pt;}
.wsab{word-spacing:25.378216pt;}
.ws12c{word-spacing:25.478638pt;}
.wsbb{word-spacing:25.617317pt;}
.ws155{word-spacing:25.655573pt;}
.ws108{word-spacing:25.794252pt;}
.ws5c{word-spacing:25.803816pt;}
.ws1a5{word-spacing:25.857454pt;}
.ws156{word-spacing:25.909020pt;}
.ws120{word-spacing:25.928149pt;}
.ws11f{word-spacing:26.028571pt;}
.ws60{word-spacing:26.162468pt;}
.ws1a4{word-spacing:26.163510pt;}
.ws4b{word-spacing:26.277237pt;}
.ws6f{word-spacing:26.426053pt;}
.ws0{word-spacing:26.530396pt;}
.wsd7{word-spacing:26.544695pt;}
.ws37{word-spacing:26.870208pt;}
.wsb{word-spacing:26.907226pt;}
.wsc{word-spacing:27.009244pt;}
.ws134{word-spacing:27.238424pt;}
.wse4{word-spacing:27.482307pt;}
.ws45{word-spacing:27.721409pt;}
.ws182{word-spacing:28.178376pt;}
.wsa0{word-spacing:28.285688pt;}
.ws1af{word-spacing:28.327153pt;}
.ws1ae{word-spacing:28.390915pt;}
.ws1b0{word-spacing:28.407918pt;}
.ws35{word-spacing:29.509887pt;}
.ws162{word-spacing:29.662911pt;}
.wsf8{word-spacing:29.878103pt;}
.ws46{word-spacing:30.475856pt;}
.ws199{word-spacing:31.068902pt;}
.ws197{word-spacing:31.094407pt;}
.ws97{word-spacing:31.341403pt;}
.ws198{word-spacing:31.417466pt;}
.ws96{word-spacing:31.838734pt;}
.wse3{word-spacing:32.216514pt;}
.wsec{word-spacing:33.172919pt;}
.ws13c{word-spacing:41.020225pt;}
.ws149{word-spacing:2048.902364pt;}
.wsd6{word-spacing:2049.117555pt;}
._28{margin-left:-24.174148pt;}
._23{margin-left:-22.409391pt;}
._26{margin-left:-21.092337pt;}
._22{margin-left:-19.500038pt;}
._f{margin-left:-15.063258pt;}
._7{margin-left:-14.138125pt;}
._20{margin-left:-13.035805pt;}
._1d{margin-left:-11.362095pt;}
._29{margin-left:-10.036503pt;}
._21{margin-left:-8.929110pt;}
._1c{margin-left:-7.584294pt;}
._1{margin-left:-5.790302pt;}
._e{margin-left:-1.956915pt;}
._b{margin-left:-1.062693pt;}
._4{width:1.550191pt;}
._3{width:2.470741pt;}
._6{width:9.171407pt;}
._17{width:10.768608pt;}
._5{width:12.521234pt;}
._0{width:14.039390pt;}
._d{width:15.241589pt;}
._10{width:16.899682pt;}
._12{width:18.377328pt;}
._19{width:19.441071pt;}
._c{width:20.744432pt;}
._15{width:21.669030pt;}
._14{width:22.987202pt;}
._18{width:24.648199pt;}
._11{width:25.646009pt;}
._13{width:27.367539pt;}
._1f{width:28.639558pt;}
._27{width:32.097589pt;}
._1e{width:33.158573pt;}
._1a{width:39.877495pt;}
._24{width:41.995758pt;}
._8{width:71.135085pt;}
._9{width:87.413534pt;}
._a{width:88.380295pt;}
._2{width:861.698935pt;}
._1b{width:866.405299pt;}
._25{width:868.473549pt;}
._16{width:877.930112pt;}
.fs10{font-size:26.562667pt;}
.fs6{font-size:28.334400pt;}
.fs8{font-size:31.876267pt;}
.fse{font-size:32.000000pt;}
.fs9{font-size:37.193600pt;}
.fsa{font-size:38.522667pt;}
.fs2{font-size:38.681600pt;}
.fsf{font-size:39.849600pt;}
.fs1{font-size:39.850667pt;}
.fs0{font-size:42.507200pt;}
.fs5{font-size:42.507733pt;}
.fsc{font-size:42.666667pt;}
.fs7{font-size:47.820267pt;}
.fsd{font-size:48.000000pt;}
.fs4{font-size:53.133867pt;}
.fs11{font-size:74.387200pt;}
.fs3{font-size:85.014933pt;}
.fsb{font-size:111.582400pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:2.666667pt;}
.y4{bottom:3.543772pt;}
.y3{bottom:16.828000pt;}
.y1{bottom:34.048000pt;}
.y140{bottom:84.963733pt;}
.y77{bottom:86.928844pt;}
.y71{bottom:86.929067pt;}
.y12e{bottom:86.929758pt;}
.y6f{bottom:86.930449pt;}
.yde{bottom:87.231659pt;}
.y70{bottom:92.220400pt;}
.y76{bottom:100.232995pt;}
.ydd{bottom:100.459733pt;}
.y12d{bottom:102.879012pt;}
.y6e{bottom:102.879703pt;}
.y75{bottom:113.537145pt;}
.y12c{bottom:116.862933pt;}
.y12b{bottom:118.828267pt;}
.y6d{bottom:118.828958pt;}
.y13f{bottom:118.830748pt;}
.y73{bottom:126.765049pt;}
.y74{bottom:127.067247pt;}
.y12a{bottom:132.736933pt;}
.y6c{bottom:134.778212pt;}
.y13e{bottom:134.780003pt;}
.y72{bottom:140.069200pt;}
.y129{bottom:148.686533pt;}
.y6b{bottom:150.727467pt;}
.y69{bottom:150.727812pt;}
.y128{bottom:150.728566pt;}
.y13d{bottom:150.729257pt;}
.y6a{bottom:156.018800pt;}
.y68{bottom:166.677067pt;}
.y66{bottom:166.677129pt;}
.y127{bottom:166.677820pt;}
.y13c{bottom:166.678511pt;}
.y67{bottom:171.968400pt;}
.y64{bottom:180.585733pt;}
.y65{bottom:182.551067pt;}
.y63{bottom:182.551412pt;}
.y126{bottom:182.551758pt;}
.y39{bottom:182.552103pt;}
.y13b{bottom:182.552449pt;}
.y61{bottom:196.535333pt;}
.y62{bottom:198.500667pt;}
.y125{bottom:198.501012pt;}
.y38{bottom:198.501358pt;}
.y13a{bottom:198.501703pt;}
.y123{bottom:212.485067pt;}
.y124{bottom:214.450267pt;}
.y37{bottom:214.450612pt;}
.y122{bottom:214.450958pt;}
.y1be{bottom:223.138665pt;}
.y17d{bottom:223.139624pt;}
.y60{bottom:228.434533pt;}
.y36{bottom:230.399867pt;}
.y121{bottom:230.400212pt;}
.y34{bottom:230.400558pt;}
.y5f{bottom:230.401790pt;}
.y1bd{bottom:235.082275pt;}
.y17c{bottom:235.083235pt;}
.y35{bottom:235.691200pt;}
.y11f{bottom:244.384133pt;}
.y120{bottom:246.349467pt;}
.y33{bottom:246.349812pt;}
.y5e{bottom:246.351045pt;}
.y11e{bottom:246.351390pt;}
.y1bc{bottom:247.025886pt;}
.y17b{bottom:247.026845pt;}
.y1bb{bottom:258.969496pt;}
.y17a{bottom:258.970455pt;}
.y139{bottom:260.333733pt;}
.y32{bottom:262.299067pt;}
.y138{bottom:262.299891pt;}
.y5d{bottom:262.300299pt;}
.y11d{bottom:262.300645pt;}
.y1ba{bottom:270.913106pt;}
.y179{bottom:270.914066pt;}
.yab{bottom:273.261461pt;}
.y137{bottom:278.249146pt;}
.y30{bottom:278.249208pt;}
.y5c{bottom:278.249554pt;}
.y11c{bottom:278.249899pt;}
.y1b9{bottom:282.856717pt;}
.y178{bottom:282.857676pt;}
.y31{bottom:283.540133pt;}
.yaa{bottom:289.210716pt;}
.y135{bottom:292.157333pt;}
.y136{bottom:294.198400pt;}
.y2f{bottom:294.198462pt;}
.y5b{bottom:294.198808pt;}
.y11b{bottom:294.199154pt;}
.y1b8{bottom:294.800327pt;}
.y177{bottom:294.801287pt;}
.ya9{bottom:305.159970pt;}
.y1b7{bottom:306.819389pt;}
.y176{bottom:306.820348pt;}
.y2e{bottom:310.072400pt;}
.y2c{bottom:310.072746pt;}
.y11a{bottom:310.073091pt;}
.y2d{bottom:315.439333pt;}
.y1b6{bottom:318.762999pt;}
.y175{bottom:318.763959pt;}
.ya8{bottom:321.109224pt;}
.y134{bottom:324.056533pt;}
.y2b{bottom:326.022000pt;}
.y119{bottom:326.022346pt;}
.y29{bottom:326.023037pt;}
.y1b5{bottom:330.706609pt;}
.y174{bottom:330.707569pt;}
.y2a{bottom:331.388800pt;}
.ya7{bottom:337.058479pt;}
.y58{bottom:340.006133pt;}
.y59{bottom:341.971600pt;}
.y57{bottom:341.971946pt;}
.y28{bottom:341.972291pt;}
.y118{bottom:341.976908pt;}
.y1b4{bottom:342.650220pt;}
.y173{bottom:342.651179pt;}
.y5a{bottom:347.262933pt;}
.ya6{bottom:353.007733pt;}
.y1b3{bottom:354.593830pt;}
.y172{bottom:354.594790pt;}
.y55{bottom:355.955733pt;}
.y56{bottom:357.921200pt;}
.y27{bottom:357.921546pt;}
.y54{bottom:357.921891pt;}
.y133{bottom:357.924818pt;}
.y117{bottom:357.926163pt;}
.y1b2{bottom:366.537441pt;}
.y171{bottom:366.538400pt;}
.ya4{bottom:366.916400pt;}
.ya5{bottom:368.881733pt;}
.ya3{bottom:368.883461pt;}
.y26{bottom:373.870800pt;}
.y53{bottom:373.871146pt;}
.y24{bottom:373.871703pt;}
.yd4{bottom:373.873281pt;}
.y132{bottom:373.874072pt;}
.y116{bottom:373.875417pt;}
.y1b1{bottom:378.556502pt;}
.y25{bottom:379.162133pt;}
.ya2{bottom:384.832716pt;}
.y51{bottom:387.779467pt;}
.y170{bottom:389.140000pt;}
.y52{bottom:389.820400pt;}
.y23{bottom:389.820958pt;}
.y50{bottom:389.821845pt;}
.yd3{bottom:389.822536pt;}
.y131{bottom:389.823327pt;}
.y115{bottom:389.824672pt;}
.y1b0{bottom:390.500113pt;}
.ya1{bottom:400.781970pt;}
.y1af{bottom:402.443723pt;}
.y22{bottom:405.770212pt;}
.y4f{bottom:405.771099pt;}
.yd2{bottom:405.771790pt;}
.y130{bottom:405.772581pt;}
.y114{bottom:405.773926pt;}
.y1ae{bottom:414.387333pt;}
.ya0{bottom:416.731224pt;}
.y7e{bottom:416.733333pt;}
.y16f{bottom:418.998267pt;}
.y21{bottom:421.719467pt;}
.y1f{bottom:421.719662pt;}
.y4e{bottom:421.720354pt;}
.yd1{bottom:421.721045pt;}
.y12f{bottom:421.721836pt;}
.y113{bottom:421.723181pt;}
.y1ad{bottom:426.322571pt;}
.y20{bottom:427.010933pt;}
.y9f{bottom:432.680479pt;}
.y1e{bottom:437.593600pt;}
.y4d{bottom:437.594291pt;}
.y1c{bottom:437.594982pt;}
.y112{bottom:437.597118pt;}
.y1ac{bottom:438.266182pt;}
.y1d{bottom:442.960533pt;}
.y16e{bottom:445.606267pt;}
.y9d{bottom:446.588800pt;}
.y9e{bottom:448.629733pt;}
.y9c{bottom:448.630424pt;}
.y1ab{bottom:450.209792pt;}
.y4c{bottom:453.543546pt;}
.y1b{bottom:453.544237pt;}
.y111{bottom:453.546373pt;}
.y1aa{bottom:462.228854pt;}
.y9b{bottom:464.579679pt;}
.y14a{bottom:466.544667pt;}
.y4b{bottom:469.492800pt;}
.y1a{bottom:469.493491pt;}
.y110{bottom:469.495627pt;}
.y14b{bottom:471.004533pt;}
.y1a9{bottom:474.172464pt;}
.y7f{bottom:475.173333pt;}
.y147{bottom:478.185733pt;}
.y99{bottom:478.488000pt;}
.y148{bottom:479.848667pt;}
.y146{bottom:479.848878pt;}
.y9a{bottom:480.528933pt;}
.y98{bottom:480.530511pt;}
.y49{bottom:483.477067pt;}
.y149{bottom:484.232933pt;}
.y4a{bottom:485.442400pt;}
.y19{bottom:485.442746pt;}
.y48{bottom:485.443091pt;}
.y16d{bottom:485.443437pt;}
.y10f{bottom:485.444881pt;}
.y1a8{bottom:486.116074pt;}
.y145{bottom:493.152667pt;}
.y97{bottom:496.404449pt;}
.y1a7{bottom:498.059685pt;}
.yd0{bottom:499.426533pt;}
.y17{bottom:501.392000pt;}
.y47{bottom:501.392346pt;}
.y16c{bottom:501.392691pt;}
.ycf{bottom:501.393099pt;}
.y10e{bottom:501.394136pt;}
.y144{bottom:504.718000pt;}
.y143{bottom:506.381144pt;}
.y18{bottom:506.683333pt;}
.y1a6{bottom:510.003295pt;}
.y96{bottom:512.353703pt;}
.y16{bottom:517.341600pt;}
.y16b{bottom:517.341946pt;}
.y14{bottom:517.342354pt;}
.y10d{bottom:517.343390pt;}
.y142{bottom:518.021867pt;}
.y141{bottom:519.684933pt;}
.y1a5{bottom:521.946906pt;}
.y15{bottom:522.632933pt;}
.y95{bottom:528.302958pt;}
.y169{bottom:531.250267pt;}
.y16a{bottom:533.291200pt;}
.y13{bottom:533.291608pt;}
.y168{bottom:533.291954pt;}
.y10c{bottom:533.292645pt;}
.y45{bottom:533.293681pt;}
.y1a4{bottom:533.965967pt;}
.y46{bottom:538.582533pt;}
.y94{bottom:544.252212pt;}
.y1a3{bottom:545.909577pt;}
.y12{bottom:549.240862pt;}
.y167{bottom:549.241208pt;}
.y10b{bottom:549.241899pt;}
.y44{bottom:549.242936pt;}
.y1a2{bottom:557.853188pt;}
.y93{bottom:560.201467pt;}
.y11{bottom:565.114800pt;}
.y166{bottom:565.115146pt;}
.y10a{bottom:565.115837pt;}
.y43{bottom:565.116873pt;}
.y1a1{bottom:569.796798pt;}
.y91{bottom:574.110133pt;}
.y92{bottom:576.151067pt;}
.y90{bottom:576.151820pt;}
.ycd{bottom:579.099067pt;}
.yce{bottom:581.064400pt;}
.ycc{bottom:581.064746pt;}
.y109{bottom:581.065091pt;}
.y165{bottom:581.065437pt;}
.y42{bottom:581.066128pt;}
.y1a0{bottom:581.740409pt;}
.y8f{bottom:592.101075pt;}
.y19f{bottom:593.684019pt;}
.yf{bottom:595.275333pt;}
.ye{bottom:597.012179pt;}
.y10{bottom:597.014000pt;}
.y108{bottom:597.014346pt;}
.y164{bottom:597.014691pt;}
.y41{bottom:597.015382pt;}
.yca{bottom:597.015728pt;}
.ycb{bottom:602.305333pt;}
.y19e{bottom:605.627629pt;}
.y8e{bottom:608.050329pt;}
.y80{bottom:611.320000pt;}
.yd{bottom:612.962143pt;}
.y107{bottom:612.963600pt;}
.y163{bottom:612.963946pt;}
.y40{bottom:612.964637pt;}
.yc9{bottom:612.964982pt;}
.y105{bottom:612.965390pt;}
.y19d{bottom:617.646691pt;}
.y106{bottom:618.254933pt;}
.y8b{bottom:621.958933pt;}
.y8c{bottom:623.924267pt;}
.y8a{bottom:623.925994pt;}
.y161{bottom:626.947867pt;}
.yc{bottom:628.912107pt;}
.y162{bottom:628.913200pt;}
.y3f{bottom:628.913891pt;}
.yc8{bottom:628.914237pt;}
.y160{bottom:628.914432pt;}
.y104{bottom:628.914645pt;}
.y8d{bottom:629.291200pt;}
.y19c{bottom:629.590301pt;}
.y89{bottom:639.875249pt;}
.y19b{bottom:641.533912pt;}
.yb{bottom:644.862072pt;}
.y3e{bottom:644.863146pt;}
.yc7{bottom:644.863491pt;}
.y15f{bottom:644.863687pt;}
.y103{bottom:644.863899pt;}
.y19a{bottom:653.477522pt;}
.y88{bottom:655.824503pt;}
.ya{bottom:660.812036pt;}
.y3d{bottom:660.812400pt;}
.yc6{bottom:660.812746pt;}
.y15e{bottom:660.812941pt;}
.y102{bottom:660.813154pt;}
.y3b{bottom:660.815741pt;}
.y199{bottom:665.421132pt;}
.y3c{bottom:666.103733pt;}
.y87{bottom:671.773758pt;}
.y9{bottom:676.762000pt;}
.y15d{bottom:676.762196pt;}
.y101{bottom:676.762408pt;}
.y3a{bottom:676.764995pt;}
.y198{bottom:677.364743pt;}
.y86{bottom:687.723012pt;}
.y197{bottom:689.383804pt;}
.yc4{bottom:690.670667pt;}
.yc5{bottom:692.636133pt;}
.y100{bottom:692.636346pt;}
.yc3{bottom:692.638481pt;}
.y195{bottom:701.327415pt;}
.y196{bottom:701.630282pt;}
.y85{bottom:701.631333pt;}
.y84{bottom:703.672267pt;}
.y15c{bottom:706.620267pt;}
.yff{bottom:708.585600pt;}
.yfd{bottom:708.586291pt;}
.y15b{bottom:708.587673pt;}
.yc2{bottom:708.587736pt;}
.y7b{bottom:711.760539pt;}
.y193{bottom:713.271025pt;}
.y194{bottom:713.573893pt;}
.yfe{bottom:713.952533pt;}
.yfc{bottom:724.535546pt;}
.y15a{bottom:724.536928pt;}
.yc1{bottom:724.536990pt;}
.y192{bottom:725.214636pt;}
.y7a{bottom:735.345079pt;}
.y191{bottom:737.158246pt;}
.yfb{bottom:740.484800pt;}
.yf9{bottom:740.485491pt;}
.y159{bottom:740.486182pt;}
.yc0{bottom:740.486245pt;}
.ydb{bottom:744.491067pt;}
.yfa{bottom:745.776267pt;}
.ydc{bottom:746.154133pt;}
.yda{bottom:746.154211pt;}
.y190{bottom:749.101856pt;}
.yf8{bottom:756.434746pt;}
.y158{bottom:756.435437pt;}
.ybf{bottom:756.435499pt;}
.yd8{bottom:757.795067pt;}
.yd9{bottom:759.458000pt;}
.yd7{bottom:759.458325pt;}
.y79{bottom:759.609544pt;}
.y18f{bottom:761.039921pt;}
.y8{bottom:769.965208pt;}
.yd6{bottom:771.098933pt;}
.y78{bottom:771.552533pt;}
.yf7{bottom:772.384000pt;}
.yf5{bottom:772.384346pt;}
.y157{bottom:772.384691pt;}
.ybe{bottom:772.384754pt;}
.yd5{bottom:772.686400pt;}
.y18e{bottom:773.058982pt;}
.yf6{bottom:777.675333pt;}
.y18d{bottom:785.002593pt;}
.y7{bottom:785.914667pt;}
.yf4{bottom:786.292667pt;}
.y2{bottom:788.000000pt;}
.yf3{bottom:788.333600pt;}
.y156{bottom:788.333946pt;}
.ybd{bottom:788.334008pt;}
.yf1{bottom:788.334832pt;}
.yf2{bottom:793.625067pt;}
.y18c{bottom:796.946203pt;}
.y154{bottom:802.242267pt;}
.y155{bottom:804.283200pt;}
.ybc{bottom:804.283262pt;}
.yf0{bottom:804.284087pt;}
.y153{bottom:804.285124pt;}
.y18b{bottom:808.889813pt;}
.y6{bottom:817.813462pt;}
.ybb{bottom:818.191867pt;}
.yba{bottom:820.157200pt;}
.yef{bottom:820.158024pt;}
.y152{bottom:820.159061pt;}
.y18a{bottom:820.833424pt;}
.y189{bottom:832.777034pt;}
.yee{bottom:836.107279pt;}
.yb8{bottom:836.108316pt;}
.yb9{bottom:841.473733pt;}
.y5{bottom:841.700533pt;}
.y188{bottom:844.796096pt;}
.yec{bottom:852.056533pt;}
.yb7{bottom:852.057570pt;}
.y187{bottom:856.739706pt;}
.yed{bottom:857.347867pt;}
.yeb{bottom:868.006000pt;}
.ye9{bottom:868.006346pt;}
.yb6{bottom:868.006824pt;}
.y186{bottom:868.683317pt;}
.yea{bottom:873.297333pt;}
.y185{bottom:880.626927pt;}
.ye8{bottom:883.955600pt;}
.yb5{bottom:883.956079pt;}
.ye6{bottom:883.957178pt;}
.y83{bottom:888.706667pt;}
.ye7{bottom:889.246933pt;}
.y184{bottom:892.570537pt;}
.y7d{bottom:896.050133pt;}
.yb3{bottom:897.864400pt;}
.yb4{bottom:899.905333pt;}
.yb2{bottom:899.905546pt;}
.ye5{bottom:899.906432pt;}
.y81{bottom:902.040000pt;}
.y183{bottom:904.514148pt;}
.y151{bottom:913.814000pt;}
.yb1{bottom:915.854800pt;}
.y150{bottom:915.855341pt;}
.ye4{bottom:915.855687pt;}
.yaf{bottom:915.859445pt;}
.y182{bottom:916.533209pt;}
.yb0{bottom:921.146133pt;}
.y181{bottom:928.476820pt;}
.y14f{bottom:931.804596pt;}
.ye3{bottom:931.804941pt;}
.yae{bottom:931.808699pt;}
.y180{bottom:940.420430pt;}
.y14d{bottom:945.713067pt;}
.y7c{bottom:946.771467pt;}
.y14e{bottom:947.678533pt;}
.ye2{bottom:947.678879pt;}
.yad{bottom:947.682637pt;}
.y17f{bottom:952.364040pt;}
.ye1{bottom:963.628133pt;}
.yac{bottom:963.631891pt;}
.y17e{bottom:964.307651pt;}
.y14c{bottom:968.995067pt;}
.ydf{bottom:995.149333pt;}
.ye0{bottom:1015.373333pt;}
.h16{height:10.666667pt;}
.h14{height:14.666667pt;}
.h19{height:19.709499pt;}
.h8{height:20.457437pt;}
.hb{height:26.333069pt;}
.h4{height:27.773389pt;}
.ha{height:28.433630pt;}
.hd{height:28.583819pt;}
.he{height:28.660864pt;}
.h1a{height:29.568403pt;}
.h18{height:29.648102pt;}
.h17{height:30.112000pt;}
.h7{height:30.690583pt;}
.hc{height:33.176691pt;}
.h3{height:34.005760pt;}
.h1b{height:34.908795pt;}
.h1d{height:37.916898pt;}
.h1e{height:37.939082pt;}
.h6{height:39.425329pt;}
.h11{height:41.875000pt;}
.h9{height:42.655678pt;}
.h15{height:45.168000pt;}
.h2{height:45.354667pt;}
.h1c{height:55.344077pt;}
.h5{height:61.380782pt;}
.hf{height:81.455152pt;}
.h12{height:135.386667pt;}
.h13{height:305.453333pt;}
.h10{height:411.813333pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w3{width:13.333333pt;}
.w6{width:46.773333pt;}
.w5{width:49.426667pt;}
.w7{width:73.653333pt;}
.w4{width:110.480000pt;}
.w2{width:648.368000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:4.000000pt;}
.x40{left:10.666667pt;}
.x41{left:18.666667pt;}
.x3d{left:55.634667pt;}
.x1{left:56.676000pt;}
.xbf{left:61.984267pt;}
.x3e{left:66.519733pt;}
.x52{left:67.653467pt;}
.x17{left:72.642533pt;}
.x8f{left:73.625200pt;}
.x53{left:76.573200pt;}
.x90{left:81.940133pt;}
.x54{left:84.888133pt;}
.x80{left:94.714933pt;}
.x55{left:98.872400pt;}
.x8{left:100.913333pt;}
.x9{left:108.472400pt;}
.x81{left:111.344800pt;}
.xe{left:115.048800pt;}
.xf{left:119.357467pt;}
.x4c{left:120.944800pt;}
.x4d{left:130.318133pt;}
.x7a{left:133.190533pt;}
.x3c{left:137.423502pt;}
.x4e{left:138.859867pt;}
.x6f{left:146.645600pt;}
.x4f{left:150.878667pt;}
.x70{left:154.431467pt;}
.xc{left:157.303867pt;}
.x71{left:162.670800pt;}
.xd{left:165.014133pt;}
.xbb{left:166.677067pt;}
.x72{left:174.689733pt;}
.xb3{left:179.829867pt;}
.x10{left:181.417200pt;}
.x69{left:185.121200pt;}
.xbc{left:186.859733pt;}
.x7e{left:187.842400pt;}
.x11{left:189.278667pt;}
.x6a{left:192.982667pt;}
.xa{left:194.796800pt;}
.xb7{left:198.803067pt;}
.x6b{left:201.222000pt;}
.xb{left:202.431467pt;}
.x7f{left:203.489733pt;}
.x84{left:207.269200pt;}
.x87{left:211.351067pt;}
.x6c{left:213.467600pt;}
.x46{left:214.828267pt;}
.xb8{left:215.810933pt;}
.xb6{left:222.765333pt;}
.x47{left:223.974800pt;}
.x5{left:224.957467pt;}
.x3{left:226.696000pt;}
.x2{left:229.417333pt;}
.x4{left:230.929067pt;}
.x48{left:232.440933pt;}
.x6{left:234.557467pt;}
.x12{left:239.924400pt;}
.x49{left:241.587333pt;}
.x4a{left:244.686533pt;}
.x13{left:247.407733pt;}
.x8d{left:248.390533pt;}
.x6d{left:252.548000pt;}
.x56{left:255.042400pt;}
.x8e{left:257.083333pt;}
.x4b{left:258.519600pt;}
.x6e{left:260.711733pt;}
.x57{left:263.962133pt;}
.x85{left:265.322800pt;}
.x75{left:266.834533pt;}
.x58{left:272.277067pt;}
.x16{left:277.417200pt;}
.x76{left:278.475467pt;}
.x86{left:279.911733pt;}
.x59{left:284.220400pt;}
.xb5{left:286.563733pt;}
.x43{left:292.837733pt;}
.x14{left:300.018800pt;}
.x44{left:301.984133pt;}
.x91{left:306.746400pt;}
.x18{left:310.374667pt;}
.x7b{left:311.659733pt;}
.x15{left:317.026667pt;}
.x92{left:317.933733pt;}
.x7c{left:319.974667pt;}
.x45{left:322.771600pt;}
.xb4{left:324.585733pt;}
.xb9{left:327.609333pt;}
.x7d{left:333.807733pt;}
.x88{left:335.773067pt;}
.xbd{left:337.360533pt;}
.xba{left:340.913333pt;}
.x78{left:343.029733pt;}
.x89{left:344.692800pt;}
.xbe{left:345.675467pt;}
.x19{left:350.135333pt;}
.x8a{left:353.007733pt;}
.x82{left:356.258133pt;}
.x79{left:359.055067pt;}
.x8b{left:360.944800pt;}
.x5a{left:362.910133pt;}
.x74{left:366.160533pt;}
.x8c{left:369.259733pt;}
.x83{left:370.166800pt;}
.x50{left:371.376267pt;}
.x51{left:375.987333pt;}
.x77{left:377.725867pt;}
.x5b{left:380.144800pt;}
.x7{left:384.604667pt;}
.x1a{left:404.410140pt;}
.xad{left:408.566800pt;}
.xc0{left:409.701776pt;}
.x30{left:415.521200pt;}
.xae{left:419.451867pt;}
.x1e{left:420.358933pt;}
.xaf{left:423.609333pt;}
.x31{left:424.592000pt;}
.x2c{left:431.546400pt;}
.x32{left:433.058133pt;}
.xb0{left:434.872267pt;}
.x2d{left:440.919600pt;}
.x98{left:442.355733pt;}
.x3a{left:444.547867pt;}
.x33{left:446.286533pt;}
.x2e{left:449.536800pt;}
.x99{left:451.426667pt;}
.xb1{left:456.340000pt;}
.x3b{left:457.473867pt;}
.x9a{left:459.892800pt;}
.x2f{left:463.370000pt;}
.xb2{left:472.214000pt;}
.x61{left:473.196800pt;}
.x62{left:481.662800pt;}
.x9f{left:486.349467pt;}
.xa0{left:491.036133pt;}
.x63{left:494.135333pt;}
.x22{left:517.870667pt;}
.x93{left:519.231333pt;}
.x23{left:522.557333pt;}
.x94{left:526.790400pt;}
.x67{left:534.273867pt;}
.x1d{left:541.228133pt;}
.x1b{left:542.815600pt;}
.x24{left:550.072267pt;}
.x68{left:551.810933pt;}
.x25{left:558.689600pt;}
.x1c{left:565.417200pt;}
.x26{left:571.766800pt;}
.x5e{left:573.883333pt;}
.x9c{left:577.889600pt;}
.x96{left:580.913200pt;}
.x5f{left:582.954133pt;}
.x5c{left:586.053333pt;}
.x97{left:588.094267pt;}
.x60{left:591.420267pt;}
.x5d{left:598.525867pt;}
.x42{left:603.213333pt;}
.xa3{left:604.119467pt;}
.xa4{left:615.231333pt;}
.x65{left:618.784133pt;}
.x27{left:622.639200pt;}
.x9b{left:624.604533pt;}
.x37{left:626.947867pt;}
.xa5{left:630.198267pt;}
.x28{left:632.239200pt;}
.x34{left:637.379333pt;}
.x29{left:640.932133pt;}
.x9d{left:643.275333pt;}
.x35{left:646.525733pt;}
.x66{left:647.810800pt;}
.x9e{left:653.328933pt;}
.x2a{left:654.916400pt;}
.xa6{left:656.050267pt;}
.x73{left:662.706667pt;}
.xa7{left:667.237600pt;}
.x36{left:669.505333pt;}
.x38{left:675.098933pt;}
.x39{left:688.251733pt;}
.xa8{left:692.711733pt;}
.xa9{left:703.521200pt;}
.xa1{left:708.056533pt;}
.x1f{left:709.719467pt;}
.xaa{left:711.155733pt;}
.x95{left:712.365200pt;}
.xa2{left:715.540000pt;}
.x20{left:719.092800pt;}
.xab{left:721.587200pt;}
.x2b{left:724.157333pt;}
.x21{left:727.634400pt;}
.xac{left:729.297467pt;}
.x64{left:732.321067pt;}
}


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