
/* 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_9b1117bab997.woff")format("woff");}.ff1{font-family:ff1;line-height:1.581543;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_b726820e6e90.woff")format("woff");}.ff2{font-family:ff2;line-height:1.417969;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_5cd623831902.woff")format("woff");}.ff3{font-family:ff3;line-height:1.589369;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_f9935f1aa977.woff")format("woff");}.ff4{font-family:ff4;line-height:1.186000;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_5b91e31ee4fb.woff")format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_6ebdcc205e71.woff")format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_4ab944e5862e.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_51cf0b6c61f4.woff")format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_bfac870ecc54.woff")format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_e6de86d09990.woff")format("woff");}.ffa{font-family:ffa;line-height:0.941000;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_38dc1d2fb4ff.woff")format("woff");}.ffb{font-family:ffb;line-height:0.222000;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_f61f763bfa79.woff")format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_ecad355d2217.woff")format("woff");}.ffd{font-family:ffd;line-height:0.949000;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_ba2607bc3722.woff")format("woff");}.ffe{font-family:ffe;line-height:0.251000;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_7428b79c015d.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_d39c9ea90ca9.woff")format("woff");}.ff10{font-family:ff10;line-height:0.721000;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_b391a7987a05.woff")format("woff");}.ff11{font-family:ff11;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_019ffd45e175.woff")format("woff");}.ff12{font-family:ff12;line-height:0.781000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_22e9480fa115.woff")format("woff");}.ff13{font-family:ff13;line-height:0.967000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_6e5854bbb2a5.woff")format("woff");}.ff14{font-family:ff14;line-height:0.613000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_9a1e78be851b.woff")format("woff");}.ff15{font-family:ff15;line-height:0.264000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_2d4f2f499835.woff")format("woff");}.ff16{font-family:ff16;line-height:0.244000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_d9b6f8728f1a.woff")format("woff");}.ff17{font-family:ff17;line-height:0.697000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_d63fab6faa23.woff")format("woff");}.ff18{font-family:ff18;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_0313a7d00eca.woff")format("woff");}.ff19{font-family:ff19;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.267217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267217,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:41.029824px;}
.ls155{letter-spacing:-1.001725px;}
.ls154{letter-spacing:-0.984151px;}
.ls153{letter-spacing:-0.931428px;}
.ls150{letter-spacing:-0.861132px;}
.ls152{letter-spacing:-0.802551px;}
.ls151{letter-spacing:-0.732255px;}
.ls158{letter-spacing:-0.349686px;}
.ls102{letter-spacing:-0.038257px;}
.ls156{letter-spacing:-0.005828px;}
.lsf2{letter-spacing:-0.004782px;}
.ls0{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.004184px;}
.ls9c{letter-spacing:0.004782px;}
.ls19{letter-spacing:0.005858px;}
.ls3{letter-spacing:0.005978px;}
.ls15e{letter-spacing:0.011716px;}
.ls157{letter-spacing:0.017484px;}
.ls164{letter-spacing:0.044831px;}
.ls14b{letter-spacing:0.046625px;}
.ls147{letter-spacing:0.058281px;}
.ls169{letter-spacing:0.089662px;}
.ls15c{letter-spacing:0.117161px;}
.ls165{letter-spacing:0.134492px;}
.ls2{letter-spacing:0.298878px;}
.ls59{letter-spacing:0.351482px;}
.lse9{letter-spacing:0.445211px;}
.lsdb{letter-spacing:0.492075px;}
.lsbc{letter-spacing:0.497933px;}
.ls8b{letter-spacing:0.509649px;}
.ls1b{letter-spacing:0.515508px;}
.ls11a{letter-spacing:0.521366px;}
.ls66{letter-spacing:0.533082px;}
.ls46{letter-spacing:0.538940px;}
.ls41{letter-spacing:0.544798px;}
.ls65{letter-spacing:0.550656px;}
.ls50{letter-spacing:0.556514px;}
.ls168{letter-spacing:0.562372px;}
.lsfd{letter-spacing:0.568230px;}
.ls67{letter-spacing:0.574088px;}
.ls2a{letter-spacing:0.579946px;}
.ls111{letter-spacing:0.585804px;}
.ls13{letter-spacing:0.591662px;}
.lse3{letter-spacing:0.597520px;}
.ls78{letter-spacing:0.603378px;}
.ls114{letter-spacing:0.609236px;}
.ls77{letter-spacing:0.615094px;}
.ls95{letter-spacing:0.620952px;}
.lsc2{letter-spacing:0.626810px;}
.ls52{letter-spacing:0.632668px;}
.lse{letter-spacing:0.638526px;}
.lsf8{letter-spacing:0.644384px;}
.lse2{letter-spacing:0.650242px;}
.ls2d{letter-spacing:0.656100px;}
.ls69{letter-spacing:0.667817px;}
.ls16{letter-spacing:0.673675px;}
.ls96{letter-spacing:0.679533px;}
.ls32{letter-spacing:0.685391px;}
.ls142{letter-spacing:0.691249px;}
.ls1f{letter-spacing:0.697107px;}
.ls12{letter-spacing:0.702965px;}
.ls15{letter-spacing:0.708823px;}
.ls15d{letter-spacing:0.714681px;}
.ls33{letter-spacing:0.720539px;}
.ls61{letter-spacing:0.726397px;}
.lse7{letter-spacing:0.732255px;}
.ls91{letter-spacing:0.743971px;}
.ls6a{letter-spacing:0.749829px;}
.ls76{letter-spacing:0.755687px;}
.lse4{letter-spacing:0.761545px;}
.lsf0{letter-spacing:0.767403px;}
.lsc1{letter-spacing:0.779119px;}
.ls1c{letter-spacing:0.784977px;}
.lse6{letter-spacing:0.790835px;}
.lsa1{letter-spacing:0.802551px;}
.lsd9{letter-spacing:0.808410px;}
.ls87{letter-spacing:0.814268px;}
.ls130{letter-spacing:0.825984px;}
.ls72{letter-spacing:0.831842px;}
.lseb{letter-spacing:0.837700px;}
.lsa0{letter-spacing:0.855274px;}
.ls2f{letter-spacing:0.866990px;}
.ls7b{letter-spacing:0.872848px;}
.lsf{letter-spacing:0.878706px;}
.lsdd{letter-spacing:0.884564px;}
.lsc6{letter-spacing:0.890422px;}
.ls12d{letter-spacing:0.902138px;}
.ls6d{letter-spacing:0.907996px;}
.lsb3{letter-spacing:0.913854px;}
.lsd8{letter-spacing:0.919712px;}
.ls103{letter-spacing:0.925570px;}
.lsf5{letter-spacing:0.931428px;}
.ls2c{letter-spacing:0.937286px;}
.ls49{letter-spacing:0.943144px;}
.ls24{letter-spacing:0.949002px;}
.ls48{letter-spacing:0.954861px;}
.ls12b{letter-spacing:0.960719px;}
.ls4a{letter-spacing:0.966577px;}
.ls6f{letter-spacing:0.972435px;}
.ls6{letter-spacing:0.978293px;}
.ls47{letter-spacing:0.984151px;}
.ls71{letter-spacing:0.990009px;}
.lsf6{letter-spacing:0.995867px;}
.ls70{letter-spacing:1.001725px;}
.ls4c{letter-spacing:1.007583px;}
.lscd{letter-spacing:1.013441px;}
.lsa8{letter-spacing:1.019299px;}
.lsa5{letter-spacing:1.025157px;}
.ls83{letter-spacing:1.031015px;}
.ls4b{letter-spacing:1.036873px;}
.ls57{letter-spacing:1.042731px;}
.lsf3{letter-spacing:1.048589px;}
.ls7c{letter-spacing:1.054447px;}
.ls136{letter-spacing:1.060305px;}
.lsa7{letter-spacing:1.066163px;}
.lsf9{letter-spacing:1.072021px;}
.lsc0{letter-spacing:1.077879px;}
.ls127{letter-spacing:1.083737px;}
.lsfc{letter-spacing:1.089595px;}
.ls107{letter-spacing:1.095453px;}
.ls124{letter-spacing:1.101312px;}
.ls6e{letter-spacing:1.107170px;}
.lsec{letter-spacing:1.113028px;}
.ls160{letter-spacing:1.118886px;}
.ls25{letter-spacing:1.124744px;}
.ls39{letter-spacing:1.130602px;}
.ls3f{letter-spacing:1.142318px;}
.lsfe{letter-spacing:1.148176px;}
.lsf4{letter-spacing:1.165750px;}
.lsa9{letter-spacing:1.171608px;}
.ls88{letter-spacing:1.177466px;}
.lsd0{letter-spacing:1.189182px;}
.lsc7{letter-spacing:1.195040px;}
.ls15f{letter-spacing:1.200898px;}
.ls53{letter-spacing:1.206756px;}
.ls11{letter-spacing:1.212614px;}
.ls12f{letter-spacing:1.218472px;}
.ls106{letter-spacing:1.224330px;}
.ls10{letter-spacing:1.230188px;}
.lsbb{letter-spacing:1.236046px;}
.ls40{letter-spacing:1.241904px;}
.ls15b{letter-spacing:1.247763px;}
.ls109{letter-spacing:1.253621px;}
.lsd1{letter-spacing:1.265337px;}
.lsdc{letter-spacing:1.271195px;}
.lsb7{letter-spacing:1.277053px;}
.ls9d{letter-spacing:1.282911px;}
.lsd2{letter-spacing:1.294627px;}
.ls42{letter-spacing:1.306343px;}
.ls126{letter-spacing:1.312201px;}
.lsc3{letter-spacing:1.318059px;}
.lsd3{letter-spacing:1.323917px;}
.lsce{letter-spacing:1.335633px;}
.lsd{letter-spacing:1.341491px;}
.ls108{letter-spacing:1.347349px;}
.lscb{letter-spacing:1.353207px;}
.ls93{letter-spacing:1.359065px;}
.ls58{letter-spacing:1.364923px;}
.ls135{letter-spacing:1.370781px;}
.ls8a{letter-spacing:1.376639px;}
.lsc8{letter-spacing:1.382497px;}
.ls11c{letter-spacing:1.394214px;}
.ls11f{letter-spacing:1.400072px;}
.ls6b{letter-spacing:1.405930px;}
.ls133{letter-spacing:1.411788px;}
.ls51{letter-spacing:1.423504px;}
.ls8d{letter-spacing:1.429362px;}
.ls31{letter-spacing:1.435220px;}
.ls20{letter-spacing:1.441078px;}
.ls122{letter-spacing:1.446936px;}
.lsca{letter-spacing:1.452794px;}
.ls148{letter-spacing:1.457025px;}
.lsa{letter-spacing:1.458652px;}
.lsea{letter-spacing:1.464510px;}
.ls7{letter-spacing:1.470368px;}
.ls30{letter-spacing:1.476226px;}
.ls28{letter-spacing:1.482084px;}
.ls6c{letter-spacing:1.487942px;}
.lsb1{letter-spacing:1.499658px;}
.ls162{letter-spacing:1.511374px;}
.lscf{letter-spacing:1.517232px;}
.ls10b{letter-spacing:1.523090px;}
.ls115{letter-spacing:1.528948px;}
.ls27{letter-spacing:1.540665px;}
.ls4d{letter-spacing:1.546523px;}
.ls8{letter-spacing:1.558239px;}
.ls144{letter-spacing:1.569955px;}
.ls74{letter-spacing:1.599245px;}
.ls104{letter-spacing:1.605103px;}
.ls113{letter-spacing:1.610961px;}
.ls10c{letter-spacing:1.622677px;}
.lsb2{letter-spacing:1.628535px;}
.lsb6{letter-spacing:1.634393px;}
.ls10d{letter-spacing:1.640251px;}
.lsb4{letter-spacing:1.646109px;}
.ls5b{letter-spacing:1.651967px;}
.ls82{letter-spacing:1.657825px;}
.ls13f{letter-spacing:1.675399px;}
.lsaf{letter-spacing:1.681257px;}
.lsd7{letter-spacing:1.687116px;}
.ls73{letter-spacing:1.692974px;}
.ls84{letter-spacing:1.698832px;}
.ls105{letter-spacing:1.710548px;}
.lsa6{letter-spacing:1.716406px;}
.ls140{letter-spacing:1.728122px;}
.ls139{letter-spacing:1.745696px;}
.lsf7{letter-spacing:1.751554px;}
.ls10e{letter-spacing:1.757412px;}
.lsff{letter-spacing:1.769128px;}
.ls13c{letter-spacing:1.798418px;}
.ls75{letter-spacing:1.804276px;}
.ls101{letter-spacing:1.807950px;}
.ls100{letter-spacing:1.810134px;}
.ls12c{letter-spacing:1.821850px;}
.lsb5{letter-spacing:1.827708px;}
.ls97{letter-spacing:1.839425px;}
.lsfa{letter-spacing:1.856999px;}
.ls11d{letter-spacing:1.862857px;}
.lsa2{letter-spacing:1.886289px;}
.ls35{letter-spacing:1.892147px;}
.lsfb{letter-spacing:1.898005px;}
.ls54{letter-spacing:1.903863px;}
.ls36{letter-spacing:1.909721px;}
.ls85{letter-spacing:1.921437px;}
.ls9e{letter-spacing:1.927295px;}
.ls10f{letter-spacing:1.933153px;}
.ls86{letter-spacing:1.939011px;}
.ls68{letter-spacing:1.944869px;}
.ls134{letter-spacing:1.950727px;}
.ls34{letter-spacing:1.962443px;}
.lsa3{letter-spacing:1.968301px;}
.ls146{letter-spacing:1.980018px;}
.ls44{letter-spacing:1.991734px;}
.ls11e{letter-spacing:1.997592px;}
.ls92{letter-spacing:2.003450px;}
.ls9{letter-spacing:2.009308px;}
.lsd5{letter-spacing:2.015166px;}
.lsac{letter-spacing:2.026882px;}
.ls45{letter-spacing:2.038598px;}
.ls37{letter-spacing:2.050314px;}
.lsd4{letter-spacing:2.056172px;}
.lsab{letter-spacing:2.062030px;}
.ls125{letter-spacing:2.067888px;}
.ls90{letter-spacing:2.085462px;}
.lse1{letter-spacing:2.091320px;}
.ls131{letter-spacing:2.097178px;}
.ls8c{letter-spacing:2.103036px;}
.ls62{letter-spacing:2.114752px;}
.ls23{letter-spacing:2.120610px;}
.ls137{letter-spacing:2.126469px;}
.ls3a{letter-spacing:2.138185px;}
.ls22{letter-spacing:2.144043px;}
.ls8f{letter-spacing:2.149901px;}
.ls3c{letter-spacing:2.155759px;}
.lsd6{letter-spacing:2.161617px;}
.ls3d{letter-spacing:2.167475px;}
.ls38{letter-spacing:2.173333px;}
.ls110{letter-spacing:2.185049px;}
.ls143{letter-spacing:2.196765px;}
.ls1e{letter-spacing:2.214339px;}
.ls118{letter-spacing:2.220197px;}
.ls3e{letter-spacing:2.226055px;}
.ls4f{letter-spacing:2.237771px;}
.ls119{letter-spacing:2.243629px;}
.ls89{letter-spacing:2.255345px;}
.ls99{letter-spacing:2.257161px;}
.ls3b{letter-spacing:2.261203px;}
.lsaa{letter-spacing:2.272920px;}
.lsa4{letter-spacing:2.278778px;}
.ls4e{letter-spacing:2.284636px;}
.ls43{letter-spacing:2.290494px;}
.lsed{letter-spacing:2.296352px;}
.ls138{letter-spacing:2.313926px;}
.ls12e{letter-spacing:2.325642px;}
.ls5a{letter-spacing:2.331500px;}
.ls14c{letter-spacing:2.337358px;}
.ls112{letter-spacing:2.349074px;}
.ls9b{letter-spacing:2.352803px;}
.ls5{letter-spacing:2.354932px;}
.lsdf{letter-spacing:2.360790px;}
.lsbe{letter-spacing:2.366648px;}
.ls81{letter-spacing:2.372506px;}
.ls98{letter-spacing:2.391060px;}
.ls8e{letter-spacing:2.401796px;}
.lsc{letter-spacing:2.413512px;}
.lsb9{letter-spacing:2.419371px;}
.ls7e{letter-spacing:2.431087px;}
.lse0{letter-spacing:2.436945px;}
.ls117{letter-spacing:2.442803px;}
.ls9a{letter-spacing:2.443663px;}
.ls64{letter-spacing:2.448661px;}
.lsde{letter-spacing:2.454519px;}
.ls10a{letter-spacing:2.460377px;}
.ls13a{letter-spacing:2.472093px;}
.ls145{letter-spacing:2.477951px;}
.lsb8{letter-spacing:2.507241px;}
.ls161{letter-spacing:2.530673px;}
.ls2b{letter-spacing:2.554105px;}
.ls11b{letter-spacing:2.600970px;}
.ls55{letter-spacing:2.606828px;}
.ls14d{letter-spacing:2.618544px;}
.ls13d{letter-spacing:2.641976px;}
.lsda{letter-spacing:2.653692px;}
.ls13e{letter-spacing:2.671266px;}
.ls121{letter-spacing:2.682982px;}
.ls123{letter-spacing:2.688840px;}
.ls7a{letter-spacing:2.694698px;}
.ls56{letter-spacing:2.700556px;}
.lsb{letter-spacing:2.718131px;}
.ls14f{letter-spacing:2.729847px;}
.ls94{letter-spacing:2.741563px;}
.lsae{letter-spacing:2.753279px;}
.ls120{letter-spacing:2.788427px;}
.lsf1{letter-spacing:2.835291px;}
.lsad{letter-spacing:2.847007px;}
.lsc4{letter-spacing:2.876298px;}
.ls5c{letter-spacing:2.888014px;}
.ls79{letter-spacing:2.893872px;}
.ls4{letter-spacing:2.899730px;}
.ls116{letter-spacing:2.905588px;}
.ls13b{letter-spacing:2.911446px;}
.ls141{letter-spacing:2.917304px;}
.ls17{letter-spacing:2.923162px;}
.ls21{letter-spacing:2.929020px;}
.ls2e{letter-spacing:2.934878px;}
.ls29{letter-spacing:2.940736px;}
.ls63{letter-spacing:2.946594px;}
.ls132{letter-spacing:2.958310px;}
.lsb0{letter-spacing:2.964168px;}
.ls15a{letter-spacing:2.970026px;}
.ls26{letter-spacing:2.975884px;}
.lscc{letter-spacing:2.981742px;}
.ls7d{letter-spacing:2.987600px;}
.lsc5{letter-spacing:2.993458px;}
.ls5e{letter-spacing:2.999316px;}
.ls7f{letter-spacing:3.005175px;}
.lse5{letter-spacing:3.016891px;}
.ls5f{letter-spacing:3.022749px;}
.ls1d{letter-spacing:3.057897px;}
.ls5d{letter-spacing:3.104761px;}
.ls14a{letter-spacing:12.880101px;}
.ls149{letter-spacing:12.938382px;}
.ls16a{letter-spacing:14.531054px;}
.ls163{letter-spacing:14.883826px;}
.lse8{letter-spacing:15.876638px;}
.ls18{letter-spacing:16.067923px;}
.ls80{letter-spacing:19.858756px;}
.ls1{letter-spacing:20.024826px;}
.lsbf{letter-spacing:20.561720px;}
.ls14{letter-spacing:20.913203px;}
.ls1a{letter-spacing:20.954209px;}
.ls9f{letter-spacing:21.247111px;}
.ls159{letter-spacing:21.557587px;}
.lsbd{letter-spacing:21.668890px;}
.lsba{letter-spacing:21.774335px;}
.ls166{letter-spacing:22.008656px;}
.lsc9{letter-spacing:22.260552px;}
.lsee{letter-spacing:22.266410px;}
.ls128{letter-spacing:22.418719px;}
.ls12a{letter-spacing:22.524164px;}
.ls129{letter-spacing:22.776060px;}
.ls167{letter-spacing:24.603768px;}
.lsef{letter-spacing:24.679923px;}
.ls14e{letter-spacing:26.718520px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws125{word-spacing:-26.777101px;}
.wsf0{word-spacing:-24.738503px;}
.ws148{word-spacing:-24.662348px;}
.ws10c{word-spacing:-22.834640px;}
.ws10e{word-spacing:-22.582744px;}
.ws10b{word-spacing:-22.477299px;}
.wsed{word-spacing:-22.324990px;}
.ws144{word-spacing:-22.067237px;}
.wsc6{word-spacing:-21.832915px;}
.wsd0{word-spacing:-21.727470px;}
.ws93{word-spacing:-21.305691px;}
.ws2c{word-spacing:-21.012789px;}
.ws162{word-spacing:-10.508400px;}
.wsf3{word-spacing:-2.934878px;}
.wscb{word-spacing:-2.905588px;}
.wsee{word-spacing:-2.419371px;}
.ws111{word-spacing:-2.302210px;}
.ws11b{word-spacing:-2.126469px;}
.ws10d{word-spacing:-1.968301px;}
.ws9f{word-spacing:-1.944869px;}
.wsfc{word-spacing:-1.915579px;}
.ws106{word-spacing:-1.769128px;}
.ws10f{word-spacing:-1.587529px;}
.wse7{word-spacing:-1.575813px;}
.wsf9{word-spacing:-1.294627px;}
.ws12d{word-spacing:-1.247763px;}
.wsfe{word-spacing:-1.089595px;}
.wsb8{word-spacing:-1.083737px;}
.wsfa{word-spacing:-0.990009px;}
.ws141{word-spacing:-0.972435px;}
.ws8a{word-spacing:-0.966577px;}
.wsfb{word-spacing:-0.931428px;}
.wsdb{word-spacing:-0.732255px;}
.ws72{word-spacing:-0.691249px;}
.ws92{word-spacing:-0.661959px;}
.ws114{word-spacing:-0.579946px;}
.ws13e{word-spacing:-0.104906px;}
.ws7{word-spacing:-0.061568px;}
.ws12{word-spacing:-0.059776px;}
.ws53{word-spacing:-0.058580px;}
.ws37{word-spacing:-0.047821px;}
.ws14b{word-spacing:-0.044831px;}
.ws15b{word-spacing:-0.043637px;}
.ws85{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.wsc5{word-spacing:0.013204px;}
.ws13b{word-spacing:9.342444px;}
.ws38{word-spacing:11.046499px;}
.ws84{word-spacing:13.640753px;}
.ws86{word-spacing:13.808124px;}
.wsd9{word-spacing:13.891810px;}
.ws83{word-spacing:13.933652px;}
.ws88{word-spacing:13.971311px;}
.ws87{word-spacing:14.059181px;}
.ws3a{word-spacing:14.184709px;}
.wsda{word-spacing:14.268395px;}
.ws159{word-spacing:14.390687px;}
.ws15d{word-spacing:14.443781px;}
.ws157{word-spacing:14.480348px;}
.ws158{word-spacing:14.570010px;}
.ws39{word-spacing:14.603137px;}
.ws154{word-spacing:14.614841px;}
.ws161{word-spacing:14.618328px;}
.ws152{word-spacing:14.659672px;}
.ws15e{word-spacing:14.661965px;}
.ws15a{word-spacing:14.678335px;}
.ws156{word-spacing:14.704502px;}
.ws15f{word-spacing:14.705602px;}
.ws15c{word-spacing:14.749238px;}
.ws155{word-spacing:14.749333px;}
.ws32{word-spacing:14.794164px;}
.ws160{word-spacing:14.836512px;}
.ws31{word-spacing:14.838995px;}
.ws151{word-spacing:14.883826px;}
.ws14e{word-spacing:14.928656px;}
.ws14c{word-spacing:14.973487px;}
.ws30{word-spacing:15.018318px;}
.ws153{word-spacing:15.063149px;}
.ws150{word-spacing:15.107980px;}
.ws14f{word-spacing:15.152810px;}
.ws14d{word-spacing:15.197641px;}
.wsc3{word-spacing:15.207142px;}
.wsd8{word-spacing:15.398426px;}
.wsc1{word-spacing:15.494069px;}
.wsc0{word-spacing:15.537108px;}
.wsc2{word-spacing:15.541890px;}
.wsc4{word-spacing:15.589711px;}
.ws33{word-spacing:15.637532px;}
.ws34{word-spacing:15.685354px;}
.ws35{word-spacing:15.733175px;}
.wsf8{word-spacing:15.737957px;}
.ws36{word-spacing:15.780996px;}
.ws82{word-spacing:15.828817px;}
.ws13c{word-spacing:15.858260px;}
.ws81{word-spacing:15.876638px;}
.wsb3{word-spacing:15.933869px;}
.ws13d{word-spacing:16.085556px;}
.wsae{word-spacing:16.109610px;}
.wsaf{word-spacing:16.261919px;}
.wsa6{word-spacing:16.273635px;}
.wsab{word-spacing:16.349790px;}
.wsaa{word-spacing:16.373222px;}
.wsb7{word-spacing:16.402512px;}
.wsa8{word-spacing:16.408370px;}
.wsb0{word-spacing:16.466950px;}
.wsb2{word-spacing:16.478667px;}
.wsa7{word-spacing:16.507957px;}
.wsb1{word-spacing:16.543105px;}
.wsb5{word-spacing:16.566537px;}
.wsb6{word-spacing:16.589969px;}
.wsa5{word-spacing:16.595827px;}
.ws101{word-spacing:16.641778px;}
.ws100{word-spacing:16.737420px;}
.ws102{word-spacing:16.833062px;}
.ws13f{word-spacing:16.843209px;}
.wsa9{word-spacing:17.105477px;}
.ws135{word-spacing:17.146483px;}
.wsb4{word-spacing:17.281218px;}
.wsac{word-spacing:17.339798px;}
.ws132{word-spacing:17.404237px;}
.ws130{word-spacing:17.415953px;}
.ws137{word-spacing:17.451101px;}
.wsad{word-spacing:17.456959px;}
.ws13a{word-spacing:17.462817px;}
.ws133{word-spacing:17.497965px;}
.ws134{word-spacing:17.720571px;}
.ws138{word-spacing:17.738145px;}
.ws12f{word-spacing:17.755719px;}
.wsd7{word-spacing:17.860870px;}
.ws7f{word-spacing:17.914667px;}
.ws80{word-spacing:17.968465px;}
.ws12e{word-spacing:17.982711px;}
.ws140{word-spacing:18.037704px;}
.ws139{word-spacing:18.042763px;}
.ws5c{word-spacing:18.202683px;}
.ws143{word-spacing:18.257676px;}
.ws9d{word-spacing:18.312669px;}
.ws78{word-spacing:18.367662px;}
.wsd5{word-spacing:18.477648px;}
.ws136{word-spacing:18.857031px;}
.ws142{word-spacing:18.898037px;}
.ws11d{word-spacing:18.921469px;}
.ws11c{word-spacing:18.980050px;}
.ws8c{word-spacing:19.026914px;}
.ws21{word-spacing:19.038630px;}
.ws5f{word-spacing:19.050346px;}
.ws27{word-spacing:19.097210px;}
.ws131{word-spacing:19.108926px;}
.wsa0{word-spacing:19.120643px;}
.ws6f{word-spacing:19.144075px;}
.ws6e{word-spacing:19.155791px;}
.wsce{word-spacing:19.179223px;}
.wsca{word-spacing:19.185081px;}
.ws103{word-spacing:19.190939px;}
.ws118{word-spacing:19.202655px;}
.ws75{word-spacing:19.208513px;}
.ws9b{word-spacing:19.214371px;}
.ws90{word-spacing:19.220229px;}
.wsf2{word-spacing:19.226087px;}
.ws5d{word-spacing:19.237803px;}
.wscf{word-spacing:19.243661px;}
.ws4b{word-spacing:19.261236px;}
.ws56{word-spacing:19.267094px;}
.ws9c{word-spacing:19.272952px;}
.wsd4{word-spacing:19.278810px;}
.wse4{word-spacing:19.284668px;}
.ws147{word-spacing:19.296384px;}
.ws57{word-spacing:19.302242px;}
.ws49{word-spacing:19.308100px;}
.ws1d{word-spacing:19.313958px;}
.ws97{word-spacing:19.319816px;}
.ws4a{word-spacing:19.325674px;}
.ws99{word-spacing:19.331532px;}
.ws64{word-spacing:19.337390px;}
.ws124{word-spacing:19.343248px;}
.ws54{word-spacing:19.349106px;}
.wsba{word-spacing:19.354964px;}
.ws104{word-spacing:19.360822px;}
.ws8b{word-spacing:19.372538px;}
.ws2b{word-spacing:19.384254px;}
.ws95{word-spacing:19.390112px;}
.ws25{word-spacing:19.395970px;}
.ws71{word-spacing:19.401828px;}
.wsde{word-spacing:19.407687px;}
.ws1c{word-spacing:19.413545px;}
.wsa4{word-spacing:19.419403px;}
.ws50{word-spacing:19.425261px;}
.ws43{word-spacing:19.431119px;}
.ws40{word-spacing:19.436977px;}
.ws9e{word-spacing:19.442835px;}
.ws26{word-spacing:19.448693px;}
.ws107{word-spacing:19.454551px;}
.ws77{word-spacing:19.460409px;}
.ws28{word-spacing:19.466267px;}
.ws73{word-spacing:19.472125px;}
.ws91{word-spacing:19.477983px;}
.wse3{word-spacing:19.483841px;}
.ws42{word-spacing:19.489699px;}
.ws2f{word-spacing:19.495557px;}
.wsa3{word-spacing:19.501415px;}
.ws2e{word-spacing:19.507273px;}
.ws45{word-spacing:19.513131px;}
.ws69{word-spacing:19.518989px;}
.wsef{word-spacing:19.524847px;}
.wse8{word-spacing:19.530705px;}
.ws74{word-spacing:19.536563px;}
.ws1f{word-spacing:19.542421px;}
.ws55{word-spacing:19.548279px;}
.ws17{word-spacing:19.554138px;}
.wsec{word-spacing:19.559996px;}
.ws5b{word-spacing:19.565854px;}
.ws3c{word-spacing:19.571712px;}
.ws3b{word-spacing:19.577570px;}
.ws19{word-spacing:19.583428px;}
.ws58{word-spacing:19.589286px;}
.ws6c{word-spacing:19.595144px;}
.wsdc{word-spacing:19.601002px;}
.ws65{word-spacing:19.606860px;}
.ws22{word-spacing:19.612718px;}
.ws1b{word-spacing:19.618576px;}
.ws67{word-spacing:19.624434px;}
.ws1e{word-spacing:19.630292px;}
.ws4f{word-spacing:19.636150px;}
.ws7a{word-spacing:19.642008px;}
.ws47{word-spacing:19.647866px;}
.ws51{word-spacing:19.653724px;}
.ws94{word-spacing:19.659582px;}
.ws113{word-spacing:19.665440px;}
.ws3f{word-spacing:19.671298px;}
.ws146{word-spacing:19.677156px;}
.ws62{word-spacing:19.683014px;}
.ws23{word-spacing:19.688872px;}
.ws46{word-spacing:19.694730px;}
.wsdd{word-spacing:19.700589px;}
.wsbc{word-spacing:19.702334px;}
.ws6b{word-spacing:19.706447px;}
.wsf6{word-spacing:19.712305px;}
.wsbb{word-spacing:19.718163px;}
.ws70{word-spacing:19.724021px;}
.ws63{word-spacing:19.729879px;}
.ws59{word-spacing:19.735737px;}
.ws5e{word-spacing:19.741595px;}
.ws8e{word-spacing:19.747453px;}
.wsa1{word-spacing:19.753311px;}
.ws110{word-spacing:19.759169px;}
.wse9{word-spacing:19.765027px;}
.ws60{word-spacing:19.770885px;}
.ws76{word-spacing:19.782601px;}
.ws13{word-spacing:19.785724px;}
.wseb{word-spacing:19.788459px;}
.ws14a{word-spacing:19.794317px;}
.ws4c{word-spacing:19.800175px;}
.ws89{word-spacing:19.806033px;}
.wsc7{word-spacing:19.811891px;}
.wsf5{word-spacing:19.817749px;}
.ws96{word-spacing:19.823607px;}
.ws5a{word-spacing:19.829465px;}
.ws6d{word-spacing:19.835323px;}
.wsbe{word-spacing:19.841016px;}
.wse6{word-spacing:19.841181px;}
.wsa{word-spacing:19.845499px;}
.ws61{word-spacing:19.847040px;}
.wsa2{word-spacing:19.852898px;}
.ws6a{word-spacing:19.858756px;}
.wsea{word-spacing:19.864614px;}
.ws105{word-spacing:19.870472px;}
.wscd{word-spacing:19.876330px;}
.ws3d{word-spacing:19.882188px;}
.wsd6{word-spacing:19.893904px;}
.wse2{word-spacing:19.899762px;}
.ws9{word-spacing:19.905275px;}
.ws8d{word-spacing:19.905620px;}
.ws7b{word-spacing:19.911478px;}
.ws24{word-spacing:19.917336px;}
.wsb9{word-spacing:19.940768px;}
.ws108{word-spacing:19.946626px;}
.wsf1{word-spacing:19.964200px;}
.ws10{word-spacing:19.965050px;}
.ws68{word-spacing:19.975916px;}
.ws145{word-spacing:19.981774px;}
.ws122{word-spacing:19.993491px;}
.ws11{word-spacing:20.018848px;}
.wse{word-spacing:20.024826px;}
.ws18{word-spacing:20.034497px;}
.ws149{word-spacing:20.063787px;}
.wsbf{word-spacing:20.075340px;}
.wsd{word-spacing:20.084602px;}
.ws48{word-spacing:20.093077px;}
.wsc{word-spacing:20.144377px;}
.ws16{word-spacing:20.145800px;}
.ws52{word-spacing:20.151658px;}
.wsbd{word-spacing:20.151854px;}
.ws2d{word-spacing:20.163374px;}
.ws129{word-spacing:20.175090px;}
.wsb{word-spacing:20.204153px;}
.ws29{word-spacing:20.210238px;}
.ws117{word-spacing:20.262960px;}
.ws8{word-spacing:20.263928px;}
.ws79{word-spacing:20.268818px;}
.ws15{word-spacing:20.327399px;}
.ws14{word-spacing:20.356689px;}
.ws128{word-spacing:20.385979px;}
.wsd1{word-spacing:20.409411px;}
.wsf4{word-spacing:20.415269px;}
.wsf{word-spacing:20.443255px;}
.ws66{word-spacing:20.444560px;}
.ws4e{word-spacing:20.503140px;}
.ws1a{word-spacing:20.561720px;}
.ws11e{word-spacing:20.620301px;}
.ws20{word-spacing:20.678881px;}
.wsc9{word-spacing:20.737462px;}
.ws12c{word-spacing:20.848764px;}
.ws2a{word-spacing:20.854622px;}
.ws11a{word-spacing:20.971783px;}
.ws126{word-spacing:20.989357px;}
.ws127{word-spacing:20.995215px;}
.ws12a{word-spacing:21.124092px;}
.ws12b{word-spacing:21.358414px;}
.ws115{word-spacing:21.440426px;}
.wscc{word-spacing:21.674748px;}
.ws123{word-spacing:21.680606px;}
.ws5{word-spacing:21.698820px;}
.ws6{word-spacing:21.830328px;}
.ws4{word-spacing:21.961836px;}
.ws10a{word-spacing:22.149249px;}
.ws121{word-spacing:22.424577px;}
.ws44{word-spacing:22.541738px;}
.ws116{word-spacing:22.653041px;}
.ws119{word-spacing:23.473166px;}
.wsff{word-spacing:23.842223px;}
.ws120{word-spacing:24.275718px;}
.wsf7{word-spacing:24.404595px;}
.wse5{word-spacing:24.609626px;}
.ws41{word-spacing:24.615484px;}
.ws8f{word-spacing:24.650632px;}
.ws1{word-spacing:26.421060px;}
.ws4d{word-spacing:27.936993px;}
.wsd3{word-spacing:28.417352px;}
.wsc8{word-spacing:28.634100px;}
.wsd2{word-spacing:28.639958px;}
.ws11f{word-spacing:29.202329px;}
.wse1{word-spacing:29.460083px;}
.wsdf{word-spacing:29.547954px;}
.wse0{word-spacing:29.829140px;}
.wsfd{word-spacing:30.098610px;}
.ws109{word-spacing:30.520388px;}
.ws7e{word-spacing:31.305366px;}
.ws9a{word-spacing:31.498681px;}
.ws98{word-spacing:32.219220px;}
.ws3e{word-spacing:34.093793px;}
.ws7d{word-spacing:36.308132px;}
.ws7c{word-spacing:36.788491px;}
.ws112{word-spacing:36.987665px;}
.ws2{word-spacing:47.772580px;}
.ws3{word-spacing:48.059502px;}
._45{margin-left:-24.434853px;}
._44{margin-left:-23.073852px;}
._21{margin-left:-21.330091px;}
._9{margin-left:-20.268818px;}
._8{margin-left:-1.405930px;}
._4{width:1.512342px;}
._0{width:8.470281px;}
._48{width:13.763056px;}
._1f{width:14.973721px;}
._a{width:16.094257px;}
._22{width:17.679565px;}
._6{width:19.289567px;}
._5{width:20.987155px;}
._7{width:22.043104px;}
._c{width:23.063804px;}
._46{width:25.107559px;}
._20{width:28.762976px;}
._d{width:33.332248px;}
._1{width:35.279886px;}
._b{width:38.135840px;}
._10{width:44.282431px;}
._3{width:49.350653px;}
._47{width:65.632291px;}
._11{width:73.549006px;}
._1b{width:78.522410px;}
._1d{width:101.524408px;}
._25{width:105.637031px;}
._19{width:108.410660px;}
._18{width:110.849542px;}
._e{width:124.669868px;}
._17{width:135.142711px;}
._16{width:138.155447px;}
._f{width:143.511421px;}
._14{width:151.114992px;}
._1e{width:161.922583px;}
._1a{width:168.234982px;}
._35{width:172.777996px;}
._27{width:175.551625px;}
._29{width:178.229612px;}
._12{width:179.233858px;}
._23{width:226.146455px;}
._15{width:227.198521px;}
._1c{width:230.498184px;}
._13{width:242.979517px;}
._26{width:245.227114px;}
._3e{width:303.186408px;}
._33{width:326.810081px;}
._2f{width:338.401926px;}
._2b{width:349.238224px;}
._34{width:369.084022px;}
._30{width:378.887368px;}
._36{width:433.499178px;}
._43{width:435.698953px;}
._3a{width:438.950795px;}
._40{width:456.309890px;}
._2d{width:458.509666px;}
._2a{width:461.761507px;}
._39{width:525.124597px;}
._41{width:574.619539px;}
._3f{width:601.112484px;}
._28{width:611.633148px;}
._32{width:617.390807px;}
._31{width:690.538128px;}
._3b{width:704.454097px;}
._3d{width:764.995736px;}
._2e{width:776.233718px;}
._3c{width:789.719297px;}
._42{width:808.465207px;}
._2c{width:848.635015px;}
._38{width:927.300889px;}
._37{width:936.960772px;}
._24{width:1083.580571px;}
._2{width:1615.026147px;}
.fc8{color:rgb(85,126,172);}
.fc6{color:rgb(2,172,0);}
.fc5{color:rgb(12,33,245);}
.fc4{color:rgb(255,41,41);}
.fc2{color:transparent;}
.fc7{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(131,131,131);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:6.000000px;}
.fsc{font-size:29.883000px;}
.fs18{font-size:37.800000px;}
.fs13{font-size:39.048600px;}
.fs17{font-size:40.800000px;}
.fse{font-size:41.842800px;}
.fs15{font-size:43.636800px;}
.fs7{font-size:43.831200px;}
.fsb{font-size:44.830800px;}
.fsd{font-size:47.821200px;}
.fs2{font-size:48.000000px;}
.fs12{font-size:49.515000px;}
.fs16{font-size:53.349000px;}
.fs10{font-size:53.797800px;}
.fsf{font-size:54.993000px;}
.fs14{font-size:58.281000px;}
.fsa{font-size:58.580400px;}
.fs9{font-size:59.775600px;}
.fs8{font-size:61.568400px;}
.fs6{font-size:65.754000px;}
.fs11{font-size:66.019200px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.709000px;}
.fs5{font-size:143.461200px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y213{bottom:0.147750px;}
.yf{bottom:1.828500px;}
.y210{bottom:10.587600px;}
.y31d{bottom:83.848800px;}
.y4f{bottom:92.101411px;}
.y31c{bottom:94.347750px;}
.yd0{bottom:95.277496px;}
.y280{bottom:95.902178px;}
.y239{bottom:95.930505px;}
.y19e{bottom:95.942483px;}
.y84{bottom:95.973008px;}
.y18a{bottom:95.979031px;}
.y106{bottom:96.082120px;}
.y1b7{bottom:96.103256px;}
.y1ed{bottom:96.278997px;}
.ya8{bottom:97.497421px;}
.ye{bottom:100.669500px;}
.y215{bottom:101.880202px;}
.y4e{bottom:104.005688px;}
.y178{bottom:104.593680px;}
.y310{bottom:107.025921px;}
.y2c9{bottom:107.036881px;}
.y27f{bottom:109.418665px;}
.y145{bottom:110.129002px;}
.y12e{bottom:110.198896px;}
.ycf{bottom:113.217743px;}
.y238{bottom:113.870752px;}
.y19d{bottom:113.882731px;}
.y83{bottom:113.913256px;}
.y189{bottom:113.919279px;}
.y105{bottom:114.022368px;}
.y1b6{bottom:114.043504px;}
.y1ec{bottom:114.219245px;}
.ya7{bottom:115.437669px;}
.yd{bottom:115.669500px;}
.y4d{bottom:115.993650px;}
.y177{bottom:119.561716px;}
.y214{bottom:119.820450px;}
.y30f{bottom:120.463953px;}
.y2c8{bottom:120.474914px;}
.y27e{bottom:122.856697px;}
.y31b{bottom:126.881550px;}
.y144{bottom:128.069250px;}
.y12d{bottom:128.139144px;}
.yc{bottom:130.669500px;}
.yce{bottom:131.157991px;}
.y237{bottom:131.811000px;}
.y19c{bottom:131.822978px;}
.y82{bottom:131.853503px;}
.y188{bottom:131.859526px;}
.y104{bottom:131.962615px;}
.y1b5{bottom:131.983751px;}
.y1eb{bottom:132.159492px;}
.ya6{bottom:133.377916px;}
.y30e{bottom:133.980439px;}
.y2c7{bottom:133.991400px;}
.y176{bottom:134.446064px;}
.y27d{bottom:136.294729px;}
.y4a{bottom:141.933631px;}
.y20f{bottom:145.248000px;}
.y212{bottom:145.395750px;}
.y31a{bottom:145.496550px;}
.yb{bottom:145.669500px;}
.y143{bottom:146.012700px;}
.y12c{bottom:146.079391px;}
.y30d{bottom:147.418472px;}
.y2c6{bottom:147.429432px;}
.y45{bottom:149.063614px;}
.ycd{bottom:149.098238px;}
.y175{bottom:149.414100px;}
.y27c{bottom:149.732761px;}
.y236{bottom:149.754300px;}
.y19b{bottom:149.763226px;}
.y81{bottom:149.793751px;}
.y187{bottom:149.799774px;}
.y103{bottom:149.902863px;}
.y1b4{bottom:149.923999px;}
.y1ea{bottom:150.099740px;}
.ya5{bottom:151.318164px;}
.y49{bottom:155.450118px;}
.y211{bottom:155.835600px;}
.y30c{bottom:160.856504px;}
.y2c5{bottom:160.867465px;}
.y27b{bottom:163.170794px;}
.y12b{bottom:164.019639px;}
.y142{bottom:164.092864px;}
.y319{bottom:164.111550px;}
.ycc{bottom:166.950615px;}
.y44{bottom:167.003861px;}
.y19a{bottom:167.703473px;}
.y80{bottom:167.733998px;}
.y186{bottom:167.740021px;}
.y102{bottom:167.843110px;}
.y1b3{bottom:167.864246px;}
.y1e9{bottom:168.039987px;}
.y48{bottom:168.888150px;}
.ya4{bottom:169.170541px;}
.y47{bottom:173.820450px;}
.y30b{bottom:174.294536px;}
.y2c4{bottom:174.305497px;}
.y27a{bottom:176.608826px;}
.y12a{bottom:181.959886px;}
.y141{bottom:182.033112px;}
.y46{bottom:182.324400px;}
.y318{bottom:182.726550px;}
.y43{bottom:184.856238px;}
.ycb{bottom:184.890863px;}
.y199{bottom:185.555850px;}
.y185{bottom:185.592398px;}
.y7f{bottom:185.674246px;}
.y235{bottom:185.701636px;}
.y101{bottom:185.783358px;}
.y1b2{bottom:185.804494px;}
.y1e8{bottom:185.980235px;}
.ya3{bottom:187.110788px;}
.y30a{bottom:187.732568px;}
.y2c3{bottom:187.743529px;}
.y279{bottom:190.125312px;}
.y20e{bottom:194.621529px;}
.y129{bottom:199.900134px;}
.y140{bottom:199.973359px;}
.y309{bottom:201.170601px;}
.y2c2{bottom:201.181561px;}
.y317{bottom:201.341550px;}
.y42{bottom:202.796486px;}
.yca{bottom:202.831110px;}
.y198{bottom:203.499150px;}
.y184{bottom:203.532646px;}
.y278{bottom:203.563345px;}
.y7e{bottom:203.614493px;}
.y234{bottom:203.641884px;}
.y100{bottom:203.723605px;}
.y1b1{bottom:203.744741px;}
.y1e7{bottom:203.920482px;}
.ya2{bottom:205.051036px;}
.y20d{bottom:212.561776px;}
.y308{bottom:214.687087px;}
.y2c1{bottom:214.698048px;}
.y277{bottom:217.001377px;}
.y128{bottom:217.840381px;}
.y13f{bottom:217.913607px;}
.y316{bottom:219.956550px;}
.y36{bottom:220.707443px;}
.y41{bottom:220.736733px;}
.yc9{bottom:220.771358px;}
.y183{bottom:221.472893px;}
.y7d{bottom:221.554741px;}
.y233{bottom:221.582131px;}
.yff{bottom:221.663853px;}
.y1b0{bottom:221.684989px;}
.y1e6{bottom:221.860730px;}
.ya1{bottom:222.991283px;}
.y307{bottom:228.125119px;}
.y2c0{bottom:228.136080px;}
.y276{bottom:230.439409px;}
.y20c{bottom:230.502024px;}
.y127{bottom:235.692758px;}
.y13e{bottom:235.765984px;}
.y35{bottom:238.647691px;}
.y40{bottom:238.676981px;}
.yc8{bottom:238.711605px;}
.y197{bottom:239.394908px;}
.y7c{bottom:239.407118px;}
.y182{bottom:239.413141px;}
.y232{bottom:239.434508px;}
.yfe{bottom:239.516230px;}
.y1af{bottom:239.537365px;}
.y1e5{bottom:239.713107px;}
.ya0{bottom:240.931531px;}
.y306{bottom:241.563152px;}
.y2bf{bottom:241.574112px;}
.y275{bottom:243.877441px;}
.y20b{bottom:248.442271px;}
.y315{bottom:251.346450px;}
.y126{bottom:253.633006px;}
.y13d{bottom:253.706231px;}
.y305{bottom:255.001184px;}
.y2be{bottom:255.012145px;}
.y34{bottom:256.587938px;}
.y3f{bottom:256.617228px;}
.yc7{bottom:256.651853px;}
.y274{bottom:257.315474px;}
.y196{bottom:257.335155px;}
.y7b{bottom:257.347365px;}
.y181{bottom:257.353388px;}
.y231{bottom:257.374756px;}
.yfd{bottom:257.456477px;}
.y1ae{bottom:257.477613px;}
.y1e4{bottom:257.653354px;}
.y9f{bottom:258.871778px;}
.y20a{bottom:266.382519px;}
.y314{bottom:267.351150px;}
.y304{bottom:268.439216px;}
.y2bd{bottom:268.450177px;}
.y273{bottom:270.753506px;}
.y125{bottom:271.573253px;}
.y13c{bottom:271.646479px;}
.y33{bottom:274.528186px;}
.y3e{bottom:274.557476px;}
.yc6{bottom:274.592100px;}
.y195{bottom:275.275403px;}
.y7a{bottom:275.287613px;}
.y180{bottom:275.293636px;}
.y230{bottom:275.315003px;}
.yfc{bottom:275.396725px;}
.y1ad{bottom:275.417860px;}
.y1e3{bottom:275.593602px;}
.y9e{bottom:276.812026px;}
.y303{bottom:281.877248px;}
.y2bc{bottom:281.888209px;}
.y272{bottom:284.269992px;}
.y209{bottom:284.322766px;}
.y124{bottom:289.513501px;}
.y13b{bottom:289.586726px;}
.ya{bottom:292.008000px;}
.y32{bottom:292.468433px;}
.y3d{bottom:292.497723px;}
.yc5{bottom:292.535400px;}
.y194{bottom:293.215650px;}
.y192{bottom:293.227778px;}
.y79{bottom:293.227860px;}
.y17f{bottom:293.233883px;}
.y22f{bottom:293.255251px;}
.yfb{bottom:293.336972px;}
.y1ac{bottom:293.358108px;}
.y1e2{bottom:293.533849px;}
.y9d{bottom:294.752273px;}
.y302{bottom:295.315281px;}
.y2bb{bottom:295.326241px;}
.y271{bottom:297.708025px;}
.y193{bottom:299.678700px;}
.y208{bottom:302.175143px;}
.y9{bottom:307.008000px;}
.y123{bottom:307.453748px;}
.y13a{bottom:307.526974px;}
.y301{bottom:308.831767px;}
.y2ba{bottom:308.842728px;}
.y31{bottom:310.408681px;}
.y3c{bottom:310.437971px;}
.y270{bottom:311.146057px;}
.y191{bottom:311.168026px;}
.y78{bottom:311.168108px;}
.y17e{bottom:311.174131px;}
.y22e{bottom:311.195498px;}
.yfa{bottom:311.277220px;}
.y1ab{bottom:311.298355px;}
.y1e1{bottom:311.474097px;}
.y9c{bottom:312.604650px;}
.y207{bottom:320.115391px;}
.y8{bottom:322.008000px;}
.y300{bottom:322.269799px;}
.y2b9{bottom:322.280760px;}
.y26f{bottom:324.584089px;}
.y122{bottom:325.393996px;}
.y139{bottom:325.467221px;}
.y30{bottom:328.261057px;}
.y3b{bottom:328.290348px;}
.yc4{bottom:328.373348px;}
.y190{bottom:329.020403px;}
.y17d{bottom:329.026507px;}
.y77{bottom:329.108355px;}
.y22d{bottom:329.135746px;}
.yf9{bottom:329.217467px;}
.y1aa{bottom:329.238603px;}
.y1e0{bottom:329.414344px;}
.y9b{bottom:330.547950px;}
.y2ff{bottom:335.707831px;}
.y2b8{bottom:335.718792px;}
.y7{bottom:337.008000px;}
.y26e{bottom:338.022122px;}
.y206{bottom:338.055638px;}
.y121{bottom:343.334243px;}
.y138{bottom:343.407469px;}
.y2f{bottom:346.201305px;}
.y3a{bottom:346.230595px;}
.yc3{bottom:346.313596px;}
.y18f{bottom:346.960650px;}
.y17c{bottom:346.966755px;}
.y18d{bottom:347.025335px;}
.y76{bottom:347.048603px;}
.y22c{bottom:347.075993px;}
.yf8{bottom:347.157715px;}
.y1a9{bottom:347.178850px;}
.y1df{bottom:347.354592px;}
.y2fe{bottom:349.145864px;}
.y2b7{bottom:349.156825px;}
.y26d{bottom:351.460154px;}
.y108{bottom:352.292850px;}
.y18e{bottom:353.508600px;}
.y205{bottom:355.995886px;}
.y120{bottom:361.274491px;}
.y137{bottom:361.347716px;}
.y2fd{bottom:362.583896px;}
.y2b6{bottom:362.594857px;}
.y2e{bottom:364.141553px;}
.y39{bottom:364.170843px;}
.yc2{bottom:364.253843px;}
.y17b{bottom:364.907002px;}
.y18c{bottom:364.965583px;}
.y26c{bottom:364.976640px;}
.y75{bottom:364.988850px;}
.y22b{bottom:365.016241px;}
.yf7{bottom:365.097962px;}
.y1a8{bottom:365.119098px;}
.y1de{bottom:365.294839px;}
.y9a{bottom:366.555876px;}
.y204{bottom:373.936133px;}
.y2fc{bottom:376.021928px;}
.y2b5{bottom:376.032889px;}
.y26b{bottom:378.414672px;}
.y11f{bottom:379.126868px;}
.y136{bottom:379.200093px;}
.y2d{bottom:382.081800px;}
.y38{bottom:382.111090px;}
.yc1{bottom:382.194091px;}
.y74{bottom:382.847250px;}
.y22a{bottom:382.868617px;}
.y18b{bottom:382.905830px;}
.yf6{bottom:382.950339px;}
.y1a7{bottom:382.971475px;}
.y1dd{bottom:383.147216px;}
.y99{bottom:384.496123px;}
.y2fb{bottom:389.538415px;}
.y2b4{bottom:389.549375px;}
.y26a{bottom:391.852705px;}
.y203{bottom:391.876381px;}
.y11e{bottom:397.067115px;}
.y135{bottom:397.140340px;}
.y2c{bottom:400.025100px;}
.y37{bottom:400.051338px;}
.yc0{bottom:400.134338px;}
.y73{bottom:400.790550px;}
.y229{bottom:400.808865px;}
.yf5{bottom:400.890587px;}
.y1a6{bottom:400.911722px;}
.y1dc{bottom:401.087464px;}
.y98{bottom:402.436371px;}
.y2fa{bottom:402.976447px;}
.y2b3{bottom:402.987408px;}
.y269{bottom:405.290737px;}
.y202{bottom:409.816628px;}
.y11d{bottom:415.007362px;}
.y134{bottom:415.080588px;}
.y2f9{bottom:416.414479px;}
.y2b2{bottom:416.425440px;}
.ybf{bottom:418.074586px;}
.y268{bottom:418.728769px;}
.y228{bottom:418.749112px;}
.yf4{bottom:418.830834px;}
.y1a5{bottom:418.851970px;}
.y1db{bottom:419.027711px;}
.y97{bottom:420.376618px;}
.y201{bottom:427.756876px;}
.y1a2{bottom:428.763780px;}
.y2f8{bottom:429.852511px;}
.y2b1{bottom:429.863472px;}
.y267{bottom:432.166802px;}
.y11c{bottom:432.947610px;}
.y133{bottom:433.020835px;}
.ybe{bottom:436.014833px;}
.y227{bottom:436.689360px;}
.yf3{bottom:436.771082px;}
.y72{bottom:436.792217px;}
.y1da{bottom:436.967959px;}
.y96{bottom:438.316866px;}
.y2f7{bottom:443.290544px;}
.y2b0{bottom:443.301505px;}
.y1a1{bottom:443.731816px;}
.y200{bottom:445.609252px;}
.y266{bottom:445.683288px;}
.y2b{bottom:450.048164px;}
.y11b{bottom:450.887857px;}
.y132{bottom:450.961083px;}
.ybd{bottom:453.867210px;}
.y226{bottom:454.629607px;}
.yf2{bottom:454.711329px;}
.y71{bottom:454.732465px;}
.y1d9{bottom:454.908206px;}
.y95{bottom:456.169243px;}
.y2f6{bottom:456.728576px;}
.y2af{bottom:456.739537px;}
.y1a0{bottom:458.616164px;}
.y265{bottom:459.121320px;}
.y1ff{bottom:463.549500px;}
.y2a{bottom:467.906125px;}
.y11a{bottom:468.828105px;}
.y131{bottom:468.901330px;}
.y2f5{bottom:470.166608px;}
.y2ae{bottom:470.177569px;}
.ybc{bottom:471.807457px;}
.y264{bottom:472.559352px;}
.y225{bottom:472.569855px;}
.yf1{bottom:472.651577px;}
.y70{bottom:472.672712px;}
.y1d8{bottom:472.848454px;}
.y19f{bottom:473.584200px;}
.y94{bottom:474.109490px;}
.y1fe{bottom:481.492800px;}
.y2f4{bottom:483.683095px;}
.y2ad{bottom:483.694055px;}
.y29{bottom:485.853749px;}
.y263{bottom:485.997385px;}
.y119{bottom:486.768352px;}
.y130{bottom:486.841578px;}
.ybb{bottom:489.747705px;}
.y224{bottom:490.510102px;}
.yf0{bottom:490.591824px;}
.y6f{bottom:490.612960px;}
.y1d7{bottom:490.788701px;}
.y93{bottom:492.049738px;}
.y2f3{bottom:497.121127px;}
.y2ac{bottom:497.132088px;}
.y262{bottom:499.435417px;}
.y1fd{bottom:499.436100px;}
.y28{bottom:503.801373px;}
.y118{bottom:504.708600px;}
.y12f{bottom:504.781825px;}
.yba{bottom:507.687952px;}
.y223{bottom:508.450350px;}
.yef{bottom:508.532072px;}
.y6e{bottom:508.553207px;}
.y174{bottom:508.655723px;}
.y1d6{bottom:508.728949px;}
.y92{bottom:509.989985px;}
.y2f2{bottom:510.559159px;}
.y2ab{bottom:510.570120px;}
.y261{bottom:512.873449px;}
.y27{bottom:521.748997px;}
.y2f1{bottom:523.997191px;}
.y2aa{bottom:524.008152px;}
.yb9{bottom:525.628200px;}
.y222{bottom:526.308600px;}
.y260{bottom:526.311482px;}
.yee{bottom:526.384449px;}
.y6d{bottom:526.405584px;}
.y173{bottom:526.508100px;}
.y1d5{bottom:526.581325px;}
.y91{bottom:527.930233px;}
.y2f0{bottom:537.435224px;}
.y2a9{bottom:537.446185px;}
.y25f{bottom:539.827968px;}
.y155{bottom:541.278492px;}
.y26{bottom:544.194734px;}
.y1fc{bottom:544.294403px;}
.yed{bottom:544.324696px;}
.y6c{bottom:544.345832px;}
.y172{bottom:544.448347px;}
.y1d4{bottom:544.521573px;}
.y90{bottom:545.870480px;}
.y2ef{bottom:550.873256px;}
.y2a8{bottom:550.884217px;}
.y25e{bottom:553.266000px;}
.y154{bottom:553.946400px;}
.y25{bottom:562.142358px;}
.y221{bottom:562.231598px;}
.y1fb{bottom:562.234651px;}
.yec{bottom:562.264944px;}
.y6b{bottom:562.286079px;}
.y171{bottom:562.388595px;}
.y1d3{bottom:562.461820px;}
.y8f{bottom:563.810728px;}
.y2ee{bottom:564.389742px;}
.y2a7{bottom:564.400703px;}
.y25d{bottom:566.691595px;}
.y313{bottom:568.071264px;}
.y153{bottom:574.492062px;}
.y115{bottom:575.366911px;}
.y2ed{bottom:577.827775px;}
.y2a6{bottom:577.838735px;}
.y24{bottom:580.000319px;}
.y220{bottom:580.171846px;}
.y1fa{bottom:580.174898px;}
.yeb{bottom:580.205191px;}
.y6a{bottom:580.226327px;}
.y170{bottom:580.328842px;}
.y1d2{bottom:580.402068px;}
.y312{bottom:580.824119px;}
.y8e{bottom:581.750975px;}
.y114{bottom:590.251259px;}
.y2ec{bottom:591.265807px;}
.y2a5{bottom:591.276768px;}
.y152{bottom:592.353280px;}
.y311{bottom:593.489700px;}
.y23{bottom:597.947943px;}
.y25c{bottom:598.073155px;}
.y21f{bottom:598.112093px;}
.y1f9{bottom:598.115146px;}
.yea{bottom:598.145439px;}
.y69{bottom:598.166574px;}
.y16f{bottom:598.269090px;}
.y1d1{bottom:598.342315px;}
.y8d{bottom:599.603352px;}
.y2a2{bottom:604.687765px;}
.y2eb{bottom:604.703839px;}
.y2a4{bottom:604.714800px;}
.y113{bottom:605.219295px;}
.y2a3{bottom:609.732150px;}
.y151{bottom:610.298186px;}
.y25b{bottom:611.511187px;}
.y22{bottom:615.895567px;}
.y21e{bottom:616.052341px;}
.y1f8{bottom:616.055393px;}
.ye9{bottom:616.085686px;}
.y68{bottom:616.106822px;}
.y16e{bottom:616.209337px;}
.y1d0{bottom:616.282563px;}
.y8c{bottom:617.543599px;}
.y2a1{bottom:618.125797px;}
.y2ea{bottom:618.141871px;}
.y112{bottom:620.187330px;}
.y150{bottom:628.243091px;}
.y2a0{bottom:631.563829px;}
.y2e9{bottom:631.579904px;}
.y21{bottom:633.843190px;}
.y21d{bottom:633.992588px;}
.y1f7{bottom:633.995641px;}
.ye8{bottom:634.025934px;}
.y67{bottom:634.047069px;}
.y16d{bottom:634.149585px;}
.y1cf{bottom:634.222810px;}
.y111{bottom:635.155366px;}
.y8b{bottom:635.483847px;}
.y25a{bottom:638.387252px;}
.y29f{bottom:645.001861px;}
.y2e8{bottom:645.017936px;}
.y14f{bottom:646.187996px;}
.y110{bottom:650.039714px;}
.y20{bottom:651.790814px;}
.y259{bottom:651.903738px;}
.y21c{bottom:651.932836px;}
.y1f6{bottom:651.935888px;}
.ye7{bottom:651.966181px;}
.y66{bottom:651.987317px;}
.y16c{bottom:652.089832px;}
.y1ce{bottom:652.163058px;}
.y8a{bottom:653.424094px;}
.y29e{bottom:658.518348px;}
.y2e7{bottom:658.534422px;}
.y14e{bottom:664.132902px;}
.y10f{bottom:665.007750px;}
.y258{bottom:665.341770px;}
.y1f{bottom:669.738438px;}
.y21b{bottom:669.785213px;}
.y1f5{bottom:669.788265px;}
.ye6{bottom:669.818558px;}
.y65{bottom:669.839694px;}
.y16b{bottom:669.942209px;}
.y1cd{bottom:670.015435px;}
.y89{bottom:671.364342px;}
.y29d{bottom:671.956380px;}
.y2e6{bottom:671.972455px;}
.y257{bottom:678.779802px;}
.y14d{bottom:682.077807px;}
.y107{bottom:683.035500px;}
.y29c{bottom:685.394412px;}
.y2e5{bottom:685.410487px;}
.y1e{bottom:687.686062px;}
.y21a{bottom:687.725460px;}
.y1f4{bottom:687.728513px;}
.ye5{bottom:687.758806px;}
.y64{bottom:687.779941px;}
.y16a{bottom:687.882457px;}
.y1cc{bottom:687.955682px;}
.y88{bottom:689.304590px;}
.y256{bottom:692.217835px;}
.y29b{bottom:698.832445px;}
.y2e4{bottom:698.848519px;}
.y14c{bottom:700.022712px;}
.y255{bottom:705.655867px;}
.y219{bottom:705.665708px;}
.y1f3{bottom:705.668760px;}
.ye4{bottom:705.699053px;}
.y63{bottom:705.720189px;}
.y169{bottom:705.822704px;}
.y1cb{bottom:705.895930px;}
.y87{bottom:707.244837px;}
.y1d{bottom:710.057080px;}
.y29a{bottom:712.270477px;}
.y2e3{bottom:712.286552px;}
.y14b{bottom:717.967618px;}
.y254{bottom:719.093899px;}
.y218{bottom:723.605955px;}
.y1f2{bottom:723.609008px;}
.ye3{bottom:723.639301px;}
.y62{bottom:723.660436px;}
.y168{bottom:723.762952px;}
.y1ca{bottom:723.836177px;}
.y86{bottom:725.185085px;}
.y299{bottom:725.708509px;}
.y2e2{bottom:725.724584px;}
.y1c{bottom:728.004704px;}
.y14a{bottom:735.828836px;}
.y298{bottom:739.224995px;}
.y2e1{bottom:739.241070px;}
.y217{bottom:741.546202px;}
.y1f1{bottom:741.549255px;}
.ye2{bottom:741.579548px;}
.y61{bottom:741.600684px;}
.y167{bottom:741.703199px;}
.y1c9{bottom:741.776425px;}
.y85{bottom:743.037461px;}
.y1b{bottom:745.952328px;}
.y253{bottom:746.048418px;}
.y297{bottom:752.663028px;}
.y2e0{bottom:752.679102px;}
.y149{bottom:753.773741px;}
.y251{bottom:759.482885px;}
.y216{bottom:759.486450px;}
.y1f0{bottom:759.489503px;}
.ye1{bottom:759.519796px;}
.y60{bottom:759.540931px;}
.y166{bottom:759.643447px;}
.y1c8{bottom:759.716672px;}
.y6{bottom:762.205500px;}
.y1a{bottom:763.899952px;}
.y252{bottom:764.418750px;}
.y296{bottom:766.101060px;}
.y2df{bottom:766.117135px;}
.y148{bottom:771.718646px;}
.y250{bottom:772.920918px;}
.y1ef{bottom:777.429750px;}
.ye0{bottom:777.460043px;}
.y5f{bottom:777.481179px;}
.y165{bottom:777.583694px;}
.y1c7{bottom:777.656920px;}
.y5{bottom:779.214000px;}
.y295{bottom:779.539092px;}
.y2de{bottom:779.555167px;}
.yb8{bottom:779.562999px;}
.y19{bottom:781.847576px;}
.y24d{bottom:786.357168px;}
.y24f{bottom:786.358950px;}
.y147{bottom:789.663552px;}
.y24e{bottom:791.376150px;}
.yb7{bottom:792.314592px;}
.y294{bottom:792.977125px;}
.y2dd{bottom:792.993199px;}
.y1ee{bottom:795.373050px;}
.ydf{bottom:795.400291px;}
.y5e{bottom:795.421426px;}
.y164{bottom:795.523942px;}
.y1c6{bottom:795.597167px;}
.y24b{bottom:799.793268px;}
.y18{bottom:799.795200px;}
.y24c{bottom:804.812400px;}
.yb6{bottom:804.982500px;}
.y293{bottom:806.415157px;}
.y2dc{bottom:806.431231px;}
.y146{bottom:807.608457px;}
.y24a{bottom:813.231300px;}
.y248{bottom:813.236114px;}
.yde{bottom:813.252668px;}
.y5d{bottom:813.273803px;}
.y163{bottom:813.376319px;}
.y1c5{bottom:813.449544px;}
.y249{bottom:818.248650px;}
.y2db{bottom:819.812978px;}
.y292{bottom:819.853189px;}
.y10d{bottom:821.451000px;}
.yb5{bottom:825.553362px;}
.y17{bottom:826.667550px;}
.y247{bottom:826.752600px;}
.ydd{bottom:831.192915px;}
.y5c{bottom:831.214051px;}
.y162{bottom:831.316566px;}
.y1c4{bottom:831.389792px;}
.y246{bottom:831.684750px;}
.y2da{bottom:833.329465px;}
.y291{bottom:833.369675px;}
.y245{bottom:840.180888px;}
.y10c{bottom:840.365730px;}
.yb4{bottom:843.498268px;}
.y2d9{bottom:846.778705px;}
.y290{bottom:846.807708px;}
.ydc{bottom:849.133162px;}
.y5b{bottom:849.154298px;}
.y161{bottom:849.256814px;}
.y1c3{bottom:849.330039px;}
.y10b{bottom:850.677229px;}
.y2d8{bottom:860.216737px;}
.y28f{bottom:860.245740px;}
.yb3{bottom:861.443173px;}
.y244{bottom:867.056952px;}
.ydb{bottom:867.073410px;}
.y5a{bottom:867.094546px;}
.y160{bottom:867.197061px;}
.y1c2{bottom:867.270287px;}
.y2d7{bottom:873.654769px;}
.y28e{bottom:873.683772px;}
.yb2{bottom:879.304391px;}
.y243{bottom:880.494985px;}
.y15{bottom:884.232589px;}
.yda{bottom:885.013657px;}
.y59{bottom:885.034793px;}
.y15f{bottom:885.137309px;}
.y1c1{bottom:885.210534px;}
.y2d6{bottom:887.092801px;}
.y28d{bottom:887.121805px;}
.y16{bottom:891.467400px;}
.y242{bottom:893.933017px;}
.yb1{bottom:897.249296px;}
.y2d5{bottom:900.530834px;}
.y28c{bottom:900.559837px;}
.yd9{bottom:902.953905px;}
.y58{bottom:902.975041px;}
.y15e{bottom:903.077556px;}
.y1c0{bottom:903.150782px;}
.y4{bottom:904.020000px;}
.y13{bottom:905.158800px;}
.y241{bottom:907.371049px;}
.y14{bottom:912.387150px;}
.y2d4{bottom:914.047320px;}
.y28b{bottom:914.076323px;}
.yb0{bottom:915.194202px;}
.y240{bottom:920.887535px;}
.yd8{bottom:920.894153px;}
.y57{bottom:920.915288px;}
.y15d{bottom:921.017804px;}
.y1bf{bottom:921.091029px;}
.y2d3{bottom:927.485352px;}
.y28a{bottom:927.514355px;}
.yaf{bottom:933.139107px;}
.y23f{bottom:934.325568px;}
.yd7{bottom:938.834400px;}
.y56{bottom:938.855536px;}
.y15c{bottom:938.958051px;}
.y1be{bottom:939.031277px;}
.y2d2{bottom:940.923385px;}
.y12{bottom:940.945415px;}
.y289{bottom:940.952388px;}
.y23e{bottom:947.763600px;}
.y3{bottom:949.020000px;}
.yae{bottom:951.084012px;}
.y2d1{bottom:954.361417px;}
.y288{bottom:954.390420px;}
.yd6{bottom:956.692800px;}
.y55{bottom:956.707912px;}
.y15b{bottom:956.810428px;}
.y1bd{bottom:956.883654px;}
.y2d0{bottom:967.799449px;}
.y287{bottom:967.828452px;}
.yad{bottom:969.028918px;}
.y54{bottom:974.648160px;}
.yd5{bottom:974.686460px;}
.y15a{bottom:974.750676px;}
.y1bc{bottom:974.823901px;}
.y11{bottom:979.823400px;}
.y2cf{bottom:981.237482px;}
.y286{bottom:981.266485px;}
.y10e{bottom:985.469438px;}
.yac{bottom:986.973823px;}
.y2{bottom:988.998000px;}
.y53{bottom:992.588407px;}
.y23d{bottom:992.591398px;}
.yd4{bottom:992.626708px;}
.y159{bottom:992.690923px;}
.y1bb{bottom:992.764149px;}
.y2ce{bottom:994.753968px;}
.y285{bottom:994.782971px;}
.yab{bottom:1006.783755px;}
.y2cd{bottom:1008.192000px;}
.y284{bottom:1008.221003px;}
.y52{bottom:1010.528655px;}
.y23c{bottom:1010.531645px;}
.yd3{bottom:1010.566955px;}
.y158{bottom:1010.631171px;}
.y1ba{bottom:1010.704396px;}
.y1{bottom:1011.498000px;}
.y10a{bottom:1019.511000px;}
.y2cc{bottom:1021.630032px;}
.y283{bottom:1021.659035px;}
.yaa{bottom:1026.510000px;}
.y51{bottom:1028.468903px;}
.y23b{bottom:1028.471893px;}
.yd2{bottom:1028.507203px;}
.y157{bottom:1028.571418px;}
.y1b9{bottom:1028.644644px;}
.y2cb{bottom:1035.068065px;}
.y282{bottom:1035.097068px;}
.y109{bottom:1035.328350px;}
.y10{bottom:1036.629600px;}
.ya9{bottom:1046.324100px;}
.y50{bottom:1046.409150px;}
.y23a{bottom:1046.412140px;}
.yd1{bottom:1046.447450px;}
.y156{bottom:1046.511666px;}
.y1b8{bottom:1046.584891px;}
.y2ca{bottom:1048.506097px;}
.y281{bottom:1048.535100px;}
.y117{bottom:1115.196527px;}
.y17a{bottom:1115.199100px;}
.y1a4{bottom:1115.201240px;}
.y4c{bottom:1115.203651px;}
.y116{bottom:1130.080875px;}
.y179{bottom:1130.083448px;}
.y1a3{bottom:1130.085589px;}
.y4b{bottom:1130.088000px;}
.h6{height:5.796000px;}
.h11{height:21.545643px;}
.h1a{height:28.271186px;}
.h23{height:28.350000px;}
.h13{height:30.168659px;}
.h22{height:31.089600px;}
.h1b{height:31.378500px;}
.h20{height:31.462133px;}
.hc{height:31.602295px;}
.h10{height:32.323007px;}
.h1f{height:32.548148px;}
.h12{height:34.479085px;}
.h19{height:37.136250px;}
.h1c{height:38.465460px;}
.h15{height:38.788214px;}
.h16{height:39.045030px;}
.h14{height:39.649953px;}
.h21{height:40.651938px;}
.h1e{height:41.962320px;}
.hf{height:42.412210px;}
.he{height:43.098208px;}
.hd{height:44.390816px;}
.hb{height:47.408634px;}
.h18{height:49.514400px;}
.h5{height:55.992188px;}
.h9{height:56.028189px;}
.h4{height:56.367839px;}
.h1d{height:82.992144px;}
.h2{height:83.988281px;}
.ha{height:103.435525px;}
.h3{height:167.976562px;}
.h17{height:363.714000px;}
.h8{height:1190.250000px;}
.h7{height:1190.551500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:196.611000px;}
.w2{width:334.615500px;}
.w3{width:334.630500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:4.252500px;}
.x1{left:68.032500px;}
.x4{left:85.039350px;}
.x2a{left:87.574800px;}
.x13{left:89.036250px;}
.x3{left:90.396900px;}
.x3b{left:93.288150px;}
.x10{left:94.733850px;}
.x15{left:97.033687px;}
.x21{left:98.749845px;}
.x18{left:105.402600px;}
.x37{left:107.489700px;}
.x2c{left:113.855250px;}
.x19{left:121.915200px;}
.x20{left:168.491723px;}
.x1d{left:199.971300px;}
.xf{left:210.387300px;}
.x5{left:211.918050px;}
.x6{left:222.037800px;}
.x1e{left:232.291800px;}
.x22{left:253.075721px;}
.x38{left:263.451900px;}
.x14{left:267.873900px;}
.x39{left:271.020450px;}
.x1f{left:287.463889px;}
.x1a{left:309.033900px;}
.x1b{left:328.967700px;}
.x7{left:345.429900px;}
.x8{left:351.042450px;}
.x1c{left:352.983450px;}
.x11{left:457.083470px;}
.x2e{left:461.083350px;}
.x12{left:469.077807px;}
.x27{left:477.241500px;}
.x36{left:479.530958px;}
.x28{left:482.736450px;}
.x9{left:488.295900px;}
.xa{left:493.908600px;}
.x26{left:502.667700px;}
.x24{left:512.447100px;}
.x25{left:522.141600px;}
.x29{left:551.856000px;}
.x34{left:563.810850px;}
.x35{left:567.807750px;}
.xb{left:572.229750px;}
.x2f{left:576.651900px;}
.x2b{left:582.456600px;}
.xc{left:592.979400px;}
.x2d{left:624.397050px;}
.x16{left:640.601400px;}
.xd{left:690.689550px;}
.x23{left:694.771500px;}
.xe{left:709.058100px;}
.x30{left:719.773050px;}
.x31{left:723.769800px;}
.x3a{left:737.033591px;}
.x17{left:743.154704px;}
.x32{left:746.645550px;}
.x33{left:750.642300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:36.470955pt;}
.ls155{letter-spacing:-0.890422pt;}
.ls154{letter-spacing:-0.874801pt;}
.ls153{letter-spacing:-0.827936pt;}
.ls150{letter-spacing:-0.765451pt;}
.ls152{letter-spacing:-0.713379pt;}
.ls151{letter-spacing:-0.650893pt;}
.ls158{letter-spacing:-0.310832pt;}
.ls102{letter-spacing:-0.034006pt;}
.ls156{letter-spacing:-0.005181pt;}
.lsf2{letter-spacing:-0.004251pt;}
.ls0{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.003719pt;}
.ls9c{letter-spacing:0.004251pt;}
.ls19{letter-spacing:0.005207pt;}
.ls3{letter-spacing:0.005313pt;}
.ls15e{letter-spacing:0.010414pt;}
.ls157{letter-spacing:0.015542pt;}
.ls164{letter-spacing:0.039850pt;}
.ls14b{letter-spacing:0.041444pt;}
.ls147{letter-spacing:0.051805pt;}
.ls169{letter-spacing:0.079699pt;}
.ls15c{letter-spacing:0.104143pt;}
.ls165{letter-spacing:0.119549pt;}
.ls2{letter-spacing:0.265669pt;}
.ls59{letter-spacing:0.312429pt;}
.lse9{letter-spacing:0.395743pt;}
.lsdb{letter-spacing:0.437400pt;}
.lsbc{letter-spacing:0.442607pt;}
.ls8b{letter-spacing:0.453022pt;}
.ls1b{letter-spacing:0.458229pt;}
.ls11a{letter-spacing:0.463436pt;}
.ls66{letter-spacing:0.473850pt;}
.ls46{letter-spacing:0.479057pt;}
.ls41{letter-spacing:0.484265pt;}
.ls65{letter-spacing:0.489472pt;}
.ls50{letter-spacing:0.494679pt;}
.ls168{letter-spacing:0.499886pt;}
.lsfd{letter-spacing:0.505093pt;}
.ls67{letter-spacing:0.510300pt;}
.ls2a{letter-spacing:0.515508pt;}
.ls111{letter-spacing:0.520715pt;}
.ls13{letter-spacing:0.525922pt;}
.lse3{letter-spacing:0.531129pt;}
.ls78{letter-spacing:0.536336pt;}
.ls114{letter-spacing:0.541543pt;}
.ls77{letter-spacing:0.546750pt;}
.ls95{letter-spacing:0.551958pt;}
.lsc2{letter-spacing:0.557165pt;}
.ls52{letter-spacing:0.562372pt;}
.lse{letter-spacing:0.567579pt;}
.lsf8{letter-spacing:0.572786pt;}
.lse2{letter-spacing:0.577993pt;}
.ls2d{letter-spacing:0.583200pt;}
.ls69{letter-spacing:0.593615pt;}
.ls16{letter-spacing:0.598822pt;}
.ls96{letter-spacing:0.604029pt;}
.ls32{letter-spacing:0.609236pt;}
.ls142{letter-spacing:0.614443pt;}
.ls1f{letter-spacing:0.619650pt;}
.ls12{letter-spacing:0.624858pt;}
.ls15{letter-spacing:0.630065pt;}
.ls15d{letter-spacing:0.635272pt;}
.ls33{letter-spacing:0.640479pt;}
.ls61{letter-spacing:0.645686pt;}
.lse7{letter-spacing:0.650893pt;}
.ls91{letter-spacing:0.661308pt;}
.ls6a{letter-spacing:0.666515pt;}
.ls76{letter-spacing:0.671722pt;}
.lse4{letter-spacing:0.676929pt;}
.lsf0{letter-spacing:0.682136pt;}
.lsc1{letter-spacing:0.692551pt;}
.ls1c{letter-spacing:0.697758pt;}
.lse6{letter-spacing:0.702965pt;}
.lsa1{letter-spacing:0.713379pt;}
.lsd9{letter-spacing:0.718586pt;}
.ls87{letter-spacing:0.723793pt;}
.ls130{letter-spacing:0.734208pt;}
.ls72{letter-spacing:0.739415pt;}
.lseb{letter-spacing:0.744622pt;}
.lsa0{letter-spacing:0.760243pt;}
.ls2f{letter-spacing:0.770658pt;}
.ls7b{letter-spacing:0.775865pt;}
.lsf{letter-spacing:0.781072pt;}
.lsdd{letter-spacing:0.786279pt;}
.lsc6{letter-spacing:0.791486pt;}
.ls12d{letter-spacing:0.801901pt;}
.ls6d{letter-spacing:0.807108pt;}
.lsb3{letter-spacing:0.812315pt;}
.lsd8{letter-spacing:0.817522pt;}
.ls103{letter-spacing:0.822729pt;}
.lsf5{letter-spacing:0.827936pt;}
.ls2c{letter-spacing:0.833143pt;}
.ls49{letter-spacing:0.838351pt;}
.ls24{letter-spacing:0.843558pt;}
.ls48{letter-spacing:0.848765pt;}
.ls12b{letter-spacing:0.853972pt;}
.ls4a{letter-spacing:0.859179pt;}
.ls6f{letter-spacing:0.864386pt;}
.ls6{letter-spacing:0.869593pt;}
.ls47{letter-spacing:0.874801pt;}
.ls71{letter-spacing:0.880008pt;}
.lsf6{letter-spacing:0.885215pt;}
.ls70{letter-spacing:0.890422pt;}
.ls4c{letter-spacing:0.895629pt;}
.lscd{letter-spacing:0.900836pt;}
.lsa8{letter-spacing:0.906044pt;}
.lsa5{letter-spacing:0.911251pt;}
.ls83{letter-spacing:0.916458pt;}
.ls4b{letter-spacing:0.921665pt;}
.ls57{letter-spacing:0.926872pt;}
.lsf3{letter-spacing:0.932079pt;}
.ls7c{letter-spacing:0.937286pt;}
.ls136{letter-spacing:0.942494pt;}
.lsa7{letter-spacing:0.947701pt;}
.lsf9{letter-spacing:0.952908pt;}
.lsc0{letter-spacing:0.958115pt;}
.ls127{letter-spacing:0.963322pt;}
.lsfc{letter-spacing:0.968529pt;}
.ls107{letter-spacing:0.973736pt;}
.ls124{letter-spacing:0.978944pt;}
.ls6e{letter-spacing:0.984151pt;}
.lsec{letter-spacing:0.989358pt;}
.ls160{letter-spacing:0.994565pt;}
.ls25{letter-spacing:0.999772pt;}
.ls39{letter-spacing:1.004979pt;}
.ls3f{letter-spacing:1.015394pt;}
.lsfe{letter-spacing:1.020601pt;}
.lsf4{letter-spacing:1.036222pt;}
.lsa9{letter-spacing:1.041429pt;}
.ls88{letter-spacing:1.046636pt;}
.lsd0{letter-spacing:1.057051pt;}
.lsc7{letter-spacing:1.062258pt;}
.ls15f{letter-spacing:1.067465pt;}
.ls53{letter-spacing:1.072672pt;}
.ls11{letter-spacing:1.077879pt;}
.ls12f{letter-spacing:1.083087pt;}
.ls106{letter-spacing:1.088294pt;}
.ls10{letter-spacing:1.093501pt;}
.lsbb{letter-spacing:1.098708pt;}
.ls40{letter-spacing:1.103915pt;}
.ls15b{letter-spacing:1.109122pt;}
.ls109{letter-spacing:1.114329pt;}
.lsd1{letter-spacing:1.124744pt;}
.lsdc{letter-spacing:1.129951pt;}
.lsb7{letter-spacing:1.135158pt;}
.ls9d{letter-spacing:1.140365pt;}
.lsd2{letter-spacing:1.150779pt;}
.ls42{letter-spacing:1.161194pt;}
.ls126{letter-spacing:1.166401pt;}
.lsc3{letter-spacing:1.171608pt;}
.lsd3{letter-spacing:1.176815pt;}
.lsce{letter-spacing:1.187229pt;}
.lsd{letter-spacing:1.192437pt;}
.ls108{letter-spacing:1.197644pt;}
.lscb{letter-spacing:1.202851pt;}
.ls93{letter-spacing:1.208058pt;}
.ls58{letter-spacing:1.213265pt;}
.ls135{letter-spacing:1.218472pt;}
.ls8a{letter-spacing:1.223679pt;}
.lsc8{letter-spacing:1.228887pt;}
.ls11c{letter-spacing:1.239301pt;}
.ls11f{letter-spacing:1.244508pt;}
.ls6b{letter-spacing:1.249715pt;}
.ls133{letter-spacing:1.254922pt;}
.ls51{letter-spacing:1.265337pt;}
.ls8d{letter-spacing:1.270544pt;}
.ls31{letter-spacing:1.275751pt;}
.ls20{letter-spacing:1.280958pt;}
.ls122{letter-spacing:1.286165pt;}
.lsca{letter-spacing:1.291372pt;}
.ls148{letter-spacing:1.295133pt;}
.lsa{letter-spacing:1.296580pt;}
.lsea{letter-spacing:1.301787pt;}
.ls7{letter-spacing:1.306994pt;}
.ls30{letter-spacing:1.312201pt;}
.ls28{letter-spacing:1.317408pt;}
.ls6c{letter-spacing:1.322615pt;}
.lsb1{letter-spacing:1.333030pt;}
.ls162{letter-spacing:1.343444pt;}
.lscf{letter-spacing:1.348651pt;}
.ls10b{letter-spacing:1.353858pt;}
.ls115{letter-spacing:1.359065pt;}
.ls27{letter-spacing:1.369480pt;}
.ls4d{letter-spacing:1.374687pt;}
.ls8{letter-spacing:1.385101pt;}
.ls144{letter-spacing:1.395515pt;}
.ls74{letter-spacing:1.421551pt;}
.ls104{letter-spacing:1.426758pt;}
.ls113{letter-spacing:1.431965pt;}
.ls10c{letter-spacing:1.442380pt;}
.lsb2{letter-spacing:1.447587pt;}
.lsb6{letter-spacing:1.452794pt;}
.ls10d{letter-spacing:1.458001pt;}
.lsb4{letter-spacing:1.463208pt;}
.ls5b{letter-spacing:1.468415pt;}
.ls82{letter-spacing:1.473623pt;}
.ls13f{letter-spacing:1.489244pt;}
.lsaf{letter-spacing:1.494451pt;}
.lsd7{letter-spacing:1.499658pt;}
.ls73{letter-spacing:1.504865pt;}
.ls84{letter-spacing:1.510073pt;}
.ls105{letter-spacing:1.520487pt;}
.lsa6{letter-spacing:1.525694pt;}
.ls140{letter-spacing:1.536108pt;}
.ls139{letter-spacing:1.551730pt;}
.lsf7{letter-spacing:1.556937pt;}
.ls10e{letter-spacing:1.562144pt;}
.lsff{letter-spacing:1.572558pt;}
.ls13c{letter-spacing:1.598594pt;}
.ls75{letter-spacing:1.603801pt;}
.ls101{letter-spacing:1.607067pt;}
.ls100{letter-spacing:1.609008pt;}
.ls12c{letter-spacing:1.619423pt;}
.lsb5{letter-spacing:1.624630pt;}
.ls97{letter-spacing:1.635044pt;}
.lsfa{letter-spacing:1.650665pt;}
.ls11d{letter-spacing:1.655873pt;}
.lsa2{letter-spacing:1.676701pt;}
.ls35{letter-spacing:1.681908pt;}
.lsfb{letter-spacing:1.687116pt;}
.ls54{letter-spacing:1.692323pt;}
.ls36{letter-spacing:1.697530pt;}
.ls85{letter-spacing:1.707944pt;}
.ls9e{letter-spacing:1.713151pt;}
.ls10f{letter-spacing:1.718358pt;}
.ls86{letter-spacing:1.723566pt;}
.ls68{letter-spacing:1.728773pt;}
.ls134{letter-spacing:1.733980pt;}
.ls34{letter-spacing:1.744394pt;}
.lsa3{letter-spacing:1.749601pt;}
.ls146{letter-spacing:1.760016pt;}
.ls44{letter-spacing:1.770430pt;}
.ls11e{letter-spacing:1.775637pt;}
.ls92{letter-spacing:1.780844pt;}
.ls9{letter-spacing:1.786051pt;}
.lsd5{letter-spacing:1.791258pt;}
.lsac{letter-spacing:1.801673pt;}
.ls45{letter-spacing:1.812087pt;}
.ls37{letter-spacing:1.822501pt;}
.lsd4{letter-spacing:1.827708pt;}
.lsab{letter-spacing:1.832916pt;}
.ls125{letter-spacing:1.838123pt;}
.ls90{letter-spacing:1.853744pt;}
.lse1{letter-spacing:1.858951pt;}
.ls131{letter-spacing:1.864159pt;}
.ls8c{letter-spacing:1.869366pt;}
.ls62{letter-spacing:1.879780pt;}
.ls23{letter-spacing:1.884987pt;}
.ls137{letter-spacing:1.890194pt;}
.ls3a{letter-spacing:1.900609pt;}
.ls22{letter-spacing:1.905816pt;}
.ls8f{letter-spacing:1.911023pt;}
.ls3c{letter-spacing:1.916230pt;}
.lsd6{letter-spacing:1.921437pt;}
.ls3d{letter-spacing:1.926644pt;}
.ls38{letter-spacing:1.931851pt;}
.ls110{letter-spacing:1.942266pt;}
.ls143{letter-spacing:1.952680pt;}
.ls1e{letter-spacing:1.968301pt;}
.ls118{letter-spacing:1.973509pt;}
.ls3e{letter-spacing:1.978716pt;}
.ls4f{letter-spacing:1.989130pt;}
.ls119{letter-spacing:1.994337pt;}
.ls89{letter-spacing:2.004751pt;}
.ls99{letter-spacing:2.006365pt;}
.ls3b{letter-spacing:2.009959pt;}
.lsaa{letter-spacing:2.020373pt;}
.lsa4{letter-spacing:2.025580pt;}
.ls4e{letter-spacing:2.030787pt;}
.ls43{letter-spacing:2.035994pt;}
.lsed{letter-spacing:2.041201pt;}
.ls138{letter-spacing:2.056823pt;}
.ls12e{letter-spacing:2.067237pt;}
.ls5a{letter-spacing:2.072444pt;}
.ls14c{letter-spacing:2.077652pt;}
.ls112{letter-spacing:2.088066pt;}
.ls9b{letter-spacing:2.091380pt;}
.ls5{letter-spacing:2.093273pt;}
.lsdf{letter-spacing:2.098480pt;}
.lsbe{letter-spacing:2.103687pt;}
.ls81{letter-spacing:2.108894pt;}
.ls98{letter-spacing:2.125387pt;}
.ls8e{letter-spacing:2.134930pt;}
.lsc{letter-spacing:2.145344pt;}
.lsb9{letter-spacing:2.150552pt;}
.ls7e{letter-spacing:2.160966pt;}
.lse0{letter-spacing:2.166173pt;}
.ls117{letter-spacing:2.171380pt;}
.ls9a{letter-spacing:2.172145pt;}
.ls64{letter-spacing:2.176587pt;}
.lsde{letter-spacing:2.181794pt;}
.ls10a{letter-spacing:2.187002pt;}
.ls13a{letter-spacing:2.197416pt;}
.ls145{letter-spacing:2.202623pt;}
.lsb8{letter-spacing:2.228659pt;}
.ls161{letter-spacing:2.249487pt;}
.ls2b{letter-spacing:2.270316pt;}
.ls11b{letter-spacing:2.311973pt;}
.ls55{letter-spacing:2.317180pt;}
.ls14d{letter-spacing:2.327595pt;}
.ls13d{letter-spacing:2.348423pt;}
.lsda{letter-spacing:2.358837pt;}
.ls13e{letter-spacing:2.374459pt;}
.ls121{letter-spacing:2.384873pt;}
.ls123{letter-spacing:2.390080pt;}
.ls7a{letter-spacing:2.395287pt;}
.ls56{letter-spacing:2.400495pt;}
.lsb{letter-spacing:2.416116pt;}
.ls14f{letter-spacing:2.426530pt;}
.ls94{letter-spacing:2.436945pt;}
.lsae{letter-spacing:2.447359pt;}
.ls120{letter-spacing:2.478602pt;}
.lsf1{letter-spacing:2.520259pt;}
.lsad{letter-spacing:2.530673pt;}
.lsc4{letter-spacing:2.556709pt;}
.ls5c{letter-spacing:2.567123pt;}
.ls79{letter-spacing:2.572330pt;}
.ls4{letter-spacing:2.577538pt;}
.ls116{letter-spacing:2.582745pt;}
.ls13b{letter-spacing:2.587952pt;}
.ls141{letter-spacing:2.593159pt;}
.ls17{letter-spacing:2.598366pt;}
.ls21{letter-spacing:2.603573pt;}
.ls2e{letter-spacing:2.608780pt;}
.ls29{letter-spacing:2.613988pt;}
.ls63{letter-spacing:2.619195pt;}
.ls132{letter-spacing:2.629609pt;}
.lsb0{letter-spacing:2.634816pt;}
.ls15a{letter-spacing:2.640023pt;}
.ls26{letter-spacing:2.645231pt;}
.lscc{letter-spacing:2.650438pt;}
.ls7d{letter-spacing:2.655645pt;}
.lsc5{letter-spacing:2.660852pt;}
.ls5e{letter-spacing:2.666059pt;}
.ls7f{letter-spacing:2.671266pt;}
.lse5{letter-spacing:2.681681pt;}
.ls5f{letter-spacing:2.686888pt;}
.ls1d{letter-spacing:2.718131pt;}
.ls5d{letter-spacing:2.759788pt;}
.ls14a{letter-spacing:11.448979pt;}
.ls149{letter-spacing:11.500784pt;}
.ls16a{letter-spacing:12.916493pt;}
.ls163{letter-spacing:13.230067pt;}
.lse8{letter-spacing:14.112567pt;}
.ls18{letter-spacing:14.282598pt;}
.ls80{letter-spacing:17.652227pt;}
.ls1{letter-spacing:17.799845pt;}
.lsbf{letter-spacing:18.277085pt;}
.ls14{letter-spacing:18.589514pt;}
.ls1a{letter-spacing:18.625964pt;}
.ls9f{letter-spacing:18.886321pt;}
.ls159{letter-spacing:19.162300pt;}
.lsbd{letter-spacing:19.261236pt;}
.lsba{letter-spacing:19.354964pt;}
.ls166{letter-spacing:19.563250pt;}
.lsc9{letter-spacing:19.787157pt;}
.lsee{letter-spacing:19.792364pt;}
.ls128{letter-spacing:19.927750pt;}
.ls12a{letter-spacing:20.021479pt;}
.ls129{letter-spacing:20.245386pt;}
.ls167{letter-spacing:21.870016pt;}
.lsef{letter-spacing:21.937709pt;}
.ls14e{letter-spacing:23.749796pt;}
.ws125{word-spacing:-23.801867pt;}
.wsf0{word-spacing:-21.989780pt;}
.ws148{word-spacing:-21.922087pt;}
.ws10c{word-spacing:-20.297458pt;}
.ws10e{word-spacing:-20.073550pt;}
.ws10b{word-spacing:-19.979822pt;}
.wsed{word-spacing:-19.844436pt;}
.ws144{word-spacing:-19.615321pt;}
.wsc6{word-spacing:-19.407036pt;}
.wsd0{word-spacing:-19.313307pt;}
.ws93{word-spacing:-18.938392pt;}
.ws2c{word-spacing:-18.678035pt;}
.ws162{word-spacing:-9.340800pt;}
.wsf3{word-spacing:-2.608780pt;}
.wscb{word-spacing:-2.582745pt;}
.wsee{word-spacing:-2.150552pt;}
.ws111{word-spacing:-2.046409pt;}
.ws11b{word-spacing:-1.890194pt;}
.ws10d{word-spacing:-1.749601pt;}
.ws9f{word-spacing:-1.728773pt;}
.wsfc{word-spacing:-1.702737pt;}
.ws106{word-spacing:-1.572558pt;}
.ws10f{word-spacing:-1.411137pt;}
.wse7{word-spacing:-1.400722pt;}
.wsf9{word-spacing:-1.150779pt;}
.ws12d{word-spacing:-1.109122pt;}
.wsfe{word-spacing:-0.968529pt;}
.wsb8{word-spacing:-0.963322pt;}
.wsfa{word-spacing:-0.880008pt;}
.ws141{word-spacing:-0.864386pt;}
.ws8a{word-spacing:-0.859179pt;}
.wsfb{word-spacing:-0.827936pt;}
.wsdb{word-spacing:-0.650893pt;}
.ws72{word-spacing:-0.614443pt;}
.ws92{word-spacing:-0.588408pt;}
.ws114{word-spacing:-0.515508pt;}
.ws13e{word-spacing:-0.093250pt;}
.ws7{word-spacing:-0.054727pt;}
.ws12{word-spacing:-0.053134pt;}
.ws53{word-spacing:-0.052071pt;}
.ws37{word-spacing:-0.042508pt;}
.ws14b{word-spacing:-0.039850pt;}
.ws15b{word-spacing:-0.038788pt;}
.ws85{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.wsc5{word-spacing:0.011737pt;}
.ws13b{word-spacing:8.304395pt;}
.ws38{word-spacing:9.819110pt;}
.ws84{word-spacing:12.125114pt;}
.ws86{word-spacing:12.273888pt;}
.wsd9{word-spacing:12.348275pt;}
.ws83{word-spacing:12.385469pt;}
.ws88{word-spacing:12.418943pt;}
.ws87{word-spacing:12.497050pt;}
.ws3a{word-spacing:12.608630pt;}
.wsda{word-spacing:12.683018pt;}
.ws159{word-spacing:12.791722pt;}
.ws15d{word-spacing:12.838916pt;}
.ws157{word-spacing:12.871421pt;}
.ws158{word-spacing:12.951120pt;}
.ws39{word-spacing:12.980566pt;}
.ws154{word-spacing:12.990970pt;}
.ws161{word-spacing:12.994069pt;}
.ws152{word-spacing:13.030819pt;}
.ws15e{word-spacing:13.032858pt;}
.ws15a{word-spacing:13.047409pt;}
.ws156{word-spacing:13.070669pt;}
.ws15f{word-spacing:13.071646pt;}
.ws15c{word-spacing:13.110434pt;}
.ws155{word-spacing:13.110518pt;}
.ws32{word-spacing:13.150368pt;}
.ws160{word-spacing:13.188011pt;}
.ws31{word-spacing:13.190218pt;}
.ws151{word-spacing:13.230067pt;}
.ws14e{word-spacing:13.269917pt;}
.ws14c{word-spacing:13.309766pt;}
.ws30{word-spacing:13.349616pt;}
.ws153{word-spacing:13.389466pt;}
.ws150{word-spacing:13.429315pt;}
.ws14f{word-spacing:13.469165pt;}
.ws14d{word-spacing:13.509014pt;}
.wsc3{word-spacing:13.517459pt;}
.wsd8{word-spacing:13.687490pt;}
.wsc1{word-spacing:13.772506pt;}
.wsc0{word-spacing:13.810763pt;}
.wsc2{word-spacing:13.815013pt;}
.wsc4{word-spacing:13.857521pt;}
.ws33{word-spacing:13.900029pt;}
.ws34{word-spacing:13.942537pt;}
.ws35{word-spacing:13.985044pt;}
.wsf8{word-spacing:13.989295pt;}
.ws36{word-spacing:14.027552pt;}
.ws82{word-spacing:14.070060pt;}
.ws13c{word-spacing:14.096231pt;}
.ws81{word-spacing:14.112567pt;}
.wsb3{word-spacing:14.163439pt;}
.ws13d{word-spacing:14.298272pt;}
.wsae{word-spacing:14.319653pt;}
.wsaf{word-spacing:14.455039pt;}
.wsa6{word-spacing:14.465453pt;}
.wsab{word-spacing:14.533146pt;}
.wsaa{word-spacing:14.553975pt;}
.wsb7{word-spacing:14.580011pt;}
.wsa8{word-spacing:14.585218pt;}
.wsb0{word-spacing:14.637289pt;}
.wsb2{word-spacing:14.647704pt;}
.wsa7{word-spacing:14.673739pt;}
.wsb1{word-spacing:14.704982pt;}
.wsb5{word-spacing:14.725811pt;}
.wsb6{word-spacing:14.746639pt;}
.wsa5{word-spacing:14.751847pt;}
.ws101{word-spacing:14.792691pt;}
.ws100{word-spacing:14.877707pt;}
.ws102{word-spacing:14.962722pt;}
.ws13f{word-spacing:14.971741pt;}
.wsa9{word-spacing:15.204868pt;}
.ws135{word-spacing:15.241318pt;}
.wsb4{word-spacing:15.361083pt;}
.wsac{word-spacing:15.413154pt;}
.ws132{word-spacing:15.470433pt;}
.ws130{word-spacing:15.480847pt;}
.ws137{word-spacing:15.512090pt;}
.wsad{word-spacing:15.517297pt;}
.ws13a{word-spacing:15.522504pt;}
.ws133{word-spacing:15.553747pt;}
.ws134{word-spacing:15.751619pt;}
.ws138{word-spacing:15.767240pt;}
.ws12f{word-spacing:15.782862pt;}
.wsd7{word-spacing:15.876329pt;}
.ws7f{word-spacing:15.924149pt;}
.ws80{word-spacing:15.971969pt;}
.ws12e{word-spacing:15.984632pt;}
.ws140{word-spacing:16.033515pt;}
.ws139{word-spacing:16.038012pt;}
.ws5c{word-spacing:16.180163pt;}
.ws143{word-spacing:16.229045pt;}
.ws9d{word-spacing:16.277928pt;}
.ws78{word-spacing:16.326811pt;}
.wsd5{word-spacing:16.424576pt;}
.ws136{word-spacing:16.761805pt;}
.ws142{word-spacing:16.798255pt;}
.ws11d{word-spacing:16.819084pt;}
.ws11c{word-spacing:16.871155pt;}
.ws8c{word-spacing:16.912812pt;}
.ws21{word-spacing:16.923227pt;}
.ws5f{word-spacing:16.933641pt;}
.ws27{word-spacing:16.975298pt;}
.ws131{word-spacing:16.985712pt;}
.wsa0{word-spacing:16.996127pt;}
.ws6f{word-spacing:17.016955pt;}
.ws6e{word-spacing:17.027370pt;}
.wsce{word-spacing:17.048198pt;}
.wsca{word-spacing:17.053405pt;}
.ws103{word-spacing:17.058612pt;}
.ws118{word-spacing:17.069027pt;}
.ws75{word-spacing:17.074234pt;}
.ws9b{word-spacing:17.079441pt;}
.ws90{word-spacing:17.084648pt;}
.wsf2{word-spacing:17.089855pt;}
.ws5d{word-spacing:17.100270pt;}
.wscf{word-spacing:17.105477pt;}
.ws4b{word-spacing:17.121098pt;}
.ws56{word-spacing:17.126305pt;}
.ws9c{word-spacing:17.131513pt;}
.wsd4{word-spacing:17.136720pt;}
.wse4{word-spacing:17.141927pt;}
.ws147{word-spacing:17.152341pt;}
.ws57{word-spacing:17.157548pt;}
.ws49{word-spacing:17.162755pt;}
.ws1d{word-spacing:17.167963pt;}
.ws97{word-spacing:17.173170pt;}
.ws4a{word-spacing:17.178377pt;}
.ws99{word-spacing:17.183584pt;}
.ws64{word-spacing:17.188791pt;}
.ws124{word-spacing:17.193998pt;}
.ws54{word-spacing:17.199205pt;}
.wsba{word-spacing:17.204413pt;}
.ws104{word-spacing:17.209620pt;}
.ws8b{word-spacing:17.220034pt;}
.ws2b{word-spacing:17.230448pt;}
.ws95{word-spacing:17.235655pt;}
.ws25{word-spacing:17.240863pt;}
.ws71{word-spacing:17.246070pt;}
.wsde{word-spacing:17.251277pt;}
.ws1c{word-spacing:17.256484pt;}
.wsa4{word-spacing:17.261691pt;}
.ws50{word-spacing:17.266898pt;}
.ws43{word-spacing:17.272105pt;}
.ws40{word-spacing:17.277313pt;}
.ws9e{word-spacing:17.282520pt;}
.ws26{word-spacing:17.287727pt;}
.ws107{word-spacing:17.292934pt;}
.ws77{word-spacing:17.298141pt;}
.ws28{word-spacing:17.303348pt;}
.ws73{word-spacing:17.308556pt;}
.ws91{word-spacing:17.313763pt;}
.wse3{word-spacing:17.318970pt;}
.ws42{word-spacing:17.324177pt;}
.ws2f{word-spacing:17.329384pt;}
.wsa3{word-spacing:17.334591pt;}
.ws2e{word-spacing:17.339798pt;}
.ws45{word-spacing:17.345006pt;}
.ws69{word-spacing:17.350213pt;}
.wsef{word-spacing:17.355420pt;}
.wse8{word-spacing:17.360627pt;}
.ws74{word-spacing:17.365834pt;}
.ws1f{word-spacing:17.371041pt;}
.ws55{word-spacing:17.376248pt;}
.ws17{word-spacing:17.381456pt;}
.wsec{word-spacing:17.386663pt;}
.ws5b{word-spacing:17.391870pt;}
.ws3c{word-spacing:17.397077pt;}
.ws3b{word-spacing:17.402284pt;}
.ws19{word-spacing:17.407491pt;}
.ws58{word-spacing:17.412698pt;}
.ws6c{word-spacing:17.417906pt;}
.wsdc{word-spacing:17.423113pt;}
.ws65{word-spacing:17.428320pt;}
.ws22{word-spacing:17.433527pt;}
.ws1b{word-spacing:17.438734pt;}
.ws67{word-spacing:17.443941pt;}
.ws1e{word-spacing:17.449148pt;}
.ws4f{word-spacing:17.454356pt;}
.ws7a{word-spacing:17.459563pt;}
.ws47{word-spacing:17.464770pt;}
.ws51{word-spacing:17.469977pt;}
.ws94{word-spacing:17.475184pt;}
.ws113{word-spacing:17.480391pt;}
.ws3f{word-spacing:17.485599pt;}
.ws146{word-spacing:17.490806pt;}
.ws62{word-spacing:17.496013pt;}
.ws23{word-spacing:17.501220pt;}
.ws46{word-spacing:17.506427pt;}
.wsdd{word-spacing:17.511634pt;}
.wsbc{word-spacing:17.513186pt;}
.ws6b{word-spacing:17.516841pt;}
.wsf6{word-spacing:17.522049pt;}
.wsbb{word-spacing:17.527256pt;}
.ws70{word-spacing:17.532463pt;}
.ws63{word-spacing:17.537670pt;}
.ws59{word-spacing:17.542877pt;}
.ws5e{word-spacing:17.548084pt;}
.ws8e{word-spacing:17.553291pt;}
.wsa1{word-spacing:17.558499pt;}
.ws110{word-spacing:17.563706pt;}
.wse9{word-spacing:17.568913pt;}
.ws60{word-spacing:17.574120pt;}
.ws76{word-spacing:17.584534pt;}
.ws13{word-spacing:17.587310pt;}
.wseb{word-spacing:17.589741pt;}
.ws14a{word-spacing:17.594949pt;}
.ws4c{word-spacing:17.600156pt;}
.ws89{word-spacing:17.605363pt;}
.wsc7{word-spacing:17.610570pt;}
.wsf5{word-spacing:17.615777pt;}
.ws96{word-spacing:17.620984pt;}
.ws5a{word-spacing:17.626191pt;}
.ws6d{word-spacing:17.631399pt;}
.wsbe{word-spacing:17.636459pt;}
.wse6{word-spacing:17.636606pt;}
.wsa{word-spacing:17.640444pt;}
.ws61{word-spacing:17.641813pt;}
.wsa2{word-spacing:17.647020pt;}
.ws6a{word-spacing:17.652227pt;}
.wsea{word-spacing:17.657434pt;}
.ws105{word-spacing:17.662641pt;}
.wscd{word-spacing:17.667849pt;}
.ws3d{word-spacing:17.673056pt;}
.wsd6{word-spacing:17.683470pt;}
.wse2{word-spacing:17.688677pt;}
.ws9{word-spacing:17.693578pt;}
.ws8d{word-spacing:17.693884pt;}
.ws7b{word-spacing:17.699092pt;}
.ws24{word-spacing:17.704299pt;}
.wsb9{word-spacing:17.725127pt;}
.ws108{word-spacing:17.730334pt;}
.wsf1{word-spacing:17.745956pt;}
.ws10{word-spacing:17.746711pt;}
.ws68{word-spacing:17.756370pt;}
.ws145{word-spacing:17.761577pt;}
.ws122{word-spacing:17.771992pt;}
.ws11{word-spacing:17.794532pt;}
.wse{word-spacing:17.799845pt;}
.ws18{word-spacing:17.808442pt;}
.ws149{word-spacing:17.834477pt;}
.wsbf{word-spacing:17.844746pt;}
.wsd{word-spacing:17.852979pt;}
.ws48{word-spacing:17.860513pt;}
.wsc{word-spacing:17.906113pt;}
.ws16{word-spacing:17.907377pt;}
.ws52{word-spacing:17.912585pt;}
.wsbd{word-spacing:17.912759pt;}
.ws2d{word-spacing:17.922999pt;}
.ws129{word-spacing:17.933413pt;}
.wsb{word-spacing:17.959247pt;}
.ws29{word-spacing:17.964656pt;}
.ws117{word-spacing:18.011520pt;}
.ws8{word-spacing:18.012381pt;}
.ws79{word-spacing:18.016727pt;}
.ws15{word-spacing:18.068799pt;}
.ws14{word-spacing:18.094835pt;}
.ws128{word-spacing:18.120870pt;}
.wsd1{word-spacing:18.141699pt;}
.wsf4{word-spacing:18.146906pt;}
.wsf{word-spacing:18.171782pt;}
.ws66{word-spacing:18.172942pt;}
.ws4e{word-spacing:18.225013pt;}
.ws1a{word-spacing:18.277085pt;}
.ws11e{word-spacing:18.329156pt;}
.ws20{word-spacing:18.381228pt;}
.wsc9{word-spacing:18.433299pt;}
.ws12c{word-spacing:18.532235pt;}
.ws2a{word-spacing:18.537442pt;}
.ws11a{word-spacing:18.641585pt;}
.ws126{word-spacing:18.657207pt;}
.ws127{word-spacing:18.662414pt;}
.ws12a{word-spacing:18.776971pt;}
.ws12b{word-spacing:18.985257pt;}
.ws115{word-spacing:19.058157pt;}
.wscc{word-spacing:19.266443pt;}
.ws123{word-spacing:19.271650pt;}
.ws5{word-spacing:19.287840pt;}
.ws6{word-spacing:19.404736pt;}
.ws4{word-spacing:19.521632pt;}
.ws10a{word-spacing:19.688222pt;}
.ws121{word-spacing:19.932957pt;}
.ws44{word-spacing:20.037100pt;}
.ws116{word-spacing:20.136036pt;}
.ws119{word-spacing:20.865037pt;}
.wsff{word-spacing:21.193087pt;}
.ws120{word-spacing:21.578416pt;}
.wsf7{word-spacing:21.692973pt;}
.wse5{word-spacing:21.875223pt;}
.ws41{word-spacing:21.880430pt;}
.ws8f{word-spacing:21.911673pt;}
.ws1{word-spacing:23.485387pt;}
.ws4d{word-spacing:24.832882pt;}
.wsd3{word-spacing:25.259868pt;}
.wsc8{word-spacing:25.452533pt;}
.wsd2{word-spacing:25.457740pt;}
.ws11f{word-spacing:25.957626pt;}
.wse1{word-spacing:26.186741pt;}
.wsdf{word-spacing:26.264848pt;}
.wse0{word-spacing:26.514791pt;}
.wsfd{word-spacing:26.754320pt;}
.ws109{word-spacing:27.129234pt;}
.ws7e{word-spacing:27.826992pt;}
.ws9a{word-spacing:27.998828pt;}
.ws98{word-spacing:28.639307pt;}
.ws3e{word-spacing:30.305594pt;}
.ws7d{word-spacing:32.273895pt;}
.ws7c{word-spacing:32.700881pt;}
.ws112{word-spacing:32.877924pt;}
.ws2{word-spacing:42.464515pt;}
.ws3{word-spacing:42.719557pt;}
._45{margin-left:-21.719869pt;}
._44{margin-left:-20.510091pt;}
._21{margin-left:-18.960081pt;}
._9{margin-left:-18.016727pt;}
._8{margin-left:-1.249715pt;}
._4{width:1.344304pt;}
._0{width:7.529139pt;}
._48{width:12.233827pt;}
._1f{width:13.309974pt;}
._a{width:14.306006pt;}
._22{width:15.715169pt;}
._6{width:17.146282pt;}
._5{width:18.655249pt;}
._7{width:19.593870pt;}
._c{width:20.501159pt;}
._46{width:22.317831pt;}
._20{width:25.567090pt;}
._d{width:29.628665pt;}
._1{width:31.359899pt;}
._b{width:33.898525pt;}
._10{width:39.362161pt;}
._3{width:43.867247pt;}
._47{width:58.339814pt;}
._11{width:65.376894pt;}
._1b{width:69.797698pt;}
._1d{width:90.243918pt;}
._25{width:93.899583pt;}
._19{width:96.365031pt;}
._18{width:98.532926pt;}
._e{width:110.817661pt;}
._17{width:120.126854pt;}
._16{width:122.804842pt;}
._f{width:127.565708pt;}
._14{width:134.324437pt;}
._1e{width:143.931185pt;}
._1a{width:149.542206pt;}
._35{width:153.580441pt;}
._27{width:156.045889pt;}
._29{width:158.426322pt;}
._12{width:159.318985pt;}
._23{width:201.019071pt;}
._15{width:201.954241pt;}
._1c{width:204.887275pt;}
._13{width:215.981793pt;}
._26{width:217.979657pt;}
._3e{width:269.499029pt;}
._33{width:290.497850pt;}
._2f{width:300.801712pt;}
._2b{width:310.433977pt;}
._34{width:328.074686pt;}
._30{width:336.788771pt;}
._36{width:385.332603pt;}
._43{width:387.287958pt;}
._3a{width:390.178484pt;}
._40{width:405.608791pt;}
._2d{width:407.564147pt;}
._2a{width:410.454673pt;}
._39{width:466.777420pt;}
._41{width:510.772924pt;}
._3f{width:534.322208pt;}
._28{width:543.673909pt;}
._32{width:548.791828pt;}
._31{width:613.811669pt;}
._3b{width:626.181420pt;}
._3d{width:679.996210pt;}
._2e{width:689.985527pt;}
._3c{width:701.972708pt;}
._42{width:718.635740pt;}
._2c{width:754.342236pt;}
._38{width:824.267457pt;}
._37{width:832.854019pt;}
._24{width:963.182730pt;}
._2{width:1435.578797pt;}
.fs3{font-size:5.333333pt;}
.fsc{font-size:26.562667pt;}
.fs18{font-size:33.600000pt;}
.fs13{font-size:34.709867pt;}
.fs17{font-size:36.266667pt;}
.fse{font-size:37.193600pt;}
.fs15{font-size:38.788267pt;}
.fs7{font-size:38.961067pt;}
.fsb{font-size:39.849600pt;}
.fsd{font-size:42.507733pt;}
.fs2{font-size:42.666667pt;}
.fs12{font-size:44.013333pt;}
.fs16{font-size:47.421333pt;}
.fs10{font-size:47.820267pt;}
.fsf{font-size:48.882667pt;}
.fs14{font-size:51.805333pt;}
.fsa{font-size:52.071467pt;}
.fs9{font-size:53.133867pt;}
.fs8{font-size:54.727467pt;}
.fs6{font-size:58.448000pt;}
.fs11{font-size:58.683733pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.074667pt;}
.fs5{font-size:127.521067pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y213{bottom:0.131333pt;}
.yf{bottom:1.625333pt;}
.y210{bottom:9.411200pt;}
.y31d{bottom:74.532267pt;}
.y4f{bottom:81.867921pt;}
.y31c{bottom:83.864667pt;}
.yd0{bottom:84.691107pt;}
.y280{bottom:85.246381pt;}
.y239{bottom:85.271560pt;}
.y19e{bottom:85.282207pt;}
.y84{bottom:85.309341pt;}
.y18a{bottom:85.314694pt;}
.y106{bottom:85.406329pt;}
.y1b7{bottom:85.425117pt;}
.y1ed{bottom:85.581331pt;}
.ya8{bottom:86.664374pt;}
.ye{bottom:89.484000pt;}
.y215{bottom:90.560180pt;}
.y4e{bottom:92.449500pt;}
.y178{bottom:92.972160pt;}
.y310{bottom:95.134152pt;}
.y2c9{bottom:95.143895pt;}
.y27f{bottom:97.261035pt;}
.y145{bottom:97.892447pt;}
.y12e{bottom:97.954574pt;}
.ycf{bottom:100.637994pt;}
.y238{bottom:101.218447pt;}
.y19d{bottom:101.229094pt;}
.y83{bottom:101.256227pt;}
.y189{bottom:101.261581pt;}
.y105{bottom:101.353216pt;}
.y1b6{bottom:101.372003pt;}
.y1ec{bottom:101.528218pt;}
.ya7{bottom:102.611261pt;}
.yd{bottom:102.817333pt;}
.y4d{bottom:103.105467pt;}
.y177{bottom:106.277081pt;}
.y214{bottom:106.507067pt;}
.y30f{bottom:107.079069pt;}
.y2c8{bottom:107.088812pt;}
.y27e{bottom:109.205953pt;}
.y31b{bottom:112.783600pt;}
.y144{bottom:113.839333pt;}
.y12d{bottom:113.901461pt;}
.yc{bottom:116.150667pt;}
.yce{bottom:116.584881pt;}
.y237{bottom:117.165333pt;}
.y19c{bottom:117.175981pt;}
.y82{bottom:117.203114pt;}
.y188{bottom:117.208468pt;}
.y104{bottom:117.300103pt;}
.y1b5{bottom:117.318890pt;}
.y1eb{bottom:117.475104pt;}
.ya6{bottom:118.558148pt;}
.y30e{bottom:119.093724pt;}
.y2c7{bottom:119.103467pt;}
.y176{bottom:119.507613pt;}
.y27d{bottom:121.150870pt;}
.y4a{bottom:126.163228pt;}
.y20f{bottom:129.109333pt;}
.y212{bottom:129.240667pt;}
.y31a{bottom:129.330267pt;}
.yb{bottom:129.484000pt;}
.y143{bottom:129.789067pt;}
.y12c{bottom:129.848348pt;}
.y30d{bottom:131.038641pt;}
.y2c6{bottom:131.048384pt;}
.y45{bottom:132.500990pt;}
.ycd{bottom:132.531767pt;}
.y175{bottom:132.812533pt;}
.y27c{bottom:133.095788pt;}
.y236{bottom:133.114933pt;}
.y19b{bottom:133.122867pt;}
.y81{bottom:133.150001pt;}
.y187{bottom:133.155354pt;}
.y103{bottom:133.246989pt;}
.y1b4{bottom:133.265777pt;}
.y1ea{bottom:133.421991pt;}
.ya5{bottom:134.505034pt;}
.y49{bottom:138.177882pt;}
.y211{bottom:138.520533pt;}
.y30c{bottom:142.983559pt;}
.y2c5{bottom:142.993302pt;}
.y27b{bottom:145.040706pt;}
.y12b{bottom:145.795234pt;}
.y142{bottom:145.860324pt;}
.y319{bottom:145.876933pt;}
.ycc{bottom:148.400547pt;}
.y44{bottom:148.447877pt;}
.y19a{bottom:149.069754pt;}
.y80{bottom:149.096887pt;}
.y186{bottom:149.102241pt;}
.y102{bottom:149.193876pt;}
.y1b3{bottom:149.212663pt;}
.y1e9{bottom:149.368878pt;}
.y48{bottom:150.122800pt;}
.ya4{bottom:150.373814pt;}
.y47{bottom:154.507067pt;}
.y30b{bottom:154.928477pt;}
.y2c4{bottom:154.938219pt;}
.y27a{bottom:156.985623pt;}
.y12a{bottom:161.742121pt;}
.y141{bottom:161.807210pt;}
.y46{bottom:162.066133pt;}
.y318{bottom:162.423600pt;}
.y43{bottom:164.316656pt;}
.ycb{bottom:164.347433pt;}
.y199{bottom:164.938533pt;}
.y185{bottom:164.971021pt;}
.y7f{bottom:165.043774pt;}
.y235{bottom:165.068121pt;}
.y101{bottom:165.140763pt;}
.y1b2{bottom:165.159550pt;}
.y1e8{bottom:165.315764pt;}
.ya3{bottom:166.320701pt;}
.y30a{bottom:166.873394pt;}
.y2c3{bottom:166.883137pt;}
.y279{bottom:169.000278pt;}
.y20e{bottom:172.996914pt;}
.y129{bottom:177.689008pt;}
.y140{bottom:177.754097pt;}
.y309{bottom:178.818312pt;}
.y2c2{bottom:178.828055pt;}
.y317{bottom:178.970267pt;}
.y42{bottom:180.263543pt;}
.yca{bottom:180.294320pt;}
.y198{bottom:180.888133pt;}
.y184{bottom:180.917907pt;}
.y278{bottom:180.945195pt;}
.y7e{bottom:180.990661pt;}
.y234{bottom:181.015008pt;}
.y100{bottom:181.087649pt;}
.y1b1{bottom:181.106437pt;}
.y1e7{bottom:181.262651pt;}
.ya2{bottom:182.267587pt;}
.y20d{bottom:188.943801pt;}
.y308{bottom:190.832966pt;}
.y2c1{bottom:190.842709pt;}
.y277{bottom:192.890113pt;}
.y128{bottom:193.635894pt;}
.y13f{bottom:193.700984pt;}
.y316{bottom:195.516933pt;}
.y36{bottom:196.184394pt;}
.y41{bottom:196.210430pt;}
.yc9{bottom:196.241207pt;}
.y183{bottom:196.864794pt;}
.y7d{bottom:196.937547pt;}
.y233{bottom:196.961894pt;}
.yff{bottom:197.034536pt;}
.y1b0{bottom:197.053323pt;}
.y1e6{bottom:197.209538pt;}
.ya1{bottom:198.214474pt;}
.y307{bottom:202.777884pt;}
.y2c0{bottom:202.787627pt;}
.y276{bottom:204.835030pt;}
.y20c{bottom:204.890688pt;}
.y127{bottom:209.504674pt;}
.y13e{bottom:209.569763pt;}
.y35{bottom:212.131281pt;}
.y40{bottom:212.157316pt;}
.yc8{bottom:212.188093pt;}
.y197{bottom:212.795473pt;}
.y7c{bottom:212.806327pt;}
.y182{bottom:212.811681pt;}
.y232{bottom:212.830674pt;}
.yfe{bottom:212.903315pt;}
.y1af{bottom:212.922103pt;}
.y1e5{bottom:213.078317pt;}
.ya0{bottom:214.161361pt;}
.y306{bottom:214.722801pt;}
.y2bf{bottom:214.732544pt;}
.y275{bottom:216.779948pt;}
.y20b{bottom:220.837574pt;}
.y315{bottom:223.419067pt;}
.y126{bottom:225.451561pt;}
.y13d{bottom:225.516650pt;}
.y305{bottom:226.667719pt;}
.y2be{bottom:226.677462pt;}
.y34{bottom:228.078167pt;}
.y3f{bottom:228.104203pt;}
.yc7{bottom:228.134980pt;}
.y274{bottom:228.724866pt;}
.y196{bottom:228.742360pt;}
.y7b{bottom:228.753213pt;}
.y181{bottom:228.758567pt;}
.y231{bottom:228.777561pt;}
.yfd{bottom:228.850202pt;}
.y1ae{bottom:228.868989pt;}
.y1e4{bottom:229.025204pt;}
.y9f{bottom:230.108247pt;}
.y20a{bottom:236.784461pt;}
.y314{bottom:237.645467pt;}
.y304{bottom:238.612637pt;}
.y2bd{bottom:238.622379pt;}
.y273{bottom:240.669783pt;}
.y125{bottom:241.398447pt;}
.y13c{bottom:241.463537pt;}
.y33{bottom:244.025054pt;}
.y3e{bottom:244.051090pt;}
.yc6{bottom:244.081867pt;}
.y195{bottom:244.689247pt;}
.y7a{bottom:244.700100pt;}
.y180{bottom:244.705454pt;}
.y230{bottom:244.724447pt;}
.yfc{bottom:244.797089pt;}
.y1ad{bottom:244.815876pt;}
.y1e3{bottom:244.972090pt;}
.y9e{bottom:246.055134pt;}
.y303{bottom:250.557554pt;}
.y2bc{bottom:250.567297pt;}
.y272{bottom:252.684438pt;}
.y209{bottom:252.731348pt;}
.y124{bottom:257.345334pt;}
.y13b{bottom:257.410423pt;}
.ya{bottom:259.562667pt;}
.y32{bottom:259.971941pt;}
.y3d{bottom:259.997976pt;}
.yc5{bottom:260.031467pt;}
.y194{bottom:260.636133pt;}
.y192{bottom:260.646914pt;}
.y79{bottom:260.646987pt;}
.y17f{bottom:260.652341pt;}
.y22f{bottom:260.671334pt;}
.yfb{bottom:260.743975pt;}
.y1ac{bottom:260.762763pt;}
.y1e2{bottom:260.918977pt;}
.y9d{bottom:262.002021pt;}
.y302{bottom:262.502472pt;}
.y2bb{bottom:262.512215pt;}
.y271{bottom:264.629355pt;}
.y193{bottom:266.381067pt;}
.y208{bottom:268.600127pt;}
.y9{bottom:272.896000pt;}
.y123{bottom:273.292221pt;}
.y13a{bottom:273.357310pt;}
.y301{bottom:274.517126pt;}
.y2ba{bottom:274.526869pt;}
.y31{bottom:275.918827pt;}
.y3c{bottom:275.944863pt;}
.y270{bottom:276.574273pt;}
.y191{bottom:276.593801pt;}
.y78{bottom:276.593873pt;}
.y17e{bottom:276.599227pt;}
.y22e{bottom:276.618221pt;}
.yfa{bottom:276.690862pt;}
.y1ab{bottom:276.709649pt;}
.y1e1{bottom:276.865864pt;}
.y9c{bottom:277.870800pt;}
.y207{bottom:284.547014pt;}
.y8{bottom:286.229333pt;}
.y300{bottom:286.462044pt;}
.y2b9{bottom:286.471787pt;}
.y26f{bottom:288.519190pt;}
.y122{bottom:289.239107pt;}
.y139{bottom:289.304197pt;}
.y30{bottom:291.787607pt;}
.y3b{bottom:291.813642pt;}
.yc4{bottom:291.887421pt;}
.y190{bottom:292.462580pt;}
.y17d{bottom:292.468007pt;}
.y77{bottom:292.540760pt;}
.y22d{bottom:292.565107pt;}
.yf9{bottom:292.637749pt;}
.y1aa{bottom:292.656536pt;}
.y1e0{bottom:292.812750pt;}
.y9b{bottom:293.820400pt;}
.y2ff{bottom:298.406961pt;}
.y2b8{bottom:298.416704pt;}
.y7{bottom:299.562667pt;}
.y26e{bottom:300.464108pt;}
.y206{bottom:300.493901pt;}
.y121{bottom:305.185994pt;}
.y138{bottom:305.251083pt;}
.y2f{bottom:307.734493pt;}
.y3a{bottom:307.760529pt;}
.yc3{bottom:307.834307pt;}
.y18f{bottom:308.409467pt;}
.y17c{bottom:308.414893pt;}
.y18d{bottom:308.466965pt;}
.y76{bottom:308.487647pt;}
.y22c{bottom:308.511994pt;}
.yf8{bottom:308.584635pt;}
.y1a9{bottom:308.603423pt;}
.y1df{bottom:308.759637pt;}
.y2fe{bottom:310.351879pt;}
.y2b7{bottom:310.361622pt;}
.y26d{bottom:312.409026pt;}
.y108{bottom:313.149200pt;}
.y18e{bottom:314.229867pt;}
.y205{bottom:316.440787pt;}
.y120{bottom:321.132881pt;}
.y137{bottom:321.197970pt;}
.y2fd{bottom:322.296797pt;}
.y2b6{bottom:322.306539pt;}
.y2e{bottom:323.681380pt;}
.y39{bottom:323.707416pt;}
.yc2{bottom:323.781194pt;}
.y17b{bottom:324.361780pt;}
.y18c{bottom:324.413851pt;}
.y26c{bottom:324.423680pt;}
.y75{bottom:324.434533pt;}
.y22b{bottom:324.458881pt;}
.yf7{bottom:324.531522pt;}
.y1a8{bottom:324.550309pt;}
.y1de{bottom:324.706524pt;}
.y9a{bottom:325.827445pt;}
.y204{bottom:332.387674pt;}
.y2fc{bottom:334.241714pt;}
.y2b5{bottom:334.251457pt;}
.y26b{bottom:336.368598pt;}
.y11f{bottom:337.001660pt;}
.y136{bottom:337.066749pt;}
.y2d{bottom:339.628267pt;}
.y38{bottom:339.654302pt;}
.yc1{bottom:339.728081pt;}
.y74{bottom:340.308667pt;}
.y22a{bottom:340.327660pt;}
.y18b{bottom:340.360738pt;}
.yf6{bottom:340.400302pt;}
.y1a7{bottom:340.419089pt;}
.y1dd{bottom:340.575303pt;}
.y99{bottom:341.774332pt;}
.y2fb{bottom:346.256369pt;}
.y2b4{bottom:346.266111pt;}
.y26a{bottom:348.313515pt;}
.y203{bottom:348.334561pt;}
.y11e{bottom:352.948547pt;}
.y135{bottom:353.013636pt;}
.y2c{bottom:355.577867pt;}
.y37{bottom:355.601189pt;}
.yc0{bottom:355.674967pt;}
.y73{bottom:356.258267pt;}
.y229{bottom:356.274547pt;}
.yf5{bottom:356.347188pt;}
.y1a6{bottom:356.365975pt;}
.y1dc{bottom:356.522190pt;}
.y98{bottom:357.721218pt;}
.y2fa{bottom:358.201286pt;}
.y2b3{bottom:358.211029pt;}
.y269{bottom:360.258433pt;}
.y202{bottom:364.281447pt;}
.y11d{bottom:368.895433pt;}
.y134{bottom:368.960523pt;}
.y2f9{bottom:370.146204pt;}
.y2b2{bottom:370.155947pt;}
.ybf{bottom:371.621854pt;}
.y268{bottom:372.203350pt;}
.y228{bottom:372.221433pt;}
.yf4{bottom:372.294075pt;}
.y1a5{bottom:372.312862pt;}
.y1db{bottom:372.469077pt;}
.y97{bottom:373.668105pt;}
.y201{bottom:380.228334pt;}
.y1a2{bottom:381.123360pt;}
.y2f8{bottom:382.091121pt;}
.y2b1{bottom:382.100864pt;}
.y267{bottom:384.148268pt;}
.y11c{bottom:384.842320pt;}
.y133{bottom:384.907409pt;}
.ybe{bottom:387.568741pt;}
.y227{bottom:388.168320pt;}
.yf3{bottom:388.240962pt;}
.y72{bottom:388.259749pt;}
.y1da{bottom:388.415963pt;}
.y96{bottom:389.614992pt;}
.y2f7{bottom:394.036039pt;}
.y2b0{bottom:394.045782pt;}
.y1a1{bottom:394.428281pt;}
.y200{bottom:396.097113pt;}
.y266{bottom:396.162922pt;}
.y2b{bottom:400.042813pt;}
.y11b{bottom:400.789207pt;}
.y132{bottom:400.854296pt;}
.ybd{bottom:403.437520pt;}
.y226{bottom:404.115207pt;}
.yf2{bottom:404.187848pt;}
.y71{bottom:404.206635pt;}
.y1d9{bottom:404.362850pt;}
.y95{bottom:405.483771pt;}
.y2f6{bottom:405.980957pt;}
.y2af{bottom:405.990699pt;}
.y1a0{bottom:407.658813pt;}
.y265{bottom:408.107840pt;}
.y1ff{bottom:412.044000pt;}
.y2a{bottom:415.916555pt;}
.y11a{bottom:416.736093pt;}
.y131{bottom:416.801183pt;}
.y2f5{bottom:417.925874pt;}
.y2ae{bottom:417.935617pt;}
.ybc{bottom:419.384407pt;}
.y264{bottom:420.052758pt;}
.y225{bottom:420.062093pt;}
.yf1{bottom:420.134735pt;}
.y70{bottom:420.153522pt;}
.y1d8{bottom:420.309737pt;}
.y19f{bottom:420.963733pt;}
.y94{bottom:421.430658pt;}
.y1fe{bottom:427.993600pt;}
.y2f4{bottom:429.940529pt;}
.y2ad{bottom:429.950271pt;}
.y29{bottom:431.869999pt;}
.y263{bottom:431.997675pt;}
.y119{bottom:432.682980pt;}
.y130{bottom:432.748069pt;}
.ybb{bottom:435.331293pt;}
.y224{bottom:436.008980pt;}
.yf0{bottom:436.081622pt;}
.y6f{bottom:436.100409pt;}
.y1d7{bottom:436.256623pt;}
.y93{bottom:437.377545pt;}
.y2f3{bottom:441.885446pt;}
.y2ac{bottom:441.895189pt;}
.y262{bottom:443.942593pt;}
.y1fd{bottom:443.943200pt;}
.y28{bottom:447.823442pt;}
.y118{bottom:448.629867pt;}
.y12f{bottom:448.694956pt;}
.yba{bottom:451.278180pt;}
.y223{bottom:451.955867pt;}
.yef{bottom:452.028508pt;}
.y6e{bottom:452.047295pt;}
.y174{bottom:452.138421pt;}
.y1d6{bottom:452.203510pt;}
.y92{bottom:453.324431pt;}
.y2f2{bottom:453.830364pt;}
.y2ab{bottom:453.840107pt;}
.y261{bottom:455.887510pt;}
.y27{bottom:463.776886pt;}
.y2f1{bottom:465.775281pt;}
.y2aa{bottom:465.785024pt;}
.yb9{bottom:467.225067pt;}
.y222{bottom:467.829867pt;}
.y260{bottom:467.832428pt;}
.yee{bottom:467.897288pt;}
.y6d{bottom:467.916075pt;}
.y173{bottom:468.007200pt;}
.y1d5{bottom:468.072289pt;}
.y91{bottom:469.271318pt;}
.y2f0{bottom:477.720199pt;}
.y2a9{bottom:477.729942pt;}
.y25f{bottom:479.847082pt;}
.y155{bottom:481.136438pt;}
.y26{bottom:483.728653pt;}
.y1fc{bottom:483.817247pt;}
.yed{bottom:483.844174pt;}
.y6c{bottom:483.862962pt;}
.y172{bottom:483.954087pt;}
.y1d4{bottom:484.019176pt;}
.y90{bottom:485.218205pt;}
.y2ef{bottom:489.665117pt;}
.y2a8{bottom:489.674859pt;}
.y25e{bottom:491.792000pt;}
.y154{bottom:492.396800pt;}
.y25{bottom:499.682096pt;}
.y221{bottom:499.761421pt;}
.y1fb{bottom:499.764134pt;}
.yec{bottom:499.791061pt;}
.y6b{bottom:499.809848pt;}
.y171{bottom:499.900973pt;}
.y1d3{bottom:499.966063pt;}
.y8f{bottom:501.165091pt;}
.y2ee{bottom:501.679771pt;}
.y2a7{bottom:501.689514pt;}
.y25d{bottom:503.725862pt;}
.y313{bottom:504.952235pt;}
.y153{bottom:510.659611pt;}
.y115{bottom:511.437254pt;}
.y2ed{bottom:513.624689pt;}
.y2a6{bottom:513.634431pt;}
.y24{bottom:515.555839pt;}
.y220{bottom:515.708307pt;}
.y1fa{bottom:515.711021pt;}
.yeb{bottom:515.737948pt;}
.y6a{bottom:515.756735pt;}
.y170{bottom:515.847860pt;}
.y1d2{bottom:515.912949pt;}
.y312{bottom:516.288106pt;}
.y8e{bottom:517.111978pt;}
.y114{bottom:524.667786pt;}
.y2ec{bottom:525.569606pt;}
.y2a5{bottom:525.579349pt;}
.y152{bottom:526.536249pt;}
.y311{bottom:527.546400pt;}
.y23{bottom:531.509282pt;}
.y25c{bottom:531.620582pt;}
.y21f{bottom:531.655194pt;}
.y1f9{bottom:531.657907pt;}
.yea{bottom:531.684834pt;}
.y69{bottom:531.703622pt;}
.y16f{bottom:531.794747pt;}
.y1d1{bottom:531.859836pt;}
.y8d{bottom:532.980757pt;}
.y2a2{bottom:537.500235pt;}
.y2eb{bottom:537.514524pt;}
.y2a4{bottom:537.524267pt;}
.y113{bottom:537.972706pt;}
.y2a3{bottom:541.984133pt;}
.y151{bottom:542.487276pt;}
.y25b{bottom:543.565499pt;}
.y22{bottom:547.462726pt;}
.y21e{bottom:547.602081pt;}
.y1f8{bottom:547.604794pt;}
.ye9{bottom:547.631721pt;}
.y68{bottom:547.650508pt;}
.y16e{bottom:547.741633pt;}
.y1d0{bottom:547.806723pt;}
.y8c{bottom:548.927644pt;}
.y2a1{bottom:549.445153pt;}
.y2ea{bottom:549.459441pt;}
.y112{bottom:551.277627pt;}
.y150{bottom:558.438303pt;}
.y2a0{bottom:561.390070pt;}
.y2e9{bottom:561.404359pt;}
.y21{bottom:563.416169pt;}
.y21d{bottom:563.548967pt;}
.y1f7{bottom:563.551681pt;}
.ye8{bottom:563.578608pt;}
.y67{bottom:563.597395pt;}
.y16d{bottom:563.688520pt;}
.y1cf{bottom:563.753609pt;}
.y111{bottom:564.582547pt;}
.y8b{bottom:564.874531pt;}
.y25a{bottom:567.455335pt;}
.y29f{bottom:573.334988pt;}
.y2e8{bottom:573.349277pt;}
.y14f{bottom:574.389330pt;}
.y110{bottom:577.813079pt;}
.y20{bottom:579.369613pt;}
.y259{bottom:579.469989pt;}
.y21c{bottom:579.495854pt;}
.y1f6{bottom:579.498567pt;}
.ye7{bottom:579.525494pt;}
.y66{bottom:579.544282pt;}
.y16c{bottom:579.635407pt;}
.y1ce{bottom:579.700496pt;}
.y8a{bottom:580.821417pt;}
.y29e{bottom:585.349642pt;}
.y2e7{bottom:585.363931pt;}
.y14e{bottom:590.340357pt;}
.y10f{bottom:591.118000pt;}
.y258{bottom:591.414907pt;}
.y1f{bottom:595.323056pt;}
.y21b{bottom:595.364633pt;}
.y1f5{bottom:595.367347pt;}
.ye6{bottom:595.394274pt;}
.y65{bottom:595.413061pt;}
.y16b{bottom:595.504186pt;}
.y1cd{bottom:595.569275pt;}
.y89{bottom:596.768304pt;}
.y29d{bottom:597.294560pt;}
.y2e6{bottom:597.308849pt;}
.y257{bottom:603.359824pt;}
.y14d{bottom:606.291384pt;}
.y107{bottom:607.142667pt;}
.y29c{bottom:609.239478pt;}
.y2e5{bottom:609.253766pt;}
.y1e{bottom:611.276500pt;}
.y21a{bottom:611.311520pt;}
.y1f4{bottom:611.314233pt;}
.ye5{bottom:611.341161pt;}
.y64{bottom:611.359948pt;}
.y16a{bottom:611.451073pt;}
.y1cc{bottom:611.516162pt;}
.y88{bottom:612.715191pt;}
.y256{bottom:615.304742pt;}
.y29b{bottom:621.184395pt;}
.y2e4{bottom:621.198684pt;}
.y14c{bottom:622.242411pt;}
.y255{bottom:627.249659pt;}
.y219{bottom:627.258407pt;}
.y1f3{bottom:627.261120pt;}
.ye4{bottom:627.288047pt;}
.y63{bottom:627.306834pt;}
.y169{bottom:627.397959pt;}
.y1cb{bottom:627.463049pt;}
.y87{bottom:628.662077pt;}
.y1d{bottom:631.161849pt;}
.y29a{bottom:633.129313pt;}
.y2e3{bottom:633.143601pt;}
.y14b{bottom:638.193438pt;}
.y254{bottom:639.194577pt;}
.y218{bottom:643.205293pt;}
.y1f2{bottom:643.208007pt;}
.ye3{bottom:643.234934pt;}
.y62{bottom:643.253721pt;}
.y168{bottom:643.344846pt;}
.y1ca{bottom:643.409935pt;}
.y86{bottom:644.608964pt;}
.y299{bottom:645.074230pt;}
.y2e2{bottom:645.088519pt;}
.y1c{bottom:647.115293pt;}
.y14a{bottom:654.070076pt;}
.y298{bottom:657.088885pt;}
.y2e1{bottom:657.103173pt;}
.y217{bottom:659.152180pt;}
.y1f1{bottom:659.154893pt;}
.ye2{bottom:659.181821pt;}
.y61{bottom:659.200608pt;}
.y167{bottom:659.291733pt;}
.y1c9{bottom:659.356822pt;}
.y85{bottom:660.477743pt;}
.y1b{bottom:663.068736pt;}
.y253{bottom:663.154149pt;}
.y297{bottom:669.033802pt;}
.y2e0{bottom:669.048091pt;}
.y149{bottom:670.021103pt;}
.y251{bottom:675.095898pt;}
.y216{bottom:675.099067pt;}
.y1f0{bottom:675.101780pt;}
.ye1{bottom:675.128707pt;}
.y60{bottom:675.147494pt;}
.y166{bottom:675.238619pt;}
.y1c8{bottom:675.303709pt;}
.y6{bottom:677.516000pt;}
.y1a{bottom:679.022180pt;}
.y252{bottom:679.483333pt;}
.y296{bottom:680.978720pt;}
.y2df{bottom:680.993009pt;}
.y148{bottom:685.972130pt;}
.y250{bottom:687.040816pt;}
.y1ef{bottom:691.048667pt;}
.ye0{bottom:691.075594pt;}
.y5f{bottom:691.094381pt;}
.y165{bottom:691.185506pt;}
.y1c7{bottom:691.250595pt;}
.y5{bottom:692.634667pt;}
.y295{bottom:692.923638pt;}
.y2de{bottom:692.937926pt;}
.yb8{bottom:692.944888pt;}
.y19{bottom:694.975623pt;}
.y24d{bottom:698.984149pt;}
.y24f{bottom:698.985733pt;}
.y147{bottom:701.923157pt;}
.y24e{bottom:703.445467pt;}
.yb7{bottom:704.279638pt;}
.y294{bottom:704.868555pt;}
.y2dd{bottom:704.882844pt;}
.y1ee{bottom:706.998267pt;}
.ydf{bottom:707.022481pt;}
.y5e{bottom:707.041268pt;}
.y164{bottom:707.132393pt;}
.y1c6{bottom:707.197482pt;}
.y24b{bottom:710.927349pt;}
.y18{bottom:710.929067pt;}
.y24c{bottom:715.388800pt;}
.yb6{bottom:715.540000pt;}
.y293{bottom:716.813473pt;}
.y2dc{bottom:716.827761pt;}
.y146{bottom:717.874184pt;}
.y24a{bottom:722.872267pt;}
.y248{bottom:722.876546pt;}
.yde{bottom:722.891260pt;}
.y5d{bottom:722.910047pt;}
.y163{bottom:723.001172pt;}
.y1c5{bottom:723.066262pt;}
.y249{bottom:727.332133pt;}
.y2db{bottom:728.722647pt;}
.y292{bottom:728.758390pt;}
.y10d{bottom:730.178667pt;}
.yb5{bottom:733.825211pt;}
.y17{bottom:734.815600pt;}
.y247{bottom:734.891200pt;}
.ydd{bottom:738.838147pt;}
.y5c{bottom:738.856934pt;}
.y162{bottom:738.948059pt;}
.y1c4{bottom:739.013148pt;}
.y246{bottom:739.275333pt;}
.y2da{bottom:740.737302pt;}
.y291{bottom:740.773045pt;}
.y245{bottom:746.827456pt;}
.y10c{bottom:746.991760pt;}
.yb4{bottom:749.776238pt;}
.y2d9{bottom:752.692182pt;}
.y290{bottom:752.717962pt;}
.ydc{bottom:754.785033pt;}
.y5b{bottom:754.803821pt;}
.y161{bottom:754.894946pt;}
.y1c3{bottom:754.960035pt;}
.y10b{bottom:756.157537pt;}
.y2d8{bottom:764.637099pt;}
.y28f{bottom:764.662880pt;}
.yb3{bottom:765.727265pt;}
.y244{bottom:770.717291pt;}
.ydb{bottom:770.731920pt;}
.y5a{bottom:770.750707pt;}
.y160{bottom:770.841832pt;}
.y1c2{bottom:770.906922pt;}
.y2d7{bottom:776.582017pt;}
.y28e{bottom:776.607798pt;}
.yb2{bottom:781.603903pt;}
.y243{bottom:782.662209pt;}
.y15{bottom:785.984524pt;}
.yda{bottom:786.678807pt;}
.y59{bottom:786.697594pt;}
.y15f{bottom:786.788719pt;}
.y1c1{bottom:786.853808pt;}
.y2d6{bottom:788.526935pt;}
.y28d{bottom:788.552715pt;}
.y16{bottom:792.415467pt;}
.y242{bottom:794.607126pt;}
.yb1{bottom:797.554930pt;}
.y2d5{bottom:800.471852pt;}
.y28c{bottom:800.497633pt;}
.yd9{bottom:802.625693pt;}
.y58{bottom:802.644481pt;}
.y15e{bottom:802.735606pt;}
.y1c0{bottom:802.800695pt;}
.y4{bottom:803.573333pt;}
.y13{bottom:804.585600pt;}
.y241{bottom:806.552044pt;}
.y14{bottom:811.010800pt;}
.y2d4{bottom:812.486507pt;}
.y28b{bottom:812.512287pt;}
.yb0{bottom:813.505957pt;}
.y240{bottom:818.566698pt;}
.yd8{bottom:818.572580pt;}
.y57{bottom:818.591367pt;}
.y15d{bottom:818.682492pt;}
.y1bf{bottom:818.747582pt;}
.y2d3{bottom:824.431424pt;}
.y28a{bottom:824.457205pt;}
.yaf{bottom:829.456984pt;}
.y23f{bottom:830.511616pt;}
.yd7{bottom:834.519467pt;}
.y56{bottom:834.538254pt;}
.y15c{bottom:834.629379pt;}
.y1be{bottom:834.694468pt;}
.y2d2{bottom:836.376342pt;}
.y12{bottom:836.395924pt;}
.y289{bottom:836.402122pt;}
.y23e{bottom:842.456533pt;}
.y3{bottom:843.573333pt;}
.yae{bottom:845.408011pt;}
.y2d1{bottom:848.321259pt;}
.y288{bottom:848.347040pt;}
.yd6{bottom:850.393600pt;}
.y55{bottom:850.407033pt;}
.y15b{bottom:850.498158pt;}
.y1bd{bottom:850.563248pt;}
.y2d0{bottom:860.266177pt;}
.y287{bottom:860.291958pt;}
.yad{bottom:861.359038pt;}
.y54{bottom:866.353920pt;}
.yd5{bottom:866.387965pt;}
.y15a{bottom:866.445045pt;}
.y1bc{bottom:866.510134pt;}
.y11{bottom:870.954133pt;}
.y2cf{bottom:872.211095pt;}
.y286{bottom:872.236875pt;}
.y10e{bottom:875.972833pt;}
.yac{bottom:877.310065pt;}
.y2{bottom:879.109333pt;}
.y53{bottom:882.300807pt;}
.y23d{bottom:882.303465pt;}
.yd4{bottom:882.334851pt;}
.y159{bottom:882.391932pt;}
.y1bb{bottom:882.457021pt;}
.y2ce{bottom:884.225749pt;}
.y285{bottom:884.251530pt;}
.yab{bottom:894.918893pt;}
.y2cd{bottom:896.170667pt;}
.y284{bottom:896.196447pt;}
.y52{bottom:898.247693pt;}
.y23c{bottom:898.250351pt;}
.yd3{bottom:898.281738pt;}
.y158{bottom:898.338818pt;}
.y1ba{bottom:898.403908pt;}
.y1{bottom:899.109333pt;}
.y10a{bottom:906.232000pt;}
.y2cc{bottom:908.115584pt;}
.y283{bottom:908.141365pt;}
.yaa{bottom:912.453333pt;}
.y51{bottom:914.194580pt;}
.y23b{bottom:914.197238pt;}
.yd2{bottom:914.228625pt;}
.y157{bottom:914.285705pt;}
.y1b9{bottom:914.350794pt;}
.y2cb{bottom:920.060502pt;}
.y282{bottom:920.086282pt;}
.y109{bottom:920.291867pt;}
.y10{bottom:921.448533pt;}
.ya9{bottom:930.065867pt;}
.y50{bottom:930.141467pt;}
.y23a{bottom:930.144125pt;}
.yd1{bottom:930.175511pt;}
.y156{bottom:930.232592pt;}
.y1b8{bottom:930.297681pt;}
.y2ca{bottom:932.005419pt;}
.y281{bottom:932.031200pt;}
.y117{bottom:991.285802pt;}
.y17a{bottom:991.288089pt;}
.y1a4{bottom:991.289991pt;}
.y4c{bottom:991.292135pt;}
.y116{bottom:1004.516334pt;}
.y179{bottom:1004.518621pt;}
.y1a3{bottom:1004.520523pt;}
.y4b{bottom:1004.522667pt;}
.h6{height:5.152000pt;}
.h11{height:19.151683pt;}
.h1a{height:25.129943pt;}
.h23{height:25.200000pt;}
.h13{height:26.816586pt;}
.h22{height:27.635200pt;}
.h1b{height:27.892000pt;}
.h20{height:27.966340pt;}
.hc{height:28.090929pt;}
.h10{height:28.731562pt;}
.h1f{height:28.931687pt;}
.h12{height:30.648076pt;}
.h19{height:33.010000pt;}
.h1c{height:34.191520pt;}
.h15{height:34.478412pt;}
.h16{height:34.706693pt;}
.h14{height:35.244403pt;}
.h21{height:36.135056pt;}
.h1e{height:37.299840pt;}
.hf{height:37.699742pt;}
.he{height:38.309518pt;}
.hd{height:39.458503pt;}
.hb{height:42.141008pt;}
.h18{height:44.012800pt;}
.h5{height:49.770833pt;}
.h9{height:49.802835pt;}
.h4{height:50.104745pt;}
.h1d{height:73.770795pt;}
.h2{height:74.656250pt;}
.ha{height:91.942689pt;}
.h3{height:149.312500pt;}
.h17{height:323.301333pt;}
.h8{height:1058.000000pt;}
.h7{height:1058.268000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:174.765333pt;}
.w2{width:297.436000pt;}
.w3{width:297.449333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.780000pt;}
.x1{left:60.473333pt;}
.x4{left:75.590533pt;}
.x2a{left:77.844267pt;}
.x13{left:79.143333pt;}
.x3{left:80.352800pt;}
.x3b{left:82.922800pt;}
.x10{left:84.207867pt;}
.x15{left:86.252166pt;}
.x21{left:87.777640pt;}
.x18{left:93.691200pt;}
.x37{left:95.546400pt;}
.x2c{left:101.204667pt;}
.x19{left:108.369067pt;}
.x20{left:149.770420pt;}
.x1d{left:177.752267pt;}
.xf{left:187.010933pt;}
.x5{left:188.371600pt;}
.x6{left:197.366933pt;}
.x1e{left:206.481600pt;}
.x22{left:224.956197pt;}
.x38{left:234.179467pt;}
.x14{left:238.110133pt;}
.x39{left:240.907067pt;}
.x1f{left:255.523457pt;}
.x1a{left:274.696800pt;}
.x1b{left:292.415733pt;}
.x7{left:307.048800pt;}
.x8{left:312.037733pt;}
.x1c{left:313.763067pt;}
.x11{left:406.296418pt;}
.x2e{left:409.851867pt;}
.x12{left:416.958051pt;}
.x27{left:424.214667pt;}
.x36{left:426.249741pt;}
.x28{left:429.099067pt;}
.x9{left:434.040800pt;}
.xa{left:439.029867pt;}
.x26{left:446.815733pt;}
.x24{left:455.508533pt;}
.x25{left:464.125867pt;}
.x29{left:490.538667pt;}
.x34{left:501.165200pt;}
.x35{left:504.718000pt;}
.xb{left:508.648667pt;}
.x2f{left:512.579467pt;}
.x2b{left:517.739200pt;}
.xc{left:527.092800pt;}
.x2d{left:555.019600pt;}
.x16{left:569.423467pt;}
.xd{left:613.946267pt;}
.x23{left:617.574667pt;}
.xe{left:630.273867pt;}
.x30{left:639.798267pt;}
.x31{left:643.350933pt;}
.x3a{left:655.140970pt;}
.x17{left:660.581959pt;}
.x32{left:663.684933pt;}
.x33{left:667.237600pt;}
}


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