
/* 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_af8eff4065d2.woff")format("woff");}.ff1{font-family:ff1;line-height:1.128000;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_3979fc77d6a7.woff")format("woff");}.ff2{font-family:ff2;line-height:1.185000;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_275c7be60784.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_6458057d7cad.woff")format("woff");}.ff4{font-family:ff4;line-height:0.899000;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_970c3cea198d.woff")format("woff");}.ff5{font-family:ff5;line-height:0.904000;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_a30c61df0d46.woff")format("woff");}.ff6{font-family:ff6;line-height:0.683000;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_c31e9d5b01c1.woff")format("woff");}.ff7{font-family:ff7;line-height:0.253000;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_b51b666c27cd.woff")format("woff");}.ff8{font-family:ff8;line-height:0.891000;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_e64f47be053d.woff")format("woff");}.ff9{font-family:ff9;line-height:0.289000;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_fdef60b2b14d.woff")format("woff");}.ffa{font-family:ffa;line-height:0.729581;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_fbd2ab20c5fd.woff")format("woff");}.ffb{font-family:ffb;line-height:0.683000;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_71021b1e5943.woff")format("woff");}.ffc{font-family:ffc;line-height:0.848000;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_2e787ed23567.woff")format("woff");}.ffd{font-family:ffd;line-height:0.899000;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_895206b162b6.woff")format("woff");}.ffe{font-family:ffe;line-height:0.059000;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_a1af5c4b1ac8.woff")format("woff");}.fff{font-family:fff;line-height:0.690000;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_3a5fc5de56e6.woff")format("woff");}.ff10{font-family:ff10;line-height:0.872000;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_eb279f76f340.woff")format("woff");}.ff11{font-family:ff11;line-height:0.904000;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_ae70f3ac2781.woff")format("woff");}.ff12{font-family:ff12;line-height:0.683000;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_e9e6fcb7e26b.woff")format("woff");}.ff13{font-family:ff13;line-height:0.683000;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_256a08b348ab.woff")format("woff");}.ff14{font-family:ff14;line-height:0.848000;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_04a189d3c8db.woff")format("woff");}.ff15{font-family:ff15;line-height:0.735000;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_4f9e8d4733cb.woff")format("woff");}.ff16{font-family:ff16;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:ff17;src:url("fonts/font_0022_b7dcf2a96097.woff")format("woff");}.ff17{font-family:ff17;line-height:0.690000;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_e1d30137302f.woff")format("woff");}.ff18{font-family:ff18;line-height:0.891000;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_a3010cd030f8.woff")format("woff");}.ff19{font-family:ff19;line-height:0.904000;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_10a955a9474b.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.924000;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_6c6b33beb72c.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.049000;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_f472326e9711.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_24c5712a3816.woff")format("woff");}.ff1d{font-family:ff1d;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_58499931e99b.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.105000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_4d82ab9af356.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_41afd735d6e8.woff")format("woff");}.ff20{font-family:ff20;line-height:0.907000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_d344fe697276.woff")format("woff");}.ff21{font-family:ff21;line-height:0.539000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_31feb1f4bce5.woff")format("woff");}.ff22{font-family:ff22;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_f56cf9c623a1.woff")format("woff");}.ff23{font-family:ff23;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_3d9229fb5350.woff")format("woff");}.ff24{font-family:ff24;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_4d377995c593.woff")format("woff");}.ff25{font-family:ff25;line-height:0.910645;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;}
.m4{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);}
.m3{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1{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);}
.vd{vertical-align:-102.389623px;}
.v9{vertical-align:-10.203695px;}
.v2{vertical-align:-8.508088px;}
.v8{vertical-align:-6.122314px;}
.va{vertical-align:-4.761126px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:7.483887px;}
.vb{vertical-align:14.285558px;}
.v6{vertical-align:16.329097px;}
.v3{vertical-align:24.831665px;}
.v7{vertical-align:31.634795px;}
.vc{vertical-align:32.653966px;}
.v4{vertical-align:40.818604px;}
.v5{vertical-align:97.625508px;}
.ls7f{letter-spacing:-0.172068px;}
.ls8b{letter-spacing:-0.152494px;}
.ls86{letter-spacing:-0.147487px;}
.ls7e{letter-spacing:-0.137654px;}
.ls8d{letter-spacing:-0.130936px;}
.ls84{letter-spacing:-0.122905px;}
.ls83{letter-spacing:-0.103241px;}
.ls92{letter-spacing:-0.099692px;}
.ls80{letter-spacing:-0.098324px;}
.ls87{letter-spacing:-0.088492px;}
.ls85{letter-spacing:-0.083576px;}
.ls81{letter-spacing:-0.073743px;}
.ls18{letter-spacing:-0.009564px;}
.ls5{letter-spacing:0.000000px;}
.ls74{letter-spacing:0.000024px;}
.ls89{letter-spacing:0.000208px;}
.ls62{letter-spacing:0.001471px;}
.ls7c{letter-spacing:0.004916px;}
.lsb{letter-spacing:0.026901px;}
.ls44{letter-spacing:0.031877px;}
.ls63{letter-spacing:0.033390px;}
.ls54{letter-spacing:0.043650px;}
.ls4e{letter-spacing:0.043803px;}
.ls91{letter-spacing:0.044862px;}
.ls1d{letter-spacing:0.047820px;}
.ls75{letter-spacing:0.047839px;}
.ls47{letter-spacing:0.054617px;}
.lsa{letter-spacing:0.066949px;}
.ls7{letter-spacing:0.071731px;}
.ls8f{letter-spacing:0.079754px;}
.ls9d{letter-spacing:0.106570px;}
.ls9a{letter-spacing:0.106662px;}
.ls99{letter-spacing:0.106684px;}
.ls10{letter-spacing:0.106699px;}
.ls76{letter-spacing:0.106753px;}
.ls90{letter-spacing:0.114646px;}
.ls66{letter-spacing:0.116562px;}
.ls4a{letter-spacing:0.119551px;}
.ls34{letter-spacing:0.120933px;}
.lsd{letter-spacing:0.133948px;}
.ls3e{letter-spacing:0.137484px;}
.ls1e{letter-spacing:0.143461px;}
.ls11{letter-spacing:0.157509px;}
.ls64{letter-spacing:0.170360px;}
.ls36{letter-spacing:0.185304px;}
.ls6e{letter-spacing:0.187994px;}
.ls8c{letter-spacing:0.188003px;}
.ls30{letter-spacing:0.188469px;}
.ls88{letter-spacing:0.201565px;}
.ls82{letter-spacing:0.211397px;}
.ls95{letter-spacing:0.213399px;}
.ls96{letter-spacing:0.228641px;}
.ls9c{letter-spacing:0.228660px;}
.lsf{letter-spacing:0.233125px;}
.ls14{letter-spacing:0.248965px;}
.ls15{letter-spacing:0.254046px;}
.ls9b{letter-spacing:0.254072px;}
.ls2c{letter-spacing:0.292694px;}
.ls5d{letter-spacing:0.292719px;}
.ls98{letter-spacing:0.304782px;}
.ls16{letter-spacing:0.304855px;}
.ls9e{letter-spacing:0.304874px;}
.ls2a{letter-spacing:0.328766px;}
.ls23{letter-spacing:0.339319px;}
.ls60{letter-spacing:0.339792px;}
.ls8a{letter-spacing:0.340601px;}
.ls8e{letter-spacing:0.340692px;}
.lse{letter-spacing:0.340721px;}
.ls78{letter-spacing:0.388541px;}
.ls0{letter-spacing:0.529200px;}
.ls4{letter-spacing:0.772800px;}
.ls3{letter-spacing:0.823200px;}
.ls2{letter-spacing:0.924000px;}
.ls33{letter-spacing:1.207467px;}
.ls46{letter-spacing:1.548188px;}
.ls1{letter-spacing:1.656000px;}
.ls4d{letter-spacing:3.012690px;}
.ls45{letter-spacing:3.353411px;}
.ls2f{letter-spacing:4.164800px;}
.ls25{letter-spacing:6.899878px;}
.ls24{letter-spacing:6.971010px;}
.ls65{letter-spacing:7.576557px;}
.ls68{letter-spacing:8.940407px;}
.ls50{letter-spacing:9.372814px;}
.ls4b{letter-spacing:9.910794px;}
.ls32{letter-spacing:10.096099px;}
.ls52{letter-spacing:10.251515px;}
.ls69{letter-spacing:10.299336px;}
.ls29{letter-spacing:13.159801px;}
.ls70{letter-spacing:13.454276px;}
.ls2e{letter-spacing:13.455487px;}
.ls49{letter-spacing:13.497330px;}
.ls3f{letter-spacing:14.136929px;}
.ls40{letter-spacing:14.238548px;}
.ls41{letter-spacing:14.286368px;}
.ls31{letter-spacing:14.369726px;}
.lsc{letter-spacing:15.838370px;}
.ls48{letter-spacing:16.155626px;}
.ls59{letter-spacing:16.444267px;}
.ls4f{letter-spacing:16.495653px;}
.ls28{letter-spacing:16.495836px;}
.ls97{letter-spacing:16.553637px;}
.ls55{letter-spacing:16.561341px;}
.ls38{letter-spacing:16.713257px;}
.ls6b{letter-spacing:16.777197px;}
.ls6c{letter-spacing:16.843249px;}
.ls13{letter-spacing:16.894058px;}
.ls27{letter-spacing:16.904539px;}
.ls12{letter-spacing:16.975353px;}
.ls17{letter-spacing:17.000758px;}
.ls39{letter-spacing:17.006158px;}
.ls6d{letter-spacing:17.183671px;}
.ls94{letter-spacing:17.254804px;}
.ls57{letter-spacing:17.334924px;}
.ls6{letter-spacing:17.346879px;}
.ls8{letter-spacing:17.418609px;}
.ls58{letter-spacing:17.711510px;}
.ls3d{letter-spacing:18.440772px;}
.ls7b{letter-spacing:18.584234px;}
.ls73{letter-spacing:18.781493px;}
.ls2d{letter-spacing:18.791723px;}
.ls61{letter-spacing:19.316854px;}
.ls5e{letter-spacing:19.472143px;}
.ls26{letter-spacing:19.557316px;}
.ls1c{letter-spacing:19.757525px;}
.ls37{letter-spacing:19.773768px;}
.ls42{letter-spacing:19.917229px;}
.ls53{letter-spacing:19.950453px;}
.ls77{letter-spacing:19.965050px;}
.ls1b{letter-spacing:20.097735px;}
.ls1a{letter-spacing:20.098284px;}
.ls19{letter-spacing:20.098375px;}
.ls21{letter-spacing:20.114489px;}
.ls2b{letter-spacing:20.359569px;}
.ls72{letter-spacing:20.479120px;}
.ls43{letter-spacing:20.598671px;}
.ls3c{letter-spacing:20.867661px;}
.ls3b{letter-spacing:20.939392px;}
.ls3a{letter-spacing:21.041011px;}
.ls71{letter-spacing:23.036891px;}
.ls20{letter-spacing:24.173252px;}
.ls22{letter-spacing:25.697530px;}
.ls9{letter-spacing:31.652849px;}
.ls93{letter-spacing:32.338599px;}
.ls5c{letter-spacing:34.837219px;}
.ls67{letter-spacing:42.002434px;}
.ls51{letter-spacing:47.270543px;}
.ls4c{letter-spacing:110.104786px;}
.ls5f{letter-spacing:171.862490px;}
.ls79{letter-spacing:245.169625px;}
.ls7a{letter-spacing:247.811703px;}
.ls5a{letter-spacing:388.421839px;}
.ls5b{letter-spacing:388.762547px;}
.ls35{letter-spacing:443.733080px;}
.ls56{letter-spacing:466.883277px;}
.ls7d{letter-spacing:500.241949px;}
.ls1f{letter-spacing:500.241963px;}
.ls6f{letter-spacing:929.757510px;}
.ls6a{letter-spacing:1062.325959px;}
.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;}
}
.ws1a4{word-spacing:-929.808319px;}
.ws0{word-spacing:-84.823200px;}
.ws167{word-spacing:-34.896994px;}
.wsff{word-spacing:-25.757305px;}
.ws262{word-spacing:-18.644009px;}
.ws345{word-spacing:-16.604446px;}
.ws146{word-spacing:-16.504043px;}
.ws148{word-spacing:-10.155874px;}
.ws3{word-spacing:-2.700000px;}
.ws296{word-spacing:-1.533861px;}
.ws4{word-spacing:-1.411200px;}
.ws5{word-spacing:-1.310400px;}
.ws6{word-spacing:-1.260000px;}
.ws28d{word-spacing:-1.253636px;}
.ws2ea{word-spacing:-1.176370px;}
.ws2ec{word-spacing:-1.086647px;}
.ws28e{word-spacing:-0.791511px;}
.ws28f{word-spacing:-0.457208px;}
.ws225{word-spacing:-0.448317px;}
.ws292{word-spacing:-0.162235px;}
.ws290{word-spacing:-0.137654px;}
.ws294{word-spacing:-0.122905px;}
.ws2eb{word-spacing:-0.114646px;}
.ws293{word-spacing:-0.098324px;}
.ws54{word-spacing:-0.095642px;}
.ws13e{word-spacing:-0.071731px;}
.ws9{word-spacing:-0.059776px;}
.ws2f{word-spacing:-0.053798px;}
.ws72{word-spacing:-0.050809px;}
.ws3b{word-spacing:-0.047821px;}
.ws1f4{word-spacing:-0.039846px;}
.ws179{word-spacing:-0.029888px;}
.ws2{word-spacing:0.000000px;}
.ws1{word-spacing:0.010800px;}
.ws295{word-spacing:0.329387px;}
.ws297{word-spacing:0.363800px;}
.ws291{word-spacing:0.368716px;}
.ws149{word-spacing:9.851019px;}
.ws264{word-spacing:10.669944px;}
.ws301{word-spacing:11.016632px;}
.ws30d{word-spacing:11.016635px;}
.ws4c{word-spacing:11.300150px;}
.ws147{word-spacing:11.339431px;}
.ws42{word-spacing:11.773579px;}
.ws2c2{word-spacing:11.937187px;}
.ws2c3{word-spacing:11.973053px;}
.ws222{word-spacing:11.975728px;}
.ws347{word-spacing:12.031618px;}
.ws2ba{word-spacing:12.032828px;}
.ws361{word-spacing:12.102751px;}
.ws221{word-spacing:12.189126px;}
.ws348{word-spacing:12.219612px;}
.ws395{word-spacing:12.270421px;}
.ws220{word-spacing:12.341554px;}
.ws2b7{word-spacing:12.421370px;}
.ws357{word-spacing:12.468577px;}
.ws2bc{word-spacing:12.487122px;}
.ws360{word-spacing:12.504144px;}
.ws2b8{word-spacing:12.594718px;}
.ws282{word-spacing:12.610843px;}
.ws356{word-spacing:12.656572px;}
.ws281{word-spacing:12.676895px;}
.ws32{word-spacing:12.707040px;}
.ws334{word-spacing:12.727704px;}
.ws33{word-spacing:12.782358px;}
.ws35b{word-spacing:12.824241px;}
.ws35a{word-spacing:12.869970px;}
.ws333{word-spacing:12.900455px;}
.ws24a{word-spacing:12.983260px;}
.ws23f{word-spacing:13.054990px;}
.ws24b{word-spacing:13.144654px;}
.ws237{word-spacing:13.168565px;}
.ws43{word-spacing:13.270383px;}
.ws23e{word-spacing:13.312026px;}
.ws1aa{word-spacing:13.337415px;}
.ws1a9{word-spacing:13.352657px;}
.ws1a8{word-spacing:13.357738px;}
.ws2ac{word-spacing:13.395712px;}
.ws396{word-spacing:13.459356px;}
.ws2b9{word-spacing:13.509285px;}
.ws2e7{word-spacing:13.632107px;}
.ws2e6{word-spacing:13.687998px;}
.ws46{word-spacing:13.743813px;}
.ws2e8{word-spacing:13.784535px;}
.ws36e{word-spacing:13.799779px;}
.ws1fe{word-spacing:13.802185px;}
.ws47{word-spacing:13.849020px;}
.ws255{word-spacing:13.875992px;}
.wsa4{word-spacing:13.933692px;}
.ws32a{word-spacing:13.936962px;}
.ws21c{word-spacing:13.963579px;}
.ws36d{word-spacing:13.967448px;}
.ws211{word-spacing:13.999445px;}
.ws250{word-spacing:14.018258px;}
.ws213{word-spacing:14.029333px;}
.ws212{word-spacing:14.047266px;}
.ws246{word-spacing:14.053244px;}
.ws1fd{word-spacing:14.077153px;}
.ws254{word-spacing:14.094472px;}
.ws265{word-spacing:14.095086px;}
.ws210{word-spacing:14.118996px;}
.ws2b6{word-spacing:14.130951px;}
.ws257{word-spacing:14.135120px;}
.ws150{word-spacing:14.142907px;}
.ws24f{word-spacing:14.160524px;}
.ws32b{word-spacing:14.180848px;}
.ws105{word-spacing:14.190727px;}
.ws3d{word-spacing:14.231589px;}
.ws2ed{word-spacing:14.250502px;}
.ws2c7{word-spacing:14.268435px;}
.wsfc{word-spacing:14.274413px;}
.ws22e{word-spacing:14.298323px;}
.ws37b{word-spacing:14.307759px;}
.wsa3{word-spacing:14.340166px;}
.ws302{word-spacing:14.346144px;}
.ws22f{word-spacing:14.364077px;}
.ws110{word-spacing:14.387986px;}
.ws1db{word-spacing:14.399327px;}
.ws109{word-spacing:14.417873px;}
.wsb5{word-spacing:14.423851px;}
.ws20f{word-spacing:14.459717px;}
.ws2f5{word-spacing:14.465694px;}
.ws317{word-spacing:14.471673px;}
.ws247{word-spacing:14.507538px;}
.ws15e{word-spacing:14.531448px;}
.ws34d{word-spacing:14.556835px;}
.ws7b{word-spacing:14.587321px;}
.ws29a{word-spacing:14.615134px;}
.ws10f{word-spacing:14.639044px;}
.ws7a{word-spacing:14.648291px;}
.ws2ad{word-spacing:14.656977px;}
.ws1fa{word-spacing:14.680887px;}
.ws16d{word-spacing:14.686864px;}
.ws6b{word-spacing:14.704797px;}
.ws165{word-spacing:14.710775px;}
.wsfb{word-spacing:14.716752px;}
.ws1da{word-spacing:14.719425px;}
.ws111{word-spacing:14.728707px;}
.wsf6{word-spacing:14.752618px;}
.ws1b2{word-spacing:14.790558px;}
.wsea{word-spacing:14.800439px;}
.ws30e{word-spacing:14.818371px;}
.ws341{word-spacing:14.831205px;}
.ws99{word-spacing:14.848258px;}
.ws325{word-spacing:14.851528px;}
.ws2bb{word-spacing:14.866191px;}
.ws106{word-spacing:14.872169px;}
.ws1fb{word-spacing:14.896079px;}
.ws324{word-spacing:14.897258px;}
.ws343{word-spacing:14.922662px;}
.ws311{word-spacing:14.955855px;}
.ws170{word-spacing:14.979765px;}
.ws326{word-spacing:14.988714px;}
.ws380{word-spacing:14.988745px;}
.ws16c{word-spacing:15.009653px;}
.ws6a{word-spacing:15.021608px;}
.ws340{word-spacing:15.039523px;}
.ws11f{word-spacing:15.045518px;}
.ws175{word-spacing:15.069429px;}
.ws381{word-spacing:15.070009px;}
.ws2a8{word-spacing:15.081384px;}
.ws97{word-spacing:15.093339px;}
.ws342{word-spacing:15.095413px;}
.ws33f{word-spacing:15.130979px;}
.ws28b{word-spacing:15.141141px;}
.ws98{word-spacing:15.141159px;}
.ws28a{word-spacing:15.156383px;}
.ws382{word-spacing:15.186869px;}
.ws169{word-spacing:15.212890px;}
.ws171{word-spacing:15.236800px;}
.wsf2{word-spacing:15.290597px;}
.ws18b{word-spacing:15.314509px;}
.ws19e{word-spacing:15.329136px;}
.ws1a2{word-spacing:15.354540px;}
.ws1e1{word-spacing:15.362329px;}
.ws19c{word-spacing:15.374285px;}
.ws349{word-spacing:15.395187px;}
.ws36f{word-spacing:15.405350px;}
.ws101{word-spacing:15.410149px;}
.ws271{word-spacing:15.434060px;}
.ws4e{word-spacing:15.441465px;}
.ws370{word-spacing:15.445996px;}
.wse1{word-spacing:15.481880px;}
.ws48{word-spacing:15.489286px;}
.ws3f{word-spacing:15.494069px;}
.ws1b5{word-spacing:15.505790px;}
.ws195{word-spacing:15.553611px;}
.ws44{word-spacing:15.570583px;}
.ws1dd{word-spacing:15.588261px;}
.ws121{word-spacing:15.607409px;}
.ws21e{word-spacing:15.631319px;}
.ws12f{word-spacing:15.655229px;}
.ws274{word-spacing:15.679139px;}
.ws1b4{word-spacing:15.703050px;}
.ws1dc{word-spacing:15.705124px;}
.ws37{word-spacing:15.723610px;}
.ws329{word-spacing:15.735609px;}
.wsac{word-spacing:15.750870px;}
.wsc7{word-spacing:15.774781px;}
.ws2c1{word-spacing:15.780733px;}
.ws330{word-spacing:15.781337px;}
.ws207{word-spacing:15.798690px;}
.ws102{word-spacing:15.816624px;}
.wsab{word-spacing:15.846512px;}
.ws4d{word-spacing:15.852728px;}
.ws19d{word-spacing:15.862632px;}
.ws14d{word-spacing:15.888353px;}
.ws83{word-spacing:15.900309px;}
.ws224{word-spacing:15.912265px;}
.ws206{word-spacing:15.948129px;}
.wsdb{word-spacing:15.972041px;}
.ws2af{word-spacing:15.983995px;}
.ws11{word-spacing:15.995951px;}
.ws208{word-spacing:16.007905px;}
.ws17a{word-spacing:16.043770px;}
.ws21f{word-spacing:16.055726px;}
.ws14b{word-spacing:16.067680px;}
.ws355{word-spacing:16.076030px;}
.ws27c{word-spacing:16.081111px;}
.ws209{word-spacing:16.085614px;}
.wsdc{word-spacing:16.115502px;}
.wsc8{word-spacing:16.163322px;}
.ws1eb{word-spacing:16.211142px;}
.wsaa{word-spacing:16.229075px;}
.ws135{word-spacing:16.235053px;}
.ws14c{word-spacing:16.247001px;}
.ws136{word-spacing:16.252985px;}
.ws1ec{word-spacing:16.264941px;}
.ws27d{word-spacing:16.294511px;}
.ws358{word-spacing:16.299590px;}
.ws238{word-spacing:16.312760px;}
.ws32c{word-spacing:16.345320px;}
.ws359{word-spacing:16.370724px;}
.ws346{word-spacing:16.380885px;}
.ws2fc{word-spacing:16.396446px;}
.ws2f8{word-spacing:16.402424px;}
.ws38d{word-spacing:16.416452px;}
.ws307{word-spacing:16.456222px;}
.ws2f7{word-spacing:16.498065px;}
.ws9b{word-spacing:16.504043px;}
.ws14a{word-spacing:16.533931px;}
.ws1c1{word-spacing:16.545885px;}
.ws344{word-spacing:16.548557px;}
.ws120{word-spacing:16.569797px;}
.ws32f{word-spacing:16.589203px;}
.ws128{word-spacing:16.653481px;}
.ws318{word-spacing:16.659460px;}
.ws25a{word-spacing:16.660336px;}
.ws25b{word-spacing:16.670498px;}
.ws2f6{word-spacing:16.677392px;}
.ws1de{word-spacing:16.680659px;}
.ws1b3{word-spacing:16.690822px;}
.ws129{word-spacing:16.701263px;}
.ws1cb{word-spacing:16.706064px;}
.ws38c{word-spacing:16.711145px;}
.ws74{word-spacing:16.716226px;}
.ws258{word-spacing:16.721307px;}
.ws1d7{word-spacing:16.725212px;}
.ws259{word-spacing:16.726381px;}
.ws24e{word-spacing:16.726389px;}
.ws80{word-spacing:16.736550px;}
.ws78{word-spacing:16.751793px;}
.ws36a{word-spacing:16.756873px;}
.ws1ca{word-spacing:16.761954px;}
.ws7e{word-spacing:16.767035px;}
.ws2c5{word-spacing:16.767055px;}
.ws1a1{word-spacing:16.772117px;}
.ws1f6{word-spacing:16.773033px;}
.ws38a{word-spacing:16.777198px;}
.ws328{word-spacing:16.782278px;}
.wsfd{word-spacing:16.796943px;}
.ws252{word-spacing:16.797521px;}
.ws77{word-spacing:16.807683px;}
.ws7f{word-spacing:16.812763px;}
.ws354{word-spacing:16.817845px;}
.ws31b{word-spacing:16.820853px;}
.ws379{word-spacing:16.822919px;}
.ws332{word-spacing:16.822926px;}
.ws378{word-spacing:16.828007px;}
.ws2e9{word-spacing:16.833087px;}
.wsc9{word-spacing:16.838787px;}
.ws73{word-spacing:16.843249px;}
.ws7c{word-spacing:16.853412px;}
.ws6f{word-spacing:16.858491px;}
.ws81{word-spacing:16.863573px;}
.ws331{word-spacing:16.868654px;}
.wsf8{word-spacing:16.873735px;}
.ws17e{word-spacing:16.883896px;}
.ws2dc{word-spacing:16.886607px;}
.ws7d{word-spacing:16.894058px;}
.ws251{word-spacing:16.899140px;}
.ws156{word-spacing:16.910516px;}
.ws187{word-spacing:16.919463px;}
.ws223{word-spacing:16.924544px;}
.ws36c{word-spacing:16.929625px;}
.ws1a7{word-spacing:16.934705px;}
.ws256{word-spacing:16.939786px;}
.ws2d3{word-spacing:16.944868px;}
.ws245{word-spacing:16.949949px;}
.ws188{word-spacing:16.975354px;}
.ws19f{word-spacing:16.985514px;}
.ws2ce{word-spacing:16.994141px;}
.ws184{word-spacing:17.000758px;}
.ws79{word-spacing:17.005839px;}
.ws70{word-spacing:17.016000px;}
.ws155{word-spacing:17.018114px;}
.ws6e{word-spacing:17.026163px;}
.ws71{word-spacing:17.031244px;}
.ws392{word-spacing:17.046486px;}
.ws28c{word-spacing:17.071891px;}
.ws75{word-spacing:17.076972px;}
.wse{word-spacing:17.089843px;}
.ws182{word-spacing:17.092214px;}
.ws76{word-spacing:17.097295px;}
.ws2d2{word-spacing:17.102376px;}
.ws364{word-spacing:17.107458px;}
.ws2c6{word-spacing:17.107768px;}
.ws17f{word-spacing:17.112537px;}
.ws1c9{word-spacing:17.119731px;}
.ws37f{word-spacing:17.122700px;}
.ws181{word-spacing:17.127781px;}
.wsd{word-spacing:17.131687px;}
.ws260{word-spacing:17.137665px;}
.ws38e{word-spacing:17.137905px;}
.ws37c{word-spacing:17.137951px;}
.ws353{word-spacing:17.148093px;}
.ws321{word-spacing:17.158259px;}
.ws25c{word-spacing:17.158267px;}
.ws14e{word-spacing:17.179507px;}
.ws14f{word-spacing:17.197427px;}
.ws37a{word-spacing:17.198914px;}
.ws25e{word-spacing:17.203417px;}
.ws180{word-spacing:17.209076px;}
.ws33e{word-spacing:17.214156px;}
.ws127{word-spacing:17.215372px;}
.ws25f{word-spacing:17.227328px;}
.ws391{word-spacing:17.229399px;}
.ws154{word-spacing:17.251238px;}
.ws1df{word-spacing:17.259929px;}
.ws34f{word-spacing:17.275127px;}
.ws322{word-spacing:17.300532px;}
.ws2ab{word-spacing:17.334924px;}
.ws2cf{word-spacing:17.352856px;}
.ws276{word-spacing:17.358833px;}
.ws2cc{word-spacing:17.376767px;}
.ws1f7{word-spacing:17.406655px;}
.ws2d8{word-spacing:17.417393px;}
.ws1bb{word-spacing:17.430565px;}
.ws2ff{word-spacing:17.436543px;}
.ws194{word-spacing:17.472407px;}
.ws298{word-spacing:17.484363px;}
.ws2b0{word-spacing:17.508272px;}
.ws2c4{word-spacing:17.520228px;}
.ws263{word-spacing:17.544125px;}
.ws27b{word-spacing:17.544138px;}
.ws2d6{word-spacing:17.559659px;}
.ws22d{word-spacing:17.568048px;}
.ws10{word-spacing:17.591958px;}
.ws397{word-spacing:17.615550px;}
.ws300{word-spacing:17.615870px;}
.ws28{word-spacing:17.624160px;}
.ws2d7{word-spacing:17.651115px;}
.ws61{word-spacing:17.675645px;}
.ws2d5{word-spacing:17.676520px;}
.ws1bc{word-spacing:17.687599px;}
.ws60{word-spacing:17.699555px;}
.ws320{word-spacing:17.712087px;}
.ws45{word-spacing:17.746448px;}
.ws2b4{word-spacing:17.747375px;}
.ws168{word-spacing:17.789218px;}
.ws35{word-spacing:17.790933px;}
.ws30c{word-spacing:17.801173px;}
.ws27{word-spacing:17.807072px;}
.ws1e6{word-spacing:17.813128px;}
.ws10a{word-spacing:17.819106px;}
.ws2a{word-spacing:17.844731px;}
.ws92{word-spacing:17.860949px;}
.ws5f{word-spacing:17.866926px;}
.ws32d{word-spacing:17.879757px;}
.ws227{word-spacing:17.884860px;}
.ws25{word-spacing:17.887768px;}
.ws33c{word-spacing:17.895000px;}
.ws29{word-spacing:17.903907px;}
.ws2b5{word-spacing:17.908770px;}
.ws1d5{word-spacing:17.932680px;}
.ws36{word-spacing:17.936186px;}
.ws33d{word-spacing:17.971214px;}
.ws1e4{word-spacing:17.992455px;}
.ws336{word-spacing:18.001698px;}
.ws26{word-spacing:18.011503px;}
.wsb7{word-spacing:18.016365px;}
.ws272{word-spacing:18.034299px;}
.ws1e3{word-spacing:18.040275px;}
.ws2a9{word-spacing:18.058209px;}
.ws157{word-spacing:18.082119px;}
.ws32e{word-spacing:18.082993px;}
.ws3e{word-spacing:18.085978px;}
.ws15f{word-spacing:18.129938px;}
.ws385{word-spacing:18.143965px;}
.ws24{word-spacing:18.145997px;}
.wsbb{word-spacing:18.153849px;}
.ws266{word-spacing:18.153850px;}
.ws158{word-spacing:18.177758px;}
.ws189{word-spacing:18.177760px;}
.wsb6{word-spacing:18.201670px;}
.ws24c{word-spacing:18.225580px;}
.wsc2{word-spacing:18.237535px;}
.ws119{word-spacing:18.273401px;}
.ws1e5{word-spacing:18.297311px;}
.ws337{word-spacing:18.311635px;}
.ws383{word-spacing:18.331958px;}
.ws159{word-spacing:18.333177px;}
.ws267{word-spacing:18.339153px;}
.ws384{word-spacing:18.347202px;}
.ws22a{word-spacing:18.380997px;}
.ws335{word-spacing:18.387849px;}
.ws289{word-spacing:18.392930px;}
.ws338{word-spacing:18.408172px;}
.ws20c{word-spacing:18.410884px;}
.ws1c4{word-spacing:18.422840px;}
.ws1c6{word-spacing:18.434794px;}
.ws261{word-spacing:18.458704px;}
.ws34c{word-spacing:18.458981px;}
.ws37e{word-spacing:18.469144px;}
.ws306{word-spacing:18.470660px;}
.ws1ed{word-spacing:18.494570px;}
.ws84{word-spacing:18.542391px;}
.ws309{word-spacing:18.548367px;}
.ws305{word-spacing:18.554347px;}
.ws2da{word-spacing:18.560600px;}
.ws37d{word-spacing:18.565681px;}
.ws174{word-spacing:18.584233px;}
.ws12d{word-spacing:18.614121px;}
.ws1b8{word-spacing:18.626077px;}
.ws22b{word-spacing:18.632055px;}
.ws2dd{word-spacing:18.638031px;}
.ws2d9{word-spacing:18.672380px;}
.ws1c5{word-spacing:18.691830px;}
.wsb2{word-spacing:18.721718px;}
.ws36b{word-spacing:18.723190px;}
.ws2e2{word-spacing:18.733352px;}
.ws1d4{word-spacing:18.763560px;}
.ws49{word-spacing:18.769821px;}
.ws285{word-spacing:18.779080px;}
.ws284{word-spacing:18.794322px;}
.ws288{word-spacing:18.804485px;}
.ws41{word-spacing:18.860681px;}
.ws94{word-spacing:18.883111px;}
.ws327{word-spacing:18.906103px;}
.ws12c{word-spacing:18.907022px;}
.ws85{word-spacing:18.912999px;}
.ws275{word-spacing:18.924955px;}
.ws239{word-spacing:18.930933px;}
.ws2c0{word-spacing:18.954843px;}
.ws29b{word-spacing:18.972775px;}
.ws399{word-spacing:18.992478px;}
.ws273{word-spacing:19.014618px;}
.ws283{word-spacing:19.017882px;}
.ws23a{word-spacing:19.032550px;}
.wsfa{word-spacing:19.056460px;}
.ws9d{word-spacing:19.068416px;}
.ws388{word-spacing:19.073773px;}
.ws1d9{word-spacing:19.080372px;}
.ws26c{word-spacing:19.104282px;}
.ws9e{word-spacing:19.140147px;}
.ws2b3{word-spacing:19.152101px;}
.wsb3{word-spacing:19.176011px;}
.ws2b1{word-spacing:19.223833px;}
.ws2b2{word-spacing:19.229811px;}
.ws22c{word-spacing:19.247743px;}
.ws40{word-spacing:19.257598px;}
.ws20d{word-spacing:19.289586px;}
.ws2cb{word-spacing:19.349362px;}
.ws1bf{word-spacing:19.373272px;}
.ws115{word-spacing:19.397182px;}
.ws21d{word-spacing:19.445001px;}
.ws1ae{word-spacing:19.480246px;}
.ws2aa{word-spacing:19.492823px;}
.ws229{word-spacing:19.516733px;}
.ws1be{word-spacing:19.564553px;}
.ws2e4{word-spacing:19.581865px;}
.ws228{word-spacing:19.612374px;}
.ws13f{word-spacing:19.630306px;}
.ws126{word-spacing:19.690082px;}
.ws2e3{word-spacing:19.693646px;}
.ws65{word-spacing:19.702038px;}
.ws365{word-spacing:19.703807px;}
.ws1ad{word-spacing:19.713969px;}
.ws1b{word-spacing:19.713992px;}
.wsa{word-spacing:19.737903px;}
.wsd3{word-spacing:19.743873px;}
.ws17{word-spacing:19.761813px;}
.ws1c7{word-spacing:19.785723px;}
.ws366{word-spacing:19.800345px;}
.wse5{word-spacing:19.809633px;}
.ws19{word-spacing:19.833543px;}
.wsb4{word-spacing:19.851477px;}
.ws15{word-spacing:19.857455px;}
.ws144{word-spacing:19.875387px;}
.ws58{word-spacing:19.899296px;}
.ws14{word-spacing:19.905274px;}
.ws1e{word-spacing:19.929184px;}
.ws108{word-spacing:19.947111px;}
.ws1a{word-spacing:19.947118px;}
.ws177{word-spacing:19.953076px;}
.ws12e{word-spacing:19.971028px;}
.ws203{word-spacing:19.977005px;}
.ws8b{word-spacing:19.981889px;}
.ws8a{word-spacing:19.993616px;}
.ws30a{word-spacing:19.994938px;}
.ws2e5{word-spacing:19.998501px;}
.ws26a{word-spacing:20.018840px;}
.ws1c{word-spacing:20.018848px;}
.ws142{word-spacing:20.030803px;}
.ws59{word-spacing:20.054713px;}
.ws18{word-spacing:20.066669px;}
.ws16{word-spacing:20.078623px;}
.ws57{word-spacing:20.090579px;}
.ws1bd{word-spacing:20.102533px;}
.ws1d{word-spacing:20.114489px;}
.ws29e{word-spacing:20.126445px;}
.ws20e{word-spacing:20.132421px;}
.wsad{word-spacing:20.138399px;}
.wsd4{word-spacing:20.144377px;}
.ws145{word-spacing:20.150355px;}
.ws377{word-spacing:20.161089px;}
.ws25d{word-spacing:20.162309px;}
.ws2cd{word-spacing:20.162350px;}
.ws134{word-spacing:20.168287px;}
.ws139{word-spacing:20.174265px;}
.ws8c{word-spacing:20.185959px;}
.ws173{word-spacing:20.192196px;}
.ws6d{word-spacing:20.198174px;}
.ws137{word-spacing:20.216108px;}
.ws8d{word-spacing:20.223403px;}
.ws1d3{word-spacing:20.245996px;}
.ws116{word-spacing:20.251972px;}
.ws1c0{word-spacing:20.263928px;}
.ws3c{word-spacing:20.266624px;}
.ws138{word-spacing:20.269906px;}
.ws2c8{word-spacing:20.269952px;}
.ws8e{word-spacing:20.280621px;}
.ws1d6{word-spacing:20.281783px;}
.ws107{word-spacing:20.311748px;}
.ws1c2{word-spacing:20.335659px;}
.ws398{word-spacing:20.354165px;}
.ws279{word-spacing:20.371523px;}
.wse6{word-spacing:20.383479px;}
.ws1c3{word-spacing:20.395435px;}
.ws164{word-spacing:20.419345px;}
.ws16e{word-spacing:20.425323px;}
.ws1ce{word-spacing:20.443255px;}
.ws172{word-spacing:20.467165px;}
.ws192{word-spacing:20.497053px;}
.ws3a{word-spacing:20.500949px;}
.ws2c9{word-spacing:20.508952px;}
.wsa5{word-spacing:20.538896px;}
.ws95{word-spacing:20.580738px;}
.ws2ca{word-spacing:20.592694px;}
.ws82{word-spacing:20.652469px;}
.ws1fc{word-spacing:20.676379px;}
.ws9a{word-spacing:20.712245px;}
.ws2a3{word-spacing:20.736155px;}
.ws2a7{word-spacing:20.760065px;}
.ws12b{word-spacing:20.783976px;}
.ws4b{word-spacing:20.807004px;}
.ws214{word-spacing:20.807886px;}
.ws248{word-spacing:20.831796px;}
.wsba{word-spacing:20.849728px;}
.ws12a{word-spacing:20.873640px;}
.wsda{word-spacing:20.921459px;}
.wsa0{word-spacing:20.945369px;}
.ws1f5{word-spacing:20.969279px;}
.ws10e{word-spacing:20.993191px;}
.ws9f{word-spacing:21.052967px;}
.ws163{word-spacing:21.064921px;}
.ws2b{word-spacing:21.072599px;}
.wscf{word-spacing:21.076876px;}
.wscd{word-spacing:21.100786px;}
.ws304{word-spacing:21.130674px;}
.ws1e0{word-spacing:21.142630px;}
.wsd0{word-spacing:21.172518px;}
.wsae{word-spacing:21.178494px;}
.ws152{word-spacing:21.190450px;}
.ws153{word-spacing:21.196428px;}
.ws151{word-spacing:21.214360px;}
.ws4a{word-spacing:21.275652px;}
.wsce{word-spacing:21.286091px;}
.ws362{word-spacing:21.299217px;}
.wse4{word-spacing:21.310001px;}
.ws1f3{word-spacing:21.333911px;}
.ws2a1{word-spacing:21.405642px;}
.ws2d1{word-spacing:21.411620px;}
.ws91{word-spacing:21.417596px;}
.ws286{word-spacing:21.489328px;}
.ws1d2{word-spacing:21.555081px;}
.ws363{word-spacing:21.568505px;}
.ws277{word-spacing:21.578991px;}
.ws130{word-spacing:21.602901px;}
.ws368{word-spacing:21.614233px;}
.ws4f{word-spacing:21.624747px;}
.wsb1{word-spacing:21.650723px;}
.ws112{word-spacing:21.674632px;}
.ws240{word-spacing:21.680610px;}
.ws1d8{word-spacing:21.698542px;}
.ws369{word-spacing:21.700609px;}
.ws23d{word-spacing:21.734408px;}
.ws13c{word-spacing:21.758318px;}
.ws2db{word-spacing:21.800162px;}
.wsbe{word-spacing:21.871891px;}
.ws376{word-spacing:21.888602px;}
.wsbd{word-spacing:21.895801px;}
.wsbc{word-spacing:21.943622px;}
.ws27a{word-spacing:22.015352px;}
.ws16b{word-spacing:22.039264px;}
.ws202{word-spacing:22.051218px;}
.ws1e9{word-spacing:22.087084px;}
.ws18f{word-spacing:22.099040px;}
.ws90{word-spacing:22.128921px;}
.ws323{word-spacing:22.132487px;}
.ws226{word-spacing:22.164791px;}
.ws1e8{word-spacing:22.188703px;}
.wsb{word-spacing:22.236523px;}
.ws16a{word-spacing:22.248479px;}
.wsc1{word-spacing:22.254408px;}
.ws13a{word-spacing:22.284342px;}
.ws13b{word-spacing:22.308254px;}
.ws2fb{word-spacing:22.350096px;}
.wsa2{word-spacing:22.356074px;}
.ws21a{word-spacing:22.457693px;}
.ws394{word-spacing:22.462747px;}
.ws6c{word-spacing:22.505513px;}
.ws218{word-spacing:22.583220px;}
.ws190{word-spacing:22.625064px;}
.ws31{word-spacing:22.632735px;}
.ws15b{word-spacing:22.696795px;}
.ws393{word-spacing:22.716793px;}
.ws1ea{word-spacing:22.750593px;}
.ws30{word-spacing:22.772608px;}
.ws2e{word-spacing:22.794141px;}
.ws26d{word-spacing:22.798413px;}
.ws13{word-spacing:22.894054px;}
.wsf5{word-spacing:22.917964px;}
.ws241{word-spacing:22.923942px;}
.ws196{word-spacing:22.965786px;}
.ws34a{word-spacing:23.199480px;}
.ws1ac{word-spacing:23.219804px;}
.ws373{word-spacing:23.229966px;}
.ws9c{word-spacing:23.234776px;}
.ws374{word-spacing:23.255371px;}
.ws64{word-spacing:23.300528px;}
.ws2fa{word-spacing:23.306505px;}
.ws269{word-spacing:23.312483px;}
.ws34b{word-spacing:23.326503px;}
.ws1ab{word-spacing:23.341745px;}
.ws27f{word-spacing:23.367150px;}
.ws232{word-spacing:23.372259px;}
.ws280{word-spacing:23.387473px;}
.ws113{word-spacing:23.408125px;}
.ws27e{word-spacing:23.438283px;}
.ws375{word-spacing:23.443364px;}
.ws15c{word-spacing:23.527676px;}
.ws268{word-spacing:23.551586px;}
.ws15d{word-spacing:23.575496px;}
.ws197{word-spacing:23.599367px;}
.ws93{word-spacing:23.599406px;}
.ws114{word-spacing:23.641249px;}
.ws1b7{word-spacing:23.647227px;}
.ws125{word-spacing:23.712981px;}
.ws200{word-spacing:23.796666px;}
.ws1ff{word-spacing:23.844486px;}
.ws1e2{word-spacing:23.907808px;}
.ws231{word-spacing:23.940127px;}
.ws33a{word-spacing:23.946375px;}
.ws18a{word-spacing:23.965194px;}
.ws230{word-spacing:23.987947px;}
.ws118{word-spacing:23.993886px;}
.ws117{word-spacing:24.001059px;}
.ws1b0{word-spacing:24.002265px;}
.ws11c{word-spacing:24.029790px;}
.ws11b{word-spacing:24.035762px;}
.ws10c{word-spacing:24.077610px;}
.ws122{word-spacing:24.113476px;}
.ws10d{word-spacing:24.137386px;}
.ws2bf{word-spacing:24.143364px;}
.ws339{word-spacing:24.149611px;}
.ws303{word-spacing:24.185208px;}
.ws1af{word-spacing:24.246150px;}
.ws11d{word-spacing:24.256937px;}
.ws1b9{word-spacing:24.280849px;}
.ws1ba{word-spacing:24.286825px;}
.ws69{word-spacing:24.322691px;}
.ws1cc{word-spacing:24.346601px;}
.wseb{word-spacing:24.370512px;}
.wsa7{word-spacing:24.394422px;}
.wsd5{word-spacing:24.478108px;}
.wsf9{word-spacing:24.490063px;}
.wsc{word-spacing:24.502017px;}
.ws26e{word-spacing:24.597659px;}
.wsb8{word-spacing:24.615591px;}
.ws26f{word-spacing:24.627547px;}
.ws131{word-spacing:24.663412px;}
.ws176{word-spacing:24.735142px;}
.ws34{word-spacing:24.746988px;}
.wsb9{word-spacing:24.759054px;}
.wsbf{word-spacing:24.818829px;}
.wsa6{word-spacing:24.842739px;}
.wsd9{word-spacing:24.848717px;}
.ws1b1{word-spacing:24.855860px;}
.ws1b6{word-spacing:24.884581px;}
.ws11e{word-spacing:24.890559px;}
.wsc0{word-spacing:24.914469px;}
.ws2d4{word-spacing:24.926993px;}
.wsd8{word-spacing:24.944357px;}
.ws299{word-spacing:25.004132px;}
.ws133{word-spacing:25.028044px;}
.wsca{word-spacing:25.051954px;}
.ws217{word-spacing:25.075864px;}
.ws132{word-spacing:25.099773px;}
.ws162{word-spacing:25.159549px;}
.ws2d0{word-spacing:25.213347px;}
.ws219{word-spacing:25.297034px;}
.ws216{word-spacing:25.440488px;}
.ws161{word-spacing:25.524181px;}
.ws2f4{word-spacing:25.542113px;}
.ws310{word-spacing:25.566024px;}
.wsc6{word-spacing:25.595912px;}
.wsfe{word-spacing:25.637754px;}
.ws2a6{word-spacing:25.685575px;}
.ws100{word-spacing:25.697530px;}
.ws30f{word-spacing:25.775238px;}
.ws5e{word-spacing:25.882834px;}
.ws67{word-spacing:26.002385px;}
.ws2f2{word-spacing:26.026296px;}
.ws2f1{word-spacing:26.074117px;}
.ws2d{word-spacing:26.134971px;}
.ws20a{word-spacing:26.157802px;}
.ws2bd{word-spacing:26.199644px;}
.wse9{word-spacing:26.247466px;}
.ws2a5{word-spacing:26.253443px;}
.ws249{word-spacing:26.355061px;}
.ws68{word-spacing:26.378971px;}
.ws2be{word-spacing:26.456680px;}
.ws312{word-spacing:26.516456px;}
.ws367{word-spacing:26.664667px;}
.ws86{word-spacing:26.773490px;}
.ws87{word-spacing:26.797401px;}
.ws308{word-spacing:26.851200px;}
.ws21b{word-spacing:26.881087px;}
.ws201{word-spacing:26.940863px;}
.ws316{word-spacing:27.000639px;}
.ws88{word-spacing:27.042480px;}
.ws12{word-spacing:27.114212px;}
.ws386{word-spacing:27.233730px;}
.ws38b{word-spacing:27.340428px;}
.ws104{word-spacing:27.341358px;}
.ws2ee{word-spacing:27.395156px;}
.wsd2{word-spacing:27.431022px;}
.ws39{word-spacing:27.449369px;}
.wsd1{word-spacing:27.502753px;}
.ws2f3{word-spacing:27.514707px;}
.ws103{word-spacing:27.538619px;}
.ws38{word-spacing:27.540230px;}
.ws16f{word-spacing:27.586439px;}
.ws96{word-spacing:27.622304px;}
.ws23c{word-spacing:27.634258px;}
.ws387{word-spacing:27.655446px;}
.wsf4{word-spacing:27.723922px;}
.wsf3{word-spacing:27.771743px;}
.ws2ae{word-spacing:27.819563px;}
.ws1ee{word-spacing:27.903249px;}
.ws1f9{word-spacing:27.974980px;}
.ws50{word-spacing:27.976095px;}
.ws30b{word-spacing:27.992912px;}
.ws2c{word-spacing:28.012515px;}
.wsee{word-spacing:28.022800px;}
.wscb{word-spacing:28.046698px;}
.wsed{word-spacing:28.088553px;}
.wsaf{word-spacing:28.196151px;}
.ws123{word-spacing:28.220060px;}
.ws124{word-spacing:28.243970px;}
.ws35e{word-spacing:28.290561px;}
.wsec{word-spacing:28.291790px;}
.ws20b{word-spacing:28.297768px;}
.ws1f8{word-spacing:28.309724px;}
.ws15a{word-spacing:28.339612px;}
.ws35f{word-spacing:28.351533px;}
.wsef{word-spacing:28.357544px;}
.ws5d{word-spacing:28.405365px;}
.ws17d{word-spacing:28.411341px;}
.ws17b{word-spacing:28.417320px;}
.wsf0{word-spacing:28.447207px;}
.ws17c{word-spacing:28.477095px;}
.ws1ef{word-spacing:28.536870px;}
.wsa1{word-spacing:28.584692px;}
.ws33b{word-spacing:28.661468px;}
.wscc{word-spacing:28.698265px;}
.ws5c{word-spacing:28.746085px;}
.ws5b{word-spacing:28.817816px;}
.ws242{word-spacing:29.006973px;}
.wsd6{word-spacing:29.038985px;}
.ws352{word-spacing:29.078104px;}
.ws244{word-spacing:29.103508px;}
.ws350{word-spacing:29.118750px;}
.ws351{word-spacing:29.144155px;}
.wsde{word-spacing:29.182448px;}
.wsdd{word-spacing:29.367751px;}
.ws1cd{word-spacing:29.379707px;}
.ws243{word-spacing:29.413436px;}
.ws314{word-spacing:29.475348px;}
.wse7{word-spacing:29.499258px;}
.wse8{word-spacing:29.756292px;}
.ws29c{word-spacing:29.768248px;}
.ws315{word-spacing:29.839980px;}
.wsf{word-spacing:29.881821px;}
.ws29d{word-spacing:30.150812px;}
.wse0{word-spacing:30.258409px;}
.ws235{word-spacing:30.330139px;}
.ws160{word-spacing:30.354048px;}
.wsdf{word-spacing:30.401870px;}
.ws233{word-spacing:30.670860px;}
.ws205{word-spacing:30.694770px;}
.ws389{word-spacing:30.714160px;}
.ws234{word-spacing:30.718680px;}
.ws236{word-spacing:30.772477px;}
.ws204{word-spacing:30.862141px;}
.ws2a2{word-spacing:30.915940px;}
.ws23b{word-spacing:31.023536px;}
.ws1d1{word-spacing:31.029512px;}
.wse3{word-spacing:31.083311px;}
.ws2f9{word-spacing:31.196886px;}
.ws11a{word-spacing:31.256662px;}
.ws193{word-spacing:31.352301px;}
.wse2{word-spacing:31.358278px;}
.wsc4{word-spacing:31.370233px;}
.ws2a0{word-spacing:31.424033px;}
.ws20{word-spacing:31.452809px;}
.ws1cf{word-spacing:31.453921px;}
.ws191{word-spacing:31.465877px;}
.ws1d0{word-spacing:31.465894px;}
.ws51{word-spacing:31.504408px;}
.wsc3{word-spacing:31.513696px;}
.ws8{word-spacing:31.533103px;}
.ws29f{word-spacing:31.537604px;}
.ws55{word-spacing:31.542664px;}
.ws52{word-spacing:31.561793px;}
.ws1f{word-spacing:31.571359px;}
.ws7{word-spacing:31.600050px;}
.ws53{word-spacing:31.686127px;}
.ws1f1{word-spacing:31.687045px;}
.ws1f2{word-spacing:31.693023px;}
.ws19b{word-spacing:31.710955px;}
.ws198{word-spacing:31.806595px;}
.ws19a{word-spacing:31.806596px;}
.ws1f0{word-spacing:31.878326px;}
.ws56{word-spacing:31.906105px;}
.ws18d{word-spacing:31.938102px;}
.ws270{word-spacing:31.991901px;}
.ws34e{word-spacing:32.030120px;}
.ws18c{word-spacing:32.051677px;}
.ws199{word-spacing:32.063633px;}
.ws2ef{word-spacing:32.099496px;}
.ws2f0{word-spacing:32.219048px;}
.ws18e{word-spacing:32.356531px;}
.wsb0{word-spacing:32.368487px;}
.ws24d{word-spacing:32.406106px;}
.ws31c{word-spacing:32.416306px;}
.wsa8{word-spacing:32.619545px;}
.wsa9{word-spacing:32.667365px;}
.ws10b{word-spacing:33.121658px;}
.wsd7{word-spacing:33.318920px;}
.ws63{word-spacing:33.659638px;}
.ws62{word-spacing:33.803101px;}
.ws38f{word-spacing:33.986274px;}
.ws2a4{word-spacing:34.024271px;}
.ws141{word-spacing:34.143823px;}
.ws390{word-spacing:34.286046px;}
.ws140{word-spacing:34.364993px;}
.ws2fe{word-spacing:34.460633px;}
.ws2fd{word-spacing:34.574208px;}
.ws26b{word-spacing:34.801354px;}
.ws166{word-spacing:35.255647px;}
.wsf1{word-spacing:35.476818px;}
.ws22{word-spacing:35.765176px;}
.ws89{word-spacing:35.775696px;}
.ws5a{word-spacing:35.919148px;}
.ws23{word-spacing:35.948092px;}
.ws31e{word-spacing:36.020774px;}
.ws278{word-spacing:36.229989px;}
.ws31f{word-spacing:36.272673px;}
.ws31d{word-spacing:36.522891px;}
.ws31a{word-spacing:36.720149px;}
.ws215{word-spacing:36.732105px;}
.ws66{word-spacing:36.911432px;}
.ws319{word-spacing:37.007072px;}
.ws372{word-spacing:37.471784px;}
.ws371{word-spacing:37.644536px;}
.ws2e0{word-spacing:37.733573px;}
.wsf7{word-spacing:38.609061px;}
.ws35c{word-spacing:38.777581px;}
.ws35d{word-spacing:38.894441px;}
.wsc5{word-spacing:41.287007px;}
.ws1e7{word-spacing:51.944995px;}
.ws21{word-spacing:55.651521px;}
.ws143{word-spacing:58.753437px;}
.ws1c8{word-spacing:60.056545px;}
.ws178{word-spacing:61.156415px;}
.ws2de{word-spacing:62.058519px;}
.ws313{word-spacing:64.462007px;}
.ws13d{word-spacing:71.787984px;}
.ws8f{word-spacing:71.838196px;}
.ws287{word-spacing:90.409284px;}
.ws253{word-spacing:102.853063px;}
.ws2df{word-spacing:120.484707px;}
.ws2e1{word-spacing:120.497341px;}
.ws1a3{word-spacing:190.742817px;}
.ws1a6{word-spacing:196.636684px;}
.ws183{word-spacing:261.835032px;}
.ws186{word-spacing:267.728899px;}
.ws185{word-spacing:350.964538px;}
.ws1a0{word-spacing:353.886067px;}
.ws1a5{word-spacing:384.300458px;}
._31{margin-left:-456.495221px;}
._27{margin-left:-34.546947px;}
._23{margin-left:-24.695934px;}
._33{margin-left:-17.624134px;}
._3c{margin-left:-16.137002px;}
._2{margin-left:-13.895999px;}
._4{margin-left:-10.332000px;}
._3{margin-left:-3.456000px;}
._5{margin-left:-2.156400px;}
._0{margin-left:-1.069200px;}
._7{width:1.024800px;}
._1{width:2.268000px;}
._17{width:10.195479px;}
._15{width:12.266136px;}
._11{width:13.820656px;}
._1c{width:14.897050px;}
._1b{width:16.157336px;}
._b{width:17.472407px;}
._9{width:18.518480px;}
._16{width:19.721461px;}
._d{width:21.139994px;}
._f{width:22.401400px;}
._c{width:24.005880px;}
._8{width:25.575341px;}
._18{width:27.138122px;}
._3a{width:28.148329px;}
._10{width:29.174543px;}
._a{width:31.026880px;}
._e{width:32.569298px;}
._1d{width:33.854260px;}
._19{width:34.949126px;}
._20{width:36.552778px;}
._1a{width:38.399845px;}
._21{width:39.971940px;}
._1f{width:42.416763px;}
._26{width:44.356270px;}
._22{width:50.788873px;}
._13{width:53.900017px;}
._6{width:58.228799px;}
._25{width:60.312865px;}
._39{width:62.158211px;}
._3b{width:65.792361px;}
._24{width:71.909927px;}
._38{width:74.569915px;}
._37{width:87.026482px;}
._2d{width:89.429269px;}
._36{width:99.443169px;}
._2a{width:110.499847px;}
._35{width:117.600901px;}
._34{width:131.213909px;}
._14{width:227.327989px;}
._2e{width:344.623560px;}
._2c{width:351.015347px;}
._28{width:376.186219px;}
._30{width:384.351267px;}
._12{width:413.107921px;}
._29{width:466.220143px;}
._2b{width:491.731422px;}
._32{width:842.919540px;}
._2f{width:866.246023px;}
._1e{width:1619.807366px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:29.887799px;}
.fs11{font-size:33.869399px;}
.fs5{font-size:36.463200px;}
.fsf{font-size:39.845999px;}
.fse{font-size:41.842800px;}
.fs14{font-size:43.645200px;}
.fsb{font-size:47.821200px;}
.fs12{font-size:49.162199px;}
.fs15{font-size:49.846200px;}
.fsc{font-size:50.809198px;}
.fs13{font-size:50.831400px;}
.fsa{font-size:53.797800px;}
.fs4{font-size:59.775599px;}
.fsd{font-size:71.730600px;}
.fs6{font-size:83.685600px;}
.fs3{font-size:95.641800px;}
.fs8{font-size:107.596800px;}
.fs0{font-size:108.000000px;}
.fs7{font-size:167.373000px;}
.fs2{font-size:168.000000px;}
.fs9{font-size:191.282398px;}
.fs1{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y88{bottom:70.326771px;}
.y87{bottom:85.293890px;}
.y86{bottom:100.175905px;}
.y271{bottom:101.026348px;}
.y2f{bottom:108.170105px;}
.y60{bottom:110.289567px;}
.y246{bottom:110.384372px;}
.yaa{bottom:110.386728px;}
.y11d{bottom:110.464753px;}
.y283{bottom:111.999733px;}
.y14f{bottom:113.187001px;}
.y169{bottom:113.187115px;}
.y155{bottom:113.187185px;}
.y201{bottom:114.973652px;}
.y270{bottom:115.993469px;}
.y1f6{bottom:117.359745px;}
.y1aa{bottom:117.614428px;}
.y2dd{bottom:118.118479px;}
.y106{bottom:119.480575px;}
.y2ce{bottom:120.168038px;}
.y260{bottom:122.121014px;}
.y5f{bottom:123.811002px;}
.y1bf{bottom:123.988541px;}
.y311{bottom:125.429521px;}
.y14e{bottom:128.154120px;}
.y168{bottom:128.154236px;}
.y154{bottom:128.154305px;}
.y18e{bottom:128.155055px;}
.yc6{bottom:128.240305px;}
.y245{bottom:128.242332px;}
.ya9{bottom:128.244688px;}
.y11c{bottom:128.918654px;}
.y85{bottom:129.429301px;}
.y282{bottom:129.942867px;}
.y26f{bottom:130.875481px;}
.y200{bottom:132.916798px;}
.y2dc{bottom:133.000493px;}
.y134{bottom:133.087228px;}
.y1f5{bottom:135.302885px;}
.y1a9{bottom:135.472388px;}
.y5e{bottom:137.247567px;}
.y105{bottom:137.423715px;}
.y2cd{bottom:138.111178px;}
.y25f{bottom:140.064159px;}
.y310{bottom:140.311535px;}
.y1be{bottom:141.931681px;}
.y14d{bottom:143.036134px;}
.y167{bottom:143.036247px;}
.y84{bottom:144.396420px;}
.y26e{bottom:145.842602px;}
.y18d{bottom:146.098195px;}
.yc5{bottom:146.183446px;}
.y244{bottom:146.185472px;}
.ya8{bottom:146.187828px;}
.y11b{bottom:147.372555px;}
.y2db{bottom:147.882507px;}
.y281{bottom:147.886024px;}
.y1ff{bottom:150.774754px;}
.y133{bottom:151.030368px;}
.y103{bottom:152.900848px;}
.y1f4{bottom:153.160845px;}
.y1a8{bottom:153.415528px;}
.y30f{bottom:155.278655px;}
.y104{bottom:155.366856px;}
.y102{bottom:155.367324px;}
.y2cc{bottom:156.054319px;}
.y14c{bottom:158.003254px;}
.y25e{bottom:158.007305px;}
.y83{bottom:159.363540px;}
.y1bd{bottom:159.789641px;}
.y11a{bottom:162.339674px;}
.y2da{bottom:162.849627px;}
.y18c{bottom:163.956156px;}
.yd4{bottom:163.957883px;}
.y5d{bottom:164.120698px;}
.yc4{bottom:164.126586px;}
.y243{bottom:164.128613px;}
.ya7{bottom:164.130968px;}
.y1fd{bottom:165.826404px;}
.y280{bottom:165.829159px;}
.y334{bottom:168.883495px;}
.y132{bottom:168.973509px;}
.y30e{bottom:170.160669px;}
.y1f3{bottom:171.103985px;}
.y1a7{bottom:171.358669px;}
.y101{bottom:173.310465px;}
.y2cb{bottom:173.997459px;}
.y82{bottom:174.330659px;}
.y25d{bottom:175.950439px;}
.y5c{bottom:177.557240px;}
.y2d9{bottom:177.731641px;}
.y1bc{bottom:177.732782px;}
.y1fc{bottom:180.793523px;}
.y119{bottom:180.793575px;}
.y18b{bottom:181.899296px;}
.yd3{bottom:181.901023px;}
.yc3{bottom:182.069726px;}
.y242{bottom:182.071753px;}
.ya6{bottom:182.074109px;}
.y27f{bottom:183.772293px;}
.y333{bottom:183.850616px;}
.y30d{bottom:185.042683px;}
.y131{bottom:186.916649px;}
.y26c{bottom:187.537010px;}
.yff{bottom:188.787449px;}
.y1f2{bottom:189.047126px;}
.y1a6{bottom:189.301809px;}
.y5b{bottom:190.993806px;}
.y100{bottom:191.253605px;}
.yfe{bottom:191.253759px;}
.y2ca{bottom:191.940599px;}
.y2d8{bottom:192.613655px;}
.y25c{bottom:193.893585px;}
.y1bb{bottom:195.675922px;}
.y1fb{bottom:195.760643px;}
.y81{bottom:196.695598px;}
.y232{bottom:198.226486px;}
.y332{bottom:198.817749px;}
.y118{bottom:199.247476px;}
.yd2{bottom:199.844163px;}
.y30c{bottom:200.009803px;}
.yc2{bottom:200.012866px;}
.y241{bottom:200.014893px;}
.ya5{bottom:200.017249px;}
.y27e{bottom:201.715439px;}
.y5a{bottom:204.515252px;}
.yfc{bottom:206.645691px;}
.y1f1{bottom:206.990266px;}
.y1a5{bottom:207.244949px;}
.y2d7{bottom:207.580775px;}
.yfd{bottom:209.196899px;}
.yfb{bottom:209.198610px;}
.y2c9{bottom:209.883739px;}
.y80{bottom:211.662718px;}
.y25b{bottom:211.751541px;}
.y231{bottom:213.108497px;}
.y1ba{bottom:213.619062px;}
.y331{bottom:213.784859px;}
.y30b{bottom:214.891817px;}
.yd1{bottom:217.787304px;}
.y59{bottom:217.951829px;}
.yc1{bottom:217.956007px;}
.y240{bottom:217.958033px;}
.ya4{bottom:217.960389px;}
.y117{bottom:218.466055px;}
.y27d{bottom:219.658585px;}
.y2d6{bottom:222.462789px;}
.y18a{bottom:223.738010px;}
.y1f0{bottom:224.933406px;}
.y1a4{bottom:225.188090px;}
.y7f{bottom:226.629838px;}
.yfa{bottom:227.141750px;}
.y2c8{bottom:227.826880px;}
.y230{bottom:228.075607px;}
.y330{bottom:228.666893px;}
.y130{bottom:228.755859px;}
.y25a{bottom:229.694687px;}
.y30a{bottom:229.858937px;}
.y58{bottom:231.388383px;}
.y1b9{bottom:231.562202px;}
.y26b{bottom:232.366081px;}
.y116{bottom:233.433175px;}
.yd0{bottom:235.730444px;}
.y23f{bottom:235.901174px;}
.ya3{bottom:235.903530px;}
.yc0{bottom:235.905870px;}
.y2d5{bottom:237.429909px;}
.y27c{bottom:237.516541px;}
.y7e{bottom:241.511852px;}
.y1ef{bottom:242.876547px;}
.y1a3{bottom:243.131230px;}
.y32f{bottom:243.633980px;}
.y309{bottom:244.740951px;}
.y57{bottom:244.824937px;}
.yf9{bottom:244.999710px;}
.y2c7{bottom:245.770020px;}
.y259{bottom:247.637810px;}
.ycf{bottom:253.673584px;}
.y23e{bottom:253.844314px;}
.ya2{bottom:253.846670px;}
.ybf{bottom:253.849010px;}
.y27b{bottom:255.459686px;}
.y115{bottom:256.308746px;}
.y56{bottom:258.261514px;}
.y32e{bottom:258.601112px;}
.y22b{bottom:258.903150px;}
.y308{bottom:259.622965px;}
.y189{bottom:259.795189px;}
.y1ee{bottom:260.819687px;}
.y1a2{bottom:261.074370px;}
.yf8{bottom:262.942850px;}
.y2c6{bottom:263.627980px;}
.y7d{bottom:263.961896px;}
.y258{bottom:265.580956px;}
.yce{bottom:271.616725px;}
.y55{bottom:271.698067px;}
.y23d{bottom:271.702274px;}
.ya1{bottom:271.704630px;}
.ybe{bottom:271.706971px;}
.y27a{bottom:273.402809px;}
.y32d{bottom:273.483124px;}
.y307{bottom:274.590085px;}
.y2d4{bottom:276.207893px;}
.y1ed{bottom:278.762827px;}
.y7c{bottom:278.929016px;}
.y1a1{bottom:278.932330px;}
.y229{bottom:281.025632px;}
.y2c5{bottom:281.571120px;}
.y257{bottom:283.524101px;}
.y54{bottom:285.219514px;}
.y32c{bottom:288.450256px;}
.y306{bottom:289.472099px;}
.ycd{bottom:289.559865px;}
.y23c{bottom:289.645414px;}
.ya0{bottom:289.647770px;}
.ybd{bottom:289.650111px;}
.y279{bottom:291.345955px;}
.y7b{bottom:293.896135px;}
.y12f{bottom:294.492960px;}
.y1d6{bottom:294.827116px;}
.y224{bottom:295.637861px;}
.y1ec{bottom:296.620787px;}
.y1a0{bottom:296.875470px;}
.yf5{bottom:297.808462px;}
.y53{bottom:298.656068px;}
.y2c4{bottom:299.514261px;}
.y29{bottom:299.940482px;}
.y256{bottom:301.467247px;}
.y32b{bottom:303.417366px;}
.y305{bottom:304.354113px;}
.y113{bottom:305.461349px;}
.ycc{bottom:307.417825px;}
.y23b{bottom:307.588555px;}
.y9f{bottom:307.590910px;}
.ybc{bottom:307.593251px;}
.y114{bottom:307.927505px;}
.y112{bottom:307.927648px;}
.yf7{bottom:308.012157px;}
.yf4{bottom:308.012459px;}
.y278{bottom:309.289101px;}
.y1d5{bottom:309.794235px;}
.y52{bottom:312.092645px;}
.y12e{bottom:312.436100px;}
.y1eb{bottom:314.563927px;}
.y19f{bottom:314.818611px;}
.y7a{bottom:316.261074px;}
.y2c3{bottom:317.457401px;}
.y304{bottom:319.321233px;}
.y255{bottom:319.410370px;}
.y110{bottom:323.319603px;}
.ycb{bottom:325.360965px;}
.y51{bottom:325.529198px;}
.y23a{bottom:325.531695px;}
.y188{bottom:325.531838px;}
.y9e{bottom:325.534051px;}
.ybb{bottom:325.536391px;}
.y10f{bottom:325.870735px;}
.y111{bottom:325.870789px;}
.y225{bottom:326.424459px;}
.y277{bottom:327.232224px;}
.y22a{bottom:327.488714px;}
.y1d4{bottom:328.248136px;}
.yf6{bottom:329.102483px;}
.y12d{bottom:330.379240px;}
.y79{bottom:331.228194px;}
.y1ea{bottom:332.507068px;}
.y19e{bottom:332.761751px;}
.y303{bottom:334.203247px;}
.y2c2{bottom:335.400541px;}
.y254{bottom:337.353516px;}
.y50{bottom:338.965752px;}
.y2d3{bottom:340.496855px;}
.y1d3{bottom:343.130150px;}
.yca{bottom:343.304106px;}
.y239{bottom:343.474835px;}
.y187{bottom:343.474978px;}
.y9d{bottom:343.477191px;}
.yba{bottom:343.479532px;}
.y276{bottom:345.175369px;}
.y22f{bottom:347.870712px;}
.y12c{bottom:348.237200px;}
.y302{bottom:349.170366px;}
.y1e9{bottom:350.450208px;}
.y19d{bottom:350.704891px;}
.yf1{bottom:351.383223px;}
.y4f{bottom:352.402306px;}
.y2c1{bottom:353.343682px;}
.y78{bottom:353.593133px;}
.y28{bottom:353.769901px;}
.y253{bottom:355.211472px;}
.y2d2{bottom:355.463974px;}
.y226{bottom:357.213506px;}
.y1d2{bottom:358.097270px;}
.yc9{bottom:361.247246px;}
.y238{bottom:361.417976px;}
.y186{bottom:361.418118px;}
.y9c{bottom:361.420331px;}
.yb9{bottom:361.422672px;}
.yf3{bottom:361.586339px;}
.yf0{bottom:361.588271px;}
.y275{bottom:363.118515px;}
.y301{bottom:364.052381px;}
.y4e{bottom:365.838883px;}
.y12b{bottom:366.180340px;}
.y10c{bottom:366.264492px;}
.y10b{bottom:366.264853px;}
.y1e8{bottom:368.393348px;}
.y77{bottom:368.560252px;}
.y19c{bottom:368.648032px;}
.y2d1{bottom:370.345988px;}
.y2c0{bottom:371.286822px;}
.y27{bottom:371.713041px;}
.y252{bottom:373.154617px;}
.y26d{bottom:376.447609px;}
.y1d1{bottom:376.551171px;}
.y10a{bottom:377.319603px;}
.y22e{bottom:377.923051px;}
.y300{bottom:378.934395px;}
.y10d{bottom:379.275604px;}
.y4d{bottom:379.360329px;}
.y237{bottom:379.361116px;}
.y185{bottom:379.361259px;}
.y9b{bottom:379.363472px;}
.yb8{bottom:379.365812px;}
.y274{bottom:380.976471px;}
.yf2{bottom:382.676665px;}
.y76{bottom:383.527372px;}
.y12a{bottom:384.123481px;}
.y107{bottom:384.212119px;}
.y2d0{bottom:385.313108px;}
.y1e7{bottom:386.336489px;}
.y19b{bottom:386.591172px;}
.y109{bottom:386.929047px;}
.y227{bottom:388.001363px;}
.y2bf{bottom:389.229962px;}
.y26{bottom:389.656182px;}
.y251{bottom:391.097763px;}
.y1d0{bottom:391.518290px;}
.y4c{bottom:392.796883px;}
.y2ff{bottom:393.901514px;}
.y236{bottom:397.304256px;}
.y184{bottom:397.304399px;}
.y9a{bottom:397.306612px;}
.yb7{bottom:397.308953px;}
.y153{bottom:397.308954px;}
.y75{bottom:398.494492px;}
.y273{bottom:398.919617px;}
.y108{bottom:399.514770px;}
.y2cf{bottom:400.280228px;}
.y129{bottom:402.066621px;}
.yc8{bottom:403.086131px;}
.y1e6{bottom:404.279629px;}
.y19a{bottom:404.534312px;}
.yef{bottom:405.553224px;}
.y1cf{bottom:406.485410px;}
.y2be{bottom:407.087922px;}
.y25{bottom:407.599322px;}
.y22d{bottom:407.975419px;}
.y2fe{bottom:408.783529px;}
.y250{bottom:409.040909px;}
.y10e{bottom:409.804642px;}
.y235{bottom:415.162216px;}
.y183{bottom:415.162359px;}
.y99{bottom:415.164572px;}
.yb6{bottom:415.166913px;}
.y152{bottom:415.166914px;}
.y228{bottom:418.790410px;}
.y4b{bottom:419.669946px;}
.y128{bottom:420.009761px;}
.y1e5{bottom:422.222769px;}
.y199{bottom:422.392272px;}
.yee{bottom:423.496364px;}
.y2fd{bottom:423.750648px;}
.y1ce{bottom:424.939311px;}
.y2bd{bottom:425.031062px;}
.y24{bottom:425.457282px;}
.y24f{bottom:426.984055px;}
.y2a2{bottom:429.363150px;}
.y182{bottom:433.105499px;}
.y1b8{bottom:433.105831px;}
.y180{bottom:433.106448px;}
.y98{bottom:433.107712px;}
.yb5{bottom:433.110053px;}
.y269{bottom:433.240906px;}
.y4a{bottom:434.636529px;}
.y127{bottom:437.952902px;}
.y74{bottom:437.955387px;}
.y22c{bottom:438.026235px;}
.y2fc{bottom:438.632662px;}
.yc7{bottom:439.143311px;}
.y181{bottom:439.738495px;}
.y1cd{bottom:439.821325px;}
.y1e4{bottom:440.080729px;}
.y198{bottom:440.335413px;}
.yed{bottom:441.439504px;}
.y2bc{bottom:442.974203px;}
.y23{bottom:443.400422px;}
.y2a1{bottom:444.245184px;}
.y24e{bottom:444.927200px;}
.y49{bottom:449.603066px;}
.y1b7{bottom:451.048971px;}
.y17f{bottom:451.049588px;}
.y97{bottom:451.050852px;}
.yb4{bottom:451.053193px;}
.y151{bottom:451.053195px;}
.y2fb{bottom:453.514677px;}
.y1cc{bottom:454.788445px;}
.y73{bottom:455.813347px;}
.y126{bottom:455.896042px;}
.y124{bottom:455.896500px;}
.y234{bottom:457.086594px;}
.y1e3{bottom:458.023869px;}
.y197{bottom:458.278553px;}
.y2a0{bottom:459.212271px;}
.yec{bottom:459.382645px;}
.y2bb{bottom:460.917343px;}
.y22{bottom:461.343562px;}
.y125{bottom:462.529037px;}
.y24d{bottom:462.870346px;}
.y48{bottom:464.484872px;}
.y2fa{bottom:468.477402px;}
.y1b6{bottom:468.992111px;}
.y17e{bottom:468.992728px;}
.y1b4{bottom:468.993044px;}
.y96{bottom:468.993993px;}
.yb3{bottom:468.996333px;}
.y1c8{bottom:473.243616px;}
.y72{bottom:473.756487px;}
.y123{bottom:473.839640px;}
.y29f{bottom:474.179403px;}
.y1b5{bottom:475.625107px;}
.y1e2{bottom:475.967010px;}
.y196{bottom:476.221693px;}
.y2ba{bottom:478.860483px;}
.y268{bottom:479.775421px;}
.y24c{bottom:480.813446px;}
.y21f{bottom:482.484452px;}
.y2f9{bottom:483.359417px;}
.y21{bottom:483.538242px;}
.y17d{bottom:486.935868px;}
.y1b3{bottom:486.936185px;}
.y95{bottom:486.937133px;}
.yb2{bottom:486.939474px;}
.y1cb{bottom:488.209465px;}
.y1c7{bottom:488.210735px;}
.y122{bottom:491.697600px;}
.y71{bottom:491.699627px;}
.y1e1{bottom:493.910150px;}
.y195{bottom:494.164833px;}
.y2b9{bottom:496.803624px;}
.y2f8{bottom:498.241431px;}
.y24b{bottom:498.671448px;}
.yeb{bottom:501.222015px;}
.y8{bottom:501.388779px;}
.y1ca{bottom:503.176585px;}
.y1c6{bottom:503.177855px;}
.y21d{bottom:504.638840px;}
.y29d{bottom:504.749095px;}
.y17c{bottom:504.879009px;}
.y1b2{bottom:504.879325px;}
.y94{bottom:504.880273px;}
.yb1{bottom:504.882614px;}
.y70{bottom:509.642768px;}
.y1e0{bottom:511.853290px;}
.y194{bottom:512.107974px;}
.y2f7{bottom:513.208550px;}
.y14b{bottom:514.147476px;}
.y2b8{bottom:514.746764px;}
.y24a{bottom:516.614548px;}
.y1c9{bottom:518.058599px;}
.y1c5{bottom:518.059869px;}
.y213{bottom:519.219117px;}
.y20{bottom:519.339343px;}
.y29b{bottom:522.364391px;}
.y17b{bottom:522.822149px;}
.y1b1{bottom:522.822465px;}
.y93{bottom:522.823414px;}
.yb0{bottom:522.825754px;}
.y166{bottom:522.825760px;}
.y6f{bottom:527.585908px;}
.y2f6{bottom:528.090565px;}
.y14a{bottom:529.029491px;}
.y1df{bottom:529.796431px;}
.y193{bottom:530.051114px;}
.y2b7{bottom:532.689904px;}
.y121{bottom:533.536972px;}
.y249{bottom:534.557693px;}
.y214{bottom:536.327576px;}
.y290{bottom:537.007976px;}
.y1c4{bottom:537.278449px;}
.y21e{bottom:538.005143px;}
.y17a{bottom:540.765289px;}
.y1b0{bottom:540.765606px;}
.y92{bottom:540.766554px;}
.y178{bottom:540.767630px;}
.yaf{bottom:540.768895px;}
.y165{bottom:540.768906px;}
.y1f{bottom:541.534022px;}
.y32a{bottom:543.057678px;}
.y2f5{bottom:543.057684px;}
.y7{bottom:543.388779px;}
.y149{bottom:543.996610px;}
.y6e{bottom:545.529048px;}
.y179{bottom:547.398285px;}
.y1de{bottom:547.739571px;}
.y192{bottom:547.994254px;}
.y2b6{bottom:550.547864px;}
.y291{bottom:552.371807px;}
.y248{bottom:552.500839px;}
.y215{bottom:553.434800px;}
.y47{bottom:553.952179px;}
.y2f4{bottom:557.939698px;}
.y329{bottom:557.939713px;}
.y1af{bottom:558.623566px;}
.y91{bottom:558.624514px;}
.y177{bottom:558.625590px;}
.yae{bottom:558.626855px;}
.y164{bottom:558.626862px;}
.y148{bottom:558.963730px;}
.y1c3{bottom:560.239125px;}
.y6d{bottom:563.472188px;}
.y1dd{bottom:565.682711px;}
.y191{bottom:565.852214px;}
.yea{bottom:566.957714px;}
.y292{bottom:567.738155px;}
.y29c{bottom:568.081798px;}
.y2b5{bottom:568.491005px;}
.y46{bottom:568.918716px;}
.y247{bottom:570.443985px;}
.y216{bottom:570.543213px;}
.y328{bottom:572.821701px;}
.y2f3{bottom:572.821713px;}
.y1c2{bottom:575.121140px;}
.y90{bottom:576.567654px;}
.y176{bottom:576.568730px;}
.yad{bottom:576.569995px;}
.y163{bottom:576.570007px;}
.y1e{bottom:577.335123px;}
.y6c{bottom:581.415329px;}
.y293{bottom:583.104503px;}
.y1dc{bottom:583.540671px;}
.y190{bottom:583.795355px;}
.y45{bottom:583.800522px;}
.ye9{bottom:584.900854px;}
.y2b4{bottom:586.434145px;}
.y217{bottom:587.651673px;}
.y2f2{bottom:587.788832px;}
.y327{bottom:587.788834px;}
.y223{bottom:589.673856px;}
.y8f{bottom:594.510795px;}
.y175{bottom:594.511871px;}
.yac{bottom:594.513135px;}
.y294{bottom:598.468334px;}
.y44{bottom:598.767059px;}
.y6b{bottom:599.273289px;}
.y120{bottom:599.357580px;}
.y1ae{bottom:600.547943px;}
.y1db{bottom:601.483812px;}
.y18f{bottom:601.738495px;}
.y326{bottom:602.670822px;}
.y2f1{bottom:602.670847px;}
.ye8{bottom:602.843994px;}
.ye6{bottom:602.846550px;}
.y2b3{bottom:604.377285px;}
.y218{bottom:604.760132px;}
.ye7{bottom:609.477173px;}
.y8e{bottom:612.453935px;}
.y174{bottom:612.455011px;}
.y162{bottom:612.456253px;}
.y1d{bottom:612.456276px;}
.y43{bottom:613.733643px;}
.y295{bottom:613.832164px;}
.y3{bottom:615.296722px;}
.y2e{bottom:616.023874px;}
.y6a{bottom:617.216429px;}
.y11f{bottom:617.300720px;}
.y222{bottom:617.383201px;}
.y325{bottom:617.552856px;}
.y2f0{bottom:617.552861px;}
.y263{bottom:617.810989px;}
.y1da{bottom:619.426952px;}
.ye5{bottom:620.789690px;}
.y1c1{bottom:621.127225px;}
.y219{bottom:621.867310px;}
.y26a{bottom:622.149353px;}
.y2b2{bottom:622.320425px;}
.y296{bottom:629.198513px;}
.y8d{bottom:630.397075px;}
.y173{bottom:630.398151px;}
.y1c{bottom:630.399416px;}
.y2ef{bottom:632.519980px;}
.y324{bottom:632.519989px;}
.y69{bottom:635.159569px;}
.y1c0{bottom:636.094345px;}
.y1d9{bottom:637.370092px;}
.ye4{bottom:638.732831px;}
.y21a{bottom:638.975770px;}
.y2b1{bottom:640.263566px;}
.y297{bottom:644.562389px;}
.y221{bottom:645.091041px;}
.y2d{bottom:645.873917px;}
.y323{bottom:647.401978px;}
.y2ee{bottom:647.401995px;}
.y8c{bottom:648.340215px;}
.y172{bottom:648.341291px;}
.y1b{bottom:648.342556px;}
.y1ac{bottom:649.105238px;}
.y1d8{bottom:655.313232px;}
.y21b{bottom:656.084229px;}
.ye3{bottom:656.675971px;}
.y2b0{bottom:658.206706px;}
.y261{bottom:659.077194px;}
.y298{bottom:659.928691px;}
.y146{bottom:661.943949px;}
.y322{bottom:662.369110px;}
.y2ed{bottom:662.369114px;}
.y1ab{bottom:664.072357px;}
.y8b{bottom:666.283356px;}
.y171{bottom:666.284432px;}
.y161{bottom:666.285690px;}
.y1a{bottom:666.285696px;}
.y220{bottom:672.798874px;}
.y21c{bottom:673.192643px;}
.ye2{bottom:674.533931px;}
.y299{bottom:675.295040px;}
.y2af{bottom:676.149846px;}
.y2ec{bottom:677.251128px;}
.y321{bottom:677.251144px;}
.y266{bottom:677.757706px;}
.y29e{bottom:678.263729px;}
.y145{bottom:680.397850px;}
.y170{bottom:684.227572px;}
.y19{bottom:684.228837px;}
.y68{bottom:688.988989px;}
.y29a{bottom:690.658870px;}
.y320{bottom:692.133133px;}
.y2eb{bottom:692.133143px;}
.ye1{bottom:692.477071px;}
.y2ae{bottom:694.007806px;}
.y144{bottom:695.364970px;}
.y2c{bottom:699.703812px;}
.y16f{bottom:702.085532px;}
.y160{bottom:702.086792px;}
.y18{bottom:702.086797px;}
.y1f9{bottom:702.679851px;}
.y3c{bottom:706.680084px;}
.y67{bottom:706.932129px;}
.y2ea{bottom:707.100262px;}
.y31f{bottom:707.100265px;}
.y8a{bottom:708.122681px;}
.y20e{bottom:708.663754px;}
.ye0{bottom:710.420212px;}
.y2ad{bottom:711.950947px;}
.y28e{bottom:713.515047px;}
.y143{bottom:713.818871px;}
.y1f8{bottom:717.646970px;}
.y16e{bottom:720.028672px;}
.y17{bottom:720.029937px;}
.y3b{bottom:721.646622px;}
.y2e9{bottom:721.982276px;}
.y31e{bottom:721.982300px;}
.y265{bottom:726.267150px;}
.ydf{bottom:728.363352px;}
.y142{bottom:728.785990px;}
.y2ac{bottom:729.894087px;}
.y20c{bottom:730.822034px;}
.y28c{bottom:732.442660px;}
.y1f7{bottom:732.614090px;}
.y6{bottom:735.484222px;}
.y3a{bottom:736.613159px;}
.y31d{bottom:736.949387px;}
.y2e8{bottom:736.949396px;}
.y16d{bottom:737.971813px;}
.y16{bottom:737.973077px;}
.y15f{bottom:737.973083px;}
.y202{bottom:745.398602px;}
.yde{bottom:746.306492px;}
.y284{bottom:746.997759px;}
.y141{bottom:747.239891px;}
.y2ab{bottom:747.837227px;}
.y39{bottom:751.495010px;}
.y2e7{bottom:751.831410px;}
.y31c{bottom:751.831421px;}
.y16c{bottom:755.914953px;}
.y15{bottom:755.916218px;}
.y15e{bottom:755.916229px;}
.y66{bottom:760.676203px;}
.y140{bottom:762.121905px;}
.y203{bottom:762.507062px;}
.ydd{bottom:764.249633px;}
.y2aa{bottom:765.780367px;}
.y38{bottom:766.461548px;}
.y31b{bottom:766.713409px;}
.y2e6{bottom:766.713424px;}
.y285{bottom:768.793032px;}
.yc{bottom:770.370916px;}
.y20d{bottom:770.795651px;}
.y89{bottom:773.858093px;}
.y14{bottom:773.859358px;}
.y15d{bottom:773.859375px;}
.y5{bottom:777.484222px;}
.y204{bottom:779.615476px;}
.y28d{bottom:780.334170px;}
.y13f{bottom:780.575806px;}
.y37{bottom:781.428131px;}
.y31a{bottom:781.680542px;}
.y2e5{bottom:781.680544px;}
.ydc{bottom:782.192773px;}
.y2a9{bottom:783.723508px;}
.y65{bottom:787.549158px;}
.y286{bottom:790.588259px;}
.y13{bottom:791.802498px;}
.y15c{bottom:791.802521px;}
.yb{bottom:794.182526px;}
.y13e{bottom:795.542926px;}
.y319{bottom:796.562531px;}
.y2e4{bottom:796.562558px;}
.y205{bottom:796.725125px;}
.ydb{bottom:800.135913px;}
.y2a8{bottom:801.666648px;}
.y212{bottom:803.885729px;}
.y12{bottom:809.745638px;}
.y15b{bottom:809.745667px;}
.y2e3{bottom:811.444572px;}
.y318{bottom:811.444611px;}
.y36{bottom:811.616730px;}
.y42{bottom:811.620758px;}
.y287{bottom:812.383486px;}
.y206{bottom:813.833585px;}
.y64{bottom:814.505799px;}
.y13d{bottom:814.761505px;}
.y16b{bottom:815.697418px;}
.yda{bottom:817.993873px;}
.y4{bottom:819.484222px;}
.y2a7{bottom:819.609788px;}
.y317{bottom:826.411652px;}
.y2e2{bottom:826.411692px;}
.y35{bottom:826.583313px;}
.y41{bottom:826.587341px;}
.y11{bottom:827.688779px;}
.y15a{bottom:827.688812px;}
.y13c{bottom:829.728625px;}
.y207{bottom:830.942044px;}
.y211{bottom:832.149621px;}
.y288{bottom:834.178713px;}
.yd9{bottom:835.937013px;}
.y2a6{bottom:837.467748px;}
.y2b{bottom:839.848663px;}
.y2e1{bottom:841.293706px;}
.y316{bottom:841.293732px;}
.y63{bottom:841.378754px;}
.y34{bottom:841.549805px;}
.y40{bottom:841.553833px;}
.y159{bottom:845.546722px;}
.y10{bottom:845.546739px;}
.y208{bottom:848.050504px;}
.y138{bottom:848.182163px;}
.y13a{bottom:848.182526px;}
.y139{bottom:853.795166px;}
.y2a5{bottom:855.410889px;}
.y289{bottom:855.974032px;}
.y2e0{bottom:856.260826px;}
.y315{bottom:856.260864px;}
.y33{bottom:856.516388px;}
.y3f{bottom:856.520416px;}
.y210{bottom:860.415704px;}
.y137{bottom:863.064178px;}
.y13b{bottom:863.064540px;}
.y158{bottom:863.489868px;}
.yf{bottom:863.489879px;}
.y209{bottom:865.157681px;}
.y262{bottom:865.467957px;}
.y2a{bottom:866.721130px;}
.ya{bottom:866.721917px;}
.y62{bottom:868.251709px;}
.yd7{bottom:868.336761px;}
.y267{bottom:868.772003px;}
.y2df{bottom:871.142840px;}
.y314{bottom:871.142853px;}
.y32{bottom:871.398193px;}
.y3e{bottom:871.402222px;}
.yd6{bottom:874.375174px;}
.y28a{bottom:877.769259px;}
.yd8{bottom:880.497132px;}
.y157{bottom:881.433014px;}
.ye{bottom:881.433019px;}
.y20a{bottom:882.267423px;}
.yd5{bottom:884.579407px;}
.y313{bottom:886.024841px;}
.y136{bottom:886.024854px;}
.y31{bottom:886.364685px;}
.y3d{bottom:886.368805px;}
.y20f{bottom:888.680509px;}
.y28f{bottom:889.350863px;}
.y9{bottom:893.678558px;}
.y61{bottom:895.209320px;}
.y2a4{bottom:897.250214px;}
.y20b{bottom:899.374600px;}
.yd{bottom:899.376160px;}
.y28b{bottom:899.564486px;}
.y30{bottom:900.736816px;}
.y135{bottom:900.991974px;}
.y1d7{bottom:935.426948px;}
.y312{bottom:935.427213px;}
.y147{bottom:935.429532px;}
.y11e{bottom:935.429552px;}
.y2de{bottom:935.430130px;}
.y272{bottom:935.430267px;}
.y1fe{bottom:935.430779px;}
.y150{bottom:935.431027px;}
.y233{bottom:935.431099px;}
.y16a{bottom:935.431183px;}
.y156{bottom:935.431211px;}
.y1ad{bottom:935.431581px;}
.y2a3{bottom:935.431646px;}
.y1fa{bottom:935.431708px;}
.y264{bottom:935.432007px;}
.y335{bottom:935.432820px;}
.yab{bottom:935.432831px;}
.y2{bottom:943.594757px;}
.y1{bottom:973.594482px;}
.h28{height:2.391024px;}
.h31{height:20.413367px;}
.h2f{height:22.415849px;}
.h34{height:23.268277px;}
.h2c{height:27.214817px;}
.h24{height:27.374201px;}
.h21{height:28.578632px;}
.h38{height:31.773706px;}
.h14{height:32.853164px;}
.h13{height:33.092270px;}
.h39{height:34.634347px;}
.h35{height:34.702682px;}
.h18{height:34.905919px;}
.h3a{height:34.923495px;}
.h32{height:35.159965px;}
.h36{height:35.790081px;}
.h33{height:36.328577px;}
.h10{height:36.743897px;}
.h11{height:36.959089px;}
.h37{height:37.005259px;}
.h12{height:39.835060px;}
.ha{height:40.826734px;}
.h9{height:41.065836px;}
.h8{height:41.364714px;}
.h17{height:42.324062px;}
.h1e{height:42.739553px;}
.h2d{height:44.814156px;}
.h27{height:44.831699px;}
.h2e{height:44.832374px;}
.h1b{height:49.637575px;}
.h1c{height:49.793074px;}
.h1d{height:50.139689px;}
.h25{height:50.354881px;}
.h16{height:51.227688px;}
.h30{height:53.067333px;}
.h22{height:53.410297px;}
.hc{height:57.492007px;}
.h15{height:57.910435px;}
.h19{height:63.223262px;}
.h1a{height:63.227566px;}
.hb{height:65.705917px;}
.h7{height:66.184126px;}
.h23{height:69.739395px;}
.he{height:73.919002px;}
.h2a{height:81.886592px;}
.h1f{height:83.558156px;}
.h26{height:85.647041px;}
.h29{height:85.651247px;}
.h2b{height:85.652455px;}
.h2{height:94.824000px;}
.h20{height:100.016531px;}
.hd{height:114.985251px;}
.hf{height:116.602048px;}
.h4{height:157.080000px;}
.h3{height:336.600000px;}
.h6{height:999.000000px;}
.h5{height:999.213000px;}
.h1{height:1024.500000px;}
.h0{height:1024.725000px;}
.w2{width:659.055000px;}
.w3{width:659.250000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4{left:80.787300px;}
.x2{left:83.763748px;}
.x6{left:85.464449px;}
.x3{left:86.633852px;}
.x1{left:87.696899px;}
.x52{left:93.456585px;}
.x5{left:95.755112px;}
.x9{left:98.737896px;}
.x3f{left:100.018552px;}
.x4d{left:104.248680px;}
.x40{left:106.827512px;}
.x44{left:108.881710px;}
.x4e{left:110.454548px;}
.x49{left:112.410841px;}
.x3e{left:117.040964px;}
.x4c{left:119.763321px;}
.x48{left:121.719613px;}
.x4f{left:125.670097px;}
.x25{left:131.045700px;}
.x26{left:139.974747px;}
.x29{left:153.751202px;}
.x3c{left:155.452686px;}
.x2f{left:158.003309px;}
.x2a{left:165.656696px;}
.x2c{left:175.775098px;}
.x11{left:189.465309px;}
.x35{left:196.355850px;}
.x30{left:202.053452px;}
.x31{left:206.815659px;}
.x32{left:219.996757px;}
.xa{left:221.442444px;}
.x15{left:224.930835px;}
.x1e{left:234.972482px;}
.x45{left:250.708946px;}
.x24{left:270.169945px;}
.x46{left:272.925453px;}
.x47{left:274.240265px;}
.x16{left:277.994476px;}
.x1f{left:284.625832px;}
.x43{left:290.160461px;}
.x21{left:292.875681px;}
.x4a{left:296.764975px;}
.x20{left:301.039352px;}
.x41{left:302.571458px;}
.xb{left:307.502237px;}
.x2e{left:312.009293px;}
.x22{left:318.217294px;}
.x50{left:323.167827px;}
.xc{left:329.952599px;}
.x19{left:334.969940px;}
.x7{left:338.032242px;}
.x23{left:342.113250px;}
.x1a{left:344.579407px;}
.xd{left:345.599854px;}
.x42{left:346.720689px;}
.x13{left:350.617994px;}
.xe{left:354.699142px;}
.x2b{left:357.080246px;}
.x27{left:382.592102px;}
.x12{left:388.034658px;}
.x28{left:391.606200px;}
.x33{left:396.793806px;}
.x17{left:401.130709px;}
.x38{left:402.321167px;}
.x39{left:407.933716px;}
.x3d{left:416.267732px;}
.x18{left:419.499131px;}
.x3a{left:423.495895px;}
.x3b{left:429.108582px;}
.x2d{left:437.185884px;}
.xf{left:442.204650px;}
.x4b{left:454.696205px;}
.x10{left:458.447113px;}
.x51{left:460.394545px;}
.x36{left:468.141586px;}
.x37{left:473.754135px;}
.x1b{left:482.768417px;}
.x1d{left:488.721130px;}
.x1c{left:492.717911px;}
.x34{left:521.460504px;}
.x14{left:547.738485px;}
.x8{left:559.216873px;}
@media print{
.vd{vertical-align:-91.012998pt;}
.v9{vertical-align:-9.069951pt;}
.v2{vertical-align:-7.562745pt;}
.v8{vertical-align:-5.442057pt;}
.va{vertical-align:-4.232112pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.652344pt;}
.vb{vertical-align:12.698274pt;}
.v6{vertical-align:14.514753pt;}
.v3{vertical-align:22.072591pt;}
.v7{vertical-align:28.119818pt;}
.vc{vertical-align:29.025748pt;}
.v4{vertical-align:36.283203pt;}
.v5{vertical-align:86.778229pt;}
.ls7f{letter-spacing:-0.152949pt;}
.ls8b{letter-spacing:-0.135550pt;}
.ls86{letter-spacing:-0.131099pt;}
.ls7e{letter-spacing:-0.122359pt;}
.ls8d{letter-spacing:-0.116387pt;}
.ls84{letter-spacing:-0.109249pt;}
.ls83{letter-spacing:-0.091769pt;}
.ls92{letter-spacing:-0.088615pt;}
.ls80{letter-spacing:-0.087399pt;}
.ls87{letter-spacing:-0.078660pt;}
.ls85{letter-spacing:-0.074290pt;}
.ls81{letter-spacing:-0.065550pt;}
.ls18{letter-spacing:-0.008501pt;}
.ls5{letter-spacing:0.000000pt;}
.ls74{letter-spacing:0.000022pt;}
.ls89{letter-spacing:0.000184pt;}
.ls62{letter-spacing:0.001307pt;}
.ls7c{letter-spacing:0.004370pt;}
.lsb{letter-spacing:0.023912pt;}
.ls44{letter-spacing:0.028335pt;}
.ls63{letter-spacing:0.029680pt;}
.ls54{letter-spacing:0.038800pt;}
.ls4e{letter-spacing:0.038936pt;}
.ls91{letter-spacing:0.039877pt;}
.ls1d{letter-spacing:0.042507pt;}
.ls75{letter-spacing:0.042524pt;}
.ls47{letter-spacing:0.048549pt;}
.lsa{letter-spacing:0.059510pt;}
.ls7{letter-spacing:0.063761pt;}
.ls8f{letter-spacing:0.070892pt;}
.ls9d{letter-spacing:0.094729pt;}
.ls9a{letter-spacing:0.094810pt;}
.ls99{letter-spacing:0.094830pt;}
.ls10{letter-spacing:0.094844pt;}
.ls76{letter-spacing:0.094892pt;}
.ls90{letter-spacing:0.101908pt;}
.ls66{letter-spacing:0.103611pt;}
.ls4a{letter-spacing:0.106268pt;}
.ls34{letter-spacing:0.107496pt;}
.lsd{letter-spacing:0.119065pt;}
.ls3e{letter-spacing:0.122208pt;}
.ls1e{letter-spacing:0.127521pt;}
.ls11{letter-spacing:0.140008pt;}
.ls64{letter-spacing:0.151432pt;}
.ls36{letter-spacing:0.164715pt;}
.ls6e{letter-spacing:0.167106pt;}
.ls8c{letter-spacing:0.167113pt;}
.ls30{letter-spacing:0.167528pt;}
.ls88{letter-spacing:0.179169pt;}
.ls82{letter-spacing:0.187909pt;}
.ls95{letter-spacing:0.189688pt;}
.ls96{letter-spacing:0.203237pt;}
.ls9c{letter-spacing:0.203253pt;}
.lsf{letter-spacing:0.207222pt;}
.ls14{letter-spacing:0.221302pt;}
.ls15{letter-spacing:0.225819pt;}
.ls9b{letter-spacing:0.225842pt;}
.ls2c{letter-spacing:0.260173pt;}
.ls5d{letter-spacing:0.260195pt;}
.ls98{letter-spacing:0.270918pt;}
.ls16{letter-spacing:0.270982pt;}
.ls9e{letter-spacing:0.270999pt;}
.ls2a{letter-spacing:0.292236pt;}
.ls23{letter-spacing:0.301617pt;}
.ls60{letter-spacing:0.302037pt;}
.ls8a{letter-spacing:0.302756pt;}
.ls8e{letter-spacing:0.302837pt;}
.lse{letter-spacing:0.302863pt;}
.ls78{letter-spacing:0.345370pt;}
.ls0{letter-spacing:0.470400pt;}
.ls4{letter-spacing:0.686933pt;}
.ls3{letter-spacing:0.731733pt;}
.ls2{letter-spacing:0.821333pt;}
.ls33{letter-spacing:1.073304pt;}
.ls46{letter-spacing:1.376167pt;}
.ls1{letter-spacing:1.472000pt;}
.ls4d{letter-spacing:2.677947pt;}
.ls45{letter-spacing:2.980810pt;}
.ls2f{letter-spacing:3.702045pt;}
.ls25{letter-spacing:6.133225pt;}
.ls24{letter-spacing:6.196454pt;}
.ls65{letter-spacing:6.734717pt;}
.ls68{letter-spacing:7.947028pt;}
.ls50{letter-spacing:8.331390pt;}
.ls4b{letter-spacing:8.809595pt;}
.ls32{letter-spacing:8.974310pt;}
.ls52{letter-spacing:9.112458pt;}
.ls69{letter-spacing:9.154965pt;}
.ls29{letter-spacing:11.697601pt;}
.ls70{letter-spacing:11.959356pt;}
.ls2e{letter-spacing:11.960433pt;}
.ls49{letter-spacing:11.997627pt;}
.ls3f{letter-spacing:12.566159pt;}
.ls40{letter-spacing:12.656487pt;}
.ls41{letter-spacing:12.698994pt;}
.ls31{letter-spacing:12.773090pt;}
.lsc{letter-spacing:14.078551pt;}
.ls48{letter-spacing:14.360557pt;}
.ls59{letter-spacing:14.617126pt;}
.ls4f{letter-spacing:14.662803pt;}
.ls28{letter-spacing:14.662966pt;}
.ls97{letter-spacing:14.714344pt;}
.ls55{letter-spacing:14.721192pt;}
.ls38{letter-spacing:14.856229pt;}
.ls6b{letter-spacing:14.913064pt;}
.ls6c{letter-spacing:14.971777pt;}
.ls13{letter-spacing:15.016941pt;}
.ls27{letter-spacing:15.026257pt;}
.ls12{letter-spacing:15.089203pt;}
.ls17{letter-spacing:15.111785pt;}
.ls39{letter-spacing:15.116585pt;}
.ls6d{letter-spacing:15.274374pt;}
.ls94{letter-spacing:15.337603pt;}
.ls57{letter-spacing:15.408821pt;}
.ls6{letter-spacing:15.419448pt;}
.ls8{letter-spacing:15.483208pt;}
.ls58{letter-spacing:15.743564pt;}
.ls3d{letter-spacing:16.391797pt;}
.ls7b{letter-spacing:16.519319pt;}
.ls73{letter-spacing:16.694660pt;}
.ls2d{letter-spacing:16.703754pt;}
.ls61{letter-spacing:17.170537pt;}
.ls5e{letter-spacing:17.308571pt;}
.ls26{letter-spacing:17.384280pt;}
.ls1c{letter-spacing:17.562244pt;}
.ls37{letter-spacing:17.576683pt;}
.ls42{letter-spacing:17.704204pt;}
.ls53{letter-spacing:17.733736pt;}
.ls77{letter-spacing:17.746711pt;}
.ls1b{letter-spacing:17.864653pt;}
.ls1a{letter-spacing:17.865141pt;}
.ls19{letter-spacing:17.865223pt;}
.ls21{letter-spacing:17.879546pt;}
.ls2b{letter-spacing:18.097395pt;}
.ls72{letter-spacing:18.203662pt;}
.ls43{letter-spacing:18.309930pt;}
.ls3c{letter-spacing:18.549032pt;}
.ls3b{letter-spacing:18.612793pt;}
.ls3a{letter-spacing:18.703121pt;}
.ls71{letter-spacing:20.477236pt;}
.ls20{letter-spacing:21.487335pt;}
.ls22{letter-spacing:22.842249pt;}
.ls9{letter-spacing:28.135866pt;}
.ls93{letter-spacing:28.745421pt;}
.ls5c{letter-spacing:30.966417pt;}
.ls67{letter-spacing:37.335497pt;}
.ls51{letter-spacing:42.018261pt;}
.ls4c{letter-spacing:97.870921pt;}
.ls5f{letter-spacing:152.766658pt;}
.ls79{letter-spacing:217.928556pt;}
.ls7a{letter-spacing:220.277070pt;}
.ls5a{letter-spacing:345.263857pt;}
.ls5b{letter-spacing:345.566708pt;}
.ls35{letter-spacing:394.429404pt;}
.ls56{letter-spacing:415.007357pt;}
.ls7d{letter-spacing:444.659510pt;}
.ls1f{letter-spacing:444.659522pt;}
.ls6f{letter-spacing:826.451120pt;}
.ls6a{letter-spacing:944.289742pt;}
.ws1a4{word-spacing:-826.496284pt;}
.ws0{word-spacing:-75.398400pt;}
.ws167{word-spacing:-31.019551pt;}
.wsff{word-spacing:-22.895383pt;}
.ws262{word-spacing:-16.572453pt;}
.ws345{word-spacing:-14.759508pt;}
.ws146{word-spacing:-14.670260pt;}
.ws148{word-spacing:-9.027444pt;}
.ws3{word-spacing:-2.400000pt;}
.ws296{word-spacing:-1.363432pt;}
.ws4{word-spacing:-1.254400pt;}
.ws5{word-spacing:-1.164800pt;}
.ws6{word-spacing:-1.120000pt;}
.ws28d{word-spacing:-1.114343pt;}
.ws2ea{word-spacing:-1.045663pt;}
.ws2ec{word-spacing:-0.965909pt;}
.ws28e{word-spacing:-0.703566pt;}
.ws28f{word-spacing:-0.406408pt;}
.ws225{word-spacing:-0.398504pt;}
.ws292{word-spacing:-0.144209pt;}
.ws290{word-spacing:-0.122359pt;}
.ws294{word-spacing:-0.109249pt;}
.ws2eb{word-spacing:-0.101908pt;}
.ws293{word-spacing:-0.087399pt;}
.ws54{word-spacing:-0.085015pt;}
.ws13e{word-spacing:-0.063761pt;}
.ws9{word-spacing:-0.053134pt;}
.ws2f{word-spacing:-0.047820pt;}
.ws72{word-spacing:-0.045164pt;}
.ws3b{word-spacing:-0.042508pt;}
.ws1f4{word-spacing:-0.035419pt;}
.ws179{word-spacing:-0.026567pt;}
.ws2{word-spacing:0.000000pt;}
.ws1{word-spacing:0.009600pt;}
.ws295{word-spacing:0.292788pt;}
.ws297{word-spacing:0.323378pt;}
.ws291{word-spacing:0.327748pt;}
.ws149{word-spacing:8.756462pt;}
.ws264{word-spacing:9.484395pt;}
.ws301{word-spacing:9.792562pt;}
.ws30d{word-spacing:9.792565pt;}
.ws4c{word-spacing:10.044578pt;}
.ws147{word-spacing:10.079494pt;}
.ws42{word-spacing:10.465404pt;}
.ws2c2{word-spacing:10.610833pt;}
.ws2c3{word-spacing:10.642713pt;}
.ws222{word-spacing:10.645091pt;}
.ws347{word-spacing:10.694772pt;}
.ws2ba{word-spacing:10.695847pt;}
.ws361{word-spacing:10.758001pt;}
.ws221{word-spacing:10.834779pt;}
.ws348{word-spacing:10.861878pt;}
.ws395{word-spacing:10.907041pt;}
.ws220{word-spacing:10.970270pt;}
.ws2b7{word-spacing:11.041217pt;}
.ws357{word-spacing:11.083180pt;}
.ws2bc{word-spacing:11.099664pt;}
.ws360{word-spacing:11.114795pt;}
.ws2b8{word-spacing:11.195305pt;}
.ws282{word-spacing:11.209638pt;}
.ws356{word-spacing:11.250286pt;}
.ws281{word-spacing:11.268351pt;}
.ws32{word-spacing:11.295147pt;}
.ws334{word-spacing:11.313515pt;}
.ws33{word-spacing:11.362096pt;}
.ws35b{word-spacing:11.399326pt;}
.ws35a{word-spacing:11.439973pt;}
.ws333{word-spacing:11.467071pt;}
.ws24a{word-spacing:11.540675pt;}
.ws23f{word-spacing:11.604436pt;}
.ws24b{word-spacing:11.684137pt;}
.ws237{word-spacing:11.705391pt;}
.ws43{word-spacing:11.795896pt;}
.ws23e{word-spacing:11.832912pt;}
.ws1aa{word-spacing:11.855480pt;}
.ws1a9{word-spacing:11.869028pt;}
.ws1a8{word-spacing:11.873545pt;}
.ws2ac{word-spacing:11.907300pt;}
.ws396{word-spacing:11.963872pt;}
.ws2b9{word-spacing:12.008254pt;}
.ws2e7{word-spacing:12.117429pt;}
.ws2e6{word-spacing:12.167109pt;}
.ws46{word-spacing:12.216722pt;}
.ws2e8{word-spacing:12.252920pt;}
.ws36e{word-spacing:12.266470pt;}
.ws1fe{word-spacing:12.268609pt;}
.ws47{word-spacing:12.310240pt;}
.ws255{word-spacing:12.334215pt;}
.wsa4{word-spacing:12.385504pt;}
.ws32a{word-spacing:12.388411pt;}
.ws21c{word-spacing:12.412071pt;}
.ws36d{word-spacing:12.415510pt;}
.ws211{word-spacing:12.443951pt;}
.ws250{word-spacing:12.460673pt;}
.ws213{word-spacing:12.470518pt;}
.ws212{word-spacing:12.486458pt;}
.ws246{word-spacing:12.491772pt;}
.ws1fd{word-spacing:12.513025pt;}
.ws254{word-spacing:12.528419pt;}
.ws265{word-spacing:12.528966pt;}
.ws210{word-spacing:12.550219pt;}
.ws2b6{word-spacing:12.560845pt;}
.ws257{word-spacing:12.564551pt;}
.ws150{word-spacing:12.571473pt;}
.ws24f{word-spacing:12.587133pt;}
.ws32b{word-spacing:12.605198pt;}
.ws105{word-spacing:12.613979pt;}
.ws3d{word-spacing:12.650302pt;}
.ws2ed{word-spacing:12.667113pt;}
.ws2c7{word-spacing:12.683053pt;}
.wsfc{word-spacing:12.688367pt;}
.ws22e{word-spacing:12.709620pt;}
.ws37b{word-spacing:12.718008pt;}
.wsa3{word-spacing:12.746814pt;}
.ws302{word-spacing:12.752128pt;}
.ws22f{word-spacing:12.768068pt;}
.ws110{word-spacing:12.789321pt;}
.ws1db{word-spacing:12.799401pt;}
.ws109{word-spacing:12.815887pt;}
.wsb5{word-spacing:12.821201pt;}
.ws20f{word-spacing:12.853082pt;}
.ws2f5{word-spacing:12.858395pt;}
.ws317{word-spacing:12.863709pt;}
.ws247{word-spacing:12.895589pt;}
.ws15e{word-spacing:12.916843pt;}
.ws34d{word-spacing:12.939409pt;}
.ws7b{word-spacing:12.966508pt;}
.ws29a{word-spacing:12.991230pt;}
.ws10f{word-spacing:13.012483pt;}
.ws7a{word-spacing:13.020703pt;}
.ws2ad{word-spacing:13.028424pt;}
.ws1fa{word-spacing:13.049678pt;}
.ws16d{word-spacing:13.054991pt;}
.ws6b{word-spacing:13.070931pt;}
.ws165{word-spacing:13.076245pt;}
.wsfb{word-spacing:13.081557pt;}
.ws1da{word-spacing:13.083934pt;}
.ws111{word-spacing:13.092184pt;}
.wsf6{word-spacing:13.113438pt;}
.ws1b2{word-spacing:13.147163pt;}
.wsea{word-spacing:13.155945pt;}
.ws30e{word-spacing:13.171885pt;}
.ws341{word-spacing:13.183293pt;}
.ws99{word-spacing:13.198452pt;}
.ws325{word-spacing:13.201358pt;}
.ws2bb{word-spacing:13.214392pt;}
.ws106{word-spacing:13.219706pt;}
.ws1fb{word-spacing:13.240959pt;}
.ws324{word-spacing:13.242007pt;}
.ws343{word-spacing:13.264589pt;}
.ws311{word-spacing:13.294093pt;}
.ws170{word-spacing:13.315347pt;}
.ws326{word-spacing:13.323301pt;}
.ws380{word-spacing:13.323329pt;}
.ws16c{word-spacing:13.341914pt;}
.ws6a{word-spacing:13.352541pt;}
.ws340{word-spacing:13.368465pt;}
.ws11f{word-spacing:13.373794pt;}
.ws175{word-spacing:13.395048pt;}
.ws381{word-spacing:13.395563pt;}
.ws2a8{word-spacing:13.405674pt;}
.ws97{word-spacing:13.416301pt;}
.ws342{word-spacing:13.418145pt;}
.ws33f{word-spacing:13.449759pt;}
.ws28b{word-spacing:13.458792pt;}
.ws98{word-spacing:13.458808pt;}
.ws28a{word-spacing:13.472341pt;}
.ws382{word-spacing:13.499439pt;}
.ws169{word-spacing:13.522569pt;}
.ws171{word-spacing:13.543822pt;}
.wsf2{word-spacing:13.591642pt;}
.ws18b{word-spacing:13.612897pt;}
.ws19e{word-spacing:13.625898pt;}
.ws1a2{word-spacing:13.648480pt;}
.ws1e1{word-spacing:13.655403pt;}
.ws19c{word-spacing:13.666031pt;}
.ws349{word-spacing:13.684611pt;}
.ws36f{word-spacing:13.693644pt;}
.ws101{word-spacing:13.697910pt;}
.ws271{word-spacing:13.719165pt;}
.ws4e{word-spacing:13.725747pt;}
.ws370{word-spacing:13.729774pt;}
.wse1{word-spacing:13.761671pt;}
.ws48{word-spacing:13.768255pt;}
.ws3f{word-spacing:13.772506pt;}
.ws1b5{word-spacing:13.782924pt;}
.ws195{word-spacing:13.825432pt;}
.ws44{word-spacing:13.840518pt;}
.ws1dd{word-spacing:13.856232pt;}
.ws121{word-spacing:13.873253pt;}
.ws21e{word-spacing:13.894506pt;}
.ws12f{word-spacing:13.915759pt;}
.ws274{word-spacing:13.937012pt;}
.ws1b4{word-spacing:13.958266pt;}
.ws1dc{word-spacing:13.960110pt;}
.ws37{word-spacing:13.976542pt;}
.ws329{word-spacing:13.987208pt;}
.wsac{word-spacing:14.000774pt;}
.wsc7{word-spacing:14.022027pt;}
.ws2c1{word-spacing:14.027319pt;}
.ws330{word-spacing:14.027855pt;}
.ws207{word-spacing:14.043280pt;}
.ws102{word-spacing:14.059221pt;}
.wsab{word-spacing:14.085788pt;}
.ws4d{word-spacing:14.091314pt;}
.ws19d{word-spacing:14.100118pt;}
.ws14d{word-spacing:14.122981pt;}
.ws83{word-spacing:14.133608pt;}
.ws224{word-spacing:14.144236pt;}
.ws206{word-spacing:14.176115pt;}
.wsdb{word-spacing:14.197369pt;}
.ws2af{word-spacing:14.207995pt;}
.ws11{word-spacing:14.218623pt;}
.ws208{word-spacing:14.229248pt;}
.ws17a{word-spacing:14.261129pt;}
.ws21f{word-spacing:14.271757pt;}
.ws14b{word-spacing:14.282382pt;}
.ws355{word-spacing:14.289804pt;}
.ws27c{word-spacing:14.294321pt;}
.ws209{word-spacing:14.298323pt;}
.wsdc{word-spacing:14.324890pt;}
.wsc8{word-spacing:14.367397pt;}
.ws1eb{word-spacing:14.409904pt;}
.wsaa{word-spacing:14.425844pt;}
.ws135{word-spacing:14.431158pt;}
.ws14c{word-spacing:14.441779pt;}
.ws136{word-spacing:14.447098pt;}
.ws1ec{word-spacing:14.457725pt;}
.ws27d{word-spacing:14.484009pt;}
.ws358{word-spacing:14.488525pt;}
.ws238{word-spacing:14.500232pt;}
.ws32c{word-spacing:14.529173pt;}
.ws359{word-spacing:14.551755pt;}
.ws346{word-spacing:14.560787pt;}
.ws2fc{word-spacing:14.574619pt;}
.ws2f8{word-spacing:14.579932pt;}
.ws38d{word-spacing:14.592402pt;}
.ws307{word-spacing:14.627752pt;}
.ws2f7{word-spacing:14.664947pt;}
.ws9b{word-spacing:14.670261pt;}
.ws14a{word-spacing:14.696827pt;}
.ws1c1{word-spacing:14.707453pt;}
.ws344{word-spacing:14.709828pt;}
.ws120{word-spacing:14.728708pt;}
.ws32f{word-spacing:14.745958pt;}
.ws128{word-spacing:14.803094pt;}
.ws318{word-spacing:14.808409pt;}
.ws25a{word-spacing:14.809187pt;}
.ws25b{word-spacing:14.818221pt;}
.ws2f6{word-spacing:14.824348pt;}
.ws1de{word-spacing:14.827253pt;}
.ws1b3{word-spacing:14.836286pt;}
.ws129{word-spacing:14.845567pt;}
.ws1cb{word-spacing:14.849834pt;}
.ws38c{word-spacing:14.854351pt;}
.ws74{word-spacing:14.858868pt;}
.ws258{word-spacing:14.863384pt;}
.ws1d7{word-spacing:14.866855pt;}
.ws259{word-spacing:14.867895pt;}
.ws24e{word-spacing:14.867901pt;}
.ws80{word-spacing:14.876933pt;}
.ws78{word-spacing:14.890483pt;}
.ws36a{word-spacing:14.894998pt;}
.ws1ca{word-spacing:14.899515pt;}
.ws7e{word-spacing:14.904032pt;}
.ws2c5{word-spacing:14.904049pt;}
.ws1a1{word-spacing:14.908548pt;}
.ws1f6{word-spacing:14.909363pt;}
.ws38a{word-spacing:14.913065pt;}
.ws328{word-spacing:14.917580pt;}
.wsfd{word-spacing:14.930616pt;}
.ws252{word-spacing:14.931130pt;}
.ws77{word-spacing:14.940163pt;}
.ws7f{word-spacing:14.944679pt;}
.ws354{word-spacing:14.949195pt;}
.ws31b{word-spacing:14.951869pt;}
.ws379{word-spacing:14.953706pt;}
.ws332{word-spacing:14.953712pt;}
.ws378{word-spacing:14.958229pt;}
.ws2e9{word-spacing:14.962744pt;}
.wsc9{word-spacing:14.967811pt;}
.ws73{word-spacing:14.971777pt;}
.ws7c{word-spacing:14.980810pt;}
.ws6f{word-spacing:14.985326pt;}
.ws81{word-spacing:14.989842pt;}
.ws331{word-spacing:14.994359pt;}
.wsf8{word-spacing:14.998876pt;}
.ws17e{word-spacing:15.007908pt;}
.ws2dc{word-spacing:15.010317pt;}
.ws7d{word-spacing:15.016941pt;}
.ws251{word-spacing:15.021458pt;}
.ws156{word-spacing:15.031570pt;}
.ws187{word-spacing:15.039523pt;}
.ws223{word-spacing:15.044039pt;}
.ws36c{word-spacing:15.048555pt;}
.ws1a7{word-spacing:15.053071pt;}
.ws256{word-spacing:15.057588pt;}
.ws2d3{word-spacing:15.062105pt;}
.ws245{word-spacing:15.066621pt;}
.ws188{word-spacing:15.089204pt;}
.ws19f{word-spacing:15.098235pt;}
.ws2ce{word-spacing:15.105904pt;}
.ws184{word-spacing:15.111785pt;}
.ws79{word-spacing:15.116302pt;}
.ws70{word-spacing:15.125334pt;}
.ws155{word-spacing:15.127212pt;}
.ws6e{word-spacing:15.134367pt;}
.ws71{word-spacing:15.138883pt;}
.ws392{word-spacing:15.152432pt;}
.ws28c{word-spacing:15.175014pt;}
.ws75{word-spacing:15.179530pt;}
.wse{word-spacing:15.190972pt;}
.ws182{word-spacing:15.193079pt;}
.ws76{word-spacing:15.197596pt;}
.ws2d2{word-spacing:15.202112pt;}
.ws364{word-spacing:15.206629pt;}
.ws2c6{word-spacing:15.206905pt;}
.ws17f{word-spacing:15.211144pt;}
.ws1c9{word-spacing:15.217539pt;}
.ws37f{word-spacing:15.220178pt;}
.ws181{word-spacing:15.224694pt;}
.wsd{word-spacing:15.228166pt;}
.ws260{word-spacing:15.233480pt;}
.ws38e{word-spacing:15.233694pt;}
.ws37c{word-spacing:15.233735pt;}
.ws353{word-spacing:15.242749pt;}
.ws321{word-spacing:15.251786pt;}
.ws25c{word-spacing:15.251793pt;}
.ws14e{word-spacing:15.270673pt;}
.ws14f{word-spacing:15.286602pt;}
.ws37a{word-spacing:15.287923pt;}
.ws25e{word-spacing:15.291926pt;}
.ws180{word-spacing:15.296957pt;}
.ws33e{word-spacing:15.301472pt;}
.ws127{word-spacing:15.302553pt;}
.ws25f{word-spacing:15.313181pt;}
.ws391{word-spacing:15.315022pt;}
.ws154{word-spacing:15.334434pt;}
.ws1df{word-spacing:15.342159pt;}
.ws34f{word-spacing:15.355669pt;}
.ws322{word-spacing:15.378251pt;}
.ws2ab{word-spacing:15.408821pt;}
.ws2cf{word-spacing:15.424760pt;}
.ws276{word-spacing:15.430074pt;}
.ws2cc{word-spacing:15.446015pt;}
.ws1f7{word-spacing:15.472582pt;}
.ws2d8{word-spacing:15.482127pt;}
.ws1bb{word-spacing:15.493835pt;}
.ws2ff{word-spacing:15.499149pt;}
.ws194{word-spacing:15.531028pt;}
.ws298{word-spacing:15.541656pt;}
.ws2b0{word-spacing:15.562909pt;}
.ws2c4{word-spacing:15.573536pt;}
.ws263{word-spacing:15.594777pt;}
.ws27b{word-spacing:15.594789pt;}
.ws2d6{word-spacing:15.608586pt;}
.ws22d{word-spacing:15.616043pt;}
.ws10{word-spacing:15.637296pt;}
.ws397{word-spacing:15.658266pt;}
.ws300{word-spacing:15.658551pt;}
.ws28{word-spacing:15.665920pt;}
.ws2d7{word-spacing:15.689880pt;}
.ws61{word-spacing:15.711685pt;}
.ws2d5{word-spacing:15.712462pt;}
.ws1bc{word-spacing:15.722310pt;}
.ws60{word-spacing:15.732938pt;}
.ws320{word-spacing:15.744077pt;}
.ws45{word-spacing:15.774620pt;}
.ws2b4{word-spacing:15.775444pt;}
.ws168{word-spacing:15.812639pt;}
.ws35{word-spacing:15.814163pt;}
.ws30c{word-spacing:15.823264pt;}
.ws27{word-spacing:15.828508pt;}
.ws1e6{word-spacing:15.833892pt;}
.ws10a{word-spacing:15.839206pt;}
.ws2a{word-spacing:15.861983pt;}
.ws92{word-spacing:15.876399pt;}
.ws5f{word-spacing:15.881712pt;}
.ws32d{word-spacing:15.893117pt;}
.ws227{word-spacing:15.897653pt;}
.ws25{word-spacing:15.900239pt;}
.ws33c{word-spacing:15.906667pt;}
.ws29{word-spacing:15.914584pt;}
.ws2b5{word-spacing:15.918906pt;}
.ws1d5{word-spacing:15.940160pt;}
.ws36{word-spacing:15.943277pt;}
.ws33d{word-spacing:15.974413pt;}
.ws1e4{word-spacing:15.993293pt;}
.ws336{word-spacing:16.001510pt;}
.ws26{word-spacing:16.010225pt;}
.wsb7{word-spacing:16.014547pt;}
.ws272{word-spacing:16.030488pt;}
.ws1e3{word-spacing:16.035800pt;}
.ws2a9{word-spacing:16.051741pt;}
.ws157{word-spacing:16.072994pt;}
.ws32e{word-spacing:16.073772pt;}
.ws3e{word-spacing:16.076425pt;}
.ws15f{word-spacing:16.115501pt;}
.ws385{word-spacing:16.127969pt;}
.ws24{word-spacing:16.129775pt;}
.wsbb{word-spacing:16.136755pt;}
.ws266{word-spacing:16.136756pt;}
.ws158{word-spacing:16.158007pt;}
.ws189{word-spacing:16.158009pt;}
.wsb6{word-spacing:16.179262pt;}
.ws24c{word-spacing:16.200515pt;}
.wsc2{word-spacing:16.211143pt;}
.ws119{word-spacing:16.243023pt;}
.ws1e5{word-spacing:16.264277pt;}
.ws337{word-spacing:16.277009pt;}
.ws383{word-spacing:16.295074pt;}
.ws159{word-spacing:16.296157pt;}
.ws267{word-spacing:16.301469pt;}
.ws384{word-spacing:16.308624pt;}
.ws22a{word-spacing:16.338664pt;}
.ws335{word-spacing:16.344754pt;}
.ws289{word-spacing:16.349271pt;}
.ws338{word-spacing:16.362820pt;}
.ws20c{word-spacing:16.365231pt;}
.ws1c4{word-spacing:16.375858pt;}
.ws1c6{word-spacing:16.386484pt;}
.ws261{word-spacing:16.407737pt;}
.ws34c{word-spacing:16.407983pt;}
.ws37e{word-spacing:16.417017pt;}
.ws306{word-spacing:16.418364pt;}
.ws1ed{word-spacing:16.439618pt;}
.ws84{word-spacing:16.482126pt;}
.ws309{word-spacing:16.487438pt;}
.ws305{word-spacing:16.492753pt;}
.ws2da{word-spacing:16.498311pt;}
.ws37d{word-spacing:16.502827pt;}
.ws174{word-spacing:16.519318pt;}
.ws12d{word-spacing:16.545885pt;}
.ws1b8{word-spacing:16.556513pt;}
.ws22b{word-spacing:16.561826pt;}
.ws2dd{word-spacing:16.567139pt;}
.ws2d9{word-spacing:16.597671pt;}
.ws1c5{word-spacing:16.614960pt;}
.wsb2{word-spacing:16.641527pt;}
.ws36b{word-spacing:16.642835pt;}
.ws2e2{word-spacing:16.651869pt;}
.ws1d4{word-spacing:16.678720pt;}
.ws49{word-spacing:16.684285pt;}
.ws285{word-spacing:16.692516pt;}
.ws284{word-spacing:16.706064pt;}
.ws288{word-spacing:16.715097pt;}
.ws41{word-spacing:16.765050pt;}
.ws94{word-spacing:16.784988pt;}
.ws327{word-spacing:16.805425pt;}
.ws12c{word-spacing:16.806242pt;}
.ws85{word-spacing:16.811555pt;}
.ws275{word-spacing:16.822182pt;}
.ws239{word-spacing:16.827496pt;}
.ws2c0{word-spacing:16.848749pt;}
.ws29b{word-spacing:16.864689pt;}
.ws399{word-spacing:16.882202pt;}
.ws273{word-spacing:16.901883pt;}
.ws283{word-spacing:16.904784pt;}
.ws23a{word-spacing:16.917822pt;}
.wsfa{word-spacing:16.939076pt;}
.ws9d{word-spacing:16.949703pt;}
.ws388{word-spacing:16.954465pt;}
.ws1d9{word-spacing:16.960330pt;}
.ws26c{word-spacing:16.981584pt;}
.ws9e{word-spacing:17.013464pt;}
.ws2b3{word-spacing:17.024090pt;}
.wsb3{word-spacing:17.045343pt;}
.ws2b1{word-spacing:17.087851pt;}
.ws2b2{word-spacing:17.093165pt;}
.ws22c{word-spacing:17.109105pt;}
.ws40{word-spacing:17.117865pt;}
.ws20d{word-spacing:17.146299pt;}
.ws2cb{word-spacing:17.199433pt;}
.ws1bf{word-spacing:17.220686pt;}
.ws115{word-spacing:17.241939pt;}
.ws21d{word-spacing:17.284446pt;}
.ws1ae{word-spacing:17.315775pt;}
.ws2aa{word-spacing:17.326954pt;}
.ws229{word-spacing:17.348207pt;}
.ws1be{word-spacing:17.390713pt;}
.ws2e4{word-spacing:17.406102pt;}
.ws228{word-spacing:17.433222pt;}
.ws13f{word-spacing:17.449161pt;}
.ws126{word-spacing:17.502295pt;}
.ws2e3{word-spacing:17.505463pt;}
.ws65{word-spacing:17.512922pt;}
.ws365{word-spacing:17.514495pt;}
.ws1ad{word-spacing:17.523528pt;}
.ws1b{word-spacing:17.523548pt;}
.wsa{word-spacing:17.544803pt;}
.wsd3{word-spacing:17.550109pt;}
.ws17{word-spacing:17.566056pt;}
.ws1c7{word-spacing:17.587309pt;}
.ws366{word-spacing:17.600307pt;}
.wse5{word-spacing:17.608563pt;}
.ws19{word-spacing:17.629816pt;}
.wsb4{word-spacing:17.645757pt;}
.ws15{word-spacing:17.651071pt;}
.ws144{word-spacing:17.667010pt;}
.ws58{word-spacing:17.688263pt;}
.ws14{word-spacing:17.693577pt;}
.ws1e{word-spacing:17.714830pt;}
.ws108{word-spacing:17.730765pt;}
.ws1a{word-spacing:17.730772pt;}
.ws177{word-spacing:17.736068pt;}
.ws12e{word-spacing:17.752025pt;}
.ws203{word-spacing:17.757337pt;}
.ws8b{word-spacing:17.761679pt;}
.ws8a{word-spacing:17.772103pt;}
.ws30a{word-spacing:17.773278pt;}
.ws2e5{word-spacing:17.776445pt;}
.ws26a{word-spacing:17.794524pt;}
.ws1c{word-spacing:17.794531pt;}
.ws142{word-spacing:17.805159pt;}
.ws59{word-spacing:17.826412pt;}
.ws18{word-spacing:17.837039pt;}
.ws16{word-spacing:17.847665pt;}
.ws57{word-spacing:17.858292pt;}
.ws1bd{word-spacing:17.868918pt;}
.ws1d{word-spacing:17.879546pt;}
.ws29e{word-spacing:17.890173pt;}
.ws20e{word-spacing:17.895485pt;}
.wsad{word-spacing:17.900799pt;}
.wsd4{word-spacing:17.906113pt;}
.ws145{word-spacing:17.911426pt;}
.ws377{word-spacing:17.920968pt;}
.ws25d{word-spacing:17.922053pt;}
.ws2cd{word-spacing:17.922088pt;}
.ws134{word-spacing:17.927366pt;}
.ws139{word-spacing:17.932680pt;}
.ws8c{word-spacing:17.943075pt;}
.ws173{word-spacing:17.948619pt;}
.ws6d{word-spacing:17.953933pt;}
.ws137{word-spacing:17.969874pt;}
.ws8d{word-spacing:17.976358pt;}
.ws1d3{word-spacing:17.996441pt;}
.ws116{word-spacing:18.001753pt;}
.ws1c0{word-spacing:18.012380pt;}
.ws3c{word-spacing:18.014777pt;}
.ws138{word-spacing:18.017694pt;}
.ws2c8{word-spacing:18.017735pt;}
.ws8e{word-spacing:18.027219pt;}
.ws1d6{word-spacing:18.028251pt;}
.ws107{word-spacing:18.054887pt;}
.ws1c2{word-spacing:18.076142pt;}
.ws398{word-spacing:18.092591pt;}
.ws279{word-spacing:18.108021pt;}
.wse6{word-spacing:18.118648pt;}
.ws1c3{word-spacing:18.129276pt;}
.ws164{word-spacing:18.150529pt;}
.ws16e{word-spacing:18.155842pt;}
.ws1ce{word-spacing:18.171782pt;}
.ws172{word-spacing:18.193035pt;}
.ws192{word-spacing:18.219603pt;}
.ws3a{word-spacing:18.223066pt;}
.ws2c9{word-spacing:18.230180pt;}
.wsa5{word-spacing:18.256796pt;}
.ws95{word-spacing:18.293989pt;}
.ws2ca{word-spacing:18.304617pt;}
.ws82{word-spacing:18.357750pt;}
.ws1fc{word-spacing:18.379004pt;}
.ws9a{word-spacing:18.410884pt;}
.ws2a3{word-spacing:18.432138pt;}
.ws2a7{word-spacing:18.453391pt;}
.ws12b{word-spacing:18.474646pt;}
.ws4b{word-spacing:18.495115pt;}
.ws214{word-spacing:18.495899pt;}
.ws248{word-spacing:18.517152pt;}
.wsba{word-spacing:18.533092pt;}
.ws12a{word-spacing:18.554346pt;}
.wsda{word-spacing:18.596853pt;}
.wsa0{word-spacing:18.618106pt;}
.ws1f5{word-spacing:18.639359pt;}
.ws10e{word-spacing:18.660614pt;}
.ws9f{word-spacing:18.713748pt;}
.ws163{word-spacing:18.724374pt;}
.ws2b{word-spacing:18.731199pt;}
.wscf{word-spacing:18.735001pt;}
.wscd{word-spacing:18.756254pt;}
.ws304{word-spacing:18.782821pt;}
.ws1e0{word-spacing:18.793449pt;}
.wsd0{word-spacing:18.820016pt;}
.wsae{word-spacing:18.825328pt;}
.ws152{word-spacing:18.835955pt;}
.ws153{word-spacing:18.841269pt;}
.ws151{word-spacing:18.857208pt;}
.ws4a{word-spacing:18.911690pt;}
.wsce{word-spacing:18.920970pt;}
.ws362{word-spacing:18.932637pt;}
.wse4{word-spacing:18.942223pt;}
.ws1f3{word-spacing:18.963476pt;}
.ws2a1{word-spacing:19.027238pt;}
.ws2d1{word-spacing:19.032551pt;}
.ws91{word-spacing:19.037863pt;}
.ws286{word-spacing:19.101625pt;}
.ws1d2{word-spacing:19.160072pt;}
.ws363{word-spacing:19.172004pt;}
.ws277{word-spacing:19.181325pt;}
.ws130{word-spacing:19.202579pt;}
.ws368{word-spacing:19.212651pt;}
.ws4f{word-spacing:19.221998pt;}
.wsb1{word-spacing:19.245087pt;}
.ws112{word-spacing:19.266340pt;}
.ws240{word-spacing:19.271653pt;}
.ws1d8{word-spacing:19.287593pt;}
.ws369{word-spacing:19.289430pt;}
.ws23d{word-spacing:19.319474pt;}
.ws13c{word-spacing:19.340727pt;}
.ws2db{word-spacing:19.377921pt;}
.wsbe{word-spacing:19.441681pt;}
.ws376{word-spacing:19.456535pt;}
.wsbd{word-spacing:19.462934pt;}
.wsbc{word-spacing:19.505442pt;}
.ws27a{word-spacing:19.569202pt;}
.ws16b{word-spacing:19.590457pt;}
.ws202{word-spacing:19.601083pt;}
.ws1e9{word-spacing:19.632963pt;}
.ws18f{word-spacing:19.643591pt;}
.ws90{word-spacing:19.670152pt;}
.ws323{word-spacing:19.673322pt;}
.ws226{word-spacing:19.702037pt;}
.ws1e8{word-spacing:19.723291pt;}
.wsb{word-spacing:19.765798pt;}
.ws16a{word-spacing:19.776425pt;}
.wsc1{word-spacing:19.781696pt;}
.ws13a{word-spacing:19.808304pt;}
.ws13b{word-spacing:19.829559pt;}
.ws2fb{word-spacing:19.866752pt;}
.wsa2{word-spacing:19.872066pt;}
.ws21a{word-spacing:19.962394pt;}
.ws394{word-spacing:19.966886pt;}
.ws6c{word-spacing:20.004900pt;}
.ws218{word-spacing:20.073974pt;}
.ws190{word-spacing:20.111168pt;}
.ws31{word-spacing:20.117987pt;}
.ws15b{word-spacing:20.174929pt;}
.ws393{word-spacing:20.192705pt;}
.ws1ea{word-spacing:20.222749pt;}
.ws30{word-spacing:20.242318pt;}
.ws2e{word-spacing:20.261459pt;}
.ws26d{word-spacing:20.265256pt;}
.ws13{word-spacing:20.350270pt;}
.wsf5{word-spacing:20.371524pt;}
.ws241{word-spacing:20.376837pt;}
.ws196{word-spacing:20.414032pt;}
.ws34a{word-spacing:20.621760pt;}
.ws1ac{word-spacing:20.639825pt;}
.ws373{word-spacing:20.648859pt;}
.ws9c{word-spacing:20.653134pt;}
.ws374{word-spacing:20.671441pt;}
.ws64{word-spacing:20.711580pt;}
.ws2fa{word-spacing:20.716894pt;}
.ws269{word-spacing:20.722207pt;}
.ws34b{word-spacing:20.734670pt;}
.ws1ab{word-spacing:20.748218pt;}
.ws27f{word-spacing:20.770800pt;}
.ws232{word-spacing:20.775341pt;}
.ws280{word-spacing:20.788865pt;}
.ws113{word-spacing:20.807222pt;}
.ws27e{word-spacing:20.834029pt;}
.ws375{word-spacing:20.838546pt;}
.ws15c{word-spacing:20.913490pt;}
.ws268{word-spacing:20.934743pt;}
.ws15d{word-spacing:20.955996pt;}
.ws197{word-spacing:20.977215pt;}
.ws93{word-spacing:20.977249pt;}
.ws114{word-spacing:21.014444pt;}
.ws1b7{word-spacing:21.019757pt;}
.ws125{word-spacing:21.078205pt;}
.ws200{word-spacing:21.152592pt;}
.ws1ff{word-spacing:21.195099pt;}
.ws1e2{word-spacing:21.251385pt;}
.ws231{word-spacing:21.280113pt;}
.ws33a{word-spacing:21.285666pt;}
.ws18a{word-spacing:21.302395pt;}
.ws230{word-spacing:21.322620pt;}
.ws118{word-spacing:21.327898pt;}
.ws117{word-spacing:21.334275pt;}
.ws1b0{word-spacing:21.335347pt;}
.ws11c{word-spacing:21.359813pt;}
.ws11b{word-spacing:21.365122pt;}
.ws10c{word-spacing:21.402320pt;}
.ws122{word-spacing:21.434201pt;}
.ws10d{word-spacing:21.455454pt;}
.ws2bf{word-spacing:21.460768pt;}
.ws339{word-spacing:21.466321pt;}
.ws303{word-spacing:21.497962pt;}
.ws1af{word-spacing:21.552133pt;}
.ws11d{word-spacing:21.561722pt;}
.ws1b9{word-spacing:21.582977pt;}
.ws1ba{word-spacing:21.588289pt;}
.ws69{word-spacing:21.620169pt;}
.ws1cc{word-spacing:21.641423pt;}
.wseb{word-spacing:21.662678pt;}
.wsa7{word-spacing:21.683931pt;}
.wsd5{word-spacing:21.758318pt;}
.wsf9{word-spacing:21.768945pt;}
.wsc{word-spacing:21.779571pt;}
.ws26e{word-spacing:21.864586pt;}
.wsb8{word-spacing:21.880525pt;}
.ws26f{word-spacing:21.891153pt;}
.ws131{word-spacing:21.923033pt;}
.ws176{word-spacing:21.986793pt;}
.ws34{word-spacing:21.997323pt;}
.wsb9{word-spacing:22.008048pt;}
.wsbf{word-spacing:22.061182pt;}
.wsa6{word-spacing:22.082435pt;}
.wsd9{word-spacing:22.087748pt;}
.ws1b1{word-spacing:22.094098pt;}
.ws1b6{word-spacing:22.119627pt;}
.ws11e{word-spacing:22.124941pt;}
.wsc0{word-spacing:22.146194pt;}
.ws2d4{word-spacing:22.157327pt;}
.wsd8{word-spacing:22.172761pt;}
.ws299{word-spacing:22.225895pt;}
.ws133{word-spacing:22.247150pt;}
.wsca{word-spacing:22.268403pt;}
.ws217{word-spacing:22.289657pt;}
.ws132{word-spacing:22.310910pt;}
.ws162{word-spacing:22.364044pt;}
.ws2d0{word-spacing:22.411864pt;}
.ws219{word-spacing:22.486252pt;}
.ws216{word-spacing:22.613767pt;}
.ws161{word-spacing:22.688161pt;}
.ws2f4{word-spacing:22.704100pt;}
.ws310{word-spacing:22.725355pt;}
.wsc6{word-spacing:22.751922pt;}
.wsfe{word-spacing:22.789115pt;}
.ws2a6{word-spacing:22.831623pt;}
.ws100{word-spacing:22.842249pt;}
.ws30f{word-spacing:22.911323pt;}
.ws5e{word-spacing:23.006964pt;}
.ws67{word-spacing:23.113231pt;}
.ws2f2{word-spacing:23.134485pt;}
.ws2f1{word-spacing:23.176993pt;}
.ws2d{word-spacing:23.231085pt;}
.ws20a{word-spacing:23.251380pt;}
.ws2bd{word-spacing:23.288573pt;}
.wse9{word-spacing:23.331081pt;}
.ws2a5{word-spacing:23.336394pt;}
.ws249{word-spacing:23.426721pt;}
.ws68{word-spacing:23.447974pt;}
.ws2be{word-spacing:23.517049pt;}
.ws312{word-spacing:23.570183pt;}
.ws367{word-spacing:23.701926pt;}
.ws86{word-spacing:23.798658pt;}
.ws87{word-spacing:23.819912pt;}
.ws308{word-spacing:23.867733pt;}
.ws21b{word-spacing:23.894300pt;}
.ws201{word-spacing:23.947434pt;}
.ws316{word-spacing:24.000568pt;}
.ws88{word-spacing:24.037760pt;}
.ws12{word-spacing:24.101522pt;}
.ws386{word-spacing:24.207760pt;}
.ws38b{word-spacing:24.302603pt;}
.ws104{word-spacing:24.303430pt;}
.ws2ee{word-spacing:24.351250pt;}
.wsd2{word-spacing:24.383130pt;}
.ws39{word-spacing:24.399439pt;}
.wsd1{word-spacing:24.446892pt;}
.ws2f3{word-spacing:24.457518pt;}
.ws103{word-spacing:24.478772pt;}
.ws38{word-spacing:24.480205pt;}
.ws16f{word-spacing:24.521279pt;}
.ws96{word-spacing:24.553160pt;}
.ws23c{word-spacing:24.563785pt;}
.ws387{word-spacing:24.582619pt;}
.wsf4{word-spacing:24.643486pt;}
.wsf3{word-spacing:24.685994pt;}
.ws2ae{word-spacing:24.728501pt;}
.ws1ee{word-spacing:24.802888pt;}
.ws1f9{word-spacing:24.866649pt;}
.ws50{word-spacing:24.867640pt;}
.ws30b{word-spacing:24.882588pt;}
.ws2c{word-spacing:24.900013pt;}
.wsee{word-spacing:24.909155pt;}
.wscb{word-spacing:24.930399pt;}
.wsed{word-spacing:24.967603pt;}
.wsaf{word-spacing:25.063245pt;}
.ws123{word-spacing:25.084498pt;}
.ws124{word-spacing:25.105751pt;}
.ws35e{word-spacing:25.147165pt;}
.wsec{word-spacing:25.148258pt;}
.ws20b{word-spacing:25.153572pt;}
.ws1f8{word-spacing:25.164199pt;}
.ws15a{word-spacing:25.190766pt;}
.ws35f{word-spacing:25.201362pt;}
.wsef{word-spacing:25.206705pt;}
.ws5d{word-spacing:25.249213pt;}
.ws17d{word-spacing:25.254526pt;}
.ws17b{word-spacing:25.259840pt;}
.wsf0{word-spacing:25.286406pt;}
.ws17c{word-spacing:25.312973pt;}
.ws1ef{word-spacing:25.366107pt;}
.wsa1{word-spacing:25.408615pt;}
.ws33b{word-spacing:25.476860pt;}
.wscc{word-spacing:25.509569pt;}
.ws5c{word-spacing:25.552076pt;}
.ws5b{word-spacing:25.615837pt;}
.ws242{word-spacing:25.783976pt;}
.wsd6{word-spacing:25.812431pt;}
.ws352{word-spacing:25.847203pt;}
.ws244{word-spacing:25.869785pt;}
.ws350{word-spacing:25.883334pt;}
.ws351{word-spacing:25.905916pt;}
.wsde{word-spacing:25.939954pt;}
.wsdd{word-spacing:26.104667pt;}
.ws1cd{word-spacing:26.115295pt;}
.ws243{word-spacing:26.145277pt;}
.ws314{word-spacing:26.200309pt;}
.wse7{word-spacing:26.221563pt;}
.wse8{word-spacing:26.450038pt;}
.ws29c{word-spacing:26.460665pt;}
.ws315{word-spacing:26.524426pt;}
.wsf{word-spacing:26.561619pt;}
.ws29d{word-spacing:26.800721pt;}
.wse0{word-spacing:26.896363pt;}
.ws235{word-spacing:26.960123pt;}
.ws160{word-spacing:26.981376pt;}
.wsdf{word-spacing:27.023884pt;}
.ws233{word-spacing:27.262986pt;}
.ws205{word-spacing:27.284240pt;}
.ws389{word-spacing:27.301476pt;}
.ws234{word-spacing:27.305493pt;}
.ws236{word-spacing:27.353313pt;}
.ws204{word-spacing:27.433014pt;}
.ws2a2{word-spacing:27.480836pt;}
.ws23b{word-spacing:27.576476pt;}
.ws1d1{word-spacing:27.581788pt;}
.wse3{word-spacing:27.629610pt;}
.ws2f9{word-spacing:27.730566pt;}
.ws11a{word-spacing:27.783699pt;}
.ws193{word-spacing:27.868712pt;}
.wse2{word-spacing:27.874024pt;}
.wsc4{word-spacing:27.884652pt;}
.ws2a0{word-spacing:27.932474pt;}
.ws20{word-spacing:27.958053pt;}
.ws1cf{word-spacing:27.959041pt;}
.ws191{word-spacing:27.969668pt;}
.ws1d0{word-spacing:27.969684pt;}
.ws51{word-spacing:28.003919pt;}
.wsc3{word-spacing:28.012174pt;}
.ws8{word-spacing:28.029425pt;}
.ws29f{word-spacing:28.033426pt;}
.ws55{word-spacing:28.037924pt;}
.ws52{word-spacing:28.054927pt;}
.ws1f{word-spacing:28.063430pt;}
.ws7{word-spacing:28.088933pt;}
.ws53{word-spacing:28.165446pt;}
.ws1f1{word-spacing:28.166262pt;}
.ws1f2{word-spacing:28.171576pt;}
.ws19b{word-spacing:28.187516pt;}
.ws198{word-spacing:28.272528pt;}
.ws19a{word-spacing:28.272530pt;}
.ws1f0{word-spacing:28.336290pt;}
.ws56{word-spacing:28.360982pt;}
.ws18d{word-spacing:28.389424pt;}
.ws270{word-spacing:28.437245pt;}
.ws34e{word-spacing:28.471218pt;}
.ws18c{word-spacing:28.490379pt;}
.ws199{word-spacing:28.501007pt;}
.ws2ef{word-spacing:28.532886pt;}
.ws2f0{word-spacing:28.639153pt;}
.ws18e{word-spacing:28.761361pt;}
.wsb0{word-spacing:28.771988pt;}
.ws24d{word-spacing:28.805428pt;}
.ws31c{word-spacing:28.814495pt;}
.wsa8{word-spacing:28.995151pt;}
.wsa9{word-spacing:29.037657pt;}
.ws10b{word-spacing:29.441473pt;}
.wsd7{word-spacing:29.616818pt;}
.ws63{word-spacing:29.919678pt;}
.ws62{word-spacing:30.047201pt;}
.ws38f{word-spacing:30.210021pt;}
.ws2a4{word-spacing:30.243797pt;}
.ws141{word-spacing:30.350065pt;}
.ws390{word-spacing:30.476486pt;}
.ws140{word-spacing:30.546660pt;}
.ws2fe{word-spacing:30.631673pt;}
.ws2fd{word-spacing:30.732629pt;}
.ws26b{word-spacing:30.934537pt;}
.ws166{word-spacing:31.338353pt;}
.wsf1{word-spacing:31.534949pt;}
.ws22{word-spacing:31.791267pt;}
.ws89{word-spacing:31.800618pt;}
.ws5a{word-spacing:31.928132pt;}
.ws23{word-spacing:31.953859pt;}
.ws31e{word-spacing:32.018466pt;}
.ws278{word-spacing:32.204434pt;}
.ws31f{word-spacing:32.242376pt;}
.ws31d{word-spacing:32.464792pt;}
.ws31a{word-spacing:32.640133pt;}
.ws215{word-spacing:32.650760pt;}
.ws66{word-spacing:32.810162pt;}
.ws319{word-spacing:32.895175pt;}
.ws372{word-spacing:33.308252pt;}
.ws371{word-spacing:33.461810pt;}
.ws2e0{word-spacing:33.540954pt;}
.wsf7{word-spacing:34.319165pt;}
.ws35c{word-spacing:34.468961pt;}
.ws35d{word-spacing:34.572837pt;}
.wsc5{word-spacing:36.699561pt;}
.ws1e7{word-spacing:46.173329pt;}
.ws21{word-spacing:49.468019pt;}
.ws143{word-spacing:52.225278pt;}
.ws1c8{word-spacing:53.383595pt;}
.ws178{word-spacing:54.361258pt;}
.ws2de{word-spacing:55.163128pt;}
.ws313{word-spacing:57.299562pt;}
.ws13d{word-spacing:63.811541pt;}
.ws8f{word-spacing:63.856174pt;}
.ws287{word-spacing:80.363808pt;}
.ws253{word-spacing:91.424945pt;}
.ws2df{word-spacing:107.097517pt;}
.ws2e1{word-spacing:107.108748pt;}
.ws1a3{word-spacing:169.549170pt;}
.ws1a6{word-spacing:174.788163pt;}
.ws183{word-spacing:232.742251pt;}
.ws186{word-spacing:237.981244pt;}
.ws185{word-spacing:311.968478pt;}
.ws1a0{word-spacing:314.565393pt;}
.ws1a5{word-spacing:341.600407pt;}
._31{margin-left:-405.773530pt;}
._27{margin-left:-30.708397pt;}
._23{margin-left:-21.951941pt;}
._33{margin-left:-15.665897pt;}
._3c{margin-left:-14.344002pt;}
._2{margin-left:-12.352000pt;}
._4{margin-left:-9.184000pt;}
._3{margin-left:-3.072000pt;}
._5{margin-left:-1.916800pt;}
._0{margin-left:-0.950400pt;}
._7{width:0.910933pt;}
._1{width:2.016000pt;}
._17{width:9.062648pt;}
._15{width:10.903232pt;}
._11{width:12.285028pt;}
._1c{width:13.241822pt;}
._1b{width:14.362076pt;}
._b{width:15.531028pt;}
._9{width:16.460871pt;}
._16{width:17.530188pt;}
._d{width:18.791106pt;}
._f{width:19.912356pt;}
._c{width:21.338560pt;}
._8{width:22.733637pt;}
._18{width:24.122775pt;}
._3a{width:25.020737pt;}
._10{width:25.932927pt;}
._a{width:27.579449pt;}
._e{width:28.950488pt;}
._1d{width:30.092675pt;}
._19{width:31.065890pt;}
._20{width:32.491358pt;}
._1a{width:34.133196pt;}
._21{width:35.530613pt;}
._1f{width:37.703789pt;}
._26{width:39.427796pt;}
._22{width:45.145665pt;}
._13{width:47.911126pt;}
._6{width:51.758932pt;}
._25{width:53.611435pt;}
._39{width:55.251743pt;}
._3b{width:58.482099pt;}
._24{width:63.919935pt;}
._38{width:66.284369pt;}
._37{width:77.356873pt;}
._2d{width:79.492683pt;}
._36{width:88.393928pt;}
._2a{width:98.222086pt;}
._35{width:104.534134pt;}
._34{width:116.634586pt;}
._14{width:202.069323pt;}
._2e{width:306.332053pt;}
._2c{width:312.013642pt;}
._28{width:334.387750pt;}
._30{width:341.645571pt;}
._12{width:367.207041pt;}
._29{width:414.417905pt;}
._2b{width:437.094597pt;}
._32{width:749.261813pt;}
._2f{width:769.996465pt;}
._1e{width:1439.828770pt;}
.fs10{font-size:26.566933pt;}
.fs11{font-size:30.106133pt;}
.fs5{font-size:32.411733pt;}
.fsf{font-size:35.418666pt;}
.fse{font-size:37.193600pt;}
.fs14{font-size:38.795733pt;}
.fsb{font-size:42.507733pt;}
.fs12{font-size:43.699732pt;}
.fs15{font-size:44.307733pt;}
.fsc{font-size:45.163732pt;}
.fs13{font-size:45.183467pt;}
.fsa{font-size:47.820267pt;}
.fs4{font-size:53.133865pt;}
.fsd{font-size:63.760533pt;}
.fs6{font-size:74.387200pt;}
.fs3{font-size:85.014933pt;}
.fs8{font-size:95.641600pt;}
.fs0{font-size:96.000000pt;}
.fs7{font-size:148.776000pt;}
.fs2{font-size:149.333333pt;}
.fs9{font-size:170.028798pt;}
.fs1{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:62.512685pt;}
.y87{bottom:75.816792pt;}
.y86{bottom:89.045249pt;}
.y271{bottom:89.801198pt;}
.y2f{bottom:96.151204pt;}
.y60{bottom:98.035170pt;}
.y246{bottom:98.119442pt;}
.yaa{bottom:98.121536pt;}
.y11d{bottom:98.190892pt;}
.y283{bottom:99.555318pt;}
.y14f{bottom:100.610667pt;}
.y169{bottom:100.610769pt;}
.y155{bottom:100.610831pt;}
.y201{bottom:102.198802pt;}
.y270{bottom:103.105306pt;}
.y1f6{bottom:104.319773pt;}
.y1aa{bottom:104.546158pt;}
.y2dd{bottom:104.994203pt;}
.y106{bottom:106.204956pt;}
.y2ce{bottom:106.816034pt;}
.y260{bottom:108.552012pt;}
.y5f{bottom:110.054224pt;}
.y1bf{bottom:110.212036pt;}
.y311{bottom:111.492907pt;}
.y14e{bottom:113.914773pt;}
.y168{bottom:113.914876pt;}
.y154{bottom:113.914937pt;}
.y18e{bottom:113.915605pt;}
.yc6{bottom:113.991382pt;}
.y245{bottom:113.993184pt;}
.ya9{bottom:113.995278pt;}
.y11c{bottom:114.594359pt;}
.y85{bottom:115.048267pt;}
.y282{bottom:115.504771pt;}
.y26f{bottom:116.333761pt;}
.y200{bottom:118.148265pt;}
.y2dc{bottom:118.222661pt;}
.y134{bottom:118.299758pt;}
.y1f5{bottom:120.269231pt;}
.y1a9{bottom:120.419901pt;}
.y5e{bottom:121.997837pt;}
.y105{bottom:122.154414pt;}
.y2cd{bottom:122.765492pt;}
.y25f{bottom:124.501475pt;}
.y310{bottom:124.721365pt;}
.y1be{bottom:126.161494pt;}
.y14d{bottom:127.143231pt;}
.y167{bottom:127.143331pt;}
.y84{bottom:128.352374pt;}
.y26e{bottom:129.637868pt;}
.y18d{bottom:129.865063pt;}
.yc5{bottom:129.940841pt;}
.y244{bottom:129.942642pt;}
.ya8{bottom:129.944736pt;}
.y11b{bottom:130.997826pt;}
.y2db{bottom:131.451118pt;}
.y281{bottom:131.454244pt;}
.y1ff{bottom:134.022003pt;}
.y133{bottom:134.249216pt;}
.y103{bottom:135.911865pt;}
.y1f4{bottom:136.142973pt;}
.y1a8{bottom:136.369359pt;}
.y30f{bottom:138.025471pt;}
.y104{bottom:138.103872pt;}
.y102{bottom:138.104288pt;}
.y2cc{bottom:138.714950pt;}
.y14c{bottom:140.447337pt;}
.y25e{bottom:140.450938pt;}
.y83{bottom:141.656480pt;}
.y1bd{bottom:142.035237pt;}
.y11a{bottom:144.301933pt;}
.y2da{bottom:144.755224pt;}
.y18c{bottom:145.738805pt;}
.yd4{bottom:145.740340pt;}
.y5d{bottom:145.885065pt;}
.yc4{bottom:145.890299pt;}
.y243{bottom:145.892100pt;}
.ya7{bottom:145.894194pt;}
.y1fd{bottom:147.401248pt;}
.y280{bottom:147.403697pt;}
.y334{bottom:150.118663pt;}
.y132{bottom:150.198674pt;}
.y30e{bottom:151.253928pt;}
.y1f3{bottom:152.092431pt;}
.y1a7{bottom:152.318817pt;}
.y101{bottom:154.053746pt;}
.y2cb{bottom:154.664408pt;}
.y82{bottom:154.960586pt;}
.y25d{bottom:156.400391pt;}
.y5c{bottom:157.828658pt;}
.y2d9{bottom:157.983681pt;}
.y1bc{bottom:157.984695pt;}
.y1fc{bottom:160.705354pt;}
.y119{bottom:160.705400pt;}
.y18b{bottom:161.688263pt;}
.yd3{bottom:161.689798pt;}
.yc3{bottom:161.839757pt;}
.y242{bottom:161.841558pt;}
.ya6{bottom:161.843652pt;}
.y27f{bottom:163.353149pt;}
.y333{bottom:163.422770pt;}
.y30d{bottom:164.482385pt;}
.y131{bottom:166.148132pt;}
.y26c{bottom:166.699565pt;}
.yff{bottom:167.811066pt;}
.y1f2{bottom:168.041889pt;}
.y1a6{bottom:168.268275pt;}
.y5b{bottom:169.772272pt;}
.y100{bottom:170.003204pt;}
.yfe{bottom:170.003341pt;}
.y2ca{bottom:170.613866pt;}
.y2d8{bottom:171.212138pt;}
.y25c{bottom:172.349854pt;}
.y1bb{bottom:173.934153pt;}
.y1fb{bottom:174.009460pt;}
.y81{bottom:174.840532pt;}
.y232{bottom:176.201321pt;}
.y332{bottom:176.726888pt;}
.y118{bottom:177.108868pt;}
.yd2{bottom:177.639256pt;}
.y30c{bottom:177.786491pt;}
.yc2{bottom:177.789215pt;}
.y241{bottom:177.791016pt;}
.ya5{bottom:177.793110pt;}
.y27e{bottom:179.302612pt;}
.y5a{bottom:181.791335pt;}
.yfc{bottom:183.685059pt;}
.y1f1{bottom:183.991347pt;}
.y1a5{bottom:184.217733pt;}
.y2d7{bottom:184.516244pt;}
.yfd{bottom:185.952799pt;}
.yfb{bottom:185.954320pt;}
.y2c9{bottom:186.563324pt;}
.y80{bottom:188.144638pt;}
.y25b{bottom:188.223592pt;}
.y231{bottom:189.429775pt;}
.y1ba{bottom:189.883611pt;}
.y331{bottom:190.030986pt;}
.y30b{bottom:191.014948pt;}
.yd1{bottom:193.588714pt;}
.y59{bottom:193.734959pt;}
.yc1{bottom:193.738673pt;}
.y240{bottom:193.740474pt;}
.ya4{bottom:193.742568pt;}
.y117{bottom:194.192049pt;}
.y27d{bottom:195.252075pt;}
.y2d6{bottom:197.744701pt;}
.y18a{bottom:198.878231pt;}
.y1f0{bottom:199.940806pt;}
.y1a4{bottom:200.167191pt;}
.y7f{bottom:201.448745pt;}
.yfa{bottom:201.903778pt;}
.y2c8{bottom:202.512782pt;}
.y230{bottom:202.733873pt;}
.y330{bottom:203.259460pt;}
.y130{bottom:203.338542pt;}
.y25a{bottom:204.173055pt;}
.y30a{bottom:204.319055pt;}
.y58{bottom:205.678562pt;}
.y1b9{bottom:205.833069pt;}
.y26b{bottom:206.547628pt;}
.y116{bottom:207.496156pt;}
.yd0{bottom:209.538172pt;}
.y23f{bottom:209.689932pt;}
.ya3{bottom:209.692026pt;}
.yc0{bottom:209.694107pt;}
.y2d5{bottom:211.048808pt;}
.y27c{bottom:211.125814pt;}
.y7e{bottom:214.677202pt;}
.y1ef{bottom:215.890264pt;}
.y1a3{bottom:216.116649pt;}
.y32f{bottom:216.563538pt;}
.y309{bottom:217.547512pt;}
.y57{bottom:217.622166pt;}
.yf9{bottom:217.777520pt;}
.y2c7{bottom:218.462240pt;}
.y259{bottom:220.122498pt;}
.ycf{bottom:225.487630pt;}
.y23e{bottom:225.639390pt;}
.ya2{bottom:225.641484pt;}
.ybf{bottom:225.643565pt;}
.y27b{bottom:227.075277pt;}
.y115{bottom:227.829997pt;}
.y56{bottom:229.565790pt;}
.y32e{bottom:229.867655pt;}
.y22b{bottom:230.136133pt;}
.y308{bottom:230.775969pt;}
.y189{bottom:230.929057pt;}
.y1ee{bottom:231.839722pt;}
.y1a2{bottom:232.066107pt;}
.yf8{bottom:233.726978pt;}
.y2c6{bottom:234.335982pt;}
.y7d{bottom:234.632797pt;}
.y258{bottom:236.071960pt;}
.yce{bottom:241.437089pt;}
.y55{bottom:241.509393pt;}
.y23d{bottom:241.513133pt;}
.ya1{bottom:241.515227pt;}
.ybe{bottom:241.517307pt;}
.y27a{bottom:243.024719pt;}
.y32d{bottom:243.096110pt;}
.y307{bottom:244.080075pt;}
.y2d4{bottom:245.518127pt;}
.y1ed{bottom:247.789180pt;}
.y7c{bottom:247.936903pt;}
.y1a1{bottom:247.939849pt;}
.y229{bottom:249.800562pt;}
.y2c5{bottom:250.285440pt;}
.y257{bottom:252.021423pt;}
.y54{bottom:253.528457pt;}
.y32c{bottom:256.400228pt;}
.y306{bottom:257.308532pt;}
.ycd{bottom:257.386547pt;}
.y23c{bottom:257.462591pt;}
.ya0{bottom:257.464685pt;}
.ybd{bottom:257.466765pt;}
.y279{bottom:258.974182pt;}
.y7b{bottom:261.241009pt;}
.y12f{bottom:261.771520pt;}
.y1d6{bottom:262.068547pt;}
.y224{bottom:262.789209pt;}
.y1ec{bottom:263.662922pt;}
.y1a0{bottom:263.889307pt;}
.yf5{bottom:264.718633pt;}
.y53{bottom:265.472060pt;}
.y2c4{bottom:266.234898pt;}
.y29{bottom:266.613761pt;}
.y256{bottom:267.970886pt;}
.y32b{bottom:269.704325pt;}
.y305{bottom:270.536989pt;}
.y113{bottom:271.521200pt;}
.ycc{bottom:273.260289pt;}
.y23b{bottom:273.412049pt;}
.y9f{bottom:273.414143pt;}
.ybc{bottom:273.416223pt;}
.y114{bottom:273.713338pt;}
.y112{bottom:273.713465pt;}
.yf7{bottom:273.788584pt;}
.yf4{bottom:273.788853pt;}
.y278{bottom:274.923645pt;}
.y1d5{bottom:275.372654pt;}
.y52{bottom:277.415684pt;}
.y12e{bottom:277.720978pt;}
.y1eb{bottom:279.612380pt;}
.y19f{bottom:279.838765pt;}
.y7a{bottom:281.120955pt;}
.y2c3{bottom:282.184356pt;}
.y304{bottom:283.841096pt;}
.y255{bottom:283.920329pt;}
.y110{bottom:287.395203pt;}
.ycb{bottom:289.209747pt;}
.y51{bottom:289.359288pt;}
.y23a{bottom:289.361507pt;}
.y188{bottom:289.361634pt;}
.y9e{bottom:289.363601pt;}
.ybb{bottom:289.365681pt;}
.y10f{bottom:289.662876pt;}
.y111{bottom:289.662923pt;}
.y225{bottom:290.155074pt;}
.y277{bottom:290.873088pt;}
.y22a{bottom:291.101079pt;}
.y1d4{bottom:291.776121pt;}
.yf6{bottom:292.535540pt;}
.y12d{bottom:293.670436pt;}
.y79{bottom:294.425061pt;}
.y1ea{bottom:295.561838pt;}
.y19e{bottom:295.788223pt;}
.y303{bottom:297.069553pt;}
.y2c2{bottom:298.133814pt;}
.y254{bottom:299.869792pt;}
.y50{bottom:301.302891pt;}
.y2d3{bottom:302.663871pt;}
.y1d3{bottom:305.004578pt;}
.yca{bottom:305.159205pt;}
.y239{bottom:305.310965pt;}
.y187{bottom:305.311092pt;}
.y9d{bottom:305.313059pt;}
.yba{bottom:305.315139pt;}
.y276{bottom:306.822550pt;}
.y22f{bottom:309.218411pt;}
.y12c{bottom:309.544178pt;}
.y302{bottom:310.373659pt;}
.y1e9{bottom:311.511296pt;}
.y19d{bottom:311.737681pt;}
.yf1{bottom:312.340643pt;}
.y4f{bottom:313.246495pt;}
.y2c1{bottom:314.083272pt;}
.y78{bottom:314.305007pt;}
.y28{bottom:314.462134pt;}
.y253{bottom:315.743530pt;}
.y2d2{bottom:315.967977pt;}
.y226{bottom:317.523116pt;}
.y1d2{bottom:318.308684pt;}
.yc9{bottom:321.108663pt;}
.y238{bottom:321.260423pt;}
.y186{bottom:321.260550pt;}
.y9c{bottom:321.262517pt;}
.yb9{bottom:321.264597pt;}
.yf3{bottom:321.410079pt;}
.yf0{bottom:321.411797pt;}
.y275{bottom:322.772013pt;}
.y301{bottom:323.602116pt;}
.y4e{bottom:325.190118pt;}
.y12b{bottom:325.493636pt;}
.y10c{bottom:325.568438pt;}
.y10b{bottom:325.568758pt;}
.y1e8{bottom:327.460754pt;}
.y77{bottom:327.609113pt;}
.y19c{bottom:327.687139pt;}
.y2d1{bottom:329.196434pt;}
.y2c0{bottom:330.032731pt;}
.y27{bottom:330.411592pt;}
.y252{bottom:331.692993pt;}
.y26d{bottom:334.620097pt;}
.y1d1{bottom:334.712152pt;}
.y10a{bottom:335.395203pt;}
.y22e{bottom:335.931601pt;}
.y300{bottom:336.830573pt;}
.y10d{bottom:337.133870pt;}
.y4d{bottom:337.209182pt;}
.y237{bottom:337.209881pt;}
.y185{bottom:337.210008pt;}
.y9b{bottom:337.211975pt;}
.yb8{bottom:337.214055pt;}
.y274{bottom:338.645752pt;}
.yf2{bottom:340.157035pt;}
.y76{bottom:340.913220pt;}
.y12a{bottom:341.443094pt;}
.y107{bottom:341.521883pt;}
.y2d0{bottom:342.500540pt;}
.y1e7{bottom:343.410212pt;}
.y19b{bottom:343.636597pt;}
.y109{bottom:343.936930pt;}
.y227{bottom:344.890101pt;}
.y2bf{bottom:345.982189pt;}
.y26{bottom:346.361050pt;}
.y251{bottom:347.642456pt;}
.y1d0{bottom:348.016258pt;}
.y4c{bottom:349.152785pt;}
.y2ff{bottom:350.134679pt;}
.y236{bottom:353.159339pt;}
.y184{bottom:353.159466pt;}
.y9a{bottom:353.161433pt;}
.yb7{bottom:353.163513pt;}
.y153{bottom:353.163515pt;}
.y75{bottom:354.217326pt;}
.y273{bottom:354.595215pt;}
.y108{bottom:355.124240pt;}
.y2cf{bottom:355.804647pt;}
.y129{bottom:357.392552pt;}
.yc8{bottom:358.298783pt;}
.y1e6{bottom:359.359670pt;}
.y19a{bottom:359.586055pt;}
.yef{bottom:360.491754pt;}
.y1cf{bottom:361.320365pt;}
.y2be{bottom:361.855931pt;}
.y25{bottom:362.310508pt;}
.y22d{bottom:362.644817pt;}
.y2fe{bottom:363.363137pt;}
.y250{bottom:363.591919pt;}
.y10e{bottom:364.270793pt;}
.y235{bottom:369.033081pt;}
.y183{bottom:369.033208pt;}
.y99{bottom:369.035175pt;}
.yb6{bottom:369.037256pt;}
.y152{bottom:369.037257pt;}
.y228{bottom:372.258143pt;}
.y4b{bottom:373.039952pt;}
.y128{bottom:373.342010pt;}
.y1e5{bottom:375.309128pt;}
.y199{bottom:375.459798pt;}
.yee{bottom:376.441213pt;}
.y2fd{bottom:376.667243pt;}
.y1ce{bottom:377.723832pt;}
.y2bd{bottom:377.805389pt;}
.y24{bottom:378.184251pt;}
.y24f{bottom:379.541382pt;}
.y2a2{bottom:381.656133pt;}
.y182{bottom:384.982666pt;}
.y1b8{bottom:384.982961pt;}
.y180{bottom:384.983509pt;}
.y98{bottom:384.984633pt;}
.yb5{bottom:384.986714pt;}
.y269{bottom:385.103027pt;}
.y4a{bottom:386.343581pt;}
.y127{bottom:389.291468pt;}
.y74{bottom:389.293677pt;}
.y22c{bottom:389.356653pt;}
.y2fc{bottom:389.895700pt;}
.yc7{bottom:390.349609pt;}
.y181{bottom:390.878662pt;}
.y1cd{bottom:390.952289pt;}
.y1e4{bottom:391.182870pt;}
.y198{bottom:391.409256pt;}
.yed{bottom:392.390671pt;}
.y2bc{bottom:393.754847pt;}
.y23{bottom:394.133709pt;}
.y2a1{bottom:394.884608pt;}
.y24e{bottom:395.490845pt;}
.y49{bottom:399.647170pt;}
.y1b7{bottom:400.932419pt;}
.y17f{bottom:400.932967pt;}
.y97{bottom:400.934091pt;}
.yb4{bottom:400.936172pt;}
.y151{bottom:400.936173pt;}
.y2fb{bottom:403.124157pt;}
.y1cc{bottom:404.256395pt;}
.y73{bottom:405.167419pt;}
.y126{bottom:405.240926pt;}
.y124{bottom:405.241333pt;}
.y234{bottom:406.299194pt;}
.y1e3{bottom:407.132328pt;}
.y197{bottom:407.358714pt;}
.y2a0{bottom:408.188685pt;}
.yec{bottom:408.340129pt;}
.y2bb{bottom:409.704305pt;}
.y22{bottom:410.083167pt;}
.y125{bottom:411.136922pt;}
.y24d{bottom:411.440308pt;}
.y48{bottom:412.875441pt;}
.y2fa{bottom:416.424358pt;}
.y1b6{bottom:416.881877pt;}
.y17e{bottom:416.882425pt;}
.y1b4{bottom:416.882706pt;}
.y96{bottom:416.883549pt;}
.yb3{bottom:416.885630pt;}
.y1c8{bottom:420.660992pt;}
.y72{bottom:421.116877pt;}
.y123{bottom:421.190791pt;}
.y29f{bottom:421.492803pt;}
.y1b5{bottom:422.777873pt;}
.y1e2{bottom:423.081786pt;}
.y196{bottom:423.308172pt;}
.y2ba{bottom:425.653763pt;}
.y268{bottom:426.467041pt;}
.y24c{bottom:427.389730pt;}
.y21f{bottom:428.875068pt;}
.y2f9{bottom:429.652815pt;}
.y21{bottom:429.811771pt;}
.y17d{bottom:432.831883pt;}
.y1b3{bottom:432.832164pt;}
.y95{bottom:432.833007pt;}
.yb2{bottom:432.835088pt;}
.y1cb{bottom:433.963969pt;}
.y1c7{bottom:433.965098pt;}
.y122{bottom:437.064533pt;}
.y71{bottom:437.066335pt;}
.y1e1{bottom:439.031245pt;}
.y195{bottom:439.257630pt;}
.y2b9{bottom:441.603221pt;}
.y2f8{bottom:442.881272pt;}
.y24b{bottom:443.263509pt;}
.yeb{bottom:445.530680pt;}
.y8{bottom:445.678914pt;}
.y1ca{bottom:447.268075pt;}
.y1c6{bottom:447.269205pt;}
.y21d{bottom:448.567858pt;}
.y29d{bottom:448.665863pt;}
.y17c{bottom:448.781341pt;}
.y1b2{bottom:448.781622pt;}
.y94{bottom:448.782465pt;}
.yb1{bottom:448.784546pt;}
.y70{bottom:453.015793pt;}
.y1e0{bottom:454.980703pt;}
.y194{bottom:455.207088pt;}
.y2f7{bottom:456.185378pt;}
.y14b{bottom:457.019979pt;}
.y2b8{bottom:457.552679pt;}
.y24a{bottom:459.212931pt;}
.y1c9{bottom:460.496532pt;}
.y1c5{bottom:460.497662pt;}
.y213{bottom:461.528104pt;}
.y20{bottom:461.634971pt;}
.y29b{bottom:464.323903pt;}
.y17b{bottom:464.730799pt;}
.y1b1{bottom:464.731080pt;}
.y93{bottom:464.731923pt;}
.yb0{bottom:464.734004pt;}
.y166{bottom:464.734009pt;}
.y6f{bottom:468.965251pt;}
.y2f6{bottom:469.413835pt;}
.y14a{bottom:470.248436pt;}
.y1df{bottom:470.930161pt;}
.y193{bottom:471.156546pt;}
.y2b7{bottom:473.502137pt;}
.y121{bottom:474.255086pt;}
.y249{bottom:475.162394pt;}
.y214{bottom:476.735623pt;}
.y290{bottom:477.340423pt;}
.y1c4{bottom:477.580843pt;}
.y21e{bottom:478.226794pt;}
.y17a{bottom:480.680257pt;}
.y1b0{bottom:480.680538pt;}
.y92{bottom:480.681381pt;}
.y178{bottom:480.682338pt;}
.yaf{bottom:480.683462pt;}
.y165{bottom:480.683472pt;}
.y1f{bottom:481.363575pt;}
.y32a{bottom:482.717936pt;}
.y2f5{bottom:482.717942pt;}
.y7{bottom:483.012248pt;}
.y149{bottom:483.552542pt;}
.y6e{bottom:484.914709pt;}
.y179{bottom:486.576253pt;}
.y1de{bottom:486.879619pt;}
.y192{bottom:487.106004pt;}
.y2b6{bottom:489.375879pt;}
.y291{bottom:490.997161pt;}
.y248{bottom:491.111857pt;}
.y215{bottom:491.942044pt;}
.y47{bottom:492.401937pt;}
.y2f4{bottom:495.946399pt;}
.y329{bottom:495.946411pt;}
.y1af{bottom:496.554281pt;}
.y91{bottom:496.555124pt;}
.y177{bottom:496.556080pt;}
.yae{bottom:496.557204pt;}
.y164{bottom:496.557210pt;}
.y148{bottom:496.856649pt;}
.y1c3{bottom:497.990334pt;}
.y6d{bottom:500.864167pt;}
.y1dd{bottom:502.829077pt;}
.y191{bottom:502.979746pt;}
.yea{bottom:503.962412pt;}
.y292{bottom:504.656138pt;}
.y29c{bottom:504.961598pt;}
.y2b5{bottom:505.325337pt;}
.y46{bottom:505.705526pt;}
.y247{bottom:507.061320pt;}
.y216{bottom:507.149523pt;}
.y328{bottom:509.174845pt;}
.y2f3{bottom:509.174856pt;}
.y1c2{bottom:511.218791pt;}
.y90{bottom:512.504582pt;}
.y176{bottom:512.505538pt;}
.yad{bottom:512.506662pt;}
.y163{bottom:512.506673pt;}
.y1e{bottom:513.186776pt;}
.y6c{bottom:516.813626pt;}
.y293{bottom:518.315114pt;}
.y1dc{bottom:518.702819pt;}
.y190{bottom:518.929204pt;}
.y45{bottom:518.933797pt;}
.ye9{bottom:519.911870pt;}
.y2b4{bottom:521.274795pt;}
.y217{bottom:522.357043pt;}
.y2f2{bottom:522.478962pt;}
.y327{bottom:522.478963pt;}
.y223{bottom:524.154539pt;}
.y8f{bottom:528.454040pt;}
.y175{bottom:528.454996pt;}
.yac{bottom:528.456120pt;}
.y294{bottom:531.971852pt;}
.y44{bottom:532.237386pt;}
.y6b{bottom:532.687368pt;}
.y120{bottom:532.762293pt;}
.y1ae{bottom:533.820394pt;}
.y1db{bottom:534.652277pt;}
.y18f{bottom:534.878662pt;}
.y326{bottom:535.707397pt;}
.y2f1{bottom:535.707419pt;}
.ye8{bottom:535.861328pt;}
.ye6{bottom:535.863600pt;}
.y2b3{bottom:537.224253pt;}
.y218{bottom:537.564562pt;}
.ye7{bottom:541.757487pt;}
.y8e{bottom:544.403498pt;}
.y174{bottom:544.404454pt;}
.y162{bottom:544.405558pt;}
.y1d{bottom:544.405578pt;}
.y43{bottom:545.541016pt;}
.y295{bottom:545.628590pt;}
.y3{bottom:546.930420pt;}
.y2e{bottom:547.576777pt;}
.y6a{bottom:548.636826pt;}
.y11f{bottom:548.711751pt;}
.y222{bottom:548.785068pt;}
.y325{bottom:548.935872pt;}
.y2f0{bottom:548.935876pt;}
.y263{bottom:549.165324pt;}
.y1da{bottom:550.601735pt;}
.ye5{bottom:551.813058pt;}
.y1c1{bottom:552.113089pt;}
.y219{bottom:552.770942pt;}
.y26a{bottom:553.021647pt;}
.y2b2{bottom:553.173711pt;}
.y296{bottom:559.287567pt;}
.y8d{bottom:560.352956pt;}
.y173{bottom:560.353912pt;}
.y1c{bottom:560.355036pt;}
.y2ef{bottom:562.239983pt;}
.y324{bottom:562.239990pt;}
.y69{bottom:564.586284pt;}
.y1c0{bottom:565.417196pt;}
.y1d9{bottom:566.551193pt;}
.ye4{bottom:567.762516pt;}
.y21a{bottom:567.978462pt;}
.y2b1{bottom:569.123169pt;}
.y297{bottom:572.944346pt;}
.y221{bottom:573.414259pt;}
.y2d{bottom:574.110148pt;}
.y323{bottom:575.468424pt;}
.y2ee{bottom:575.468440pt;}
.y8c{bottom:576.302414pt;}
.y172{bottom:576.303370pt;}
.y1b{bottom:576.304494pt;}
.y1ac{bottom:576.982433pt;}
.y1d8{bottom:582.500651pt;}
.y21b{bottom:583.185981pt;}
.ye3{bottom:583.711974pt;}
.y2b0{bottom:585.072628pt;}
.y261{bottom:585.846395pt;}
.y298{bottom:586.603281pt;}
.y146{bottom:588.394622pt;}
.y322{bottom:588.772542pt;}
.y2ed{bottom:588.772546pt;}
.y1ab{bottom:590.286540pt;}
.y8b{bottom:592.251872pt;}
.y171{bottom:592.252828pt;}
.y161{bottom:592.253947pt;}
.y1a{bottom:592.253952pt;}
.y220{bottom:598.043444pt;}
.y21c{bottom:598.393460pt;}
.ye2{bottom:599.585717pt;}
.y299{bottom:600.262257pt;}
.y2af{bottom:601.022086pt;}
.y2ec{bottom:602.001003pt;}
.y321{bottom:602.001017pt;}
.y266{bottom:602.451294pt;}
.y29e{bottom:602.901092pt;}
.y145{bottom:604.798089pt;}
.y170{bottom:608.202286pt;}
.y19{bottom:608.203410pt;}
.y68{bottom:612.434657pt;}
.y29a{bottom:613.918996pt;}
.y320{bottom:615.229451pt;}
.y2eb{bottom:615.229460pt;}
.ye1{bottom:615.535175pt;}
.y2ae{bottom:616.895828pt;}
.y144{bottom:618.102195pt;}
.y2c{bottom:621.958944pt;}
.y16f{bottom:624.076029pt;}
.y160{bottom:624.077148pt;}
.y18{bottom:624.077153pt;}
.y1f9{bottom:624.604312pt;}
.y3c{bottom:628.160075pt;}
.y67{bottom:628.384115pt;}
.y2ea{bottom:628.533566pt;}
.y31f{bottom:628.533569pt;}
.y8a{bottom:629.442383pt;}
.y20e{bottom:629.923337pt;}
.ye0{bottom:631.484633pt;}
.y2ad{bottom:632.845286pt;}
.y28e{bottom:634.235598pt;}
.y143{bottom:634.505663pt;}
.y1f8{bottom:637.908418pt;}
.y16e{bottom:640.025487pt;}
.y17{bottom:640.026611pt;}
.y3b{bottom:641.463664pt;}
.y2e9{bottom:641.762023pt;}
.y31e{bottom:641.762044pt;}
.y265{bottom:645.570800pt;}
.ydf{bottom:647.434091pt;}
.y142{bottom:647.809769pt;}
.y2ac{bottom:648.794744pt;}
.y20c{bottom:649.619586pt;}
.y28c{bottom:651.060142pt;}
.y1f7{bottom:651.212524pt;}
.y6{bottom:653.763753pt;}
.y3a{bottom:654.767253pt;}
.y31d{bottom:655.066121pt;}
.y2e8{bottom:655.066130pt;}
.y16d{bottom:655.974945pt;}
.y16{bottom:655.976069pt;}
.y15f{bottom:655.976074pt;}
.y202{bottom:662.576536pt;}
.yde{bottom:663.383549pt;}
.y284{bottom:663.998008pt;}
.y141{bottom:664.213237pt;}
.y2ab{bottom:664.744202pt;}
.y39{bottom:667.995565pt;}
.y2e7{bottom:668.294587pt;}
.y31c{bottom:668.294596pt;}
.y16c{bottom:671.924403pt;}
.y15{bottom:671.925527pt;}
.y15e{bottom:671.925537pt;}
.y66{bottom:676.156625pt;}
.y140{bottom:677.441694pt;}
.y203{bottom:677.784055pt;}
.ydd{bottom:679.333007pt;}
.y2aa{bottom:680.693660pt;}
.y38{bottom:681.299154pt;}
.y31b{bottom:681.523031pt;}
.y2e6{bottom:681.523044pt;}
.y285{bottom:683.371584pt;}
.yc{bottom:684.774148pt;}
.y20d{bottom:685.151690pt;}
.y89{bottom:687.873861pt;}
.y14{bottom:687.874985pt;}
.y15d{bottom:687.875000pt;}
.y5{bottom:691.097087pt;}
.y204{bottom:692.991534pt;}
.y28d{bottom:693.630373pt;}
.y13f{bottom:693.845161pt;}
.y37{bottom:694.602783pt;}
.y31a{bottom:694.827148pt;}
.y2e5{bottom:694.827150pt;}
.ydc{bottom:695.282465pt;}
.y2a9{bottom:696.643118pt;}
.y65{bottom:700.043696pt;}
.y286{bottom:702.745119pt;}
.y13{bottom:703.824443pt;}
.y15c{bottom:703.824463pt;}
.yb{bottom:705.940023pt;}
.y13e{bottom:707.149267pt;}
.y319{bottom:708.055583pt;}
.y2e4{bottom:708.055607pt;}
.y205{bottom:708.200111pt;}
.ydb{bottom:711.231923pt;}
.y2a8{bottom:712.592576pt;}
.y212{bottom:714.565093pt;}
.y12{bottom:719.773901pt;}
.y15b{bottom:719.773926pt;}
.y2e3{bottom:721.284064pt;}
.y318{bottom:721.284098pt;}
.y36{bottom:721.437093pt;}
.y42{bottom:721.440674pt;}
.y287{bottom:722.118654pt;}
.y206{bottom:723.407631pt;}
.y64{bottom:724.005155pt;}
.y13d{bottom:724.232449pt;}
.y16b{bottom:725.064372pt;}
.yda{bottom:727.105665pt;}
.y4{bottom:728.430420pt;}
.y2a7{bottom:728.542034pt;}
.y317{bottom:734.588135pt;}
.y2e2{bottom:734.588171pt;}
.y35{bottom:734.740723pt;}
.y41{bottom:734.744303pt;}
.y11{bottom:735.723359pt;}
.y15a{bottom:735.723389pt;}
.y13c{bottom:737.536555pt;}
.y207{bottom:738.615150pt;}
.y211{bottom:739.688552pt;}
.y288{bottom:741.492189pt;}
.yd9{bottom:743.055123pt;}
.y2a6{bottom:744.415776pt;}
.y2b{bottom:746.532145pt;}
.y2e1{bottom:747.816628pt;}
.y316{bottom:747.816650pt;}
.y63{bottom:747.892226pt;}
.y34{bottom:748.044271pt;}
.y40{bottom:748.047852pt;}
.y159{bottom:751.597087pt;}
.y10{bottom:751.597101pt;}
.y208{bottom:753.822670pt;}
.y138{bottom:753.939701pt;}
.y13a{bottom:753.940023pt;}
.y139{bottom:758.929036pt;}
.y2a5{bottom:760.365234pt;}
.y289{bottom:760.865806pt;}
.y2e0{bottom:761.120734pt;}
.y315{bottom:761.120768pt;}
.y33{bottom:761.347900pt;}
.y3f{bottom:761.351481pt;}
.y210{bottom:764.813959pt;}
.y137{bottom:767.168158pt;}
.y13b{bottom:767.168480pt;}
.y158{bottom:767.546549pt;}
.yf{bottom:767.546559pt;}
.y209{bottom:769.029050pt;}
.y262{bottom:769.304850pt;}
.y2a{bottom:770.418783pt;}
.ya{bottom:770.419482pt;}
.y62{bottom:771.779297pt;}
.yd7{bottom:771.854899pt;}
.y267{bottom:772.241781pt;}
.y2df{bottom:774.349191pt;}
.y314{bottom:774.349202pt;}
.y32{bottom:774.576172pt;}
.y3e{bottom:774.579753pt;}
.yd6{bottom:777.222377pt;}
.y28a{bottom:780.239341pt;}
.yd8{bottom:782.664118pt;}
.y157{bottom:783.496012pt;}
.ye{bottom:783.496017pt;}
.y20a{bottom:784.237709pt;}
.yd5{bottom:786.292806pt;}
.y313{bottom:787.577637pt;}
.y136{bottom:787.577648pt;}
.y31{bottom:787.879720pt;}
.y3d{bottom:787.883382pt;}
.y20f{bottom:789.938230pt;}
.y28f{bottom:790.534100pt;}
.y9{bottom:794.380941pt;}
.y61{bottom:795.741618pt;}
.y2a4{bottom:797.555745pt;}
.y20b{bottom:799.444089pt;}
.yd{bottom:799.445475pt;}
.y28b{bottom:799.612876pt;}
.y30{bottom:800.654948pt;}
.y135{bottom:800.881755pt;}
.y1d7{bottom:831.490621pt;}
.y312{bottom:831.490856pt;}
.y147{bottom:831.492917pt;}
.y11e{bottom:831.492935pt;}
.y2de{bottom:831.493449pt;}
.y272{bottom:831.493571pt;}
.y1fe{bottom:831.494026pt;}
.y150{bottom:831.494246pt;}
.y233{bottom:831.494310pt;}
.y16a{bottom:831.494385pt;}
.y156{bottom:831.494410pt;}
.y1ad{bottom:831.494739pt;}
.y2a3{bottom:831.494797pt;}
.y1fa{bottom:831.494851pt;}
.y264{bottom:831.495117pt;}
.y335{bottom:831.495840pt;}
.yab{bottom:831.495850pt;}
.y2{bottom:838.750895pt;}
.y1{bottom:865.417318pt;}
.h28{height:2.125355pt;}
.h31{height:18.145215pt;}
.h2f{height:19.925200pt;}
.h34{height:20.682913pt;}
.h2c{height:24.190949pt;}
.h24{height:24.332623pt;}
.h21{height:25.403229pt;}
.h38{height:28.243294pt;}
.h14{height:29.202813pt;}
.h13{height:29.415351pt;}
.h39{height:30.786086pt;}
.h35{height:30.846829pt;}
.h18{height:31.027484pt;}
.h3a{height:31.043106pt;}
.h32{height:31.253302pt;}
.h36{height:31.813405pt;}
.h33{height:32.292068pt;}
.h10{height:32.661242pt;}
.h11{height:32.852523pt;}
.h37{height:32.893564pt;}
.h12{height:35.408942pt;}
.ha{height:36.290430pt;}
.h9{height:36.502965pt;}
.h8{height:36.768635pt;}
.h17{height:37.621389pt;}
.h1e{height:37.990714pt;}
.h2d{height:39.834805pt;}
.h27{height:39.850399pt;}
.h2e{height:39.850999pt;}
.h1b{height:44.122289pt;}
.h1c{height:44.260510pt;}
.h1d{height:44.568613pt;}
.h25{height:44.759894pt;}
.h16{height:45.535723pt;}
.h30{height:47.170963pt;}
.h22{height:47.475820pt;}
.hc{height:51.104006pt;}
.h15{height:51.475942pt;}
.h19{height:56.198455pt;}
.h1a{height:56.202281pt;}
.hb{height:58.405259pt;}
.h7{height:58.830334pt;}
.h23{height:61.990573pt;}
.he{height:65.705779pt;}
.h2a{height:72.788082pt;}
.h1f{height:74.273917pt;}
.h26{height:76.130703pt;}
.h29{height:76.134442pt;}
.h2b{height:76.135516pt;}
.h2{height:84.288000pt;}
.h20{height:88.903584pt;}
.hd{height:102.209112pt;}
.hf{height:103.646265pt;}
.h4{height:139.626667pt;}
.h3{height:299.200000pt;}
.h6{height:888.000000pt;}
.h5{height:888.189333pt;}
.h1{height:910.666667pt;}
.h0{height:910.866667pt;}
.w2{width:585.826667pt;}
.w3{width:586.000000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4{left:71.810933pt;}
.x2{left:74.456665pt;}
.x6{left:75.968399pt;}
.x3{left:77.007868pt;}
.x1{left:77.952799pt;}
.x52{left:83.072520pt;}
.x5{left:85.115655pt;}
.x9{left:87.767019pt;}
.x3f{left:88.905380pt;}
.x4d{left:92.665493pt;}
.x40{left:94.957789pt;}
.x44{left:96.783742pt;}
.x4e{left:98.181820pt;}
.x49{left:99.920748pt;}
.x3e{left:104.036412pt;}
.x4c{left:106.456285pt;}
.x48{left:108.195212pt;}
.x4f{left:111.706753pt;}
.x25{left:116.485067pt;}
.x26{left:124.421997pt;}
.x29{left:136.667735pt;}
.x3c{left:138.180166pt;}
.x2f{left:140.447386pt;}
.x2a{left:147.250397pt;}
.x2c{left:156.244532pt;}
.x11{left:168.413608pt;}
.x35{left:174.538533pt;}
.x30{left:179.603068pt;}
.x31{left:183.836141pt;}
.x32{left:195.552673pt;}
.xa{left:196.837728pt;}
.x15{left:199.938520pt;}
.x1e{left:208.864428pt;}
.x45{left:222.852397pt;}
.x24{left:240.151062pt;}
.x46{left:242.600403pt;}
.x47{left:243.769124pt;}
.x16{left:247.106201pt;}
.x1f{left:253.000739pt;}
.x43{left:257.920410pt;}
.x21{left:260.333938pt;}
.x4a{left:263.791089pt;}
.x20{left:267.590535pt;}
.x41{left:268.952408pt;}
.xb{left:273.335321pt;}
.x2e{left:277.341593pt;}
.x22{left:282.859817pt;}
.x50{left:287.260291pt;}
.xc{left:293.291199pt;}
.x19{left:297.751058pt;}
.x7{left:300.473104pt;}
.x23{left:304.100667pt;}
.x1a{left:306.292806pt;}
.xd{left:307.199870pt;}
.x42{left:308.196168pt;}
.x13{left:311.660440pt;}
.xe{left:315.288127pt;}
.x2b{left:317.404663pt;}
.x27{left:340.081868pt;}
.x12{left:344.919696pt;}
.x28{left:348.094400pt;}
.x33{left:352.705606pt;}
.x17{left:356.560631pt;}
.x38{left:357.618815pt;}
.x39{left:362.607747pt;}
.x3d{left:370.015762pt;}
.x18{left:372.888117pt;}
.x3a{left:376.440796pt;}
.x3b{left:381.429850pt;}
.x2d{left:388.609674pt;}
.xf{left:393.070800pt;}
.x4b{left:404.174405pt;}
.x10{left:407.508545pt;}
.x51{left:409.239596pt;}
.x36{left:416.125854pt;}
.x37{left:421.114787pt;}
.x1b{left:429.127482pt;}
.x1d{left:434.418783pt;}
.x1c{left:437.971476pt;}
.x34{left:463.520448pt;}
.x14{left:486.878653pt;}
.x8{left:497.081665pt;}
}


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