
/* 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_16ee48923d23.woff")format("woff");}.ff1{font-family:ff1;line-height:0.909000;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_9607412718c4.woff")format("woff");}.ff2{font-family:ff2;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_c61711d99cf5.woff")format("woff");}.ff3{font-family:ff3;line-height:0.245000;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_8478a234b97b.woff")format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_9134e1f34bc8.woff")format("woff");}.ff5{font-family:ff5;line-height:0.845000;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_dc5bdf62b61f.woff")format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_78d04afa1236.woff")format("woff");}.ff7{font-family:ff7;line-height:1.050000;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_fef7531aef88.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_63643d951905.woff")format("woff");}.ff9{font-family:ff9;line-height:0.457000;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_5c8dac529b0b.woff")format("woff");}.ffa{font-family:ffa;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_022cc371ba9a.woff")format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_4d6e8cfe1f3f.woff")format("woff");}.ffc{font-family:ffc;line-height:0.934000;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_ab3ab9593a86.woff")format("woff");}.ffd{font-family:ffd;line-height:0.910000;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_f3e65beaef8a.woff")format("woff");}.ffe{font-family:ffe;line-height:0.685000;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_1e1b88e0cc4b.woff")format("woff");}.fff{font-family:fff;line-height:0.863000;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_96752cf94d77.woff")format("woff");}.ff10{font-family:ff10;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_e41c4acb0ce0.woff")format("woff");}.ff11{font-family:ff11;line-height:0.260000;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);}
.m2{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);}
.m1{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.101318px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.907349px;}
.ls10e{letter-spacing:-2.276252px;}
.ls10c{letter-spacing:-2.189876px;}
.ls10b{letter-spacing:-2.123819px;}
.ls10d{letter-spacing:-1.981559px;}
.ls120{letter-spacing:-1.935830px;}
.ls10a{letter-spacing:-1.859617px;}
.ls11d{letter-spacing:-1.844374px;}
.ls124{letter-spacing:-1.839293px;}
.ls111{letter-spacing:-1.834212px;}
.ls123{letter-spacing:-1.824050px;}
.ls113{letter-spacing:-1.813888px;}
.ls11f{letter-spacing:-1.808807px;}
.ls116{letter-spacing:-1.803727px;}
.ls11c{letter-spacing:-1.798646px;}
.ls115{letter-spacing:-1.793565px;}
.ls114{letter-spacing:-1.783403px;}
.ls10f{letter-spacing:-1.763079px;}
.ls110{letter-spacing:-1.752917px;}
.ls109{letter-spacing:-1.666542px;}
.ls108{letter-spacing:-1.630970px;}
.ls117{letter-spacing:-1.595409px;}
.lsd9{letter-spacing:-1.549681px;}
.lsd2{letter-spacing:-1.529357px;}
.lsc3{letter-spacing:-1.514114px;}
.ls122{letter-spacing:-1.498871px;}
.lsd8{letter-spacing:-1.488710px;}
.lscf{letter-spacing:-1.463305px;}
.lscd{letter-spacing:-1.432819px;}
.lsc4{letter-spacing:-1.402334px;}
.lsca{letter-spacing:-1.326120px;}
.lsc8{letter-spacing:-1.321039px;}
.lsd1{letter-spacing:-1.315958px;}
.lsc7{letter-spacing:-1.310877px;}
.lsc5{letter-spacing:-1.300715px;}
.lsce{letter-spacing:-1.295635px;}
.lscb{letter-spacing:-1.254987px;}
.ls112{letter-spacing:-1.234664px;}
.lsc9{letter-spacing:-1.168612px;}
.ls1b{letter-spacing:-1.141714px;}
.ls140{letter-spacing:-1.138126px;}
.ls118{letter-spacing:-1.127964px;}
.ls11a{letter-spacing:-1.107641px;}
.lsbf{letter-spacing:-1.040095px;}
.lsde{letter-spacing:-1.036508px;}
.ls119{letter-spacing:-1.031427px;}
.ls143{letter-spacing:-1.011103px;}
.lsa4{letter-spacing:-1.000941px;}
.ls145{letter-spacing:-0.950132px;}
.ls146{letter-spacing:-0.945046px;}
.lsa3{letter-spacing:-0.929808px;}
.ls13d{letter-spacing:-0.924727px;}
.lse1{letter-spacing:-0.919646px;}
.ls11e{letter-spacing:-0.914566px;}
.ls107{letter-spacing:-0.889459px;}
.lsa2{letter-spacing:-0.884080px;}
.lsa5{letter-spacing:-0.878999px;}
.lse0{letter-spacing:-0.873918px;}
.lsd4{letter-spacing:-0.863756px;}
.ls144{letter-spacing:-0.853595px;}
.ls59{letter-spacing:-0.842836px;}
.lsd7{letter-spacing:-0.838352px;}
.ls121{letter-spacing:-0.833271px;}
.ls34{letter-spacing:-0.830881px;}
.lsd6{letter-spacing:-0.828185px;}
.ls58{letter-spacing:-0.818926px;}
.lsbe{letter-spacing:-0.812948px;}
.ls13f{letter-spacing:-0.797704px;}
.ls82{letter-spacing:-0.789037px;}
.ls3a{letter-spacing:-0.783060px;}
.ls11b{letter-spacing:-0.772300px;}
.ls13{letter-spacing:-0.685924px;}
.ls14{letter-spacing:-0.650358px;}
.lsee{letter-spacing:-0.599549px;}
.lse8{letter-spacing:-0.579225px;}
.lsef{letter-spacing:-0.574144px;}
.lse9{letter-spacing:-0.569063px;}
.lse5{letter-spacing:-0.563982px;}
.lse2{letter-spacing:-0.553820px;}
.lsf3{letter-spacing:-0.548739px;}
.lsec{letter-spacing:-0.543658px;}
.lsf1{letter-spacing:-0.537980px;}
.lse4{letter-spacing:-0.533497px;}
.lse6{letter-spacing:-0.528416px;}
.lsf2{letter-spacing:-0.518254px;}
.lsea{letter-spacing:-0.503011px;}
.lsed{letter-spacing:-0.482687px;}
.lseb{letter-spacing:-0.477606px;}
.lsf0{letter-spacing:-0.472526px;}
.lse3{letter-spacing:-0.467445px;}
.ls54{letter-spacing:-0.005978px;}
.ls12{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.071663px;}
.ls47{letter-spacing:0.089727px;}
.ls133{letter-spacing:0.228660px;}
.ls2c{letter-spacing:0.388507px;}
.ls31{letter-spacing:0.388541px;}
.lsaa{letter-spacing:0.388690px;}
.ls81{letter-spacing:0.418429px;}
.ls8{letter-spacing:0.424407px;}
.ls4f{letter-spacing:0.442339px;}
.ls128{letter-spacing:0.447100px;}
.ls29{letter-spacing:0.448317px;}
.lsab{letter-spacing:0.454290px;}
.ls5e{letter-spacing:0.484182px;}
.ls1a{letter-spacing:0.508093px;}
.ls13c{letter-spacing:0.523335px;}
.ls70{letter-spacing:0.526024px;}
.lsac{letter-spacing:0.526025px;}
.ls102{letter-spacing:0.538578px;}
.ls105{letter-spacing:0.563982px;}
.lsad{letter-spacing:0.585801px;}
.ls12a{letter-spacing:0.589387px;}
.ls4c{letter-spacing:0.627644px;}
.ls101{letter-spacing:0.630034px;}
.ls48{letter-spacing:0.639599px;}
.ls129{letter-spacing:0.645313px;}
.lsb9{letter-spacing:0.645576px;}
.lsbd{letter-spacing:0.669487px;}
.ls27{letter-spacing:0.687419px;}
.lse{letter-spacing:0.693397px;}
.ls6b{letter-spacing:0.699375px;}
.lsb{letter-spacing:0.705352px;}
.ls73{letter-spacing:0.711330px;}
.ls26{letter-spacing:0.717307px;}
.lsc{letter-spacing:0.723224px;}
.ls21{letter-spacing:0.723285px;}
.lsd{letter-spacing:0.729262px;}
.ls5a{letter-spacing:0.735240px;}
.ls28{letter-spacing:0.741217px;}
.ls12d{letter-spacing:0.746895px;}
.ls2d{letter-spacing:0.747195px;}
.lsba{letter-spacing:0.753173px;}
.ls131{letter-spacing:0.757057px;}
.ls4b{letter-spacing:0.759150px;}
.ls22{letter-spacing:0.765128px;}
.ls134{letter-spacing:0.767219px;}
.ls71{letter-spacing:0.777083px;}
.ls135{letter-spacing:0.782462px;}
.ls32{letter-spacing:0.783060px;}
.lsfa{letter-spacing:0.802785px;}
.lsf9{letter-spacing:0.807866px;}
.ls8f{letter-spacing:0.812948px;}
.ls49{letter-spacing:0.818969px;}
.lsa{letter-spacing:0.842836px;}
.ls132{letter-spacing:0.858675px;}
.ls60{letter-spacing:0.872724px;}
.ls141{letter-spacing:0.873918px;}
.ls147{letter-spacing:0.884080px;}
.ls77{letter-spacing:0.896634px;}
.ls142{letter-spacing:0.909485px;}
.ls106{letter-spacing:0.934889px;}
.ls38{letter-spacing:0.944454px;}
.ls69{letter-spacing:0.992275px;}
.ls83{letter-spacing:1.016185px;}
.ls88{letter-spacing:1.040095px;}
.ls2f{letter-spacing:1.046073px;}
.ls16{letter-spacing:1.064006px;}
.ls89{letter-spacing:1.075961px;}
.ls17{letter-spacing:1.099871px;}
.ls67{letter-spacing:1.105849px;}
.ls33{letter-spacing:1.117804px;}
.ls36{letter-spacing:1.123781px;}
.ls39{letter-spacing:1.141714px;}
.ls85{letter-spacing:1.159647px;}
.ls1c{letter-spacing:1.201490px;}
.ls66{letter-spacing:1.207497px;}
.ls65{letter-spacing:1.219422px;}
.lsf6{letter-spacing:1.224502px;}
.ls136{letter-spacing:1.229583px;}
.ls63{letter-spacing:1.231377px;}
.lsf4{letter-spacing:1.243351px;}
.lsf5{letter-spacing:1.254987px;}
.ls138{letter-spacing:1.265144px;}
.ls4d{letter-spacing:1.267243px;}
.ls18{letter-spacing:1.291153px;}
.ls5b{letter-spacing:1.344951px;}
.ls7a{letter-spacing:1.368861px;}
.ls90{letter-spacing:1.398749px;}
.ls1d{letter-spacing:1.404727px;}
.ls64{letter-spacing:1.404742px;}
.ls74{letter-spacing:1.410704px;}
.lsdb{letter-spacing:1.412496px;}
.lsdc{letter-spacing:1.473467px;}
.ls9{letter-spacing:1.572098px;}
.ls6c{letter-spacing:1.613941px;}
.ls126{letter-spacing:1.651299px;}
.ls127{letter-spacing:1.661461px;}
.ls15{letter-spacing:1.691649px;}
.lsda{letter-spacing:1.721537px;}
.lsf{letter-spacing:1.739470px;}
.lsbb{letter-spacing:1.745447px;}
.ls97{letter-spacing:1.769358px;}
.ls13b{letter-spacing:1.778322px;}
.ls57{letter-spacing:1.787290px;}
.ls7e{letter-spacing:1.823156px;}
.ls7c{letter-spacing:1.835111px;}
.ls41{letter-spacing:1.847066px;}
.lsff{letter-spacing:1.874859px;}
.lsfc{letter-spacing:1.885021px;}
.ls7d{letter-spacing:1.894886px;}
.lsb1{letter-spacing:1.900864px;}
.ls3f{letter-spacing:1.912819px;}
.lsa7{letter-spacing:1.918791px;}
.ls42{letter-spacing:1.936729px;}
.lsa6{letter-spacing:1.942707px;}
.lsb2{letter-spacing:2.032370px;}
.lsb0{letter-spacing:2.038348px;}
.ls2b{letter-spacing:2.050303px;}
.ls53{letter-spacing:2.074213px;}
.ls52{letter-spacing:2.086168px;}
.ls100{letter-spacing:2.169553px;}
.lsc2{letter-spacing:2.181809px;}
.lsf8{letter-spacing:2.194957px;}
.lsf7{letter-spacing:2.225443px;}
.ls30{letter-spacing:2.426889px;}
.lsb3{letter-spacing:2.444822px;}
.ls8d{letter-spacing:2.468732px;}
.ls23{letter-spacing:2.486665px;}
.ls24{letter-spacing:2.564373px;}
.ls56{letter-spacing:2.582306px;}
.ls3b{letter-spacing:2.594261px;}
.ls6e{letter-spacing:2.606216px;}
.ls3d{letter-spacing:2.618171px;}
.ls25{letter-spacing:2.660014px;}
.lsa8{letter-spacing:2.725767px;}
.ls8b{letter-spacing:2.767610px;}
.ls2a{letter-spacing:2.791520px;}
.ls96{letter-spacing:2.797498px;}
.ls137{letter-spacing:2.809749px;}
.lsa9{letter-spacing:2.821408px;}
.lsbc{letter-spacing:2.881184px;}
.ls12b{letter-spacing:2.921529px;}
.ls7b{letter-spacing:2.929004px;}
.ls12c{letter-spacing:2.982500px;}
.ls103{letter-spacing:3.515997px;}
.ls104{letter-spacing:3.526158px;}
.lsfd{letter-spacing:3.851337px;}
.lsfe{letter-spacing:3.927551px;}
.lsc0{letter-spacing:4.130494px;}
.lsaf{letter-spacing:4.285910px;}
.lsae{letter-spacing:4.297866px;}
.lsfb{letter-spacing:4.623637px;}
.ls80{letter-spacing:5.188522px;}
.lsb6{letter-spacing:8.429164px;}
.lsb5{letter-spacing:8.429256px;}
.lscc{letter-spacing:8.520703px;}
.lsb4{letter-spacing:8.769649px;}
.lsc6{letter-spacing:8.861124px;}
.lsa0{letter-spacing:9.201546px;}
.ls9a{letter-spacing:9.450526px;}
.ls9e{letter-spacing:9.541967px;}
.ls9c{letter-spacing:9.790874px;}
.ls9b{letter-spacing:9.790919px;}
.ls13a{letter-spacing:9.973941px;}
.ls148{letter-spacing:10.197406px;}
.ls7{letter-spacing:10.909082px;}
.ls93{letter-spacing:10.938935px;}
.ls130{letter-spacing:10.989993px;}
.ls4e{letter-spacing:11.177948px;}
.ls2e{letter-spacing:11.201868px;}
.ls92{letter-spacing:11.267700px;}
.ls84{letter-spacing:11.309543px;}
.ls62{letter-spacing:11.518707px;}
.ls95{letter-spacing:11.751883px;}
.ls61{letter-spacing:11.859467px;}
.ls8e{letter-spacing:12.325728px;}
.ls6a{letter-spacing:12.534943px;}
.ls72{letter-spacing:12.534989px;}
.ls6f{letter-spacing:12.540894px;}
.ls8a{letter-spacing:12.666449px;}
.ls78{letter-spacing:12.875611px;}
.ls76{letter-spacing:12.875633px;}
.ls87{letter-spacing:13.007170px;}
.ls99{letter-spacing:13.032535px;}
.lsdd{letter-spacing:13.174783px;}
.ls68{letter-spacing:13.216370px;}
.ls75{letter-spacing:13.216461px;}
.lsdf{letter-spacing:13.230715px;}
.ls9d{letter-spacing:13.230747px;}
.ls86{letter-spacing:13.347891px;}
.lsb8{letter-spacing:13.796208px;}
.ls1{letter-spacing:13.820097px;}
.ls8c{letter-spacing:14.370054px;}
.ls98{letter-spacing:14.394107px;}
.ls6d{letter-spacing:14.579270px;}
.lsb7{letter-spacing:15.153114px;}
.ls0{letter-spacing:16.066534px;}
.ls139{letter-spacing:16.233514px;}
.ls91{letter-spacing:16.820853px;}
.ls94{letter-spacing:17.197440px;}
.lsd0{letter-spacing:17.229399px;}
.ls6{letter-spacing:18.052072px;}
.ls2{letter-spacing:18.052164px;}
.ls5{letter-spacing:18.052255px;}
.ls12e{letter-spacing:18.240515px;}
.ls3{letter-spacing:18.392923px;}
.ls4{letter-spacing:18.393014px;}
.ls13e{letter-spacing:18.535196px;}
.lsd5{letter-spacing:18.591086px;}
.lsd3{letter-spacing:18.931507px;}
.ls37{letter-spacing:18.954842px;}
.ls12f{letter-spacing:19.297235px;}
.ls55{letter-spacing:19.528688px;}
.ls5c{letter-spacing:20.240018px;}
.ls35{letter-spacing:20.257950px;}
.ls46{letter-spacing:20.431299px;}
.ls5d{letter-spacing:20.598671px;}
.ls45{letter-spacing:22.134867px;}
.ls50{letter-spacing:22.248351px;}
.ls7f{letter-spacing:22.475534px;}
.ls43{letter-spacing:22.475626px;}
.ls44{letter-spacing:22.475717px;}
.ls125{letter-spacing:22.559237px;}
.ls79{letter-spacing:23.151102px;}
.ls5f{letter-spacing:24.513956px;}
.ls3e{letter-spacing:26.217615px;}
.ls40{letter-spacing:26.217660px;}
.ls20{letter-spacing:26.378972px;}
.ls3c{letter-spacing:27.915231px;}
.ls19{letter-spacing:30.120924px;}
.lsc1{letter-spacing:31.316436px;}
.ls4a{letter-spacing:32.458129px;}
.ls10{letter-spacing:34.717599px;}
.ls1e{letter-spacing:34.837219px;}
.ls1f{letter-spacing:34.885039px;}
.ls11{letter-spacing:35.703627px;}
.lsa1{letter-spacing:40.103700px;}
.ls9f{letter-spacing:55.752933px;}
.lse7{letter-spacing:249.249604px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1bf{word-spacing:-55.803743px;}
.ws1c2{word-spacing:-40.154509px;}
.ws3a{word-spacing:-34.944815px;}
.ws39{word-spacing:-34.896994px;}
.ws202{word-spacing:-31.376212px;}
.ws2f{word-spacing:-30.180700px;}
.ws3c{word-spacing:-26.438747px;}
.ws10c{word-spacing:-20.658447px;}
.ws6f{word-spacing:-20.317726px;}
.ws104{word-spacing:-20.299793px;}
.wsc7{word-spacing:-19.588464px;}
.ws82{word-spacing:-19.014618px;}
.ws22c{word-spacing:-18.982317px;}
.ws233{word-spacing:-18.641895px;}
.ws30a{word-spacing:-18.586005px;}
.ws227{word-spacing:-17.280208px;}
.ws193{word-spacing:-17.257215px;}
.ws182{word-spacing:-16.880629px;}
.ws1de{word-spacing:-15.212890px;}
.ws1e0{word-spacing:-13.855984px;}
.ws24a{word-spacing:-13.281524px;}
.ws140{word-spacing:-13.066946px;}
.ws163{word-spacing:-12.726225px;}
.ws197{word-spacing:-11.811658px;}
.ws145{word-spacing:-11.369319px;}
.ws18a{word-spacing:-11.327476px;}
.ws18b{word-spacing:-10.998710px;}
.ws12c{word-spacing:-9.960720px;}
.ws1be{word-spacing:-9.592777px;}
.ws1ce{word-spacing:-9.252355px;}
.ws217{word-spacing:-8.911933px;}
.ws21f{word-spacing:-8.571512px;}
.ws201{word-spacing:-4.190269px;}
.ws2d9{word-spacing:-3.576968px;}
.ws2d8{word-spacing:-3.566806px;}
.ws1f0{word-spacing:-2.881184px;}
.ws5c{word-spacing:-2.486665px;}
.ws125{word-spacing:-2.145944px;}
.wsce{word-spacing:-1.996505px;}
.ws14d{word-spacing:-1.912787px;}
.ws13f{word-spacing:-1.894878px;}
.ws1a3{word-spacing:-1.882931px;}
.wscb{word-spacing:-1.847066px;}
.ws1ec{word-spacing:-1.805223px;}
.ws14a{word-spacing:-1.560143px;}
.ws38{word-spacing:-1.464502px;}
.ws13c{word-spacing:-1.279198px;}
.ws138{word-spacing:-1.231328px;}
.ws28{word-spacing:-1.123781px;}
.ws157{word-spacing:-0.872724px;}
.ws159{word-spacing:-0.836858px;}
.ws30{word-spacing:-0.789038px;}
.ws3d{word-spacing:-0.783060px;}
.ws172{word-spacing:-0.759150px;}
.ws149{word-spacing:-0.537943px;}
.ws63{word-spacing:-0.448317px;}
.ws1f{word-spacing:-0.071731px;}
.ws9{word-spacing:-0.059776px;}
.ws46{word-spacing:-0.050809px;}
.ws4{word-spacing:-0.039846px;}
.ws4b{word-spacing:0.000000px;}
.ws155{word-spacing:0.143445px;}
.ws266{word-spacing:0.421716px;}
.ws264{word-spacing:0.431878px;}
.ws252{word-spacing:0.482687px;}
.ws26b{word-spacing:0.497930px;}
.ws12d{word-spacing:0.717306px;}
.wsdc{word-spacing:0.759150px;}
.ws332{word-spacing:0.802785px;}
.ws232{word-spacing:0.812947px;}
.ws27c{word-spacing:0.817729px;}
.ws2bc{word-spacing:0.863756px;}
.ws341{word-spacing:0.894237px;}
.ws2a3{word-spacing:0.980618px;}
.ws239{word-spacing:1.117802px;}
.ws167{word-spacing:1.159630px;}
.ws229{word-spacing:1.478548px;}
.ws299{word-spacing:1.544600px;}
.ws2e2{word-spacing:1.732594px;}
.ws166{word-spacing:1.847138px;}
.ws2c2{word-spacing:1.885021px;}
.ws164{word-spacing:2.187771px;}
.ws28c{word-spacing:2.225443px;}
.ws15b{word-spacing:5.242352px;}
.ws15c{word-spacing:5.248298px;}
.ws16f{word-spacing:7.962126px;}
.ws169{word-spacing:8.308800px;}
.ws16e{word-spacing:8.308848px;}
.ws16c{word-spacing:8.308910px;}
.ws170{word-spacing:8.470203px;}
.ws152{word-spacing:8.637574px;}
.ws2c5{word-spacing:8.668050px;}
.ws31c{word-spacing:8.784910px;}
.ws31d{word-spacing:8.845882px;}
.ws276{word-spacing:8.866205px;}
.ws22b{word-spacing:9.008471px;}
.ws33a{word-spacing:9.125332px;}
.ws346{word-spacing:9.130413px;}
.ws1cf{word-spacing:9.150737px;}
.ws335{word-spacing:9.242193px;}
.ws231{word-spacing:9.267597px;}
.ws2ce{word-spacing:9.272679px;}
.ws244{word-spacing:9.348893px;}
.ws33b{word-spacing:9.359054px;}
.ws314{word-spacing:9.379378px;}
.ws223{word-spacing:9.440349px;}
.ws22f{word-spacing:9.486077px;}
.ws1bd{word-spacing:9.491158px;}
.ws2fe{word-spacing:9.541968px;}
.ws34f{word-spacing:9.547048px;}
.ws22d{word-spacing:9.608020px;}
.ws247{word-spacing:9.689314px;}
.ws2a2{word-spacing:9.887470px;}
.ws2a5{word-spacing:10.039898px;}
.ws24c{word-spacing:10.090707px;}
.ws2e6{word-spacing:10.146597px;}
.ws2e5{word-spacing:10.222811px;}
.wsf3{word-spacing:10.263470px;}
.wsb3{word-spacing:10.305313px;}
.ws2eb{word-spacing:10.319349px;}
.ws1f8{word-spacing:10.329224px;}
.ws325{word-spacing:10.370158px;}
.ws183{word-spacing:10.400954px;}
.ws16a{word-spacing:10.490617px;}
.ws1cb{word-spacing:10.537827px;}
.ws1d5{word-spacing:10.547990px;}
.ws203{word-spacing:10.574303px;}
.wsda{word-spacing:10.646034px;}
.ws184{word-spacing:10.669944px;}
.ws342{word-spacing:10.715660px;}
.ws196{word-spacing:10.789496px;}
.ws1b2{word-spacing:10.795483px;}
.ws303{word-spacing:10.802036px;}
.ws21b{word-spacing:10.807116px;}
.ws2c4{word-spacing:10.827440px;}
.wsf2{word-spacing:10.873181px;}
.ws3f{word-spacing:10.897092px;}
.ws1fa{word-spacing:10.915025px;}
.ws106{word-spacing:10.938935px;}
.ws1cc{word-spacing:10.939221px;}
.ws235{word-spacing:10.949367px;}
.wsb4{word-spacing:11.010665px;}
.ws2a9{word-spacing:11.045891px;}
.ws1f9{word-spacing:11.082396px;}
.ws21d{word-spacing:11.091648px;}
.ws2aa{word-spacing:11.106891px;}
.ws2ac{word-spacing:11.111988px;}
.ws165{word-spacing:11.184014px;}
.wse{word-spacing:11.189992px;}
.wsd9{word-spacing:11.213903px;}
.ws156{word-spacing:11.231835px;}
.ws107{word-spacing:11.249767px;}
.ws44{word-spacing:11.255745px;}
.ws293{word-spacing:11.279642px;}
.ws33f{word-spacing:11.315208px;}
.ws94{word-spacing:11.351386px;}
.ws21a{word-spacing:11.452393px;}
.ws237{word-spacing:11.467679px;}
.wsdb{word-spacing:11.548595px;}
.wseb{word-spacing:11.554726px;}
.ws2e3{word-spacing:11.559093px;}
.ws2db{word-spacing:11.569254px;}
.ws1b3{word-spacing:11.578533px;}
.ws136{word-spacing:11.584511px;}
.ws2dc{word-spacing:11.620064px;}
.ws10{word-spacing:11.620376px;}
.ws1ae{word-spacing:11.644287px;}
.ws221{word-spacing:11.675954px;}
.ws2ad{word-spacing:11.681034px;}
.ws225{word-spacing:11.686115px;}
.ws43{word-spacing:11.692107px;}
.ws2be{word-spacing:11.726763px;}
.ws2f0{word-spacing:11.736925px;}
.wsa8{word-spacing:11.739927px;}
.ws278{word-spacing:11.762329px;}
.ws31b{word-spacing:11.823300px;}
.ws218{word-spacing:11.838543px;}
.ws2de{word-spacing:11.889352px;}
.ws2b6{word-spacing:11.904595px;}
.ws17b{word-spacing:11.913277px;}
.ws143{word-spacing:11.925232px;}
.ws2b7{word-spacing:11.935081px;}
.wsc3{word-spacing:12.008917px;}
.ws29d{word-spacing:12.067185px;}
.ws160{word-spacing:12.080649px;}
.ws2a8{word-spacing:12.102751px;}
.ws52{word-spacing:12.104559px;}
.wsa6{word-spacing:12.128469px;}
.ws2b3{word-spacing:12.184046px;}
.ws1d4{word-spacing:12.209451px;}
.wsc2{word-spacing:12.230061px;}
.ws8c{word-spacing:12.230088px;}
.ws2e7{word-spacing:12.245017px;}
.ws1d2{word-spacing:12.270421px;}
.ws219{word-spacing:12.270438px;}
.ws51{word-spacing:12.277908px;}
.wsa4{word-spacing:12.301818px;}
.ws2ea{word-spacing:12.305988px;}
.ws2fa{word-spacing:12.326312px;}
.ws2d0{word-spacing:12.331392px;}
.ws1bb{word-spacing:12.346635px;}
.ws24b{word-spacing:12.407606px;}
.ws16{word-spacing:12.421370px;}
.ws2b2{word-spacing:12.422849px;}
.ws1f6{word-spacing:12.445279px;}
.ws2cc{word-spacing:12.468577px;}
.wsd7{word-spacing:12.493100px;}
.ws280{word-spacing:12.524467px;}
.ws49{word-spacing:12.529549px;}
.ws45{word-spacing:12.549872px;}
.wsd5{word-spacing:12.564830px;}
.ws123{word-spacing:12.570809px;}
.ws249{word-spacing:12.575277px;}
.ws2f5{word-spacing:12.585438px;}
.ws1bc{word-spacing:12.590520px;}
.ws7e{word-spacing:12.594718px;}
.ws128{word-spacing:12.610843px;}
.ws1ba{word-spacing:12.610892px;}
.ws15{word-spacing:12.618629px;}
.ws11{word-spacing:12.642539px;}
.ws2d4{word-spacing:12.646409px;}
.wsea{word-spacing:12.648517px;}
.ws24e{word-spacing:12.666777px;}
.ws129{word-spacing:12.671814px;}
.wsd4{word-spacing:12.690360px;}
.ws4a{word-spacing:12.758190px;}
.wsd8{word-spacing:12.762090px;}
.ws8e{word-spacing:12.786000px;}
.ws34d{word-spacing:12.844566px;}
.ws310{word-spacing:12.869970px;}
.ws127{word-spacing:12.905536px;}
.ws180{word-spacing:12.911529px;}
.ws144{word-spacing:12.917527px;}
.ws7{word-spacing:12.920779px;}
.ws2ab{word-spacing:12.930920px;}
.ws105{word-spacing:12.935439px;}
.ws2f2{word-spacing:12.936022px;}
.ws23b{word-spacing:12.959350px;}
.ws2cb{word-spacing:12.981706px;}
.ws12b{word-spacing:12.981750px;}
.ws1c7{word-spacing:12.981816px;}
.ws11c{word-spacing:12.983260px;}
.ws347{word-spacing:13.012236px;}
.ws1d1{word-spacing:13.042722px;}
.wsb1{word-spacing:13.078901px;}
.ws48{word-spacing:13.098611px;}
.ws1e1{word-spacing:13.102811px;}
.ws47{word-spacing:13.103692px;}
.ws1d3{word-spacing:13.118973px;}
.ws1d0{word-spacing:13.123983px;}
.ws12a{word-spacing:13.124015px;}
.ws289{word-spacing:13.149415px;}
.wsd6{word-spacing:13.252247px;}
.ws11b{word-spacing:13.252250px;}
.ws2c{word-spacing:13.276161px;}
.ws28a{word-spacing:13.281525px;}
.ws302{word-spacing:13.291687px;}
.ws2a1{word-spacing:13.322172px;}
.ws12{word-spacing:13.323981px;}
.ws1df{word-spacing:13.324014px;}
.ws343{word-spacing:13.352657px;}
.ws2dd{word-spacing:13.367900px;}
.wsc{word-spacing:13.395712px;}
.ws309{word-spacing:13.408547px;}
.ws33c{word-spacing:13.439033px;}
.ws134{word-spacing:13.461465px;}
.ws2f7{word-spacing:13.464438px;}
.ws60{word-spacing:13.509285px;}
.ws2af{word-spacing:13.520328px;}
.ws311{word-spacing:13.550814px;}
.ws20f{word-spacing:13.592971px;}
.ws122{word-spacing:13.616882px;}
.ws54{word-spacing:13.640791px;}
.ws28b{word-spacing:13.662593px;}
.ws1ea{word-spacing:13.664702px;}
.ws20e{word-spacing:13.730455px;}
.ws139{word-spacing:13.760343px;}
.ws1b8{word-spacing:13.769293px;}
.ws71{word-spacing:13.778275px;}
.ws70{word-spacing:13.802185px;}
.ws13{word-spacing:13.850006px;}
.ws2f6{word-spacing:13.911558px;}
.wsa5{word-spacing:13.915759px;}
.wsb5{word-spacing:13.957602px;}
.ws25b{word-spacing:13.962274px;}
.ws1b9{word-spacing:13.967448px;}
.ws92{word-spacing:13.975535px;}
.ws25d{word-spacing:13.977713px;}
.ws263{word-spacing:13.982889px;}
.wsbe{word-spacing:13.999445px;}
.ws27b{word-spacing:14.003015px;}
.ws250{word-spacing:14.013177px;}
.wsad{word-spacing:14.029333px;}
.ws31a{word-spacing:14.053825px;}
.ws261{word-spacing:14.059166px;}
.ws251{word-spacing:14.063986px;}
.ws25e{word-spacing:14.069068px;}
.ws17c{word-spacing:14.071176px;}
.ws146{word-spacing:14.077153px;}
.ws8{word-spacing:14.104633px;}
.ws27a{word-spacing:14.109715px;}
.ws1dd{word-spacing:14.118996px;}
.ws25f{word-spacing:14.119805px;}
.ws2cd{word-spacing:14.119876px;}
.ws26a{word-spacing:14.160524px;}
.ws259{word-spacing:14.180847px;}
.ws265{word-spacing:14.195816px;}
.ws2d2{word-spacing:14.201171px;}
.ws253{word-spacing:14.211332px;}
.ws1b7{word-spacing:14.267222px;}
.wsb7{word-spacing:14.298323px;}
.ws305{word-spacing:14.307871px;}
.ws2b8{word-spacing:14.323113px;}
.ws320{word-spacing:14.338356px;}
.ws20c{word-spacing:14.340166px;}
.ws319{word-spacing:14.343436px;}
.ws117{word-spacing:14.346144px;}
.ws7c{word-spacing:14.387986px;}
.ws277{word-spacing:14.404408px;}
.ws1c9{word-spacing:14.439960px;}
.ws29f{word-spacing:14.450136px;}
.ws98{word-spacing:14.459717px;}
.ws2a4{word-spacing:14.460298px;}
.ws1cd{word-spacing:14.470460px;}
.ws1ac{word-spacing:14.531448px;}
.ws32f{word-spacing:14.541593px;}
.ws20d{word-spacing:14.555358px;}
.ws32e{word-spacing:14.572078px;}
.ws211{word-spacing:14.617807px;}
.ws93{word-spacing:14.633067px;}
.ws0{word-spacing:14.636326px;}
.ws339{word-spacing:14.658453px;}
.ws245{word-spacing:14.683859px;}
.ws315{word-spacing:14.704182px;}
.ws1ab{word-spacing:14.728707px;}
.ws1d7{word-spacing:14.752618px;}
.ws29e{word-spacing:14.785476px;}
.ws195{word-spacing:14.800439px;}
.ws2bb{word-spacing:14.800719px;}
.ws1c5{word-spacing:14.815963px;}
.ws275{word-spacing:14.821044px;}
.ws40{word-spacing:14.824348px;}
.ws2c6{word-spacing:14.876933px;}
.ws27d{word-spacing:14.882014px;}
.ws24d{word-spacing:14.927743px;}
.ws6{word-spacing:14.943900px;}
.wsa2{word-spacing:14.955855px;}
.ws5{word-spacing:14.961832px;}
.ws24f{word-spacing:14.978550px;}
.ws23f{word-spacing:14.979765px;}
.ws2c3{word-spacing:14.988714px;}
.ws1b6{word-spacing:14.997697px;}
.ws2c0{word-spacing:15.009038px;}
.ws210{word-spacing:15.021608px;}
.ws2fd{word-spacing:15.024281px;}
.ws3{word-spacing:15.033563px;}
.ws328{word-spacing:15.054765px;}
.ws18{word-spacing:15.069429px;}
.ws24{word-spacing:15.093339px;}
.ws90{word-spacing:15.117249px;}
.ws7a{word-spacing:15.123158px;}
.ws294{word-spacing:15.141142px;}
.wsff{word-spacing:15.141159px;}
.ws2a0{word-spacing:15.146222px;}
.ws41{word-spacing:15.165069px;}
.ws2d3{word-spacing:15.191950px;}
.ws2a6{word-spacing:15.197031px;}
.wsa7{word-spacing:15.212890px;}
.ws215{word-spacing:15.227517px;}
.ws2cf{word-spacing:15.268164px;}
.ws2bf{word-spacing:15.303731px;}
.ws34e{word-spacing:15.303826px;}
.ws2b9{word-spacing:15.308811px;}
.ws116{word-spacing:15.314509px;}
.ws23c{word-spacing:15.338419px;}
.ws28f{word-spacing:15.339296px;}
.ws1db{word-spacing:15.362329px;}
.ws298{word-spacing:15.369783px;}
.ws327{word-spacing:15.374864px;}
.wsab{word-spacing:15.386239px;}
.ws291{word-spacing:15.405349px;}
.ws324{word-spacing:15.425673px;}
.ws1e5{word-spacing:15.434060px;}
.ws238{word-spacing:15.461238px;}
.ws340{word-spacing:15.471401px;}
.ws2e8{word-spacing:15.481563px;}
.ws7b{word-spacing:15.481880px;}
.ws21c{word-spacing:15.496805px;}
.ws285{word-spacing:15.542533px;}
.ws2e4{word-spacing:15.547615px;}
.ws2b4{word-spacing:15.562857px;}
.ws2c1{word-spacing:15.578100px;}
.ws21e{word-spacing:15.613667px;}
.wsa{word-spacing:15.631319px;}
.ws313{word-spacing:15.659396px;}
.ws2d1{word-spacing:15.669556px;}
.wse9{word-spacing:15.679139px;}
.ws287{word-spacing:15.705124px;}
.ws1a5{word-spacing:15.726960px;}
.ws2c8{word-spacing:15.730528px;}
.ws344{word-spacing:15.735609px;}
.ws8d{word-spacing:15.774780px;}
.ws53{word-spacing:15.846512px;}
.ws28e{word-spacing:15.923602px;}
.ws243{word-spacing:15.928684px;}
.ws1a4{word-spacing:15.972041px;}
.ws120{word-spacing:15.995951px;}
.ws17{word-spacing:16.019860px;}
.ws4d{word-spacing:16.031750px;}
.ws9d{word-spacing:16.091592px;}
.ws11e{word-spacing:16.115502px;}
.ws19d{word-spacing:16.163321px;}
.ws28d{word-spacing:16.167487px;}
.ws9c{word-spacing:16.187231px;}
.wsaa{word-spacing:16.288851px;}
.ws34a{word-spacing:16.289429px;}
.ws58{word-spacing:16.336670px;}
.ws301{word-spacing:16.350399px;}
.ws240{word-spacing:16.360582px;}
.ws4e{word-spacing:16.384492px;}
.ws295{word-spacing:16.385966px;}
.ws181{word-spacing:16.408402px;}
.ws11f{word-spacing:16.432312px;}
.ws1da{word-spacing:16.456222px;}
.ws329{word-spacing:16.497747px;}
.ws348{word-spacing:16.502827px;}
.ws10b{word-spacing:16.527953px;}
.ws1ad{word-spacing:16.575773px;}
.ws6c{word-spacing:16.653482px;}
.wsb8{word-spacing:16.677392px;}
.ws31f{word-spacing:16.680684px;}
.ws108{word-spacing:16.701302px;}
.ws296{word-spacing:16.706065px;}
.ws114{word-spacing:16.725212px;}
.ws194{word-spacing:16.773033px;}
.ws115{word-spacing:16.796943px;}
.ws2b5{word-spacing:16.833087px;}
.ws286{word-spacing:16.838168px;}
.ws173{word-spacing:16.839599px;}
.ws297{word-spacing:16.909301px;}
.wsb{word-spacing:16.910516px;}
.ws103{word-spacing:16.934426px;}
.ws300{word-spacing:16.949949px;}
.ws59{word-spacing:16.970292px;}
.ws307{word-spacing:16.980434px;}
.ws133{word-spacing:16.994152px;}
.ws19e{word-spacing:16.994202px;}
.ws189{word-spacing:17.018114px;}
.wse8{word-spacing:17.065933px;}
.ws91{word-spacing:17.082888px;}
.ws2ff{word-spacing:17.092214px;}
.ws100{word-spacing:17.102615px;}
.wsb6{word-spacing:17.137665px;}
.ws1d6{word-spacing:17.168369px;}
.ws2f3{word-spacing:17.178590px;}
.ws1f4{word-spacing:17.181519px;}
.ws17f{word-spacing:17.203417px;}
.ws304{word-spacing:17.203995px;}
.ws102{word-spacing:17.245295px;}
.ws331{word-spacing:17.346260px;}
.ws212{word-spacing:17.371665px;}
.ws5f{word-spacing:17.376767px;}
.wsa9{word-spacing:17.382743px;}
.ws17e{word-spacing:17.400677px;}
.ws174{word-spacing:17.406655px;}
.ws1e3{word-spacing:17.454475px;}
.ws2a7{word-spacing:17.463122px;}
.ws1e2{word-spacing:17.472407px;}
.ws1ff{word-spacing:17.490341px;}
.ws17d{word-spacing:17.496318px;}
.ws30e{word-spacing:17.513931px;}
.ws216{word-spacing:17.519022px;}
.ws10a{word-spacing:17.544138px;}
.ws8b{word-spacing:17.591958px;}
.ws33{word-spacing:17.699555px;}
.ws2e1{word-spacing:17.712087px;}
.ws175{word-spacing:17.717483px;}
.ws12e{word-spacing:17.717487px;}
.ws32{word-spacing:17.735471px;}
.ws12f{word-spacing:17.789218px;}
.ws1fb{word-spacing:17.813128px;}
.ws318{word-spacing:17.818786px;}
.ws1a8{word-spacing:17.860948px;}
.ws176{word-spacing:17.884860px;}
.ws17a{word-spacing:17.932680px;}
.ws2ae{word-spacing:17.940728px;}
.ws316{word-spacing:17.961052px;}
.ws2d7{word-spacing:17.991446px;}
.ws5e{word-spacing:18.004398px;}
.ws30d{word-spacing:18.027103px;}
.ws19c{word-spacing:18.040275px;}
.ws110{word-spacing:18.058209px;}
.wsf{word-spacing:18.082119px;}
.ws2f1{word-spacing:18.082993px;}
.ws1b{word-spacing:18.088096px;}
.ws349{word-spacing:18.118560px;}
.ws112{word-spacing:18.129938px;}
.ws29c{word-spacing:18.189693px;}
.ws1c{word-spacing:18.225580px;}
.ws1d{word-spacing:18.249489px;}
.ws23a{word-spacing:18.273401px;}
.ws224{word-spacing:18.311635px;}
.ws292{word-spacing:18.403092px;}
.ws321{word-spacing:18.413253px;}
.ws2da{word-spacing:18.418334px;}
.wsac{word-spacing:18.422840px;}
.ws273{word-spacing:18.423416px;}
.ws187{word-spacing:18.470660px;}
.wsbd{word-spacing:18.494570px;}
.ws312{word-spacing:18.530115px;}
.ws33e{word-spacing:18.535195px;}
.ws306{word-spacing:18.540276px;}
.ws31e{word-spacing:18.545357px;}
.ws270{word-spacing:18.554626px;}
.ws29b{word-spacing:18.565681px;}
.ws1b1{word-spacing:18.566301px;}
.ws213{word-spacing:18.621571px;}
.ws317{word-spacing:18.626652px;}
.ws30f{word-spacing:18.631734px;}
.ws2df{word-spacing:18.672380px;}
.ws308{word-spacing:18.687623px;}
.ws111{word-spacing:18.697834px;}
.ws22a{word-spacing:18.713027px;}
.ws14{word-spacing:18.739650px;}
.ws34c{word-spacing:18.763836px;}
.ws222{word-spacing:18.773999px;}
.ws248{word-spacing:18.793417px;}
.ws32c{word-spacing:18.809522px;}
.ws2e0{word-spacing:18.824808px;}
.ws1dc{word-spacing:18.835291px;}
.ws1e{word-spacing:18.859159px;}
.ws80{word-spacing:18.859201px;}
.ws2f9{word-spacing:18.870536px;}
.ws20b{word-spacing:18.883111px;}
.ws322{word-spacing:18.906103px;}
.ws81{word-spacing:18.907021px;}
.ws178{word-spacing:18.954843px;}
.ws326{word-spacing:18.977236px;}
.ws1b0{word-spacing:19.026553px;}
.ws11d{word-spacing:19.032550px;}
.ws338{word-spacing:19.043287px;}
.ws2b0{word-spacing:19.043295px;}
.ws2ed{word-spacing:19.048422px;}
.ws101{word-spacing:19.056460px;}
.ws30b{word-spacing:19.063611px;}
.ws220{word-spacing:19.073767px;}
.ws2b1{word-spacing:19.073774px;}
.ws1f5{word-spacing:19.080372px;}
.ws32b{word-spacing:19.084007px;}
.ws334{word-spacing:19.144906px;}
.ws86{word-spacing:19.152101px;}
.ws22e{word-spacing:19.160149px;}
.ws345{word-spacing:19.165229px;}
.ws61{word-spacing:19.176011px;}
.ws29a{word-spacing:19.195715px;}
.ws242{word-spacing:19.221119px;}
.ws2ba{word-spacing:19.236363px;}
.ws330{word-spacing:19.241444px;}
.ws230{word-spacing:19.271928px;}
.ws2fc{word-spacing:19.287172px;}
.ws23e{word-spacing:19.295562px;}
.ws2ef{word-spacing:19.302415px;}
.ws30c{word-spacing:19.312576px;}
.ws2d5{word-spacing:19.327818px;}
.ws337{word-spacing:19.327820px;}
.ws2e9{word-spacing:19.337982px;}
.ws32a{word-spacing:19.353223px;}
.ws119{word-spacing:19.373272px;}
.ws2c9{word-spacing:19.388789px;}
.wsc5{word-spacing:19.397182px;}
.ws27e{word-spacing:19.414194px;}
.ws33d{word-spacing:19.414200px;}
.ws2fb{word-spacing:19.419276px;}
.wsa0{word-spacing:19.421092px;}
.ws279{word-spacing:19.439600px;}
.ws2ca{word-spacing:19.444681px;}
.ws188{word-spacing:19.445001px;}
.ws2d6{word-spacing:19.449761px;}
.ws271{word-spacing:19.454842px;}
.ws27f{word-spacing:19.475166px;}
.ws2bd{word-spacing:19.485328px;}
.ws34b{word-spacing:19.495490px;}
.ws2ec{word-spacing:19.505651px;}
.wsb0{word-spacing:19.516733px;}
.ws2ee{word-spacing:19.546299px;}
.ws269{word-spacing:19.560935px;}
.ws85{word-spacing:19.564553px;}
.ws274{word-spacing:19.581865px;}
.ws32d{word-spacing:19.586946px;}
.ws1a9{word-spacing:19.588464px;}
.ws336{word-spacing:19.602188px;}
.ws272{word-spacing:19.617431px;}
.wsd2{word-spacing:19.630306px;}
.ws333{word-spacing:19.647918px;}
.ws323{word-spacing:19.693646px;}
.ws1aa{word-spacing:19.737903px;}
.ws228{word-spacing:19.754616px;}
.wsc0{word-spacing:19.761813px;}
.ws2f4{word-spacing:19.785102px;}
.ws88{word-spacing:19.785723px;}
.ws234{word-spacing:19.800339px;}
.ws50{word-spacing:19.809633px;}
.ws236{word-spacing:19.820669px;}
.ws72{word-spacing:19.857455px;}
.ws288{word-spacing:19.917206px;}
.ws6a{word-spacing:19.929184px;}
.wsf1{word-spacing:19.994938px;}
.ws2f8{word-spacing:20.034066px;}
.ws226{word-spacing:20.054390px;}
.ws34{word-spacing:20.078623px;}
.wsba{word-spacing:20.102533px;}
.wsd1{word-spacing:20.126445px;}
.ws14c{word-spacing:20.174265px;}
.ws42{word-spacing:20.198174px;}
.ws75{word-spacing:20.269906px;}
.ws283{word-spacing:20.308244px;}
.ws6d{word-spacing:20.395435px;}
.ws2c7{word-spacing:20.399893px;}
.ws290{word-spacing:20.404974px;}
.ws282{word-spacing:20.420217px;}
.ws79{word-spacing:20.467165px;}
.ws1a{word-spacing:20.479154px;}
.wsbc{word-spacing:20.491074px;}
.ws284{word-spacing:20.511673px;}
.ws1c0{word-spacing:20.537078px;}
.ws281{word-spacing:20.669183px;}
.ws74{word-spacing:20.736155px;}
.ws14b{word-spacing:20.742127px;}
.wsb2{word-spacing:20.783976px;}
.ws10f{word-spacing:20.807886px;}
.ws1f7{word-spacing:20.855752px;}
.ws214{word-spacing:20.867338px;}
.ws76{word-spacing:20.879616px;}
.ws22{word-spacing:20.945369px;}
.ws118{word-spacing:21.100786px;}
.ws9a{word-spacing:21.118718px;}
.ws21{word-spacing:21.124678px;}
.ws185{word-spacing:21.142630px;}
.wse6{word-spacing:21.190420px;}
.ws5a{word-spacing:21.190450px;}
.ws1fe{word-spacing:21.196428px;}
.ws137{word-spacing:21.214360px;}
.ws1c1{word-spacing:21.217922px;}
.wsc1{word-spacing:21.238269px;}
.wsd{word-spacing:21.262181px;}
.ws23{word-spacing:21.286091px;}
.ws1d8{word-spacing:21.333911px;}
.wsae{word-spacing:21.357821px;}
.wse5{word-spacing:21.411609px;}
.ws7f{word-spacing:21.417596px;}
.ws56{word-spacing:21.429552px;}
.ws179{word-spacing:21.441508px;}
.wse0{word-spacing:21.465346px;}
.wsdf{word-spacing:21.465399px;}
.ws57{word-spacing:21.483350px;}
.wsaf{word-spacing:21.507260px;}
.wsa1{word-spacing:21.555081px;}
.wse7{word-spacing:21.561059px;}
.ws6e{word-spacing:21.561136px;}
.ws113{word-spacing:21.578991px;}
.ws20a{word-spacing:21.602901px;}
.ws109{word-spacing:21.626811px;}
.ws121{word-spacing:21.632789px;}
.ws18d{word-spacing:21.650643px;}
.ws77{word-spacing:21.650727px;}
.ws1f1{word-spacing:21.662677px;}
.ws135{word-spacing:21.674632px;}
.wsec{word-spacing:21.746397px;}
.ws9e{word-spacing:21.758318px;}
.wse4{word-spacing:21.764276px;}
.wsf4{word-spacing:21.764296px;}
.ws78{word-spacing:21.770274px;}
.ws87{word-spacing:21.782228px;}
.ws209{word-spacing:21.824071px;}
.wsed{word-spacing:21.835940px;}
.wsee{word-spacing:21.883847px;}
.ws99{word-spacing:21.895801px;}
.ws4f{word-spacing:21.913735px;}
.ws1fc{word-spacing:22.015352px;}
.ws1fd{word-spacing:22.033286px;}
.ws97{word-spacing:22.081106px;}
.ws1e7{word-spacing:22.093062px;}
.ws18c{word-spacing:22.099040px;}
.ws1d9{word-spacing:22.104947px;}
.ws27{word-spacing:22.116971px;}
.ws1f2{word-spacing:22.116972px;}
.ws18f{word-spacing:22.140881px;}
.wscf{word-spacing:22.164791px;}
.ws1ef{word-spacing:22.188702px;}
.ws192{word-spacing:22.188703px;}
.ws13d{word-spacing:22.206661px;}
.wsd0{word-spacing:22.212613px;}
.ws1e6{word-spacing:22.236523px;}
.ws83{word-spacing:22.248478px;}
.ws204{word-spacing:22.248486px;}
.ws23d{word-spacing:22.260433px;}
.ws177{word-spacing:22.284342px;}
.wsc4{word-spacing:22.290320px;}
.ws1a1{word-spacing:22.290390px;}
.ws1eb{word-spacing:22.296276px;}
.ws18e{word-spacing:22.308254px;}
.ws1ee{word-spacing:22.314333px;}
.ws191{word-spacing:22.332260px;}
.ws124{word-spacing:22.344119px;}
.ws26{word-spacing:22.356073px;}
.ws5d{word-spacing:22.362052px;}
.ws126{word-spacing:22.368029px;}
.wsf0{word-spacing:22.374006px;}
.wsca{word-spacing:22.374007px;}
.ws2a{word-spacing:22.379984px;}
.wsef{word-spacing:22.385923px;}
.ws186{word-spacing:22.391938px;}
.ws19a{word-spacing:22.397917px;}
.ws147{word-spacing:22.397938px;}
.ws13a{word-spacing:22.403929px;}
.ws208{word-spacing:22.403956px;}
.ws141{word-spacing:22.409818px;}
.ws162{word-spacing:22.409872px;}
.ws200{word-spacing:22.415849px;}
.wscc{word-spacing:22.421827px;}
.ws199{word-spacing:22.427804px;}
.wsd3{word-spacing:22.433781px;}
.ws8f{word-spacing:22.439760px;}
.ws205{word-spacing:22.445789px;}
.ws14e{word-spacing:22.457693px;}
.ws55{word-spacing:22.469680px;}
.ws13b{word-spacing:22.475590px;}
.ws190{word-spacing:22.505513px;}
.ws148{word-spacing:22.505535px;}
.ws10e{word-spacing:22.511491px;}
.ws131{word-spacing:22.517469px;}
.ws19b{word-spacing:22.529423px;}
.ws9f{word-spacing:22.535401px;}
.ws1a6{word-spacing:22.541379px;}
.ws198{word-spacing:22.547355px;}
.ws8a{word-spacing:22.553333px;}
.wscd{word-spacing:22.553334px;}
.ws73{word-spacing:22.559311px;}
.ws1a7{word-spacing:22.571266px;}
.ws1a0{word-spacing:22.577243px;}
.wsc6{word-spacing:22.577244px;}
.ws19f{word-spacing:22.601153px;}
.ws20{word-spacing:22.607131px;}
.ws1af{word-spacing:22.619086px;}
.ws1b5{word-spacing:22.625064px;}
.ws1a2{word-spacing:22.643016px;}
.ws2b{word-spacing:22.648974px;}
.ws84{word-spacing:22.660929px;}
.ws89{word-spacing:22.678943px;}
.wsc9{word-spacing:22.690817px;}
.wsdd{word-spacing:22.690829px;}
.wse2{word-spacing:22.696715px;}
.wsde{word-spacing:22.696795px;}
.ws1b4{word-spacing:22.696806px;}
.ws9b{word-spacing:22.714727px;}
.ws1f3{word-spacing:22.750433px;}
.ws5b{word-spacing:22.750593px;}
.ws1ed{word-spacing:22.750600px;}
.ws1e9{word-spacing:22.756571px;}
.ws1e4{word-spacing:22.762547px;}
.ws29{word-spacing:22.762549px;}
.ws25{word-spacing:22.774503px;}
.wsa3{word-spacing:22.798413px;}
.ws132{word-spacing:22.804391px;}
.ws95{word-spacing:22.810489px;}
.wse1{word-spacing:22.846234px;}
.ws6b{word-spacing:22.894054px;}
.ws4c{word-spacing:22.906009px;}
.ws7d{word-spacing:22.911987px;}
.ws10d{word-spacing:22.911993px;}
.ws207{word-spacing:22.929887px;}
.wse3{word-spacing:22.941945px;}
.ws13e{word-spacing:22.947852px;}
.ws11a{word-spacing:22.989696px;}
.ws130{word-spacing:23.013642px;}
.ws158{word-spacing:23.019579px;}
.ws142{word-spacing:23.097289px;}
.ws206{word-spacing:23.121196px;}
.wsbf{word-spacing:23.139135px;}
.wsc8{word-spacing:23.151089px;}
.ws96{word-spacing:23.306505px;}
.ws1e8{word-spacing:23.330415px;}
.ws241{word-spacing:24.114056px;}
.ws3e{word-spacing:24.286826px;}
.ws3b{word-spacing:24.376489px;}
.ws2{word-spacing:24.409529px;}
.ws1{word-spacing:24.534021px;}
.ws246{word-spacing:24.550972px;}
.wsf9{word-spacing:24.657435px;}
.wsfa{word-spacing:25.129662px;}
.ws15d{word-spacing:25.261167px;}
.wsbb{word-spacing:26.068139px;}
.ws15f{word-spacing:26.080094px;}
.wsf8{word-spacing:26.151825px;}
.ws67{word-spacing:26.163780px;}
.ws69{word-spacing:26.175735px;}
.ws66{word-spacing:26.773491px;}
.ws65{word-spacing:27.359291px;}
.wsfc{word-spacing:27.646214px;}
.ws35{word-spacing:28.190173px;}
.ws2e{word-spacing:28.483072px;}
.ws15a{word-spacing:28.542848px;}
.ws64{word-spacing:28.554804px;}
.ws62{word-spacing:28.578713px;}
.ws14f{word-spacing:28.835749px;}
.ws31{word-spacing:29.044963px;}
.wsfb{word-spacing:30.258409px;}
.ws19{word-spacing:30.288312px;}
.wsf7{word-spacing:30.515442px;}
.wsf5{word-spacing:30.921869px;}
.ws15e{word-spacing:30.975714px;}
.wsf6{word-spacing:31.328390px;}
.ws161{word-spacing:31.394144px;}
.ws171{word-spacing:31.776709px;}
.ws151{word-spacing:31.848467px;}
.ws36{word-spacing:31.884304px;}
.wsb9{word-spacing:31.908214px;}
.ws16d{word-spacing:32.009833px;}
.wsfd{word-spacing:32.015809px;}
.ws150{word-spacing:32.135360px;}
.wsfe{word-spacing:32.147317px;}
.ws68{word-spacing:32.177205px;}
.ws153{word-spacing:32.195104px;}
.ws16b{word-spacing:32.284801px;}
.ws37{word-spacing:32.296912px;}
.ws2d{word-spacing:32.314689px;}
.ws168{word-spacing:32.344577px;}
.ws154{word-spacing:32.464129px;}
.ws25a{word-spacing:52.653630px;}
.ws26c{word-spacing:52.897457px;}
.ws26d{word-spacing:52.907618px;}
.ws26f{word-spacing:52.912698px;}
.ws262{word-spacing:52.922626px;}
.ws25c{word-spacing:52.963502px;}
.ws260{word-spacing:53.263202px;}
.ws26e{word-spacing:61.072654px;}
.ws255{word-spacing:75.609166px;}
.ws257{word-spacing:75.705705px;}
.ws256{word-spacing:75.710784px;}
.ws258{word-spacing:75.715870px;}
.ws254{word-spacing:75.797160px;}
.ws267{word-spacing:77.727911px;}
.ws268{word-spacing:77.748238px;}
.ws1c4{word-spacing:91.182188px;}
.ws1c3{word-spacing:106.257282px;}
.ws1c6{word-spacing:121.154534px;}
.ws1ca{word-spacing:192.587181px;}
.ws1c8{word-spacing:244.971464px;}
._24{margin-left:-2960.042934px;}
._31{margin-left:-56.830088px;}
._30{margin-left:-55.475256px;}
._33{margin-left:-41.180855px;}
._32{margin-left:-39.778749px;}
._10{margin-left:-34.161978px;}
._11{margin-left:-32.948087px;}
._e{margin-left:-29.947478px;}
._f{margin-left:-28.817911px;}
._37{margin-left:-27.329325px;}
._12{margin-left:-26.145945px;}
._13{margin-left:-24.639308px;}
._17{margin-left:-21.268150px;}
._16{margin-left:-20.250491px;}
._19{margin-left:-18.830044px;}
._29{margin-left:-17.674512px;}
._2a{margin-left:-16.346046px;}
._36{margin-left:-15.216621px;}
._26{margin-left:-13.186497px;}
._25{margin-left:-11.309543px;}
._2f{margin-left:-9.309667px;}
._39{margin-left:-7.493738px;}
._0{margin-left:-1.741336px;}
._3{width:1.006022px;}
._27{width:2.313345px;}
._1{width:3.624795px;}
._38{width:4.956616px;}
._5{width:6.493415px;}
._7d{width:8.937338px;}
._a{width:10.083764px;}
._18{width:11.119368px;}
._8{width:12.143359px;}
._4{width:13.886155px;}
._2b{width:14.922960px;}
._6{width:15.951484px;}
._b{width:17.093228px;}
._7{width:18.345857px;}
._c{width:20.290918px;}
._14{width:21.315219px;}
._9{width:22.387447px;}
._d{width:24.141573px;}
._2{width:25.900369px;}
._15{width:30.394099px;}
._35{width:32.303049px;}
._28{width:33.665625px;}
._2d{width:39.147887px;}
._60{width:52.452518px;}
._5e{width:53.862834px;}
._6c{width:55.415415px;}
._61{width:60.193661px;}
._5f{width:61.941371px;}
._1b{width:63.139158px;}
._3a{width:64.166947px;}
._3e{width:75.095996px;}
._3b{width:76.996260px;}
._6b{width:80.263295px;}
._72{width:85.024120px;}
._4c{width:87.086966px;}
._3f{width:100.012827px;}
._73{width:102.599011px;}
._62{width:105.025515px;}
._6d{width:107.791734px;}
._42{width:110.555730px;}
._48{width:111.917419px;}
._53{width:121.108805px;}
._4f{width:122.450168px;}
._43{width:129.263687px;}
._75{width:130.361165px;}
._63{width:134.359839px;}
._54{width:136.747872px;}
._22{width:141.059560px;}
._79{width:142.667068px;}
._51{width:144.221934px;}
._47{width:145.934177px;}
._5b{width:147.311113px;}
._50{width:154.094139px;}
._41{width:164.982553px;}
._49{width:166.003810px;}
._65{width:168.371524px;}
._4e{width:171.557254px;}
._57{width:178.929678px;}
._76{width:179.974908px;}
._45{width:181.307539px;}
._4a{width:183.009647px;}
._78{width:188.786662px;}
._5a{width:191.408417px;}
._77{width:193.532247px;}
._40{width:196.408034px;}
._2e{width:200.885147px;}
._3d{width:202.337476px;}
._4d{width:204.501938px;}
._70{width:205.520319px;}
._59{width:207.086128px;}
._55{width:214.851779px;}
._4b{width:221.233406px;}
._7c{width:222.432479px;}
._64{width:230.282520px;}
._20{width:236.281686px;}
._6a{width:239.794022px;}
._69{width:241.005263px;}
._21{width:245.119559px;}
._6e{width:246.277270px;}
._34{width:250.322504px;}
._44{width:251.724002px;}
._1d{width:261.076560px;}
._7a{width:264.097471px;}
._66{width:265.576618px;}
._7b{width:266.621368px;}
._1e{width:271.181926px;}
._67{width:272.443998px;}
._52{width:275.652068px;}
._58{width:277.227163px;}
._6f{width:290.199802px;}
._74{width:297.012444px;}
._68{width:324.843524px;}
._3c{width:334.156855px;}
._56{width:348.342792px;}
._71{width:349.679075px;}
._46{width:373.157986px;}
._2c{width:374.897917px;}
._1c{width:483.089619px;}
._1f{width:516.898050px;}
._23{width:551.981811px;}
._5c{width:734.792455px;}
._5d{width:946.448303px;}
._7e{width:2118.098161px;}
._1a{width:2142.237661px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(19,20,19);}
.fs7{font-size:33.869399px;}
.fs3{font-size:39.845999px;}
.fs4{font-size:47.821200px;}
.fs5{font-size:50.809198px;}
.fs8{font-size:50.820000px;}
.fs0{font-size:56.906399px;}
.fs2{font-size:59.775599px;}
.fs9{font-size:65.753998px;}
.fs6{font-size:71.730600px;}
.fs1{font-size:95.761200px;}
.y0{bottom:0.000000px;}
.y236{bottom:115.470222px;}
.y1f7{bottom:115.482369px;}
.y1f8{bottom:115.483498px;}
.y1f5{bottom:115.483593px;}
.yd2{bottom:115.484299px;}
.y277{bottom:115.486473px;}
.y149{bottom:115.487343px;}
.yfd{bottom:115.492607px;}
.ya6{bottom:115.501350px;}
.y75{bottom:115.506271px;}
.y32{bottom:123.484841px;}
.y3d{bottom:124.412316px;}
.y235{bottom:130.437344px;}
.y276{bottom:130.453594px;}
.y2f6{bottom:134.191017px;}
.y2b6{bottom:134.191074px;}
.yd1{bottom:134.192562px;}
.y148{bottom:134.195606px;}
.yfc{bottom:134.200871px;}
.ya5{bottom:134.209602px;}
.y74{bottom:134.214523px;}
.y3c{bottom:139.294328px;}
.y180{bottom:140.740196px;}
.y17e{bottom:140.740482px;}
.y31{bottom:142.107926px;}
.y3b{bottom:144.992078px;}
.y234{bottom:145.404465px;}
.y275{bottom:146.185375px;}
.y17f{bottom:146.352745px;}
.y2f5{bottom:149.158138px;}
.y2b5{bottom:149.158195px;}
.yd0{bottom:152.815647px;}
.y147{bottom:152.818691px;}
.yfb{bottom:152.823956px;}
.ya4{bottom:152.832710px;}
.y73{bottom:152.837620px;}
.y1f6{bottom:153.581604px;}
.y17d{bottom:159.788853px;}
.y17b{bottom:159.789425px;}
.y233{bottom:160.456696px;}
.y30{bottom:160.816190px;}
.y274{bottom:161.152496px;}
.y3a{bottom:161.744558px;}
.y2f4{bottom:164.125259px;}
.y2b4{bottom:164.125317px;}
.y17c{bottom:165.401550px;}
.y1e1{bottom:171.523075px;}
.y146{bottom:171.526966px;}
.yfa{bottom:171.532230px;}
.ya3{bottom:171.540962px;}
.ycf{bottom:171.541500px;}
.y1cd{bottom:171.541981px;}
.y72{bottom:171.545883px;}
.y232{bottom:175.679134px;}
.y39{bottom:176.711678px;}
.y273{bottom:176.799191px;}
.y17a{bottom:178.837795px;}
.y178{bottom:178.838081px;}
.y2f{bottom:179.524465px;}
.y2b3{bottom:179.772011px;}
.y2f3{bottom:179.857052px;}
.y38{bottom:182.324376px;}
.y179{bottom:184.450356px;}
.y1e0{bottom:186.490196px;}
.y145{bottom:190.235218px;}
.yf9{bottom:190.240505px;}
.ya2{bottom:190.249226px;}
.yce{bottom:190.249775px;}
.y1cc{bottom:190.250256px;}
.y71{bottom:190.254147px;}
.y231{bottom:190.646255px;}
.y272{bottom:191.766312px;}
.y2b2{bottom:194.739143px;}
.y2f2{bottom:194.824173px;}
.y177{bottom:197.886452px;}
.y175{bottom:197.887024px;}
.y2e{bottom:198.147538px;}
.y37{bottom:199.076867px;}
.y1df{bottom:201.457329px;}
.y176{bottom:203.499161px;}
.y230{bottom:205.698486px;}
.y271{bottom:207.498116px;}
.y144{bottom:208.858315px;}
.yf8{bottom:208.863579px;}
.ya1{bottom:208.872322px;}
.ycd{bottom:208.872849px;}
.y1cb{bottom:208.873329px;}
.y70{bottom:208.877243px;}
.y2b1{bottom:209.706253px;}
.y2f1{bottom:209.791283px;}
.y36{bottom:214.043977px;}
.y1de{bottom:216.339340px;}
.y2d{bottom:216.855813px;}
.y172{bottom:216.934845px;}
.y174{bottom:216.935394px;}
.y35{bottom:219.656526px;}
.y22f{bottom:220.665596px;}
.y270{bottom:222.465248px;}
.y173{bottom:222.547943px;}
.y2b0{bottom:224.758484px;}
.y2f0{bottom:224.843513px;}
.y143{bottom:227.566566px;}
.yf7{bottom:227.571854px;}
.ya0{bottom:227.580574px;}
.ycc{bottom:227.581123px;}
.y1ca{bottom:227.581604px;}
.y6f{bottom:227.585495px;}
.y1dd{bottom:231.306450px;}
.y2c{bottom:235.564088px;}
.y22e{bottom:235.888046px;}
.y26f{bottom:237.432358px;}
.y2ef{bottom:239.810646px;}
.y2af{bottom:240.320068px;}
.y1dc{bottom:246.273560px;}
.y142{bottom:246.274841px;}
.yf6{bottom:246.280128px;}
.y9f{bottom:246.288849px;}
.ycb{bottom:246.289398px;}
.y1c9{bottom:246.289856px;}
.y6e{bottom:246.293770px;}
.y171{bottom:247.633759px;}
.y22d{bottom:250.940254px;}
.y26e{bottom:253.079041px;}
.y2b{bottom:254.187173px;}
.y2ee{bottom:254.777756px;}
.y2ae{bottom:255.372299px;}
.y34{bottom:256.648500px;}
.y1db{bottom:261.240692px;}
.y170{bottom:262.600868px;}
.y141{bottom:264.897926px;}
.yf5{bottom:264.903213px;}
.y9e{bottom:264.911934px;}
.yca{bottom:264.912483px;}
.y1c8{bottom:264.912964px;}
.y6d{bottom:264.916855px;}
.y22c{bottom:265.907364px;}
.y26d{bottom:268.131271px;}
.y2ed{bottom:269.744888px;}
.y2ad{bottom:270.339409px;}
.y33{bottom:271.615632px;}
.y2a{bottom:272.895448px;}
.y1d8{bottom:276.122589px;}
.y1da{bottom:276.122704px;}
.y22b{bottom:280.874496px;}
.y1d9{bottom:281.820442px;}
.y140{bottom:283.606200px;}
.yf4{bottom:283.611465px;}
.y9d{bottom:283.620209px;}
.yc9{bottom:283.620758px;}
.y1c7{bottom:283.621216px;}
.y6c{bottom:283.625130px;}
.y26c{bottom:283.777954px;}
.y2ac{bottom:285.306541px;}
.y2ec{bottom:285.476669px;}
.y16f{bottom:290.834290px;}
.y1d5{bottom:291.089424px;}
.y1d7{bottom:291.089699px;}
.y29{bottom:291.603700px;}
.y22a{bottom:296.182045px;}
.y1d6{bottom:296.702248px;}
.y26b{bottom:298.745087px;}
.y2ab{bottom:300.273651px;}
.y2eb{bottom:300.443779px;}
.yf3{bottom:302.319740px;}
.y9c{bottom:302.328484px;}
.yc8{bottom:302.329010px;}
.y1c6{bottom:302.329491px;}
.y6b{bottom:302.333405px;}
.y16e{bottom:305.801399px;}
.y1d2{bottom:306.055985px;}
.y1d4{bottom:306.056557px;}
.y28{bottom:310.226808px;}
.y229{bottom:311.149155px;}
.y1d3{bottom:311.669243px;}
.y26a{bottom:314.476868px;}
.y2aa{bottom:315.325882px;}
.y2ea{bottom:315.410912px;}
.y1d1{bottom:320.937996px;}
.y13f{bottom:320.938499px;}
.yf2{bottom:320.942825px;}
.y9b{bottom:320.951569px;}
.yc7{bottom:320.952095px;}
.y1c5{bottom:320.952576px;}
.y6a{bottom:320.956490px;}
.y228{bottom:326.371582px;}
.y21{bottom:328.933572px;}
.y27{bottom:328.935060px;}
.y269{bottom:329.444000px;}
.y2a9{bottom:330.887466px;}
.y2e9{bottom:331.142715px;}
.y1d0{bottom:335.905106px;}
.yf1{bottom:339.651100px;}
.y9a{bottom:339.659843px;}
.yc6{bottom:339.660370px;}
.y1c4{bottom:339.660851px;}
.y69{bottom:339.664764px;}
.y227{bottom:341.338715px;}
.y268{bottom:344.411110px;}
.y2a8{bottom:345.939697px;}
.y2e8{bottom:346.109825px;}
.y20{bottom:347.641824px;}
.y26{bottom:347.643335px;}
.y1cf{bottom:350.872238px;}
.y226{bottom:356.390945px;}
.yf0{bottom:358.274185px;}
.yc5{bottom:358.283455px;}
.y13e{bottom:358.355850px;}
.y16b{bottom:358.359352px;}
.y99{bottom:358.368095px;}
.y1c3{bottom:358.369102px;}
.y68{bottom:358.373016px;}
.y267{bottom:359.378242px;}
.y16d{bottom:359.801903px;}
.y2a7{bottom:360.906807px;}
.y2e7{bottom:361.162056px;}
.y1ce{bottom:365.839348px;}
.y1f{bottom:366.264932px;}
.y25{bottom:366.266420px;}
.y225{bottom:371.613373px;}
.y266{bottom:375.110046px;}
.y2e6{bottom:376.129166px;}
.y2a6{bottom:376.553513px;}
.yef{bottom:376.982437px;}
.y98{bottom:376.991180px;}
.yc4{bottom:376.991707px;}
.y1c2{bottom:376.992188px;}
.y67{bottom:376.996101px;}
.y16c{bottom:378.510155px;}
.y1e{bottom:384.973184px;}
.y24{bottom:384.974694px;}
.y224{bottom:386.920898px;}
.y265{bottom:390.077179px;}
.y2e5{bottom:391.096298px;}
.y2a5{bottom:391.520645px;}
.yee{bottom:395.690735px;}
.y97{bottom:395.699432px;}
.yc3{bottom:395.699982px;}
.y1c1{bottom:395.700485px;}
.y66{bottom:395.704376px;}
.y223{bottom:401.888031px;}
.y23{bottom:403.682946px;}
.y264{bottom:405.044266px;}
.y2a4{bottom:406.487732px;}
.y2e4{bottom:406.828079px;}
.yed{bottom:414.313797px;}
.yc2{bottom:414.323090px;}
.y13d{bottom:414.397705px;}
.y16a{bottom:414.398987px;}
.y96{bottom:414.407730px;}
.y1c0{bottom:414.408737px;}
.y65{bottom:414.412628px;}
.y222{bottom:416.855164px;}
.y263{bottom:420.011398px;}
.y2e3{bottom:421.795212px;}
.y2a3{bottom:422.134460px;}
.y1d{bottom:422.305322px;}
.y22{bottom:422.306054px;}
.y221{bottom:432.162689px;}
.y13c{bottom:433.020813px;}
.yec{bottom:433.022049px;}
.y95{bottom:433.030792px;}
.yc1{bottom:433.031342px;}
.y1bf{bottom:433.031799px;}
.y64{bottom:433.035736px;}
.y262{bottom:435.063629px;}
.y2a2{bottom:437.101547px;}
.y2e2{bottom:437.526993px;}
.y220{bottom:447.129822px;}
.y261{bottom:450.710312px;}
.y13b{bottom:451.729065px;}
.y139{bottom:451.729385px;}
.yeb{bottom:451.730347px;}
.y94{bottom:451.739090px;}
.yc0{bottom:451.739594px;}
.y1be{bottom:451.740097px;}
.y63{bottom:451.743988px;}
.y2a1{bottom:452.068680px;}
.y2e1{bottom:452.494125px;}
.y13a{bottom:458.362061px;}
.y21f{bottom:462.096909px;}
.y260{bottom:465.677444px;}
.y2a0{bottom:467.715363px;}
.y2e0{bottom:468.140808px;}
.yea{bottom:470.353409px;}
.ybf{bottom:470.362701px;}
.y138{bottom:470.437637px;}
.y136{bottom:470.438232px;}
.y169{bottom:470.438599px;}
.y93{bottom:470.447342px;}
.y1bd{bottom:470.448349px;}
.y62{bottom:470.452240px;}
.y21e{bottom:477.064041px;}
.y137{bottom:477.070816px;}
.y1c{bottom:481.330789px;}
.y25f{bottom:481.409225px;}
.y29f{bottom:482.682495px;}
.y2df{bottom:483.193039px;}
.y135{bottom:489.061340px;}
.ye9{bottom:489.061707px;}
.y92{bottom:489.070404px;}
.ybe{bottom:489.070953px;}
.y1bc{bottom:489.071457px;}
.y61{bottom:489.075348px;}
.y21d{bottom:492.116272px;}
.y134{bottom:495.694336px;}
.y25e{bottom:496.376358px;}
.y2de{bottom:498.160172px;}
.y29e{bottom:498.329178px;}
.y1b{bottom:500.039086px;}
.y21c{bottom:507.338699px;}
.ye8{bottom:507.769958px;}
.y133{bottom:507.773941px;}
.ye6{bottom:507.777054px;}
.y91{bottom:507.778702px;}
.ybd{bottom:507.779250px;}
.y1bb{bottom:507.779709px;}
.y60{bottom:507.783600px;}
.y25d{bottom:512.023041px;}
.y29d{bottom:513.296310px;}
.y2dd{bottom:513.891953px;}
.ye7{bottom:514.402954px;}
.y21b{bottom:522.305832px;}
.ye5{bottom:526.400162px;}
.ybc{bottom:526.402313px;}
.y132{bottom:526.482239px;}
.y90{bottom:526.486954px;}
.y1ba{bottom:526.487961px;}
.y5f{bottom:526.491898px;}
.y168{bottom:526.492401px;}
.y25c{bottom:526.990173px;}
.y1f4{bottom:527.922684px;}
.y29c{bottom:528.348541px;}
.y2dc{bottom:528.859085px;}
.y21a{bottom:537.358063px;}
.y1a{bottom:537.370446px;}
.y25b{bottom:542.042404px;}
.y1f3{bottom:542.889816px;}
.y2db{bottom:543.826218px;}
.y29b{bottom:543.910126px;}
.y131{bottom:545.105301px;}
.ye4{bottom:545.108414px;}
.y8f{bottom:545.110062px;}
.ybb{bottom:545.110611px;}
.y1b9{bottom:545.111069px;}
.y5e{bottom:545.114960px;}
.y167{bottom:545.115463px;}
.y219{bottom:552.580490px;}
.y19{bottom:556.078698px;}
.y25a{bottom:557.689087px;}
.y1f2{bottom:557.856903px;}
.y29a{bottom:558.962357px;}
.y2da{bottom:559.557999px;}
.y130{bottom:563.813599px;}
.ye3{bottom:563.816711px;}
.y8e{bottom:563.818314px;}
.yba{bottom:563.818863px;}
.y1b8{bottom:563.819321px;}
.y5d{bottom:563.823257px;}
.y166{bottom:563.823715px;}
.y218{bottom:567.547623px;}
.y259{bottom:572.656219px;}
.y1f1{bottom:572.738937px;}
.y299{bottom:574.523941px;}
.y2d9{bottom:574.525131px;}
.y18{bottom:574.786950px;}
.ye2{bottom:582.439774px;}
.yb9{bottom:582.441925px;}
.y217{bottom:582.514755px;}
.y12f{bottom:582.521850px;}
.y8d{bottom:582.526611px;}
.y1b7{bottom:582.527573px;}
.y5c{bottom:582.531509px;}
.y165{bottom:582.532013px;}
.y1f0{bottom:587.706024px;}
.y258{bottom:587.708405px;}
.y298{bottom:589.576126px;}
.y2d8{bottom:590.256912px;}
.y17{bottom:593.410058px;}
.y216{bottom:597.566940px;}
.y12e{bottom:601.144913px;}
.ye1{bottom:601.148071px;}
.y8c{bottom:601.149673px;}
.yb8{bottom:601.150223px;}
.y1b6{bottom:601.150681px;}
.y5b{bottom:601.154617px;}
.y164{bottom:601.155075px;}
.y1ef{bottom:602.673157px;}
.y257{bottom:603.355087px;}
.y297{bottom:604.543259px;}
.y2d7{bottom:605.224045px;}
.y16{bottom:612.118310px;}
.y215{bottom:612.789368px;}
.y1ee{bottom:617.555191px;}
.y256{bottom:618.322220px;}
.y296{bottom:619.510391px;}
.y12d{bottom:619.853210px;}
.ye0{bottom:619.856323px;}
.y8b{bottom:619.857925px;}
.yb7{bottom:619.858475px;}
.y1b5{bottom:619.858932px;}
.y5a{bottom:619.862869px;}
.y163{bottom:619.863373px;}
.y2d6{bottom:620.191177px;}
.y214{bottom:627.756500px;}
.y15{bottom:630.826562px;}
.y1ed{bottom:632.522324px;}
.y255{bottom:633.289352px;}
.y295{bottom:634.477478px;}
.y2d5{bottom:635.158264px;}
.ydf{bottom:638.479385px;}
.y8a{bottom:638.481033px;}
.yb6{bottom:638.481537px;}
.y12c{bottom:638.561462px;}
.y1b4{bottom:638.567230px;}
.y59{bottom:638.571121px;}
.y162{bottom:638.571625px;}
.y213{bottom:642.808731px;}
.y1ec{bottom:647.489410px;}
.y254{bottom:649.021133px;}
.y14{bottom:649.449670px;}
.y294{bottom:650.124207px;}
.y2d4{bottom:650.890091px;}
.y12b{bottom:657.184570px;}
.yde{bottom:657.187683px;}
.y89{bottom:657.189285px;}
.yb5{bottom:657.189835px;}
.y1b3{bottom:657.190292px;}
.y58{bottom:657.194229px;}
.y161{bottom:657.194733px;}
.y212{bottom:657.775864px;}
.y1eb{bottom:662.456543px;}
.y253{bottom:663.988266px;}
.y293{bottom:665.091293px;}
.y2d3{bottom:665.857178px;}
.y13{bottom:668.157922px;}
.y211{bottom:672.998291px;}
.y12a{bottom:675.892822px;}
.y128{bottom:675.893234px;}
.ydd{bottom:675.895935px;}
.y88{bottom:675.897537px;}
.yb4{bottom:675.898087px;}
.y1b2{bottom:675.898590px;}
.y57{bottom:675.902481px;}
.y160{bottom:675.902985px;}
.y252{bottom:679.634949px;}
.y292{bottom:680.738022px;}
.y2d2{bottom:680.824310px;}
.y129{bottom:682.525818px;}
.y12{bottom:686.866220px;}
.y210{bottom:688.050522px;}
.y127{bottom:694.516342px;}
.y125{bottom:694.517166px;}
.ydc{bottom:694.518997px;}
.y87{bottom:694.520645px;}
.yb3{bottom:694.521194px;}
.y1b1{bottom:694.521652px;}
.y56{bottom:694.525543px;}
.y15f{bottom:694.526093px;}
.y251{bottom:694.687180px;}
.y291{bottom:695.705109px;}
.y2d1{bottom:695.876541px;}
.y126{bottom:701.234390px;}
.y20f{bottom:703.017654px;}
.y11{bottom:705.489282px;}
.y250{bottom:709.654312px;}
.y290{bottom:710.757339px;}
.y2d0{bottom:711.523224px;}
.y124{bottom:713.225464px;}
.ydb{bottom:713.227295px;}
.y86{bottom:713.228897px;}
.yb2{bottom:713.229446px;}
.y1b0{bottom:713.229950px;}
.y55{bottom:713.233841px;}
.y15e{bottom:713.234344px;}
.y20e{bottom:718.240082px;}
.y10{bottom:724.197578px;}
.y24f{bottom:725.300995px;}
.y28f{bottom:726.318924px;}
.y2cf{bottom:726.575455px;}
.y123{bottom:731.933716px;}
.y121{bottom:731.934998px;}
.yda{bottom:731.935547px;}
.y85{bottom:731.937195px;}
.yb1{bottom:731.937698px;}
.y1af{bottom:731.938202px;}
.y54{bottom:731.942093px;}
.y15d{bottom:731.942596px;}
.y20d{bottom:733.292313px;}
.y122{bottom:738.566711px;}
.y24e{bottom:740.268127px;}
.y28e{bottom:741.371155px;}
.y2ce{bottom:741.542587px;}
.yf{bottom:742.905831px;}
.y20c{bottom:748.259399px;}
.y120{bottom:750.558060px;}
.yd9{bottom:750.558655px;}
.y84{bottom:750.560257px;}
.yb0{bottom:750.560806px;}
.y1ae{bottom:750.561264px;}
.y19f{bottom:750.564285px;}
.y53{bottom:750.565200px;}
.y15c{bottom:750.565659px;}
.y1ea{bottom:751.322708px;}
.y24d{bottom:755.320358px;}
.y28d{bottom:756.338287px;}
.y2cd{bottom:757.189270px;}
.ye{bottom:761.528939px;}
.y20b{bottom:763.481873px;}
.y11f{bottom:769.266357px;}
.yd8{bottom:769.266907px;}
.y83{bottom:769.268555px;}
.yaf{bottom:769.269104px;}
.y1ad{bottom:769.269562px;}
.y19e{bottom:769.272583px;}
.y52{bottom:769.273499px;}
.y15b{bottom:769.273956px;}
.y24c{bottom:770.967041px;}
.y28c{bottom:771.985016px;}
.y2cc{bottom:772.241455px;}
.y20a{bottom:778.534058px;}
.yd{bottom:780.237191px;}
.y24b{bottom:785.934174px;}
.y28b{bottom:786.952057px;}
.y2cb{bottom:787.208588px;}
.y11e{bottom:787.974609px;}
.yd7{bottom:787.975159px;}
.y82{bottom:787.976807px;}
.yae{bottom:787.977356px;}
.y1ac{bottom:787.977814px;}
.y19d{bottom:787.980835px;}
.y51{bottom:787.981750px;}
.y15a{bottom:787.982208px;}
.y209{bottom:793.501190px;}
.y11d{bottom:794.607788px;}
.yc{bottom:798.945443px;}
.y24a{bottom:801.650940px;}
.y28a{bottom:801.919189px;}
.y2ca{bottom:802.175720px;}
.yd6{bottom:806.598267px;}
.y11b{bottom:806.598633px;}
.y81{bottom:806.599915px;}
.yad{bottom:806.600464px;}
.y1ab{bottom:806.600922px;}
.y19c{bottom:806.603850px;}
.y50{bottom:806.604767px;}
.y159{bottom:806.605316px;}
.y208{bottom:808.723663px;}
.y11c{bottom:813.316315px;}
.y249{bottom:816.618073px;}
.y2c9{bottom:817.142853px;}
.y289{bottom:817.565918px;}
.yb{bottom:817.568551px;}
.y207{bottom:823.690796px;}
.y11a{bottom:825.306885px;}
.y118{bottom:825.307251px;}
.y80{bottom:825.308167px;}
.yac{bottom:825.308716px;}
.y1aa{bottom:825.309174px;}
.y19b{bottom:825.312195px;}
.y4f{bottom:825.313110px;}
.y158{bottom:825.313568px;}
.y1e9{bottom:828.283081px;}
.y248{bottom:831.585205px;}
.y119{bottom:831.939880px;}
.y2c8{bottom:832.195038px;}
.y288{bottom:832.533051px;}
.ya{bottom:836.276803px;}
.y206{bottom:838.742981px;}
.yd5{bottom:844.015503px;}
.y116{bottom:844.016052px;}
.y7f{bottom:844.016418px;}
.yab{bottom:844.016968px;}
.y1a9{bottom:844.017426px;}
.y19a{bottom:844.020447px;}
.y4e{bottom:844.021362px;}
.y157{bottom:844.021820px;}
.y247{bottom:846.552338px;}
.y287{bottom:847.500183px;}
.y2c7{bottom:847.841766px;}
.y117{bottom:850.648682px;}
.y1e8{bottom:861.958099px;}
.y246{bottom:862.284119px;}
.y286{bottom:862.552368px;}
.y115{bottom:862.639160px;}
.y7e{bottom:862.639526px;}
.yaa{bottom:862.640076px;}
.y1a8{bottom:862.640533px;}
.y199{bottom:862.643463px;}
.y4d{bottom:862.644470px;}
.y156{bottom:862.644928px;}
.y2c6{bottom:862.893951px;}
.y114{bottom:869.357208px;}
.y205{bottom:872.418640px;}
.y9{bottom:874.119027px;}
.y1e7{bottom:876.840088px;}
.y245{bottom:877.251251px;}
.y2c5{bottom:877.861084px;}
.y285{bottom:878.115234px;}
.yd4{bottom:881.345673px;}
.y7d{bottom:881.347778px;}
.ya9{bottom:881.348328px;}
.y1a7{bottom:881.348785px;}
.y112{bottom:881.349609px;}
.y198{bottom:881.351807px;}
.y4c{bottom:881.352722px;}
.y155{bottom:881.353180px;}
.y193{bottom:882.877533px;}
.y3f{bottom:887.190033px;}
.y8{bottom:887.810830px;}
.y113{bottom:887.980774px;}
.y1e6{bottom:891.807220px;}
.y244{bottom:892.218384px;}
.y2c4{bottom:892.828217px;}
.y284{bottom:893.167419px;}
.y192{bottom:897.759521px;}
.yd3{bottom:900.053925px;}
.ya8{bottom:900.056580px;}
.y1a6{bottom:900.057037px;}
.y111{bottom:900.057861px;}
.y197{bottom:900.060059px;}
.y4b{bottom:900.060974px;}
.y154{bottom:900.061432px;}
.y1e5{bottom:906.774353px;}
.y243{bottom:907.865021px;}
.y283{bottom:908.134552px;}
.y2c3{bottom:908.559998px;}
.y191{bottom:912.726654px;}
.y7c{bottom:918.680145px;}
.y110{bottom:918.680969px;}
.y196{bottom:918.683167px;}
.y4a{bottom:918.684082px;}
.y153{bottom:918.684540px;}
.y1e4{bottom:921.741486px;}
.y242{bottom:922.917297px;}
.y2c2{bottom:923.527130px;}
.y282{bottom:923.781281px;}
.y204{bottom:926.926941px;}
.y190{bottom:927.693787px;}
.y4{bottom:931.180728px;}
.y6{bottom:931.180734px;}
.y10f{bottom:937.389221px;}
.y195{bottom:937.391418px;}
.y49{bottom:937.392334px;}
.y152{bottom:937.392792px;}
.y5{bottom:937.813907px;}
.y7{bottom:937.813913px;}
.y241{bottom:937.884430px;}
.y2c1{bottom:938.494263px;}
.y281{bottom:938.748413px;}
.y203{bottom:941.894073px;}
.y18f{bottom:942.660919px;}
.y240{bottom:953.531067px;}
.y280{bottom:953.715546px;}
.y2c0{bottom:954.226044px;}
.y104{bottom:955.333740px;}
.y7b{bottom:956.097473px;}
.y10d{bottom:956.097931px;}
.y194{bottom:956.099670px;}
.y48{bottom:956.100586px;}
.y151{bottom:956.101044px;}
.y1e3{bottom:956.105621px;}
.y202{bottom:956.776062px;}
.y18e{bottom:957.542908px;}
.y10e{bottom:962.730469px;}
.y23f{bottom:968.583343px;}
.y2bf{bottom:969.193176px;}
.y27f{bottom:969.362183px;}
.y201{bottom:971.743195px;}
.y18b{bottom:972.509674px;}
.y18d{bottom:972.510040px;}
.y103{bottom:974.382111px;}
.y10c{bottom:974.721039px;}
.y10a{bottom:974.722778px;}
.y47{bottom:974.723694px;}
.y150{bottom:974.724152px;}
.y1e2{bottom:974.728729px;}
.y3{bottom:975.655856px;}
.y18c{bottom:978.122589px;}
.y10b{bottom:981.354034px;}
.y2be{bottom:984.160309px;}
.y23e{bottom:984.229980px;}
.y27e{bottom:984.329315px;}
.y200{bottom:986.710327px;}
.y18a{bottom:987.476807px;}
.y102{bottom:993.430481px;}
.y109{bottom:993.431030px;}
.y46{bottom:993.431946px;}
.y14f{bottom:993.432404px;}
.y1a5{bottom:993.436981px;}
.y23d{bottom:999.197113px;}
.y27d{bottom:999.296448px;}
.y2bd{bottom:999.889618px;}
.y2fb{bottom:1000.571777px;}
.y1ff{bottom:1001.677460px;}
.y187{bottom:1002.357605px;}
.y189{bottom:1002.358795px;}
.y2{bottom:1002.528872px;}
.y188{bottom:1008.056396px;}
.y108{bottom:1012.139282px;}
.y45{bottom:1012.140198px;}
.y14e{bottom:1012.140747px;}
.y1a4{bottom:1012.145325px;}
.y7a{bottom:1012.159607px;}
.y101{bottom:1012.478850px;}
.y23c{bottom:1014.164246px;}
.y2bc{bottom:1014.856750px;}
.y27c{bottom:1014.943085px;}
.y2fa{bottom:1015.538910px;}
.y1fe{bottom:1016.559448px;}
.y186{bottom:1017.324738px;}
.y2ff{bottom:1025.488586px;}
.y2bb{bottom:1029.823792px;}
.y23b{bottom:1029.896027px;}
.y27b{bottom:1029.910217px;}
.y2f9{bottom:1030.591095px;}
.y107{bottom:1030.762390px;}
.y44{bottom:1030.763306px;}
.y14d{bottom:1030.763763px;}
.y1a3{bottom:1030.768341px;}
.y79{bottom:1030.782715px;}
.y1fd{bottom:1031.526581px;}
.y100{bottom:1031.527222px;}
.y185{bottom:1032.291870px;}
.y2fe{bottom:1040.455719px;}
.y23a{bottom:1044.863159px;}
.y27a{bottom:1044.962494px;}
.y2ba{bottom:1045.555664px;}
.y2f8{bottom:1045.558228px;}
.y1fc{bottom:1046.493713px;}
.y184{bottom:1047.259003px;}
.y106{bottom:1049.470642px;}
.y43{bottom:1049.471558px;}
.y14c{bottom:1049.472015px;}
.y1a2{bottom:1049.476593px;}
.y78{bottom:1049.490967px;}
.y279{bottom:1059.929626px;}
.y239{bottom:1060.509888px;}
.y2b9{bottom:1060.522797px;}
.y2f7{bottom:1060.525360px;}
.y1fb{bottom:1061.460846px;}
.y183{bottom:1062.140991px;}
.yff{bottom:1062.311279px;}
.y42{bottom:1068.179810px;}
.y14b{bottom:1068.180359px;}
.y1a1{bottom:1068.184937px;}
.y77{bottom:1068.199219px;}
.y238{bottom:1075.477020px;}
.y2b8{bottom:1075.489838px;}
.y2fd{bottom:1075.491211px;}
.y278{bottom:1075.492493px;}
.y1fa{bottom:1076.342834px;}
.y182{bottom:1077.108124px;}
.y1{bottom:1077.278595px;}
.y41{bottom:1086.802917px;}
.y14a{bottom:1086.803375px;}
.y1a0{bottom:1086.807953px;}
.y76{bottom:1086.822327px;}
.y237{bottom:1090.529205px;}
.y2b7{bottom:1090.542114px;}
.y2fc{bottom:1090.543396px;}
.yfe{bottom:1090.544678px;}
.y1f9{bottom:1091.309967px;}
.y181{bottom:1092.075256px;}
.y3e{bottom:1109.591195px;}
.y105{bottom:1125.899963px;}
.y40{bottom:1126.155029px;}
.ya7{bottom:1126.394989px;}
.he{height:28.247079px;}
.h5{height:28.330505px;}
.h11{height:33.231563px;}
.h7{height:34.245400px;}
.h6{height:35.820485px;}
.hf{height:36.336300px;}
.h2{height:40.460450px;}
.h12{height:41.484265px;}
.hd{height:42.374871px;}
.h14{height:42.434930px;}
.h4{height:42.500451px;}
.h8{height:43.098207px;}
.h10{height:47.014108px;}
.h13{height:48.633347px;}
.h9{height:49.852849px;}
.hc{height:51.717763px;}
.ha{height:61.760198px;}
.hb{height:62.100957px;}
.h3{height:68.469258px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535396px;}
.x1{left:85.039352px;}
.x61{left:87.420461px;}
.xd{left:93.538588px;}
.xb{left:97.625247px;}
.xa{left:99.751387px;}
.x3c{left:101.451874px;}
.x22{left:103.492950px;}
.x62{left:110.636456px;}
.x23{left:112.251904px;}
.x63{left:129.684826px;}
.x3a{left:137.423527px;}
.x3b{left:144.566826px;}
.x64{left:148.818295px;}
.x65{left:167.866665px;}
.x45{left:172.290178px;}
.x3{left:183.344839px;}
.x66{left:186.915047px;}
.x1a{left:194.995193px;}
.x1b{left:203.414108px;}
.x67{left:205.963406px;}
.x3d{left:212.003105px;}
.x4{left:215.914938px;}
.x3e{left:218.891258px;}
.x43{left:221.272339px;}
.x19{left:223.398445px;}
.x1e{left:224.588997px;}
.x44{left:228.245544px;}
.x1f{left:233.007750px;}
.x31{left:235.643967px;}
.x32{left:242.787277px;}
.x68{left:244.060146px;}
.x1c{left:248.655006px;}
.x17{left:254.012558px;}
.x1d{left:257.499161px;}
.x18{left:262.601555px;}
.x13{left:267.108604px;}
.x24{left:271.445549px;}
.x14{left:275.527496px;}
.x46{left:278.503000px;}
.x25{left:280.204650px;}
.x11{left:282.670807px;}
.x2c{left:286.412544px;}
.x12{left:291.174750px;}
.x47{left:293.470110px;}
.x2d{left:295.171646px;}
.x69{left:301.205257px;}
.x5{left:302.314948px;}
.x41{left:306.311691px;}
.x48{left:308.437243px;}
.x6{left:311.839339px;}
.x42{left:313.284897px;}
.x15{left:320.768394px;}
.x49{left:323.319254px;}
.x16{left:329.612549px;}
.x4a{left:338.286364px;}
.x6a{left:339.301998px;}
.x28{left:349.256699px;}
.x26{left:352.658249px;}
.x29{left:358.185745px;}
.x27{left:361.417191px;}
.x4b{left:368.135508px;}
.x33{left:371.026634px;}
.x34{left:378.169922px;}
.x2a{left:382.166840px;}
.x2b{left:391.011017px;}
.x6b{left:396.447109px;}
.x4c{left:398.069750px;}
.x20{left:413.376297px;}
.x6c{left:415.495480px;}
.x3f{left:417.118057px;}
.x21{left:422.305481px;}
.x40{left:424.006210px;}
.x4d{left:427.918871px;}
.x7{left:432.255011px;}
.x6d{left:434.543850px;}
.x4e{left:442.886003px;}
.x4f{left:457.853136px;}
.x8{left:459.209784px;}
.x2e{left:467.120934px;}
.x50{left:472.820223px;}
.x9{left:476.211493px;}
.xc{left:479.535004px;}
.x35{left:484.894341px;}
.x51{left:487.702257px;}
.x36{left:492.037605px;}
.x52{left:502.669390px;}
.x53{left:517.636477px;}
.x54{left:532.603609px;}
.x55{left:547.485598px;}
.x56{left:562.452730px;}
.x57{left:577.419863px;}
.x2f{left:581.073280px;}
.x58{left:592.301897px;}
.x37{left:598.847099px;}
.x38{left:605.990364px;}
.x59{left:607.268984px;}
.x5a{left:646.982729px;}
.xe{left:677.253433px;}
.xf{left:682.780930px;}
.x5b{left:707.955065px;}
.x30{left:712.458229px;}
.x5c{left:727.003389px;}
.x39{left:730.318016px;}
.x6e{left:732.375000px;}
.x10{left:738.404984px;}
.x5d{left:746.051760px;}
.x5e{left:765.100176px;}
.x5f{left:784.148546px;}
.x60{left:803.196917px;}
@media print{
.v1{vertical-align:-4.534505pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.584310pt;}
.ls10e{letter-spacing:-2.023335pt;}
.ls10c{letter-spacing:-1.946557pt;}
.ls10b{letter-spacing:-1.887839pt;}
.ls10d{letter-spacing:-1.761386pt;}
.ls120{letter-spacing:-1.720738pt;}
.ls10a{letter-spacing:-1.652993pt;}
.ls11d{letter-spacing:-1.639443pt;}
.ls124{letter-spacing:-1.634927pt;}
.ls111{letter-spacing:-1.630411pt;}
.ls123{letter-spacing:-1.621378pt;}
.ls113{letter-spacing:-1.612345pt;}
.ls11f{letter-spacing:-1.607829pt;}
.ls116{letter-spacing:-1.603312pt;}
.ls11c{letter-spacing:-1.598796pt;}
.ls115{letter-spacing:-1.594280pt;}
.ls114{letter-spacing:-1.585247pt;}
.ls10f{letter-spacing:-1.567181pt;}
.ls110{letter-spacing:-1.558149pt;}
.ls109{letter-spacing:-1.481370pt;}
.ls108{letter-spacing:-1.449751pt;}
.ls117{letter-spacing:-1.418141pt;}
.lsd9{letter-spacing:-1.377494pt;}
.lsd2{letter-spacing:-1.359428pt;}
.lsc3{letter-spacing:-1.345879pt;}
.ls122{letter-spacing:-1.332330pt;}
.lsd8{letter-spacing:-1.323297pt;}
.lscf{letter-spacing:-1.300715pt;}
.lscd{letter-spacing:-1.273617pt;}
.lsc4{letter-spacing:-1.246519pt;}
.lsca{letter-spacing:-1.178773pt;}
.lsc8{letter-spacing:-1.174257pt;}
.lsd1{letter-spacing:-1.169741pt;}
.lsc7{letter-spacing:-1.165224pt;}
.lsc5{letter-spacing:-1.156192pt;}
.lsce{letter-spacing:-1.151675pt;}
.lscb{letter-spacing:-1.115544pt;}
.ls112{letter-spacing:-1.097479pt;}
.lsc9{letter-spacing:-1.038766pt;}
.ls1b{letter-spacing:-1.014857pt;}
.ls140{letter-spacing:-1.011668pt;}
.ls118{letter-spacing:-1.002635pt;}
.ls11a{letter-spacing:-0.984569pt;}
.lsbf{letter-spacing:-0.924529pt;}
.lsde{letter-spacing:-0.921340pt;}
.ls119{letter-spacing:-0.916824pt;}
.ls143{letter-spacing:-0.898758pt;}
.lsa4{letter-spacing:-0.889726pt;}
.ls145{letter-spacing:-0.844562pt;}
.ls146{letter-spacing:-0.840041pt;}
.lsa3{letter-spacing:-0.826496pt;}
.ls13d{letter-spacing:-0.821980pt;}
.lse1{letter-spacing:-0.817464pt;}
.ls11e{letter-spacing:-0.812947pt;}
.ls107{letter-spacing:-0.790631pt;}
.lsa2{letter-spacing:-0.785849pt;}
.lsa5{letter-spacing:-0.781333pt;}
.lse0{letter-spacing:-0.776816pt;}
.lsd4{letter-spacing:-0.767783pt;}
.ls144{letter-spacing:-0.758751pt;}
.ls59{letter-spacing:-0.749188pt;}
.lsd7{letter-spacing:-0.745202pt;}
.ls121{letter-spacing:-0.740685pt;}
.ls34{letter-spacing:-0.738561pt;}
.lsd6{letter-spacing:-0.736164pt;}
.ls58{letter-spacing:-0.727934pt;}
.lsbe{letter-spacing:-0.722621pt;}
.ls13f{letter-spacing:-0.709071pt;}
.ls82{letter-spacing:-0.701366pt;}
.ls3a{letter-spacing:-0.696054pt;}
.ls11b{letter-spacing:-0.686489pt;}
.ls13{letter-spacing:-0.609710pt;}
.ls14{letter-spacing:-0.578096pt;}
.lsee{letter-spacing:-0.532932pt;}
.lse8{letter-spacing:-0.514867pt;}
.lsef{letter-spacing:-0.510350pt;}
.lse9{letter-spacing:-0.505834pt;}
.lse5{letter-spacing:-0.501317pt;}
.lse2{letter-spacing:-0.492285pt;}
.lsf3{letter-spacing:-0.487768pt;}
.lsec{letter-spacing:-0.483252pt;}
.lsf1{letter-spacing:-0.478204pt;}
.lse4{letter-spacing:-0.474219pt;}
.lse6{letter-spacing:-0.469703pt;}
.lsf2{letter-spacing:-0.460670pt;}
.lsea{letter-spacing:-0.447121pt;}
.lsed{letter-spacing:-0.429055pt;}
.lseb{letter-spacing:-0.424539pt;}
.lsf0{letter-spacing:-0.420023pt;}
.lse3{letter-spacing:-0.415506pt;}
.ls54{letter-spacing:-0.005313pt;}
.ls12{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.063701pt;}
.ls47{letter-spacing:0.079758pt;}
.ls133{letter-spacing:0.203253pt;}
.ls2c{letter-spacing:0.345339pt;}
.ls31{letter-spacing:0.345370pt;}
.lsaa{letter-spacing:0.345502pt;}
.ls81{letter-spacing:0.371937pt;}
.ls8{letter-spacing:0.377250pt;}
.ls4f{letter-spacing:0.393191pt;}
.ls128{letter-spacing:0.397423pt;}
.ls29{letter-spacing:0.398504pt;}
.lsab{letter-spacing:0.403813pt;}
.ls5e{letter-spacing:0.430384pt;}
.ls1a{letter-spacing:0.451638pt;}
.ls13c{letter-spacing:0.465186pt;}
.ls70{letter-spacing:0.467577pt;}
.lsac{letter-spacing:0.467578pt;}
.ls102{letter-spacing:0.478736pt;}
.ls105{letter-spacing:0.501317pt;}
.lsad{letter-spacing:0.520712pt;}
.ls12a{letter-spacing:0.523899pt;}
.ls4c{letter-spacing:0.557906pt;}
.ls101{letter-spacing:0.560030pt;}
.ls48{letter-spacing:0.568532pt;}
.ls129{letter-spacing:0.573611pt;}
.lsb9{letter-spacing:0.573846pt;}
.lsbd{letter-spacing:0.595099pt;}
.ls27{letter-spacing:0.611039pt;}
.lse{letter-spacing:0.616353pt;}
.ls6b{letter-spacing:0.621666pt;}
.lsb{letter-spacing:0.626980pt;}
.ls73{letter-spacing:0.632293pt;}
.ls26{letter-spacing:0.637606pt;}
.lsc{letter-spacing:0.642865pt;}
.ls21{letter-spacing:0.642920pt;}
.lsd{letter-spacing:0.648233pt;}
.ls5a{letter-spacing:0.653547pt;}
.ls28{letter-spacing:0.658860pt;}
.ls12d{letter-spacing:0.663907pt;}
.ls2d{letter-spacing:0.664173pt;}
.lsba{letter-spacing:0.669487pt;}
.ls131{letter-spacing:0.672940pt;}
.ls4b{letter-spacing:0.674800pt;}
.ls22{letter-spacing:0.680113pt;}
.ls134{letter-spacing:0.681972pt;}
.ls71{letter-spacing:0.690740pt;}
.ls135{letter-spacing:0.695521pt;}
.ls32{letter-spacing:0.696054pt;}
.lsfa{letter-spacing:0.713587pt;}
.lsf9{letter-spacing:0.718103pt;}
.ls8f{letter-spacing:0.722621pt;}
.ls49{letter-spacing:0.727972pt;}
.lsa{letter-spacing:0.749188pt;}
.ls132{letter-spacing:0.763267pt;}
.ls60{letter-spacing:0.775754pt;}
.ls141{letter-spacing:0.776816pt;}
.ls147{letter-spacing:0.785849pt;}
.ls77{letter-spacing:0.797008pt;}
.ls142{letter-spacing:0.808431pt;}
.ls106{letter-spacing:0.831013pt;}
.ls38{letter-spacing:0.839515pt;}
.ls69{letter-spacing:0.882022pt;}
.ls83{letter-spacing:0.903276pt;}
.ls88{letter-spacing:0.924529pt;}
.ls2f{letter-spacing:0.929843pt;}
.ls16{letter-spacing:0.945783pt;}
.ls89{letter-spacing:0.956410pt;}
.ls17{letter-spacing:0.977663pt;}
.ls67{letter-spacing:0.982977pt;}
.ls33{letter-spacing:0.993603pt;}
.ls36{letter-spacing:0.998917pt;}
.ls39{letter-spacing:1.014857pt;}
.ls85{letter-spacing:1.030797pt;}
.ls1c{letter-spacing:1.067991pt;}
.ls66{letter-spacing:1.073331pt;}
.ls65{letter-spacing:1.083931pt;}
.lsf6{letter-spacing:1.088446pt;}
.ls136{letter-spacing:1.092962pt;}
.ls63{letter-spacing:1.094558pt;}
.lsf4{letter-spacing:1.105201pt;}
.lsf5{letter-spacing:1.115544pt;}
.ls138{letter-spacing:1.124572pt;}
.ls4d{letter-spacing:1.126438pt;}
.ls18{letter-spacing:1.147691pt;}
.ls5b{letter-spacing:1.195512pt;}
.ls7a{letter-spacing:1.216766pt;}
.ls90{letter-spacing:1.243332pt;}
.ls1d{letter-spacing:1.248646pt;}
.ls64{letter-spacing:1.248660pt;}
.ls74{letter-spacing:1.253959pt;}
.lsdb{letter-spacing:1.255552pt;}
.lsdc{letter-spacing:1.309748pt;}
.ls9{letter-spacing:1.397421pt;}
.ls6c{letter-spacing:1.434614pt;}
.ls126{letter-spacing:1.467821pt;}
.ls127{letter-spacing:1.476854pt;}
.ls15{letter-spacing:1.503688pt;}
.lsda{letter-spacing:1.530255pt;}
.lsf{letter-spacing:1.546195pt;}
.lsbb{letter-spacing:1.551509pt;}
.ls97{letter-spacing:1.572762pt;}
.ls13b{letter-spacing:1.580731pt;}
.ls57{letter-spacing:1.588703pt;}
.ls7e{letter-spacing:1.620583pt;}
.ls7c{letter-spacing:1.631210pt;}
.ls41{letter-spacing:1.641836pt;}
.lsff{letter-spacing:1.666542pt;}
.lsfc{letter-spacing:1.675574pt;}
.ls7d{letter-spacing:1.684344pt;}
.lsb1{letter-spacing:1.689657pt;}
.ls3f{letter-spacing:1.700284pt;}
.lsa7{letter-spacing:1.705592pt;}
.ls42{letter-spacing:1.721537pt;}
.lsa6{letter-spacing:1.726851pt;}
.lsb2{letter-spacing:1.806551pt;}
.lsb0{letter-spacing:1.811865pt;}
.ls2b{letter-spacing:1.822492pt;}
.ls53{letter-spacing:1.843745pt;}
.ls52{letter-spacing:1.854372pt;}
.ls100{letter-spacing:1.928491pt;}
.lsc2{letter-spacing:1.939386pt;}
.lsf8{letter-spacing:1.951073pt;}
.lsf7{letter-spacing:1.978171pt;}
.ls30{letter-spacing:2.157235pt;}
.lsb3{letter-spacing:2.173175pt;}
.ls8d{letter-spacing:2.194429pt;}
.ls23{letter-spacing:2.210369pt;}
.ls24{letter-spacing:2.279443pt;}
.ls56{letter-spacing:2.295383pt;}
.ls3b{letter-spacing:2.306010pt;}
.ls6e{letter-spacing:2.316637pt;}
.ls3d{letter-spacing:2.327263pt;}
.ls25{letter-spacing:2.364457pt;}
.lsa8{letter-spacing:2.422904pt;}
.ls8b{letter-spacing:2.460098pt;}
.ls2a{letter-spacing:2.481352pt;}
.ls96{letter-spacing:2.486665pt;}
.ls137{letter-spacing:2.497554pt;}
.lsa9{letter-spacing:2.507918pt;}
.lsbc{letter-spacing:2.561052pt;}
.ls12b{letter-spacing:2.596915pt;}
.ls7b{letter-spacing:2.603559pt;}
.ls12c{letter-spacing:2.651111pt;}
.ls103{letter-spacing:3.125330pt;}
.ls104{letter-spacing:3.134363pt;}
.lsfd{letter-spacing:3.423411pt;}
.lsfe{letter-spacing:3.491156pt;}
.lsc0{letter-spacing:3.671550pt;}
.lsaf{letter-spacing:3.809698pt;}
.lsae{letter-spacing:3.820325pt;}
.lsfb{letter-spacing:4.109900pt;}
.ls80{letter-spacing:4.612020pt;}
.lsb6{letter-spacing:7.492590pt;}
.lsb5{letter-spacing:7.492672pt;}
.lscc{letter-spacing:7.573958pt;}
.lsb4{letter-spacing:7.795243pt;}
.lsc6{letter-spacing:7.876555pt;}
.lsa0{letter-spacing:8.179152pt;}
.ls9a{letter-spacing:8.400468pt;}
.ls9e{letter-spacing:8.481749pt;}
.ls9c{letter-spacing:8.702999pt;}
.ls9b{letter-spacing:8.703040pt;}
.ls13a{letter-spacing:8.865725pt;}
.ls148{letter-spacing:9.064361pt;}
.ls7{letter-spacing:9.696962pt;}
.ls93{letter-spacing:9.723497pt;}
.ls130{letter-spacing:9.768883pt;}
.ls4e{letter-spacing:9.935954pt;}
.ls2e{letter-spacing:9.957216pt;}
.ls92{letter-spacing:10.015734pt;}
.ls84{letter-spacing:10.052927pt;}
.ls62{letter-spacing:10.238851pt;}
.ls95{letter-spacing:10.446118pt;}
.ls61{letter-spacing:10.541748pt;}
.ls8e{letter-spacing:10.956203pt;}
.ls6a{letter-spacing:11.142171pt;}
.ls72{letter-spacing:11.142212pt;}
.ls6f{letter-spacing:11.147461pt;}
.ls8a{letter-spacing:11.259066pt;}
.ls78{letter-spacing:11.444987pt;}
.ls76{letter-spacing:11.445007pt;}
.ls87{letter-spacing:11.561929pt;}
.ls99{letter-spacing:11.584475pt;}
.lsdd{letter-spacing:11.710918pt;}
.ls68{letter-spacing:11.747884pt;}
.ls75{letter-spacing:11.747966pt;}
.lsdf{letter-spacing:11.760636pt;}
.ls9d{letter-spacing:11.760664pt;}
.ls86{letter-spacing:11.864792pt;}
.lsb8{letter-spacing:12.263296pt;}
.ls1{letter-spacing:12.284531pt;}
.ls8c{letter-spacing:12.773381pt;}
.ls98{letter-spacing:12.794761pt;}
.ls6d{letter-spacing:12.959351pt;}
.lsb7{letter-spacing:13.469435pt;}
.ls0{letter-spacing:14.281364pt;}
.ls139{letter-spacing:14.429790pt;}
.ls91{letter-spacing:14.951870pt;}
.ls94{letter-spacing:15.286613pt;}
.lsd0{letter-spacing:15.315021pt;}
.ls6{letter-spacing:16.046286pt;}
.ls2{letter-spacing:16.046368pt;}
.ls5{letter-spacing:16.046449pt;}
.ls12e{letter-spacing:16.213791pt;}
.ls3{letter-spacing:16.349265pt;}
.ls4{letter-spacing:16.349346pt;}
.ls13e{letter-spacing:16.475729pt;}
.lsd5{letter-spacing:16.525409pt;}
.lsd3{letter-spacing:16.828007pt;}
.ls37{letter-spacing:16.848749pt;}
.ls12f{letter-spacing:17.153098pt;}
.ls55{letter-spacing:17.358834pt;}
.ls5c{letter-spacing:17.991127pt;}
.ls35{letter-spacing:18.007067pt;}
.ls46{letter-spacing:18.161154pt;}
.ls5d{letter-spacing:18.309930pt;}
.ls45{letter-spacing:19.675437pt;}
.ls50{letter-spacing:19.776312pt;}
.ls7f{letter-spacing:19.978252pt;}
.ls43{letter-spacing:19.978334pt;}
.ls44{letter-spacing:19.978415pt;}
.ls125{letter-spacing:20.052655pt;}
.ls79{letter-spacing:20.578757pt;}
.ls5f{letter-spacing:21.790183pt;}
.ls3e{letter-spacing:23.304546pt;}
.ls40{letter-spacing:23.304587pt;}
.ls20{letter-spacing:23.447975pt;}
.ls3c{letter-spacing:24.813539pt;}
.ls19{letter-spacing:26.774155pt;}
.lsc1{letter-spacing:27.836832pt;}
.ls4a{letter-spacing:28.851670pt;}
.ls10{letter-spacing:30.860088pt;}
.ls1e{letter-spacing:30.966417pt;}
.ls1f{letter-spacing:31.008924pt;}
.ls11{letter-spacing:31.736558pt;}
.lsa1{letter-spacing:35.647734pt;}
.ls9f{letter-spacing:49.558163pt;}
.lse7{letter-spacing:221.555203pt;}
.ws1bf{word-spacing:-49.603327pt;}
.ws1c2{word-spacing:-35.692897pt;}
.ws3a{word-spacing:-31.062058pt;}
.ws39{word-spacing:-31.019551pt;}
.ws202{word-spacing:-27.889966pt;}
.ws2f{word-spacing:-26.827289pt;}
.ws3c{word-spacing:-23.501109pt;}
.ws10c{word-spacing:-18.363064pt;}
.ws6f{word-spacing:-18.060201pt;}
.ws104{word-spacing:-18.044261pt;}
.wsc7{word-spacing:-17.411968pt;}
.ws82{word-spacing:-16.901883pt;}
.ws22c{word-spacing:-16.873170pt;}
.ws233{word-spacing:-16.570573pt;}
.ws30a{word-spacing:-16.520893pt;}
.ws227{word-spacing:-15.360185pt;}
.ws193{word-spacing:-15.339747pt;}
.ws182{word-spacing:-15.005004pt;}
.ws1de{word-spacing:-13.522569pt;}
.ws1e0{word-spacing:-12.316430pt;}
.ws24a{word-spacing:-11.805800pt;}
.ws140{word-spacing:-11.615063pt;}
.ws163{word-spacing:-11.312200pt;}
.ws197{word-spacing:-10.499252pt;}
.ws145{word-spacing:-10.106061pt;}
.ws18a{word-spacing:-10.068867pt;}
.ws18b{word-spacing:-9.776631pt;}
.ws12c{word-spacing:-8.853973pt;}
.ws1be{word-spacing:-8.526913pt;}
.ws1ce{word-spacing:-8.224316pt;}
.ws217{word-spacing:-7.921719pt;}
.ws21f{word-spacing:-7.619122pt;}
.ws201{word-spacing:-3.724684pt;}
.ws2d9{word-spacing:-3.179527pt;}
.ws2d8{word-spacing:-3.170494pt;}
.ws1f0{word-spacing:-2.561052pt;}
.ws5c{word-spacing:-2.210369pt;}
.ws125{word-spacing:-1.907506pt;}
.wsce{word-spacing:-1.774671pt;}
.ws14d{word-spacing:-1.700255pt;}
.ws13f{word-spacing:-1.684336pt;}
.ws1a3{word-spacing:-1.673717pt;}
.wscb{word-spacing:-1.641836pt;}
.ws1ec{word-spacing:-1.604643pt;}
.ws14a{word-spacing:-1.386794pt;}
.ws38{word-spacing:-1.301780pt;}
.ws13c{word-spacing:-1.137065pt;}
.ws138{word-spacing:-1.094513pt;}
.ws28{word-spacing:-0.998917pt;}
.ws157{word-spacing:-0.775754pt;}
.ws159{word-spacing:-0.743874pt;}
.ws30{word-spacing:-0.701367pt;}
.ws3d{word-spacing:-0.696054pt;}
.ws172{word-spacing:-0.674800pt;}
.ws149{word-spacing:-0.478171pt;}
.ws63{word-spacing:-0.398504pt;}
.ws1f{word-spacing:-0.063761pt;}
.ws9{word-spacing:-0.053134pt;}
.ws46{word-spacing:-0.045164pt;}
.ws4{word-spacing:-0.035419pt;}
.ws4b{word-spacing:0.000000pt;}
.ws155{word-spacing:0.127506pt;}
.ws266{word-spacing:0.374859pt;}
.ws264{word-spacing:0.383892pt;}
.ws252{word-spacing:0.429055pt;}
.ws26b{word-spacing:0.442605pt;}
.ws12d{word-spacing:0.637605pt;}
.wsdc{word-spacing:0.674800pt;}
.ws332{word-spacing:0.713587pt;}
.ws232{word-spacing:0.722620pt;}
.ws27c{word-spacing:0.726870pt;}
.ws2bc{word-spacing:0.767783pt;}
.ws341{word-spacing:0.794877pt;}
.ws2a3{word-spacing:0.871660pt;}
.ws239{word-spacing:0.993602pt;}
.ws167{word-spacing:1.030782pt;}
.ws229{word-spacing:1.314265pt;}
.ws299{word-spacing:1.372977pt;}
.ws2e2{word-spacing:1.540083pt;}
.ws166{word-spacing:1.641901pt;}
.ws2c2{word-spacing:1.675574pt;}
.ws164{word-spacing:1.944686pt;}
.ws28c{word-spacing:1.978171pt;}
.ws15b{word-spacing:4.659868pt;}
.ws15c{word-spacing:4.665153pt;}
.ws16f{word-spacing:7.077445pt;}
.ws169{word-spacing:7.385600pt;}
.ws16e{word-spacing:7.385643pt;}
.ws16c{word-spacing:7.385698pt;}
.ws170{word-spacing:7.529069pt;}
.ws152{word-spacing:7.677843pt;}
.ws2c5{word-spacing:7.704933pt;}
.ws31c{word-spacing:7.808809pt;}
.ws31d{word-spacing:7.863006pt;}
.ws276{word-spacing:7.881071pt;}
.ws22b{word-spacing:8.007530pt;}
.ws33a{word-spacing:8.111407pt;}
.ws346{word-spacing:8.115922pt;}
.ws1cf{word-spacing:8.133988pt;}
.ws335{word-spacing:8.215283pt;}
.ws231{word-spacing:8.237864pt;}
.ws2ce{word-spacing:8.242381pt;}
.ws244{word-spacing:8.310127pt;}
.ws33b{word-spacing:8.319159pt;}
.ws314{word-spacing:8.337225pt;}
.ws223{word-spacing:8.391422pt;}
.ws22f{word-spacing:8.432069pt;}
.ws1bd{word-spacing:8.436585pt;}
.ws2fe{word-spacing:8.481749pt;}
.ws34f{word-spacing:8.486265pt;}
.ws22d{word-spacing:8.540462pt;}
.ws247{word-spacing:8.612724pt;}
.ws2a2{word-spacing:8.788863pt;}
.ws2a5{word-spacing:8.924354pt;}
.ws24c{word-spacing:8.969517pt;}
.ws2e6{word-spacing:9.019197pt;}
.ws2e5{word-spacing:9.086943pt;}
.wsf3{word-spacing:9.123085pt;}
.wsb3{word-spacing:9.160278pt;}
.ws2eb{word-spacing:9.172754pt;}
.ws1f8{word-spacing:9.181532pt;}
.ws325{word-spacing:9.217918pt;}
.ws183{word-spacing:9.245293pt;}
.ws16a{word-spacing:9.324993pt;}
.ws1cb{word-spacing:9.366958pt;}
.ws1d5{word-spacing:9.375991pt;}
.ws203{word-spacing:9.399380pt;}
.wsda{word-spacing:9.463142pt;}
.ws184{word-spacing:9.484395pt;}
.ws342{word-spacing:9.525031pt;}
.ws196{word-spacing:9.590663pt;}
.ws1b2{word-spacing:9.595985pt;}
.ws303{word-spacing:9.601810pt;}
.ws21b{word-spacing:9.606326pt;}
.ws2c4{word-spacing:9.624392pt;}
.wsf2{word-spacing:9.665050pt;}
.ws3f{word-spacing:9.686304pt;}
.ws1fa{word-spacing:9.702244pt;}
.ws106{word-spacing:9.723497pt;}
.ws1cc{word-spacing:9.723752pt;}
.ws235{word-spacing:9.732770pt;}
.wsb4{word-spacing:9.787258pt;}
.ws2a9{word-spacing:9.818570pt;}
.ws1f9{word-spacing:9.851018pt;}
.ws21d{word-spacing:9.859243pt;}
.ws2aa{word-spacing:9.872792pt;}
.ws2ac{word-spacing:9.877322pt;}
.ws165{word-spacing:9.941346pt;}
.wse{word-spacing:9.946659pt;}
.wsd9{word-spacing:9.967913pt;}
.ws156{word-spacing:9.983853pt;}
.ws107{word-spacing:9.999793pt;}
.ws44{word-spacing:10.005107pt;}
.ws293{word-spacing:10.026348pt;}
.ws33f{word-spacing:10.057963pt;}
.ws94{word-spacing:10.090121pt;}
.ws21a{word-spacing:10.179905pt;}
.ws237{word-spacing:10.193492pt;}
.wsdb{word-spacing:10.265418pt;}
.wseb{word-spacing:10.270867pt;}
.ws2e3{word-spacing:10.274749pt;}
.ws2db{word-spacing:10.283782pt;}
.ws1b3{word-spacing:10.292030pt;}
.ws136{word-spacing:10.297343pt;}
.ws2dc{word-spacing:10.328945pt;}
.ws10{word-spacing:10.329223pt;}
.ws1ae{word-spacing:10.350477pt;}
.ws221{word-spacing:10.378626pt;}
.ws2ad{word-spacing:10.383142pt;}
.ws225{word-spacing:10.387658pt;}
.ws43{word-spacing:10.392984pt;}
.ws2be{word-spacing:10.423789pt;}
.ws2f0{word-spacing:10.432822pt;}
.wsa8{word-spacing:10.435491pt;}
.ws278{word-spacing:10.455404pt;}
.ws31b{word-spacing:10.509600pt;}
.ws218{word-spacing:10.523149pt;}
.ws2de{word-spacing:10.568313pt;}
.ws2b6{word-spacing:10.581862pt;}
.ws17b{word-spacing:10.589580pt;}
.ws143{word-spacing:10.600206pt;}
.ws2b7{word-spacing:10.608961pt;}
.wsc3{word-spacing:10.674593pt;}
.ws29d{word-spacing:10.726386pt;}
.ws160{word-spacing:10.738355pt;}
.ws2a8{word-spacing:10.758001pt;}
.ws52{word-spacing:10.759608pt;}
.wsa6{word-spacing:10.780861pt;}
.ws2b3{word-spacing:10.830263pt;}
.ws1d4{word-spacing:10.852845pt;}
.wsc2{word-spacing:10.871165pt;}
.ws8c{word-spacing:10.871189pt;}
.ws2e7{word-spacing:10.884459pt;}
.ws1d2{word-spacing:10.907041pt;}
.ws219{word-spacing:10.907056pt;}
.ws51{word-spacing:10.913696pt;}
.wsa4{word-spacing:10.934950pt;}
.ws2ea{word-spacing:10.938656pt;}
.ws2fa{word-spacing:10.956722pt;}
.ws2d0{word-spacing:10.961238pt;}
.ws1bb{word-spacing:10.974787pt;}
.ws24b{word-spacing:11.028983pt;}
.ws16{word-spacing:11.041217pt;}
.ws2b2{word-spacing:11.042532pt;}
.ws1f6{word-spacing:11.062471pt;}
.ws2cc{word-spacing:11.083180pt;}
.wsd7{word-spacing:11.104978pt;}
.ws280{word-spacing:11.132860pt;}
.ws49{word-spacing:11.137377pt;}
.ws45{word-spacing:11.155442pt;}
.wsd5{word-spacing:11.168738pt;}
.ws123{word-spacing:11.174052pt;}
.ws249{word-spacing:11.178024pt;}
.ws2f5{word-spacing:11.187056pt;}
.ws1bc{word-spacing:11.191573pt;}
.ws7e{word-spacing:11.195305pt;}
.ws128{word-spacing:11.209638pt;}
.ws1ba{word-spacing:11.209682pt;}
.ws15{word-spacing:11.216559pt;}
.ws11{word-spacing:11.237813pt;}
.ws2d4{word-spacing:11.241253pt;}
.wsea{word-spacing:11.243126pt;}
.ws24e{word-spacing:11.259357pt;}
.ws129{word-spacing:11.263834pt;}
.wsd4{word-spacing:11.280320pt;}
.ws4a{word-spacing:11.340613pt;}
.wsd8{word-spacing:11.344080pt;}
.ws8e{word-spacing:11.365333pt;}
.ws34d{word-spacing:11.417392pt;}
.ws310{word-spacing:11.439973pt;}
.ws127{word-spacing:11.471588pt;}
.ws180{word-spacing:11.476915pt;}
.ws144{word-spacing:11.482246pt;}
.ws7{word-spacing:11.485137pt;}
.ws2ab{word-spacing:11.494151pt;}
.ws105{word-spacing:11.498168pt;}
.ws2f2{word-spacing:11.498686pt;}
.ws23b{word-spacing:11.519422pt;}
.ws2cb{word-spacing:11.539294pt;}
.ws12b{word-spacing:11.539333pt;}
.ws1c7{word-spacing:11.539392pt;}
.ws11c{word-spacing:11.540675pt;}
.ws347{word-spacing:11.566432pt;}
.ws1d1{word-spacing:11.593531pt;}
.wsb1{word-spacing:11.625690pt;}
.ws48{word-spacing:11.643210pt;}
.ws1e1{word-spacing:11.646943pt;}
.ws47{word-spacing:11.647726pt;}
.ws1d3{word-spacing:11.661309pt;}
.ws1d0{word-spacing:11.665762pt;}
.ws12a{word-spacing:11.665791pt;}
.ws289{word-spacing:11.688369pt;}
.wsd6{word-spacing:11.779775pt;}
.ws11b{word-spacing:11.779778pt;}
.ws2c{word-spacing:11.801032pt;}
.ws28a{word-spacing:11.805800pt;}
.ws302{word-spacing:11.814833pt;}
.ws2a1{word-spacing:11.841931pt;}
.ws12{word-spacing:11.843538pt;}
.ws1df{word-spacing:11.843568pt;}
.ws343{word-spacing:11.869028pt;}
.ws2dd{word-spacing:11.882578pt;}
.wsc{word-spacing:11.907300pt;}
.ws309{word-spacing:11.918709pt;}
.ws33c{word-spacing:11.945807pt;}
.ws134{word-spacing:11.965746pt;}
.ws2f7{word-spacing:11.968389pt;}
.ws60{word-spacing:12.008254pt;}
.ws2af{word-spacing:12.018069pt;}
.ws311{word-spacing:12.045168pt;}
.ws20f{word-spacing:12.082641pt;}
.ws122{word-spacing:12.103895pt;}
.ws54{word-spacing:12.125148pt;}
.ws28b{word-spacing:12.144527pt;}
.ws1ea{word-spacing:12.146402pt;}
.ws20e{word-spacing:12.204849pt;}
.ws139{word-spacing:12.231416pt;}
.ws1b8{word-spacing:12.239371pt;}
.ws71{word-spacing:12.247356pt;}
.ws70{word-spacing:12.268609pt;}
.ws13{word-spacing:12.311116pt;}
.ws2f6{word-spacing:12.365829pt;}
.wsa5{word-spacing:12.369564pt;}
.wsb5{word-spacing:12.406758pt;}
.ws25b{word-spacing:12.410910pt;}
.ws1b9{word-spacing:12.415510pt;}
.ws92{word-spacing:12.422698pt;}
.ws25d{word-spacing:12.424634pt;}
.ws263{word-spacing:12.429235pt;}
.wsbe{word-spacing:12.443951pt;}
.ws27b{word-spacing:12.447125pt;}
.ws250{word-spacing:12.456157pt;}
.wsad{word-spacing:12.470518pt;}
.ws31a{word-spacing:12.492289pt;}
.ws261{word-spacing:12.497036pt;}
.ws251{word-spacing:12.501321pt;}
.ws25e{word-spacing:12.505838pt;}
.ws17c{word-spacing:12.507712pt;}
.ws146{word-spacing:12.513025pt;}
.ws8{word-spacing:12.537451pt;}
.ws27a{word-spacing:12.541969pt;}
.ws1dd{word-spacing:12.550219pt;}
.ws25f{word-spacing:12.550938pt;}
.ws2cd{word-spacing:12.551001pt;}
.ws26a{word-spacing:12.587132pt;}
.ws259{word-spacing:12.605197pt;}
.ws265{word-spacing:12.618503pt;}
.ws2d2{word-spacing:12.623263pt;}
.ws253{word-spacing:12.632295pt;}
.ws1b7{word-spacing:12.681975pt;}
.wsb7{word-spacing:12.709620pt;}
.ws305{word-spacing:12.718107pt;}
.ws2b8{word-spacing:12.731656pt;}
.ws320{word-spacing:12.745206pt;}
.ws20c{word-spacing:12.746814pt;}
.ws319{word-spacing:12.749721pt;}
.ws117{word-spacing:12.752128pt;}
.ws7c{word-spacing:12.789321pt;}
.ws277{word-spacing:12.803918pt;}
.ws1c9{word-spacing:12.835520pt;}
.ws29f{word-spacing:12.844565pt;}
.ws98{word-spacing:12.853082pt;}
.ws2a4{word-spacing:12.853598pt;}
.ws1cd{word-spacing:12.862631pt;}
.ws1ac{word-spacing:12.916843pt;}
.ws32f{word-spacing:12.925861pt;}
.ws20d{word-spacing:12.938096pt;}
.ws32e{word-spacing:12.952958pt;}
.ws211{word-spacing:12.993606pt;}
.ws93{word-spacing:13.007170pt;}
.ws0{word-spacing:13.010068pt;}
.ws339{word-spacing:13.029736pt;}
.ws245{word-spacing:13.052319pt;}
.ws315{word-spacing:13.070384pt;}
.ws1ab{word-spacing:13.092184pt;}
.ws1d7{word-spacing:13.113438pt;}
.ws29e{word-spacing:13.142645pt;}
.ws195{word-spacing:13.155945pt;}
.ws2bb{word-spacing:13.156195pt;}
.ws1c5{word-spacing:13.169745pt;}
.ws275{word-spacing:13.174261pt;}
.ws40{word-spacing:13.177199pt;}
.ws2c6{word-spacing:13.223940pt;}
.ws27d{word-spacing:13.228457pt;}
.ws24d{word-spacing:13.269105pt;}
.ws6{word-spacing:13.283466pt;}
.wsa2{word-spacing:13.294093pt;}
.ws5{word-spacing:13.299407pt;}
.ws24f{word-spacing:13.314267pt;}
.ws23f{word-spacing:13.315347pt;}
.ws2c3{word-spacing:13.323301pt;}
.ws1b6{word-spacing:13.331286pt;}
.ws2c0{word-spacing:13.341367pt;}
.ws210{word-spacing:13.352541pt;}
.ws2fd{word-spacing:13.354916pt;}
.ws3{word-spacing:13.363167pt;}
.ws328{word-spacing:13.382013pt;}
.ws18{word-spacing:13.395048pt;}
.ws24{word-spacing:13.416301pt;}
.ws90{word-spacing:13.437554pt;}
.ws7a{word-spacing:13.442807pt;}
.ws294{word-spacing:13.458793pt;}
.wsff{word-spacing:13.458808pt;}
.ws2a0{word-spacing:13.463309pt;}
.ws41{word-spacing:13.480061pt;}
.ws2d3{word-spacing:13.503956pt;}
.ws2a6{word-spacing:13.508472pt;}
.wsa7{word-spacing:13.522569pt;}
.ws215{word-spacing:13.535571pt;}
.ws2cf{word-spacing:13.571701pt;}
.ws2bf{word-spacing:13.603316pt;}
.ws34e{word-spacing:13.603401pt;}
.ws2b9{word-spacing:13.607832pt;}
.ws116{word-spacing:13.612897pt;}
.ws23c{word-spacing:13.634150pt;}
.ws28f{word-spacing:13.634930pt;}
.ws1db{word-spacing:13.655403pt;}
.ws298{word-spacing:13.662029pt;}
.ws327{word-spacing:13.666546pt;}
.wsab{word-spacing:13.676657pt;}
.ws291{word-spacing:13.693644pt;}
.ws324{word-spacing:13.711709pt;}
.ws1e5{word-spacing:13.719165pt;}
.ws238{word-spacing:13.743323pt;}
.ws340{word-spacing:13.752356pt;}
.ws2e8{word-spacing:13.761390pt;}
.ws7b{word-spacing:13.761671pt;}
.ws21c{word-spacing:13.774938pt;}
.ws285{word-spacing:13.815585pt;}
.ws2e4{word-spacing:13.820103pt;}
.ws2b4{word-spacing:13.833651pt;}
.ws2c1{word-spacing:13.847200pt;}
.ws21e{word-spacing:13.878815pt;}
.wsa{word-spacing:13.894506pt;}
.ws313{word-spacing:13.919463pt;}
.ws2d1{word-spacing:13.928495pt;}
.wse9{word-spacing:13.937012pt;}
.ws287{word-spacing:13.960110pt;}
.ws1a5{word-spacing:13.979520pt;}
.ws2c8{word-spacing:13.982692pt;}
.ws344{word-spacing:13.987208pt;}
.ws8d{word-spacing:14.022027pt;}
.ws53{word-spacing:14.085788pt;}
.ws28e{word-spacing:14.154313pt;}
.ws243{word-spacing:14.158830pt;}
.ws1a4{word-spacing:14.197369pt;}
.ws120{word-spacing:14.218623pt;}
.ws17{word-spacing:14.239876pt;}
.ws4d{word-spacing:14.250444pt;}
.ws9d{word-spacing:14.303637pt;}
.ws11e{word-spacing:14.324890pt;}
.ws19d{word-spacing:14.367397pt;}
.ws28d{word-spacing:14.371099pt;}
.ws9c{word-spacing:14.388650pt;}
.wsaa{word-spacing:14.478978pt;}
.ws34a{word-spacing:14.479493pt;}
.ws58{word-spacing:14.521485pt;}
.ws301{word-spacing:14.533688pt;}
.ws240{word-spacing:14.542740pt;}
.ws4e{word-spacing:14.563993pt;}
.ws295{word-spacing:14.565303pt;}
.ws181{word-spacing:14.585246pt;}
.ws11f{word-spacing:14.606499pt;}
.ws1da{word-spacing:14.627752pt;}
.ws329{word-spacing:14.664664pt;}
.ws348{word-spacing:14.669180pt;}
.ws10b{word-spacing:14.691514pt;}
.ws1ad{word-spacing:14.734020pt;}
.ws6c{word-spacing:14.803095pt;}
.wsb8{word-spacing:14.824348pt;}
.ws31f{word-spacing:14.827275pt;}
.ws108{word-spacing:14.845602pt;}
.ws296{word-spacing:14.849836pt;}
.ws114{word-spacing:14.866855pt;}
.ws194{word-spacing:14.909363pt;}
.ws115{word-spacing:14.930616pt;}
.ws2b5{word-spacing:14.962744pt;}
.ws286{word-spacing:14.967260pt;}
.ws173{word-spacing:14.968533pt;}
.ws297{word-spacing:15.030490pt;}
.wsb{word-spacing:15.031570pt;}
.ws103{word-spacing:15.052823pt;}
.ws300{word-spacing:15.066621pt;}
.ws59{word-spacing:15.084704pt;}
.ws307{word-spacing:15.093719pt;}
.ws133{word-spacing:15.105913pt;}
.ws19e{word-spacing:15.105957pt;}
.ws189{word-spacing:15.127212pt;}
.wse8{word-spacing:15.169719pt;}
.ws91{word-spacing:15.184789pt;}
.ws2ff{word-spacing:15.193079pt;}
.ws100{word-spacing:15.202325pt;}
.wsb6{word-spacing:15.233480pt;}
.ws1d6{word-spacing:15.260773pt;}
.ws2f3{word-spacing:15.269858pt;}
.ws1f4{word-spacing:15.272461pt;}
.ws17f{word-spacing:15.291926pt;}
.ws304{word-spacing:15.292440pt;}
.ws102{word-spacing:15.329152pt;}
.ws331{word-spacing:15.418898pt;}
.ws212{word-spacing:15.441480pt;}
.ws5f{word-spacing:15.446015pt;}
.wsa9{word-spacing:15.451327pt;}
.ws17e{word-spacing:15.467269pt;}
.ws174{word-spacing:15.472582pt;}
.ws1e3{word-spacing:15.515089pt;}
.ws2a7{word-spacing:15.522775pt;}
.ws1e2{word-spacing:15.531028pt;}
.ws1ff{word-spacing:15.546970pt;}
.ws17d{word-spacing:15.552283pt;}
.ws30e{word-spacing:15.567939pt;}
.ws216{word-spacing:15.572464pt;}
.ws10a{word-spacing:15.594789pt;}
.ws8b{word-spacing:15.637296pt;}
.ws33{word-spacing:15.732938pt;}
.ws2e1{word-spacing:15.744077pt;}
.ws175{word-spacing:15.748874pt;}
.ws12e{word-spacing:15.748877pt;}
.ws32{word-spacing:15.764863pt;}
.ws12f{word-spacing:15.812639pt;}
.ws1fb{word-spacing:15.833892pt;}
.ws318{word-spacing:15.838921pt;}
.ws1a8{word-spacing:15.876398pt;}
.ws176{word-spacing:15.897653pt;}
.ws17a{word-spacing:15.940160pt;}
.ws2ae{word-spacing:15.947314pt;}
.ws316{word-spacing:15.965379pt;}
.ws2d7{word-spacing:15.992397pt;}
.ws5e{word-spacing:16.003909pt;}
.ws30d{word-spacing:16.024092pt;}
.ws19c{word-spacing:16.035800pt;}
.ws110{word-spacing:16.051741pt;}
.wsf{word-spacing:16.072994pt;}
.ws2f1{word-spacing:16.073772pt;}
.ws1b{word-spacing:16.078308pt;}
.ws349{word-spacing:16.105387pt;}
.ws112{word-spacing:16.115501pt;}
.ws29c{word-spacing:16.168616pt;}
.ws1c{word-spacing:16.200515pt;}
.ws1d{word-spacing:16.221768pt;}
.ws23a{word-spacing:16.243023pt;}
.ws224{word-spacing:16.277009pt;}
.ws292{word-spacing:16.358304pt;}
.ws321{word-spacing:16.367336pt;}
.ws2da{word-spacing:16.371853pt;}
.wsac{word-spacing:16.375858pt;}
.ws273{word-spacing:16.376369pt;}
.ws187{word-spacing:16.418364pt;}
.wsbd{word-spacing:16.439618pt;}
.ws312{word-spacing:16.471214pt;}
.ws33e{word-spacing:16.475729pt;}
.ws306{word-spacing:16.480245pt;}
.ws31e{word-spacing:16.484762pt;}
.ws270{word-spacing:16.493001pt;}
.ws29b{word-spacing:16.502827pt;}
.ws1b1{word-spacing:16.503379pt;}
.ws213{word-spacing:16.552508pt;}
.ws317{word-spacing:16.557024pt;}
.ws30f{word-spacing:16.561541pt;}
.ws2df{word-spacing:16.597671pt;}
.ws308{word-spacing:16.611220pt;}
.ws111{word-spacing:16.620297pt;}
.ws22a{word-spacing:16.633802pt;}
.ws14{word-spacing:16.657467pt;}
.ws34c{word-spacing:16.678966pt;}
.ws222{word-spacing:16.687999pt;}
.ws248{word-spacing:16.705260pt;}
.ws32c{word-spacing:16.719575pt;}
.ws2e0{word-spacing:16.733163pt;}
.ws1dc{word-spacing:16.742481pt;}
.ws1e{word-spacing:16.763697pt;}
.ws80{word-spacing:16.763735pt;}
.ws2f9{word-spacing:16.773810pt;}
.ws20b{word-spacing:16.784988pt;}
.ws322{word-spacing:16.805425pt;}
.ws81{word-spacing:16.806241pt;}
.ws178{word-spacing:16.848749pt;}
.ws326{word-spacing:16.868654pt;}
.ws1b0{word-spacing:16.912492pt;}
.ws11d{word-spacing:16.917822pt;}
.ws338{word-spacing:16.927366pt;}
.ws2b0{word-spacing:16.927373pt;}
.ws2ed{word-spacing:16.931931pt;}
.ws101{word-spacing:16.939076pt;}
.ws30b{word-spacing:16.945432pt;}
.ws220{word-spacing:16.954460pt;}
.ws2b1{word-spacing:16.954466pt;}
.ws1f5{word-spacing:16.960330pt;}
.ws32b{word-spacing:16.963562pt;}
.ws334{word-spacing:17.017694pt;}
.ws86{word-spacing:17.024090pt;}
.ws22e{word-spacing:17.031244pt;}
.ws345{word-spacing:17.035759pt;}
.ws61{word-spacing:17.045343pt;}
.ws29a{word-spacing:17.062858pt;}
.ws242{word-spacing:17.085439pt;}
.ws2ba{word-spacing:17.098989pt;}
.ws330{word-spacing:17.103506pt;}
.ws230{word-spacing:17.130603pt;}
.ws2fc{word-spacing:17.144153pt;}
.ws23e{word-spacing:17.151611pt;}
.ws2ef{word-spacing:17.157702pt;}
.ws30c{word-spacing:17.166734pt;}
.ws2d5{word-spacing:17.180283pt;}
.ws337{word-spacing:17.180284pt;}
.ws2e9{word-spacing:17.189317pt;}
.ws32a{word-spacing:17.202865pt;}
.ws119{word-spacing:17.220686pt;}
.ws2c9{word-spacing:17.234480pt;}
.wsc5{word-spacing:17.241939pt;}
.ws27e{word-spacing:17.257062pt;}
.ws33d{word-spacing:17.257066pt;}
.ws2fb{word-spacing:17.261578pt;}
.wsa0{word-spacing:17.263193pt;}
.ws279{word-spacing:17.279644pt;}
.ws2ca{word-spacing:17.284161pt;}
.ws188{word-spacing:17.284446pt;}
.ws2d6{word-spacing:17.288676pt;}
.ws271{word-spacing:17.293193pt;}
.ws27f{word-spacing:17.311258pt;}
.ws2bd{word-spacing:17.320291pt;}
.ws34b{word-spacing:17.329324pt;}
.ws2ec{word-spacing:17.338356pt;}
.wsb0{word-spacing:17.348207pt;}
.ws2ee{word-spacing:17.374488pt;}
.ws269{word-spacing:17.387498pt;}
.ws85{word-spacing:17.390713pt;}
.ws274{word-spacing:17.406102pt;}
.ws32d{word-spacing:17.410619pt;}
.ws1a9{word-spacing:17.411968pt;}
.ws336{word-spacing:17.424167pt;}
.ws272{word-spacing:17.437717pt;}
.wsd2{word-spacing:17.449161pt;}
.ws333{word-spacing:17.464816pt;}
.ws323{word-spacing:17.505463pt;}
.ws1aa{word-spacing:17.544803pt;}
.ws228{word-spacing:17.559659pt;}
.wsc0{word-spacing:17.566056pt;}
.ws2f4{word-spacing:17.586757pt;}
.ws88{word-spacing:17.587309pt;}
.ws234{word-spacing:17.600302pt;}
.ws50{word-spacing:17.608563pt;}
.ws236{word-spacing:17.618372pt;}
.ws72{word-spacing:17.651071pt;}
.ws288{word-spacing:17.704183pt;}
.ws6a{word-spacing:17.714830pt;}
.wsf1{word-spacing:17.773278pt;}
.ws2f8{word-spacing:17.808059pt;}
.ws226{word-spacing:17.826125pt;}
.ws34{word-spacing:17.847665pt;}
.wsba{word-spacing:17.868918pt;}
.wsd1{word-spacing:17.890173pt;}
.ws14c{word-spacing:17.932680pt;}
.ws42{word-spacing:17.953933pt;}
.ws75{word-spacing:18.017694pt;}
.ws283{word-spacing:18.051772pt;}
.ws6d{word-spacing:18.129276pt;}
.ws2c7{word-spacing:18.133238pt;}
.ws290{word-spacing:18.137755pt;}
.ws282{word-spacing:18.151304pt;}
.ws79{word-spacing:18.193035pt;}
.ws1a{word-spacing:18.203692pt;}
.wsbc{word-spacing:18.214288pt;}
.ws284{word-spacing:18.232598pt;}
.ws1c0{word-spacing:18.255180pt;}
.ws281{word-spacing:18.372607pt;}
.ws74{word-spacing:18.432138pt;}
.ws14b{word-spacing:18.437446pt;}
.wsb2{word-spacing:18.474646pt;}
.ws10f{word-spacing:18.495899pt;}
.ws1f7{word-spacing:18.538446pt;}
.ws214{word-spacing:18.548745pt;}
.ws76{word-spacing:18.559659pt;}
.ws22{word-spacing:18.618106pt;}
.ws118{word-spacing:18.756254pt;}
.ws9a{word-spacing:18.772194pt;}
.ws21{word-spacing:18.777491pt;}
.ws185{word-spacing:18.793449pt;}
.wse6{word-spacing:18.835929pt;}
.ws5a{word-spacing:18.835955pt;}
.ws1fe{word-spacing:18.841269pt;}
.ws137{word-spacing:18.857208pt;}
.ws1c1{word-spacing:18.860375pt;}
.wsc1{word-spacing:18.878462pt;}
.wsd{word-spacing:18.899717pt;}
.ws23{word-spacing:18.920970pt;}
.ws1d8{word-spacing:18.963476pt;}
.wsae{word-spacing:18.984729pt;}
.wse5{word-spacing:19.032542pt;}
.ws7f{word-spacing:19.037863pt;}
.ws56{word-spacing:19.048491pt;}
.ws179{word-spacing:19.059118pt;}
.wse0{word-spacing:19.080308pt;}
.wsdf{word-spacing:19.080355pt;}
.ws57{word-spacing:19.096311pt;}
.wsaf{word-spacing:19.117564pt;}
.wsa1{word-spacing:19.160072pt;}
.wse7{word-spacing:19.165386pt;}
.ws6e{word-spacing:19.165454pt;}
.ws113{word-spacing:19.181325pt;}
.ws20a{word-spacing:19.202579pt;}
.ws109{word-spacing:19.223832pt;}
.ws121{word-spacing:19.229146pt;}
.ws18d{word-spacing:19.245016pt;}
.ws77{word-spacing:19.245091pt;}
.ws1f1{word-spacing:19.255712pt;}
.ws135{word-spacing:19.266340pt;}
.wsec{word-spacing:19.330131pt;}
.ws9e{word-spacing:19.340727pt;}
.wse4{word-spacing:19.346023pt;}
.wsf4{word-spacing:19.346041pt;}
.ws78{word-spacing:19.351354pt;}
.ws87{word-spacing:19.361980pt;}
.ws209{word-spacing:19.399175pt;}
.wsed{word-spacing:19.409725pt;}
.wsee{word-spacing:19.452308pt;}
.ws99{word-spacing:19.462934pt;}
.ws4f{word-spacing:19.478875pt;}
.ws1fc{word-spacing:19.569202pt;}
.ws1fd{word-spacing:19.585143pt;}
.ws97{word-spacing:19.627650pt;}
.ws1e7{word-spacing:19.638277pt;}
.ws18c{word-spacing:19.643591pt;}
.ws1d9{word-spacing:19.648842pt;}
.ws27{word-spacing:19.659530pt;}
.ws1f2{word-spacing:19.659531pt;}
.ws18f{word-spacing:19.680783pt;}
.wscf{word-spacing:19.702037pt;}
.ws1ef{word-spacing:19.723290pt;}
.ws192{word-spacing:19.723291pt;}
.ws13d{word-spacing:19.739254pt;}
.wsd0{word-spacing:19.744545pt;}
.ws1e6{word-spacing:19.765798pt;}
.ws83{word-spacing:19.776425pt;}
.ws204{word-spacing:19.776432pt;}
.ws23d{word-spacing:19.787051pt;}
.ws177{word-spacing:19.808304pt;}
.wsc4{word-spacing:19.813618pt;}
.ws1a1{word-spacing:19.813680pt;}
.ws1eb{word-spacing:19.818912pt;}
.ws18e{word-spacing:19.829559pt;}
.ws1ee{word-spacing:19.834963pt;}
.ws191{word-spacing:19.850898pt;}
.ws124{word-spacing:19.861440pt;}
.ws26{word-spacing:19.872065pt;}
.ws5d{word-spacing:19.877379pt;}
.ws126{word-spacing:19.882692pt;}
.wsf0{word-spacing:19.888005pt;}
.wsca{word-spacing:19.888006pt;}
.ws2a{word-spacing:19.893319pt;}
.wsef{word-spacing:19.898598pt;}
.ws186{word-spacing:19.903945pt;}
.ws19a{word-spacing:19.909260pt;}
.ws147{word-spacing:19.909278pt;}
.ws13a{word-spacing:19.914604pt;}
.ws208{word-spacing:19.914628pt;}
.ws141{word-spacing:19.919838pt;}
.ws162{word-spacing:19.919886pt;}
.ws200{word-spacing:19.925199pt;}
.wscc{word-spacing:19.930513pt;}
.ws199{word-spacing:19.935826pt;}
.wsd3{word-spacing:19.941139pt;}
.ws8f{word-spacing:19.946454pt;}
.ws205{word-spacing:19.951812pt;}
.ws14e{word-spacing:19.962394pt;}
.ws55{word-spacing:19.973049pt;}
.ws13b{word-spacing:19.978302pt;}
.ws190{word-spacing:20.004900pt;}
.ws148{word-spacing:20.004920pt;}
.ws10e{word-spacing:20.010214pt;}
.ws131{word-spacing:20.015528pt;}
.ws19b{word-spacing:20.026154pt;}
.ws9f{word-spacing:20.031468pt;}
.ws1a6{word-spacing:20.036781pt;}
.ws198{word-spacing:20.042093pt;}
.ws8a{word-spacing:20.047407pt;}
.wscd{word-spacing:20.047408pt;}
.ws73{word-spacing:20.052720pt;}
.ws1a7{word-spacing:20.063347pt;}
.ws1a0{word-spacing:20.068661pt;}
.wsc6{word-spacing:20.068662pt;}
.ws19f{word-spacing:20.089914pt;}
.ws20{word-spacing:20.095227pt;}
.ws1af{word-spacing:20.105854pt;}
.ws1b5{word-spacing:20.111168pt;}
.ws1a2{word-spacing:20.127125pt;}
.ws2b{word-spacing:20.132421pt;}
.ws84{word-spacing:20.143048pt;}
.ws89{word-spacing:20.159061pt;}
.wsc9{word-spacing:20.169615pt;}
.wsdd{word-spacing:20.169626pt;}
.wse2{word-spacing:20.174858pt;}
.wsde{word-spacing:20.174929pt;}
.ws1b4{word-spacing:20.174939pt;}
.ws9b{word-spacing:20.190869pt;}
.ws1f3{word-spacing:20.222608pt;}
.ws5b{word-spacing:20.222749pt;}
.ws1ed{word-spacing:20.222755pt;}
.ws1e9{word-spacing:20.228063pt;}
.ws1e4{word-spacing:20.233375pt;}
.ws29{word-spacing:20.233377pt;}
.ws25{word-spacing:20.244003pt;}
.wsa3{word-spacing:20.265256pt;}
.ws132{word-spacing:20.270570pt;}
.ws95{word-spacing:20.275990pt;}
.wse1{word-spacing:20.307764pt;}
.ws6b{word-spacing:20.350270pt;}
.ws4c{word-spacing:20.360897pt;}
.ws7d{word-spacing:20.366211pt;}
.ws10d{word-spacing:20.366216pt;}
.ws207{word-spacing:20.382122pt;}
.wse3{word-spacing:20.392840pt;}
.ws13e{word-spacing:20.398091pt;}
.ws11a{word-spacing:20.435285pt;}
.ws130{word-spacing:20.456570pt;}
.ws158{word-spacing:20.461848pt;}
.ws142{word-spacing:20.530924pt;}
.ws206{word-spacing:20.552175pt;}
.wsbf{word-spacing:20.568120pt;}
.wsc8{word-spacing:20.578745pt;}
.ws96{word-spacing:20.716894pt;}
.ws1e8{word-spacing:20.738147pt;}
.ws241{word-spacing:21.434717pt;}
.ws3e{word-spacing:21.588290pt;}
.ws3b{word-spacing:21.667990pt;}
.ws2{word-spacing:21.697359pt;}
.ws1{word-spacing:21.808018pt;}
.ws246{word-spacing:21.823086pt;}
.wsf9{word-spacing:21.917720pt;}
.wsfa{word-spacing:22.337478pt;}
.ws15d{word-spacing:22.454371pt;}
.wsbb{word-spacing:23.171679pt;}
.ws15f{word-spacing:23.182305pt;}
.wsf8{word-spacing:23.246066pt;}
.ws67{word-spacing:23.256694pt;}
.ws69{word-spacing:23.267320pt;}
.ws66{word-spacing:23.798658pt;}
.ws65{word-spacing:24.319370pt;}
.wsfc{word-spacing:24.574413pt;}
.ws35{word-spacing:25.057932pt;}
.ws2e{word-spacing:25.318286pt;}
.ws15a{word-spacing:25.371421pt;}
.ws64{word-spacing:25.382048pt;}
.ws62{word-spacing:25.403301pt;}
.ws14f{word-spacing:25.631777pt;}
.ws31{word-spacing:25.817745pt;}
.wsfb{word-spacing:26.896363pt;}
.ws19{word-spacing:26.922944pt;}
.wsf7{word-spacing:27.124838pt;}
.wsf5{word-spacing:27.486105pt;}
.ws15e{word-spacing:27.533968pt;}
.wsf6{word-spacing:27.847458pt;}
.ws161{word-spacing:27.905905pt;}
.ws171{word-spacing:28.245963pt;}
.ws151{word-spacing:28.309748pt;}
.ws36{word-spacing:28.341604pt;}
.wsb9{word-spacing:28.362857pt;}
.ws16d{word-spacing:28.453185pt;}
.wsfd{word-spacing:28.458497pt;}
.ws150{word-spacing:28.564765pt;}
.wsfe{word-spacing:28.575393pt;}
.ws68{word-spacing:28.601960pt;}
.ws153{word-spacing:28.617870pt;}
.ws16b{word-spacing:28.697601pt;}
.ws37{word-spacing:28.708366pt;}
.ws2d{word-spacing:28.724168pt;}
.ws168{word-spacing:28.750735pt;}
.ws154{word-spacing:28.857004pt;}
.ws25a{word-spacing:46.803226pt;}
.ws26c{word-spacing:47.019962pt;}
.ws26d{word-spacing:47.028994pt;}
.ws26f{word-spacing:47.033509pt;}
.ws262{word-spacing:47.042334pt;}
.ws25c{word-spacing:47.078668pt;}
.ws260{word-spacing:47.345069pt;}
.ws26e{word-spacing:54.286803pt;}
.ws255{word-spacing:67.208147pt;}
.ws257{word-spacing:67.293960pt;}
.ws256{word-spacing:67.298475pt;}
.ws258{word-spacing:67.302996pt;}
.ws254{word-spacing:67.375253pt;}
.ws267{word-spacing:69.091476pt;}
.ws268{word-spacing:69.109545pt;}
.ws1c4{word-spacing:81.050834pt;}
.ws1c3{word-spacing:94.450917pt;}
.ws1c6{word-spacing:107.692919pt;}
.ws1ca{word-spacing:171.188605pt;}
.ws1c8{word-spacing:217.752413pt;}
._24{margin-left:-2631.149275pt;}
._31{margin-left:-50.515634pt;}
._30{margin-left:-49.311339pt;}
._33{margin-left:-36.605205pt;}
._32{margin-left:-35.358888pt;}
._10{margin-left:-30.366203pt;}
._11{margin-left:-29.287188pt;}
._e{margin-left:-26.619981pt;}
._f{margin-left:-25.615921pt;}
._37{margin-left:-24.292734pt;}
._12{margin-left:-23.240840pt;}
._13{margin-left:-21.901607pt;}
._17{margin-left:-18.905023pt;}
._16{margin-left:-18.000437pt;}
._19{margin-left:-16.737817pt;}
._29{margin-left:-15.710677pt;}
._2a{margin-left:-14.529819pt;}
._36{margin-left:-13.525885pt;}
._26{margin-left:-11.721331pt;}
._25{margin-left:-10.052927pt;}
._2f{margin-left:-8.275260pt;}
._39{margin-left:-6.661100pt;}
._0{margin-left:-1.547854pt;}
._3{width:0.894242pt;}
._27{width:2.056307pt;}
._1{width:3.222040pt;}
._38{width:4.405881pt;}
._5{width:5.771924pt;}
._7d{width:7.944301pt;}
._a{width:8.963346pt;}
._18{width:9.883883pt;}
._8{width:10.794097pt;}
._4{width:12.343248pt;}
._2b{width:13.264854pt;}
._6{width:14.179097pt;}
._b{width:15.193980pt;}
._7{width:16.307428pt;}
._c{width:18.036371pt;}
._14{width:18.946862pt;}
._9{width:19.899953pt;}
._d{width:21.459176pt;}
._2{width:23.022550pt;}
._15{width:27.016977pt;}
._35{width:28.713821pt;}
._28{width:29.925000pt;}
._2d{width:34.798122pt;}
._60{width:46.624461pt;}
._5e{width:47.878074pt;}
._6c{width:49.258146pt;}
._61{width:53.505477pt;}
._5f{width:55.058997pt;}
._1b{width:56.123696pt;}
._3a{width:57.037286pt;}
._3e{width:66.751997pt;}
._3b{width:68.441120pt;}
._6b{width:71.345151pt;}
._72{width:75.576996pt;}
._4c{width:77.410636pt;}
._3f{width:88.900291pt;}
._73{width:91.199121pt;}
._62{width:93.356014pt;}
._6d{width:95.814875pt;}
._42{width:98.271760pt;}
._48{width:99.482150pt;}
._53{width:107.652271pt;}
._4f{width:108.844594pt;}
._43{width:114.901055pt;}
._75{width:115.876591pt;}
._63{width:119.430968pt;}
._54{width:121.553664pt;}
._22{width:125.386275pt;}
._79{width:126.815171pt;}
._51{width:128.197275pt;}
._47{width:129.719268pt;}
._5b{width:130.943211pt;}
._50{width:136.972568pt;}
._41{width:146.651158pt;}
._49{width:147.558943pt;}
._65{width:149.663577pt;}
._4e{width:152.495337pt;}
._57{width:159.048603pt;}
._76{width:159.977696pt;}
._45{width:161.162256pt;}
._4a{width:162.675241pt;}
._78{width:167.810367pt;}
._5a{width:170.140815pt;}
._77{width:172.028664pt;}
._40{width:174.584919pt;}
._2e{width:178.564575pt;}
._3d{width:179.855534pt;}
._4d{width:181.779500pt;}
._70{width:182.684728pt;}
._59{width:184.076558pt;}
._55{width:190.979359pt;}
._4b{width:196.651917pt;}
._7c{width:197.717759pt;}
._64{width:204.695573pt;}
._20{width:210.028166pt;}
._6a{width:213.150241pt;}
._69{width:214.226901pt;}
._21{width:217.884052pt;}
._6e{width:218.913129pt;}
._34{width:222.508893pt;}
._44{width:223.754668pt;}
._1d{width:232.068054pt;}
._7a{width:234.753308pt;}
._66{width:236.068105pt;}
._7b{width:236.996771pt;}
._1e{width:241.050601pt;}
._67{width:242.172442pt;}
._52{width:245.024061pt;}
._58{width:246.424145pt;}
._6f{width:257.955380pt;}
._74{width:264.011061pt;}
._68{width:288.749799pt;}
._3c{width:297.028316pt;}
._56{width:309.638037pt;}
._71{width:310.825844pt;}
._46{width:331.695987pt;}
._2c{width:333.242593pt;}
._1c{width:429.412995pt;}
._1f{width:459.464933pt;}
._23{width:490.650499pt;}
._5c{width:653.148849pt;}
._5d{width:841.287381pt;}
._7e{width:1882.753921pt;}
._1a{width:1904.211255pt;}
.fs7{font-size:30.106133pt;}
.fs3{font-size:35.418666pt;}
.fs4{font-size:42.507733pt;}
.fs5{font-size:45.163732pt;}
.fs8{font-size:45.173333pt;}
.fs0{font-size:50.583466pt;}
.fs2{font-size:53.133865pt;}
.fs9{font-size:58.447998pt;}
.fs6{font-size:63.760533pt;}
.fs1{font-size:85.121067pt;}
.y0{bottom:0.000000pt;}
.y236{bottom:102.640198pt;}
.y1f7{bottom:102.650995pt;}
.y1f8{bottom:102.651998pt;}
.y1f5{bottom:102.652083pt;}
.yd2{bottom:102.652710pt;}
.y277{bottom:102.654643pt;}
.y149{bottom:102.655416pt;}
.yfd{bottom:102.660095pt;}
.ya6{bottom:102.667867pt;}
.y75{bottom:102.672241pt;}
.y32{bottom:109.764304pt;}
.y3d{bottom:110.588726pt;}
.y235{bottom:115.944305pt;}
.y276{bottom:115.958750pt;}
.y2f6{bottom:119.280904pt;}
.y2b6{bottom:119.280955pt;}
.yd1{bottom:119.282277pt;}
.y148{bottom:119.284983pt;}
.yfc{bottom:119.289663pt;}
.ya5{bottom:119.297424pt;}
.y74{bottom:119.301799pt;}
.y3c{bottom:123.817180pt;}
.y180{bottom:125.102397pt;}
.y17e{bottom:125.102651pt;}
.y31{bottom:126.318157pt;}
.y3b{bottom:128.881847pt;}
.y234{bottom:129.248413pt;}
.y275{bottom:129.942556pt;}
.y17f{bottom:130.091329pt;}
.y2f5{bottom:132.585012pt;}
.y2b5{bottom:132.585063pt;}
.yd0{bottom:135.836131pt;}
.y147{bottom:135.838837pt;}
.yfb{bottom:135.843516pt;}
.ya4{bottom:135.851298pt;}
.y73{bottom:135.855662pt;}
.y1f6{bottom:136.516982pt;}
.y17d{bottom:142.034536pt;}
.y17b{bottom:142.035044pt;}
.y233{bottom:142.628174pt;}
.y30{bottom:142.947724pt;}
.y274{bottom:143.246663pt;}
.y3a{bottom:143.772940pt;}
.y2f4{bottom:145.889119pt;}
.y2b4{bottom:145.889170pt;}
.y17c{bottom:147.023600pt;}
.y1e1{bottom:152.464956pt;}
.y146{bottom:152.468414pt;}
.yfa{bottom:152.473094pt;}
.ya3{bottom:152.480855pt;}
.ycf{bottom:152.481333pt;}
.y1cd{bottom:152.481761pt;}
.y72{bottom:152.485229pt;}
.y232{bottom:156.159231pt;}
.y39{bottom:157.077047pt;}
.y273{bottom:157.154836pt;}
.y17a{bottom:158.966929pt;}
.y178{bottom:158.967183pt;}
.y2f{bottom:159.577302pt;}
.y2b3{bottom:159.797343pt;}
.y2f3{bottom:159.872935pt;}
.y38{bottom:162.066112pt;}
.y179{bottom:163.955872pt;}
.y1e0{bottom:165.769063pt;}
.y145{bottom:169.097972pt;}
.yf9{bottom:169.102671pt;}
.ya2{bottom:169.110423pt;}
.yce{bottom:169.110911pt;}
.y1cc{bottom:169.111338pt;}
.y71{bottom:169.114797pt;}
.y231{bottom:169.463338pt;}
.y272{bottom:170.458944pt;}
.y2b2{bottom:173.101461pt;}
.y2f2{bottom:173.177043pt;}
.y177{bottom:175.899068pt;}
.y175{bottom:175.899577pt;}
.y2e{bottom:176.131145pt;}
.y37{bottom:176.957215pt;}
.y1df{bottom:179.073181pt;}
.y176{bottom:180.888143pt;}
.y230{bottom:182.843099pt;}
.y271{bottom:184.442769pt;}
.y144{bottom:185.651835pt;}
.yf8{bottom:185.656514pt;}
.ya1{bottom:185.664286pt;}
.ycd{bottom:185.664754pt;}
.y1cb{bottom:185.665181pt;}
.y70{bottom:185.668660pt;}
.y2b1{bottom:186.405558pt;}
.y2f1{bottom:186.481140pt;}
.y36{bottom:190.261313pt;}
.y1de{bottom:192.301636pt;}
.y2d{bottom:192.760723pt;}
.y172{bottom:192.830973pt;}
.y174{bottom:192.831462pt;}
.y35{bottom:195.250245pt;}
.y22f{bottom:196.147196pt;}
.y270{bottom:197.746887pt;}
.y173{bottom:197.820394pt;}
.y2b0{bottom:199.785319pt;}
.y2f0{bottom:199.860901pt;}
.y143{bottom:202.281392pt;}
.yf7{bottom:202.286092pt;}
.ya0{bottom:202.293844pt;}
.ycc{bottom:202.294332pt;}
.y1ca{bottom:202.294759pt;}
.y6f{bottom:202.298218pt;}
.y1dd{bottom:205.605733pt;}
.y2c{bottom:209.390300pt;}
.y22e{bottom:209.678263pt;}
.y26f{bottom:211.050985pt;}
.y2ef{bottom:213.165019pt;}
.y2af{bottom:213.617839pt;}
.y1dc{bottom:218.909831pt;}
.y142{bottom:218.910970pt;}
.yf6{bottom:218.915670pt;}
.y9f{bottom:218.923421pt;}
.ycb{bottom:218.923910pt;}
.y1c9{bottom:218.924316pt;}
.y6e{bottom:218.927795pt;}
.y171{bottom:220.118896pt;}
.y22d{bottom:223.058004pt;}
.y26e{bottom:224.959147pt;}
.y2b{bottom:225.944154pt;}
.y2ee{bottom:226.469116pt;}
.y2ae{bottom:226.997599pt;}
.y34{bottom:228.132000pt;}
.y1db{bottom:232.213949pt;}
.y170{bottom:233.422994pt;}
.y141{bottom:235.464823pt;}
.yf5{bottom:235.469523pt;}
.y9e{bottom:235.477275pt;}
.yca{bottom:235.477763pt;}
.y1c8{bottom:235.478190pt;}
.y6d{bottom:235.481649pt;}
.y22c{bottom:236.362101pt;}
.y26d{bottom:238.338908pt;}
.y2ed{bottom:239.773234pt;}
.y2ad{bottom:240.301697pt;}
.y33{bottom:241.436117pt;}
.y2a{bottom:242.573731pt;}
.y1d8{bottom:245.442301pt;}
.y1da{bottom:245.442403pt;}
.y22b{bottom:249.666219pt;}
.y1d9{bottom:250.507060pt;}
.y140{bottom:252.094400pt;}
.yf4{bottom:252.099080pt;}
.y9d{bottom:252.106852pt;}
.yc9{bottom:252.107340pt;}
.y1c7{bottom:252.107747pt;}
.y6c{bottom:252.111226pt;}
.y26c{bottom:252.247070pt;}
.y2ac{bottom:253.605815pt;}
.y2ec{bottom:253.757039pt;}
.y16f{bottom:258.519368pt;}
.y1d5{bottom:258.746155pt;}
.y1d7{bottom:258.746399pt;}
.y29{bottom:259.203289pt;}
.y22a{bottom:263.272929pt;}
.y1d6{bottom:263.735331pt;}
.y26b{bottom:265.551188pt;}
.y2ab{bottom:266.909912pt;}
.y2eb{bottom:267.061137pt;}
.yf3{bottom:268.728658pt;}
.y9c{bottom:268.736430pt;}
.yc8{bottom:268.736898pt;}
.y1c6{bottom:268.737325pt;}
.y6b{bottom:268.740804pt;}
.y16e{bottom:271.823466pt;}
.y1d2{bottom:272.049764pt;}
.y1d4{bottom:272.050273pt;}
.y28{bottom:275.757162pt;}
.y229{bottom:276.577026pt;}
.y1d3{bottom:277.039327pt;}
.y26a{bottom:279.534993pt;}
.y2aa{bottom:280.289673pt;}
.y2ea{bottom:280.365255pt;}
.y1d1{bottom:285.278219pt;}
.y13f{bottom:285.278666pt;}
.yf2{bottom:285.282511pt;}
.y9b{bottom:285.290283pt;}
.yc7{bottom:285.290751pt;}
.y1c5{bottom:285.291178pt;}
.y6a{bottom:285.294657pt;}
.y228{bottom:290.108073pt;}
.y21{bottom:292.385397pt;}
.y27{bottom:292.386720pt;}
.y269{bottom:292.839111pt;}
.y2a9{bottom:294.122192pt;}
.y2e9{bottom:294.349080pt;}
.y1d0{bottom:298.582316pt;}
.yf1{bottom:301.912089pt;}
.y9a{bottom:301.919861pt;}
.yc6{bottom:301.920329pt;}
.y1c4{bottom:301.920756pt;}
.y69{bottom:301.924235pt;}
.y227{bottom:303.412191pt;}
.y268{bottom:306.143209pt;}
.y2a8{bottom:307.501953pt;}
.y2e8{bottom:307.653178pt;}
.y20{bottom:309.014955pt;}
.y26{bottom:309.016297pt;}
.y1cf{bottom:311.886434pt;}
.y226{bottom:316.791951pt;}
.yf0{bottom:318.465942pt;}
.yc5{bottom:318.474182pt;}
.y13e{bottom:318.538533pt;}
.y16b{bottom:318.541646pt;}
.y99{bottom:318.549418pt;}
.y1c3{bottom:318.550313pt;}
.y68{bottom:318.553792pt;}
.y267{bottom:319.447327pt;}
.y16d{bottom:319.823914pt;}
.y2a7{bottom:320.806051pt;}
.y2e7{bottom:321.032939pt;}
.y1ce{bottom:325.190531pt;}
.y1f{bottom:325.568828pt;}
.y25{bottom:325.570151pt;}
.y225{bottom:330.322998pt;}
.y266{bottom:333.431152pt;}
.y2e6{bottom:334.337036pt;}
.y2a6{bottom:334.714233pt;}
.yef{bottom:335.095500pt;}
.y98{bottom:335.103271pt;}
.yc4{bottom:335.103739pt;}
.y1c2{bottom:335.104167pt;}
.y67{bottom:335.107646pt;}
.y16c{bottom:336.453471pt;}
.y1e{bottom:342.198386pt;}
.y24{bottom:342.199728pt;}
.y224{bottom:343.929688pt;}
.y265{bottom:346.735270pt;}
.y2e5{bottom:347.641154pt;}
.y2a5{bottom:348.018351pt;}
.yee{bottom:351.725098pt;}
.y97{bottom:351.732829pt;}
.yc3{bottom:351.733317pt;}
.y1c1{bottom:351.733765pt;}
.y66{bottom:351.737223pt;}
.y223{bottom:357.233805pt;}
.y23{bottom:358.829286pt;}
.y264{bottom:360.039347pt;}
.y2a4{bottom:361.322428pt;}
.y2e4{bottom:361.624959pt;}
.yed{bottom:368.278931pt;}
.yc2{bottom:368.287191pt;}
.y13d{bottom:368.353516pt;}
.y16a{bottom:368.354655pt;}
.y96{bottom:368.362427pt;}
.y1c0{bottom:368.363322pt;}
.y65{bottom:368.366781pt;}
.y222{bottom:370.537923pt;}
.y263{bottom:373.343465pt;}
.y2e3{bottom:374.929077pt;}
.y2a3{bottom:375.230632pt;}
.y1d{bottom:375.382508pt;}
.y22{bottom:375.383159pt;}
.y221{bottom:384.144613pt;}
.y13c{bottom:384.907389pt;}
.yec{bottom:384.908488pt;}
.y95{bottom:384.916260pt;}
.yc1{bottom:384.916748pt;}
.y1bf{bottom:384.917155pt;}
.y64{bottom:384.920654pt;}
.y262{bottom:386.723226pt;}
.y2a2{bottom:388.534709pt;}
.y2e2{bottom:388.912882pt;}
.y220{bottom:397.448730pt;}
.y261{bottom:400.631388pt;}
.y13b{bottom:401.536947pt;}
.y139{bottom:401.537231pt;}
.yeb{bottom:401.538086pt;}
.y94{bottom:401.545858pt;}
.yc0{bottom:401.546305pt;}
.y1be{bottom:401.546753pt;}
.y63{bottom:401.550212pt;}
.y2a1{bottom:401.838826pt;}
.y2e1{bottom:402.217000pt;}
.y13a{bottom:407.432943pt;}
.y21f{bottom:410.752808pt;}
.y260{bottom:413.935506pt;}
.y2a0{bottom:415.746989pt;}
.y2e0{bottom:416.125163pt;}
.yea{bottom:418.091919pt;}
.ybf{bottom:418.100179pt;}
.y138{bottom:418.166789pt;}
.y136{bottom:418.167318pt;}
.y169{bottom:418.167643pt;}
.y93{bottom:418.175415pt;}
.y1bd{bottom:418.176310pt;}
.y62{bottom:418.179769pt;}
.y21e{bottom:424.056925pt;}
.y137{bottom:424.062948pt;}
.y1c{bottom:427.849590pt;}
.y25f{bottom:427.919312pt;}
.y29f{bottom:429.051107pt;}
.y2df{bottom:429.504924pt;}
.y135{bottom:434.721191pt;}
.ye9{bottom:434.721517pt;}
.y92{bottom:434.729248pt;}
.ybe{bottom:434.729736pt;}
.y1bc{bottom:434.730184pt;}
.y61{bottom:434.733643pt;}
.y21d{bottom:437.436686pt;}
.y134{bottom:440.617188pt;}
.y25e{bottom:441.223429pt;}
.y2de{bottom:442.809041pt;}
.y29e{bottom:442.959269pt;}
.y1b{bottom:444.479188pt;}
.y21c{bottom:450.967733pt;}
.ye8{bottom:451.351074pt;}
.y133{bottom:451.354614pt;}
.ye6{bottom:451.357381pt;}
.y91{bottom:451.358846pt;}
.ybd{bottom:451.359333pt;}
.y1bb{bottom:451.359741pt;}
.y60{bottom:451.363200pt;}
.y25d{bottom:455.131592pt;}
.y29d{bottom:456.263387pt;}
.y2dd{bottom:456.792847pt;}
.ye7{bottom:457.247070pt;}
.y21b{bottom:464.271851pt;}
.ye5{bottom:467.911255pt;}
.ybc{bottom:467.913167pt;}
.y132{bottom:467.984212pt;}
.y90{bottom:467.988403pt;}
.y1ba{bottom:467.989299pt;}
.y5f{bottom:467.992798pt;}
.y168{bottom:467.993245pt;}
.y25c{bottom:468.435710pt;}
.y1f4{bottom:469.264608pt;}
.y29c{bottom:469.643148pt;}
.y2dc{bottom:470.096965pt;}
.y21a{bottom:477.651611pt;}
.y1a{bottom:477.662619pt;}
.y25b{bottom:481.815470pt;}
.y1f3{bottom:482.568726pt;}
.y2db{bottom:483.401082pt;}
.y29b{bottom:483.475667pt;}
.y131{bottom:484.538045pt;}
.ye4{bottom:484.540812pt;}
.y8f{bottom:484.542277pt;}
.ybb{bottom:484.542765pt;}
.y1b9{bottom:484.543172pt;}
.y5e{bottom:484.546631pt;}
.y167{bottom:484.547078pt;}
.y219{bottom:491.182658pt;}
.y19{bottom:494.292176pt;}
.y25a{bottom:495.723633pt;}
.y1f2{bottom:495.872803pt;}
.y29a{bottom:496.855428pt;}
.y2da{bottom:497.384888pt;}
.y130{bottom:501.167643pt;}
.ye3{bottom:501.170410pt;}
.y8e{bottom:501.171834pt;}
.yba{bottom:501.172323pt;}
.y1b8{bottom:501.172729pt;}
.y5d{bottom:501.176229pt;}
.y166{bottom:501.176636pt;}
.y218{bottom:504.486776pt;}
.y259{bottom:509.027751pt;}
.y1f1{bottom:509.101278pt;}
.y299{bottom:510.687948pt;}
.y2d9{bottom:510.689006pt;}
.y18{bottom:510.921734pt;}
.ye2{bottom:517.724243pt;}
.yb9{bottom:517.726156pt;}
.y217{bottom:517.790894pt;}
.y12f{bottom:517.797200pt;}
.y8d{bottom:517.801432pt;}
.y1b7{bottom:517.802287pt;}
.y5c{bottom:517.805786pt;}
.y165{bottom:517.806234pt;}
.y1f0{bottom:522.405355pt;}
.y258{bottom:522.407471pt;}
.y298{bottom:524.067668pt;}
.y2d8{bottom:524.672811pt;}
.y17{bottom:527.475607pt;}
.y216{bottom:531.170614pt;}
.y12e{bottom:534.351034pt;}
.ye1{bottom:534.353841pt;}
.y8c{bottom:534.355265pt;}
.yb8{bottom:534.355754pt;}
.y1b6{bottom:534.356160pt;}
.y5b{bottom:534.359660pt;}
.y164{bottom:534.360067pt;}
.y1ef{bottom:535.709473pt;}
.y257{bottom:536.315633pt;}
.y297{bottom:537.371785pt;}
.y2d7{bottom:537.976929pt;}
.y16{bottom:544.105165pt;}
.y215{bottom:544.701660pt;}
.y1ee{bottom:548.937948pt;}
.y256{bottom:549.619751pt;}
.y296{bottom:550.675903pt;}
.y12d{bottom:550.980632pt;}
.ye0{bottom:550.983398pt;}
.y8b{bottom:550.984823pt;}
.yb7{bottom:550.985311pt;}
.y1b5{bottom:550.985718pt;}
.y5a{bottom:550.989217pt;}
.y163{bottom:550.989665pt;}
.y2d6{bottom:551.281047pt;}
.y214{bottom:558.005778pt;}
.y15{bottom:560.734722pt;}
.y1ed{bottom:562.242065pt;}
.y255{bottom:562.923869pt;}
.y295{bottom:563.979980pt;}
.y2d5{bottom:564.585124pt;}
.ydf{bottom:567.537231pt;}
.y8a{bottom:567.538696pt;}
.yb6{bottom:567.539144pt;}
.y12c{bottom:567.610189pt;}
.y1b4{bottom:567.615316pt;}
.y59{bottom:567.618774pt;}
.y162{bottom:567.619222pt;}
.y213{bottom:571.385539pt;}
.y1ec{bottom:575.546143pt;}
.y254{bottom:576.907674pt;}
.y14{bottom:577.288596pt;}
.y294{bottom:577.888184pt;}
.y2d4{bottom:578.568970pt;}
.y12b{bottom:584.164062pt;}
.yde{bottom:584.166829pt;}
.y89{bottom:584.168254pt;}
.yb5{bottom:584.168742pt;}
.y1b3{bottom:584.169149pt;}
.y58{bottom:584.172648pt;}
.y161{bottom:584.173096pt;}
.y212{bottom:584.689657pt;}
.y1eb{bottom:588.850260pt;}
.y253{bottom:590.211792pt;}
.y293{bottom:591.192261pt;}
.y2d3{bottom:591.873047pt;}
.y13{bottom:593.918153pt;}
.y211{bottom:598.220703pt;}
.y12a{bottom:600.793620pt;}
.y128{bottom:600.793986pt;}
.ydd{bottom:600.796387pt;}
.y88{bottom:600.797811pt;}
.yb4{bottom:600.798299pt;}
.y1b2{bottom:600.798747pt;}
.y57{bottom:600.802205pt;}
.y160{bottom:600.802653pt;}
.y252{bottom:604.119954pt;}
.y292{bottom:605.100464pt;}
.y2d2{bottom:605.177165pt;}
.y129{bottom:606.689616pt;}
.y12{bottom:610.547751pt;}
.y210{bottom:611.600464pt;}
.y127{bottom:617.347860pt;}
.y125{bottom:617.348592pt;}
.ydc{bottom:617.350220pt;}
.y87{bottom:617.351685pt;}
.yb3{bottom:617.352173pt;}
.y1b1{bottom:617.352580pt;}
.y56{bottom:617.356038pt;}
.y15f{bottom:617.356527pt;}
.y251{bottom:617.499715pt;}
.y291{bottom:618.404541pt;}
.y2d1{bottom:618.556925pt;}
.y126{bottom:623.319458pt;}
.y20f{bottom:624.904582pt;}
.y11{bottom:627.101584pt;}
.y250{bottom:630.803833pt;}
.y290{bottom:631.784302pt;}
.y2d0{bottom:632.465088pt;}
.y124{bottom:633.978190pt;}
.ydb{bottom:633.979818pt;}
.y86{bottom:633.981242pt;}
.yb2{bottom:633.981730pt;}
.y1b0{bottom:633.982178pt;}
.y55{bottom:633.985636pt;}
.y15e{bottom:633.986084pt;}
.y20e{bottom:638.435628pt;}
.y10{bottom:643.731181pt;}
.y24f{bottom:644.711995pt;}
.y28f{bottom:645.616821pt;}
.y2cf{bottom:645.844849pt;}
.y123{bottom:650.607747pt;}
.y121{bottom:650.608887pt;}
.yda{bottom:650.609375pt;}
.y85{bottom:650.610840pt;}
.yb1{bottom:650.611287pt;}
.y1af{bottom:650.611735pt;}
.y54{bottom:650.615194pt;}
.y15d{bottom:650.615641pt;}
.y20d{bottom:651.815389pt;}
.y122{bottom:656.503743pt;}
.y24e{bottom:658.016113pt;}
.y28e{bottom:658.996582pt;}
.y2ce{bottom:659.148966pt;}
.yf{bottom:660.360739pt;}
.y20c{bottom:665.119466pt;}
.y120{bottom:667.162720pt;}
.yd9{bottom:667.163249pt;}
.y84{bottom:667.164673pt;}
.yb0{bottom:667.165161pt;}
.y1ae{bottom:667.165568pt;}
.y19f{bottom:667.168254pt;}
.y53{bottom:667.169067pt;}
.y15c{bottom:667.169474pt;}
.y1ea{bottom:667.842407pt;}
.y24d{bottom:671.395874pt;}
.y28d{bottom:672.300700pt;}
.y2cd{bottom:673.057129pt;}
.ye{bottom:676.914613pt;}
.y20b{bottom:678.650553pt;}
.y11f{bottom:683.792318pt;}
.yd8{bottom:683.792806pt;}
.y83{bottom:683.794271pt;}
.yaf{bottom:683.794759pt;}
.y1ad{bottom:683.795166pt;}
.y19e{bottom:683.797852pt;}
.y52{bottom:683.798665pt;}
.y15b{bottom:683.799072pt;}
.y24c{bottom:685.304036pt;}
.y28c{bottom:686.208903pt;}
.y2cc{bottom:686.436849pt;}
.y20a{bottom:692.030273pt;}
.yd{bottom:693.544170pt;}
.y24b{bottom:698.608154pt;}
.y28b{bottom:699.512939pt;}
.y2cb{bottom:699.740967pt;}
.y11e{bottom:700.421875pt;}
.yd7{bottom:700.422363pt;}
.y82{bottom:700.423828pt;}
.yae{bottom:700.424316pt;}
.y1ac{bottom:700.424723pt;}
.y19d{bottom:700.427409pt;}
.y51{bottom:700.428223pt;}
.y15a{bottom:700.428630pt;}
.y209{bottom:705.334391pt;}
.y11d{bottom:706.318034pt;}
.yc{bottom:710.173727pt;}
.y24a{bottom:712.578613pt;}
.y28a{bottom:712.817057pt;}
.y2ca{bottom:713.045085pt;}
.yd6{bottom:716.976237pt;}
.y11b{bottom:716.976562pt;}
.y81{bottom:716.977702pt;}
.yad{bottom:716.978190pt;}
.y1ab{bottom:716.978597pt;}
.y19c{bottom:716.981200pt;}
.y50{bottom:716.982015pt;}
.y159{bottom:716.982503pt;}
.y208{bottom:718.865479pt;}
.y11c{bottom:722.947835pt;}
.y249{bottom:725.882731pt;}
.y2c9{bottom:726.349202pt;}
.y289{bottom:726.725260pt;}
.yb{bottom:726.727601pt;}
.y207{bottom:732.169596pt;}
.y11a{bottom:733.606120pt;}
.y118{bottom:733.606445pt;}
.y80{bottom:733.607259pt;}
.yac{bottom:733.607747pt;}
.y1aa{bottom:733.608154pt;}
.y19b{bottom:733.610840pt;}
.y4f{bottom:733.611654pt;}
.y158{bottom:733.612061pt;}
.y1e9{bottom:736.251628pt;}
.y248{bottom:739.186849pt;}
.y119{bottom:739.502116pt;}
.y2c8{bottom:739.728923pt;}
.y288{bottom:740.029378pt;}
.ya{bottom:743.357158pt;}
.y206{bottom:745.549316pt;}
.yd5{bottom:750.236003pt;}
.y116{bottom:750.236491pt;}
.y7f{bottom:750.236816pt;}
.yab{bottom:750.237305pt;}
.y1a9{bottom:750.237712pt;}
.y19a{bottom:750.240397pt;}
.y4e{bottom:750.241211pt;}
.y157{bottom:750.241618pt;}
.y247{bottom:752.490967pt;}
.y287{bottom:753.333496pt;}
.y2c7{bottom:753.637126pt;}
.y117{bottom:756.132161pt;}
.y1e8{bottom:766.184977pt;}
.y246{bottom:766.474772pt;}
.y286{bottom:766.713216pt;}
.y115{bottom:766.790365pt;}
.y7e{bottom:766.790690pt;}
.yaa{bottom:766.791178pt;}
.y1a8{bottom:766.791585pt;}
.y199{bottom:766.794189pt;}
.y4d{bottom:766.795085pt;}
.y156{bottom:766.795492pt;}
.y2c6{bottom:767.016846pt;}
.y114{bottom:772.761963pt;}
.y205{bottom:775.483236pt;}
.y9{bottom:776.994691pt;}
.y1e7{bottom:779.413411pt;}
.y245{bottom:779.778890pt;}
.y2c5{bottom:780.320964pt;}
.y285{bottom:780.546875pt;}
.yd4{bottom:783.418376pt;}
.y7d{bottom:783.420247pt;}
.ya9{bottom:783.420736pt;}
.y1a7{bottom:783.421143pt;}
.y112{bottom:783.421875pt;}
.y198{bottom:783.423828pt;}
.y4c{bottom:783.424642pt;}
.y155{bottom:783.425049pt;}
.y193{bottom:784.780029pt;}
.y3f{bottom:788.613363pt;}
.y8{bottom:789.165182pt;}
.y113{bottom:789.316243pt;}
.y1e6{bottom:792.717529pt;}
.y244{bottom:793.083008pt;}
.y2c4{bottom:793.625081pt;}
.y284{bottom:793.926595pt;}
.y192{bottom:798.008464pt;}
.yd3{bottom:800.047933pt;}
.ya8{bottom:800.050293pt;}
.y1a6{bottom:800.050700pt;}
.y111{bottom:800.051432pt;}
.y197{bottom:800.053385pt;}
.y4b{bottom:800.054199pt;}
.y154{bottom:800.054606pt;}
.y1e5{bottom:806.021647pt;}
.y243{bottom:806.991130pt;}
.y283{bottom:807.230713pt;}
.y2c3{bottom:807.608887pt;}
.y191{bottom:811.312581pt;}
.y7c{bottom:816.604574pt;}
.y110{bottom:816.605306pt;}
.y196{bottom:816.607259pt;}
.y4a{bottom:816.608073pt;}
.y153{bottom:816.608480pt;}
.y1e4{bottom:819.325765pt;}
.y242{bottom:820.370931pt;}
.y2c2{bottom:820.913005pt;}
.y282{bottom:821.138916pt;}
.y204{bottom:823.935059pt;}
.y190{bottom:824.616699pt;}
.y4{bottom:827.716203pt;}
.y6{bottom:827.716208pt;}
.y10f{bottom:833.234863pt;}
.y195{bottom:833.236816pt;}
.y49{bottom:833.237630pt;}
.y152{bottom:833.238037pt;}
.y5{bottom:833.612362pt;}
.y7{bottom:833.612367pt;}
.y241{bottom:833.675049pt;}
.y2c1{bottom:834.217122pt;}
.y281{bottom:834.443034pt;}
.y203{bottom:837.239176pt;}
.y18f{bottom:837.920817pt;}
.y240{bottom:847.583171pt;}
.y280{bottom:847.747152pt;}
.y2c0{bottom:848.200928pt;}
.y104{bottom:849.185547pt;}
.y7b{bottom:849.864421pt;}
.y10d{bottom:849.864827pt;}
.y194{bottom:849.866374pt;}
.y48{bottom:849.867188pt;}
.y151{bottom:849.867594pt;}
.y1e3{bottom:849.871663pt;}
.y202{bottom:850.467611pt;}
.y18e{bottom:851.149251pt;}
.y10e{bottom:855.760417pt;}
.y23f{bottom:860.962972pt;}
.y2bf{bottom:861.505046pt;}
.y27f{bottom:861.655273pt;}
.y201{bottom:863.771729pt;}
.y18b{bottom:864.453044pt;}
.y18d{bottom:864.453369pt;}
.y103{bottom:866.117432pt;}
.y10c{bottom:866.418701pt;}
.y10a{bottom:866.420247pt;}
.y47{bottom:866.421061pt;}
.y150{bottom:866.421468pt;}
.y1e2{bottom:866.425537pt;}
.y3{bottom:867.249650pt;}
.y18c{bottom:869.442301pt;}
.y10b{bottom:872.314697pt;}
.y2be{bottom:874.809163pt;}
.y23e{bottom:874.871094pt;}
.y27e{bottom:874.959391pt;}
.y200{bottom:877.075846pt;}
.y18a{bottom:877.757161pt;}
.y102{bottom:883.049316pt;}
.y109{bottom:883.049805pt;}
.y46{bottom:883.050618pt;}
.y14f{bottom:883.051025pt;}
.y1a5{bottom:883.055094pt;}
.y23d{bottom:888.175212pt;}
.y27d{bottom:888.263509pt;}
.y2bd{bottom:888.790771pt;}
.y2fb{bottom:889.397135pt;}
.y1ff{bottom:890.379964pt;}
.y187{bottom:890.984538pt;}
.y189{bottom:890.985596pt;}
.y2{bottom:891.136776pt;}
.y188{bottom:896.050130pt;}
.y108{bottom:899.679362pt;}
.y45{bottom:899.680176pt;}
.y14e{bottom:899.680664pt;}
.y1a4{bottom:899.684733pt;}
.y7a{bottom:899.697428pt;}
.y101{bottom:899.981200pt;}
.y23c{bottom:901.479329pt;}
.y2bc{bottom:902.094889pt;}
.y27c{bottom:902.171631pt;}
.y2fa{bottom:902.701253pt;}
.y1fe{bottom:903.608398pt;}
.y186{bottom:904.288656pt;}
.y2ff{bottom:911.545410pt;}
.y2bb{bottom:915.398926pt;}
.y23b{bottom:915.463135pt;}
.y27b{bottom:915.475749pt;}
.y2f9{bottom:916.080973pt;}
.y107{bottom:916.233236pt;}
.y44{bottom:916.234049pt;}
.y14d{bottom:916.234456pt;}
.y1a3{bottom:916.238525pt;}
.y79{bottom:916.251302pt;}
.y1fd{bottom:916.912516pt;}
.y100{bottom:916.913086pt;}
.y185{bottom:917.592773pt;}
.y2fe{bottom:924.849528pt;}
.y23a{bottom:928.767253pt;}
.y27a{bottom:928.855550pt;}
.y2ba{bottom:929.382812pt;}
.y2f8{bottom:929.385091pt;}
.y1fc{bottom:930.216634pt;}
.y184{bottom:930.896891pt;}
.y106{bottom:932.862793pt;}
.y43{bottom:932.863607pt;}
.y14c{bottom:932.864014pt;}
.y1a2{bottom:932.868083pt;}
.y78{bottom:932.880859pt;}
.y279{bottom:942.159668pt;}
.y239{bottom:942.675456pt;}
.y2b9{bottom:942.686930pt;}
.y2f7{bottom:942.689209pt;}
.y1fb{bottom:943.520752pt;}
.y183{bottom:944.125326pt;}
.yff{bottom:944.276693pt;}
.y42{bottom:949.493164pt;}
.y14b{bottom:949.493652pt;}
.y1a1{bottom:949.497721pt;}
.y77{bottom:949.510417pt;}
.y238{bottom:955.979574pt;}
.y2b8{bottom:955.990967pt;}
.y2fd{bottom:955.992188pt;}
.y278{bottom:955.993327pt;}
.y1fa{bottom:956.749186pt;}
.y182{bottom:957.429443pt;}
.y1{bottom:957.580973pt;}
.y41{bottom:966.047038pt;}
.y14a{bottom:966.047445pt;}
.y1a0{bottom:966.051514pt;}
.y76{bottom:966.064290pt;}
.y237{bottom:969.359294pt;}
.y2b7{bottom:969.370768pt;}
.y2fc{bottom:969.371908pt;}
.yfe{bottom:969.373047pt;}
.y1f9{bottom:970.053304pt;}
.y181{bottom:970.733561pt;}
.y3e{bottom:986.303285pt;}
.y105{bottom:1000.799967pt;}
.y40{bottom:1001.026693pt;}
.ya7{bottom:1001.239990pt;}
.he{height:25.108515pt;}
.h5{height:25.182671pt;}
.h11{height:29.539167pt;}
.h7{height:30.440355pt;}
.h6{height:31.840431pt;}
.hf{height:32.298933pt;}
.h2{height:35.964844pt;}
.h12{height:36.874903pt;}
.hd{height:37.666552pt;}
.h14{height:37.719938pt;}
.h4{height:37.778178pt;}
.h8{height:38.309517pt;}
.h10{height:41.790319pt;}
.h13{height:43.229642pt;}
.h9{height:44.313644pt;}
.hc{height:45.971345pt;}
.ha{height:54.897954pt;}
.hb{height:55.200851pt;}
.h3{height:60.861563pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031463pt;}
.x1{left:75.590535pt;}
.x61{left:77.707077pt;}
.xd{left:83.145411pt;}
.xb{left:86.777997pt;}
.xa{left:88.667900pt;}
.x3c{left:90.179443pt;}
.x22{left:91.993733pt;}
.x62{left:98.343516pt;}
.x23{left:99.779470pt;}
.x63{left:115.275401pt;}
.x3a{left:122.154246pt;}
.x3b{left:128.503845pt;}
.x64{left:132.282928pt;}
.x65{left:149.214813pt;}
.x45{left:153.146825pt;}
.x3{left:162.973190pt;}
.x66{left:166.146708pt;}
.x1a{left:173.329061pt;}
.x1b{left:180.812541pt;}
.x67{left:183.078583pt;}
.x3d{left:188.447205pt;}
.x4{left:191.924390pt;}
.x3e{left:194.570007pt;}
.x43{left:196.686523pt;}
.x19{left:198.576396pt;}
.x1e{left:199.634664pt;}
.x44{left:202.884928pt;}
.x1f{left:207.118000pt;}
.x31{left:209.461304pt;}
.x32{left:215.810913pt;}
.x68{left:216.942352pt;}
.x1c{left:221.026672pt;}
.x17{left:225.788940pt;}
.x1d{left:228.888143pt;}
.x18{left:233.423604pt;}
.x13{left:237.429871pt;}
.x24{left:241.284932pt;}
.x14{left:244.913330pt;}
.x46{left:247.558222pt;}
.x25{left:249.070800pt;}
.x11{left:251.262939pt;}
.x2c{left:254.588928pt;}
.x12{left:258.822000pt;}
.x47{left:260.862320pt;}
.x2d{left:262.374797pt;}
.x69{left:267.738007pt;}
.x5{left:268.724398pt;}
.x41{left:272.277059pt;}
.x48{left:274.166438pt;}
.x6{left:277.190523pt;}
.x42{left:278.475464pt;}
.x15{left:285.127462pt;}
.x49{left:287.394892pt;}
.x16{left:292.988932pt;}
.x4a{left:300.698990pt;}
.x6a{left:301.601776pt;}
.x28{left:310.450399pt;}
.x26{left:313.473999pt;}
.x29{left:318.387329pt;}
.x27{left:321.259725pt;}
.x4b{left:327.231562pt;}
.x33{left:329.801453pt;}
.x34{left:336.151042pt;}
.x2a{left:339.703857pt;}
.x2b{left:347.565348pt;}
.x6b{left:352.397430pt;}
.x4c{left:353.839778pt;}
.x20{left:367.445597pt;}
.x6c{left:369.329315pt;}
.x3f{left:370.771606pt;}
.x21{left:375.382650pt;}
.x40{left:376.894409pt;}
.x4d{left:380.372330pt;}
.x7{left:384.226677pt;}
.x6d{left:386.261200pt;}
.x4e{left:393.676448pt;}
.x4f{left:406.980565pt;}
.x8{left:408.186475pt;}
.x2e{left:415.218608pt;}
.x50{left:420.284643pt;}
.x9{left:423.299105pt;}
.xc{left:426.253337pt;}
.x35{left:431.017192pt;}
.x51{left:433.513117pt;}
.x36{left:437.366760pt;}
.x52{left:446.817235pt;}
.x53{left:460.121312pt;}
.x54{left:473.425430pt;}
.x55{left:486.653865pt;}
.x56{left:499.957982pt;}
.x57{left:513.262100pt;}
.x2f{left:516.509583pt;}
.x58{left:526.490575pt;}
.x37{left:532.308533pt;}
.x38{left:538.658101pt;}
.x59{left:539.794652pt;}
.x5a{left:575.095759pt;}
.xe{left:602.003052pt;}
.xf{left:606.916382pt;}
.x5b{left:629.293391pt;}
.x30{left:633.296204pt;}
.x5c{left:646.225235pt;}
.x39{left:649.171570pt;}
.x6e{left:651.000000pt;}
.x10{left:656.359985pt;}
.x5d{left:663.157120pt;}
.x5e{left:680.089045pt;}
.x5f{left:697.020930pt;}
.x60{left:713.952815pt;}
}


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