
/* 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_ce115920848c.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_2509aa2ca087.woff")format("woff");}.ff2{font-family:ff2;line-height:0.099000;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_ccc1f30ad5a7.woff")format("woff");}.ff3{font-family:ff3;line-height:0.896000;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_05f1008a2094.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_cf25ef9515da.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_cf86188c8cfb.woff")format("woff");}.ff6{font-family:ff6;line-height:0.078000;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_f9480ac633ae.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_8c15dd6eac58.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_7b1a78c5a2bd.woff")format("woff");}.ff9{font-family:ff9;line-height:0.708000;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_f9fec5087efa.woff")format("woff");}.ffa{font-family:ffa;line-height:0.396000;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_dd995270e70f.woff")format("woff");}.ffb{font-family:ffb;line-height:0.800000;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_fc74cb3db376.woff")format("woff");}.ffc{font-family:ffc;line-height:0.066000;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_2ed098239023.woff")format("woff");}.ffd{font-family:ffd;line-height:0.708000;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_02dfb082c67e.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_a7f78f16cf2e.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_2f8248ed4a34.woff")format("woff");}.ff10{font-family:ff10;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:ff11;src:url("fonts/font_0016_2e6b5cdcdeea.woff")format("woff");}.ff11{font-family:ff11;line-height:0.913000;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_43f27f39a0cf.woff")format("woff");}.ff12{font-family:ff12;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:ff13;src:url("fonts/font_0018_34e114961f83.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_c2524e412a50.woff")format("woff");}.ff14{font-family:ff14;line-height:0.961000;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_4150bf27728d.woff")format("woff");}.ff15{font-family:ff15;line-height:0.743000;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_3532d369961f.woff")format("woff");}.ff16{font-family:ff16;line-height:0.052000;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_27d12f3faac8.woff")format("woff");}.ff17{font-family:ff17;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:ff18;src:url("fonts/font_0023_266d4171228b.woff")format("woff");}.ff18{font-family:ff18;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:ff19;src:url("fonts/font_0024_92d0b62e1116.woff")format("woff");}.ff19{font-family:ff19;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_3135cf5af43c.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.720000;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_ca24574450d9.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.058000;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_b23f3d6debb9.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.708000;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;}
.m6{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.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,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);}
.m4{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.281281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281281,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m7{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.698818px;}
.v5{vertical-align:2.722169px;}
.v1{vertical-align:7.483800px;}
.v4{vertical-align:17.347800px;}
.v3{vertical-align:19.382499px;}
.ls17{letter-spacing:-8.837326px;}
.ls18{letter-spacing:-8.787114px;}
.ls32{letter-spacing:-1.564595px;}
.ls33{letter-spacing:-1.468111px;}
.ls12{letter-spacing:-1.458547px;}
.ls3d{letter-spacing:-1.444200px;}
.ls31{letter-spacing:-1.394238px;}
.ls13{letter-spacing:-1.380789px;}
.ls24{letter-spacing:-1.358373px;}
.ls21{letter-spacing:-1.344924px;}
.ls11{letter-spacing:-1.339144px;}
.lsd{letter-spacing:-1.295806px;}
.ls16{letter-spacing:-1.264229px;}
.ls20{letter-spacing:-1.246296px;}
.ls3c{letter-spacing:-1.228364px;}
.ls22{letter-spacing:-1.201465px;}
.lse{letter-spacing:-1.157125px;}
.lsc{letter-spacing:-0.002988px;}
.lsb{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.004184px;}
.ls23{letter-spacing:0.004782px;}
.ls35{letter-spacing:0.033474px;}
.ls1{letter-spacing:0.043038px;}
.ls19{letter-spacing:0.075317px;}
.ls0{letter-spacing:0.080697px;}
.ls2{letter-spacing:0.161393px;}
.ls3{letter-spacing:0.197228px;}
.ls1f{letter-spacing:0.200820px;}
.ls1e{letter-spacing:0.225951px;}
.ls8{letter-spacing:0.238504px;}
.ls38{letter-spacing:0.258229px;}
.ls4{letter-spacing:0.301268px;}
.ls1c{letter-spacing:0.312027px;}
.ls6{letter-spacing:0.338926px;}
.ls26{letter-spacing:2.941200px;}
.ls1d{letter-spacing:2.941800px;}
.ls2e{letter-spacing:2.992500px;}
.lsf{letter-spacing:7.328456px;}
.ls10{letter-spacing:7.670826px;}
.ls30{letter-spacing:13.299076px;}
.ls15{letter-spacing:14.224813px;}
.ls14{letter-spacing:14.565527px;}
.ls27{letter-spacing:15.068764px;}
.ls9{letter-spacing:15.134541px;}
.ls25{letter-spacing:16.064023px;}
.ls39{letter-spacing:16.090922px;}
.ls3b{letter-spacing:16.429848px;}
.ls2f{letter-spacing:17.602984px;}
.ls34{letter-spacing:17.914667px;}
.ls5{letter-spacing:17.989984px;}
.ls1b{letter-spacing:18.102960px;}
.ls1a{letter-spacing:19.022902px;}
.ls29{letter-spacing:19.614678px;}
.ls2d{letter-spacing:19.644949px;}
.ls2c{letter-spacing:19.927094px;}
.ls2a{letter-spacing:19.946223px;}
.ls2b{letter-spacing:19.984479px;}
.ls3a{letter-spacing:20.669115px;}
.lsa{letter-spacing:21.079442px;}
.ls28{letter-spacing:37.986627px;}
.ls36{letter-spacing:40.219235px;}
.ls37{letter-spacing:40.224615px;}
.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;}
}
.ws201{word-spacing:-16.483646px;}
.ws1fc{word-spacing:-16.144720px;}
.ws14b{word-spacing:-15.122562px;}
.ws7b{word-spacing:-14.610358px;}
.ws7d{word-spacing:-14.269644px;}
.ws74{word-spacing:-7.714164px;}
.ws72{word-spacing:-7.371794px;}
.ws1df{word-spacing:-5.422818px;}
.ws7f{word-spacing:-0.095642px;}
.ws1ce{word-spacing:-0.083686px;}
.ws14{word-spacing:-0.053798px;}
.wsa{word-spacing:-0.047821px;}
.ws64{word-spacing:-0.046027px;}
.ws7c{word-spacing:-0.044831px;}
.ws73{word-spacing:-0.043338px;}
.ws63{word-spacing:-0.041843px;}
.wsce{word-spacing:-0.035861px;}
.ws181{word-spacing:-0.031876px;}
.ws1b{word-spacing:-0.029883px;}
.ws2b{word-spacing:-0.026895px;}
.ws80{word-spacing:0.000000px;}
.ws78{word-spacing:1.295806px;}
.ws244{word-spacing:1.396379px;}
.ws187{word-spacing:1.420290px;}
.ws6b{word-spacing:8.602880px;}
.ws6d{word-spacing:8.816278px;}
.ws6c{word-spacing:8.945991px;}
.ws128{word-spacing:9.194797px;}
.ws6a{word-spacing:9.197047px;}
.ws12a{word-spacing:9.559458px;}
.ws12c{word-spacing:9.602497px;}
.ws71{word-spacing:9.642705px;}
.ws177{word-spacing:9.664665px;}
.ws176{word-spacing:9.755525px;}
.ws12d{word-spacing:9.779435px;}
.ws12e{word-spacing:9.841603px;}
.ws12b{word-spacing:9.951592px;}
.ws70{word-spacing:10.006744px;}
.ws129{word-spacing:10.095055px;}
.ws1c0{word-spacing:10.479811px;}
.ws19b{word-spacing:10.630445px;}
.wseb{word-spacing:10.732661px;}
.wse0{word-spacing:10.754180px;}
.wsee{word-spacing:10.781079px;}
.wsab{word-spacing:10.802598px;}
.ws1fe{word-spacing:10.818738px;}
.wsfd{word-spacing:10.894054px;}
.ws1ff{word-spacing:10.931713px;}
.wsdf{word-spacing:10.996270px;}
.ws240{word-spacing:11.173803px;}
.wsc0{word-spacing:11.243740px;}
.ws242{word-spacing:11.270639px;}
.ws166{word-spacing:11.292158px;}
.ws23c{word-spacing:11.297538px;}
.ws23b{word-spacing:11.313677px;}
.ws22{word-spacing:11.340576px;}
.ws1da{word-spacing:11.345956px;}
.ws1e9{word-spacing:11.388994px;}
.ws131{word-spacing:11.410513px;}
.ws97{word-spacing:11.432032px;}
.ws92{word-spacing:11.485830px;}
.ws168{word-spacing:11.491210px;}
.ws96{word-spacing:11.528869px;}
.ws109{word-spacing:11.550388px;}
.ws1aa{word-spacing:11.571907px;}
.ws4d{word-spacing:11.582666px;}
.ws241{word-spacing:11.593426px;}
.ws1ab{word-spacing:11.604185px;}
.ws1dc{word-spacing:11.614945px;}
.ws167{word-spacing:11.631084px;}
.ws8{word-spacing:11.634898px;}
.ws1db{word-spacing:11.679502px;}
.ws20f{word-spacing:11.684882px;}
.wsa6{word-spacing:11.695642px;}
.ws67{word-spacing:11.715984px;}
.ws50{word-spacing:11.754819px;}
.ws221{word-spacing:11.765579px;}
.ws21e{word-spacing:11.776338px;}
.ws21{word-spacing:11.787098px;}
.ws108{word-spacing:11.851655px;}
.ws234{word-spacing:11.873174px;}
.wscc{word-spacing:11.916213px;}
.ws206{word-spacing:11.975390px;}
.wsb5{word-spacing:12.045327px;}
.wsa7{word-spacing:12.072226px;}
.wsb6{word-spacing:12.088366px;}
.ws13a{word-spacing:12.136784px;}
.ws13b{word-spacing:12.163683px;}
.wsd7{word-spacing:12.206721px;}
.ws104{word-spacing:12.255139px;}
.wsd6{word-spacing:12.271278px;}
.ws21f{word-spacing:12.319696px;}
.ws1c5{word-spacing:12.325076px;}
.ws68{word-spacing:12.418943px;}
.ws6e{word-spacing:12.464970px;}
.ws1c4{word-spacing:12.470330px;}
.ws5e{word-spacing:12.473339px;}
.ws62{word-spacing:12.506813px;}
.wse1{word-spacing:12.545647px;}
.ws1fb{word-spacing:12.594065px;}
.ws69{word-spacing:12.615604px;}
.ws238{word-spacing:12.631723px;}
.ws66{word-spacing:12.636526px;}
.ws5c{word-spacing:12.670000px;}
.ws5d{word-spacing:12.686737px;}
.wsa8{word-spacing:12.717800px;}
.ws14d{word-spacing:12.733939px;}
.ws236{word-spacing:12.750079px;}
.ws14e{word-spacing:12.771598px;}
.ws65{word-spacing:12.778791px;}
.ws235{word-spacing:12.782357px;}
.ws14f{word-spacing:12.846915px;}
.ws22e{word-spacing:12.889953px;}
.ws5b{word-spacing:12.937794px;}
.ws76{word-spacing:12.988399px;}
.ws3c{word-spacing:13.013688px;}
.ws239{word-spacing:13.045966px;}
.ws60{word-spacing:13.054954px;}
.ws17e{word-spacing:13.083880px;}
.ws77{word-spacing:13.096744px;}
.ws75{word-spacing:13.140082px;}
.ws2f{word-spacing:13.148182px;}
.ws237{word-spacing:13.158942px;}
.ws180{word-spacing:13.222562px;}
.ws11{word-spacing:13.227344px;}
.ws172{word-spacing:13.228879px;}
.wscd{word-spacing:13.277297px;}
.ws22d{word-spacing:13.465589px;}
.ws24{word-spacing:13.524767px;}
.ws89{word-spacing:13.567805px;}
.ws125{word-spacing:13.619597px;}
.ws202{word-spacing:13.723819px;}
.ws211{word-spacing:13.842174px;}
.wsf7{word-spacing:13.863693px;}
.ws170{word-spacing:13.874453px;}
.ws178{word-spacing:13.896841px;}
.ws184{word-spacing:13.906405px;}
.ws3a{word-spacing:13.906731px;}
.ws127{word-spacing:13.935098px;}
.ws173{word-spacing:13.955828px;}
.ws16f{word-spacing:13.965909px;}
.ws213{word-spacing:13.992808px;}
.ws175{word-spacing:14.006829px;}
.ws81{word-spacing:14.014327px;}
.ws212{word-spacing:14.041226px;}
.ws1ea{word-spacing:14.068125px;}
.ws126{word-spacing:14.107254px;}
.ws141{word-spacing:14.132682px;}
.ws174{word-spacing:14.188550px;}
.ws193{word-spacing:14.202619px;}
.ws192{word-spacing:14.213379px;}
.wsa4{word-spacing:14.251037px;}
.ws179{word-spacing:14.279410px;}
.wsa1{word-spacing:14.294075px;}
.wsa3{word-spacing:14.315595px;}
.ws1f7{word-spacing:14.331734px;}
.ws1f8{word-spacing:14.337114px;}
.ws4c{word-spacing:14.342493px;}
.ws1f5{word-spacing:14.450089px;}
.ws36{word-spacing:14.498507px;}
.wsbd{word-spacing:14.509267px;}
.ws1f6{word-spacing:14.557685px;}
.ws1ee{word-spacing:14.595343px;}
.ws227{word-spacing:14.622242px;}
.ws217{word-spacing:14.638381px;}
.ws228{word-spacing:14.676040px;}
.ws20{word-spacing:14.799775px;}
.ws11e{word-spacing:14.805155px;}
.ws18b{word-spacing:14.815914px;}
.ws86{word-spacing:14.821294px;}
.ws14c{word-spacing:14.832053px;}
.ws1f{word-spacing:14.880471px;}
.ws2d{word-spacing:14.934269px;}
.ws136{word-spacing:14.998827px;}
.ws98{word-spacing:15.515286px;}
.wse9{word-spacing:15.655160px;}
.ws93{word-spacing:15.660540px;}
.ws144{word-spacing:15.682059px;}
.ws106{word-spacing:15.714337px;}
.ws145{word-spacing:15.735856px;}
.ws1d1{word-spacing:15.768135px;}
.wse{word-spacing:15.814471px;}
.ws15d{word-spacing:15.832693px;}
.ws10f{word-spacing:15.854212px;}
.ws105{word-spacing:15.891870px;}
.ws1d0{word-spacing:15.902630px;}
.ws13c{word-spacing:15.908009px;}
.ws1b6{word-spacing:15.918769px;}
.ws15e{word-spacing:15.945668px;}
.ws94{word-spacing:15.951048px;}
.wsea{word-spacing:15.956427px;}
.ws4a{word-spacing:15.972567px;}
.ws1fd{word-spacing:15.994086px;}
.wsd9{word-spacing:16.010225px;}
.ws1dd{word-spacing:16.037124px;}
.ws1b5{word-spacing:16.047884px;}
.ws1e8{word-spacing:16.058643px;}
.ws203{word-spacing:16.069403px;}
.ws9a{word-spacing:16.074783px;}
.ws23a{word-spacing:16.080162px;}
.ws1eb{word-spacing:16.085542px;}
.ws216{word-spacing:16.090922px;}
.ws233{word-spacing:16.096302px;}
.ws20e{word-spacing:16.101682px;}
.ws215{word-spacing:16.107061px;}
.ws37{word-spacing:16.112441px;}
.ws1be{word-spacing:16.117821px;}
.wsf9{word-spacing:16.128580px;}
.ws132{word-spacing:16.144720px;}
.ws116{word-spacing:16.166239px;}
.wsb0{word-spacing:16.171619px;}
.ws20d{word-spacing:16.182378px;}
.ws219{word-spacing:16.187758px;}
.ws15c{word-spacing:16.193138px;}
.ws204{word-spacing:16.209277px;}
.ws8e{word-spacing:16.220037px;}
.ws25{word-spacing:16.241556px;}
.wsf8{word-spacing:16.246936px;}
.ws1de{word-spacing:16.252315px;}
.ws218{word-spacing:16.257695px;}
.ws113{word-spacing:16.273834px;}
.ws1b1{word-spacing:16.289974px;}
.ws205{word-spacing:16.322253px;}
.ws232{word-spacing:16.338392px;}
.ws1ed{word-spacing:16.376050px;}
.ws1f4{word-spacing:16.386810px;}
.ws230{word-spacing:16.397569px;}
.ws1ec{word-spacing:16.435228px;}
.ws21d{word-spacing:16.440608px;}
.ws1e4{word-spacing:16.445987px;}
.ws40{word-spacing:16.462127px;}
.ws1b4{word-spacing:16.494405px;}
.ws2e{word-spacing:16.521304px;}
.ws1af{word-spacing:16.537444px;}
.ws1b3{word-spacing:16.548203px;}
.ws200{word-spacing:16.558963px;}
.ws18a{word-spacing:16.612761px;}
.ws1b2{word-spacing:16.628900px;}
.ws103{word-spacing:16.671938px;}
.ws83{word-spacing:16.677318px;}
.ws18e{word-spacing:16.688078px;}
.ws118{word-spacing:16.747255px;}
.ws87{word-spacing:16.763394px;}
.ws1b0{word-spacing:16.768774px;}
.ws110{word-spacing:16.789135px;}
.ws1a5{word-spacing:16.790293px;}
.ws111{word-spacing:16.798101px;}
.ws7e{word-spacing:16.824999px;}
.ws82{word-spacing:16.876370px;}
.ws1a6{word-spacing:16.914028px;}
.ws95{word-spacing:16.924788px;}
.ws183{word-spacing:16.962180px;}
.ws150{word-spacing:16.962446px;}
.wsc5{word-spacing:16.967826px;}
.ws138{word-spacing:17.000105px;}
.ws17f{word-spacing:17.010001px;}
.ws22a{word-spacing:17.016244px;}
.ws22b{word-spacing:17.053903px;}
.ws139{word-spacing:17.080801px;}
.ws90{word-spacing:17.102321px;}
.ws88{word-spacing:17.150739px;}
.ws130{word-spacing:17.165713px;}
.wsdc{word-spacing:17.193777px;}
.ws58{word-spacing:17.199157px;}
.ws7a{word-spacing:17.210544px;}
.ws46{word-spacing:17.220676px;}
.ws185{word-spacing:17.237443px;}
.ws21b{word-spacing:17.279853px;}
.ws1c1{word-spacing:17.312132px;}
.ws26{word-spacing:17.360550px;}
.wsff{word-spacing:17.382069px;}
.ws182{word-spacing:17.397353px;}
.ws21a{word-spacing:17.435867px;}
.ws1ae{word-spacing:17.495045px;}
.ws49{word-spacing:17.554222px;}
.ws10b{word-spacing:17.559602px;}
.ws1ac{word-spacing:17.591881px;}
.wsbb{word-spacing:17.618779px;}
.ws1ad{word-spacing:17.683337px;}
.ws59{word-spacing:17.726375px;}
.ws45{word-spacing:17.812452px;}
.ws44{word-spacing:17.833971px;}
.ws33{word-spacing:17.877009px;}
.wsbf{word-spacing:17.909288px;}
.wsca{word-spacing:17.920047px;}
.ws5a{word-spacing:17.946946px;}
.wsc9{word-spacing:17.984605px;}
.wse6{word-spacing:18.038402px;}
.ws19f{word-spacing:18.076061px;}
.wse7{word-spacing:18.092200px;}
.ws2c{word-spacing:18.172897px;}
.ws52{word-spacing:18.183656px;}
.wsb4{word-spacing:18.210555px;}
.wsb3{word-spacing:18.237454px;}
.wsfe{word-spacing:18.248214px;}
.wsbe{word-spacing:18.285872px;}
.wsc{word-spacing:18.291609px;}
.wsd3{word-spacing:18.328910px;}
.wscb{word-spacing:18.334290px;}
.ws6{word-spacing:18.422840px;}
.ws18d{word-spacing:18.474165px;}
.ws226{word-spacing:18.484924px;}
.ws22c{word-spacing:18.490304px;}
.ws18c{word-spacing:18.495684px;}
.ws8a{word-spacing:18.554861px;}
.ws10e{word-spacing:18.576380px;}
.ws10c{word-spacing:18.597899px;}
.ws2{word-spacing:18.626077px;}
.wsb1{word-spacing:18.673216px;}
.ws107{word-spacing:18.716255px;}
.ws10d{word-spacing:18.748533px;}
.wsde{word-spacing:18.759293px;}
.ws3{word-spacing:18.775516px;}
.ws7{word-spacing:18.799426px;}
.ws1cc{word-spacing:18.802331px;}
.wsdd{word-spacing:18.823850px;}
.ws209{word-spacing:18.829230px;}
.ws4{word-spacing:18.877134px;}
.ws5{word-spacing:18.889090px;}
.ws15a{word-spacing:18.915306px;}
.wsa9{word-spacing:19.012143px;}
.wsd{word-spacing:19.080659px;}
.ws159{word-spacing:19.216574px;}
.ws1b8{word-spacing:19.281132px;}
.ws1a9{word-spacing:19.286511px;}
.ws1ba{word-spacing:19.291891px;}
.wsaa{word-spacing:19.308030px;}
.ws1a7{word-spacing:19.377968px;}
.ws161{word-spacing:19.383347px;}
.ws1bd{word-spacing:19.394107px;}
.ws1b9{word-spacing:19.399487px;}
.ws157{word-spacing:19.410246px;}
.ws1bb{word-spacing:19.431765px;}
.ws158{word-spacing:19.458664px;}
.ws1a8{word-spacing:19.512462px;}
.ws1bc{word-spacing:19.528601px;}
.ws17b{word-spacing:19.558871px;}
.wsf2{word-spacing:19.598539px;}
.ws5f{word-spacing:19.615905px;}
.ws1c8{word-spacing:19.646957px;}
.ws17c{word-spacing:19.653141px;}
.ws160{word-spacing:19.716894px;}
.ws54{word-spacing:19.759932px;}
.ws162{word-spacing:19.797590px;}
.ws3f{word-spacing:19.829869px;}
.ws17a{word-spacing:19.831452px;}
.ws17d{word-spacing:19.836234px;}
.ws224{word-spacing:19.846008px;}
.ws55{word-spacing:19.862148px;}
.ws1bf{word-spacing:19.878287px;}
.ws1ef{word-spacing:19.926705px;}
.ws8f{word-spacing:19.991262px;}
.ws56{word-spacing:20.002022px;}
.wsb2{word-spacing:20.028921px;}
.ws42{word-spacing:20.045060px;}
.ws225{word-spacing:20.077339px;}
.ws41{word-spacing:20.120377px;}
.ws148{word-spacing:20.131137px;}
.ws220{word-spacing:20.190314px;}
.ws147{word-spacing:20.206454px;}
.ws1a{word-spacing:20.260251px;}
.wsc6{word-spacing:20.276391px;}
.ws1c{word-spacing:20.303290px;}
.wsc7{word-spacing:20.314049px;}
.ws9c{word-spacing:20.330189px;}
.ws84{word-spacing:20.373227px;}
.wsd0{word-spacing:20.550760px;}
.wsa0{word-spacing:20.588418px;}
.ws194{word-spacing:20.615317px;}
.wsed{word-spacing:20.631456px;}
.ws9e{word-spacing:20.658355px;}
.ws9f{word-spacing:20.760571px;}
.wscf{word-spacing:20.771331px;}
.ws14a{word-spacing:20.782090px;}
.ws163{word-spacing:20.825128px;}
.ws1f9{word-spacing:20.873546px;}
.ws27{word-spacing:20.878926px;}
.ws28{word-spacing:20.943484px;}
.ws164{word-spacing:20.970382px;}
.ws199{word-spacing:21.018800px;}
.ws1c3{word-spacing:21.051079px;}
.ws19a{word-spacing:21.083358px;}
.wsec{word-spacing:21.099497px;}
.ws149{word-spacing:21.130234px;}
.wsfa{word-spacing:21.180194px;}
.wsfb{word-spacing:21.223232px;}
.ws32{word-spacing:21.277030px;}
.wsb7{word-spacing:21.298549px;}
.ws1d3{word-spacing:21.336207px;}
.ws143{word-spacing:21.346967px;}
.ws31{word-spacing:21.400765px;}
.ws1a0{word-spacing:21.416904px;}
.wsbc{word-spacing:21.492221px;}
.ws1d5{word-spacing:21.513740px;}
.wsb8{word-spacing:21.562158px;}
.ws1c2{word-spacing:21.615956px;}
.ws20a{word-spacing:21.626716px;}
.wse4{word-spacing:21.777349px;}
.ws165{word-spacing:21.884945px;}
.ws100{word-spacing:21.890325px;}
.wse5{word-spacing:21.901084px;}
.ws119{word-spacing:21.911844px;}
.ws3d{word-spacing:21.992541px;}
.ws101{word-spacing:22.003300px;}
.ws140{word-spacing:22.030199px;}
.wsf4{word-spacing:22.040959px;}
.ws124{word-spacing:22.073237px;}
.ws11c{word-spacing:22.175453px;}
.ws15f{word-spacing:22.363745px;}
.wsf3{word-spacing:22.422923px;}
.ws231{word-spacing:22.460581px;}
.ws1f3{word-spacing:22.498240px;}
.ws1f2{word-spacing:22.514379px;}
.ws21c{word-spacing:22.519759px;}
.ws1f1{word-spacing:22.546658px;}
.ws61{word-spacing:22.616033px;}
.wsb9{word-spacing:22.659633px;}
.wsae{word-spacing:22.708051px;}
.ws1f0{word-spacing:22.718811px;}
.wsba{word-spacing:22.751090px;}
.wsd2{word-spacing:22.767229px;}
.ws34{word-spacing:22.815647px;}
.wsc1{word-spacing:22.971661px;}
.ws1e5{word-spacing:22.987800px;}
.ws35{word-spacing:23.025458px;}
.ws4e{word-spacing:23.090016px;}
.wsf{word-spacing:23.092857px;}
.ws4f{word-spacing:23.116915px;}
.ws1e7{word-spacing:23.176092px;}
.ws121{word-spacing:23.197611px;}
.ws1e6{word-spacing:23.219130px;}
.ws135{word-spacing:23.299827px;}
.ws134{word-spacing:23.337486px;}
.ws10{word-spacing:23.351092px;}
.wsac{word-spacing:23.385904px;}
.ws133{word-spacing:23.391283px;}
.ws112{word-spacing:23.449884px;}
.ws208{word-spacing:23.482740px;}
.ws243{word-spacing:23.505737px;}
.ws79{word-spacing:23.574773px;}
.wsad{word-spacing:23.633374px;}
.ws1d{word-spacing:23.644133px;}
.ws207{word-spacing:23.680676px;}
.ws142{word-spacing:23.730210px;}
.ws12f{word-spacing:23.743615px;}
.ws8c{word-spacing:23.864704px;}
.ws186{word-spacing:24.170631px;}
.ws1ca{word-spacing:24.424201px;}
.ws155{word-spacing:24.445720px;}
.ws85{word-spacing:24.499518px;}
.ws1e3{word-spacing:24.537177px;}
.ws1e2{word-spacing:24.564075px;}
.ws1e1{word-spacing:24.612494px;}
.ws17{word-spacing:24.698570px;}
.ws11d{word-spacing:24.752368px;}
.ws13e{word-spacing:25.010597px;}
.ws1a1{word-spacing:25.053635px;}
.ws13d{word-spacing:25.091294px;}
.ws137{word-spacing:25.241928px;}
.ws1c9{word-spacing:25.317245px;}
.wsf5{word-spacing:25.322624px;}
.ws196{word-spacing:25.430220px;}
.ws122{word-spacing:25.473258px;}
.ws195{word-spacing:25.521676px;}
.ws43{word-spacing:25.559335px;}
.ws99{word-spacing:25.769146px;}
.ws1cf{word-spacing:25.775165px;}
.ws10a{word-spacing:25.812184px;}
.ws22f{word-spacing:25.984337px;}
.ws114{word-spacing:26.038135px;}
.ws1a2{word-spacing:26.059654px;}
.ws16e{word-spacing:26.258706px;}
.ws16c{word-spacing:26.334023px;}
.ws198{word-spacing:26.360922px;}
.ws197{word-spacing:26.398580px;}
.ws16d{word-spacing:26.414720px;}
.ws1fa{word-spacing:26.629911px;}
.wse8{word-spacing:26.672949px;}
.ws19e{word-spacing:26.748266px;}
.ws51{word-spacing:26.785925px;}
.ws19d{word-spacing:26.802064px;}
.ws29{word-spacing:26.834343px;}
.ws171{word-spacing:26.845102px;}
.ws9d{word-spacing:26.882761px;}
.ws19c{word-spacing:26.947318px;}
.ws1a3{word-spacing:27.001116px;}
.ws1a4{word-spacing:27.081813px;}
.ws4b{word-spacing:27.383080px;}
.ws115{word-spacing:27.512195px;}
.ws91{word-spacing:27.867260px;}
.wsc8{word-spacing:27.931818px;}
.ws1c7{word-spacing:28.060932px;}
.ws9b{word-spacing:28.195427px;}
.ws1c6{word-spacing:28.222326px;}
.ws120{word-spacing:28.319162px;}
.ws11f{word-spacing:28.372960px;}
.ws190{word-spacing:28.781823px;}
.ws191{word-spacing:28.873279px;}
.ws23{word-spacing:28.937837px;}
.wse3{word-spacing:28.943216px;}
.wse2{word-spacing:29.002394px;}
.ws1{word-spacing:29.132492px;}
.wsd8{word-spacing:29.319801px;}
.ws210{word-spacing:29.384358px;}
.ws48{word-spacing:29.411257px;}
.ws0{word-spacing:29.428982px;}
.wsc4{word-spacing:29.475815px;}
.wsc2{word-spacing:29.750183px;}
.ws11b{word-spacing:29.814741px;}
.wsc3{word-spacing:29.825500px;}
.ws15{word-spacing:29.836260px;}
.ws9{word-spacing:30.017367px;}
.ws13{word-spacing:30.019172px;}
.ws23d{word-spacing:30.051451px;}
.wsb{word-spacing:30.098663px;}
.ws1d4{word-spacing:30.148287px;}
.ws20c{word-spacing:30.212844px;}
.ws16a{word-spacing:30.234364px;}
.ws169{word-spacing:30.288161px;}
.ws11a{word-spacing:30.481833px;}
.ws53{word-spacing:30.578670px;}
.wsef{word-spacing:30.594809px;}
.wsf0{word-spacing:30.686265px;}
.wsf1{word-spacing:30.783101px;}
.ws13f{word-spacing:30.863798px;}
.ws189{word-spacing:31.191964px;}
.ws188{word-spacing:31.272661px;}
.ws1e{word-spacing:31.428675px;}
.ws1cd{word-spacing:31.503992px;}
.wsd5{word-spacing:31.514751px;}
.ws1d2{word-spacing:31.563169px;}
.wsdb{word-spacing:31.595448px;}
.wsd4{word-spacing:31.772981px;}
.ws18f{word-spacing:31.875196px;}
.ws8d{word-spacing:31.982792px;}
.ws20b{word-spacing:32.187224px;}
.ws12{word-spacing:32.224882px;}
.ws102{word-spacing:32.300199px;}
.ws2a{word-spacing:32.515390px;}
.ws222{word-spacing:32.854316px;}
.ws3b{word-spacing:32.865076px;}
.ws38{word-spacing:33.225521px;}
.ws223{word-spacing:33.247040px;}
.ws156{word-spacing:33.257800px;}
.ws39{word-spacing:33.333117px;}
.ws23f{word-spacing:33.634385px;}
.ws214{word-spacing:33.806538px;}
.ws30{word-spacing:34.210021px;}
.wsf6{word-spacing:34.656543px;}
.wsa2{word-spacing:34.904013px;}
.ws123{word-spacing:34.914772px;}
.wsda{word-spacing:35.124584px;}
.ws1b7{word-spacing:35.382813px;}
.ws18{word-spacing:35.393573px;}
.ws1e0{word-spacing:35.495788px;}
.ws19{word-spacing:35.511928px;}
.ws15b{word-spacing:35.737879px;}
.ws117{word-spacing:36.302755px;}
.ws16b{word-spacing:37.093583px;}
.wsd1{word-spacing:37.330293px;}
.wsfc{word-spacing:37.604662px;}
.ws16{word-spacing:37.636941px;}
.ws152{word-spacing:37.717638px;}
.ws153{word-spacing:37.749916px;}
.ws154{word-spacing:37.997386px;}
.ws8b{word-spacing:38.024285px;}
.ws151{word-spacing:38.804353px;}
.wsa5{word-spacing:39.336951px;}
.ws3e{word-spacing:39.385369px;}
.ws146{word-spacing:40.100880px;}
.ws1d7{word-spacing:40.203096px;}
.ws1d6{word-spacing:40.251514px;}
.ws1d8{word-spacing:40.369869px;}
.ws1d9{word-spacing:40.450566px;}
.ws23e{word-spacing:42.177475px;}
.wsaf{word-spacing:43.135076px;}
.ws1cb{word-spacing:43.237292px;}
.ws229{word-spacing:48.945238px;}
.ws47{word-spacing:50.306323px;}
.ws57{word-spacing:58.854793px;}
.ws6f{word-spacing:60.981697px;}
._26{margin-left:-20.669115px;}
._25{margin-left:-16.871348px;}
._19{margin-left:-15.793891px;}
._1a{margin-left:-14.772887px;}
._17{margin-left:-9.772719px;}
._16{margin-left:-8.771611px;}
._18{margin-left:-2.994697px;}
._2{margin-left:-1.630703px;}
._0{width:1.171602px;}
._24{width:8.488263px;}
._8{width:10.818738px;}
._14{width:12.653243px;}
._1f{width:13.713059px;}
._4{width:14.757622px;}
._b{width:16.257695px;}
._11{width:17.586501px;}
._a{width:18.667837px;}
._20{width:19.776071px;}
._10{width:20.997281px;}
._c{width:22.428303px;}
._d{width:24.149832px;}
._6{width:25.844463px;}
._1c{width:27.237826px;}
._13{width:28.754924px;}
._9{width:30.175186px;}
._3{width:31.356361px;}
._5{width:33.306218px;}
._e{width:34.640403px;}
._27{width:35.657182px;}
._7{width:36.749277px;}
._1e{width:38.470807px;}
._f{width:40.585060px;}
._1d{width:44.259450px;}
._29{width:49.004416px;}
._28{width:50.214867px;}
._12{width:51.387659px;}
._15{width:60.393410px;}
._1{width:78.784249px;}
._1b{width:721.658182px;}
._23{width:723.071490px;}
._21{width:724.588758px;}
._22{width:2080.124216px;}
.fc1{color:rgb(48,59,65);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:21.914400px;}
.fs6{font-size:29.883000px;}
.fs4{font-size:31.876200px;}
.fs11{font-size:33.473400px;}
.fs7{font-size:35.860800px;}
.fsf{font-size:36.000000px;}
.fs10{font-size:37.657200px;}
.fs2{font-size:39.846000px;}
.fs9{font-size:41.842800px;}
.fsa{font-size:43.338000px;}
.fsb{font-size:44.830800px;}
.fs3{font-size:47.821200px;}
.fsd{font-size:48.000000px;}
.fs5{font-size:53.797800px;}
.fse{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fs12{font-size:83.685600px;}
.fs0{font-size:95.641800px;}
.fsc{font-size:125.530200px;}
.y0{bottom:0.000000px;}
.y76{bottom:3.000000px;}
.y6e{bottom:31.379400px;}
.y11c{bottom:31.379799px;}
.yfe{bottom:31.889700px;}
.y11a{bottom:78.916500px;}
.y68{bottom:80.786673px;}
.yfd{bottom:80.788078px;}
.y19b{bottom:80.788687px;}
.y1cc{bottom:80.790092px;}
.y11b{bottom:80.872350px;}
.y119{bottom:80.872510px;}
.y15a{bottom:80.872520px;}
.y56{bottom:90.992100px;}
.y54{bottom:90.992489px;}
.y118{bottom:93.798300px;}
.y67{bottom:95.753842px;}
.y117{bottom:95.839350px;}
.y159{bottom:95.839360px;}
.y55{bottom:96.009450px;}
.ybe{bottom:98.730989px;}
.y19a{bottom:98.731598px;}
.y1cb{bottom:98.733003px;}
.y52{bottom:106.724400px;}
.y53{bottom:108.935400px;}
.y51{bottom:108.936178px;}
.y158{bottom:110.806200px;}
.y66{bottom:112.166680px;}
.ybd{bottom:116.673900px;}
.y199{bottom:116.674509px;}
.y1ca{bottom:116.675914px;}
.yfb{bottom:116.677619px;}
.ybb{bottom:116.678856px;}
.ybc{bottom:121.691250px;}
.yfc{bottom:122.626800px;}
.y50{bottom:126.879089px;}
.y65{bottom:127.133850px;}
.y64{bottom:130.790400px;}
.y198{bottom:134.617420px;}
.y1c9{bottom:134.618825px;}
.yfa{bottom:134.620530px;}
.yba{bottom:134.621767px;}
.y63{bottom:143.546080px;}
.y4f{bottom:144.822000px;}
.y4d{bottom:144.824792px;}
.y4e{bottom:149.754300px;}
.y197{bottom:152.475600px;}
.y1c8{bottom:152.561737px;}
.yf9{bottom:152.563442px;}
.yb9{bottom:152.564678px;}
.y62{bottom:158.513250px;}
.y61{bottom:162.169950px;}
.y4c{bottom:162.767703px;}
.y196{bottom:168.207750px;}
.y1c7{bottom:170.419916px;}
.y195{bottom:170.420844px;}
.yf8{bottom:170.506353px;}
.yb8{bottom:170.507589px;}
.y60{bottom:174.925630px;}
.y4b{bottom:180.710614px;}
.y1c6{bottom:188.362828px;}
.y194{bottom:188.363755px;}
.yf7{bottom:188.449264px;}
.yb7{bottom:188.450501px;}
.y5f{bottom:189.892800px;}
.y5e{bottom:193.549650px;}
.y4a{bottom:198.568794px;}
.y5d{bottom:206.305180px;}
.y1c5{bottom:206.305739px;}
.y193{bottom:206.306666px;}
.yf6{bottom:206.392175px;}
.yb6{bottom:206.393412px;}
.y49{bottom:216.511705px;}
.y5c{bottom:221.272350px;}
.y192{bottom:224.249578px;}
.yf5{bottom:224.250355px;}
.yb5{bottom:224.251592px;}
.y1c4{bottom:224.257952px;}
.y5b{bottom:224.929050px;}
.y48{bottom:234.454616px;}
.y5a{bottom:237.684411px;}
.y191{bottom:242.192489px;}
.yf4{bottom:242.193266px;}
.yb4{bottom:242.194503px;}
.y1c3{bottom:242.200863px;}
.y47{bottom:252.397528px;}
.y59{bottom:252.651580px;}
.y190{bottom:260.135400px;}
.yf3{bottom:260.136178px;}
.yb3{bottom:260.137414px;}
.y1c2{bottom:260.143775px;}
.y58{bottom:267.618750px;}
.y46{bottom:270.340439px;}
.y57{bottom:271.275450px;}
.yf2{bottom:278.079089px;}
.yb2{bottom:278.080325px;}
.y1c1{bottom:278.086686px;}
.y45{bottom:288.283350px;}
.y18f{bottom:289.984200px;}
.yb1{bottom:296.023237px;}
.yf1{bottom:296.023625px;}
.y215{bottom:296.025180px;}
.y1ef{bottom:296.028749px;}
.y1c0{bottom:296.029597px;}
.y43{bottom:306.232383px;}
.y28{bottom:310.223550px;}
.y26{bottom:310.225105px;}
.y44{bottom:311.158950px;}
.y1bf{bottom:313.887777px;}
.yb0{bottom:313.966148px;}
.yf0{bottom:313.966537px;}
.y214{bottom:313.968092px;}
.y1ee{bottom:313.971661px;}
.y27{bottom:315.240900px;}
.y42{bottom:324.175294px;}
.y25{bottom:328.168016px;}
.y1be{bottom:331.830688px;}
.yaf{bottom:331.909059px;}
.yef{bottom:331.909448px;}
.y18e{bottom:331.911003px;}
.y1ed{bottom:331.914572px;}
.y41{bottom:342.033474px;}
.y24{bottom:346.110928px;}
.y1bd{bottom:349.773599px;}
.yae{bottom:349.851970px;}
.yee{bottom:349.852359px;}
.y18d{bottom:349.853914px;}
.y1ec{bottom:349.857483px;}
.y40{bottom:359.976385px;}
.y23{bottom:364.053839px;}
.yad{bottom:367.710150px;}
.yed{bottom:367.710539px;}
.y18c{bottom:367.712094px;}
.y1eb{bottom:367.715663px;}
.y1bc{bottom:367.716511px;}
.y3f{bottom:377.919297px;}
.y22{bottom:381.996750px;}
.yeb{bottom:383.442450px;}
.yec{bottom:385.653450px;}
.yea{bottom:385.654228px;}
.yab{bottom:385.654616px;}
.y18b{bottom:385.655005px;}
.y1ea{bottom:385.658574px;}
.y1bb{bottom:385.659422px;}
.yac{bottom:390.670800px;}
.y3e{bottom:395.862208px;}
.y20{bottom:399.855389px;}
.ye9{bottom:403.597139px;}
.yaa{bottom:403.597528px;}
.y18a{bottom:403.597916px;}
.y1e9{bottom:403.601485px;}
.y1ba{bottom:403.602333px;}
.y21{bottom:404.872350px;}
.y3d{bottom:413.805119px;}
.y1f{bottom:417.798300px;}
.y1d{bottom:417.798689px;}
.ye8{bottom:421.540050px;}
.ya9{bottom:421.540439px;}
.y189{bottom:421.540828px;}
.y1e8{bottom:421.544397px;}
.y1b9{bottom:421.545244px;}
.y1e{bottom:422.815650px;}
.y3c{bottom:431.748030px;}
.y1c{bottom:435.741600px;}
.y1a{bottom:435.743544px;}
.ya8{bottom:439.483350px;}
.y188{bottom:439.483739px;}
.ya6{bottom:439.484587px;}
.y1e7{bottom:439.487308px;}
.y1b8{bottom:439.488156px;}
.y1b{bottom:440.758950px;}
.ya7{bottom:444.500700px;}
.y3b{bottom:449.690942px;}
.y19{bottom:453.686455px;}
.y186{bottom:455.130600px;}
.y1b7{bottom:457.346335px;}
.y187{bottom:457.426650px;}
.y185{bottom:457.427039px;}
.ya5{bottom:457.427498px;}
.y1e6{bottom:457.430219px;}
.y213{bottom:457.435802px;}
.y3a{bottom:467.633853px;}
.y18{bottom:471.629366px;}
.y143{bottom:473.073900px;}
.y1b6{bottom:475.289247px;}
.y144{bottom:475.369950px;}
.ya4{bottom:475.370409px;}
.y142{bottom:475.370798px;}
.y183{bottom:475.371187px;}
.y1e5{bottom:475.373130px;}
.y212{bottom:475.378713px;}
.y72{bottom:475.980000px;}
.y184{bottom:481.322700px;}
.y157{bottom:483.110464px;}
.y39{bottom:485.492033px;}
.y17{bottom:489.572278px;}
.y1b5{bottom:493.232158px;}
.ya3{bottom:493.313320px;}
.y141{bottom:493.313709px;}
.y182{bottom:493.314098px;}
.y1e4{bottom:493.316042px;}
.y211{bottom:493.321625px;}
.y10a{bottom:498.246716px;}
.y156{bottom:501.053375px;}
.y38{bottom:503.434944px;}
.y16{bottom:507.515189px;}
.ye7{bottom:508.960500px;}
.ya2{bottom:511.171500px;}
.y140{bottom:511.171889px;}
.y181{bottom:511.172278px;}
.ya0{bottom:511.173055px;}
.y1e3{bottom:511.174221px;}
.ye6{bottom:511.174680px;}
.y1b4{bottom:511.175069px;}
.y210{bottom:511.179804px;}
.ya1{bottom:516.188850px;}
.y109{bottom:516.189628px;}
.y115{bottom:516.190405px;}
.y155{bottom:518.996287px;}
.y37{bottom:521.377855px;}
.y15{bottom:525.458100px;}
.y13{bottom:525.459725px;}
.y13e{bottom:526.903800px;}
.y13f{bottom:529.114800px;}
.y180{bottom:529.115189px;}
.y13d{bottom:529.115578px;}
.y9f{bottom:529.115966px;}
.y1e2{bottom:529.117133px;}
.ye5{bottom:529.117592px;}
.y1b3{bottom:529.117980px;}
.y20f{bottom:529.122716px;}
.y14{bottom:530.390400px;}
.y108{bottom:534.132539px;}
.y114{bottom:534.133316px;}
.y73{bottom:534.570000px;}
.y154{bottom:536.939198px;}
.y36{bottom:539.320766px;}
.y12{bottom:543.317905px;}
.y17f{bottom:547.058100px;}
.y13c{bottom:547.058489px;}
.y9e{bottom:547.058878px;}
.y17e{bottom:547.059266px;}
.y1e1{bottom:547.060044px;}
.ye4{bottom:547.060503px;}
.y1b2{bottom:547.060892px;}
.y20e{bottom:547.065627px;}
.y107{bottom:552.075450px;}
.y113{bottom:552.076228px;}
.y153{bottom:554.882109px;}
.y35{bottom:557.263678px;}
.y11{bottom:561.260816px;}
.y13b{bottom:565.001400px;}
.y9d{bottom:565.001789px;}
.y17d{bottom:565.002178px;}
.y1e0{bottom:565.002955px;}
.ye3{bottom:565.003414px;}
.y1b1{bottom:565.003803px;}
.y20d{bottom:565.008538px;}
.y112{bottom:570.019139px;}
.y105{bottom:570.019987px;}
.y152{bottom:572.825020px;}
.y106{bottom:574.951050px;}
.y34{bottom:575.206589px;}
.y10{bottom:579.203728px;}
.y9b{bottom:580.733700px;}
.y9c{bottom:582.944700px;}
.y17c{bottom:582.945089px;}
.y9a{bottom:582.945478px;}
.y13a{bottom:582.945866px;}
.ye2{bottom:582.946325px;}
.y1b0{bottom:582.946714px;}
.y20c{bottom:582.951449px;}
.y111{bottom:587.962050px;}
.y104{bottom:587.962898px;}
.y151{bottom:588.472200px;}
.y150{bottom:590.683200px;}
.y14e{bottom:590.683739px;}
.y33{bottom:593.149500px;}
.y14f{bottom:595.700550px;}
.yf{bottom:597.146639px;}
.y17a{bottom:598.591950px;}
.y1af{bottom:600.804894px;}
.y17b{bottom:600.888000px;}
.y99{bottom:600.888389px;}
.y139{bottom:600.888778px;}
.ye1{bottom:600.889237px;}
.y20b{bottom:600.894361px;}
.y110{bottom:603.609300px;}
.y10f{bottom:605.905350px;}
.y103{bottom:605.905809px;}
.y10d{bottom:605.908219px;}
.y14c{bottom:606.415500px;}
.y14d{bottom:608.626650px;}
.y14b{bottom:608.629790px;}
.y10e{bottom:610.837650px;}
.y31{bottom:611.097161px;}
.ye{bottom:615.089550px;}
.y32{bottom:616.024950px;}
.y179{bottom:616.535250px;}
.y1ae{bottom:618.747805px;}
.y98{bottom:618.831300px;}
.y138{bottom:618.831689px;}
.ye0{bottom:618.832148px;}
.y96{bottom:618.834480px;}
.y20a{bottom:618.837272px;}
.y97{bottom:623.763600px;}
.y102{bottom:623.763989px;}
.y10c{bottom:623.766398px;}
.y14a{bottom:626.572702px;}
.y30{bottom:628.955341px;}
.y178{bottom:634.478550px;}
.y1ad{bottom:636.690716px;}
.y137{bottom:636.774600px;}
.y177{bottom:636.774670px;}
.ydf{bottom:636.775059px;}
.y136{bottom:636.776375px;}
.y95{bottom:636.777392px;}
.y209{bottom:636.780183px;}
.y1df{bottom:636.783195px;}
.y101{bottom:641.706900px;}
.y10b{bottom:641.709310px;}
.y149{bottom:644.515613px;}
.y2f{bottom:646.898252px;}
.y175{bottom:652.421850px;}
.y176{bottom:654.632850px;}
.yde{bottom:654.633239px;}
.y1ac{bottom:654.633628px;}
.y135{bottom:654.634555px;}
.y94{bottom:654.635571px;}
.y208{bottom:654.638363px;}
.y1de{bottom:654.641375px;}
.y148{bottom:662.458524px;}
.yd{bottom:664.837240px;}
.y2e{bottom:664.841163px;}
.ydc{bottom:670.365150px;}
.ydd{bottom:672.576150px;}
.y1ab{bottom:672.576539px;}
.ydb{bottom:672.577466px;}
.y93{bottom:672.578483px;}
.y207{bottom:672.581274px;}
.y1dd{bottom:672.584286px;}
.y147{bottom:680.401435px;}
.yc{bottom:682.780950px;}
.y2d{bottom:682.784075px;}
.y74{bottom:687.735000px;}
.y1aa{bottom:690.519450px;}
.yda{bottom:690.520378px;}
.y92{bottom:690.521394px;}
.y206{bottom:690.524185px;}
.y1dc{bottom:690.527197px;}
.y116{bottom:696.897450px;}
.y146{bottom:698.344347px;}
.yb{bottom:698.683200px;}
.ya{bottom:700.723021px;}
.y2c{bottom:700.726986px;}
.yd9{bottom:708.463289px;}
.y91{bottom:708.464305px;}
.y205{bottom:708.467097px;}
.y1db{bottom:708.470108px;}
.y145{bottom:716.287258px;}
.y9{bottom:718.666730px;}
.y2b{bottom:718.669897px;}
.y1a9{bottom:720.368250px;}
.yd6{bottom:724.195050px;}
.yd7{bottom:726.406200px;}
.y134{bottom:726.406439px;}
.y90{bottom:726.407216px;}
.y204{bottom:726.410008px;}
.yd5{bottom:726.411006px;}
.y1da{bottom:726.413020px;}
.y174{bottom:731.423400px;}
.yd8{bottom:732.358800px;}
.y8{bottom:736.610440px;}
.y2a{bottom:736.612808px;}
.y132{bottom:742.053300px;}
.y133{bottom:744.349350px;}
.y131{bottom:744.349739px;}
.y8f{bottom:744.350128px;}
.y173{bottom:744.350587px;}
.y203{bottom:744.352919px;}
.yd4{bottom:744.353917px;}
.y1d9{bottom:744.355931px;}
.y7{bottom:754.554150px;}
.y29{bottom:754.555720px;}
.y130{bottom:762.292650px;}
.y8e{bottom:762.293039px;}
.y172{bottom:762.293498px;}
.y202{bottom:762.295830px;}
.yd3{bottom:762.296828px;}
.y1d8{bottom:762.298842px;}
.y164{bottom:771.392110px;}
.y1a8{bottom:774.200164px;}
.y12f{bottom:777.939900px;}
.y8d{bottom:780.235950px;}
.y171{bottom:780.236409px;}
.y201{bottom:780.238742px;}
.y12e{bottom:780.238812px;}
.yd2{bottom:780.239739px;}
.y8b{bottom:780.241683px;}
.y1d7{bottom:780.241753px;}
.y163{bottom:784.317900px;}
.y8c{bottom:785.168400px;}
.y162{bottom:786.358950px;}
.y160{bottom:786.358960px;}
.y161{bottom:791.631300px;}
.y1a7{bottom:792.143075px;}
.y6d{bottom:795.117767px;}
.y170{bottom:798.094589px;}
.y200{bottom:798.096921px;}
.y12d{bottom:798.096992px;}
.yd1{bottom:798.097919px;}
.y8a{bottom:798.099863px;}
.y1d6{bottom:798.099933px;}
.y15e{bottom:799.284900px;}
.y15d{bottom:801.325643px;}
.y15f{bottom:801.325800px;}
.y1a6{bottom:810.085987px;}
.y15c{bottom:814.251750px;}
.y16f{bottom:816.037500px;}
.y1ff{bottom:816.039833px;}
.y12c{bottom:816.039903px;}
.yd0{bottom:816.040830px;}
.y89{bottom:816.042774px;}
.y1d5{bottom:816.042844px;}
.y15b{bottom:816.207600px;}
.y16e{bottom:821.054850px;}
.y6c{bottom:821.990578px;}
.y1a5{bottom:828.028898px;}
.y1fe{bottom:833.982744px;}
.y12b{bottom:833.982814px;}
.ycf{bottom:833.983742px;}
.y88{bottom:833.985685px;}
.y1d4{bottom:833.985756px;}
.y1a4{bottom:845.887078px;}
.y6b{bottom:851.159219px;}
.y1fd{bottom:851.925655px;}
.y12a{bottom:851.925725px;}
.yce{bottom:851.926653px;}
.y87{bottom:851.928597px;}
.y1d3{bottom:851.928667px;}
.y1a3{bottom:863.829989px;}
.y6a{bottom:864.595082px;}
.y5{bottom:868.846950px;}
.y1fc{bottom:869.868566px;}
.y129{bottom:869.868637px;}
.ycd{bottom:869.869564px;}
.y86{bottom:869.871508px;}
.y1d2{bottom:869.871578px;}
.y6{bottom:875.480100px;}
.y1a2{bottom:881.772900px;}
.y3{bottom:886.705200px;}
.y1fb{bottom:887.811478px;}
.y128{bottom:887.811548px;}
.ycc{bottom:887.812475px;}
.y85{bottom:887.814419px;}
.y1d1{bottom:887.814489px;}
.y4{bottom:893.423400px;}
.y1fa{bottom:905.754389px;}
.y127{bottom:905.754459px;}
.ycb{bottom:905.755387px;}
.y84{bottom:905.757330px;}
.y1d0{bottom:905.757401px;}
.y1a1{bottom:911.706900px;}
.y69{bottom:912.897450px;}
.y2{bottom:921.827259px;}
.y126{bottom:923.697370px;}
.yca{bottom:923.698298px;}
.y83{bottom:923.700242px;}
.y1cf{bottom:923.700312px;}
.y1f9{bottom:923.710546px;}
.y124{bottom:939.344550px;}
.y125{bottom:941.555550px;}
.y16d{bottom:941.556089px;}
.yc9{bottom:941.556478px;}
.y82{bottom:941.558421px;}
.y1ce{bottom:941.558492px;}
.y1f8{bottom:941.568726px;}
.y1{bottom:948.783900px;}
.y16c{bottom:957.288000px;}
.y16b{bottom:959.499000px;}
.yc8{bottom:959.499389px;}
.y81{bottom:959.501333px;}
.y1cd{bottom:959.501403px;}
.y1f7{bottom:959.511637px;}
.y1a0{bottom:965.451750px;}
.y16a{bottom:975.231300px;}
.yc6{bottom:977.442300px;}
.y123{bottom:977.443705px;}
.y80{bottom:977.444244px;}
.y169{bottom:977.444314px;}
.y1f6{bottom:977.454548px;}
.yc7{bottom:983.395050px;}
.y19f{bottom:995.385450px;}
.y122{bottom:995.386616px;}
.y7f{bottom:995.387155px;}
.y168{bottom:995.387225px;}
.yc4{bottom:995.391026px;}
.y1f5{bottom:995.397460px;}
.y77{bottom:999.795000px;}
.yc5{bottom:1001.338200px;}
.y71{bottom:1006.865850px;}
.y121{bottom:1013.329528px;}
.y7e{bottom:1013.330066px;}
.y167{bottom:1013.330137px;}
.yc3{bottom:1013.333937px;}
.y1f4{bottom:1013.340371px;}
.y75{bottom:1014.795000px;}
.y120{bottom:1031.272439px;}
.y7d{bottom:1031.272978px;}
.y166{bottom:1031.273048px;}
.yc2{bottom:1031.276848px;}
.y1f3{bottom:1031.283282px;}
.y11e{bottom:1046.919450px;}
.y11f{bottom:1049.215350px;}
.y7c{bottom:1049.215889px;}
.y11d{bottom:1049.215959px;}
.yc1{bottom:1049.219760px;}
.y19e{bottom:1049.221714px;}
.y1f2{bottom:1049.226193px;}
.y70{bottom:1064.607738px;}
.y7a{bottom:1064.862600px;}
.y7b{bottom:1067.158800px;}
.y79{bottom:1067.158870px;}
.yc0{bottom:1067.162671px;}
.y19d{bottom:1067.164625px;}
.y1f1{bottom:1067.169105px;}
.y78{bottom:1085.017050px;}
.ybf{bottom:1085.020851px;}
.y19c{bottom:1085.022805px;}
.y1f0{bottom:1085.027284px;}
.y165{bottom:1090.034400px;}
.y6f{bottom:1095.987150px;}
.yff{bottom:1122.689550px;}
.y100{bottom:1142.295000px;}
.h1a{height:12.000000px;}
.h21{height:14.968036px;}
.hb{height:15.515395px;}
.h18{height:16.500000px;}
.h9{height:18.407928px;}
.h20{height:23.652140px;}
.h7{height:23.715893px;}
.ha{height:26.823878px;}
.h4{height:29.565732px;}
.hd{height:29.624702px;}
.hf{height:31.298414px;}
.hc{height:31.323520px;}
.he{height:31.666631px;}
.h11{height:32.156796px;}
.h10{height:32.243472px;}
.h1b{height:33.876000px;}
.h1f{height:35.483330px;}
.h6{height:35.578973px;}
.h22{height:35.773382px;}
.h12{height:35.774978px;}
.h1e{height:39.272394px;}
.h24{height:39.641084px;}
.h27{height:40.187770px;}
.h8{height:40.240754px;}
.h1c{height:42.623997px;}
.h26{height:42.962923px;}
.h3{height:44.353495px;}
.h1d{height:44.462194px;}
.h23{height:44.467140px;}
.h15{height:47.109375px;}
.h19{height:50.814000px;}
.h5{height:51.837295px;}
.h25{height:62.262086px;}
.h2{height:69.053380px;}
.h13{height:91.637046px;}
.h16{height:152.310000px;}
.h17{height:343.635000px;}
.h14{height:434.640000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w2{width:15.000000px;}
.w5{width:52.620000px;}
.w4{width:55.605000px;}
.w6{width:82.860000px;}
.w3{width:124.290000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:4.500000px;}
.x2b{left:12.000000px;}
.x2c{left:21.000000px;}
.x28{left:61.654951px;}
.xc{left:63.779550px;}
.x21{left:67.011000px;}
.x29{left:77.215800px;}
.x14{left:81.722850px;}
.xab{left:82.998814px;}
.xa6{left:84.358950px;}
.x10{left:88.270800px;}
.xa7{left:89.631450px;}
.x90{left:91.077150px;}
.x3b{left:94.138500px;}
.x15{left:97.540050px;}
.x11{left:106.639350px;}
.x91{left:117.864600px;}
.x60{left:119.905500px;}
.x16{left:123.562200px;}
.x61{left:124.922850px;}
.x67{left:131.130600px;}
.x68{left:136.403100px;}
.xe{left:142.696050px;}
.xac{left:154.431450px;}
.x25{left:156.047430px;}
.x22{left:157.492917px;}
.xf{left:160.554300px;}
.x6b{left:162.510150px;}
.x99{left:166.932300px;}
.x75{left:168.122850px;}
.x39{left:171.354300px;}
.x8e{left:177.222000px;}
.x76{left:182.494350px;}
.x3a{left:185.216368px;}
.x77{left:187.766850px;}
.x8f{left:189.807750px;}
.x9b{left:196.270800px;}
.x6c{left:197.376300px;}
.x69{left:204.009450px;}
.x9d{left:205.285050px;}
.x6d{left:206.305500px;}
.x6a{left:209.281800px;}
.x9e{left:215.404650px;}
.x9c{left:220.166850px;}
.x9f{left:222.292800px;}
.x6e{left:224.248800px;}
.x26{left:226.375762px;}
.x23{left:229.691622px;}
.x62{left:233.688150px;}
.x6f{left:234.708600px;}
.x37{left:237.089700px;}
.x63{left:238.960500px;}
.xa0{left:240.151050px;}
.x65{left:244.658250px;}
.x32{left:249.335400px;}
.x38{left:251.716500px;}
.x70{left:255.373200px;}
.x8d{left:257.073900px;}
.x1{left:259.369950px;}
.x33{left:262.091250px;}
.x66{left:264.557400px;}
.x71{left:271.615650px;}
.x36{left:279.269250px;}
.x27{left:286.583367px;}
.x24{left:292.705833px;}
.x72{left:296.107050px;}
.x96{left:297.552750px;}
.x73{left:299.593650px;}
.x34{left:306.736950px;}
.xa1{left:309.288150px;}
.x97{left:312.774750px;}
.x64{left:317.707050px;}
.xa2{left:319.407750px;}
.x13{left:321.193650px;}
.x98{left:322.299150px;}
.x9a{left:325.190400px;}
.xa3{left:326.211000px;}
.x35{left:331.653450px;}
.x78{left:333.864450px;}
.x79{left:339.136950px;}
.x74{left:341.518050px;}
.x92{left:344.749500px;}
.x7a{left:354.444000px;}
.x2e{left:355.804650px;}
.x93{left:360.056550px;}
.x7b{left:363.713250px;}
.x2f{left:365.329050px;}
.x12{left:366.434550px;}
.x94{left:368.900700px;}
.x2{left:380.721150px;}
.x95{left:383.017200px;}
.xa4{left:386.503800px;}
.xa5{left:391.776300px;}
.x3{left:397.644000px;}
.x51{left:416.522700px;}
.x55{left:421.965300px;}
.x56{left:426.982500px;}
.x30{left:429.023550px;}
.xd{left:432.935250px;}
.x31{left:434.295900px;}
.x9{left:436.421850px;}
.xa{left:447.221850px;}
.x17{left:454.962028px;}
.xa8{left:460.828200px;}
.x3e{left:461.848650px;}
.x57{left:467.376300px;}
.x19{left:472.903800px;}
.xa9{left:474.178124px;}
.x3f{left:480.047100px;}
.x84{left:483.363600px;}
.x52{left:489.826650px;}
.x58{left:498.670650px;}
.x53{left:502.327350px;}
.x59{left:503.688000px;}
.x48{left:520.100700px;}
.x18{left:524.522700px;}
.x4{left:545.272350px;}
.x5{left:555.987300px;}
.x43{left:566.021850px;}
.x88{left:574.610850px;}
.x5a{left:575.631300px;}
.x44{left:576.821850px;}
.x5b{left:580.733700px;}
.xad{left:587.195490px;}
.x89{left:590.002950px;}
.xb{left:594.084900px;}
.x3c{left:595.447922px;}
.x8a{left:596.976150px;}
.x40{left:599.017200px;}
.x41{left:603.013950px;}
.x7f{left:608.796750px;}
.x42{left:618.746250px;}
.x1a{left:626.740050px;}
.xaa{left:628.101681px;}
.x80{left:637.795050px;}
.x8b{left:650.721150px;}
.x82{left:651.741600px;}
.x1b{left:656.248650px;}
.x8c{left:660.160500px;}
.x6{left:661.521000px;}
.x5c{left:668.919600px;}
.x5d{left:673.936800px;}
.x7{left:678.103800px;}
.x49{left:679.804500px;}
.x1c{left:682.695900px;}
.x4a{left:689.754150px;}
.x4b{left:696.642300px;}
.x4c{left:714.330450px;}
.x83{left:721.218750px;}
.x85{left:724.620300px;}
.x7c{left:726.406200px;}
.x45{left:727.766700px;}
.x7d{left:731.678550px;}
.x46{left:733.039200px;}
.x2d{left:736.050000px;}
.x5e{left:738.396750px;}
.x1d{left:742.903650px;}
.x50{left:745.545000px;}
.x7e{left:746.985600px;}
.x86{left:748.771500px;}
.x1e{left:752.513250px;}
.x87{left:758.721000px;}
.x81{left:764.588700px;}
.x1f{left:765.694200px;}
.x4d{left:768.500550px;}
.x20{left:778.960350px;}
.x4e{left:785.338350px;}
.x8{left:791.461350px;}
.x54{left:796.988850px;}
.x4f{left:803.111550px;}
.x5f{left:815.782500px;}
.x47{left:820.374600px;}
.x3d{left:823.861200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.510060pt;}
.v5{vertical-align:2.419705pt;}
.v1{vertical-align:6.652267pt;}
.v4{vertical-align:15.420267pt;}
.v3{vertical-align:17.228888pt;}
.ls17{letter-spacing:-7.855401pt;}
.ls18{letter-spacing:-7.810768pt;}
.ls32{letter-spacing:-1.390751pt;}
.ls33{letter-spacing:-1.304987pt;}
.ls12{letter-spacing:-1.296486pt;}
.ls3d{letter-spacing:-1.283734pt;}
.ls31{letter-spacing:-1.239323pt;}
.ls13{letter-spacing:-1.227368pt;}
.ls24{letter-spacing:-1.207443pt;}
.ls21{letter-spacing:-1.195488pt;}
.ls11{letter-spacing:-1.190350pt;}
.lsd{letter-spacing:-1.151828pt;}
.ls16{letter-spacing:-1.123759pt;}
.ls20{letter-spacing:-1.107819pt;}
.ls3c{letter-spacing:-1.091879pt;}
.ls22{letter-spacing:-1.067969pt;}
.lse{letter-spacing:-1.028555pt;}
.lsc{letter-spacing:-0.002656pt;}
.lsb{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.003719pt;}
.ls23{letter-spacing:0.004251pt;}
.ls35{letter-spacing:0.029755pt;}
.ls1{letter-spacing:0.038256pt;}
.ls19{letter-spacing:0.066948pt;}
.ls0{letter-spacing:0.071730pt;}
.ls2{letter-spacing:0.143461pt;}
.ls3{letter-spacing:0.175314pt;}
.ls1f{letter-spacing:0.178507pt;}
.ls1e{letter-spacing:0.200845pt;}
.ls8{letter-spacing:0.212004pt;}
.ls38{letter-spacing:0.229537pt;}
.ls4{letter-spacing:0.267793pt;}
.ls1c{letter-spacing:0.277358pt;}
.ls6{letter-spacing:0.301268pt;}
.ls26{letter-spacing:2.614400pt;}
.ls1d{letter-spacing:2.614933pt;}
.ls2e{letter-spacing:2.660000pt;}
.lsf{letter-spacing:6.514183pt;}
.ls10{letter-spacing:6.818512pt;}
.ls30{letter-spacing:11.821401pt;}
.ls15{letter-spacing:12.644278pt;}
.ls14{letter-spacing:12.947135pt;}
.ls27{letter-spacing:13.394457pt;}
.ls9{letter-spacing:13.452925pt;}
.ls25{letter-spacing:14.279132pt;}
.ls39{letter-spacing:14.303042pt;}
.ls3b{letter-spacing:14.604309pt;}
.ls2f{letter-spacing:15.647097pt;}
.ls34{letter-spacing:15.924149pt;}
.ls5{letter-spacing:15.991097pt;}
.ls1b{letter-spacing:16.091520pt;}
.ls1a{letter-spacing:16.909246pt;}
.ls29{letter-spacing:17.435269pt;}
.ls2d{letter-spacing:17.462177pt;}
.ls2c{letter-spacing:17.712972pt;}
.ls2a{letter-spacing:17.729976pt;}
.ls2b{letter-spacing:17.763982pt;}
.ls3a{letter-spacing:18.372546pt;}
.lsa{letter-spacing:18.737282pt;}
.ls28{letter-spacing:33.765890pt;}
.ls36{letter-spacing:35.750431pt;}
.ls37{letter-spacing:35.755213pt;}
.ws201{word-spacing:-14.652130pt;}
.ws1fc{word-spacing:-14.350862pt;}
.ws14b{word-spacing:-13.442277pt;}
.ws7b{word-spacing:-12.986985pt;}
.ws7d{word-spacing:-12.684128pt;}
.ws74{word-spacing:-6.857035pt;}
.ws72{word-spacing:-6.552706pt;}
.ws1df{word-spacing:-4.820283pt;}
.ws7f{word-spacing:-0.085015pt;}
.ws1ce{word-spacing:-0.074387pt;}
.ws14{word-spacing:-0.047820pt;}
.wsa{word-spacing:-0.042508pt;}
.ws64{word-spacing:-0.040913pt;}
.ws7c{word-spacing:-0.039850pt;}
.ws73{word-spacing:-0.038523pt;}
.ws63{word-spacing:-0.037194pt;}
.wsce{word-spacing:-0.031876pt;}
.ws181{word-spacing:-0.028334pt;}
.ws1b{word-spacing:-0.026563pt;}
.ws2b{word-spacing:-0.023906pt;}
.ws80{word-spacing:0.000000pt;}
.ws78{word-spacing:1.151828pt;}
.ws244{word-spacing:1.241226pt;}
.ws187{word-spacing:1.262480pt;}
.ws6b{word-spacing:7.647004pt;}
.ws6d{word-spacing:7.836692pt;}
.ws6c{word-spacing:7.951992pt;}
.ws128{word-spacing:8.173153pt;}
.ws6a{word-spacing:8.175153pt;}
.ws12a{word-spacing:8.497296pt;}
.ws12c{word-spacing:8.535553pt;}
.ws71{word-spacing:8.571293pt;}
.ws177{word-spacing:8.590813pt;}
.ws176{word-spacing:8.671578pt;}
.ws12d{word-spacing:8.692831pt;}
.ws12e{word-spacing:8.748092pt;}
.ws12b{word-spacing:8.845859pt;}
.ws70{word-spacing:8.894884pt;}
.ws129{word-spacing:8.973383pt;}
.ws1c0{word-spacing:9.315388pt;}
.ws19b{word-spacing:9.449285pt;}
.wseb{word-spacing:9.540143pt;}
.wse0{word-spacing:9.559271pt;}
.wsee{word-spacing:9.583181pt;}
.wsab{word-spacing:9.602310pt;}
.ws1fe{word-spacing:9.616656pt;}
.wsfd{word-spacing:9.683604pt;}
.ws1ff{word-spacing:9.717078pt;}
.wsdf{word-spacing:9.774463pt;}
.ws240{word-spacing:9.932269pt;}
.wsc0{word-spacing:9.994436pt;}
.ws242{word-spacing:10.018346pt;}
.ws166{word-spacing:10.037474pt;}
.ws23c{word-spacing:10.042256pt;}
.ws23b{word-spacing:10.056602pt;}
.ws22{word-spacing:10.080512pt;}
.ws1da{word-spacing:10.085294pt;}
.ws1e9{word-spacing:10.123550pt;}
.ws131{word-spacing:10.142679pt;}
.ws97{word-spacing:10.161807pt;}
.ws92{word-spacing:10.209627pt;}
.ws168{word-spacing:10.214409pt;}
.ws96{word-spacing:10.247883pt;}
.ws109{word-spacing:10.267011pt;}
.ws1aa{word-spacing:10.286139pt;}
.ws4d{word-spacing:10.295703pt;}
.ws241{word-spacing:10.305267pt;}
.ws1ab{word-spacing:10.314832pt;}
.ws1dc{word-spacing:10.324396pt;}
.ws167{word-spacing:10.338742pt;}
.ws8{word-spacing:10.342132pt;}
.ws1db{word-spacing:10.381780pt;}
.ws20f{word-spacing:10.386562pt;}
.wsa6{word-spacing:10.396126pt;}
.ws67{word-spacing:10.414208pt;}
.ws50{word-spacing:10.448728pt;}
.ws221{word-spacing:10.458292pt;}
.ws21e{word-spacing:10.467856pt;}
.ws21{word-spacing:10.477420pt;}
.ws108{word-spacing:10.534805pt;}
.ws234{word-spacing:10.553933pt;}
.wscc{word-spacing:10.592189pt;}
.ws206{word-spacing:10.644791pt;}
.wsb5{word-spacing:10.706958pt;}
.wsa7{word-spacing:10.730868pt;}
.wsb6{word-spacing:10.745214pt;}
.ws13a{word-spacing:10.788252pt;}
.ws13b{word-spacing:10.812162pt;}
.wsd7{word-spacing:10.850419pt;}
.ws104{word-spacing:10.893457pt;}
.wsd6{word-spacing:10.907803pt;}
.ws21f{word-spacing:10.950841pt;}
.ws1c5{word-spacing:10.955623pt;}
.ws68{word-spacing:11.039060pt;}
.ws6e{word-spacing:11.079973pt;}
.ws1c4{word-spacing:11.084738pt;}
.ws5e{word-spacing:11.087412pt;}
.ws62{word-spacing:11.117167pt;}
.wse1{word-spacing:11.151686pt;}
.ws1fb{word-spacing:11.194724pt;}
.ws69{word-spacing:11.213870pt;}
.ws238{word-spacing:11.228199pt;}
.ws66{word-spacing:11.232467pt;}
.ws5c{word-spacing:11.262222pt;}
.ws5d{word-spacing:11.277100pt;}
.wsa8{word-spacing:11.304711pt;}
.ws14d{word-spacing:11.319057pt;}
.ws236{word-spacing:11.333403pt;}
.ws14e{word-spacing:11.352531pt;}
.ws65{word-spacing:11.358925pt;}
.ws235{word-spacing:11.362095pt;}
.ws14f{word-spacing:11.419480pt;}
.ws22e{word-spacing:11.457736pt;}
.ws5b{word-spacing:11.500261pt;}
.ws76{word-spacing:11.545243pt;}
.ws3c{word-spacing:11.567723pt;}
.ws239{word-spacing:11.596415pt;}
.ws60{word-spacing:11.604403pt;}
.ws17e{word-spacing:11.630116pt;}
.ws77{word-spacing:11.641550pt;}
.ws75{word-spacing:11.680073pt;}
.ws2f{word-spacing:11.687273pt;}
.ws237{word-spacing:11.696837pt;}
.ws180{word-spacing:11.753388pt;}
.ws11{word-spacing:11.757639pt;}
.ws172{word-spacing:11.759004pt;}
.wscd{word-spacing:11.802042pt;}
.ws22d{word-spacing:11.969413pt;}
.ws24{word-spacing:12.022015pt;}
.ws89{word-spacing:12.060271pt;}
.ws125{word-spacing:12.106308pt;}
.ws202{word-spacing:12.198950pt;}
.ws211{word-spacing:12.304155pt;}
.wsf7{word-spacing:12.323283pt;}
.ws170{word-spacing:12.332847pt;}
.ws178{word-spacing:12.352747pt;}
.ws184{word-spacing:12.361249pt;}
.ws3a{word-spacing:12.361539pt;}
.ws127{word-spacing:12.386753pt;}
.ws173{word-spacing:12.405180pt;}
.ws16f{word-spacing:12.414141pt;}
.ws213{word-spacing:12.438051pt;}
.ws175{word-spacing:12.450515pt;}
.ws81{word-spacing:12.457179pt;}
.ws212{word-spacing:12.481090pt;}
.ws1ea{word-spacing:12.505000pt;}
.ws126{word-spacing:12.539781pt;}
.ws141{word-spacing:12.562384pt;}
.ws174{word-spacing:12.612044pt;}
.ws193{word-spacing:12.624550pt;}
.ws192{word-spacing:12.634114pt;}
.wsa4{word-spacing:12.667589pt;}
.ws179{word-spacing:12.692809pt;}
.wsa1{word-spacing:12.705845pt;}
.wsa3{word-spacing:12.724973pt;}
.ws1f7{word-spacing:12.739319pt;}
.ws1f8{word-spacing:12.744101pt;}
.ws4c{word-spacing:12.748883pt;}
.ws1f5{word-spacing:12.844524pt;}
.ws36{word-spacing:12.887562pt;}
.wsbd{word-spacing:12.897126pt;}
.ws1f6{word-spacing:12.940164pt;}
.ws1ee{word-spacing:12.973638pt;}
.ws227{word-spacing:12.997548pt;}
.ws217{word-spacing:13.011895pt;}
.ws228{word-spacing:13.045369pt;}
.ws20{word-spacing:13.155355pt;}
.ws11e{word-spacing:13.160137pt;}
.ws18b{word-spacing:13.169701pt;}
.ws86{word-spacing:13.174483pt;}
.ws14c{word-spacing:13.184048pt;}
.ws1f{word-spacing:13.227086pt;}
.ws2d{word-spacing:13.274906pt;}
.ws136{word-spacing:13.332290pt;}
.ws98{word-spacing:13.791365pt;}
.wse9{word-spacing:13.915698pt;}
.ws93{word-spacing:13.920480pt;}
.ws144{word-spacing:13.939608pt;}
.ws106{word-spacing:13.968300pt;}
.ws145{word-spacing:13.987428pt;}
.ws1d1{word-spacing:14.016120pt;}
.wse{word-spacing:14.057307pt;}
.ws15d{word-spacing:14.073504pt;}
.ws10f{word-spacing:14.092633pt;}
.ws105{word-spacing:14.126107pt;}
.ws1d0{word-spacing:14.135671pt;}
.ws13c{word-spacing:14.140453pt;}
.ws1b6{word-spacing:14.150017pt;}
.ws15e{word-spacing:14.173927pt;}
.ws94{word-spacing:14.178709pt;}
.wsea{word-spacing:14.183491pt;}
.ws4a{word-spacing:14.197837pt;}
.ws1fd{word-spacing:14.216965pt;}
.wsd9{word-spacing:14.231311pt;}
.ws1dd{word-spacing:14.255221pt;}
.ws1b5{word-spacing:14.264786pt;}
.ws1e8{word-spacing:14.274350pt;}
.ws203{word-spacing:14.283914pt;}
.ws9a{word-spacing:14.288696pt;}
.ws23a{word-spacing:14.293478pt;}
.ws1eb{word-spacing:14.298260pt;}
.ws216{word-spacing:14.303042pt;}
.ws233{word-spacing:14.307824pt;}
.ws20e{word-spacing:14.312606pt;}
.ws215{word-spacing:14.317388pt;}
.ws37{word-spacing:14.322170pt;}
.ws1be{word-spacing:14.326952pt;}
.wsf9{word-spacing:14.336516pt;}
.ws132{word-spacing:14.350862pt;}
.ws116{word-spacing:14.369990pt;}
.wsb0{word-spacing:14.374772pt;}
.ws20d{word-spacing:14.384336pt;}
.ws219{word-spacing:14.389118pt;}
.ws15c{word-spacing:14.393900pt;}
.ws204{word-spacing:14.408246pt;}
.ws8e{word-spacing:14.417810pt;}
.ws25{word-spacing:14.436939pt;}
.wsf8{word-spacing:14.441721pt;}
.ws1de{word-spacing:14.446503pt;}
.ws218{word-spacing:14.451285pt;}
.ws113{word-spacing:14.465631pt;}
.ws1b1{word-spacing:14.479977pt;}
.ws205{word-spacing:14.508669pt;}
.ws232{word-spacing:14.523015pt;}
.ws1ed{word-spacing:14.556489pt;}
.ws1f4{word-spacing:14.566053pt;}
.ws230{word-spacing:14.575617pt;}
.ws1ec{word-spacing:14.609091pt;}
.ws21d{word-spacing:14.613873pt;}
.ws1e4{word-spacing:14.618656pt;}
.ws40{word-spacing:14.633002pt;}
.ws1b4{word-spacing:14.661694pt;}
.ws2e{word-spacing:14.685604pt;}
.ws1af{word-spacing:14.699950pt;}
.ws1b3{word-spacing:14.709514pt;}
.ws200{word-spacing:14.719078pt;}
.ws18a{word-spacing:14.766898pt;}
.ws1b2{word-spacing:14.781244pt;}
.ws103{word-spacing:14.819501pt;}
.ws83{word-spacing:14.824283pt;}
.ws18e{word-spacing:14.833847pt;}
.ws118{word-spacing:14.886449pt;}
.ws87{word-spacing:14.900795pt;}
.ws1b0{word-spacing:14.905577pt;}
.ws110{word-spacing:14.923675pt;}
.ws1a5{word-spacing:14.924705pt;}
.ws111{word-spacing:14.931645pt;}
.ws7e{word-spacing:14.955555pt;}
.ws82{word-spacing:15.001218pt;}
.ws1a6{word-spacing:15.034692pt;}
.ws95{word-spacing:15.044256pt;}
.ws183{word-spacing:15.077493pt;}
.ws150{word-spacing:15.077730pt;}
.wsc5{word-spacing:15.082512pt;}
.ws138{word-spacing:15.111204pt;}
.ws17f{word-spacing:15.120001pt;}
.ws22a{word-spacing:15.125550pt;}
.ws22b{word-spacing:15.159025pt;}
.ws139{word-spacing:15.182935pt;}
.ws90{word-spacing:15.202063pt;}
.ws88{word-spacing:15.245101pt;}
.ws130{word-spacing:15.258412pt;}
.wsdc{word-spacing:15.283357pt;}
.ws58{word-spacing:15.288139pt;}
.ws7a{word-spacing:15.298261pt;}
.ws46{word-spacing:15.307267pt;}
.ws185{word-spacing:15.322171pt;}
.ws21b{word-spacing:15.359870pt;}
.ws1c1{word-spacing:15.388562pt;}
.ws26{word-spacing:15.431600pt;}
.wsff{word-spacing:15.450728pt;}
.ws182{word-spacing:15.464313pt;}
.ws21a{word-spacing:15.498548pt;}
.ws1ae{word-spacing:15.551151pt;}
.ws49{word-spacing:15.603753pt;}
.ws10b{word-spacing:15.608535pt;}
.ws1ac{word-spacing:15.637227pt;}
.wsbb{word-spacing:15.661137pt;}
.ws1ad{word-spacing:15.718522pt;}
.ws59{word-spacing:15.756778pt;}
.ws45{word-spacing:15.833290pt;}
.ws44{word-spacing:15.852418pt;}
.ws33{word-spacing:15.890675pt;}
.wsbf{word-spacing:15.919367pt;}
.wsca{word-spacing:15.928931pt;}
.ws5a{word-spacing:15.952841pt;}
.wsc9{word-spacing:15.986315pt;}
.wse6{word-spacing:16.034135pt;}
.ws19f{word-spacing:16.067610pt;}
.wse7{word-spacing:16.081956pt;}
.ws2c{word-spacing:16.153686pt;}
.ws52{word-spacing:16.163250pt;}
.wsb4{word-spacing:16.187160pt;}
.wsb3{word-spacing:16.211070pt;}
.wsfe{word-spacing:16.220634pt;}
.wsbe{word-spacing:16.254109pt;}
.wsc{word-spacing:16.259208pt;}
.wsd3{word-spacing:16.292365pt;}
.wscb{word-spacing:16.297147pt;}
.ws6{word-spacing:16.375858pt;}
.ws18d{word-spacing:16.421480pt;}
.ws226{word-spacing:16.431044pt;}
.ws22c{word-spacing:16.435826pt;}
.ws18c{word-spacing:16.440608pt;}
.ws8a{word-spacing:16.493210pt;}
.ws10e{word-spacing:16.512338pt;}
.ws10c{word-spacing:16.531466pt;}
.ws2{word-spacing:16.556513pt;}
.wsb1{word-spacing:16.598415pt;}
.ws107{word-spacing:16.636671pt;}
.ws10d{word-spacing:16.665363pt;}
.wsde{word-spacing:16.674927pt;}
.ws3{word-spacing:16.689348pt;}
.ws7{word-spacing:16.710601pt;}
.ws1cc{word-spacing:16.713183pt;}
.wsdd{word-spacing:16.732311pt;}
.ws209{word-spacing:16.737093pt;}
.ws4{word-spacing:16.779675pt;}
.ws5{word-spacing:16.790302pt;}
.ws15a{word-spacing:16.813606pt;}
.wsa9{word-spacing:16.899682pt;}
.wsd{word-spacing:16.960586pt;}
.ws159{word-spacing:17.081399pt;}
.ws1b8{word-spacing:17.138784pt;}
.ws1a9{word-spacing:17.143566pt;}
.ws1ba{word-spacing:17.148348pt;}
.wsaa{word-spacing:17.162694pt;}
.ws1a7{word-spacing:17.224860pt;}
.ws161{word-spacing:17.229642pt;}
.ws1bd{word-spacing:17.239206pt;}
.ws1b9{word-spacing:17.243988pt;}
.ws157{word-spacing:17.253552pt;}
.ws1bb{word-spacing:17.272680pt;}
.ws158{word-spacing:17.296590pt;}
.ws1a8{word-spacing:17.344411pt;}
.ws1bc{word-spacing:17.358757pt;}
.ws17b{word-spacing:17.385663pt;}
.wsf2{word-spacing:17.420923pt;}
.ws5f{word-spacing:17.436360pt;}
.ws1c8{word-spacing:17.463961pt;}
.ws17c{word-spacing:17.469459pt;}
.ws160{word-spacing:17.526128pt;}
.ws54{word-spacing:17.564384pt;}
.ws162{word-spacing:17.597858pt;}
.ws3f{word-spacing:17.626550pt;}
.ws17a{word-spacing:17.627957pt;}
.ws17d{word-spacing:17.632208pt;}
.ws224{word-spacing:17.640896pt;}
.ws55{word-spacing:17.655242pt;}
.ws1bf{word-spacing:17.669589pt;}
.ws1ef{word-spacing:17.712627pt;}
.ws8f{word-spacing:17.770011pt;}
.ws56{word-spacing:17.779575pt;}
.wsb2{word-spacing:17.803485pt;}
.ws42{word-spacing:17.817831pt;}
.ws225{word-spacing:17.846524pt;}
.ws41{word-spacing:17.884780pt;}
.ws148{word-spacing:17.894344pt;}
.ws220{word-spacing:17.946946pt;}
.ws147{word-spacing:17.961292pt;}
.ws1a{word-spacing:18.009112pt;}
.wsc6{word-spacing:18.023459pt;}
.ws1c{word-spacing:18.047369pt;}
.wsc7{word-spacing:18.056933pt;}
.ws9c{word-spacing:18.071279pt;}
.ws84{word-spacing:18.109535pt;}
.wsd0{word-spacing:18.267342pt;}
.wsa0{word-spacing:18.300816pt;}
.ws194{word-spacing:18.324726pt;}
.wsed{word-spacing:18.339072pt;}
.ws9e{word-spacing:18.362982pt;}
.ws9f{word-spacing:18.453841pt;}
.wscf{word-spacing:18.463405pt;}
.ws14a{word-spacing:18.472969pt;}
.ws163{word-spacing:18.511225pt;}
.ws1f9{word-spacing:18.554263pt;}
.ws27{word-spacing:18.559045pt;}
.ws28{word-spacing:18.616430pt;}
.ws164{word-spacing:18.640340pt;}
.ws199{word-spacing:18.683378pt;}
.ws1c3{word-spacing:18.712070pt;}
.ws19a{word-spacing:18.740763pt;}
.wsec{word-spacing:18.755109pt;}
.ws149{word-spacing:18.782430pt;}
.wsfa{word-spacing:18.826839pt;}
.wsfb{word-spacing:18.865095pt;}
.ws32{word-spacing:18.912915pt;}
.wsb7{word-spacing:18.932044pt;}
.ws1d3{word-spacing:18.965518pt;}
.ws143{word-spacing:18.975082pt;}
.ws31{word-spacing:19.022902pt;}
.ws1a0{word-spacing:19.037248pt;}
.wsbc{word-spacing:19.104197pt;}
.ws1d5{word-spacing:19.123325pt;}
.wsb8{word-spacing:19.166363pt;}
.ws1c2{word-spacing:19.214183pt;}
.ws20a{word-spacing:19.223747pt;}
.wse4{word-spacing:19.357644pt;}
.ws165{word-spacing:19.453284pt;}
.ws100{word-spacing:19.458067pt;}
.wse5{word-spacing:19.467631pt;}
.ws119{word-spacing:19.477195pt;}
.ws3d{word-spacing:19.548925pt;}
.ws101{word-spacing:19.558489pt;}
.ws140{word-spacing:19.582399pt;}
.wsf4{word-spacing:19.591963pt;}
.ws124{word-spacing:19.620655pt;}
.ws11c{word-spacing:19.711514pt;}
.ws15f{word-spacing:19.878885pt;}
.wsf3{word-spacing:19.931487pt;}
.ws231{word-spacing:19.964961pt;}
.ws1f3{word-spacing:19.998436pt;}
.ws1f2{word-spacing:20.012782pt;}
.ws21c{word-spacing:20.017564pt;}
.ws1f1{word-spacing:20.041474pt;}
.ws61{word-spacing:20.103141pt;}
.wsb9{word-spacing:20.141896pt;}
.wsae{word-spacing:20.184935pt;}
.ws1f0{word-spacing:20.194499pt;}
.wsba{word-spacing:20.223191pt;}
.wsd2{word-spacing:20.237537pt;}
.ws34{word-spacing:20.280575pt;}
.wsc1{word-spacing:20.419254pt;}
.ws1e5{word-spacing:20.433600pt;}
.ws35{word-spacing:20.467074pt;}
.ws4e{word-spacing:20.524458pt;}
.wsf{word-spacing:20.526984pt;}
.ws4f{word-spacing:20.548369pt;}
.ws1e7{word-spacing:20.600971pt;}
.ws121{word-spacing:20.620099pt;}
.ws1e6{word-spacing:20.639227pt;}
.ws135{word-spacing:20.710957pt;}
.ws134{word-spacing:20.744432pt;}
.ws10{word-spacing:20.756526pt;}
.wsac{word-spacing:20.787470pt;}
.ws133{word-spacing:20.792252pt;}
.ws112{word-spacing:20.844341pt;}
.ws208{word-spacing:20.873546pt;}
.ws243{word-spacing:20.893988pt;}
.ws79{word-spacing:20.955354pt;}
.wsad{word-spacing:21.007443pt;}
.ws1d{word-spacing:21.017007pt;}
.ws207{word-spacing:21.049490pt;}
.ws142{word-spacing:21.093520pt;}
.ws12f{word-spacing:21.105436pt;}
.ws8c{word-spacing:21.213070pt;}
.ws186{word-spacing:21.485006pt;}
.ws1ca{word-spacing:21.710401pt;}
.ws155{word-spacing:21.729529pt;}
.ws85{word-spacing:21.777349pt;}
.ws1e3{word-spacing:21.810824pt;}
.ws1e2{word-spacing:21.834734pt;}
.ws1e1{word-spacing:21.877772pt;}
.ws17{word-spacing:21.954284pt;}
.ws11d{word-spacing:22.002105pt;}
.ws13e{word-spacing:22.231642pt;}
.ws1a1{word-spacing:22.269898pt;}
.ws13d{word-spacing:22.303372pt;}
.ws137{word-spacing:22.437269pt;}
.ws1c9{word-spacing:22.504217pt;}
.wsf5{word-spacing:22.509000pt;}
.ws196{word-spacing:22.604640pt;}
.ws122{word-spacing:22.642896pt;}
.ws195{word-spacing:22.685935pt;}
.ws43{word-spacing:22.719409pt;}
.ws99{word-spacing:22.905908pt;}
.ws1cf{word-spacing:22.911258pt;}
.ws10a{word-spacing:22.944164pt;}
.ws22f{word-spacing:23.097189pt;}
.ws114{word-spacing:23.145009pt;}
.ws1a2{word-spacing:23.164137pt;}
.ws16e{word-spacing:23.341072pt;}
.ws16c{word-spacing:23.408021pt;}
.ws198{word-spacing:23.431931pt;}
.ws197{word-spacing:23.465405pt;}
.ws16d{word-spacing:23.479751pt;}
.ws1fa{word-spacing:23.671032pt;}
.wse8{word-spacing:23.709288pt;}
.ws19e{word-spacing:23.776237pt;}
.ws51{word-spacing:23.809711pt;}
.ws19d{word-spacing:23.824057pt;}
.ws29{word-spacing:23.852749pt;}
.ws171{word-spacing:23.862313pt;}
.ws9d{word-spacing:23.895787pt;}
.ws19c{word-spacing:23.953172pt;}
.ws1a3{word-spacing:24.000992pt;}
.ws1a4{word-spacing:24.072722pt;}
.ws4b{word-spacing:24.340516pt;}
.ws115{word-spacing:24.455284pt;}
.ws91{word-spacing:24.770898pt;}
.wsc8{word-spacing:24.828282pt;}
.ws1c7{word-spacing:24.943051pt;}
.ws9b{word-spacing:25.062602pt;}
.ws1c6{word-spacing:25.086512pt;}
.ws120{word-spacing:25.172588pt;}
.ws11f{word-spacing:25.220409pt;}
.ws190{word-spacing:25.583843pt;}
.ws191{word-spacing:25.665137pt;}
.ws23{word-spacing:25.722521pt;}
.wse3{word-spacing:25.727303pt;}
.wse2{word-spacing:25.779906pt;}
.ws1{word-spacing:25.895549pt;}
.wsd8{word-spacing:26.062045pt;}
.ws210{word-spacing:26.119430pt;}
.ws48{word-spacing:26.143340pt;}
.ws0{word-spacing:26.159095pt;}
.wsc4{word-spacing:26.200724pt;}
.wsc2{word-spacing:26.444607pt;}
.ws11b{word-spacing:26.501992pt;}
.wsc3{word-spacing:26.511556pt;}
.ws15{word-spacing:26.521120pt;}
.ws9{word-spacing:26.682104pt;}
.ws13{word-spacing:26.683709pt;}
.ws23d{word-spacing:26.712401pt;}
.wsb{word-spacing:26.754367pt;}
.ws1d4{word-spacing:26.798477pt;}
.ws20c{word-spacing:26.855862pt;}
.ws16a{word-spacing:26.874990pt;}
.ws169{word-spacing:26.922810pt;}
.ws11a{word-spacing:27.094963pt;}
.ws53{word-spacing:27.181040pt;}
.wsef{word-spacing:27.195386pt;}
.wsf0{word-spacing:27.276680pt;}
.wsf1{word-spacing:27.362757pt;}
.ws13f{word-spacing:27.434487pt;}
.ws189{word-spacing:27.726191pt;}
.ws188{word-spacing:27.797921pt;}
.ws1e{word-spacing:27.936600pt;}
.ws1cd{word-spacing:28.003548pt;}
.wsd5{word-spacing:28.013112pt;}
.ws1d2{word-spacing:28.056150pt;}
.wsdb{word-spacing:28.084843pt;}
.wsd4{word-spacing:28.242649pt;}
.ws18f{word-spacing:28.333508pt;}
.ws8d{word-spacing:28.429149pt;}
.ws20b{word-spacing:28.610866pt;}
.ws12{word-spacing:28.644340pt;}
.ws102{word-spacing:28.711288pt;}
.ws2a{word-spacing:28.902569pt;}
.ws222{word-spacing:29.203837pt;}
.ws3b{word-spacing:29.213401pt;}
.ws38{word-spacing:29.533797pt;}
.ws223{word-spacing:29.552925pt;}
.ws156{word-spacing:29.562489pt;}
.ws39{word-spacing:29.629437pt;}
.ws23f{word-spacing:29.897231pt;}
.ws214{word-spacing:30.050256pt;}
.ws30{word-spacing:30.408908pt;}
.wsf6{word-spacing:30.805816pt;}
.wsa2{word-spacing:31.025789pt;}
.ws123{word-spacing:31.035353pt;}
.wsda{word-spacing:31.221852pt;}
.ws1b7{word-spacing:31.451389pt;}
.ws18{word-spacing:31.460953pt;}
.ws1e0{word-spacing:31.551812pt;}
.ws19{word-spacing:31.566158pt;}
.ws15b{word-spacing:31.767003pt;}
.ws117{word-spacing:32.269116pt;}
.ws16b{word-spacing:32.972074pt;}
.wsd1{word-spacing:33.182483pt;}
.wsfc{word-spacing:33.426366pt;}
.ws16{word-spacing:33.455059pt;}
.ws152{word-spacing:33.526789pt;}
.ws153{word-spacing:33.555481pt;}
.ws154{word-spacing:33.775454pt;}
.ws8b{word-spacing:33.799364pt;}
.ws151{word-spacing:34.492758pt;}
.wsa5{word-spacing:34.966179pt;}
.ws3e{word-spacing:35.009217pt;}
.ws146{word-spacing:35.645227pt;}
.ws1d7{word-spacing:35.736085pt;}
.ws1d6{word-spacing:35.779124pt;}
.ws1d8{word-spacing:35.884328pt;}
.ws1d9{word-spacing:35.956059pt;}
.ws23e{word-spacing:37.491089pt;}
.wsaf{word-spacing:38.342290pt;}
.ws1cb{word-spacing:38.433148pt;}
.ws229{word-spacing:43.506879pt;}
.ws47{word-spacing:44.716731pt;}
.ws57{word-spacing:52.315372pt;}
.ws6f{word-spacing:54.205953pt;}
._26{margin-left:-18.372546pt;}
._25{margin-left:-14.996754pt;}
._19{margin-left:-14.039014pt;}
._1a{margin-left:-13.131455pt;}
._17{margin-left:-8.686861pt;}
._16{margin-left:-7.796988pt;}
._18{margin-left:-2.661953pt;}
._2{margin-left:-1.449514pt;}
._0{width:1.041424pt;}
._24{width:7.545123pt;}
._8{width:9.616656pt;}
._14{width:11.247327pt;}
._1f{width:12.189386pt;}
._4{width:13.117887pt;}
._b{width:14.451285pt;}
._11{width:15.632445pt;}
._a{width:16.593633pt;}
._20{width:17.578730pt;}
._10{width:18.664250pt;}
._c{width:19.936269pt;}
._d{width:21.466518pt;}
._6{width:22.972856pt;}
._1c{width:24.211401pt;}
._13{width:25.559933pt;}
._9{width:26.822388pt;}
._3{width:27.872321pt;}
._5{width:29.605527pt;}
._e{width:30.791470pt;}
._27{width:31.695273pt;}
._7{width:32.666024pt;}
._1e{width:34.196273pt;}
._f{width:36.075609pt;}
._1d{width:39.341733pt;}
._29{width:43.559481pt;}
._28{width:44.635437pt;}
._12{width:45.677919pt;}
._15{width:53.683031pt;}
._1{width:70.030444pt;}
._1b{width:641.473939pt;}
._23{width:642.730213pt;}
._21{width:644.078896pt;}
._22{width:1848.999303pt;}
.fs8{font-size:19.479467pt;}
.fs6{font-size:26.562667pt;}
.fs4{font-size:28.334400pt;}
.fs11{font-size:29.754133pt;}
.fs7{font-size:31.876267pt;}
.fsf{font-size:32.000000pt;}
.fs10{font-size:33.473067pt;}
.fs2{font-size:35.418667pt;}
.fs9{font-size:37.193600pt;}
.fsa{font-size:38.522667pt;}
.fsb{font-size:39.849600pt;}
.fs3{font-size:42.507733pt;}
.fsd{font-size:42.666667pt;}
.fs5{font-size:47.820267pt;}
.fse{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fs12{font-size:74.387200pt;}
.fs0{font-size:85.014933pt;}
.fsc{font-size:111.582400pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:2.666667pt;}
.y6e{bottom:27.892800pt;}
.y11c{bottom:27.893155pt;}
.yfe{bottom:28.346400pt;}
.y11a{bottom:70.148000pt;}
.y68{bottom:71.810376pt;}
.yfd{bottom:71.811624pt;}
.y19b{bottom:71.812166pt;}
.y1cc{bottom:71.813415pt;}
.y11b{bottom:71.886533pt;}
.y119{bottom:71.886675pt;}
.y15a{bottom:71.886684pt;}
.y56{bottom:80.881867pt;}
.y54{bottom:80.882212pt;}
.y118{bottom:83.376267pt;}
.y67{bottom:85.114526pt;}
.y117{bottom:85.190533pt;}
.y159{bottom:85.190542pt;}
.y55{bottom:85.341733pt;}
.ybe{bottom:87.760879pt;}
.y19a{bottom:87.761420pt;}
.y1cb{bottom:87.762669pt;}
.y52{bottom:94.866133pt;}
.y53{bottom:96.831467pt;}
.y51{bottom:96.832158pt;}
.y158{bottom:98.494400pt;}
.y66{bottom:99.703716pt;}
.ybd{bottom:103.710133pt;}
.y199{bottom:103.710675pt;}
.y1ca{bottom:103.711924pt;}
.yfb{bottom:103.713439pt;}
.ybb{bottom:103.714538pt;}
.ybc{bottom:108.170000pt;}
.yfc{bottom:109.001600pt;}
.y50{bottom:112.781412pt;}
.y65{bottom:113.007867pt;}
.y64{bottom:116.258133pt;}
.y198{bottom:119.659929pt;}
.y1c9{bottom:119.661178pt;}
.yfa{bottom:119.662694pt;}
.yba{bottom:119.663793pt;}
.y63{bottom:127.596516pt;}
.y4f{bottom:128.730667pt;}
.y4d{bottom:128.733148pt;}
.y4e{bottom:133.114933pt;}
.y197{bottom:135.533867pt;}
.y1c8{bottom:135.610432pt;}
.yf9{bottom:135.611948pt;}
.yb9{bottom:135.613047pt;}
.y62{bottom:140.900667pt;}
.y61{bottom:144.151067pt;}
.y4c{bottom:144.682403pt;}
.y196{bottom:149.518000pt;}
.y1c7{bottom:151.484370pt;}
.y195{bottom:151.485194pt;}
.yf8{bottom:151.561203pt;}
.yb8{bottom:151.562302pt;}
.y60{bottom:155.489449pt;}
.y4b{bottom:160.631657pt;}
.y1c6{bottom:167.433624pt;}
.y194{bottom:167.434449pt;}
.yf7{bottom:167.510457pt;}
.yb7{bottom:167.511556pt;}
.y5f{bottom:168.793600pt;}
.y5e{bottom:172.044133pt;}
.y4a{bottom:176.505594pt;}
.y5d{bottom:183.382383pt;}
.y1c5{bottom:183.382879pt;}
.y193{bottom:183.383703pt;}
.yf6{bottom:183.459711pt;}
.yb6{bottom:183.460811pt;}
.y49{bottom:192.454849pt;}
.y5c{bottom:196.686533pt;}
.y192{bottom:199.332958pt;}
.yf5{bottom:199.333649pt;}
.yb5{bottom:199.334748pt;}
.y1c4{bottom:199.340402pt;}
.y5b{bottom:199.936933pt;}
.y48{bottom:208.404103pt;}
.y5a{bottom:211.275032pt;}
.y191{bottom:215.282212pt;}
.yf4{bottom:215.282903pt;}
.yb4{bottom:215.284003pt;}
.y1c3{bottom:215.289656pt;}
.y47{bottom:224.353358pt;}
.y59{bottom:224.579183pt;}
.y190{bottom:231.231467pt;}
.yf3{bottom:231.232158pt;}
.yb3{bottom:231.233257pt;}
.y1c2{bottom:231.238911pt;}
.y58{bottom:237.883333pt;}
.y46{bottom:240.302612pt;}
.y57{bottom:241.133733pt;}
.yf2{bottom:247.181412pt;}
.yb2{bottom:247.182511pt;}
.y1c1{bottom:247.188165pt;}
.y45{bottom:256.251867pt;}
.y18f{bottom:257.763733pt;}
.yb1{bottom:263.131766pt;}
.yf1{bottom:263.132111pt;}
.y215{bottom:263.133494pt;}
.y1ef{bottom:263.136666pt;}
.y1c0{bottom:263.137420pt;}
.y43{bottom:272.206563pt;}
.y28{bottom:275.754267pt;}
.y26{bottom:275.755649pt;}
.y44{bottom:276.585733pt;}
.y1bf{bottom:279.011357pt;}
.yb0{bottom:279.081020pt;}
.yf0{bottom:279.081366pt;}
.y214{bottom:279.082748pt;}
.y1ee{bottom:279.085921pt;}
.y27{bottom:280.214133pt;}
.y42{bottom:288.155817pt;}
.y25{bottom:291.704903pt;}
.y1be{bottom:294.960612pt;}
.yaf{bottom:295.030275pt;}
.yef{bottom:295.030620pt;}
.y18e{bottom:295.032003pt;}
.y1ed{bottom:295.035175pt;}
.y41{bottom:304.029755pt;}
.y24{bottom:307.654158pt;}
.y1bd{bottom:310.909866pt;}
.yae{bottom:310.979529pt;}
.yee{bottom:310.979875pt;}
.y18d{bottom:310.981257pt;}
.y1ec{bottom:310.984429pt;}
.y40{bottom:319.979009pt;}
.y23{bottom:323.603412pt;}
.yad{bottom:326.853467pt;}
.yed{bottom:326.853812pt;}
.y18c{bottom:326.855194pt;}
.y1eb{bottom:326.858367pt;}
.y1bc{bottom:326.859121pt;}
.y3f{bottom:335.928264pt;}
.y22{bottom:339.552667pt;}
.yeb{bottom:340.837733pt;}
.yec{bottom:342.803067pt;}
.yea{bottom:342.803758pt;}
.yab{bottom:342.804103pt;}
.y18b{bottom:342.804449pt;}
.y1ea{bottom:342.807621pt;}
.y1bb{bottom:342.808375pt;}
.yac{bottom:347.262933pt;}
.y3e{bottom:351.877518pt;}
.y20{bottom:355.427012pt;}
.ye9{bottom:358.753012pt;}
.yaa{bottom:358.753358pt;}
.y18a{bottom:358.753703pt;}
.y1e9{bottom:358.756876pt;}
.y1ba{bottom:358.757629pt;}
.y21{bottom:359.886533pt;}
.y3d{bottom:367.826773pt;}
.y1f{bottom:371.376267pt;}
.y1d{bottom:371.376612pt;}
.ye8{bottom:374.702267pt;}
.ya9{bottom:374.702612pt;}
.y189{bottom:374.702958pt;}
.y1e8{bottom:374.706130pt;}
.y1b9{bottom:374.706884pt;}
.y1e{bottom:375.836133pt;}
.y3c{bottom:383.776027pt;}
.y1c{bottom:387.325867pt;}
.y1a{bottom:387.327594pt;}
.ya8{bottom:390.651867pt;}
.y188{bottom:390.652212pt;}
.ya6{bottom:390.652966pt;}
.y1e7{bottom:390.655385pt;}
.y1b8{bottom:390.656138pt;}
.y1b{bottom:391.785733pt;}
.ya7{bottom:395.111733pt;}
.y3b{bottom:399.725281pt;}
.y19{bottom:403.276849pt;}
.y186{bottom:404.560533pt;}
.y1b7{bottom:406.530076pt;}
.y187{bottom:406.601467pt;}
.y185{bottom:406.601812pt;}
.ya5{bottom:406.602220pt;}
.y1e6{bottom:406.604639pt;}
.y213{bottom:406.609602pt;}
.y3a{bottom:415.674536pt;}
.y18{bottom:419.226103pt;}
.y143{bottom:420.510133pt;}
.y1b6{bottom:422.479330pt;}
.y144{bottom:422.551067pt;}
.ya4{bottom:422.551475pt;}
.y142{bottom:422.551820pt;}
.y183{bottom:422.552166pt;}
.y1e5{bottom:422.553894pt;}
.y212{bottom:422.558856pt;}
.y72{bottom:423.093333pt;}
.y184{bottom:427.842400pt;}
.y157{bottom:429.431524pt;}
.y39{bottom:431.548473pt;}
.y17{bottom:435.175358pt;}
.y1b5{bottom:438.428585pt;}
.ya3{bottom:438.500729pt;}
.y141{bottom:438.501075pt;}
.y182{bottom:438.501420pt;}
.y1e4{bottom:438.503148pt;}
.y211{bottom:438.508111pt;}
.y10a{bottom:442.885970pt;}
.y156{bottom:445.380778pt;}
.y38{bottom:447.497728pt;}
.y16{bottom:451.124612pt;}
.ye7{bottom:452.409333pt;}
.ya2{bottom:454.374667pt;}
.y140{bottom:454.375012pt;}
.y181{bottom:454.375358pt;}
.ya0{bottom:454.376049pt;}
.y1e3{bottom:454.377086pt;}
.ye6{bottom:454.377494pt;}
.y1b4{bottom:454.377839pt;}
.y210{bottom:454.382048pt;}
.ya1{bottom:458.834533pt;}
.y109{bottom:458.835224pt;}
.y115{bottom:458.835916pt;}
.y155{bottom:461.330032pt;}
.y37{bottom:463.446982pt;}
.y15{bottom:467.073867pt;}
.y13{bottom:467.075311pt;}
.y13e{bottom:468.358933pt;}
.y13f{bottom:470.324267pt;}
.y180{bottom:470.324612pt;}
.y13d{bottom:470.324958pt;}
.y9f{bottom:470.325303pt;}
.y1e2{bottom:470.326340pt;}
.ye5{bottom:470.326748pt;}
.y1b3{bottom:470.327094pt;}
.y20f{bottom:470.331303pt;}
.y14{bottom:471.458133pt;}
.y108{bottom:474.784479pt;}
.y114{bottom:474.785170pt;}
.y73{bottom:475.173333pt;}
.y154{bottom:477.279287pt;}
.y36{bottom:479.396237pt;}
.y12{bottom:482.949249pt;}
.y17f{bottom:486.273867pt;}
.y13c{bottom:486.274212pt;}
.y9e{bottom:486.274558pt;}
.y17e{bottom:486.274903pt;}
.y1e1{bottom:486.275594pt;}
.ye4{bottom:486.276003pt;}
.y1b2{bottom:486.276348pt;}
.y20e{bottom:486.280557pt;}
.y107{bottom:490.733733pt;}
.y113{bottom:490.734424pt;}
.y153{bottom:493.228541pt;}
.y35{bottom:495.345491pt;}
.y11{bottom:498.898503pt;}
.y13b{bottom:502.223467pt;}
.y9d{bottom:502.223812pt;}
.y17d{bottom:502.224158pt;}
.y1e0{bottom:502.224849pt;}
.ye3{bottom:502.225257pt;}
.y1b1{bottom:502.225603pt;}
.y20d{bottom:502.229812pt;}
.y112{bottom:506.683679pt;}
.y105{bottom:506.684432pt;}
.y152{bottom:509.177796pt;}
.y106{bottom:511.067600pt;}
.y34{bottom:511.294746pt;}
.y10{bottom:514.847758pt;}
.y9b{bottom:516.207733pt;}
.y9c{bottom:518.173067pt;}
.y17c{bottom:518.173412pt;}
.y9a{bottom:518.173758pt;}
.y13a{bottom:518.174103pt;}
.ye2{bottom:518.174511pt;}
.y1b0{bottom:518.174857pt;}
.y20c{bottom:518.179066pt;}
.y111{bottom:522.632933pt;}
.y104{bottom:522.633687pt;}
.y151{bottom:523.086400pt;}
.y150{bottom:525.051733pt;}
.y14e{bottom:525.052212pt;}
.y33{bottom:527.244000pt;}
.y14f{bottom:529.511600pt;}
.yf{bottom:530.797012pt;}
.y17a{bottom:532.081733pt;}
.y1af{bottom:534.048794pt;}
.y17b{bottom:534.122667pt;}
.y99{bottom:534.123012pt;}
.y139{bottom:534.123358pt;}
.ye1{bottom:534.123766pt;}
.y20b{bottom:534.128321pt;}
.y110{bottom:536.541600pt;}
.y10f{bottom:538.582533pt;}
.y103{bottom:538.582941pt;}
.y10d{bottom:538.585083pt;}
.y14c{bottom:539.036000pt;}
.y14d{bottom:541.001467pt;}
.y14b{bottom:541.004258pt;}
.y10e{bottom:542.966800pt;}
.y31{bottom:543.197477pt;}
.ye{bottom:546.746267pt;}
.y32{bottom:547.577733pt;}
.y179{bottom:548.031333pt;}
.y1ae{bottom:549.998049pt;}
.y98{bottom:550.072267pt;}
.y138{bottom:550.072612pt;}
.ye0{bottom:550.073020pt;}
.y96{bottom:550.075094pt;}
.y20a{bottom:550.077575pt;}
.y97{bottom:554.456533pt;}
.y102{bottom:554.456879pt;}
.y10c{bottom:554.459021pt;}
.y14a{bottom:556.953513pt;}
.y30{bottom:559.071414pt;}
.y178{bottom:563.980933pt;}
.y1ad{bottom:565.947303pt;}
.y137{bottom:566.021867pt;}
.y177{bottom:566.021929pt;}
.ydf{bottom:566.022275pt;}
.y136{bottom:566.023445pt;}
.y95{bottom:566.024348pt;}
.y209{bottom:566.026829pt;}
.y1df{bottom:566.029507pt;}
.y101{bottom:570.406133pt;}
.y10b{bottom:570.408275pt;}
.y149{bottom:572.902767pt;}
.y2f{bottom:575.020669pt;}
.y175{bottom:579.930533pt;}
.y176{bottom:581.895867pt;}
.yde{bottom:581.896212pt;}
.y1ac{bottom:581.896558pt;}
.y135{bottom:581.897382pt;}
.y94{bottom:581.898286pt;}
.y208{bottom:581.900767pt;}
.y1de{bottom:581.903444pt;}
.y148{bottom:588.852022pt;}
.yd{bottom:590.966436pt;}
.y2e{bottom:590.969923pt;}
.ydc{bottom:595.880133pt;}
.ydd{bottom:597.845467pt;}
.y1ab{bottom:597.845812pt;}
.ydb{bottom:597.846637pt;}
.y93{bottom:597.847540pt;}
.y207{bottom:597.850021pt;}
.y1dd{bottom:597.852699pt;}
.y147{bottom:604.801276pt;}
.yc{bottom:606.916400pt;}
.y2d{bottom:606.919177pt;}
.y74{bottom:611.320000pt;}
.y1aa{bottom:613.795067pt;}
.yda{bottom:613.795891pt;}
.y92{bottom:613.796794pt;}
.y206{bottom:613.799276pt;}
.y1dc{bottom:613.801953pt;}
.y116{bottom:619.464400pt;}
.y146{bottom:620.750530pt;}
.yb{bottom:621.051733pt;}
.ya{bottom:622.864907pt;}
.y2c{bottom:622.868432pt;}
.yd9{bottom:629.745146pt;}
.y91{bottom:629.746049pt;}
.y205{bottom:629.748530pt;}
.y1db{bottom:629.751208pt;}
.y145{bottom:636.699785pt;}
.y9{bottom:638.814872pt;}
.y2b{bottom:638.817686pt;}
.y1a9{bottom:640.327333pt;}
.yd6{bottom:643.728933pt;}
.yd7{bottom:645.694400pt;}
.y134{bottom:645.694612pt;}
.y90{bottom:645.695303pt;}
.y204{bottom:645.697785pt;}
.yd5{bottom:645.698672pt;}
.y1da{bottom:645.700462pt;}
.y174{bottom:650.154133pt;}
.yd8{bottom:650.985600pt;}
.y8{bottom:654.764836pt;}
.y2a{bottom:654.766941pt;}
.y132{bottom:659.602933pt;}
.y133{bottom:661.643867pt;}
.y131{bottom:661.644212pt;}
.y8f{bottom:661.644558pt;}
.y173{bottom:661.644966pt;}
.y203{bottom:661.647039pt;}
.yd4{bottom:661.647926pt;}
.y1d9{bottom:661.649716pt;}
.y7{bottom:670.714800pt;}
.y29{bottom:670.716195pt;}
.y130{bottom:677.593467pt;}
.y8e{bottom:677.593812pt;}
.y172{bottom:677.594220pt;}
.y202{bottom:677.596294pt;}
.yd3{bottom:677.597181pt;}
.y1d8{bottom:677.598971pt;}
.y164{bottom:685.681875pt;}
.y1a8{bottom:688.177924pt;}
.y12f{bottom:691.502133pt;}
.y8d{bottom:693.543067pt;}
.y171{bottom:693.543475pt;}
.y201{bottom:693.545548pt;}
.y12e{bottom:693.545611pt;}
.yd2{bottom:693.546435pt;}
.y8b{bottom:693.548163pt;}
.y1d7{bottom:693.548225pt;}
.y163{bottom:697.171467pt;}
.y8c{bottom:697.927467pt;}
.y162{bottom:698.985733pt;}
.y160{bottom:698.985742pt;}
.y161{bottom:703.672267pt;}
.y1a7{bottom:704.127178pt;}
.y6d{bottom:706.771349pt;}
.y170{bottom:709.417412pt;}
.y200{bottom:709.419486pt;}
.y12d{bottom:709.419548pt;}
.yd1{bottom:709.420373pt;}
.y8a{bottom:709.422100pt;}
.y1d6{bottom:709.422163pt;}
.y15e{bottom:710.475467pt;}
.y15d{bottom:712.289460pt;}
.y15f{bottom:712.289600pt;}
.y1a6{bottom:720.076432pt;}
.y15c{bottom:723.779333pt;}
.y16f{bottom:725.366667pt;}
.y1ff{bottom:725.368740pt;}
.y12c{bottom:725.368803pt;}
.yd0{bottom:725.369627pt;}
.y89{bottom:725.371355pt;}
.y1d5{bottom:725.371417pt;}
.y15b{bottom:725.517867pt;}
.y16e{bottom:729.826533pt;}
.y6c{bottom:730.658291pt;}
.y1a5{bottom:736.025687pt;}
.y1fe{bottom:741.317994pt;}
.y12b{bottom:741.318057pt;}
.ycf{bottom:741.318881pt;}
.y88{bottom:741.320609pt;}
.y1d4{bottom:741.320672pt;}
.y1a4{bottom:751.899624pt;}
.y6b{bottom:756.585972pt;}
.y1fd{bottom:757.267249pt;}
.y12a{bottom:757.267311pt;}
.yce{bottom:757.268136pt;}
.y87{bottom:757.269864pt;}
.y1d3{bottom:757.269926pt;}
.y1a3{bottom:767.848879pt;}
.y6a{bottom:768.528962pt;}
.y5{bottom:772.308400pt;}
.y1fc{bottom:773.216503pt;}
.y129{bottom:773.216566pt;}
.ycd{bottom:773.217390pt;}
.y86{bottom:773.219118pt;}
.y1d2{bottom:773.219181pt;}
.y6{bottom:778.204533pt;}
.y1a2{bottom:783.798133pt;}
.y3{bottom:788.182400pt;}
.y1fb{bottom:789.165758pt;}
.y128{bottom:789.165820pt;}
.ycc{bottom:789.166645pt;}
.y85{bottom:789.168373pt;}
.y1d1{bottom:789.168435pt;}
.y4{bottom:794.154133pt;}
.y1fa{bottom:805.115012pt;}
.y127{bottom:805.115075pt;}
.ycb{bottom:805.115899pt;}
.y84{bottom:805.117627pt;}
.y1d0{bottom:805.117689pt;}
.y1a1{bottom:810.406133pt;}
.y69{bottom:811.464400pt;}
.y2{bottom:819.402008pt;}
.y126{bottom:821.064329pt;}
.yca{bottom:821.065154pt;}
.y83{bottom:821.066881pt;}
.y1cf{bottom:821.066944pt;}
.y1f9{bottom:821.076041pt;}
.y124{bottom:834.972933pt;}
.y125{bottom:836.938267pt;}
.y16d{bottom:836.938746pt;}
.yc9{bottom:836.939091pt;}
.y82{bottom:836.940819pt;}
.y1ce{bottom:836.940881pt;}
.y1f8{bottom:836.949978pt;}
.y1{bottom:843.363467pt;}
.y16c{bottom:850.922667pt;}
.y16b{bottom:852.888000pt;}
.yc8{bottom:852.888346pt;}
.y81{bottom:852.890073pt;}
.y1cd{bottom:852.890136pt;}
.y1f7{bottom:852.899233pt;}
.y1a0{bottom:858.179333pt;}
.y16a{bottom:866.872267pt;}
.yc6{bottom:868.837600pt;}
.y123{bottom:868.838849pt;}
.y80{bottom:868.839328pt;}
.y169{bottom:868.839390pt;}
.y1f6{bottom:868.848487pt;}
.yc7{bottom:874.128933pt;}
.y19f{bottom:884.787067pt;}
.y122{bottom:884.788103pt;}
.y7f{bottom:884.788582pt;}
.y168{bottom:884.788645pt;}
.yc4{bottom:884.792023pt;}
.y1f5{bottom:884.797742pt;}
.y77{bottom:888.706667pt;}
.yc5{bottom:890.078400pt;}
.y71{bottom:894.991867pt;}
.y121{bottom:900.737358pt;}
.y7e{bottom:900.737837pt;}
.y167{bottom:900.737899pt;}
.yc3{bottom:900.741277pt;}
.y1f4{bottom:900.746996pt;}
.y75{bottom:902.040000pt;}
.y120{bottom:916.686612pt;}
.y7d{bottom:916.687091pt;}
.y166{bottom:916.687154pt;}
.yc2{bottom:916.690532pt;}
.y1f3{bottom:916.696251pt;}
.y11e{bottom:930.595067pt;}
.y11f{bottom:932.635867pt;}
.y7c{bottom:932.636346pt;}
.y11d{bottom:932.636408pt;}
.yc1{bottom:932.639786pt;}
.y19e{bottom:932.641523pt;}
.y1f2{bottom:932.645505pt;}
.y70{bottom:946.317990pt;}
.y7a{bottom:946.544533pt;}
.y7b{bottom:948.585600pt;}
.y79{bottom:948.585662pt;}
.yc0{bottom:948.589041pt;}
.y19d{bottom:948.590778pt;}
.y1f1{bottom:948.594760pt;}
.y78{bottom:964.459600pt;}
.ybf{bottom:964.462978pt;}
.y19c{bottom:964.464715pt;}
.y1f0{bottom:964.468697pt;}
.y165{bottom:968.919467pt;}
.y6f{bottom:974.210800pt;}
.yff{bottom:997.946267pt;}
.y100{bottom:1015.373333pt;}
.h1a{height:10.666667pt;}
.h21{height:13.304921pt;}
.hb{height:13.791462pt;}
.h18{height:14.666667pt;}
.h9{height:16.362603pt;}
.h20{height:21.024125pt;}
.h7{height:21.080794pt;}
.ha{height:23.843447pt;}
.h4{height:26.280651pt;}
.hd{height:26.333069pt;}
.hf{height:27.820813pt;}
.hc{height:27.843129pt;}
.he{height:28.148116pt;}
.h11{height:28.583819pt;}
.h10{height:28.660864pt;}
.h1b{height:30.112000pt;}
.h1f{height:31.540738pt;}
.h6{height:31.625754pt;}
.h22{height:31.798562pt;}
.h12{height:31.799981pt;}
.h1e{height:34.908795pt;}
.h24{height:35.236519pt;}
.h27{height:35.722462pt;}
.h8{height:35.769559pt;}
.h1c{height:37.887997pt;}
.h26{height:38.189265pt;}
.h3{height:39.425329pt;}
.h1d{height:39.521950pt;}
.h23{height:39.526347pt;}
.h15{height:41.875000pt;}
.h19{height:45.168000pt;}
.h5{height:46.077596pt;}
.h25{height:55.344077pt;}
.h2{height:61.380782pt;}
.h13{height:81.455152pt;}
.h16{height:135.386667pt;}
.h17{height:305.453333pt;}
.h14{height:386.346667pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w2{width:13.333333pt;}
.w5{width:46.773333pt;}
.w4{width:49.426667pt;}
.w6{width:73.653333pt;}
.w3{width:110.480000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:4.000000pt;}
.x2b{left:10.666667pt;}
.x2c{left:18.666667pt;}
.x28{left:54.804401pt;}
.xc{left:56.692933pt;}
.x21{left:59.565333pt;}
.x29{left:68.636267pt;}
.x14{left:72.642533pt;}
.xab{left:73.776724pt;}
.xa6{left:74.985733pt;}
.x10{left:78.462933pt;}
.xa7{left:79.672400pt;}
.x90{left:80.957467pt;}
.x3b{left:83.678667pt;}
.x15{left:86.702267pt;}
.x11{left:94.790533pt;}
.x91{left:104.768533pt;}
.x60{left:106.582667pt;}
.x16{left:109.833067pt;}
.x61{left:111.042533pt;}
.x67{left:116.560533pt;}
.x68{left:121.247200pt;}
.xe{left:126.840933pt;}
.xac{left:137.272400pt;}
.x25{left:138.708827pt;}
.x22{left:139.993704pt;}
.xf{left:142.714933pt;}
.x6b{left:144.453467pt;}
.x99{left:148.384267pt;}
.x75{left:149.442533pt;}
.x39{left:152.314933pt;}
.x8e{left:157.530667pt;}
.x76{left:162.217200pt;}
.x3a{left:164.636771pt;}
.x77{left:166.903867pt;}
.x8f{left:168.718000pt;}
.x9b{left:174.462933pt;}
.x6c{left:175.445600pt;}
.x69{left:181.341733pt;}
.x9d{left:182.475600pt;}
.x6d{left:183.382667pt;}
.x6a{left:186.028267pt;}
.x9e{left:191.470800pt;}
.x9c{left:195.703867pt;}
.x9f{left:197.593600pt;}
.x6e{left:199.332267pt;}
.x26{left:201.222900pt;}
.x23{left:204.170331pt;}
.x62{left:207.722800pt;}
.x6f{left:208.629867pt;}
.x37{left:210.746400pt;}
.x63{left:212.409333pt;}
.xa0{left:213.467600pt;}
.x65{left:217.474000pt;}
.x32{left:221.631467pt;}
.x38{left:223.748000pt;}
.x70{left:226.998400pt;}
.x8d{left:228.510133pt;}
.x1{left:230.551067pt;}
.x33{left:232.970000pt;}
.x66{left:235.162133pt;}
.x71{left:241.436133pt;}
.x36{left:248.239333pt;}
.x27{left:254.740771pt;}
.x24{left:260.182963pt;}
.x72{left:263.206267pt;}
.x96{left:264.491333pt;}
.x73{left:266.305467pt;}
.x34{left:272.655067pt;}
.xa1{left:274.922800pt;}
.x97{left:278.022000pt;}
.x64{left:282.406267pt;}
.xa2{left:283.918000pt;}
.x13{left:285.505467pt;}
.x98{left:286.488133pt;}
.x9a{left:289.058133pt;}
.xa3{left:289.965333pt;}
.x35{left:294.803067pt;}
.x78{left:296.768400pt;}
.x79{left:301.455067pt;}
.x74{left:303.571600pt;}
.x92{left:306.444000pt;}
.x7a{left:315.061333pt;}
.x2e{left:316.270800pt;}
.x93{left:320.050267pt;}
.x7b{left:323.300667pt;}
.x2f{left:324.736933pt;}
.x12{left:325.719600pt;}
.x94{left:327.911733pt;}
.x2{left:338.418800pt;}
.x95{left:340.459733pt;}
.xa4{left:343.558933pt;}
.xa5{left:348.245600pt;}
.x3{left:353.461333pt;}
.x51{left:370.242400pt;}
.x55{left:375.080267pt;}
.x56{left:379.540000pt;}
.x30{left:381.354267pt;}
.xd{left:384.831333pt;}
.x31{left:386.040800pt;}
.x9{left:387.930533pt;}
.xa{left:397.530533pt;}
.x17{left:404.410691pt;}
.xa8{left:409.625067pt;}
.x3e{left:410.532133pt;}
.x57{left:415.445600pt;}
.x19{left:420.358933pt;}
.xa9{left:421.491666pt;}
.x3f{left:426.708533pt;}
.x84{left:429.656533pt;}
.x52{left:435.401467pt;}
.x58{left:443.262800pt;}
.x53{left:446.513200pt;}
.x59{left:447.722667pt;}
.x48{left:462.311733pt;}
.x18{left:466.242400pt;}
.x4{left:484.686533pt;}
.x5{left:494.210933pt;}
.x43{left:503.130533pt;}
.x88{left:510.765200pt;}
.x5a{left:511.672267pt;}
.x44{left:512.730533pt;}
.x5b{left:516.207733pt;}
.xad{left:521.951546pt;}
.x89{left:524.447067pt;}
.xb{left:528.075467pt;}
.x3c{left:529.287041pt;}
.x8a{left:530.645467pt;}
.x40{left:532.459733pt;}
.x41{left:536.012400pt;}
.x7f{left:541.152667pt;}
.x42{left:549.996667pt;}
.x1a{left:557.102267pt;}
.xaa{left:558.312605pt;}
.x80{left:566.928933pt;}
.x8b{left:578.418800pt;}
.x82{left:579.325867pt;}
.x1b{left:583.332133pt;}
.x8c{left:586.809333pt;}
.x6{left:588.018667pt;}
.x5c{left:594.595200pt;}
.x5d{left:599.054933pt;}
.x7{left:602.758933pt;}
.x49{left:604.270667pt;}
.x1c{left:606.840800pt;}
.x4a{left:613.114800pt;}
.x4b{left:619.237600pt;}
.x4c{left:634.960400pt;}
.x83{left:641.083333pt;}
.x85{left:644.106933pt;}
.x7c{left:645.694400pt;}
.x45{left:646.903733pt;}
.x7d{left:650.380933pt;}
.x46{left:651.590400pt;}
.x2d{left:654.266667pt;}
.x5e{left:656.352667pt;}
.x1d{left:660.358800pt;}
.x50{left:662.706667pt;}
.x7e{left:663.987200pt;}
.x86{left:665.574667pt;}
.x1e{left:668.900667pt;}
.x87{left:674.418667pt;}
.x81{left:679.634400pt;}
.x1f{left:680.617067pt;}
.x4d{left:683.111600pt;}
.x20{left:692.409200pt;}
.x4e{left:698.078533pt;}
.x8{left:703.521200pt;}
.x54{left:708.434533pt;}
.x4f{left:713.876933pt;}
.x5f{left:725.140000pt;}
.x47{left:729.221867pt;}
.x3d{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;
}
