
/* 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_f1a5de01099b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_5abb115d12a9.woff")format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_202e714090aa.woff")format("woff");}.ff3{font-family:ff3;line-height:0.664000;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_9fdb6751dcfd.woff")format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_e07c8301e92f.woff")format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_8bd841a769cd.woff")format("woff");}.ff6{font-family:ff6;line-height:0.907000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_f964311aae2a.woff")format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_9062a9984505.woff")format("woff");}.ff8{font-family:ff8;line-height:0.928000;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_8164c511a48f.woff")format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_c32a8a83e365.woff")format("woff");}.ffa{font-family:ffa;line-height:0.854980;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_11605d3bf2cb.woff")format("woff");}.ffb{font-family:ffb;line-height:0.982910;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_ba3633da1ecd.woff")format("woff");}.ffc{font-family:ffc;line-height:0.767090;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_76865f621936.woff")format("woff");}.ffd{font-family:ffd;line-height:0.767090;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_33aee6c45ddd.woff")format("woff");}.ffe{font-family:ffe;line-height:0.967285;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_b2bb20c61906.woff")format("woff");}.fff{font-family:fff;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_44d11f1eda87.woff")format("woff");}.ff10{font-family:ff10;line-height:0.941895;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_17027e0fdb06.woff")format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_74dc472f54ab.woff")format("woff");}.ff12{font-family:ff12;line-height:0.814000;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_7ec53120c6c3.woff")format("woff");}.ff13{font-family:ff13;line-height:0.941895;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_26af18aae068.woff")format("woff");}.ff14{font-family:ff14;line-height:0.915039;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_d24ae642eddf.woff")format("woff");}.ff15{font-family:ff15;line-height:0.967285;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_b9e3d94ac109.woff")format("woff");}.ff16{font-family:ff16;line-height:0.937500;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_48df55fdd03a.woff")format("woff");}.ff17{font-family:ff17;line-height:0.947000;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_da9fdbdf1c29.woff")format("woff");}.ff18{font-family:ff18;line-height:0.959000;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_75581e680fe3.woff")format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_84ba3264fcfa.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_94f1c5e65daa.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.854000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_0855f2f96f9e.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_7c90fd1cf931.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.768555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_1b86ef352781.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.683105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_cb341ebee4fe.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_bd180158d145.woff")format("woff");}.ff20{font-family:ff20;line-height:0.854980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_33419cbccc0b.woff")format("woff");}.ff21{font-family:ff21;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_29ee987e7a44.woff")format("woff");}.ff22{font-family:ff22;line-height:0.967285;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.696000px;}
.v6{vertical-align:-16.878000px;}
.v5{vertical-align:-9.168000px;}
.v9{vertical-align:-6.750000px;}
.v8{vertical-align:-5.226000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.800000px;}
.v1{vertical-align:21.690000px;}
.v4{vertical-align:25.920000px;}
.v7{vertical-align:28.800000px;}
.ls48{letter-spacing:-2.092500px;}
.ls49{letter-spacing:-1.980000px;}
.ls35{letter-spacing:-0.792000px;}
.ls4e{letter-spacing:-0.742500px;}
.ls36{letter-spacing:-0.720000px;}
.ls4d{letter-spacing:-0.630000px;}
.ls4c{letter-spacing:-0.340650px;}
.ls47{letter-spacing:-0.322650px;}
.ls4{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.000421px;}
.ls23{letter-spacing:0.000538px;}
.ls2b{letter-spacing:0.001320px;}
.ls25{letter-spacing:0.001590px;}
.ls1a{letter-spacing:0.002100px;}
.lsd{letter-spacing:0.002338px;}
.lsa{letter-spacing:0.002400px;}
.ls17{letter-spacing:0.002725px;}
.lsf{letter-spacing:0.004200px;}
.ls2a{letter-spacing:0.004363px;}
.ls34{letter-spacing:0.004546px;}
.ls3b{letter-spacing:0.006421px;}
.ls4a{letter-spacing:0.024975px;}
.ls45{letter-spacing:0.045000px;}
.ls41{letter-spacing:0.067500px;}
.ls4b{letter-spacing:0.137250px;}
.ls16{letter-spacing:0.556800px;}
.ls43{letter-spacing:0.569362px;}
.ls40{letter-spacing:0.607500px;}
.ls44{letter-spacing:0.756000px;}
.ls6{letter-spacing:1.380017px;}
.ls22{letter-spacing:1.489800px;}
.ls24{letter-spacing:2.455834px;}
.ls3{letter-spacing:2.964877px;}
.ls1{letter-spacing:2.984525px;}
.ls7{letter-spacing:2.986766px;}
.ls5{letter-spacing:2.987108px;}
.ls4f{letter-spacing:2.987675px;}
.ls46{letter-spacing:2.988017px;}
.ls1c{letter-spacing:2.988600px;}
.ls8{letter-spacing:2.988780px;}
.ls21{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.990525px;}
.ls0{letter-spacing:4.991675px;}
.ls2f{letter-spacing:8.302363px;}
.ls2e{letter-spacing:8.308363px;}
.ls32{letter-spacing:9.773311px;}
.ls1e{letter-spacing:9.962338px;}
.ls3c{letter-spacing:10.456363px;}
.ls3e{letter-spacing:10.462363px;}
.ls19{letter-spacing:10.463715px;}
.ls3a{letter-spacing:12.217319px;}
.ls33{letter-spacing:12.220363px;}
.ls39{letter-spacing:12.220546px;}
.ls28{letter-spacing:12.223319px;}
.ls38{letter-spacing:12.225779px;}
.ls30{letter-spacing:12.226363px;}
.ls1d{letter-spacing:16.601607px;}
.ls2c{letter-spacing:17.929320px;}
.ls31{letter-spacing:17.932363px;}
.lsc{letter-spacing:18.498538px;}
.ls1b{letter-spacing:20.242546px;}
.lse{letter-spacing:21.946200px;}
.ls12{letter-spacing:23.084400px;}
.ls18{letter-spacing:23.884200px;}
.ls13{letter-spacing:24.190200px;}
.ls20{letter-spacing:25.684200px;}
.ls14{letter-spacing:26.414100px;}
.ls11{letter-spacing:29.770200px;}
.ls26{letter-spacing:29.888100px;}
.ls15{letter-spacing:30.602400px;}
.ls10{letter-spacing:32.988538px;}
.ls1f{letter-spacing:33.400200px;}
.ls42{letter-spacing:38.885513px;}
.ls9{letter-spacing:71.733235px;}
.ls27{letter-spacing:121.940100px;}
.ls29{letter-spacing:213.998100px;}
.ls37{letter-spacing:217.531192px;}
.lsb{letter-spacing:285.055080px;}
.ls3f{letter-spacing:306.050100px;}
.ls2d{letter-spacing:363.409320px;}
.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;}
}
.ws2{word-spacing:-59.775600px;}
.ws1c1{word-spacing:-40.680285px;}
.ws137{word-spacing:-37.137980px;}
.ws1d3{word-spacing:-32.381512px;}
.ws1d8{word-spacing:-32.375512px;}
.ws1aa{word-spacing:-28.469512px;}
.ws1a5{word-spacing:-28.463512px;}
.ws1e4{word-spacing:-28.456174px;}
.ws102{word-spacing:-23.832000px;}
.ws1f2{word-spacing:-22.342500px;}
.ws1f5{word-spacing:-16.956000px;}
.ws1f4{word-spacing:-16.836862px;}
.ws1f1{word-spacing:-16.267500px;}
.wsff{word-spacing:-15.206400px;}
.ws18b{word-spacing:-15.192000px;}
.ws18d{word-spacing:-15.120000px;}
.ws8c{word-spacing:-14.943900px;}
.ws24{word-spacing:-14.920027px;}
.ws18c{word-spacing:-14.400000px;}
.ws1f8{word-spacing:-14.242500px;}
.ws103{word-spacing:-13.981440px;}
.ws101{word-spacing:-13.939200px;}
.ws1f9{word-spacing:-13.500000px;}
.ws22{word-spacing:-13.449600px;}
.ws104{word-spacing:-13.044720px;}
.ws1ed{word-spacing:-12.254850px;}
.ws77{word-spacing:-11.955150px;}
.ws1c5{word-spacing:-9.803198px;}
.ws106{word-spacing:-9.790320px;}
.ws105{word-spacing:-9.763200px;}
.ws1ee{word-spacing:-9.178425px;}
.ws107{word-spacing:-8.976720px;}
.ws108{word-spacing:-8.949600px;}
.ws16c{word-spacing:-7.471950px;}
.ws190{word-spacing:-5.722320px;}
.ws7b{word-spacing:-1.135736px;}
.ws79{word-spacing:-1.124958px;}
.ws1e5{word-spacing:-1.075961px;}
.ws7{word-spacing:-0.914573px;}
.wsa4{word-spacing:-0.896634px;}
.ws31{word-spacing:-0.836858px;}
.ws44{word-spacing:-0.777083px;}
.ws84{word-spacing:-0.717307px;}
.ws20b{word-spacing:-0.699379px;}
.ws9c{word-spacing:-0.657532px;}
.ws1ef{word-spacing:-0.634613px;}
.wsd0{word-spacing:-0.597756px;}
.ws211{word-spacing:-0.591782px;}
.ws96{word-spacing:-0.537980px;}
.ws71{word-spacing:-0.486528px;}
.ws73{word-spacing:-0.478205px;}
.ws10e{word-spacing:-0.358654px;}
.ws67{word-spacing:-0.298878px;}
.ws116{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws109{word-spacing:-0.043320px;}
.ws1f3{word-spacing:-0.037238px;}
.ws16b{word-spacing:-0.029888px;}
.ws1f0{word-spacing:-0.027113px;}
.wsf9{word-spacing:-0.024462px;}
.ws1f7{word-spacing:-0.023738px;}
.ws78{word-spacing:-0.012926px;}
.ws139{word-spacing:-0.006511px;}
.ws138{word-spacing:-0.003870px;}
.ws0{word-spacing:0.000000px;}
.ws13d{word-spacing:0.010530px;}
.ws184{word-spacing:0.024988px;}
.ws193{word-spacing:0.119551px;}
.ws241{word-spacing:0.161395px;}
.ws88{word-spacing:0.179327px;}
.ws19e{word-spacing:0.239102px;}
.wscf{word-spacing:0.298878px;}
.wse7{word-spacing:0.358654px;}
.ws3c{word-spacing:0.418429px;}
.ws92{word-spacing:0.478205px;}
.ws5c{word-spacing:0.537980px;}
.ws149{word-spacing:0.597756px;}
.ws1f6{word-spacing:0.606263px;}
.ws232{word-spacing:0.699379px;}
.ws126{word-spacing:0.717307px;}
.ws3d{word-spacing:0.777083px;}
.ws233{word-spacing:0.804998px;}
.ws234{word-spacing:0.806976px;}
.ws6b{word-spacing:0.836858px;}
.ws6f{word-spacing:0.896634px;}
.ws16e{word-spacing:0.926522px;}
.ws54{word-spacing:0.956410px;}
.wse5{word-spacing:1.016185px;}
.wsee{word-spacing:1.075961px;}
.ws1e6{word-spacing:1.195512px;}
.ws147{word-spacing:1.315063px;}
.ws11c{word-spacing:1.374839px;}
.ws68{word-spacing:1.434614px;}
.ws52{word-spacing:1.494390px;}
.ws91{word-spacing:1.554166px;}
.ws14{word-spacing:1.560154px;}
.ws82{word-spacing:1.613941px;}
.ws23f{word-spacing:1.613952px;}
.ws7c{word-spacing:1.673717px;}
.ws120{word-spacing:1.733492px;}
.wsf{word-spacing:1.775347px;}
.ws90{word-spacing:1.793268px;}
.ws181{word-spacing:1.912819px;}
.ws2e{word-spacing:1.972595px;}
.wsc5{word-spacing:2.032370px;}
.wsb2{word-spacing:2.050297px;}
.ws39{word-spacing:2.211697px;}
.ws9b{word-spacing:2.271473px;}
.ws86{word-spacing:2.331248px;}
.ws4e{word-spacing:2.391024px;}
.wsa8{word-spacing:2.450800px;}
.ws204{word-spacing:2.474726px;}
.ws14f{word-spacing:2.510575px;}
.wsbc{word-spacing:2.630126px;}
.wsdc{word-spacing:2.689902px;}
.ws231{word-spacing:2.689920px;}
.ws230{word-spacing:2.743718px;}
.ws152{word-spacing:2.749678px;}
.ws227{word-spacing:2.797517px;}
.ws1fc{word-spacing:2.809453px;}
.ws56{word-spacing:2.929004px;}
.ws16d{word-spacing:2.958892px;}
.wsf6{word-spacing:2.988780px;}
.ws226{word-spacing:3.012710px;}
.ws203{word-spacing:3.048556px;}
.wsa0{word-spacing:3.108331px;}
.ws209{word-spacing:3.120307px;}
.wsdf{word-spacing:3.168107px;}
.ws222{word-spacing:3.174106px;}
.ws216{word-spacing:3.227904px;}
.ws8b{word-spacing:3.347434px;}
.ws5a{word-spacing:3.407209px;}
.ws19a{word-spacing:3.466985px;}
.ws7a{word-spacing:3.472399px;}
.ws1eb{word-spacing:3.526760px;}
.ws198{word-spacing:3.586536px;}
.wsfa{word-spacing:3.646312px;}
.wsfb{word-spacing:3.825638px;}
.ws13e{word-spacing:3.945190px;}
.wsca{word-spacing:4.004965px;}
.wsfe{word-spacing:4.064741px;}
.ws72{word-spacing:4.114399px;}
.ws141{word-spacing:4.124516px;}
.wsb1{word-spacing:4.184280px;}
.ws17a{word-spacing:4.184292px;}
.ws150{word-spacing:4.244068px;}
.ws2a{word-spacing:4.303843px;}
.ws8d{word-spacing:4.363619px;}
.wsc9{word-spacing:4.423394px;}
.ws225{word-spacing:4.465267px;}
.ws70{word-spacing:4.483170px;}
.ws17e{word-spacing:4.484789px;}
.wsda{word-spacing:4.542946px;}
.ws95{word-spacing:4.602721px;}
.ws155{word-spacing:4.662497px;}
.ws202{word-spacing:4.722272px;}
.ws18a{word-spacing:4.782060px;}
.ws8{word-spacing:4.788058px;}
.wsaa{word-spacing:4.841824px;}
.ws5d{word-spacing:4.901599px;}
.ws2b{word-spacing:5.021150px;}
.wsc0{word-spacing:5.098399px;}
.ws42{word-spacing:5.140702px;}
.ws1c9{word-spacing:5.146875px;}
.ws40{word-spacing:5.156922px;}
.ws1c2{word-spacing:5.170589px;}
.ws41{word-spacing:5.178708px;}
.ws16f{word-spacing:5.188280px;}
.ws171{word-spacing:5.200477px;}
.ws28{word-spacing:5.260253px;}
.ws6a{word-spacing:5.320028px;}
.ws223{word-spacing:5.375530px;}
.ws85{word-spacing:5.379804px;}
.ws206{word-spacing:5.379840px;}
.wsa3{word-spacing:5.439580px;}
.ws131{word-spacing:5.559131px;}
.ws180{word-spacing:5.618906px;}
.ws140{word-spacing:5.678682px;}
.ws2f{word-spacing:5.738458px;}
.ws5f{word-spacing:5.858009px;}
.ws22a{word-spacing:5.864026px;}
.ws76{word-spacing:5.917113px;}
.wsc6{word-spacing:5.917784px;}
.wsab{word-spacing:5.941826px;}
.ws11d{word-spacing:5.944399px;}
.ws199{word-spacing:5.961520px;}
.ws191{word-spacing:5.975134px;}
.ws60{word-spacing:5.976240px;}
.ws164{word-spacing:5.977198px;}
.ws1{word-spacing:5.977560px;}
.ws182{word-spacing:5.978134px;}
.ws197{word-spacing:6.035768px;}
.ws66{word-spacing:6.037336px;}
.ws5b{word-spacing:6.097111px;}
.ws228{word-spacing:6.115450px;}
.ws229{word-spacing:6.133018px;}
.ws238{word-spacing:6.186816px;}
.ws83{word-spacing:6.214399px;}
.ws19d{word-spacing:6.216662px;}
.ws239{word-spacing:6.240614px;}
.wse0{word-spacing:6.276438px;}
.ws13b{word-spacing:6.291343px;}
.ws112{word-spacing:6.336214px;}
.ws13c{word-spacing:6.353768px;}
.ws12c{word-spacing:6.395989px;}
.ws20c{word-spacing:6.402010px;}
.ws134{word-spacing:6.455765px;}
.ws51{word-spacing:6.515540px;}
.ws38{word-spacing:6.575316px;}
.wsd8{word-spacing:6.635092px;}
.wsaf{word-spacing:6.694867px;}
.ws1f{word-spacing:6.724800px;}
.ws1fd{word-spacing:6.754643px;}
.wsf7{word-spacing:6.814418px;}
.ws1a{word-spacing:6.832397px;}
.ws1e8{word-spacing:6.874194px;}
.ws221{word-spacing:6.886195px;}
.ws9f{word-spacing:6.933970px;}
.ws219{word-spacing:6.939994px;}
.ws114{word-spacing:6.993745px;}
.wsc4{word-spacing:7.113296px;}
.ws14c{word-spacing:7.173072px;}
.ws14a{word-spacing:7.232848px;}
.ws1bc{word-spacing:7.292623px;}
.ws1cb{word-spacing:7.296674px;}
.ws1cc{word-spacing:7.301436px;}
.wsa{word-spacing:7.316582px;}
.ws1e2{word-spacing:7.322511px;}
.ws3b{word-spacing:7.352399px;}
.ws157{word-spacing:7.374980px;}
.ws158{word-spacing:7.412174px;}
.wse4{word-spacing:7.471950px;}
.ws168{word-spacing:7.481725px;}
.ws57{word-spacing:7.540399px;}
.wsc3{word-spacing:7.591501px;}
.ws22b{word-spacing:7.639373px;}
.ws58{word-spacing:7.651277px;}
.ws194{word-spacing:7.681792px;}
.ws12d{word-spacing:7.741792px;}
.ws22e{word-spacing:7.800768px;}
.ws142{word-spacing:7.830604px;}
.ws22f{word-spacing:7.854566px;}
.ws53{word-spacing:8.009930px;}
.ws212{word-spacing:8.053930px;}
.wsa7{word-spacing:8.069706px;}
.ws213{word-spacing:8.069760px;}
.wse2{word-spacing:8.122550px;}
.wsc{word-spacing:8.123558px;}
.wse3{word-spacing:8.129482px;}
.ws178{word-spacing:8.189257px;}
.wsdd{word-spacing:8.249033px;}
.ws1da{word-spacing:8.262206px;}
.ws1ab{word-spacing:8.263819px;}
.ws1d4{word-spacing:8.265911px;}
.ws1b1{word-spacing:8.267481px;}
.ws1a7{word-spacing:8.268206px;}
.ws1af{word-spacing:8.271121px;}
.ws1ad{word-spacing:8.271996px;}
.ws1b9{word-spacing:8.275899px;}
.ws1d1{word-spacing:8.276839px;}
.ws1a1{word-spacing:8.277620px;}
.ws1a0{word-spacing:8.278921px;}
.ws1a3{word-spacing:8.281684px;}
.ws1ba{word-spacing:8.282938px;}
.ws1a9{word-spacing:8.283596px;}
.ws1bf{word-spacing:8.292468px;}
.ws27{word-spacing:8.308808px;}
.wsbd{word-spacing:8.368584px;}
.ws115{word-spacing:8.377792px;}
.ws6e{word-spacing:8.428360px;}
.wsfc{word-spacing:8.440399px;}
.ws205{word-spacing:8.446349px;}
.ws111{word-spacing:8.484980px;}
.ws10f{word-spacing:8.488135px;}
.ws98{word-spacing:8.547911px;}
.ws21e{word-spacing:8.588746px;}
.ws1fa{word-spacing:8.607686px;}
.ws21f{word-spacing:8.607744px;}
.ws240{word-spacing:8.661542px;}
.ws113{word-spacing:8.743792px;}
.ws188{word-spacing:8.787013px;}
.ws151{word-spacing:8.854399px;}
.ws1b{word-spacing:8.876736px;}
.wsd5{word-spacing:8.906564px;}
.ws245{word-spacing:8.930534px;}
.ws148{word-spacing:8.942134px;}
.ws9e{word-spacing:8.966340px;}
.ws214{word-spacing:8.984333px;}
.wsb9{word-spacing:9.026116px;}
.ws69{word-spacing:9.145667px;}
.ws135{word-spacing:9.243025px;}
.ws136{word-spacing:9.265218px;}
.ws1a2{word-spacing:9.315281px;}
.ws1ff{word-spacing:9.444545px;}
.ws9a{word-spacing:9.504320px;}
.wsb8{word-spacing:9.564096px;}
.ws162{word-spacing:9.623872px;}
.ws6{word-spacing:9.629914px;}
.wsde{word-spacing:9.683647px;}
.ws30{word-spacing:9.743423px;}
.wsf4{word-spacing:9.803198px;}
.ws110{word-spacing:9.865792px;}
.ws20f{word-spacing:9.892003px;}
.ws210{word-spacing:9.898906px;}
.ws99{word-spacing:9.922750px;}
.ws48{word-spacing:9.982525px;}
.ws1ec{word-spacing:10.102076px;}
.ws29{word-spacing:10.161852px;}
.ws129{word-spacing:10.221628px;}
.ws128{word-spacing:10.239343px;}
.ws32{word-spacing:10.281403px;}
.ws121{word-spacing:10.341179px;}
.ws2d{word-spacing:10.400954px;}
.ws196{word-spacing:10.401235px;}
.wsc7{word-spacing:10.498399px;}
.wsed{word-spacing:10.506925px;}
.wsce{word-spacing:10.520506px;}
.ws61{word-spacing:10.576399px;}
.ws1e9{word-spacing:10.580281px;}
.ws94{word-spacing:10.640057px;}
.ws46{word-spacing:10.699832px;}
.ws189{word-spacing:10.759608px;}
.ws236{word-spacing:10.759680px;}
.ws176{word-spacing:10.819384px;}
.wse1{word-spacing:10.870399px;}
.ws1e7{word-spacing:10.879159px;}
.wsfd{word-spacing:10.880533px;}
.ws49{word-spacing:10.938935px;}
.ws21d{word-spacing:10.974874px;}
.ws200{word-spacing:10.998710px;}
.wsf8{word-spacing:11.058486px;}
.ws25{word-spacing:11.118262px;}
.ws50{word-spacing:11.140399px;}
.ws10d{word-spacing:11.178037px;}
.ws3a{word-spacing:11.237813px;}
.wse{word-spacing:11.243866px;}
.wsd2{word-spacing:11.297588px;}
.ws1fe{word-spacing:11.326399px;}
.ws22d{word-spacing:11.351462px;}
.ws22c{word-spacing:11.405261px;}
.wsd3{word-spacing:11.417140px;}
.ws4d{word-spacing:11.476915px;}
.ws220{word-spacing:11.512858px;}
.ws15b{word-spacing:11.536691px;}
.ws159{word-spacing:11.546251px;}
.ws19f{word-spacing:11.590456px;}
.ws20a{word-spacing:11.620454px;}
.wsa5{word-spacing:11.656242px;}
.ws21{word-spacing:11.728051px;}
.ws11e{word-spacing:11.775793px;}
.ws17{word-spacing:11.835648px;}
.ws33{word-spacing:11.895344px;}
.ws20d{word-spacing:11.943245px;}
.ws8e{word-spacing:11.955120px;}
.ws36{word-spacing:12.074671px;}
.ws1d9{word-spacing:12.179481px;}
.ws1ac{word-spacing:12.179856px;}
.ws1d7{word-spacing:12.183121px;}
.ws1d0{word-spacing:12.183911px;}
.ws1d6{word-spacing:12.183996px;}
.ws1df{word-spacing:12.185481px;}
.ws1dd{word-spacing:12.189121px;}
.ws1d2{word-spacing:12.189596px;}
.ws1de{word-spacing:12.189996px;}
.ws1e1{word-spacing:12.190864px;}
.ws1a6{word-spacing:12.192278px;}
.wsef{word-spacing:12.194222px;}
.ws1a4{word-spacing:12.194938px;}
.ws1dc{word-spacing:12.195596px;}
.ws1a8{word-spacing:12.203744px;}
.ws1b2{word-spacing:12.204468px;}
.ws1d5{word-spacing:12.209744px;}
.wsd{word-spacing:12.266035px;}
.ws247{word-spacing:12.286378px;}
.wsc2{word-spacing:12.313774px;}
.ws161{word-spacing:12.373549px;}
.ws75{word-spacing:12.433325px;}
.ws55{word-spacing:12.493100px;}
.ws5e{word-spacing:12.612652px;}
.ws243{word-spacing:12.642624px;}
.ws15{word-spacing:12.696422px;}
.ws15c{word-spacing:12.720709px;}
.ws15e{word-spacing:12.728134px;}
.ws160{word-spacing:12.732203px;}
.ws237{word-spacing:12.750221px;}
.wsc8{word-spacing:12.791978px;}
.wsd4{word-spacing:12.911530px;}
.ws20e{word-spacing:12.965414px;}
.ws130{word-spacing:13.031081px;}
.ws195{word-spacing:13.090856px;}
.wse8{word-spacing:13.150632px;}
.ws244{word-spacing:13.180608px;}
.ws12a{word-spacing:13.210408px;}
.ws12b{word-spacing:13.227276px;}
.ws1c7{word-spacing:13.227281px;}
.ws1c6{word-spacing:13.233281px;}
.ws26{word-spacing:13.270183px;}
.ws23a{word-spacing:13.288205px;}
.wsa2{word-spacing:13.329959px;}
.ws1e{word-spacing:13.342003px;}
.wsd6{word-spacing:13.389734px;}
.ws19{word-spacing:13.395802px;}
.wsb4{word-spacing:13.449510px;}
.wsba{word-spacing:13.509286px;}
.ws187{word-spacing:13.628837px;}
.ws20{word-spacing:13.664794px;}
.wsf3{word-spacing:13.688612px;}
.wseb{word-spacing:13.738571px;}
.wse9{word-spacing:13.740484px;}
.wsec{word-spacing:13.741399px;}
.wsea{word-spacing:13.748388px;}
.wse6{word-spacing:13.808164px;}
.ws207{word-spacing:13.826189px;}
.wsa6{word-spacing:13.867939px;}
.ws208{word-spacing:13.879987px;}
.ws89{word-spacing:13.927715px;}
.ws80{word-spacing:13.987490px;}
.ws19c{word-spacing:14.047266px;}
.wsbe{word-spacing:14.141083px;}
.wsbf{word-spacing:14.166817px;}
.wsd9{word-spacing:14.286368px;}
.ws133{word-spacing:14.294040px;}
.wsac{word-spacing:14.346144px;}
.ws17b{word-spacing:14.405920px;}
.wsae{word-spacing:14.465695px;}
.ws122{word-spacing:14.525471px;}
.ws146{word-spacing:14.557703px;}
.ws7f{word-spacing:14.645022px;}
.ws172{word-spacing:14.697025px;}
.ws173{word-spacing:14.704798px;}
.wsf1{word-spacing:14.764573px;}
.ws124{word-spacing:14.824349px;}
.wsb{word-spacing:14.848358px;}
.ws34{word-spacing:15.063451px;}
.ws215{word-spacing:15.063552px;}
.ws143{word-spacing:15.123227px;}
.ws37{word-spacing:15.183002px;}
.ws127{word-spacing:15.302554px;}
.ws87{word-spacing:15.362329px;}
.ws74{word-spacing:15.422105px;}
.wsb6{word-spacing:15.481880px;}
.ws5{word-spacing:15.493939px;}
.ws8f{word-spacing:15.601432px;}
.ws13f{word-spacing:15.661207px;}
.ws3f{word-spacing:15.840534px;}
.ws62{word-spacing:15.900310px;}
.ws16{word-spacing:15.978125px;}
.ws123{word-spacing:16.019861px;}
.ws125{word-spacing:16.195792px;}
.ws7d{word-spacing:16.378514px;}
.ws11f{word-spacing:16.384399px;}
.wscb{word-spacing:16.407134px;}
.wscd{word-spacing:16.438290px;}
.ws217{word-spacing:16.462310px;}
.ws1fb{word-spacing:16.498066px;}
.ws11{word-spacing:16.516109px;}
.wsa9{word-spacing:16.557841px;}
.wsb5{word-spacing:16.617617px;}
.ws132{word-spacing:16.677392px;}
.ws1bb{word-spacing:16.706938px;}
.ws1c3{word-spacing:16.712938px;}
.ws1c0{word-spacing:16.716468px;}
.wsf0{word-spacing:16.816399px;}
.wsbb{word-spacing:16.826624px;}
.ws6d{word-spacing:16.856719px;}
.ws59{word-spacing:16.916495px;}
.ws21c{word-spacing:16.946496px;}
.ws81{word-spacing:16.976270px;}
.ws9{word-spacing:17.376883px;}
.ws7e{word-spacing:17.394700px;}
.ws14e{word-spacing:17.401873px;}
.wsd1{word-spacing:17.404399px;}
.ws235{word-spacing:17.430682px;}
.ws17c{word-spacing:17.514251px;}
.ws9d{word-spacing:17.693578px;}
.ws154{word-spacing:17.753353px;}
.ws153{word-spacing:17.813129px;}
.ws2c{word-spacing:17.872904px;}
.ws1ce{word-spacing:17.900752px;}
.ws1b5{word-spacing:17.902072px;}
.ws1b3{word-spacing:17.902792px;}
.ws1cd{word-spacing:17.903980px;}
.ws1b7{word-spacing:17.904712px;}
.ws1be{word-spacing:17.906632px;}
.ws1b4{word-spacing:17.906938px;}
.ws1ca{word-spacing:17.908072px;}
.ws1b6{word-spacing:17.910468px;}
.ws10{word-spacing:17.914867px;}
.ws1b8{word-spacing:17.916468px;}
.ws23{word-spacing:17.932680px;}
.wsd7{word-spacing:17.980399px;}
.ws224{word-spacing:18.076262px;}
.ws1c{word-spacing:18.130061px;}
.ws45{word-spacing:18.171782px;}
.ws183{word-spacing:18.201041px;}
.ws11b{word-spacing:18.291334px;}
.ws185{word-spacing:18.410885px;}
.ws3e{word-spacing:18.470660px;}
.ws21b{word-spacing:18.506650px;}
.ws65{word-spacing:18.769538px;}
.ws47{word-spacing:18.889090px;}
.wsad{word-spacing:18.916399px;}
.ws1c4{word-spacing:18.939281px;}
.ws11a{word-spacing:19.008641px;}
.ws118{word-spacing:19.022677px;}
.ws119{word-spacing:19.044980px;}
.ws21a{word-spacing:19.098432px;}
.ws218{word-spacing:19.313626px;}
.ws17f{word-spacing:19.379272px;}
.ws4f{word-spacing:19.546621px;}
.ws156{word-spacing:19.597288px;}
.ws12{word-spacing:19.636416px;}
.ws18{word-spacing:19.690214px;}
.ws64{word-spacing:19.845499px;}
.ws1ea{word-spacing:20.084602px;}
.ws170{word-spacing:20.085151px;}
.ws97{word-spacing:20.204153px;}
.wsf2{word-spacing:20.323704px;}
.ws14d{word-spacing:20.383480px;}
.ws117{word-spacing:20.419792px;}
.ws246{word-spacing:20.497190px;}
.ws43{word-spacing:20.742133px;}
.ws8a{word-spacing:20.801909px;}
.ws165{word-spacing:20.837272px;}
.ws145{word-spacing:20.881703px;}
.ws174{word-spacing:20.884504px;}
.ws4a{word-spacing:20.904317px;}
.ws4c{word-spacing:20.921460px;}
.ws63{word-spacing:20.981236px;}
.wscc{word-spacing:21.016399px;}
.ws13a{word-spacing:21.041011px;}
.ws19b{word-spacing:21.100787px;}
.wsc1{word-spacing:21.220338px;}
.ws6c{word-spacing:21.430399px;}
.ws201{word-spacing:21.758318px;}
.ws1d{word-spacing:21.842150px;}
.wsf5{word-spacing:21.937645px;}
.ws35{word-spacing:21.997421px;}
.ws14b{word-spacing:22.088330px;}
.ws186{word-spacing:22.356074px;}
.ws1c8{word-spacing:22.418250px;}
.wsdb{word-spacing:22.475626px;}
.ws179{word-spacing:22.503151px;}
.ws144{word-spacing:22.654952px;}
.ws4{word-spacing:22.864320px;}
.ws242{word-spacing:22.971917px;}
.wsa1{word-spacing:23.073382px;}
.wsb7{word-spacing:23.432035px;}
.ws12e{word-spacing:23.491811px;}
.ws163{word-spacing:24.537151px;}
.ws4b{word-spacing:25.486399px;}
.ws93{word-spacing:25.514624px;}
.ws177{word-spacing:25.735703px;}
.ws15a{word-spacing:26.479703px;}
.ws15d{word-spacing:27.587272px;}
.ws15f{word-spacing:27.621151px;}
.ws12f{word-spacing:28.060399px;}
.ws192{word-spacing:29.137291px;}
.ws17d{word-spacing:32.345272px;}
.ws23b{word-spacing:32.924621px;}
.ws13{word-spacing:33.032093px;}
.ws175{word-spacing:36.107272px;}
.ws23e{word-spacing:46.428019px;}
.ws23d{word-spacing:46.445962px;}
.wsb0{word-spacing:53.349570px;}
.ws23c{word-spacing:53.690803px;}
.ws167{word-spacing:66.410692px;}
.wsb3{word-spacing:68.287450px;}
.ws1ae{word-spacing:114.470250px;}
.ws169{word-spacing:156.719662px;}
.ws100{word-spacing:159.626880px;}
.ws166{word-spacing:171.795074px;}
.ws16a{word-spacing:181.197770px;}
.ws1b0{word-spacing:206.528250px;}
.ws1cf{word-spacing:236.638875px;}
.ws1db{word-spacing:298.580250px;}
.ws10c{word-spacing:300.087360px;}
.ws1e0{word-spacing:390.632250px;}
.ws18e{word-spacing:463.515360px;}
.ws1e3{word-spacing:482.690250px;}
.ws18f{word-spacing:514.839360px;}
.ws10b{word-spacing:530.295360px;}
.ws1bd{word-spacing:849.396937px;}
.ws10a{word-spacing:1446.003840px;}
._3a{margin-left:-9.006938px;}
._2{margin-left:-7.234648px;}
._14{margin-left:-5.917734px;}
._6{margin-left:-4.895654px;}
._1{margin-left:-3.885414px;}
._4{margin-left:-2.636122px;}
._0{margin-left:-1.506352px;}
._a{width:1.312104px;}
._7{width:2.988780px;}
._19{width:4.133872px;}
._37{width:11.632298px;}
._9{width:14.776535px;}
._3c{width:15.981168px;}
._3{width:17.215488px;}
._18{width:18.590212px;}
._16{width:19.845499px;}
._41{width:21.061811px;}
._8{width:24.209118px;}
._1f{width:26.420815px;}
._15{width:28.108793px;}
._5{width:30.342298px;}
._21{width:31.794913px;}
._17{width:34.251419px;}
._20{width:35.984911px;}
._3f{width:45.343020px;}
._40{width:46.374221px;}
._3e{width:53.798131px;}
._25{width:73.882642px;}
._f{width:77.995026px;}
._3d{width:80.773320px;}
._d{width:105.611227px;}
._1c{width:132.933448px;}
._c{width:138.583375px;}
._2b{width:139.799662px;}
._1a{width:150.423868px;}
._10{width:155.613384px;}
._2d{width:163.755256px;}
._29{width:188.681681px;}
._31{width:194.171095px;}
._30{width:196.990490px;}
._2e{width:201.160103px;}
._24{width:210.231574px;}
._e{width:220.678938px;}
._33{width:223.034852px;}
._32{width:261.211763px;}
._34{width:268.223981px;}
._28{width:270.753580px;}
._2f{width:282.574213px;}
._2a{width:283.886286px;}
._13{width:286.581348px;}
._12{width:288.882702px;}
._2c{width:293.868811px;}
._27{width:295.650118px;}
._11{width:314.406810px;}
._26{width:323.894089px;}
._22{width:337.194160px;}
._3b{width:377.261400px;}
._23{width:388.660951px;}
._38{width:395.194080px;}
._35{width:525.679080px;}
._36{width:550.783080px;}
._1b{width:569.434625px;}
._1e{width:571.183080px;}
._1d{width:591.559080px;}
._b{width:676.639919px;}
._39{width:1058.703240px;}
.fc2{color:transparent;}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:23.737500px;}
.fsf{font-size:25.200000px;}
.fse{font-size:25.320000px;}
.fs15{font-size:27.000000px;}
.fs13{font-size:27.112500px;}
.fsc{font-size:29.887800px;}
.fsd{font-size:35.865600px;}
.fs14{font-size:37.237500px;}
.fsb{font-size:38.122500px;}
.fs7{font-size:39.600000px;}
.fs8{font-size:39.720000px;}
.fs12{font-size:40.612500px;}
.fs2{font-size:41.842800px;}
.fs5{font-size:43.200000px;}
.fsa{font-size:43.320000px;}
.fs6{font-size:46.920000px;}
.fs4{font-size:47.820600px;}
.fs16{font-size:50.737500px;}
.fs3{font-size:53.798400px;}
.fs10{font-size:54.112500px;}
.fs11{font-size:54.225000px;}
.fs9{font-size:57.720000px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.y271{bottom:5.175000px;}
.y26e{bottom:5.315625px;}
.y125{bottom:8.760000px;}
.y15c{bottom:10.066875px;}
.y1d1{bottom:11.970000px;}
.y270{bottom:17.353125px;}
.y26d{bottom:17.493750px;}
.y1d0{bottom:19.200000px;}
.y26f{bottom:29.531250px;}
.y26c{bottom:29.671875px;}
.y269{bottom:44.690625px;}
.y1be{bottom:44.700000px;}
.y1d7{bottom:49.050000px;}
.y124{bottom:51.150000px;}
.y1bd{bottom:51.210000px;}
.y15b{bottom:53.698125px;}
.y1d6{bottom:56.250000px;}
.y136{bottom:61.320000px;}
.y267{bottom:63.337500px;}
.y12d{bottom:67.440000px;}
.y13d{bottom:68.550000px;}
.y129{bottom:72.270000px;}
.y266{bottom:74.278125px;}
.y135{bottom:74.310000px;}
.y26a{bottom:89.353125px;}
.y128{bottom:89.610000px;}
.y268{bottom:91.040625px;}
.y134{bottom:98.760000px;}
.y273{bottom:106.115625px;}
.y127{bottom:106.920000px;}
.y275{bottom:107.156250px;}
.yaf{bottom:111.630000px;}
.y34{bottom:111.631500px;}
.y133{bottom:112.080000px;}
.y274{bottom:113.928750px;}
.y272{bottom:114.266250px;}
.y2e6{bottom:114.658500px;}
.y1bb{bottom:115.851000px;}
.y12c{bottom:120.960000px;}
.y21e{bottom:122.989500px;}
.y126{bottom:124.224000px;}
.y132{bottom:125.436000px;}
.y2b4{bottom:126.574500px;}
.y33{bottom:129.564000px;}
.y2e5{bottom:129.603000px;}
.y21d{bottom:133.168500px;}
.y12b{bottom:133.944000px;}
.y180{bottom:134.419500px;}
.y1c2{bottom:137.640000px;}
.y131{bottom:138.744000px;}
.y1ba{bottom:140.743500px;}
.y142{bottom:142.320000px;}
.y21c{bottom:143.349000px;}
.y1cf{bottom:143.616000px;}
.y2e4{bottom:144.546000px;}
.y1c1{bottom:144.840000px;}
.y32{bottom:147.496500px;}
.yeb{bottom:147.873000px;}
.y263{bottom:148.083750px;}
.y82{bottom:148.635000px;}
.y1cd{bottom:150.216000px;}
.y1ce{bottom:150.816000px;}
.y21b{bottom:152.314500px;}
.y17f{bottom:152.352000px;}
.y1c9{bottom:156.996000px;}
.y130{bottom:157.056000px;}
.y2b3{bottom:157.371000px;}
.y1cc{bottom:157.440000px;}
.y1b9{bottom:158.676000px;}
.y12a{bottom:159.840000px;}
.y262{bottom:160.256250px;}
.y21a{bottom:162.495000px;}
.y1cb{bottom:164.676000px;}
.y31{bottom:165.429000px;}
.y119{bottom:165.639000px;}
.yea{bottom:165.805500px;}
.y81{bottom:166.567500px;}
.y13e{bottom:166.740000px;}
.y17e{bottom:170.284500px;}
.y1c0{bottom:170.880000px;}
.y2b2{bottom:172.315500px;}
.y219{bottom:172.674000px;}
.y2e3{bottom:173.791500px;}
.y1ca{bottom:173.976000px;}
.y1b8{bottom:176.608500px;}
.y1bf{bottom:178.104000px;}
.y1c6{bottom:178.704000px;}
.y218{bottom:181.641000px;}
.y30{bottom:183.361500px;}
.y118{bottom:183.571500px;}
.ye9{bottom:183.738000px;}
.y80{bottom:184.501500px;}
.y1c5{bottom:185.940000px;}
.y1d5{bottom:185.976000px;}
.y2b1{bottom:187.260000px;}
.y17d{bottom:188.217000px;}
.y2e2{bottom:188.734500px;}
.yae{bottom:189.087000px;}
.y217{bottom:191.962500px;}
.y1b7{bottom:194.542500px;}
.y140{bottom:196.104000px;}
.y25f{bottom:196.987500px;}
.y216{bottom:200.928000px;}
.y50{bottom:201.294000px;}
.y2f{bottom:201.295500px;}
.y117{bottom:201.504000px;}
.ye8{bottom:201.670500px;}
.y7f{bottom:202.434000px;}
.y123{bottom:203.676000px;}
.y2e1{bottom:203.679000px;}
.y1c4{bottom:204.996000px;}
.y17c{bottom:206.151000px;}
.y26b{bottom:208.102500px;}
.y215{bottom:209.895000px;}
.y1c3{bottom:212.220000px;}
.y1b6{bottom:212.475000px;}
.y25e{bottom:213.210000px;}
.y2b0{bottom:218.056500px;}
.yad{bottom:218.548500px;}
.y214{bottom:218.860500px;}
.y2e{bottom:219.228000px;}
.y116{bottom:219.436500px;}
.ye7{bottom:219.603000px;}
.y11d{bottom:219.624000px;}
.y7e{bottom:220.366500px;}
.y17b{bottom:224.083500px;}
.y1c8{bottom:224.424000px;}
.y213{bottom:227.827500px;}
.y120{bottom:230.280000px;}
.y1b5{bottom:230.407500px;}
.y1c7{bottom:231.660000px;}
.y1d4{bottom:232.080000px;}
.y11c{bottom:232.620000px;}
.y2e0{bottom:232.923000px;}
.y2af{bottom:232.999500px;}
.yac{bottom:236.481000px;}
.y212{bottom:236.794500px;}
.y2d{bottom:237.160500px;}
.y115{bottom:237.369000px;}
.ye6{bottom:237.537000px;}
.y7d{bottom:238.299000px;}
.y17a{bottom:242.016000px;}
.y11b{bottom:245.616000px;}
.y211{bottom:245.760000px;}
.y141{bottom:247.800000px;}
.y2df{bottom:247.867500px;}
.y2ae{bottom:247.944000px;}
.y1b4{bottom:250.711500px;}
.y261{bottom:251.808750px;}
.y1d2{bottom:252.576000px;}
.yab{bottom:254.413500px;}
.y210{bottom:254.727000px;}
.y2c{bottom:255.093000px;}
.y114{bottom:255.301500px;}
.ye5{bottom:255.469500px;}
.y7c{bottom:256.231500px;}
.y13f{bottom:259.920000px;}
.y179{bottom:259.948500px;}
.y2de{bottom:262.812000px;}
.y20f{bottom:263.692500px;}
.y260{bottom:263.981250px;}
.y12f{bottom:268.404000px;}
.y1b3{bottom:268.644000px;}
.yaa{bottom:272.347500px;}
.y20e{bottom:272.659500px;}
.y2b{bottom:273.025500px;}
.y113{bottom:273.235500px;}
.ye4{bottom:273.402000px;}
.y7b{bottom:274.165500px;}
.y157{bottom:274.192500px;}
.y2dd{bottom:277.755000px;}
.y178{bottom:277.881000px;}
.y2ad{bottom:278.740500px;}
.y12e{bottom:281.400000px;}
.y20d{bottom:281.625000px;}
.y1b2{bottom:286.576500px;}
.ya9{bottom:290.280000px;}
.y20c{bottom:290.592000px;}
.y4f{bottom:290.958000px;}
.y2a{bottom:290.959500px;}
.y112{bottom:291.168000px;}
.ye3{bottom:291.711000px;}
.y7a{bottom:292.098000px;}
.y156{bottom:292.125000px;}
.y2ac{bottom:293.683500px;}
.y177{bottom:295.813500px;}
.y1d3{bottom:297.660000px;}
.y265{bottom:299.553750px;}
.y20b{bottom:299.559000px;}
.y143{bottom:303.456000px;}
.y1b1{bottom:304.510500px;}
.y2dc{bottom:307.000500px;}
.y264{bottom:307.710000px;}
.ya8{bottom:308.382000px;}
.y20a{bottom:308.524500px;}
.y4e{bottom:308.890500px;}
.y29{bottom:308.892000px;}
.y111{bottom:309.100500px;}
.y28b{bottom:309.126000px;}
.ye2{bottom:309.643500px;}
.y79{bottom:310.030500px;}
.y155{bottom:310.057500px;}
.y176{bottom:313.747500px;}
.y11f{bottom:313.800000px;}
.y122{bottom:313.860000px;}
.y209{bottom:317.491500px;}
.y11e{bottom:318.876000px;}
.y2db{bottom:321.943500px;}
.y1b0{bottom:322.443000px;}
.y2ab{bottom:324.480000px;}
.y121{bottom:325.404000px;}
.ya7{bottom:326.314500px;}
.y208{bottom:326.457000px;}
.y28{bottom:326.824500px;}
.y110{bottom:327.033000px;}
.y28a{bottom:327.058500px;}
.ye1{bottom:327.576000px;}
.y78{bottom:327.963000px;}
.y154{bottom:327.990000px;}
.y1ec{bottom:331.030500px;}
.y175{bottom:331.680000px;}
.y207{bottom:335.424000px;}
.y2da{bottom:336.888000px;}
.y2aa{bottom:339.424500px;}
.y1af{bottom:340.375500px;}
.ya6{bottom:344.247000px;}
.y206{bottom:344.391000px;}
.y27{bottom:344.757000px;}
.y10f{bottom:344.965500px;}
.y289{bottom:344.991000px;}
.ye0{bottom:345.508500px;}
.y77{bottom:345.895500px;}
.y153{bottom:345.924000px;}
.y174{bottom:349.612500px;}
.y205{bottom:353.356500px;}
.y2a9{bottom:354.369000px;}
.y1eb{bottom:356.044500px;}
.y1ae{bottom:358.308000px;}
.ya5{bottom:362.181000px;}
.y204{bottom:362.323500px;}
.y4d{bottom:362.689500px;}
.y10e{bottom:362.898000px;}
.y288{bottom:362.923500px;}
.ydf{bottom:363.441000px;}
.y152{bottom:363.856500px;}
.y76{bottom:364.968000px;}
.y2d9{bottom:366.133500px;}
.y173{bottom:368.428500px;}
.y26{bottom:370.729500px;}
.y203{bottom:371.289000px;}
.y1ea{bottom:373.977000px;}
.y138{bottom:374.940000px;}
.y13b{bottom:375.000000px;}
.y1ad{bottom:376.240500px;}
.ya4{bottom:380.113500px;}
.y202{bottom:380.256000px;}
.y4c{bottom:380.622000px;}
.y10d{bottom:380.832000px;}
.y287{bottom:380.856000px;}
.y2d8{bottom:381.076500px;}
.yde{bottom:381.373500px;}
.y139{bottom:381.456000px;}
.y137{bottom:381.480000px;}
.y151{bottom:381.789000px;}
.y75{bottom:382.900500px;}
.y2a8{bottom:385.164000px;}
.y172{bottom:386.362500px;}
.y13a{bottom:387.996000px;}
.y201{bottom:389.221500px;}
.y1e9{bottom:391.909500px;}
.y1ac{bottom:394.173000px;}
.y13c{bottom:394.596000px;}
.y2d7{bottom:396.021000px;}
.ya3{bottom:398.046000px;}
.y4b{bottom:398.554500px;}
.y10c{bottom:398.764500px;}
.y286{bottom:398.788500px;}
.ydd{bottom:399.307500px;}
.y200{bottom:399.402000px;}
.y150{bottom:399.721500px;}
.y2a7{bottom:400.108500px;}
.y25c{bottom:400.588500px;}
.y74{bottom:400.833000px;}
.y171{bottom:404.295000px;}
.y25{bottom:407.625000px;}
.y1ff{bottom:408.369000px;}
.y1e8{bottom:409.842000px;}
.y1ab{bottom:412.107000px;}
.y2a6{bottom:415.053000px;}
.ya2{bottom:416.148000px;}
.y4a{bottom:416.488500px;}
.y10b{bottom:416.697000px;}
.y285{bottom:416.722500px;}
.ydc{bottom:417.240000px;}
.y14f{bottom:417.654000px;}
.y25b{bottom:418.521000px;}
.y1fe{bottom:418.689000px;}
.y73{bottom:418.765500px;}
.y170{bottom:422.227500px;}
.y24{bottom:422.568000px;}
.y2d6{bottom:425.265000px;}
.y1fd{bottom:428.869500px;}
.y1e7{bottom:429.148500px;}
.y1aa{bottom:430.039500px;}
.ya1{bottom:434.080500px;}
.y49{bottom:434.421000px;}
.y10a{bottom:434.629500px;}
.y284{bottom:434.655000px;}
.ydb{bottom:435.172500px;}
.y14e{bottom:435.586500px;}
.y25a{bottom:436.453500px;}
.y72{bottom:436.698000px;}
.y23{bottom:437.512500px;}
.y1fc{bottom:437.835000px;}
.y16f{bottom:440.160000px;}
.y2d5{bottom:440.209500px;}
.y2a5{bottom:445.849500px;}
.y1e6{bottom:447.082500px;}
.y1a9{bottom:447.972000px;}
.y1fb{bottom:448.156500px;}
.ya0{bottom:452.013000px;}
.y48{bottom:452.353500px;}
.y109{bottom:452.562000px;}
.y283{bottom:452.587500px;}
.yda{bottom:453.105000px;}
.y14d{bottom:453.520500px;}
.y259{bottom:454.387500px;}
.y71{bottom:454.632000px;}
.y2d4{bottom:455.154000px;}
.y16e{bottom:458.092500px;}
.y1fa{bottom:458.337000px;}
.y2a4{bottom:460.792500px;}
.y22{bottom:461.320500px;}
.y1e5{bottom:465.015000px;}
.y1a8{bottom:465.904500px;}
.y1f9{bottom:467.302500px;}
.y9f{bottom:469.947000px;}
.y2d3{bottom:470.097000px;}
.y47{bottom:470.286000px;}
.y108{bottom:470.494500px;}
.y282{bottom:470.520000px;}
.yd9{bottom:471.037500px;}
.y14c{bottom:471.453000px;}
.y70{bottom:472.564500px;}
.y2a3{bottom:475.737000px;}
.y16d{bottom:476.025000px;}
.y21{bottom:476.263500px;}
.y1f8{bottom:477.624000px;}
.y1e4{bottom:482.947500px;}
.y1a7{bottom:483.837000px;}
.y1f7{bottom:487.804500px;}
.y9e{bottom:487.879500px;}
.y46{bottom:488.218500px;}
.y107{bottom:488.428500px;}
.y281{bottom:488.452500px;}
.yd8{bottom:488.970000px;}
.y14b{bottom:489.385500px;}
.y6f{bottom:490.497000px;}
.y20{bottom:491.208000px;}
.y16c{bottom:493.959000px;}
.y1f6{bottom:496.770000px;}
.y2d2{bottom:499.342500px;}
.y1e3{bottom:500.880000px;}
.y1a6{bottom:501.769500px;}
.y9d{bottom:505.812000px;}
.y45{bottom:506.151000px;}
.y1f{bottom:506.152500px;}
.y106{bottom:506.361000px;}
.y2a2{bottom:506.533500px;}
.yd7{bottom:506.904000px;}
.y1f5{bottom:507.091500px;}
.y14a{bottom:507.318000px;}
.y6e{bottom:508.429500px;}
.y16b{bottom:511.891500px;}
.y159{bottom:512.115000px;}
.y280{bottom:512.496000px;}
.y2d1{bottom:514.285500px;}
.y1f4{bottom:516.057000px;}
.y1e2{bottom:518.812500px;}
.y258{bottom:519.585000px;}
.y1a5{bottom:519.703500px;}
.y1e{bottom:521.095500px;}
.y2a1{bottom:521.476500px;}
.y9c{bottom:523.744500px;}
.y44{bottom:524.085000px;}
.y105{bottom:524.293500px;}
.yd6{bottom:524.836500px;}
.y1f3{bottom:525.024000px;}
.y149{bottom:525.250500px;}
.y6d{bottom:526.362000px;}
.y2d0{bottom:529.230000px;}
.y257{bottom:529.764000px;}
.y16a{bottom:529.824000px;}
.y1f2{bottom:533.991000px;}
.y1d{bottom:536.040000px;}
.y2a0{bottom:536.421000px;}
.y1e1{bottom:536.746500px;}
.y1a4{bottom:537.636000px;}
.y256{bottom:539.944500px;}
.y9b{bottom:541.677000px;}
.y43{bottom:542.017500px;}
.y104{bottom:542.436000px;}
.y27f{bottom:542.503500px;}
.yd5{bottom:542.769000px;}
.y1f1{bottom:542.956500px;}
.y148{bottom:543.183000px;}
.y6c{bottom:544.294500px;}
.y169{bottom:547.756500px;}
.y255{bottom:550.123500px;}
.y1c{bottom:550.983000px;}
.y1f0{bottom:552.045000px;}
.y1e0{bottom:554.679000px;}
.y1a3{bottom:555.568500px;}
.y2cf{bottom:558.475500px;}
.y9a{bottom:559.611000px;}
.y42{bottom:559.950000px;}
.y254{bottom:560.304000px;}
.y103{bottom:560.368500px;}
.y27e{bottom:560.436000px;}
.y1ef{bottom:561.012000px;}
.yd4{bottom:561.078000px;}
.y158{bottom:561.115500px;}
.y147{bottom:561.117000px;}
.y6b{bottom:562.228500px;}
.y1b{bottom:565.927500px;}
.y168{bottom:566.574000px;}
.y29f{bottom:567.217500px;}
.y1ee{bottom:569.979000px;}
.y253{bottom:570.483000px;}
.y1df{bottom:572.611500px;}
.y2ce{bottom:573.418500px;}
.y1a2{bottom:573.501000px;}
.y99{bottom:577.543500px;}
.y41{bottom:577.882500px;}
.y102{bottom:578.301000px;}
.y27d{bottom:578.370000px;}
.yd3{bottom:579.010500px;}
.y146{bottom:579.049500px;}
.y252{bottom:579.450000px;}
.y1a{bottom:580.872000px;}
.y29e{bottom:582.162000px;}
.y167{bottom:584.506500px;}
.y1ed{bottom:586.969500px;}
.y2cd{bottom:588.363000px;}
.y251{bottom:588.808500px;}
.y1de{bottom:590.544000px;}
.y1a1{bottom:591.433500px;}
.y6a{bottom:591.702000px;}
.y98{bottom:595.476000px;}
.y19{bottom:595.815000px;}
.y101{bottom:596.233500px;}
.y27c{bottom:596.302500px;}
.yd2{bottom:596.943000px;}
.y145{bottom:596.982000px;}
.y29d{bottom:597.105000px;}
.y250{bottom:597.774000px;}
.y166{bottom:602.439000px;}
.y2cc{bottom:603.306000px;}
.y24f{bottom:606.741000px;}
.y1a0{bottom:609.367500px;}
.y1dd{bottom:609.850500px;}
.y18{bottom:610.759500px;}
.y97{bottom:613.408500px;}
.y40{bottom:613.747500px;}
.y100{bottom:614.166000px;}
.y27b{bottom:614.235000px;}
.yd1{bottom:614.875500px;}
.y24e{bottom:617.062500px;}
.y165{bottom:620.371500px;}
.y17{bottom:625.704000px;}
.y24d{bottom:627.241500px;}
.y19f{bottom:627.300000px;}
.y1dc{bottom:627.784500px;}
.y29c{bottom:627.901500px;}
.y69{bottom:629.403000px;}
.y96{bottom:631.341000px;}
.y3f{bottom:631.681500px;}
.yff{bottom:632.098500px;}
.y27a{bottom:632.167500px;}
.y2cb{bottom:632.551500px;}
.yd0{bottom:632.808000px;}
.y24c{bottom:637.422000px;}
.y164{bottom:638.304000px;}
.y16{bottom:640.647000px;}
.y29b{bottom:642.846000px;}
.y19e{bottom:645.232500px;}
.y1db{bottom:645.717000px;}
.y24b{bottom:646.387500px;}
.y68{bottom:647.335500px;}
.y2ca{bottom:647.496000px;}
.y95{bottom:649.443000px;}
.y3e{bottom:649.614000px;}
.yfe{bottom:650.032500px;}
.y279{bottom:650.100000px;}
.ycf{bottom:650.742000px;}
.y144{bottom:650.779500px;}
.y15{bottom:655.591500px;}
.y24a{bottom:655.746000px;}
.y163{bottom:656.238000px;}
.y2c9{bottom:662.439000px;}
.y19d{bottom:663.165000px;}
.y1da{bottom:663.649500px;}
.y249{bottom:664.711500px;}
.y67{bottom:665.268000px;}
.y94{bottom:667.377000px;}
.y3d{bottom:667.546500px;}
.yfd{bottom:667.965000px;}
.y278{bottom:668.032500px;}
.yce{bottom:668.674500px;}
.y14{bottom:670.536000px;}
.y11a{bottom:672.300000px;}
.y29a{bottom:673.642500px;}
.y248{bottom:673.678500px;}
.y162{bottom:674.170500px;}
.y2c8{bottom:677.383500px;}
.y19c{bottom:681.097500px;}
.y1d9{bottom:681.582000px;}
.y66{bottom:683.202000px;}
.y247{bottom:684.000000px;}
.y93{bottom:685.309500px;}
.y13{bottom:685.479000px;}
.yfc{bottom:685.897500px;}
.y277{bottom:685.966500px;}
.ycd{bottom:686.607000px;}
.y299{bottom:688.585500px;}
.y161{bottom:692.103000px;}
.y246{bottom:694.179000px;}
.y19b{bottom:699.030000px;}
.y12{bottom:700.423500px;}
.y65{bottom:701.134500px;}
.y92{bottom:703.242000px;}
.y3c{bottom:703.411500px;}
.y298{bottom:703.530000px;}
.yfb{bottom:703.830000px;}
.y245{bottom:704.359500px;}
.ycc{bottom:704.539500px;}
.y2c7{bottom:706.627500px;}
.y160{bottom:710.035500px;}
.y244{bottom:713.325000px;}
.y11{bottom:715.368000px;}
.y19a{bottom:716.964000px;}
.y64{bottom:719.067000px;}
.y91{bottom:721.174500px;}
.y3b{bottom:721.344000px;}
.y2c6{bottom:721.572000px;}
.yfa{bottom:721.762500px;}
.ycb{bottom:722.472000px;}
.y243{bottom:723.505500px;}
.y10{bottom:730.311000px;}
.y242{bottom:732.471000px;}
.y297{bottom:734.326500px;}
.y199{bottom:734.896500px;}
.y1d8{bottom:735.381000px;}
.y15f{bottom:735.769500px;}
.y2c5{bottom:736.516500px;}
.y63{bottom:736.999500px;}
.y90{bottom:739.107000px;}
.y3a{bottom:739.278000px;}
.yf9{bottom:739.696500px;}
.y276{bottom:740.388000px;}
.yca{bottom:740.404500px;}
.y241{bottom:742.792500px;}
.yf{bottom:745.255500px;}
.y296{bottom:749.271000px;}
.y198{bottom:752.829000px;}
.y240{bottom:752.973000px;}
.y62{bottom:754.932000px;}
.y1bc{bottom:756.900000px;}
.y8f{bottom:757.041000px;}
.y39{bottom:757.210500px;}
.yf8{bottom:757.629000px;}
.yc9{bottom:758.338500px;}
.ye{bottom:760.198500px;}
.y25d{bottom:761.907000px;}
.y23f{bottom:763.152000px;}
.y295{bottom:764.214000px;}
.y2c4{bottom:765.760500px;}
.y23e{bottom:772.119000px;}
.y61{bottom:772.864500px;}
.y8e{bottom:774.973500px;}
.yd{bottom:775.143000px;}
.yf7{bottom:775.561500px;}
.yc8{bottom:776.271000px;}
.y2c3{bottom:780.705000px;}
.y23d{bottom:782.298000px;}
.yc{bottom:790.087500px;}
.y60{bottom:790.798500px;}
.y23c{bottom:791.265000px;}
.y15e{bottom:791.926500px;}
.y38{bottom:793.075500px;}
.yf6{bottom:793.494000px;}
.yc7{bottom:794.203500px;}
.y294{bottom:795.010500px;}
.y2c2{bottom:795.648000px;}
.y23b{bottom:801.586500px;}
.y197{bottom:804.583500px;}
.yb{bottom:805.030500px;}
.y15d{bottom:809.859000px;}
.y5f{bottom:809.869500px;}
.y293{bottom:809.955000px;}
.y23a{bottom:810.552000px;}
.y2c1{bottom:810.592500px;}
.y37{bottom:811.008000px;}
.yf5{bottom:811.636500px;}
.yc6{bottom:812.136000px;}
.y239{bottom:819.519000px;}
.ya{bottom:819.975000px;}
.y292{bottom:824.898000px;}
.y5e{bottom:827.802000px;}
.y238{bottom:828.484500px;}
.y8d{bottom:828.940500px;}
.y36{bottom:828.942000px;}
.yf4{bottom:829.569000px;}
.yc5{bottom:830.068500px;}
.y15a{bottom:831.378000px;}
.y196{bottom:834.471000px;}
.y9{bottom:834.919500px;}
.y237{bottom:837.451500px;}
.y2c0{bottom:839.838000px;}
.y291{bottom:839.842500px;}
.y5d{bottom:845.734500px;}
.y236{bottom:846.418500px;}
.y8c{bottom:846.873000px;}
.y35{bottom:846.874500px;}
.yf3{bottom:847.501500px;}
.y8{bottom:849.862500px;}
.y2bf{bottom:854.781000px;}
.y290{bottom:854.787000px;}
.y235{bottom:855.384000px;}
.y195{bottom:860.959500px;}
.y5c{bottom:863.668500px;}
.y234{bottom:864.351000px;}
.y7{bottom:864.807000px;}
.yf2{bottom:865.434000px;}
.y2be{bottom:869.725500px;}
.y194{bottom:869.925000px;}
.y233{bottom:874.530000px;}
.y5b{bottom:881.601000px;}
.y8b{bottom:882.739500px;}
.yf1{bottom:883.366500px;}
.y232{bottom:883.497000px;}
.yc4{bottom:884.869500px;}
.y28f{bottom:885.583500px;}
.y193{bottom:887.859000px;}
.y231{bottom:892.464000px;}
.y2bd{bottom:898.969500px;}
.y5a{bottom:899.533500px;}
.y28e{bottom:900.526500px;}
.y8a{bottom:900.672000px;}
.yf0{bottom:901.300500px;}
.y230{bottom:901.429500px;}
.y192{bottom:905.380500px;}
.y22f{bottom:910.396500px;}
.y2bc{bottom:913.914000px;}
.y191{bottom:914.346000px;}
.y28d{bottom:915.471000px;}
.yc3{bottom:915.654000px;}
.y6{bottom:917.071500px;}
.y59{bottom:917.466000px;}
.y89{bottom:918.604500px;}
.yef{bottom:919.233000px;}
.y22e{bottom:919.362000px;}
.y190{bottom:923.313000px;}
.y22d{bottom:928.329000px;}
.y2bb{bottom:928.858500px;}
.y18f{bottom:932.278500px;}
.y58{bottom:935.398500px;}
.yc2{bottom:936.165000px;}
.yc1{bottom:936.480000px;}
.y88{bottom:936.537000px;}
.yee{bottom:937.165500px;}
.y22c{bottom:937.294500px;}
.y5{bottom:940.617000px;}
.y18e{bottom:941.245500px;}
.y28c{bottom:941.604000px;}
.y22b{bottom:946.261500px;}
.yc0{bottom:948.120000px;}
.y18d{bottom:950.212500px;}
.y57{bottom:953.331000px;}
.y87{bottom:954.471000px;}
.yed{bottom:955.098000px;}
.y22a{bottom:955.228500px;}
.y2ba{bottom:958.102500px;}
.y4{bottom:958.740000px;}
.y18c{bottom:959.178000px;}
.ybf{bottom:960.075000px;}
.ybe{bottom:960.390000px;}
.y229{bottom:965.548500px;}
.y18b{bottom:968.145000px;}
.y56{bottom:971.265000px;}
.ybd{bottom:972.030000px;}
.ybc{bottom:972.345000px;}
.y86{bottom:972.403500px;}
.y2b9{bottom:973.047000px;}
.y228{bottom:974.515500px;}
.y3{bottom:976.863000px;}
.y18a{bottom:977.110500px;}
.yec{bottom:978.471000px;}
.y227{bottom:983.481000px;}
.ybb{bottom:983.985000px;}
.yba{bottom:984.300000px;}
.y189{bottom:986.077500px;}
.y2b8{bottom:987.990000px;}
.y55{bottom:989.197500px;}
.y2{bottom:989.371500px;}
.y85{bottom:990.336000px;}
.y226{bottom:992.448000px;}
.y188{bottom:995.044500px;}
.yb9{bottom:995.940000px;}
.yb8{bottom:996.256500px;}
.y225{bottom:1001.415000px;}
.y2b7{bottom:1002.934500px;}
.y187{bottom:1004.010000px;}
.y54{bottom:1007.130000px;}
.yb7{bottom:1007.895000px;}
.yb6{bottom:1008.211500px;}
.y84{bottom:1008.268500px;}
.y224{bottom:1010.644500px;}
.y186{bottom:1012.977000px;}
.y223{bottom:1019.611500px;}
.yb5{bottom:1019.851500px;}
.yb4{bottom:1020.166500px;}
.y185{bottom:1021.942500px;}
.y53{bottom:1026.201000px;}
.y222{bottom:1028.700000px;}
.y184{bottom:1030.909500px;}
.yb3{bottom:1031.806500px;}
.yb2{bottom:1032.121500px;}
.y2b6{bottom:1032.178500px;}
.y221{bottom:1037.665500px;}
.y183{bottom:1039.875000px;}
.y83{bottom:1044.133500px;}
.y52{bottom:1044.135000px;}
.y220{bottom:1046.632500px;}
.y2b5{bottom:1047.123000px;}
.y182{bottom:1048.842000px;}
.yb1{bottom:1052.316000px;}
.y1{bottom:1053.630000px;}
.y51{bottom:1062.067500px;}
.y21f{bottom:1063.623000px;}
.yb0{bottom:1064.271000px;}
.y181{bottom:1066.363500px;}
.h46{height:15.821136px;}
.h31{height:17.792578px;}
.h30{height:17.877305px;}
.h45{height:17.995605px;}
.h3f{height:18.070587px;}
.h34{height:19.244531px;}
.h35{height:19.336172px;}
.h38{height:19.965050px;}
.h26{height:20.503031px;}
.h41{height:20.513672px;}
.h27{height:20.562806px;}
.h24{height:20.682358px;}
.h29{height:20.891572px;}
.h28{height:21.728431px;}
.h39{height:22.146860px;}
.h25{height:22.415850px;}
.h2b{height:24.675533px;}
.h40{height:24.818939px;}
.h17{height:26.393555px;}
.h15{height:26.473535px;}
.h4{height:27.783619px;}
.he{height:28.704161px;}
.hc{height:28.787846px;}
.hb{height:28.955218px;}
.h22{height:29.113081px;}
.hd{height:29.875759px;}
.h14{height:30.086719px;}
.h16{height:30.177891px;}
.h37{height:30.503401px;}
.h3e{height:30.836151px;}
.h36{height:31.005515px;}
.h3d{height:31.014624px;}
.h44{height:31.861802px;}
.h1e{height:31.865625px;}
.h1d{height:31.962188px;}
.h42{height:31.996802px;}
.h12{height:32.821875px;}
.h2f{height:33.082266px;}
.h1a{height:34.762500px;}
.h1b{height:34.859063px;}
.h1c{height:35.464922px;}
.h33{height:35.625293px;}
.h48{height:36.905702px;}
.h47{height:37.013299px;}
.h7{height:37.228493px;}
.h6{height:37.605082px;}
.h18{height:37.755938px;}
.h43{height:38.746802px;}
.h5{height:41.006062px;}
.h8{height:41.125613px;}
.h3c{height:41.171814px;}
.h3b{height:41.324194px;}
.h9{height:41.364715px;}
.h2{height:41.419613px;}
.h23{height:42.141798px;}
.hf{height:42.925613px;}
.h10{height:42.931613px;}
.ha{height:44.831700px;}
.h19{height:46.446563px;}
.h3{height:49.473619px;}
.h2a{height:50.483846px;}
.h13{height:56.006719px;}
.h1{height:57.910850px;}
.h20{height:58.567828px;}
.h2d{height:59.122266px;}
.h1f{height:60.635062px;}
.h32{height:64.425293px;}
.h2e{height:85.162266px;}
.h21{height:248.625000px;}
.h3a{height:318.093750px;}
.h2c{height:323.100000px;}
.h11{height:407.700000px;}
.h0{height:1188.000000px;}
.w2{width:275.681250px;}
.w4{width:318.093750px;}
.w1{width:713.699989px;}
.w3{width:713.700000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7e{left:5.653125px;}
.x38{left:6.809989px;}
.x4a{left:11.358750px;}
.x3a{left:13.619989px;}
.x22{left:16.799989px;}
.x7c{left:18.140625px;}
.x7f{left:20.193750px;}
.x26{left:22.019989px;}
.x54{left:33.270000px;}
.x80{left:36.478125px;}
.x24{left:39.149989px;}
.x79{left:47.503125px;}
.x30{left:49.379989px;}
.x64{left:52.950000px;}
.x32{left:58.499989px;}
.x23{left:60.839989px;}
.x33{left:62.069989px;}
.x31{left:65.219989px;}
.x63{left:67.320000px;}
.x82{left:70.425000px;}
.x62{left:72.720000px;}
.x7d{left:78.637500px;}
.x9{left:81.000000px;}
.x5d{left:83.970000px;}
.x70{left:88.471500px;}
.x8{left:95.944500px;}
.x11{left:97.519500px;}
.x10{left:100.861500px;}
.x1d{left:102.150011px;}
.x4b{left:105.855750px;}
.x14{left:110.292000px;}
.x1{left:113.850000px;}
.x69{left:117.358500px;}
.x71{left:118.957500px;}
.x3d{left:124.283989px;}
.x49{left:125.410500px;}
.xd{left:126.439500px;}
.x77{left:129.847500px;}
.x72{left:132.406500px;}
.x78{left:134.606250px;}
.x41{left:147.867000px;}
.x73{left:149.443500px;}
.x81{left:156.375000px;}
.x55{left:158.700000px;}
.x13{left:163.234500px;}
.x74{left:164.985000px;}
.x37{left:171.299989px;}
.x5{left:172.791000px;}
.x75{left:178.434000px;}
.x1e{left:189.815989px;}
.x20{left:195.815989px;}
.x6b{left:196.884000px;}
.x25{left:203.423989px;}
.xa{left:204.939000px;}
.x1f{left:207.419989px;}
.x61{left:208.956000px;}
.x6a{left:214.404000px;}
.x7b{left:220.387500px;}
.x86{left:221.407500px;}
.x83{left:223.335000px;}
.x4{left:227.262000px;}
.x2{left:228.988500px;}
.x7a{left:234.247500px;}
.x3{left:238.956000px;}
.x5b{left:251.940000px;}
.x5c{left:264.576000px;}
.x65{left:269.040000px;}
.x67{left:271.440000px;}
.x7{left:281.565000px;}
.x59{left:304.020000px;}
.x6{left:312.418500px;}
.x5a{left:318.456000px;}
.x36{left:327.659989px;}
.x28{left:331.199989px;}
.x12{left:336.637500px;}
.x29{left:338.399989px;}
.x68{left:341.571000px;}
.x21{left:343.319989px;}
.x3f{left:344.776500px;}
.x27{left:349.319989px;}
.x57{left:351.204000px;}
.x58{left:363.840000px;}
.x3e{left:372.923989px;}
.xf{left:375.831000px;}
.x66{left:402.396000px;}
.x40{left:426.820500px;}
.x2f{left:454.535989px;}
.x39{left:461.315989px;}
.x2e{left:469.823989px;}
.xb{left:472.500000px;}
.x6d{left:476.236500px;}
.x6c{left:479.971500px;}
.x4d{left:484.887000px;}
.xc{left:487.444500px;}
.x2a{left:494.255989px;}
.x76{left:495.703500px;}
.x87{left:502.378500px;}
.x2d{left:505.679989px;}
.x1b{left:508.284000px;}
.x6e{left:510.457500px;}
.x4c{left:512.910000px;}
.x45{left:518.451000px;}
.x84{left:522.661500px;}
.x6f{left:523.906500px;}
.x53{left:531.969000px;}
.x47{left:533.398500px;}
.x5e{left:535.980000px;}
.x43{left:537.600000px;}
.x34{left:539.819989px;}
.x50{left:542.586000px;}
.x52{left:547.177500px;}
.x5f{left:550.416000px;}
.x46{left:553.599000px;}
.x85{left:560.080500px;}
.x3b{left:562.103989px;}
.xe{left:576.759000px;}
.x51{left:580.891500px;}
.x4e{left:583.792500px;}
.x48{left:595.483500px;}
.x18{left:598.971000px;}
.x56{left:613.620000px;}
.x35{left:621.803989px;}
.x2c{left:623.303989px;}
.x2b{left:627.479989px;}
.x1c{left:647.644500px;}
.x3c{left:660.719989px;}
.x4f{left:676.333500px;}
.x60{left:684.036000px;}
.x17{left:703.908000px;}
.x44{left:721.458000px;}
.x1a{left:723.718500px;}
.x19{left:728.511000px;}
.x16{left:755.482500px;}
.x42{left:779.160000px;}
.x15{left:813.343500px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v6{vertical-align:-15.002667pt;}
.v5{vertical-align:-8.149333pt;}
.v9{vertical-align:-6.000000pt;}
.v8{vertical-align:-4.645333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.600000pt;}
.v1{vertical-align:19.280000pt;}
.v4{vertical-align:23.040000pt;}
.v7{vertical-align:25.600000pt;}
.ls48{letter-spacing:-1.860000pt;}
.ls49{letter-spacing:-1.760000pt;}
.ls35{letter-spacing:-0.704000pt;}
.ls4e{letter-spacing:-0.660000pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls4d{letter-spacing:-0.560000pt;}
.ls4c{letter-spacing:-0.302800pt;}
.ls47{letter-spacing:-0.286800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.000374pt;}
.ls23{letter-spacing:0.000479pt;}
.ls2b{letter-spacing:0.001173pt;}
.ls25{letter-spacing:0.001414pt;}
.ls1a{letter-spacing:0.001867pt;}
.lsd{letter-spacing:0.002079pt;}
.lsa{letter-spacing:0.002133pt;}
.ls17{letter-spacing:0.002422pt;}
.lsf{letter-spacing:0.003733pt;}
.ls2a{letter-spacing:0.003879pt;}
.ls34{letter-spacing:0.004041pt;}
.ls3b{letter-spacing:0.005708pt;}
.ls4a{letter-spacing:0.022200pt;}
.ls45{letter-spacing:0.040000pt;}
.ls41{letter-spacing:0.060000pt;}
.ls4b{letter-spacing:0.122000pt;}
.ls16{letter-spacing:0.494933pt;}
.ls43{letter-spacing:0.506100pt;}
.ls40{letter-spacing:0.540000pt;}
.ls44{letter-spacing:0.672000pt;}
.ls6{letter-spacing:1.226682pt;}
.ls22{letter-spacing:1.324267pt;}
.ls24{letter-spacing:2.182963pt;}
.ls3{letter-spacing:2.635446pt;}
.ls1{letter-spacing:2.652911pt;}
.ls7{letter-spacing:2.654903pt;}
.ls5{letter-spacing:2.655207pt;}
.ls4f{letter-spacing:2.655711pt;}
.ls46{letter-spacing:2.656015pt;}
.ls1c{letter-spacing:2.656533pt;}
.ls8{letter-spacing:2.656693pt;}
.ls21{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.658245pt;}
.ls0{letter-spacing:4.437044pt;}
.ls2f{letter-spacing:7.379879pt;}
.ls2e{letter-spacing:7.385212pt;}
.ls32{letter-spacing:8.687387pt;}
.ls1e{letter-spacing:8.855412pt;}
.ls3c{letter-spacing:9.294545pt;}
.ls3e{letter-spacing:9.299879pt;}
.ls19{letter-spacing:9.301080pt;}
.ls3a{letter-spacing:10.859839pt;}
.ls33{letter-spacing:10.862545pt;}
.ls39{letter-spacing:10.862708pt;}
.ls28{letter-spacing:10.865173pt;}
.ls38{letter-spacing:10.867359pt;}
.ls30{letter-spacing:10.867879pt;}
.ls1d{letter-spacing:14.756984pt;}
.ls2c{letter-spacing:15.937173pt;}
.ls31{letter-spacing:15.939879pt;}
.lsc{letter-spacing:16.443145pt;}
.ls1b{letter-spacing:17.993374pt;}
.lse{letter-spacing:19.507733pt;}
.ls12{letter-spacing:20.519467pt;}
.ls18{letter-spacing:21.230400pt;}
.ls13{letter-spacing:21.502400pt;}
.ls20{letter-spacing:22.830400pt;}
.ls14{letter-spacing:23.479200pt;}
.ls11{letter-spacing:26.462400pt;}
.ls26{letter-spacing:26.567200pt;}
.ls15{letter-spacing:27.202133pt;}
.ls10{letter-spacing:29.323145pt;}
.ls1f{letter-spacing:29.689067pt;}
.ls42{letter-spacing:34.564900pt;}
.ls9{letter-spacing:63.762876pt;}
.ls27{letter-spacing:108.391200pt;}
.ls29{letter-spacing:190.220533pt;}
.ls37{letter-spacing:193.361059pt;}
.lsb{letter-spacing:253.382293pt;}
.ls3f{letter-spacing:272.044533pt;}
.ls2d{letter-spacing:323.030507pt;}
.ws2{word-spacing:-53.133867pt;}
.ws1c1{word-spacing:-36.160253pt;}
.ws137{word-spacing:-33.011537pt;}
.ws1d3{word-spacing:-28.783566pt;}
.ws1d8{word-spacing:-28.778233pt;}
.ws1aa{word-spacing:-25.306233pt;}
.ws1a5{word-spacing:-25.300899pt;}
.ws1e4{word-spacing:-25.294377pt;}
.ws102{word-spacing:-21.184000pt;}
.ws1f2{word-spacing:-19.860000pt;}
.ws1f5{word-spacing:-15.072000pt;}
.ws1f4{word-spacing:-14.966100pt;}
.ws1f1{word-spacing:-14.460000pt;}
.wsff{word-spacing:-13.516800pt;}
.ws18b{word-spacing:-13.504000pt;}
.ws18d{word-spacing:-13.440000pt;}
.ws8c{word-spacing:-13.283467pt;}
.ws24{word-spacing:-13.262246pt;}
.ws18c{word-spacing:-12.800000pt;}
.ws1f8{word-spacing:-12.660000pt;}
.ws103{word-spacing:-12.427947pt;}
.ws101{word-spacing:-12.390400pt;}
.ws1f9{word-spacing:-12.000000pt;}
.ws22{word-spacing:-11.955200pt;}
.ws104{word-spacing:-11.595307pt;}
.ws1ed{word-spacing:-10.893200pt;}
.ws77{word-spacing:-10.626800pt;}
.ws1c5{word-spacing:-8.713954pt;}
.ws106{word-spacing:-8.702507pt;}
.ws105{word-spacing:-8.678400pt;}
.ws1ee{word-spacing:-8.158600pt;}
.ws107{word-spacing:-7.979307pt;}
.ws108{word-spacing:-7.955200pt;}
.ws16c{word-spacing:-6.641733pt;}
.ws190{word-spacing:-5.086507pt;}
.ws7b{word-spacing:-1.009543pt;}
.ws79{word-spacing:-0.999963pt;}
.ws1e5{word-spacing:-0.956410pt;}
.ws7{word-spacing:-0.812954pt;}
.wsa4{word-spacing:-0.797008pt;}
.ws31{word-spacing:-0.743874pt;}
.ws44{word-spacing:-0.690740pt;}
.ws84{word-spacing:-0.637606pt;}
.ws20b{word-spacing:-0.621670pt;}
.ws9c{word-spacing:-0.584473pt;}
.ws1ef{word-spacing:-0.564100pt;}
.wsd0{word-spacing:-0.531339pt;}
.ws211{word-spacing:-0.526029pt;}
.ws96{word-spacing:-0.478205pt;}
.ws71{word-spacing:-0.432469pt;}
.ws73{word-spacing:-0.425071pt;}
.ws10e{word-spacing:-0.318803pt;}
.ws67{word-spacing:-0.265669pt;}
.ws116{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws109{word-spacing:-0.038507pt;}
.ws1f3{word-spacing:-0.033100pt;}
.ws16b{word-spacing:-0.026567pt;}
.ws1f0{word-spacing:-0.024100pt;}
.wsf9{word-spacing:-0.021744pt;}
.ws1f7{word-spacing:-0.021100pt;}
.ws78{word-spacing:-0.011490pt;}
.ws139{word-spacing:-0.005788pt;}
.ws138{word-spacing:-0.003440pt;}
.ws0{word-spacing:0.000000pt;}
.ws13d{word-spacing:0.009360pt;}
.ws184{word-spacing:0.022211pt;}
.ws193{word-spacing:0.106268pt;}
.ws241{word-spacing:0.143462pt;}
.ws88{word-spacing:0.159402pt;}
.ws19e{word-spacing:0.212535pt;}
.wscf{word-spacing:0.265669pt;}
.wse7{word-spacing:0.318803pt;}
.ws3c{word-spacing:0.371937pt;}
.ws92{word-spacing:0.425071pt;}
.ws5c{word-spacing:0.478205pt;}
.ws149{word-spacing:0.531339pt;}
.ws1f6{word-spacing:0.538900pt;}
.ws232{word-spacing:0.621670pt;}
.ws126{word-spacing:0.637606pt;}
.ws3d{word-spacing:0.690740pt;}
.ws233{word-spacing:0.715554pt;}
.ws234{word-spacing:0.717312pt;}
.ws6b{word-spacing:0.743874pt;}
.ws6f{word-spacing:0.797008pt;}
.ws16e{word-spacing:0.823575pt;}
.ws54{word-spacing:0.850142pt;}
.wse5{word-spacing:0.903276pt;}
.wsee{word-spacing:0.956410pt;}
.ws1e6{word-spacing:1.062677pt;}
.ws147{word-spacing:1.168945pt;}
.ws11c{word-spacing:1.222079pt;}
.ws68{word-spacing:1.275213pt;}
.ws52{word-spacing:1.328347pt;}
.ws91{word-spacing:1.381481pt;}
.ws14{word-spacing:1.386803pt;}
.ws82{word-spacing:1.434614pt;}
.ws23f{word-spacing:1.434624pt;}
.ws7c{word-spacing:1.487748pt;}
.ws120{word-spacing:1.540882pt;}
.wsf{word-spacing:1.578086pt;}
.ws90{word-spacing:1.594016pt;}
.ws181{word-spacing:1.700284pt;}
.ws2e{word-spacing:1.753418pt;}
.wsc5{word-spacing:1.806551pt;}
.wsb2{word-spacing:1.822486pt;}
.ws39{word-spacing:1.965953pt;}
.ws9b{word-spacing:2.019087pt;}
.ws86{word-spacing:2.072221pt;}
.ws4e{word-spacing:2.125355pt;}
.wsa8{word-spacing:2.178489pt;}
.ws204{word-spacing:2.199757pt;}
.ws14f{word-spacing:2.231622pt;}
.wsbc{word-spacing:2.337890pt;}
.wsdc{word-spacing:2.391024pt;}
.ws231{word-spacing:2.391040pt;}
.ws230{word-spacing:2.438861pt;}
.ws152{word-spacing:2.444158pt;}
.ws227{word-spacing:2.486682pt;}
.ws1fc{word-spacing:2.497292pt;}
.ws56{word-spacing:2.603559pt;}
.ws16d{word-spacing:2.630126pt;}
.wsf6{word-spacing:2.656693pt;}
.ws226{word-spacing:2.677965pt;}
.ws203{word-spacing:2.709827pt;}
.wsa0{word-spacing:2.762961pt;}
.ws209{word-spacing:2.773606pt;}
.wsdf{word-spacing:2.816095pt;}
.ws222{word-spacing:2.821427pt;}
.ws216{word-spacing:2.869248pt;}
.ws8b{word-spacing:2.975497pt;}
.ws5a{word-spacing:3.028630pt;}
.ws19a{word-spacing:3.081764pt;}
.ws7a{word-spacing:3.086577pt;}
.ws1eb{word-spacing:3.134898pt;}
.ws198{word-spacing:3.188032pt;}
.wsfa{word-spacing:3.241166pt;}
.wsfb{word-spacing:3.400567pt;}
.ws13e{word-spacing:3.506835pt;}
.wsca{word-spacing:3.559969pt;}
.wsfe{word-spacing:3.613103pt;}
.ws72{word-spacing:3.657244pt;}
.ws141{word-spacing:3.666237pt;}
.wsb1{word-spacing:3.719360pt;}
.ws17a{word-spacing:3.719371pt;}
.ws150{word-spacing:3.772505pt;}
.ws2a{word-spacing:3.825638pt;}
.ws8d{word-spacing:3.878772pt;}
.wsc9{word-spacing:3.931906pt;}
.ws225{word-spacing:3.969126pt;}
.ws70{word-spacing:3.985040pt;}
.ws17e{word-spacing:3.986479pt;}
.wsda{word-spacing:4.038174pt;}
.ws95{word-spacing:4.091308pt;}
.ws155{word-spacing:4.144442pt;}
.ws202{word-spacing:4.197575pt;}
.ws18a{word-spacing:4.250720pt;}
.ws8{word-spacing:4.256051pt;}
.wsaa{word-spacing:4.303843pt;}
.ws5d{word-spacing:4.356977pt;}
.ws2b{word-spacing:4.463245pt;}
.wsc0{word-spacing:4.531910pt;}
.ws42{word-spacing:4.569513pt;}
.ws1c9{word-spacing:4.575000pt;}
.ws40{word-spacing:4.583931pt;}
.ws1c2{word-spacing:4.596079pt;}
.ws41{word-spacing:4.603296pt;}
.ws16f{word-spacing:4.611805pt;}
.ws171{word-spacing:4.622646pt;}
.ws28{word-spacing:4.675780pt;}
.ws6a{word-spacing:4.728914pt;}
.ws223{word-spacing:4.778249pt;}
.ws85{word-spacing:4.782048pt;}
.ws206{word-spacing:4.782080pt;}
.wsa3{word-spacing:4.835182pt;}
.ws131{word-spacing:4.941450pt;}
.ws180{word-spacing:4.994583pt;}
.ws140{word-spacing:5.047717pt;}
.ws2f{word-spacing:5.100851pt;}
.ws5f{word-spacing:5.207119pt;}
.ws22a{word-spacing:5.212467pt;}
.ws76{word-spacing:5.259656pt;}
.wsc6{word-spacing:5.260253pt;}
.wsab{word-spacing:5.281623pt;}
.ws11d{word-spacing:5.283910pt;}
.ws199{word-spacing:5.299129pt;}
.ws191{word-spacing:5.311230pt;}
.ws60{word-spacing:5.312213pt;}
.ws164{word-spacing:5.313065pt;}
.ws1{word-spacing:5.313387pt;}
.ws182{word-spacing:5.313897pt;}
.ws197{word-spacing:5.365127pt;}
.ws66{word-spacing:5.366521pt;}
.ws5b{word-spacing:5.419654pt;}
.ws228{word-spacing:5.435955pt;}
.ws229{word-spacing:5.451571pt;}
.ws238{word-spacing:5.499392pt;}
.ws83{word-spacing:5.523910pt;}
.ws19d{word-spacing:5.525922pt;}
.ws239{word-spacing:5.547213pt;}
.wse0{word-spacing:5.579056pt;}
.ws13b{word-spacing:5.592305pt;}
.ws112{word-spacing:5.632190pt;}
.ws13c{word-spacing:5.647794pt;}
.ws12c{word-spacing:5.685324pt;}
.ws20c{word-spacing:5.690675pt;}
.ws134{word-spacing:5.738458pt;}
.ws51{word-spacing:5.791591pt;}
.ws38{word-spacing:5.844725pt;}
.wsd8{word-spacing:5.897859pt;}
.wsaf{word-spacing:5.950993pt;}
.ws1f{word-spacing:5.977600pt;}
.ws1fd{word-spacing:6.004127pt;}
.wsf7{word-spacing:6.057261pt;}
.ws1a{word-spacing:6.073242pt;}
.ws1e8{word-spacing:6.110395pt;}
.ws221{word-spacing:6.121062pt;}
.ws9f{word-spacing:6.163529pt;}
.ws219{word-spacing:6.168883pt;}
.ws114{word-spacing:6.216662pt;}
.wsc4{word-spacing:6.322930pt;}
.ws14c{word-spacing:6.376064pt;}
.ws14a{word-spacing:6.429198pt;}
.ws1bc{word-spacing:6.482332pt;}
.ws1cb{word-spacing:6.485932pt;}
.ws1cc{word-spacing:6.490165pt;}
.wsa{word-spacing:6.503629pt;}
.ws1e2{word-spacing:6.508899pt;}
.ws3b{word-spacing:6.535466pt;}
.ws157{word-spacing:6.555538pt;}
.ws158{word-spacing:6.588599pt;}
.wse4{word-spacing:6.641733pt;}
.ws168{word-spacing:6.650422pt;}
.ws57{word-spacing:6.702577pt;}
.wsc3{word-spacing:6.748001pt;}
.ws22b{word-spacing:6.790554pt;}
.ws58{word-spacing:6.801135pt;}
.ws194{word-spacing:6.828259pt;}
.ws12d{word-spacing:6.881593pt;}
.ws22e{word-spacing:6.934016pt;}
.ws142{word-spacing:6.960537pt;}
.ws22f{word-spacing:6.981837pt;}
.ws53{word-spacing:7.119938pt;}
.ws212{word-spacing:7.159049pt;}
.wsa7{word-spacing:7.173072pt;}
.ws213{word-spacing:7.173120pt;}
.wse2{word-spacing:7.220045pt;}
.wsc{word-spacing:7.220941pt;}
.wse3{word-spacing:7.226206pt;}
.ws178{word-spacing:7.279340pt;}
.wsdd{word-spacing:7.332474pt;}
.ws1da{word-spacing:7.344183pt;}
.ws1ab{word-spacing:7.345617pt;}
.ws1d4{word-spacing:7.347476pt;}
.ws1b1{word-spacing:7.348872pt;}
.ws1a7{word-spacing:7.349517pt;}
.ws1af{word-spacing:7.352108pt;}
.ws1ad{word-spacing:7.352885pt;}
.ws1b9{word-spacing:7.356355pt;}
.ws1d1{word-spacing:7.357190pt;}
.ws1a1{word-spacing:7.357884pt;}
.ws1a0{word-spacing:7.359041pt;}
.ws1a3{word-spacing:7.361497pt;}
.ws1ba{word-spacing:7.362612pt;}
.ws1a9{word-spacing:7.363197pt;}
.ws1bf{word-spacing:7.371083pt;}
.ws27{word-spacing:7.385607pt;}
.wsbd{word-spacing:7.438741pt;}
.ws115{word-spacing:7.446926pt;}
.ws6e{word-spacing:7.491875pt;}
.wsfc{word-spacing:7.502577pt;}
.ws205{word-spacing:7.507866pt;}
.ws111{word-spacing:7.542205pt;}
.ws10f{word-spacing:7.545009pt;}
.ws98{word-spacing:7.598143pt;}
.ws21e{word-spacing:7.634441pt;}
.ws1fa{word-spacing:7.651277pt;}
.ws21f{word-spacing:7.651328pt;}
.ws240{word-spacing:7.699149pt;}
.ws113{word-spacing:7.772259pt;}
.ws188{word-spacing:7.810678pt;}
.ws151{word-spacing:7.870577pt;}
.ws1b{word-spacing:7.890432pt;}
.wsd5{word-spacing:7.916946pt;}
.ws245{word-spacing:7.938253pt;}
.ws148{word-spacing:7.948563pt;}
.ws9e{word-spacing:7.970080pt;}
.ws214{word-spacing:7.986074pt;}
.wsb9{word-spacing:8.023214pt;}
.ws69{word-spacing:8.129482pt;}
.ws135{word-spacing:8.216022pt;}
.ws136{word-spacing:8.235749pt;}
.ws1a2{word-spacing:8.280249pt;}
.ws1ff{word-spacing:8.395151pt;}
.ws9a{word-spacing:8.448285pt;}
.wsb8{word-spacing:8.501419pt;}
.ws162{word-spacing:8.554553pt;}
.ws6{word-spacing:8.559923pt;}
.wsde{word-spacing:8.607686pt;}
.ws30{word-spacing:8.660820pt;}
.wsf4{word-spacing:8.713954pt;}
.ws110{word-spacing:8.769593pt;}
.ws20f{word-spacing:8.792892pt;}
.ws210{word-spacing:8.799027pt;}
.ws99{word-spacing:8.820222pt;}
.ws48{word-spacing:8.873356pt;}
.ws1ec{word-spacing:8.979623pt;}
.ws29{word-spacing:9.032757pt;}
.ws129{word-spacing:9.085891pt;}
.ws128{word-spacing:9.101638pt;}
.ws32{word-spacing:9.139025pt;}
.ws121{word-spacing:9.192159pt;}
.ws2d{word-spacing:9.245293pt;}
.ws196{word-spacing:9.245542pt;}
.wsc7{word-spacing:9.331910pt;}
.wsed{word-spacing:9.339489pt;}
.wsce{word-spacing:9.351561pt;}
.ws61{word-spacing:9.401244pt;}
.ws1e9{word-spacing:9.404694pt;}
.ws94{word-spacing:9.457828pt;}
.ws46{word-spacing:9.510962pt;}
.ws189{word-spacing:9.564096pt;}
.ws236{word-spacing:9.564160pt;}
.ws176{word-spacing:9.617230pt;}
.wse1{word-spacing:9.662577pt;}
.ws1e7{word-spacing:9.670364pt;}
.wsfd{word-spacing:9.671585pt;}
.ws49{word-spacing:9.723498pt;}
.ws21d{word-spacing:9.755443pt;}
.ws200{word-spacing:9.776631pt;}
.wsf8{word-spacing:9.829765pt;}
.ws25{word-spacing:9.882899pt;}
.ws50{word-spacing:9.902577pt;}
.ws10d{word-spacing:9.936033pt;}
.ws3a{word-spacing:9.989167pt;}
.wse{word-spacing:9.994547pt;}
.wsd2{word-spacing:10.042301pt;}
.ws1fe{word-spacing:10.067910pt;}
.ws22d{word-spacing:10.090189pt;}
.ws22c{word-spacing:10.138010pt;}
.wsd3{word-spacing:10.148569pt;}
.ws4d{word-spacing:10.201702pt;}
.ws220{word-spacing:10.233651pt;}
.ws15b{word-spacing:10.254836pt;}
.ws159{word-spacing:10.263334pt;}
.ws19f{word-spacing:10.302627pt;}
.ws20a{word-spacing:10.329293pt;}
.wsa5{word-spacing:10.361104pt;}
.ws21{word-spacing:10.424934pt;}
.ws11e{word-spacing:10.467372pt;}
.ws17{word-spacing:10.520576pt;}
.ws33{word-spacing:10.573639pt;}
.ws20d{word-spacing:10.616218pt;}
.ws8e{word-spacing:10.626773pt;}
.ws36{word-spacing:10.733041pt;}
.ws1d9{word-spacing:10.826206pt;}
.ws1ac{word-spacing:10.826539pt;}
.ws1d7{word-spacing:10.829441pt;}
.ws1d0{word-spacing:10.830143pt;}
.ws1d6{word-spacing:10.830219pt;}
.ws1df{word-spacing:10.831539pt;}
.ws1dd{word-spacing:10.834774pt;}
.ws1d2{word-spacing:10.835197pt;}
.ws1de{word-spacing:10.835552pt;}
.ws1e1{word-spacing:10.836323pt;}
.ws1a6{word-spacing:10.837581pt;}
.wsef{word-spacing:10.839309pt;}
.ws1a4{word-spacing:10.839945pt;}
.ws1dc{word-spacing:10.840530pt;}
.ws1a8{word-spacing:10.847773pt;}
.ws1b2{word-spacing:10.848416pt;}
.ws1d5{word-spacing:10.853106pt;}
.wsd{word-spacing:10.903142pt;}
.ws247{word-spacing:10.921225pt;}
.wsc2{word-spacing:10.945577pt;}
.ws161{word-spacing:10.998710pt;}
.ws75{word-spacing:11.051844pt;}
.ws55{word-spacing:11.104978pt;}
.ws5e{word-spacing:11.211246pt;}
.ws243{word-spacing:11.237888pt;}
.ws15{word-spacing:11.285709pt;}
.ws15c{word-spacing:11.307297pt;}
.ws15e{word-spacing:11.313897pt;}
.ws160{word-spacing:11.317514pt;}
.ws237{word-spacing:11.333530pt;}
.wsc8{word-spacing:11.370647pt;}
.wsd4{word-spacing:11.476915pt;}
.ws20e{word-spacing:11.524813pt;}
.ws130{word-spacing:11.583183pt;}
.ws195{word-spacing:11.636317pt;}
.wse8{word-spacing:11.689451pt;}
.ws244{word-spacing:11.716096pt;}
.ws12a{word-spacing:11.742585pt;}
.ws12b{word-spacing:11.757579pt;}
.ws1c7{word-spacing:11.757583pt;}
.ws1c6{word-spacing:11.762916pt;}
.ws26{word-spacing:11.795718pt;}
.ws23a{word-spacing:11.811738pt;}
.wsa2{word-spacing:11.848852pt;}
.ws1e{word-spacing:11.859558pt;}
.wsd6{word-spacing:11.901986pt;}
.ws19{word-spacing:11.907379pt;}
.wsb4{word-spacing:11.955120pt;}
.wsba{word-spacing:12.008254pt;}
.ws187{word-spacing:12.114522pt;}
.ws20{word-spacing:12.146483pt;}
.wsf3{word-spacing:12.167655pt;}
.wseb{word-spacing:12.212063pt;}
.wse9{word-spacing:12.213763pt;}
.wsec{word-spacing:12.214577pt;}
.wsea{word-spacing:12.220789pt;}
.wse6{word-spacing:12.273923pt;}
.ws207{word-spacing:12.289946pt;}
.wsa6{word-spacing:12.327057pt;}
.ws208{word-spacing:12.337766pt;}
.ws89{word-spacing:12.380191pt;}
.ws80{word-spacing:12.433325pt;}
.ws19c{word-spacing:12.486459pt;}
.wsbe{word-spacing:12.569852pt;}
.wsbf{word-spacing:12.592726pt;}
.wsd9{word-spacing:12.698994pt;}
.ws133{word-spacing:12.705813pt;}
.wsac{word-spacing:12.752128pt;}
.ws17b{word-spacing:12.805262pt;}
.wsae{word-spacing:12.858396pt;}
.ws122{word-spacing:12.911530pt;}
.ws146{word-spacing:12.940180pt;}
.ws7f{word-spacing:13.017797pt;}
.ws172{word-spacing:13.064022pt;}
.ws173{word-spacing:13.070931pt;}
.wsf1{word-spacing:13.124065pt;}
.ws124{word-spacing:13.177199pt;}
.wsb{word-spacing:13.198541pt;}
.ws34{word-spacing:13.389734pt;}
.ws215{word-spacing:13.389824pt;}
.ws143{word-spacing:13.442868pt;}
.ws37{word-spacing:13.496002pt;}
.ws127{word-spacing:13.602270pt;}
.ws87{word-spacing:13.655404pt;}
.ws74{word-spacing:13.708538pt;}
.wsb6{word-spacing:13.761671pt;}
.ws5{word-spacing:13.772390pt;}
.ws8f{word-spacing:13.867939pt;}
.ws13f{word-spacing:13.921073pt;}
.ws3f{word-spacing:14.080475pt;}
.ws62{word-spacing:14.133609pt;}
.ws16{word-spacing:14.202778pt;}
.ws123{word-spacing:14.239876pt;}
.ws125{word-spacing:14.396259pt;}
.ws7d{word-spacing:14.558679pt;}
.ws11f{word-spacing:14.563910pt;}
.wscb{word-spacing:14.584119pt;}
.wscd{word-spacing:14.611813pt;}
.ws217{word-spacing:14.633165pt;}
.ws1fb{word-spacing:14.664947pt;}
.ws11{word-spacing:14.680986pt;}
.wsa9{word-spacing:14.718081pt;}
.wsb5{word-spacing:14.771215pt;}
.ws132{word-spacing:14.824349pt;}
.ws1bb{word-spacing:14.850612pt;}
.ws1c3{word-spacing:14.855945pt;}
.ws1c0{word-spacing:14.859083pt;}
.wsf0{word-spacing:14.947910pt;}
.wsbb{word-spacing:14.956999pt;}
.ws6d{word-spacing:14.983750pt;}
.ws59{word-spacing:15.036884pt;}
.ws21c{word-spacing:15.063552pt;}
.ws81{word-spacing:15.090018pt;}
.ws9{word-spacing:15.446118pt;}
.ws7e{word-spacing:15.461955pt;}
.ws14e{word-spacing:15.468332pt;}
.wsd1{word-spacing:15.470577pt;}
.ws235{word-spacing:15.493939pt;}
.ws17c{word-spacing:15.568223pt;}
.ws9d{word-spacing:15.727625pt;}
.ws154{word-spacing:15.780758pt;}
.ws153{word-spacing:15.833892pt;}
.ws2c{word-spacing:15.887026pt;}
.ws1ce{word-spacing:15.911780pt;}
.ws1b5{word-spacing:15.912953pt;}
.ws1b3{word-spacing:15.913593pt;}
.ws1cd{word-spacing:15.914649pt;}
.ws1b7{word-spacing:15.915300pt;}
.ws1be{word-spacing:15.917006pt;}
.ws1b4{word-spacing:15.917279pt;}
.ws1ca{word-spacing:15.918286pt;}
.ws1b6{word-spacing:15.920416pt;}
.ws10{word-spacing:15.924326pt;}
.ws1b8{word-spacing:15.925749pt;}
.ws23{word-spacing:15.940160pt;}
.wsd7{word-spacing:15.982577pt;}
.ws224{word-spacing:16.067789pt;}
.ws1c{word-spacing:16.115610pt;}
.ws45{word-spacing:16.152695pt;}
.ws183{word-spacing:16.178703pt;}
.ws11b{word-spacing:16.258963pt;}
.ws185{word-spacing:16.365231pt;}
.ws3e{word-spacing:16.418365pt;}
.ws21b{word-spacing:16.450355pt;}
.ws65{word-spacing:16.684034pt;}
.ws47{word-spacing:16.790302pt;}
.wsad{word-spacing:16.814577pt;}
.ws1c4{word-spacing:16.834916pt;}
.ws11a{word-spacing:16.896570pt;}
.ws118{word-spacing:16.909046pt;}
.ws119{word-spacing:16.928871pt;}
.ws21a{word-spacing:16.976384pt;}
.ws218{word-spacing:17.167667pt;}
.ws17f{word-spacing:17.226020pt;}
.ws4f{word-spacing:17.374774pt;}
.ws156{word-spacing:17.419811pt;}
.ws12{word-spacing:17.454592pt;}
.ws18{word-spacing:17.502413pt;}
.ws64{word-spacing:17.640444pt;}
.ws1ea{word-spacing:17.852979pt;}
.ws170{word-spacing:17.853468pt;}
.ws97{word-spacing:17.959247pt;}
.wsf2{word-spacing:18.065515pt;}
.ws14d{word-spacing:18.118649pt;}
.ws117{word-spacing:18.150926pt;}
.ws246{word-spacing:18.219725pt;}
.ws43{word-spacing:18.437452pt;}
.ws8a{word-spacing:18.490586pt;}
.ws165{word-spacing:18.522020pt;}
.ws145{word-spacing:18.561514pt;}
.ws174{word-spacing:18.564004pt;}
.ws4a{word-spacing:18.581615pt;}
.ws4c{word-spacing:18.596853pt;}
.ws63{word-spacing:18.649987pt;}
.wscc{word-spacing:18.681244pt;}
.ws13a{word-spacing:18.703121pt;}
.ws19b{word-spacing:18.756255pt;}
.wsc1{word-spacing:18.862523pt;}
.ws6c{word-spacing:19.049244pt;}
.ws201{word-spacing:19.340727pt;}
.ws1d{word-spacing:19.415245pt;}
.wsf5{word-spacing:19.500129pt;}
.ws35{word-spacing:19.553263pt;}
.ws14b{word-spacing:19.634071pt;}
.ws186{word-spacing:19.872066pt;}
.ws1c8{word-spacing:19.927333pt;}
.wsdb{word-spacing:19.978334pt;}
.ws179{word-spacing:20.002801pt;}
.ws144{word-spacing:20.137735pt;}
.ws4{word-spacing:20.323840pt;}
.ws242{word-spacing:20.419482pt;}
.wsa1{word-spacing:20.509673pt;}
.wsb7{word-spacing:20.828476pt;}
.ws12e{word-spacing:20.881610pt;}
.ws163{word-spacing:21.810801pt;}
.ws4b{word-spacing:22.654577pt;}
.ws93{word-spacing:22.679666pt;}
.ws177{word-spacing:22.876180pt;}
.ws15a{word-spacing:23.537514pt;}
.ws15d{word-spacing:24.522020pt;}
.ws15f{word-spacing:24.552134pt;}
.ws12f{word-spacing:24.942577pt;}
.ws192{word-spacing:25.899814pt;}
.ws17d{word-spacing:28.751353pt;}
.ws23b{word-spacing:29.266330pt;}
.ws13{word-spacing:29.361860pt;}
.ws175{word-spacing:32.095353pt;}
.ws23e{word-spacing:41.269350pt;}
.ws23d{word-spacing:41.285299pt;}
.wsb0{word-spacing:47.421840pt;}
.ws23c{word-spacing:47.725158pt;}
.ws167{word-spacing:59.031726pt;}
.wsb3{word-spacing:60.699955pt;}
.ws1ae{word-spacing:101.751333pt;}
.ws169{word-spacing:139.306366pt;}
.ws100{word-spacing:141.890560pt;}
.ws166{word-spacing:152.706733pt;}
.ws16a{word-spacing:161.064684pt;}
.ws1b0{word-spacing:183.580667pt;}
.ws1cf{word-spacing:210.345666pt;}
.ws1db{word-spacing:265.404667pt;}
.ws10c{word-spacing:266.744320pt;}
.ws1e0{word-spacing:347.228667pt;}
.ws18e{word-spacing:412.013653pt;}
.ws1e3{word-spacing:429.058000pt;}
.ws18f{word-spacing:457.634987pt;}
.ws10b{word-spacing:471.373653pt;}
.ws1bd{word-spacing:755.019499pt;}
.ws10a{word-spacing:1285.336747pt;}
._3a{margin-left:-8.006167pt;}
._2{margin-left:-6.430798pt;}
._14{margin-left:-5.260208pt;}
._6{margin-left:-4.351693pt;}
._1{margin-left:-3.453701pt;}
._4{margin-left:-2.343219pt;}
._0{margin-left:-1.338979pt;}
._a{width:1.166315pt;}
._7{width:2.656693pt;}
._19{width:3.674553pt;}
._37{width:10.339821pt;}
._9{width:13.134698pt;}
._3c{width:14.205483pt;}
._3{width:15.302656pt;}
._18{width:16.524633pt;}
._16{width:17.640444pt;}
._41{width:18.721610pt;}
._8{width:21.519216pt;}
._1f{width:23.485169pt;}
._15{width:24.985594pt;}
._5{width:26.970931pt;}
._21{width:28.262145pt;}
._17{width:30.445706pt;}
._20{width:31.986588pt;}
._3f{width:40.304907pt;}
._40{width:41.221530pt;}
._3e{width:47.820561pt;}
._25{width:65.673459pt;}
._f{width:69.328912pt;}
._3d{width:71.798507pt;}
._d{width:93.876646pt;}
._1c{width:118.163065pt;}
._c{width:123.185222pt;}
._2b{width:124.266366pt;}
._1a{width:133.710105pt;}
._10{width:138.323008pt;}
._2d{width:145.560228pt;}
._29{width:167.717050pt;}
._31{width:172.596529pt;}
._30{width:175.102658pt;}
._2e{width:178.808981pt;}
._24{width:186.872510pt;}
._e{width:196.159056pt;}
._33{width:198.253202pt;}
._32{width:232.188234pt;}
._34{width:238.421316pt;}
._28{width:240.669849pt;}
._2f{width:251.177078pt;}
._2a{width:252.343365pt;}
._13{width:254.738976pt;}
._12{width:256.784624pt;}
._2c{width:261.216721pt;}
._27{width:262.800105pt;}
._11{width:279.472720pt;}
._26{width:287.905857pt;}
._22{width:299.728142pt;}
._3b{width:335.343467pt;}
._23{width:345.476401pt;}
._38{width:351.283627pt;}
._35{width:467.270293pt;}
._36{width:489.584960pt;}
._1b{width:506.164111pt;}
._1e{width:507.718293pt;}
._1d{width:525.830293pt;}
._b{width:601.457706pt;}
._39{width:941.069547pt;}
.fs17{font-size:21.100000pt;}
.fsf{font-size:22.400000pt;}
.fse{font-size:22.506667pt;}
.fs15{font-size:24.000000pt;}
.fs13{font-size:24.100000pt;}
.fsc{font-size:26.566933pt;}
.fsd{font-size:31.880533pt;}
.fs14{font-size:33.100000pt;}
.fsb{font-size:33.886667pt;}
.fs7{font-size:35.200000pt;}
.fs8{font-size:35.306667pt;}
.fs12{font-size:36.100000pt;}
.fs2{font-size:37.193600pt;}
.fs5{font-size:38.400000pt;}
.fsa{font-size:38.506667pt;}
.fs6{font-size:41.706667pt;}
.fs4{font-size:42.507200pt;}
.fs16{font-size:45.100000pt;}
.fs3{font-size:47.820800pt;}
.fs10{font-size:48.100000pt;}
.fs11{font-size:48.200000pt;}
.fs9{font-size:51.306667pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.y271{bottom:4.600000pt;}
.y26e{bottom:4.725000pt;}
.y125{bottom:7.786667pt;}
.y15c{bottom:8.948333pt;}
.y1d1{bottom:10.640000pt;}
.y270{bottom:15.425000pt;}
.y26d{bottom:15.550000pt;}
.y1d0{bottom:17.066667pt;}
.y26f{bottom:26.250000pt;}
.y26c{bottom:26.375000pt;}
.y269{bottom:39.725000pt;}
.y1be{bottom:39.733333pt;}
.y1d7{bottom:43.600000pt;}
.y124{bottom:45.466667pt;}
.y1bd{bottom:45.520000pt;}
.y15b{bottom:47.731667pt;}
.y1d6{bottom:50.000000pt;}
.y136{bottom:54.506667pt;}
.y267{bottom:56.300000pt;}
.y12d{bottom:59.946667pt;}
.y13d{bottom:60.933333pt;}
.y129{bottom:64.240000pt;}
.y266{bottom:66.025000pt;}
.y135{bottom:66.053333pt;}
.y26a{bottom:79.425000pt;}
.y128{bottom:79.653333pt;}
.y268{bottom:80.925000pt;}
.y134{bottom:87.786667pt;}
.y273{bottom:94.325000pt;}
.y127{bottom:95.040000pt;}
.y275{bottom:95.250000pt;}
.yaf{bottom:99.226667pt;}
.y34{bottom:99.228000pt;}
.y133{bottom:99.626667pt;}
.y274{bottom:101.270000pt;}
.y272{bottom:101.570000pt;}
.y2e6{bottom:101.918667pt;}
.y1bb{bottom:102.978667pt;}
.y12c{bottom:107.520000pt;}
.y21e{bottom:109.324000pt;}
.y126{bottom:110.421333pt;}
.y132{bottom:111.498667pt;}
.y2b4{bottom:112.510667pt;}
.y33{bottom:115.168000pt;}
.y2e5{bottom:115.202667pt;}
.y21d{bottom:118.372000pt;}
.y12b{bottom:119.061333pt;}
.y180{bottom:119.484000pt;}
.y1c2{bottom:122.346667pt;}
.y131{bottom:123.328000pt;}
.y1ba{bottom:125.105333pt;}
.y142{bottom:126.506667pt;}
.y21c{bottom:127.421333pt;}
.y1cf{bottom:127.658667pt;}
.y2e4{bottom:128.485333pt;}
.y1c1{bottom:128.746667pt;}
.y32{bottom:131.108000pt;}
.yeb{bottom:131.442667pt;}
.y263{bottom:131.630000pt;}
.y82{bottom:132.120000pt;}
.y1cd{bottom:133.525333pt;}
.y1ce{bottom:134.058667pt;}
.y21b{bottom:135.390667pt;}
.y17f{bottom:135.424000pt;}
.y1c9{bottom:139.552000pt;}
.y130{bottom:139.605333pt;}
.y2b3{bottom:139.885333pt;}
.y1cc{bottom:139.946667pt;}
.y1b9{bottom:141.045333pt;}
.y12a{bottom:142.080000pt;}
.y262{bottom:142.450000pt;}
.y21a{bottom:144.440000pt;}
.y1cb{bottom:146.378667pt;}
.y31{bottom:147.048000pt;}
.y119{bottom:147.234667pt;}
.yea{bottom:147.382667pt;}
.y81{bottom:148.060000pt;}
.y13e{bottom:148.213333pt;}
.y17e{bottom:151.364000pt;}
.y1c0{bottom:151.893333pt;}
.y2b2{bottom:153.169333pt;}
.y219{bottom:153.488000pt;}
.y2e3{bottom:154.481333pt;}
.y1ca{bottom:154.645333pt;}
.y1b8{bottom:156.985333pt;}
.y1bf{bottom:158.314667pt;}
.y1c6{bottom:158.848000pt;}
.y218{bottom:161.458667pt;}
.y30{bottom:162.988000pt;}
.y118{bottom:163.174667pt;}
.ye9{bottom:163.322667pt;}
.y80{bottom:164.001333pt;}
.y1c5{bottom:165.280000pt;}
.y1d5{bottom:165.312000pt;}
.y2b1{bottom:166.453333pt;}
.y17d{bottom:167.304000pt;}
.y2e2{bottom:167.764000pt;}
.yae{bottom:168.077333pt;}
.y217{bottom:170.633333pt;}
.y1b7{bottom:172.926667pt;}
.y140{bottom:174.314667pt;}
.y25f{bottom:175.100000pt;}
.y216{bottom:178.602667pt;}
.y50{bottom:178.928000pt;}
.y2f{bottom:178.929333pt;}
.y117{bottom:179.114667pt;}
.ye8{bottom:179.262667pt;}
.y7f{bottom:179.941333pt;}
.y123{bottom:181.045333pt;}
.y2e1{bottom:181.048000pt;}
.y1c4{bottom:182.218667pt;}
.y17c{bottom:183.245333pt;}
.y26b{bottom:184.980000pt;}
.y215{bottom:186.573333pt;}
.y1c3{bottom:188.640000pt;}
.y1b6{bottom:188.866667pt;}
.y25e{bottom:189.520000pt;}
.y2b0{bottom:193.828000pt;}
.yad{bottom:194.265333pt;}
.y214{bottom:194.542667pt;}
.y2e{bottom:194.869333pt;}
.y116{bottom:195.054667pt;}
.ye7{bottom:195.202667pt;}
.y11d{bottom:195.221333pt;}
.y7e{bottom:195.881333pt;}
.y17b{bottom:199.185333pt;}
.y1c8{bottom:199.488000pt;}
.y213{bottom:202.513333pt;}
.y120{bottom:204.693333pt;}
.y1b5{bottom:204.806667pt;}
.y1c7{bottom:205.920000pt;}
.y1d4{bottom:206.293333pt;}
.y11c{bottom:206.773333pt;}
.y2e0{bottom:207.042667pt;}
.y2af{bottom:207.110667pt;}
.yac{bottom:210.205333pt;}
.y212{bottom:210.484000pt;}
.y2d{bottom:210.809333pt;}
.y115{bottom:210.994667pt;}
.ye6{bottom:211.144000pt;}
.y7d{bottom:211.821333pt;}
.y17a{bottom:215.125333pt;}
.y11b{bottom:218.325333pt;}
.y211{bottom:218.453333pt;}
.y141{bottom:220.266667pt;}
.y2df{bottom:220.326667pt;}
.y2ae{bottom:220.394667pt;}
.y1b4{bottom:222.854667pt;}
.y261{bottom:223.830000pt;}
.y1d2{bottom:224.512000pt;}
.yab{bottom:226.145333pt;}
.y210{bottom:226.424000pt;}
.y2c{bottom:226.749333pt;}
.y114{bottom:226.934667pt;}
.ye5{bottom:227.084000pt;}
.y7c{bottom:227.761333pt;}
.y13f{bottom:231.040000pt;}
.y179{bottom:231.065333pt;}
.y2de{bottom:233.610667pt;}
.y20f{bottom:234.393333pt;}
.y260{bottom:234.650000pt;}
.y12f{bottom:238.581333pt;}
.y1b3{bottom:238.794667pt;}
.yaa{bottom:242.086667pt;}
.y20e{bottom:242.364000pt;}
.y2b{bottom:242.689333pt;}
.y113{bottom:242.876000pt;}
.ye4{bottom:243.024000pt;}
.y7b{bottom:243.702667pt;}
.y157{bottom:243.726667pt;}
.y2dd{bottom:246.893333pt;}
.y178{bottom:247.005333pt;}
.y2ad{bottom:247.769333pt;}
.y12e{bottom:250.133333pt;}
.y20d{bottom:250.333333pt;}
.y1b2{bottom:254.734667pt;}
.ya9{bottom:258.026667pt;}
.y20c{bottom:258.304000pt;}
.y4f{bottom:258.629333pt;}
.y2a{bottom:258.630667pt;}
.y112{bottom:258.816000pt;}
.ye3{bottom:259.298667pt;}
.y7a{bottom:259.642667pt;}
.y156{bottom:259.666667pt;}
.y2ac{bottom:261.052000pt;}
.y177{bottom:262.945333pt;}
.y1d3{bottom:264.586667pt;}
.y265{bottom:266.270000pt;}
.y20b{bottom:266.274667pt;}
.y143{bottom:269.738667pt;}
.y1b1{bottom:270.676000pt;}
.y2dc{bottom:272.889333pt;}
.y264{bottom:273.520000pt;}
.ya8{bottom:274.117333pt;}
.y20a{bottom:274.244000pt;}
.y4e{bottom:274.569333pt;}
.y29{bottom:274.570667pt;}
.y111{bottom:274.756000pt;}
.y28b{bottom:274.778667pt;}
.ye2{bottom:275.238667pt;}
.y79{bottom:275.582667pt;}
.y155{bottom:275.606667pt;}
.y176{bottom:278.886667pt;}
.y11f{bottom:278.933333pt;}
.y122{bottom:278.986667pt;}
.y209{bottom:282.214667pt;}
.y11e{bottom:283.445333pt;}
.y2db{bottom:286.172000pt;}
.y1b0{bottom:286.616000pt;}
.y2ab{bottom:288.426667pt;}
.y121{bottom:289.248000pt;}
.ya7{bottom:290.057333pt;}
.y208{bottom:290.184000pt;}
.y28{bottom:290.510667pt;}
.y110{bottom:290.696000pt;}
.y28a{bottom:290.718667pt;}
.ye1{bottom:291.178667pt;}
.y78{bottom:291.522667pt;}
.y154{bottom:291.546667pt;}
.y1ec{bottom:294.249333pt;}
.y175{bottom:294.826667pt;}
.y207{bottom:298.154667pt;}
.y2da{bottom:299.456000pt;}
.y2aa{bottom:301.710667pt;}
.y1af{bottom:302.556000pt;}
.ya6{bottom:305.997333pt;}
.y206{bottom:306.125333pt;}
.y27{bottom:306.450667pt;}
.y10f{bottom:306.636000pt;}
.y289{bottom:306.658667pt;}
.ye0{bottom:307.118667pt;}
.y77{bottom:307.462667pt;}
.y153{bottom:307.488000pt;}
.y174{bottom:310.766667pt;}
.y205{bottom:314.094667pt;}
.y2a9{bottom:314.994667pt;}
.y1eb{bottom:316.484000pt;}
.y1ae{bottom:318.496000pt;}
.ya5{bottom:321.938667pt;}
.y204{bottom:322.065333pt;}
.y4d{bottom:322.390667pt;}
.y10e{bottom:322.576000pt;}
.y288{bottom:322.598667pt;}
.ydf{bottom:323.058667pt;}
.y152{bottom:323.428000pt;}
.y76{bottom:324.416000pt;}
.y2d9{bottom:325.452000pt;}
.y173{bottom:327.492000pt;}
.y26{bottom:329.537333pt;}
.y203{bottom:330.034667pt;}
.y1ea{bottom:332.424000pt;}
.y138{bottom:333.280000pt;}
.y13b{bottom:333.333333pt;}
.y1ad{bottom:334.436000pt;}
.ya4{bottom:337.878667pt;}
.y202{bottom:338.005333pt;}
.y4c{bottom:338.330667pt;}
.y10d{bottom:338.517333pt;}
.y287{bottom:338.538667pt;}
.y2d8{bottom:338.734667pt;}
.yde{bottom:338.998667pt;}
.y139{bottom:339.072000pt;}
.y137{bottom:339.093333pt;}
.y151{bottom:339.368000pt;}
.y75{bottom:340.356000pt;}
.y2a8{bottom:342.368000pt;}
.y172{bottom:343.433333pt;}
.y13a{bottom:344.885333pt;}
.y201{bottom:345.974667pt;}
.y1e9{bottom:348.364000pt;}
.y1ac{bottom:350.376000pt;}
.y13c{bottom:350.752000pt;}
.y2d7{bottom:352.018667pt;}
.ya3{bottom:353.818667pt;}
.y4b{bottom:354.270667pt;}
.y10c{bottom:354.457333pt;}
.y286{bottom:354.478667pt;}
.ydd{bottom:354.940000pt;}
.y200{bottom:355.024000pt;}
.y150{bottom:355.308000pt;}
.y2a7{bottom:355.652000pt;}
.y25c{bottom:356.078667pt;}
.y74{bottom:356.296000pt;}
.y171{bottom:359.373333pt;}
.y25{bottom:362.333333pt;}
.y1ff{bottom:362.994667pt;}
.y1e8{bottom:364.304000pt;}
.y1ab{bottom:366.317333pt;}
.y2a6{bottom:368.936000pt;}
.ya2{bottom:369.909333pt;}
.y4a{bottom:370.212000pt;}
.y10b{bottom:370.397333pt;}
.y285{bottom:370.420000pt;}
.ydc{bottom:370.880000pt;}
.y14f{bottom:371.248000pt;}
.y25b{bottom:372.018667pt;}
.y1fe{bottom:372.168000pt;}
.y73{bottom:372.236000pt;}
.y170{bottom:375.313333pt;}
.y24{bottom:375.616000pt;}
.y2d6{bottom:378.013333pt;}
.y1fd{bottom:381.217333pt;}
.y1e7{bottom:381.465333pt;}
.y1aa{bottom:382.257333pt;}
.ya1{bottom:385.849333pt;}
.y49{bottom:386.152000pt;}
.y10a{bottom:386.337333pt;}
.y284{bottom:386.360000pt;}
.ydb{bottom:386.820000pt;}
.y14e{bottom:387.188000pt;}
.y25a{bottom:387.958667pt;}
.y72{bottom:388.176000pt;}
.y23{bottom:388.900000pt;}
.y1fc{bottom:389.186667pt;}
.y16f{bottom:391.253333pt;}
.y2d5{bottom:391.297333pt;}
.y2a5{bottom:396.310667pt;}
.y1e6{bottom:397.406667pt;}
.y1a9{bottom:398.197333pt;}
.y1fb{bottom:398.361333pt;}
.ya0{bottom:401.789333pt;}
.y48{bottom:402.092000pt;}
.y109{bottom:402.277333pt;}
.y283{bottom:402.300000pt;}
.yda{bottom:402.760000pt;}
.y14d{bottom:403.129333pt;}
.y259{bottom:403.900000pt;}
.y71{bottom:404.117333pt;}
.y2d4{bottom:404.581333pt;}
.y16e{bottom:407.193333pt;}
.y1fa{bottom:407.410667pt;}
.y2a4{bottom:409.593333pt;}
.y22{bottom:410.062667pt;}
.y1e5{bottom:413.346667pt;}
.y1a8{bottom:414.137333pt;}
.y1f9{bottom:415.380000pt;}
.y9f{bottom:417.730667pt;}
.y2d3{bottom:417.864000pt;}
.y47{bottom:418.032000pt;}
.y108{bottom:418.217333pt;}
.y282{bottom:418.240000pt;}
.yd9{bottom:418.700000pt;}
.y14c{bottom:419.069333pt;}
.y70{bottom:420.057333pt;}
.y2a3{bottom:422.877333pt;}
.y16d{bottom:423.133333pt;}
.y21{bottom:423.345333pt;}
.y1f8{bottom:424.554667pt;}
.y1e4{bottom:429.286667pt;}
.y1a7{bottom:430.077333pt;}
.y1f7{bottom:433.604000pt;}
.y9e{bottom:433.670667pt;}
.y46{bottom:433.972000pt;}
.y107{bottom:434.158667pt;}
.y281{bottom:434.180000pt;}
.yd8{bottom:434.640000pt;}
.y14b{bottom:435.009333pt;}
.y6f{bottom:435.997333pt;}
.y20{bottom:436.629333pt;}
.y16c{bottom:439.074667pt;}
.y1f6{bottom:441.573333pt;}
.y2d2{bottom:443.860000pt;}
.y1e3{bottom:445.226667pt;}
.y1a6{bottom:446.017333pt;}
.y9d{bottom:449.610667pt;}
.y45{bottom:449.912000pt;}
.y1f{bottom:449.913333pt;}
.y106{bottom:450.098667pt;}
.y2a2{bottom:450.252000pt;}
.yd7{bottom:450.581333pt;}
.y1f5{bottom:450.748000pt;}
.y14a{bottom:450.949333pt;}
.y6e{bottom:451.937333pt;}
.y16b{bottom:455.014667pt;}
.y159{bottom:455.213333pt;}
.y280{bottom:455.552000pt;}
.y2d1{bottom:457.142667pt;}
.y1f4{bottom:458.717333pt;}
.y1e2{bottom:461.166667pt;}
.y258{bottom:461.853333pt;}
.y1a5{bottom:461.958667pt;}
.y1e{bottom:463.196000pt;}
.y2a1{bottom:463.534667pt;}
.y9c{bottom:465.550667pt;}
.y44{bottom:465.853333pt;}
.y105{bottom:466.038667pt;}
.yd6{bottom:466.521333pt;}
.y1f3{bottom:466.688000pt;}
.y149{bottom:466.889333pt;}
.y6d{bottom:467.877333pt;}
.y2d0{bottom:470.426667pt;}
.y257{bottom:470.901333pt;}
.y16a{bottom:470.954667pt;}
.y1f2{bottom:474.658667pt;}
.y1d{bottom:476.480000pt;}
.y2a0{bottom:476.818667pt;}
.y1e1{bottom:477.108000pt;}
.y1a4{bottom:477.898667pt;}
.y256{bottom:479.950667pt;}
.y9b{bottom:481.490667pt;}
.y43{bottom:481.793333pt;}
.y104{bottom:482.165333pt;}
.y27f{bottom:482.225333pt;}
.yd5{bottom:482.461333pt;}
.y1f1{bottom:482.628000pt;}
.y148{bottom:482.829333pt;}
.y6c{bottom:483.817333pt;}
.y169{bottom:486.894667pt;}
.y255{bottom:488.998667pt;}
.y1c{bottom:489.762667pt;}
.y1f0{bottom:490.706667pt;}
.y1e0{bottom:493.048000pt;}
.y1a3{bottom:493.838667pt;}
.y2cf{bottom:496.422667pt;}
.y9a{bottom:497.432000pt;}
.y42{bottom:497.733333pt;}
.y254{bottom:498.048000pt;}
.y103{bottom:498.105333pt;}
.y27e{bottom:498.165333pt;}
.y1ef{bottom:498.677333pt;}
.yd4{bottom:498.736000pt;}
.y158{bottom:498.769333pt;}
.y147{bottom:498.770667pt;}
.y6b{bottom:499.758667pt;}
.y1b{bottom:503.046667pt;}
.y168{bottom:503.621333pt;}
.y29f{bottom:504.193333pt;}
.y1ee{bottom:506.648000pt;}
.y253{bottom:507.096000pt;}
.y1df{bottom:508.988000pt;}
.y2ce{bottom:509.705333pt;}
.y1a2{bottom:509.778667pt;}
.y99{bottom:513.372000pt;}
.y41{bottom:513.673333pt;}
.y102{bottom:514.045333pt;}
.y27d{bottom:514.106667pt;}
.yd3{bottom:514.676000pt;}
.y146{bottom:514.710667pt;}
.y252{bottom:515.066667pt;}
.y1a{bottom:516.330667pt;}
.y29e{bottom:517.477333pt;}
.y167{bottom:519.561333pt;}
.y1ed{bottom:521.750667pt;}
.y2cd{bottom:522.989333pt;}
.y251{bottom:523.385333pt;}
.y1de{bottom:524.928000pt;}
.y1a1{bottom:525.718667pt;}
.y6a{bottom:525.957333pt;}
.y98{bottom:529.312000pt;}
.y19{bottom:529.613333pt;}
.y101{bottom:529.985333pt;}
.y27c{bottom:530.046667pt;}
.yd2{bottom:530.616000pt;}
.y145{bottom:530.650667pt;}
.y29d{bottom:530.760000pt;}
.y250{bottom:531.354667pt;}
.y166{bottom:535.501333pt;}
.y2cc{bottom:536.272000pt;}
.y24f{bottom:539.325333pt;}
.y1a0{bottom:541.660000pt;}
.y1dd{bottom:542.089333pt;}
.y18{bottom:542.897333pt;}
.y97{bottom:545.252000pt;}
.y40{bottom:545.553333pt;}
.y100{bottom:545.925333pt;}
.y27b{bottom:545.986667pt;}
.yd1{bottom:546.556000pt;}
.y24e{bottom:548.500000pt;}
.y165{bottom:551.441333pt;}
.y17{bottom:556.181333pt;}
.y24d{bottom:557.548000pt;}
.y19f{bottom:557.600000pt;}
.y1dc{bottom:558.030667pt;}
.y29c{bottom:558.134667pt;}
.y69{bottom:559.469333pt;}
.y96{bottom:561.192000pt;}
.y3f{bottom:561.494667pt;}
.yff{bottom:561.865333pt;}
.y27a{bottom:561.926667pt;}
.y2cb{bottom:562.268000pt;}
.yd0{bottom:562.496000pt;}
.y24c{bottom:566.597333pt;}
.y164{bottom:567.381333pt;}
.y16{bottom:569.464000pt;}
.y29b{bottom:571.418667pt;}
.y19e{bottom:573.540000pt;}
.y1db{bottom:573.970667pt;}
.y24b{bottom:574.566667pt;}
.y68{bottom:575.409333pt;}
.y2ca{bottom:575.552000pt;}
.y95{bottom:577.282667pt;}
.y3e{bottom:577.434667pt;}
.yfe{bottom:577.806667pt;}
.y279{bottom:577.866667pt;}
.ycf{bottom:578.437333pt;}
.y144{bottom:578.470667pt;}
.y15{bottom:582.748000pt;}
.y24a{bottom:582.885333pt;}
.y163{bottom:583.322667pt;}
.y2c9{bottom:588.834667pt;}
.y19d{bottom:589.480000pt;}
.y1da{bottom:589.910667pt;}
.y249{bottom:590.854667pt;}
.y67{bottom:591.349333pt;}
.y94{bottom:593.224000pt;}
.y3d{bottom:593.374667pt;}
.yfd{bottom:593.746667pt;}
.y278{bottom:593.806667pt;}
.yce{bottom:594.377333pt;}
.y14{bottom:596.032000pt;}
.y11a{bottom:597.600000pt;}
.y29a{bottom:598.793333pt;}
.y248{bottom:598.825333pt;}
.y162{bottom:599.262667pt;}
.y2c8{bottom:602.118667pt;}
.y19c{bottom:605.420000pt;}
.y1d9{bottom:605.850667pt;}
.y66{bottom:607.290667pt;}
.y247{bottom:608.000000pt;}
.y93{bottom:609.164000pt;}
.y13{bottom:609.314667pt;}
.yfc{bottom:609.686667pt;}
.y277{bottom:609.748000pt;}
.ycd{bottom:610.317333pt;}
.y299{bottom:612.076000pt;}
.y161{bottom:615.202667pt;}
.y246{bottom:617.048000pt;}
.y19b{bottom:621.360000pt;}
.y12{bottom:622.598667pt;}
.y65{bottom:623.230667pt;}
.y92{bottom:625.104000pt;}
.y3c{bottom:625.254667pt;}
.y298{bottom:625.360000pt;}
.yfb{bottom:625.626667pt;}
.y245{bottom:626.097333pt;}
.ycc{bottom:626.257333pt;}
.y2c7{bottom:628.113333pt;}
.y160{bottom:631.142667pt;}
.y244{bottom:634.066667pt;}
.y11{bottom:635.882667pt;}
.y19a{bottom:637.301333pt;}
.y64{bottom:639.170667pt;}
.y91{bottom:641.044000pt;}
.y3b{bottom:641.194667pt;}
.y2c6{bottom:641.397333pt;}
.yfa{bottom:641.566667pt;}
.ycb{bottom:642.197333pt;}
.y243{bottom:643.116000pt;}
.y10{bottom:649.165333pt;}
.y242{bottom:651.085333pt;}
.y297{bottom:652.734667pt;}
.y199{bottom:653.241333pt;}
.y1d8{bottom:653.672000pt;}
.y15f{bottom:654.017333pt;}
.y2c5{bottom:654.681333pt;}
.y63{bottom:655.110667pt;}
.y90{bottom:656.984000pt;}
.y3a{bottom:657.136000pt;}
.yf9{bottom:657.508000pt;}
.y276{bottom:658.122667pt;}
.yca{bottom:658.137333pt;}
.y241{bottom:660.260000pt;}
.yf{bottom:662.449333pt;}
.y296{bottom:666.018667pt;}
.y198{bottom:669.181333pt;}
.y240{bottom:669.309333pt;}
.y62{bottom:671.050667pt;}
.y1bc{bottom:672.800000pt;}
.y8f{bottom:672.925333pt;}
.y39{bottom:673.076000pt;}
.yf8{bottom:673.448000pt;}
.yc9{bottom:674.078667pt;}
.ye{bottom:675.732000pt;}
.y25d{bottom:677.250667pt;}
.y23f{bottom:678.357333pt;}
.y295{bottom:679.301333pt;}
.y2c4{bottom:680.676000pt;}
.y23e{bottom:686.328000pt;}
.y61{bottom:686.990667pt;}
.y8e{bottom:688.865333pt;}
.yd{bottom:689.016000pt;}
.yf7{bottom:689.388000pt;}
.yc8{bottom:690.018667pt;}
.y2c3{bottom:693.960000pt;}
.y23d{bottom:695.376000pt;}
.yc{bottom:702.300000pt;}
.y60{bottom:702.932000pt;}
.y23c{bottom:703.346667pt;}
.y15e{bottom:703.934667pt;}
.y38{bottom:704.956000pt;}
.yf6{bottom:705.328000pt;}
.yc7{bottom:705.958667pt;}
.y294{bottom:706.676000pt;}
.y2c2{bottom:707.242667pt;}
.y23b{bottom:712.521333pt;}
.y197{bottom:715.185333pt;}
.yb{bottom:715.582667pt;}
.y15d{bottom:719.874667pt;}
.y5f{bottom:719.884000pt;}
.y293{bottom:719.960000pt;}
.y23a{bottom:720.490667pt;}
.y2c1{bottom:720.526667pt;}
.y37{bottom:720.896000pt;}
.yf5{bottom:721.454667pt;}
.yc6{bottom:721.898667pt;}
.y239{bottom:728.461333pt;}
.ya{bottom:728.866667pt;}
.y292{bottom:733.242667pt;}
.y5e{bottom:735.824000pt;}
.y238{bottom:736.430667pt;}
.y8d{bottom:736.836000pt;}
.y36{bottom:736.837333pt;}
.yf4{bottom:737.394667pt;}
.yc5{bottom:737.838667pt;}
.y15a{bottom:739.002667pt;}
.y196{bottom:741.752000pt;}
.y9{bottom:742.150667pt;}
.y237{bottom:744.401333pt;}
.y2c0{bottom:746.522667pt;}
.y291{bottom:746.526667pt;}
.y5d{bottom:751.764000pt;}
.y236{bottom:752.372000pt;}
.y8c{bottom:752.776000pt;}
.y35{bottom:752.777333pt;}
.yf3{bottom:753.334667pt;}
.y8{bottom:755.433333pt;}
.y2bf{bottom:759.805333pt;}
.y290{bottom:759.810667pt;}
.y235{bottom:760.341333pt;}
.y195{bottom:765.297333pt;}
.y5c{bottom:767.705333pt;}
.y234{bottom:768.312000pt;}
.y7{bottom:768.717333pt;}
.yf2{bottom:769.274667pt;}
.y2be{bottom:773.089333pt;}
.y194{bottom:773.266667pt;}
.y233{bottom:777.360000pt;}
.y5b{bottom:783.645333pt;}
.y8b{bottom:784.657333pt;}
.yf1{bottom:785.214667pt;}
.y232{bottom:785.330667pt;}
.yc4{bottom:786.550667pt;}
.y28f{bottom:787.185333pt;}
.y193{bottom:789.208000pt;}
.y231{bottom:793.301333pt;}
.y2bd{bottom:799.084000pt;}
.y5a{bottom:799.585333pt;}
.y28e{bottom:800.468000pt;}
.y8a{bottom:800.597333pt;}
.yf0{bottom:801.156000pt;}
.y230{bottom:801.270667pt;}
.y192{bottom:804.782667pt;}
.y22f{bottom:809.241333pt;}
.y2bc{bottom:812.368000pt;}
.y191{bottom:812.752000pt;}
.y28d{bottom:813.752000pt;}
.yc3{bottom:813.914667pt;}
.y6{bottom:815.174667pt;}
.y59{bottom:815.525333pt;}
.y89{bottom:816.537333pt;}
.yef{bottom:817.096000pt;}
.y22e{bottom:817.210667pt;}
.y190{bottom:820.722667pt;}
.y22d{bottom:825.181333pt;}
.y2bb{bottom:825.652000pt;}
.y18f{bottom:828.692000pt;}
.y58{bottom:831.465333pt;}
.yc2{bottom:832.146667pt;}
.yc1{bottom:832.426667pt;}
.y88{bottom:832.477333pt;}
.yee{bottom:833.036000pt;}
.y22c{bottom:833.150667pt;}
.y5{bottom:836.104000pt;}
.y18e{bottom:836.662667pt;}
.y28c{bottom:836.981333pt;}
.y22b{bottom:841.121333pt;}
.yc0{bottom:842.773333pt;}
.y18d{bottom:844.633333pt;}
.y57{bottom:847.405333pt;}
.y87{bottom:848.418667pt;}
.yed{bottom:848.976000pt;}
.y22a{bottom:849.092000pt;}
.y2ba{bottom:851.646667pt;}
.y4{bottom:852.213333pt;}
.y18c{bottom:852.602667pt;}
.ybf{bottom:853.400000pt;}
.ybe{bottom:853.680000pt;}
.y229{bottom:858.265333pt;}
.y18b{bottom:860.573333pt;}
.y56{bottom:863.346667pt;}
.ybd{bottom:864.026667pt;}
.ybc{bottom:864.306667pt;}
.y86{bottom:864.358667pt;}
.y2b9{bottom:864.930667pt;}
.y228{bottom:866.236000pt;}
.y3{bottom:868.322667pt;}
.y18a{bottom:868.542667pt;}
.yec{bottom:869.752000pt;}
.y227{bottom:874.205333pt;}
.ybb{bottom:874.653333pt;}
.yba{bottom:874.933333pt;}
.y189{bottom:876.513333pt;}
.y2b8{bottom:878.213333pt;}
.y55{bottom:879.286667pt;}
.y2{bottom:879.441333pt;}
.y85{bottom:880.298667pt;}
.y226{bottom:882.176000pt;}
.y188{bottom:884.484000pt;}
.yb9{bottom:885.280000pt;}
.yb8{bottom:885.561333pt;}
.y225{bottom:890.146667pt;}
.y2b7{bottom:891.497333pt;}
.y187{bottom:892.453333pt;}
.y54{bottom:895.226667pt;}
.yb7{bottom:895.906667pt;}
.yb6{bottom:896.188000pt;}
.y84{bottom:896.238667pt;}
.y224{bottom:898.350667pt;}
.y186{bottom:900.424000pt;}
.y223{bottom:906.321333pt;}
.yb5{bottom:906.534667pt;}
.yb4{bottom:906.814667pt;}
.y185{bottom:908.393333pt;}
.y53{bottom:912.178667pt;}
.y222{bottom:914.400000pt;}
.y184{bottom:916.364000pt;}
.yb3{bottom:917.161333pt;}
.yb2{bottom:917.441333pt;}
.y2b6{bottom:917.492000pt;}
.y221{bottom:922.369333pt;}
.y183{bottom:924.333333pt;}
.y83{bottom:928.118667pt;}
.y52{bottom:928.120000pt;}
.y220{bottom:930.340000pt;}
.y2b5{bottom:930.776000pt;}
.y182{bottom:932.304000pt;}
.yb1{bottom:935.392000pt;}
.y1{bottom:936.560000pt;}
.y51{bottom:944.060000pt;}
.y21f{bottom:945.442667pt;}
.yb0{bottom:946.018667pt;}
.y181{bottom:947.878667pt;}
.h46{height:14.063232pt;}
.h31{height:15.815625pt;}
.h30{height:15.890938pt;}
.h45{height:15.996094pt;}
.h3f{height:16.062744pt;}
.h34{height:17.106250pt;}
.h35{height:17.187708pt;}
.h38{height:17.746711pt;}
.h26{height:18.224916pt;}
.h41{height:18.234375pt;}
.h27{height:18.278050pt;}
.h24{height:18.384318pt;}
.h29{height:18.570286pt;}
.h28{height:19.314161pt;}
.h39{height:19.686098pt;}
.h25{height:19.925200pt;}
.h2b{height:21.933807pt;}
.h40{height:22.061279pt;}
.h17{height:23.460938pt;}
.h15{height:23.532031pt;}
.h4{height:24.696550pt;}
.he{height:25.514810pt;}
.hc{height:25.589197pt;}
.hb{height:25.737971pt;}
.h22{height:25.878294pt;}
.hd{height:26.556230pt;}
.h14{height:26.743750pt;}
.h16{height:26.824792pt;}
.h37{height:27.114134pt;}
.h3e{height:27.409912pt;}
.h36{height:27.560458pt;}
.h3d{height:27.568555pt;}
.h44{height:28.321602pt;}
.h1e{height:28.325000pt;}
.h1d{height:28.410833pt;}
.h42{height:28.441602pt;}
.h12{height:29.175000pt;}
.h2f{height:29.406458pt;}
.h1a{height:30.900000pt;}
.h1b{height:30.985833pt;}
.h1c{height:31.524375pt;}
.h33{height:31.666927pt;}
.h48{height:32.805069pt;}
.h47{height:32.900710pt;}
.h7{height:33.091994pt;}
.h6{height:33.426739pt;}
.h18{height:33.560833pt;}
.h43{height:34.441602pt;}
.h5{height:36.449833pt;}
.h8{height:36.556100pt;}
.h3c{height:36.597168pt;}
.h3b{height:36.732617pt;}
.h9{height:36.768636pt;}
.h2{height:36.817434pt;}
.h23{height:37.459376pt;}
.hf{height:38.156100pt;}
.h10{height:38.161434pt;}
.ha{height:39.850400pt;}
.h19{height:41.285833pt;}
.h3{height:43.976550pt;}
.h2a{height:44.874530pt;}
.h13{height:49.783750pt;}
.h1{height:51.476311pt;}
.h20{height:52.060292pt;}
.h2d{height:52.553125pt;}
.h1f{height:53.897833pt;}
.h32{height:57.266927pt;}
.h2e{height:75.699792pt;}
.h21{height:221.000000pt;}
.h3a{height:282.750000pt;}
.h2c{height:287.200000pt;}
.h11{height:362.400000pt;}
.h0{height:1056.000000pt;}
.w2{width:245.050000pt;}
.w4{width:282.750000pt;}
.w1{width:634.399991pt;}
.w3{width:634.400000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7e{left:5.025000pt;}
.x38{left:6.053324pt;}
.x4a{left:10.096667pt;}
.x3a{left:12.106657pt;}
.x22{left:14.933324pt;}
.x7c{left:16.125000pt;}
.x7f{left:17.950000pt;}
.x26{left:19.573324pt;}
.x54{left:29.573333pt;}
.x80{left:32.425000pt;}
.x24{left:34.799991pt;}
.x79{left:42.225000pt;}
.x30{left:43.893324pt;}
.x64{left:47.066667pt;}
.x32{left:51.999991pt;}
.x23{left:54.079991pt;}
.x33{left:55.173324pt;}
.x31{left:57.973324pt;}
.x63{left:59.840000pt;}
.x82{left:62.600000pt;}
.x62{left:64.640000pt;}
.x7d{left:69.900000pt;}
.x9{left:72.000000pt;}
.x5d{left:74.640000pt;}
.x70{left:78.641333pt;}
.x8{left:85.284000pt;}
.x11{left:86.684000pt;}
.x10{left:89.654667pt;}
.x1d{left:90.800009pt;}
.x4b{left:94.094000pt;}
.x14{left:98.037333pt;}
.x1{left:101.200000pt;}
.x69{left:104.318667pt;}
.x71{left:105.740000pt;}
.x3d{left:110.474657pt;}
.x49{left:111.476000pt;}
.xd{left:112.390667pt;}
.x77{left:115.420000pt;}
.x72{left:117.694667pt;}
.x78{left:119.650000pt;}
.x41{left:131.437333pt;}
.x73{left:132.838667pt;}
.x81{left:139.000000pt;}
.x55{left:141.066667pt;}
.x13{left:145.097333pt;}
.x74{left:146.653333pt;}
.x37{left:152.266657pt;}
.x5{left:153.592000pt;}
.x75{left:158.608000pt;}
.x1e{left:168.725324pt;}
.x20{left:174.058657pt;}
.x6b{left:175.008000pt;}
.x25{left:180.821324pt;}
.xa{left:182.168000pt;}
.x1f{left:184.373324pt;}
.x61{left:185.738667pt;}
.x6a{left:190.581333pt;}
.x7b{left:195.900000pt;}
.x86{left:196.806667pt;}
.x83{left:198.520000pt;}
.x4{left:202.010667pt;}
.x2{left:203.545333pt;}
.x7a{left:208.220000pt;}
.x3{left:212.405333pt;}
.x5b{left:223.946667pt;}
.x5c{left:235.178667pt;}
.x65{left:239.146667pt;}
.x67{left:241.280000pt;}
.x7{left:250.280000pt;}
.x59{left:270.240000pt;}
.x6{left:277.705333pt;}
.x5a{left:283.072000pt;}
.x36{left:291.253324pt;}
.x28{left:294.399991pt;}
.x12{left:299.233333pt;}
.x29{left:300.799991pt;}
.x68{left:303.618667pt;}
.x21{left:305.173324pt;}
.x3f{left:306.468000pt;}
.x27{left:310.506657pt;}
.x57{left:312.181333pt;}
.x58{left:323.413333pt;}
.x3e{left:331.487991pt;}
.xf{left:334.072000pt;}
.x66{left:357.685333pt;}
.x40{left:379.396000pt;}
.x2f{left:404.031991pt;}
.x39{left:410.058657pt;}
.x2e{left:417.621324pt;}
.xb{left:420.000000pt;}
.x6d{left:423.321333pt;}
.x6c{left:426.641333pt;}
.x4d{left:431.010667pt;}
.xc{left:433.284000pt;}
.x2a{left:439.338657pt;}
.x76{left:440.625333pt;}
.x87{left:446.558667pt;}
.x2d{left:449.493324pt;}
.x1b{left:451.808000pt;}
.x6e{left:453.740000pt;}
.x4c{left:455.920000pt;}
.x45{left:460.845333pt;}
.x84{left:464.588000pt;}
.x6f{left:465.694667pt;}
.x53{left:472.861333pt;}
.x47{left:474.132000pt;}
.x5e{left:476.426667pt;}
.x43{left:477.866667pt;}
.x34{left:479.839991pt;}
.x50{left:482.298667pt;}
.x52{left:486.380000pt;}
.x5f{left:489.258667pt;}
.x46{left:492.088000pt;}
.x85{left:497.849333pt;}
.x3b{left:499.647991pt;}
.xe{left:512.674667pt;}
.x51{left:516.348000pt;}
.x4e{left:518.926667pt;}
.x48{left:529.318667pt;}
.x18{left:532.418667pt;}
.x56{left:545.440000pt;}
.x35{left:552.714657pt;}
.x2c{left:554.047991pt;}
.x2b{left:557.759991pt;}
.x1c{left:575.684000pt;}
.x3c{left:587.306657pt;}
.x4f{left:601.185333pt;}
.x60{left:608.032000pt;}
.x17{left:625.696000pt;}
.x44{left:641.296000pt;}
.x1a{left:643.305333pt;}
.x19{left:647.565333pt;}
.x16{left:671.540000pt;}
.x42{left:692.586667pt;}
.x15{left:722.972000pt;}
}


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