
/* 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_30275bba31e5.woff")format("woff");}.ff1{font-family:ff1;line-height:0.638000;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_f7742eed4dac.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_27afcfc99090.woff")format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_70e081bc4a75.woff")format("woff");}.ff4{font-family:ff4;line-height:1.014000;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_6bad2591cfeb.woff")format("woff");}.ff5{font-family:ff5;line-height:0.734000;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_89d9bdae78e6.woff")format("woff");}.ff6{font-family:ff6;line-height:0.897000;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_a58f7836026f.woff")format("woff");}.ff7{font-family:ff7;line-height:0.736000;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_1ae56354975e.woff")format("woff");}.ff8{font-family:ff8;line-height:0.660000;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_79dcdc6f476d.woff")format("woff");}.ff9{font-family:ff9;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_5d83b463d141.woff")format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_bb442be8439b.woff")format("woff");}.ffb{font-family:ffb;line-height:1.000488;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_b9b808140e55.woff")format("woff");}.ffc{font-family:ffc;line-height:1.011230;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_7a2f45675e4e.woff")format("woff");}.ffd{font-family:ffd;line-height:0.900000;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_fa36de6d0e9e.woff")format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_bb442be8439b.woff")format("woff");}.fff{font-family:fff;line-height:1.000488;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_fc79d61e20e0.woff")format("woff");}.ff10{font-family:ff10;line-height:1.011230;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_f1e910cbea61.woff")format("woff");}.ff11{font-family:ff11;line-height:0.391000;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_fa071517816b.woff")format("woff");}.ff12{font-family:ff12;line-height:0.869000;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_8674da459ba3.woff")format("woff");}.ff13{font-family:ff13;line-height:0.883000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:31.230300px;}
.ls2c{letter-spacing:-0.252504px;}
.ls2d{letter-spacing:-0.180360px;}
.ls29{letter-spacing:-0.168336px;}
.ls3a{letter-spacing:-0.138276px;}
.ls27{letter-spacing:-0.086184px;}
.ls3c{letter-spacing:-0.075600px;}
.ls39{letter-spacing:-0.030060px;}
.ls38{letter-spacing:-0.024048px;}
.ls2b{letter-spacing:-0.012024px;}
.ls2a{letter-spacing:-0.006012px;}
.ls7{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.000053px;}
.ls51{letter-spacing:0.000099px;}
.ls46{letter-spacing:0.000154px;}
.ls92{letter-spacing:0.000447px;}
.ls43{letter-spacing:0.000500px;}
.ls5{letter-spacing:0.000566px;}
.ls91{letter-spacing:0.000644px;}
.ls8c{letter-spacing:0.000676px;}
.ls55{letter-spacing:0.000800px;}
.ls65{letter-spacing:0.000834px;}
.ls2e{letter-spacing:0.000846px;}
.ls47{letter-spacing:0.000897px;}
.ls69{letter-spacing:0.000976px;}
.ls4b{letter-spacing:0.000990px;}
.ls3e{letter-spacing:0.001050px;}
.ls50{letter-spacing:0.001183px;}
.ls41{letter-spacing:0.001193px;}
.ls33{letter-spacing:0.001200px;}
.ls6a{letter-spacing:0.001301px;}
.lsb{letter-spacing:0.001518px;}
.ls34{letter-spacing:0.001541px;}
.ls98{letter-spacing:0.001771px;}
.ls4f{letter-spacing:0.001890px;}
.ls4a{letter-spacing:0.002048px;}
.ls4{letter-spacing:0.002074px;}
.ls37{letter-spacing:0.002338px;}
.ls2f{letter-spacing:0.002475px;}
.ls31{letter-spacing:0.002573px;}
.ls90{letter-spacing:0.002666px;}
.ls5b{letter-spacing:0.002818px;}
.ls85{letter-spacing:0.002841px;}
.ls9{letter-spacing:0.002870px;}
.ls4e{letter-spacing:0.002897px;}
.ls26{letter-spacing:0.002940px;}
.ls44{letter-spacing:0.002958px;}
.ls7e{letter-spacing:0.002985px;}
.ls40{letter-spacing:0.003049px;}
.ls45{letter-spacing:0.003494px;}
.ls42{letter-spacing:0.003598px;}
.ls4d{letter-spacing:0.003643px;}
.ls32{letter-spacing:0.003835px;}
.ls3f{letter-spacing:0.004200px;}
.ls3d{letter-spacing:0.004784px;}
.ls57{letter-spacing:0.004800px;}
.ls7a{letter-spacing:0.004859px;}
.ls4c{letter-spacing:0.005415px;}
.ls25{letter-spacing:0.006012px;}
.ls17{letter-spacing:0.012024px;}
.ls11{letter-spacing:0.018036px;}
.ls1d{letter-spacing:0.021600px;}
.ls18{letter-spacing:0.024048px;}
.ls20{letter-spacing:0.027000px;}
.ls15{letter-spacing:0.030060px;}
.ls19{letter-spacing:0.036072px;}
.ls1b{letter-spacing:0.037800px;}
.ls12{letter-spacing:0.042084px;}
.ls36{letter-spacing:0.043200px;}
.ls1a{letter-spacing:0.048096px;}
.ls1e{letter-spacing:0.048600px;}
.ls1c{letter-spacing:0.054000px;}
.ls21{letter-spacing:0.054108px;}
.ls1f{letter-spacing:0.059400px;}
.ls14{letter-spacing:0.060120px;}
.lse{letter-spacing:0.062244px;}
.ls24{letter-spacing:0.066132px;}
.ls35{letter-spacing:0.078156px;}
.ls13{letter-spacing:0.084168px;}
.ls22{letter-spacing:0.090180px;}
.ls16{letter-spacing:0.096192px;}
.ls28{letter-spacing:0.102204px;}
.ls23{letter-spacing:0.120240px;}
.ls10{letter-spacing:0.181944px;}
.lsf{letter-spacing:0.191520px;}
.ls8d{letter-spacing:0.524565px;}
.ls8e{letter-spacing:0.530447px;}
.ls83{letter-spacing:0.537859px;}
.ls3b{letter-spacing:0.545400px;}
.lsc{letter-spacing:1.275394px;}
.lsa{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.998354px;}
.ls7c{letter-spacing:10.568767px;}
.ls6{letter-spacing:11.954850px;}
.ls49{letter-spacing:12.427864px;}
.ls70{letter-spacing:12.540196px;}
.ls84{letter-spacing:12.601420px;}
.ls79{letter-spacing:12.883053px;}
.ls99{letter-spacing:12.913665px;}
.ls88{letter-spacing:13.091216px;}
.ls61{letter-spacing:13.161402px;}
.ls80{letter-spacing:13.163969px;}
.ls81{letter-spacing:13.226235px;}
.ls6d{letter-spacing:13.236171px;}
.ls8f{letter-spacing:13.276046px;}
.ls5f{letter-spacing:13.296463px;}
.ls76{letter-spacing:13.307317px;}
.ls8a{letter-spacing:13.308274px;}
.ls56{letter-spacing:13.448400px;}
.ls3{letter-spacing:13.450800px;}
.ls53{letter-spacing:13.454400px;}
.ls5a{letter-spacing:13.487210px;}
.ls7d{letter-spacing:13.532291px;}
.ls8b{letter-spacing:13.556448px;}
.ls72{letter-spacing:13.562497px;}
.ls59{letter-spacing:13.574545px;}
.ls62{letter-spacing:13.586764px;}
.ls52{letter-spacing:13.593257px;}
.ls6b{letter-spacing:13.596085px;}
.ls58{letter-spacing:13.599380px;}
.ls71{letter-spacing:13.611129px;}
.ls60{letter-spacing:13.650908px;}
.ls78{letter-spacing:13.663090px;}
.ls67{letter-spacing:13.681364px;}
.ls6c{letter-spacing:13.699336px;}
.ls63{letter-spacing:13.727589px;}
.ls6e{letter-spacing:13.932753px;}
.ls6f{letter-spacing:14.162165px;}
.ls89{letter-spacing:14.250400px;}
.ls74{letter-spacing:14.591576px;}
.lsd{letter-spacing:14.739112px;}
.ls48{letter-spacing:14.972383px;}
.ls30{letter-spacing:15.063451px;}
.ls97{letter-spacing:15.368047px;}
.ls64{letter-spacing:16.079812px;}
.ls7f{letter-spacing:16.426871px;}
.ls87{letter-spacing:16.538635px;}
.ls95{letter-spacing:16.715106px;}
.ls82{letter-spacing:16.885694px;}
.ls54{letter-spacing:17.368047px;}
.ls86{letter-spacing:17.626871px;}
.ls5c{letter-spacing:17.773929px;}
.ls77{letter-spacing:17.885694px;}
.ls96{letter-spacing:18.026871px;}
.ls9a{letter-spacing:18.209224px;}
.ls66{letter-spacing:18.409224px;}
.ls94{letter-spacing:18.497459px;}
.ls7b{letter-spacing:18.697080px;}
.ls73{letter-spacing:18.715106px;}
.ls93{letter-spacing:19.397459px;}
.ls75{letter-spacing:19.556282px;}
.ls5d{letter-spacing:20.844518px;}
.ls68{letter-spacing:21.244518px;}
.ls0{letter-spacing:57.415200px;}
.ls2{letter-spacing:70.236600px;}
.ls8{letter-spacing:72.353510px;}
.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;}
}
.ws23{word-spacing:-17.394700px;}
.ws18{word-spacing:-15.655334px;}
.ws108{word-spacing:-14.943900px;}
.ws13{word-spacing:-14.355754px;}
.ws1b{word-spacing:-13.915795px;}
.ws15{word-spacing:-13.449600px;}
.ws5c{word-spacing:-12.161520px;}
.ws1a{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws20a{word-spacing:-10.460700px;}
.ws204{word-spacing:-5.164646px;}
.ws43{word-spacing:-4.841824px;}
.ws12b{word-spacing:-4.662497px;}
.ws1bc{word-spacing:-4.519066px;}
.ws48{word-spacing:-4.483170px;}
.ws17b{word-spacing:-4.357670px;}
.ws11e{word-spacing:-4.244068px;}
.wsc9{word-spacing:-4.184292px;}
.wsd2{word-spacing:-4.064741px;}
.ws12a{word-spacing:-3.885414px;}
.wsbd{word-spacing:-3.825638px;}
.wsb1{word-spacing:-3.765863px;}
.ws1a3{word-spacing:-3.712090px;}
.ws44{word-spacing:-3.706087px;}
.ws1d1{word-spacing:-3.658291px;}
.ws14e{word-spacing:-3.550694px;}
.wsbb{word-spacing:-3.526760px;}
.ws200{word-spacing:-3.496896px;}
.wsb2{word-spacing:-3.466985px;}
.ws52{word-spacing:-3.407209px;}
.ws176{word-spacing:-3.389299px;}
.wsac{word-spacing:-3.287658px;}
.ws1fe{word-spacing:-3.281702px;}
.ws12f{word-spacing:-3.168107px;}
.ws1ed{word-spacing:-3.120307px;}
.ws102{word-spacing:-3.108331px;}
.ws15f{word-spacing:-3.012710px;}
.ws4b{word-spacing:-2.988780px;}
.ws5d{word-spacing:-2.958912px;}
.ws105{word-spacing:-2.929004px;}
.ws1d2{word-spacing:-2.905114px;}
.wscb{word-spacing:-2.869229px;}
.ws123{word-spacing:-2.809453px;}
.wsf0{word-spacing:-2.749678px;}
.ws5e{word-spacing:-2.743718px;}
.wsb0{word-spacing:-2.689902px;}
.ws168{word-spacing:-2.636122px;}
.ws112{word-spacing:-2.510575px;}
.ws1a0{word-spacing:-2.474726px;}
.ws1fb{word-spacing:-2.420928px;}
.ws195{word-spacing:-2.367130px;}
.ws9e{word-spacing:-2.331248px;}
.ws1a2{word-spacing:-2.259533px;}
.ws180{word-spacing:-2.205734px;}
.wsf3{word-spacing:-2.151922px;}
.wsa4{word-spacing:-2.092146px;}
.wsf9{word-spacing:-2.066289px;}
.wsf8{word-spacing:-2.032370px;}
.ws1a8{word-spacing:-1.990541px;}
.ws11c{word-spacing:-1.972595px;}
.wsf2{word-spacing:-1.912819px;}
.ws1f{word-spacing:-1.908367px;}
.wsa2{word-spacing:-1.853044px;}
.ws182{word-spacing:-1.829146px;}
.wse2{word-spacing:-1.785564px;}
.ws5f{word-spacing:-1.775347px;}
.ws93{word-spacing:-1.773540px;}
.ws94{word-spacing:-1.761516px;}
.wsfb{word-spacing:-1.733492px;}
.ws16c{word-spacing:-1.721549px;}
.wse1{word-spacing:-1.713420px;}
.ws109{word-spacing:-1.673717px;}
.wsa3{word-spacing:-1.613941px;}
.ws191{word-spacing:-1.560154px;}
.ws49{word-spacing:-1.554166px;}
.wse{word-spacing:-1.494390px;}
.ws10{word-spacing:-1.476066px;}
.wsf{word-spacing:-1.476046px;}
.wsd{word-spacing:-1.459186px;}
.ws20f{word-spacing:-1.452557px;}
.ws12{word-spacing:-1.434614px;}
.ws7b{word-spacing:-1.406808px;}
.wsd9{word-spacing:-1.388772px;}
.wsaf{word-spacing:-1.374839px;}
.ws1b5{word-spacing:-1.344960px;}
.ws9b{word-spacing:-1.334664px;}
.ws1e{word-spacing:-1.322630px;}
.wsff{word-spacing:-1.315063px;}
.ws116{word-spacing:-1.255288px;}
.ws1c9{word-spacing:-1.237363px;}
.ws31{word-spacing:-1.195512px;}
.ws161{word-spacing:-1.183565px;}
.wsa6{word-spacing:-1.135736px;}
.ws1ea{word-spacing:-1.129766px;}
.ws20d{word-spacing:-1.075968px;}
.ws27{word-spacing:-1.075961px;}
.ws4c{word-spacing:-1.016185px;}
.ws87{word-spacing:-0.973944px;}
.ws10a{word-spacing:-0.956410px;}
.wsb7{word-spacing:-0.919953px;}
.ws1ab{word-spacing:-0.914573px;}
.wsad{word-spacing:-0.896634px;}
.ws1eb{word-spacing:-0.860774px;}
.wsbc{word-spacing:-0.836858px;}
.ws219{word-spacing:-0.806976px;}
.ws9c{word-spacing:-0.805608px;}
.wsae{word-spacing:-0.777083px;}
.ws1cb{word-spacing:-0.753178px;}
.ws30{word-spacing:-0.717307px;}
.ws218{word-spacing:-0.699379px;}
.ws88{word-spacing:-0.667332px;}
.ws101{word-spacing:-0.657532px;}
.ws155{word-spacing:-0.645581px;}
.ws89{word-spacing:-0.643284px;}
.ws50{word-spacing:-0.597756px;}
.wsd0{word-spacing:-0.591782px;}
.ws1df{word-spacing:-0.537984px;}
.ws55{word-spacing:-0.537980px;}
.ws173{word-spacing:-0.484186px;}
.wsfe{word-spacing:-0.478205px;}
.ws1f2{word-spacing:-0.430387px;}
.wsfd{word-spacing:-0.418429px;}
.ws60{word-spacing:-0.376589px;}
.ws56{word-spacing:-0.358654px;}
.wsdb{word-spacing:-0.342684px;}
.ws148{word-spacing:-0.322790px;}
.ws67{word-spacing:-0.298878px;}
.ws69{word-spacing:-0.277704px;}
.ws139{word-spacing:-0.268992px;}
.wsda{word-spacing:-0.258516px;}
.ws3a{word-spacing:-0.239102px;}
.ws13c{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.179327px;}
.ws136{word-spacing:-0.161395px;}
.ws3b{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws40{word-spacing:-0.059776px;}
.ws143{word-spacing:-0.053798px;}
.wsb8{word-spacing:-0.051108px;}
.wsfc{word-spacing:-0.045430px;}
.ws19a{word-spacing:-0.026794px;}
.ws1d{word-spacing:-0.013978px;}
.ws20e{word-spacing:-0.008602px;}
.ws1c8{word-spacing:-0.008429px;}
.ws19e{word-spacing:-0.008045px;}
.ws202{word-spacing:-0.007718px;}
.ws6e{word-spacing:-0.006012px;}
.ws1d3{word-spacing:-0.005933px;}
.ws1ca{word-spacing:-0.005894px;}
.ws154{word-spacing:-0.005194px;}
.ws1a1{word-spacing:-0.005069px;}
.ws175{word-spacing:-0.005002px;}
.ws1{word-spacing:-0.003875px;}
.ws185{word-spacing:-0.003581px;}
.ws3{word-spacing:-0.003566px;}
.ws1ce{word-spacing:-0.002957px;}
.ws149{word-spacing:-0.002870px;}
.ws1f9{word-spacing:-0.002429px;}
.ws19{word-spacing:-0.002417px;}
.ws1aa{word-spacing:-0.002045px;}
.ws17e{word-spacing:-0.001834px;}
.ws8{word-spacing:-0.001391px;}
.ws196{word-spacing:-0.000806px;}
.ws15a{word-spacing:-0.000595px;}
.ws209{word-spacing:-0.000470px;}
.ws0{word-spacing:0.000000px;}
.ws207{word-spacing:0.000106px;}
.ws1cc{word-spacing:0.001354px;}
.ws205{word-spacing:0.001670px;}
.ws7c{word-spacing:0.048096px;}
.ws135{word-spacing:0.053798px;}
.ws6d{word-spacing:0.054108px;}
.ws20{word-spacing:0.059776px;}
.ws76{word-spacing:0.072144px;}
.ws74{word-spacing:0.084168px;}
.ws14{word-spacing:0.107597px;}
.ws2f{word-spacing:0.119551px;}
.ws84{word-spacing:0.156600px;}
.ws13a{word-spacing:0.161395px;}
.ws32{word-spacing:0.179327px;}
.ws61{word-spacing:0.215194px;}
.wse6{word-spacing:0.234468px;}
.ws22{word-spacing:0.239102px;}
.ws153{word-spacing:0.268992px;}
.ws2a{word-spacing:0.298878px;}
.ws17c{word-spacing:0.322790px;}
.ws8e{word-spacing:0.336672px;}
.ws3c{word-spacing:0.358654px;}
.ws193{word-spacing:0.376589px;}
.wscc{word-spacing:0.418429px;}
.ws14b{word-spacing:0.430387px;}
.ws75{word-spacing:0.444888px;}
.ws41{word-spacing:0.478205px;}
.ws1a6{word-spacing:0.484186px;}
.wsec{word-spacing:0.518400px;}
.ws127{word-spacing:0.537980px;}
.ws13b{word-spacing:0.537984px;}
.ws1d4{word-spacing:0.591782px;}
.ws24{word-spacing:0.597756px;}
.ws77{word-spacing:0.625248px;}
.ws208{word-spacing:0.645581px;}
.wsbe{word-spacing:0.657532px;}
.ws14a{word-spacing:0.699379px;}
.wsed{word-spacing:0.717307px;}
.ws85{word-spacing:0.733464px;}
.ws169{word-spacing:0.753178px;}
.ws46{word-spacing:0.777083px;}
.ws92{word-spacing:0.781560px;}
.ws162{word-spacing:0.806976px;}
.ws68{word-spacing:0.836858px;}
.ws1bb{word-spacing:0.860774px;}
.ws28{word-spacing:0.896634px;}
.ws16e{word-spacing:0.914573px;}
.wsc0{word-spacing:0.956410px;}
.ws9d{word-spacing:1.016185px;}
.ws130{word-spacing:1.075961px;}
.ws1f0{word-spacing:1.075968px;}
.ws71{word-spacing:1.118232px;}
.ws160{word-spacing:1.129766px;}
.ws126{word-spacing:1.135736px;}
.ws91{word-spacing:1.166328px;}
.ws14f{word-spacing:1.183565px;}
.ws5b{word-spacing:1.195512px;}
.ws81{word-spacing:1.215000px;}
.ws172{word-spacing:1.237363px;}
.ws4a{word-spacing:1.255288px;}
.wsa1{word-spacing:1.315063px;}
.ws1cd{word-spacing:1.344960px;}
.ws3e{word-spacing:1.374839px;}
.ws184{word-spacing:1.398758px;}
.ws57{word-spacing:1.434614px;}
.ws70{word-spacing:1.454904px;}
.wse5{word-spacing:1.460916px;}
.ws216{word-spacing:1.506355px;}
.wsb3{word-spacing:1.554166px;}
.wsd1{word-spacing:1.560154px;}
.ws82{word-spacing:1.566000px;}
.ws83{word-spacing:1.598400px;}
.ws129{word-spacing:1.613941px;}
.ws1e7{word-spacing:1.613952px;}
.ws17d{word-spacing:1.667750px;}
.ws3f{word-spacing:1.673717px;}
.ws2b{word-spacing:1.733492px;}
.ws13f{word-spacing:1.775347px;}
.ws53{word-spacing:1.793268px;}
.ws137{word-spacing:1.829146px;}
.wsdc{word-spacing:1.839672px;}
.ws21{word-spacing:1.853044px;}
.wse3{word-spacing:1.881756px;}
.ws1b6{word-spacing:1.882944px;}
.wsdd{word-spacing:1.905804px;}
.ws29{word-spacing:1.912819px;}
.wse4{word-spacing:1.923840px;}
.ws188{word-spacing:1.936742px;}
.ws118{word-spacing:1.972595px;}
.wsbf{word-spacing:2.032370px;}
.ws13e{word-spacing:2.044339px;}
.wsc8{word-spacing:2.092146px;}
.ws18b{word-spacing:2.098138px;}
.ws1e8{word-spacing:2.151936px;}
.ws1d5{word-spacing:2.205734px;}
.ws38{word-spacing:2.211697px;}
.ws1e9{word-spacing:2.259533px;}
.ws122{word-spacing:2.271473px;}
.ws1dd{word-spacing:2.313331px;}
.wsaa{word-spacing:2.331248px;}
.ws59{word-spacing:2.391024px;}
.wsce{word-spacing:2.420928px;}
.ws58{word-spacing:2.450800px;}
.wscf{word-spacing:2.474726px;}
.ws12d{word-spacing:2.510575px;}
.ws1b3{word-spacing:2.528525px;}
.ws66{word-spacing:2.570351px;}
.ws1ac{word-spacing:2.582323px;}
.ws39{word-spacing:2.630126px;}
.ws34{word-spacing:2.689902px;}
.ws1e5{word-spacing:2.689920px;}
.wscd{word-spacing:2.743718px;}
.ws111{word-spacing:2.749678px;}
.ws187{word-spacing:2.797517px;}
.wsb4{word-spacing:2.809453px;}
.ws206{word-spacing:2.851315px;}
.ws107{word-spacing:2.869229px;}
.ws5a{word-spacing:2.929004px;}
.ws51{word-spacing:2.988780px;}
.ws159{word-spacing:3.012710px;}
.wsf1{word-spacing:3.048556px;}
.ws145{word-spacing:3.066509px;}
.ws10c{word-spacing:3.108331px;}
.ws201{word-spacing:3.120307px;}
.ws11b{word-spacing:3.168107px;}
.ws62{word-spacing:3.227882px;}
.ws1ef{word-spacing:3.281702px;}
.ws96{word-spacing:3.288564px;}
.ws95{word-spacing:3.330648px;}
.ws1ee{word-spacing:3.335501px;}
.wsba{word-spacing:3.347434px;}
.ws164{word-spacing:3.389299px;}
.ws163{word-spacing:3.443098px;}
.ws110{word-spacing:3.466985px;}
.ws1c6{word-spacing:3.496896px;}
.ws106{word-spacing:3.526760px;}
.ws174{word-spacing:3.604493px;}
.wsd6{word-spacing:3.613212px;}
.ws64{word-spacing:3.646312px;}
.ws8b{word-spacing:3.655296px;}
.ws4d{word-spacing:3.706087px;}
.wsd4{word-spacing:3.709404px;}
.ws1fc{word-spacing:3.712090px;}
.wsd5{word-spacing:3.721428px;}
.ws12c{word-spacing:3.765863px;}
.ws21a{word-spacing:3.765888px;}
.ws132{word-spacing:3.825638px;}
.ws14c{word-spacing:3.873485px;}
.wsc5{word-spacing:3.885414px;}
.ws147{word-spacing:3.927283px;}
.ws10e{word-spacing:3.945190px;}
.ws18c{word-spacing:3.981082px;}
.ws65{word-spacing:4.004965px;}
.ws8c{word-spacing:4.046076px;}
.wsca{word-spacing:4.124516px;}
.ws1b9{word-spacing:4.142477px;}
.ws1ba{word-spacing:4.196275px;}
.wsef{word-spacing:4.244068px;}
.ws166{word-spacing:4.250074px;}
.wsee{word-spacing:4.303843px;}
.ws165{word-spacing:4.303872px;}
.ws1f5{word-spacing:4.357670px;}
.ws120{word-spacing:4.363619px;}
.ws6c{word-spacing:4.394772px;}
.ws6b{word-spacing:4.400784px;}
.ws121{word-spacing:4.423394px;}
.ws1c2{word-spacing:4.465267px;}
.wsf5{word-spacing:4.483170px;}
.wsf4{word-spacing:4.542946px;}
.ws1b2{word-spacing:4.572864px;}
.wsc4{word-spacing:4.602721px;}
.ws1f4{word-spacing:4.626662px;}
.ws210{word-spacing:4.680461px;}
.ws47{word-spacing:4.722272px;}
.ws211{word-spacing:4.734259px;}
.ws11a{word-spacing:4.782048px;}
.ws1a4{word-spacing:4.788058px;}
.wsc2{word-spacing:4.841824px;}
.ws1c3{word-spacing:4.841856px;}
.wsc1{word-spacing:4.901599px;}
.ws1d0{word-spacing:4.949453px;}
.ws100{word-spacing:4.961375px;}
.wsf7{word-spacing:5.021150px;}
.ws8a{word-spacing:5.056092px;}
.ws1e2{word-spacing:5.057050px;}
.ws124{word-spacing:5.080926px;}
.ws8f{word-spacing:5.122224px;}
.ws90{word-spacing:5.146272px;}
.ws18d{word-spacing:5.164646px;}
.wse8{word-spacing:5.200200px;}
.wsb9{word-spacing:5.200477px;}
.ws16b{word-spacing:5.218445px;}
.ws2d{word-spacing:5.260253px;}
.ws198{word-spacing:5.272243px;}
.ws10f{word-spacing:5.320028px;}
.ws138{word-spacing:5.326042px;}
.ws1e0{word-spacing:5.369117px;}
.ws13d{word-spacing:5.370576px;}
.ws192{word-spacing:5.370595px;}
.ws18f{word-spacing:5.371027px;}
.ws1a7{word-spacing:5.371315px;}
.ws157{word-spacing:5.371354px;}
.ws16f{word-spacing:5.371488px;}
.ws1dc{word-spacing:5.371574px;}
.ws1ec{word-spacing:5.372266px;}
.ws1ad{word-spacing:5.372611px;}
.ws1af{word-spacing:5.372784px;}
.ws194{word-spacing:5.373254px;}
.ws19c{word-spacing:5.373533px;}
.ws183{word-spacing:5.373600px;}
.ws1b7{word-spacing:5.374138px;}
.ws1f3{word-spacing:5.374205px;}
.ws1cf{word-spacing:5.375059px;}
.ws1f6{word-spacing:5.375117px;}
.ws158{word-spacing:5.376067px;}
.ws142{word-spacing:5.376490px;}
.ws171{word-spacing:5.376528px;}
.ws15d{word-spacing:5.376672px;}
.ws20b{word-spacing:5.377306px;}
.ws186{word-spacing:5.377354px;}
.ws20c{word-spacing:5.377574px;}
.ws16a{word-spacing:5.377594px;}
.ws15b{word-spacing:5.378093px;}
.ws1d7{word-spacing:5.378112px;}
.ws1be{word-spacing:5.378150px;}
.ws1b8{word-spacing:5.378611px;}
.ws1c1{word-spacing:5.378621px;}
.ws1a9{word-spacing:5.378861px;}
.ws1b4{word-spacing:5.379149px;}
.ws1bd{word-spacing:5.379158px;}
.ws1c0{word-spacing:5.379245px;}
.ws14d{word-spacing:5.379254px;}
.ws151{word-spacing:5.379533px;}
.ws4f{word-spacing:5.379804px;}
.ws150{word-spacing:5.379840px;}
.ws1c5{word-spacing:5.379984px;}
.ws18a{word-spacing:5.380829px;}
.ws16d{word-spacing:5.381021px;}
.ws1ff{word-spacing:5.381050px;}
.ws18e{word-spacing:5.381059px;}
.ws19b{word-spacing:5.381318px;}
.ws19d{word-spacing:5.382845px;}
.ws156{word-spacing:5.383008px;}
.ws167{word-spacing:5.383382px;}
.ws8d{word-spacing:5.404788px;}
.ws170{word-spacing:5.433638px;}
.ws4e{word-spacing:5.439580px;}
.ws1e3{word-spacing:5.487437px;}
.wsf6{word-spacing:5.499355px;}
.ws1fa{word-spacing:5.541235px;}
.wsfa{word-spacing:5.559131px;}
.ws1b1{word-spacing:5.595034px;}
.ws140{word-spacing:5.702630px;}
.ws10b{word-spacing:5.738458px;}
.ws1d9{word-spacing:5.756429px;}
.wsa9{word-spacing:5.798233px;}
.ws19f{word-spacing:5.810227px;}
.ws26{word-spacing:5.858009px;}
.ws177{word-spacing:5.864026px;}
.wse7{word-spacing:5.907600px;}
.ws133{word-spacing:5.917784px;}
.ws1ae{word-spacing:5.917824px;}
.ws212{word-spacing:5.971622px;}
.ws2e{word-spacing:5.977560px;}
.ws203{word-spacing:6.025421px;}
.wsa8{word-spacing:6.037336px;}
.ws1db{word-spacing:6.079219px;}
.ws36{word-spacing:6.097111px;}
.ws6f{word-spacing:6.132240px;}
.ws37{word-spacing:6.156887px;}
.ws152{word-spacing:6.186816px;}
.ws131{word-spacing:6.216662px;}
.wsc6{word-spacing:6.276438px;}
.ws3d{word-spacing:6.336214px;}
.wsa7{word-spacing:6.395989px;}
.wsab{word-spacing:6.455765px;}
.ws1f8{word-spacing:6.455808px;}
.ws79{word-spacing:6.486948px;}
.wsc3{word-spacing:6.515540px;}
.ws7a{word-spacing:6.541056px;}
.wsde{word-spacing:6.559092px;}
.ws1b0{word-spacing:6.563405px;}
.ws54{word-spacing:6.575316px;}
.ws78{word-spacing:6.583140px;}
.ws11d{word-spacing:6.694867px;}
.ws12e{word-spacing:6.814418px;}
.ws1a5{word-spacing:6.832397px;}
.ws35{word-spacing:6.874194px;}
.ws1bf{word-spacing:6.886195px;}
.ws119{word-spacing:6.933970px;}
.wsdf{word-spacing:6.943860px;}
.ws213{word-spacing:6.993792px;}
.ws104{word-spacing:7.053521px;}
.ws63{word-spacing:7.232848px;}
.ws42{word-spacing:7.292623px;}
.ws15e{word-spacing:7.370381px;}
.ws17a{word-spacing:7.424179px;}
.ws178{word-spacing:7.477978px;}
.ws1fd{word-spacing:7.531776px;}
.ws1f7{word-spacing:7.585574px;}
.ws1d6{word-spacing:7.639373px;}
.ws33{word-spacing:7.711052px;}
.ws1d8{word-spacing:7.746970px;}
.ws190{word-spacing:7.800768px;}
.ws9f{word-spacing:7.890379px;}
.ws128{word-spacing:7.950155px;}
.ws98{word-spacing:7.983936px;}
.ws10d{word-spacing:8.009930px;}
.wsa5{word-spacing:8.069706px;}
.ws97{word-spacing:8.272512px;}
.wsd3{word-spacing:8.332632px;}
.ws113{word-spacing:8.368584px;}
.ws17f{word-spacing:8.392550px;}
.ws114{word-spacing:8.428360px;}
.ws103{word-spacing:8.607686px;}
.wsc7{word-spacing:8.787013px;}
.ws6a{word-spacing:9.097200px;}
.ws45{word-spacing:9.324994px;}
.ws1e1{word-spacing:9.360922px;}
.ws7e{word-spacing:9.493200px;}
.ws134{word-spacing:10.221628px;}
.wsea{word-spacing:10.227600px;}
.ws7d{word-spacing:10.233000px;}
.wseb{word-spacing:10.270800px;}
.ws217{word-spacing:10.275494px;}
.ws144{word-spacing:10.436890px;}
.ws99{word-spacing:10.448856px;}
.ws9a{word-spacing:10.521000px;}
.ws181{word-spacing:10.759680px;}
.ws1e4{word-spacing:11.190067px;}
.ws80{word-spacing:11.658600px;}
.ws7f{word-spacing:11.691000px;}
.ws2c{word-spacing:12.612652px;}
.ws86{word-spacing:12.649248px;}
.ws1de{word-spacing:12.804019px;}
.wse0{word-spacing:13.003956px;}
.ws15c{word-spacing:13.019213px;}
.ws1f1{word-spacing:13.073011px;}
.ws215{word-spacing:13.503398px;}
.ws197{word-spacing:13.557197px;}
.ws1e6{word-spacing:13.879987px;}
.ws141{word-spacing:13.933786px;}
.wse9{word-spacing:14.180400px;}
.wsd8{word-spacing:14.771484px;}
.ws146{word-spacing:15.063552px;}
.wsd7{word-spacing:15.234408px;}
.ws11f{word-spacing:15.840534px;}
.ws1c7{word-spacing:16.300915px;}
.ws115{word-spacing:16.856719px;}
.ws21b{word-spacing:17.054093px;}
.ws117{word-spacing:17.633802px;}
.ws214{word-spacing:17.753472px;}
.ws72{word-spacing:18.102132px;}
.ws73{word-spacing:18.432792px;}
.ws189{word-spacing:19.744013px;}
.ws1da{word-spacing:19.905408px;}
.ws1c4{word-spacing:20.281997px;}
.ws199{word-spacing:21.626957px;}
.ws179{word-spacing:23.402304px;}
.ws125{word-spacing:27.257674px;}
.wsa0{word-spacing:30.903985px;}
.ws4{word-spacing:40.042186px;}
.wsc{word-spacing:46.034093px;}
.ws9{word-spacing:46.035293px;}
.ws7{word-spacing:46.040093px;}
.wsb{word-spacing:46.041293px;}
.wsa{word-spacing:46.053000px;}
.ws6{word-spacing:46.059000px;}
.ws5{word-spacing:46.061815px;}
.ws17{word-spacing:46.324500px;}
.ws11{word-spacing:59.559000px;}
.wsb6{word-spacing:209.298720px;}
.ws1c{word-spacing:1078.545812px;}
.wsb5{word-spacing:1091.268265px;}
._31{margin-left:-24.532070px;}
._2e{margin-left:-20.917096px;}
._2d{margin-left:-18.734166px;}
._3{margin-left:-7.711843px;}
._2{margin-left:-6.631525px;}
._5{margin-left:-5.143096px;}
._4{margin-left:-3.983960px;}
._a{margin-left:-2.305542px;}
._6{margin-left:-1.276840px;}
._b{width:1.091170px;}
._0{width:3.002228px;}
._16{width:4.483170px;}
._30{width:6.617203px;}
._28{width:9.226994px;}
._2b{width:11.136269px;}
._7{width:12.298283px;}
._1f{width:13.471062px;}
._10{width:14.487247px;}
._18{width:15.840534px;}
._1d{width:17.787422px;}
._9{width:18.829440px;}
._12{width:19.898016px;}
._c{width:21.515061px;}
._f{width:23.073382px;}
._11{width:24.717185px;}
._14{width:26.480591px;}
._d{width:27.518328px;}
._19{width:28.572737px;}
._1a{width:30.268006px;}
._17{width:31.822171px;}
._1e{width:33.137234px;}
._e{width:34.272971px;}
._13{width:35.865360px;}
._15{width:37.381302px;}
._2a{width:39.153018px;}
._22{width:40.348530px;}
._29{width:41.804696px;}
._1c{width:42.978656px;}
._23{width:44.195720px;}
._27{width:45.429456px;}
._26{width:47.458462px;}
._1{width:54.380195px;}
._2f{width:57.899609px;}
._2c{width:61.868160px;}
._21{width:94.499580px;}
._20{width:213.633446px;}
._25{width:2041.410124px;}
._1b{width:2065.536856px;}
._24{width:2075.508288px;}
._8{width:2099.418288px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(65,93,146);}
.fs4{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fsd{font-size:51.108480px;}
.fs5{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fsb{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:148.440000px;}
.yd0{bottom:-428.359056px;}
.ycf{bottom:-408.109137px;}
.yce{bottom:-387.859218px;}
.ycd{bottom:-367.609299px;}
.ycc{bottom:-347.449560px;}
.ycb{bottom:-327.199641px;}
.yca{bottom:-306.949722px;}
.yc9{bottom:-286.699803px;}
.yc8{bottom:-266.449884px;}
.yc7{bottom:-246.199965px;}
.yc6{bottom:-225.950046px;}
.yc5{bottom:-205.790307px;}
.yc4{bottom:-185.540388px;}
.yc3{bottom:-165.290469px;}
.yc2{bottom:-145.040550px;}
.yc1{bottom:-107.331750px;}
.y12e{bottom:-102.260400px;}
.yc0{bottom:-87.801300px;}
.y12d{bottom:-82.729950px;}
.ybf{bottom:-68.270850px;}
.y12c{bottom:-63.199500px;}
.ybe{bottom:-48.740400px;}
.y12b{bottom:-43.759500px;}
.ybd{bottom:-29.300400px;}
.y12a{bottom:-24.229050px;}
.y0{bottom:0.000000px;}
.y129{bottom:3.040950px;}
.y4a{bottom:3.425340px;}
.ybc{bottom:3.999450px;}
.y49{bottom:14.151273px;}
.y2{bottom:15.473478px;}
.y36{bottom:63.780000px;}
.y137{bottom:108.649500px;}
.y1f1{bottom:108.957000px;}
.y19f{bottom:110.898000px;}
.y1bd{bottom:115.620000px;}
.y68{bottom:115.950000px;}
.y11a{bottom:119.863500px;}
.y109{bottom:121.875000px;}
.y9a{bottom:123.121500px;}
.yae{bottom:125.572500px;}
.y17c{bottom:127.903500px;}
.y1f0{bottom:128.325000px;}
.y136{bottom:128.914500px;}
.yeb{bottom:130.771500px;}
.y35{bottom:131.052000px;}
.y19e{bottom:131.161500px;}
.y1bc{bottom:134.988000px;}
.y67{bottom:136.215000px;}
.y115{bottom:140.128500px;}
.y108{bottom:142.138500px;}
.y99{bottom:143.386500px;}
.y17b{bottom:145.371000px;}
.yad{bottom:145.837500px;}
.y1ef{bottom:147.691500px;}
.y17a{bottom:148.168500px;}
.y135{bottom:149.178000px;}
.yea{bottom:151.035000px;}
.y19d{bottom:151.426500px;}
.y34{bottom:154.090500px;}
.y1bb{bottom:154.354500px;}
.y1ba{bottom:154.356000px;}
.y66{bottom:156.478500px;}
.y114{bottom:160.392000px;}
.y107{bottom:162.403500px;}
.y98{bottom:163.650000px;}
.yac{bottom:166.101000px;}
.y1ee{bottom:167.059500px;}
.y179{bottom:168.432000px;}
.y134{bottom:169.443000px;}
.ye9{bottom:171.300000px;}
.y19c{bottom:171.690000px;}
.y33{bottom:172.248000px;}
.y65{bottom:176.742000px;}
.y113{bottom:180.657000px;}
.y1b9{bottom:182.689500px;}
.y97{bottom:183.913500px;}
.yab{bottom:186.364500px;}
.y1ed{bottom:186.427500px;}
.y178{bottom:188.697000px;}
.y32{bottom:190.405500px;}
.ye8{bottom:191.563500px;}
.y19b{bottom:191.953500px;}
.y64{bottom:197.007000px;}
.y133{bottom:198.672000px;}
.y112{bottom:200.920500px;}
.y31{bottom:203.679000px;}
.y96{bottom:204.178500px;}
.y1ec{bottom:205.794000px;}
.yaa{bottom:206.629500px;}
.y177{bottom:208.960500px;}
.y106{bottom:209.204550px;}
.y14d{bottom:209.887500px;}
.ye7{bottom:211.827000px;}
.y19a{bottom:212.218500px;}
.y63{bottom:217.270500px;}
.y111{bottom:221.184000px;}
.y1b8{bottom:222.141000px;}
.y95{bottom:224.442000px;}
.y105{bottom:225.160275px;}
.y1eb{bottom:225.162000px;}
.y30{bottom:226.719000px;}
.ya9{bottom:226.893000px;}
.y176{bottom:229.224000px;}
.y132{bottom:230.296500px;}
.ye6{bottom:232.092000px;}
.y199{bottom:232.482000px;}
.y1b7{bottom:237.339000px;}
.y62{bottom:237.535500px;}
.y104{bottom:241.116000px;}
.y110{bottom:241.449000px;}
.y1ea{bottom:244.528500px;}
.y94{bottom:244.707000px;}
.y2f{bottom:244.876500px;}
.ya8{bottom:247.158000px;}
.y175{bottom:249.489000px;}
.y131{bottom:249.528000px;}
.ye5{bottom:252.355500px;}
.y197{bottom:252.747000px;}
.y103{bottom:256.732575px;}
.y61{bottom:257.799000px;}
.y2e{bottom:258.150000px;}
.y198{bottom:258.171000px;}
.y1b6{bottom:261.504000px;}
.y10f{bottom:261.712500px;}
.y1e9{bottom:263.896500px;}
.y102{bottom:264.540150px;}
.y93{bottom:264.970500px;}
.ya7{bottom:267.421500px;}
.y130{bottom:268.761000px;}
.y174{bottom:269.752500px;}
.ye4{bottom:272.620500px;}
.y196{bottom:273.010500px;}
.y60{bottom:278.062500px;}
.y2d{bottom:281.190000px;}
.y10e{bottom:281.977500px;}
.y1e8{bottom:283.264500px;}
.y92{bottom:285.234000px;}
.y1b5{bottom:285.667500px;}
.ya6{bottom:287.685000px;}
.y12f{bottom:287.994000px;}
.y119{bottom:290.943000px;}
.ye3{bottom:292.884000px;}
.y195{bottom:293.274000px;}
.y2c{bottom:294.465000px;}
.y101{bottom:295.146300px;}
.y5f{bottom:298.327500px;}
.y173{bottom:298.983000px;}
.y1b4{bottom:300.865500px;}
.y10d{bottom:302.241000px;}
.y1e7{bottom:302.631000px;}
.y91{bottom:305.499000px;}
.ya5{bottom:307.950000px;}
.y11b{bottom:310.423500px;}
.ye2{bottom:313.147500px;}
.y194{bottom:313.539000px;}
.y1b3{bottom:316.063500px;}
.y2b{bottom:317.503500px;}
.y5e{bottom:318.591000px;}
.y1e6{bottom:321.999000px;}
.y10c{bottom:322.504500px;}
.y90{bottom:325.762500px;}
.y100{bottom:325.921500px;}
.ya4{bottom:328.213500px;}
.y2a{bottom:330.778500px;}
.y1b2{bottom:331.263000px;}
.ye1{bottom:333.412500px;}
.y172{bottom:333.802500px;}
.y5d{bottom:338.856000px;}
.y1e5{bottom:341.367000px;}
.y10b{bottom:342.769500px;}
.y8f{bottom:346.027500px;}
.y1f5{bottom:347.244000px;}
.ya3{bottom:348.478500px;}
.ye0{bottom:353.676000px;}
.y29{bottom:353.818500px;}
.y171{bottom:354.067500px;}
.y1b1{bottom:355.426500px;}
.y1e4{bottom:360.733500px;}
.yff{bottom:363.033000px;}
.y13d{bottom:363.493500px;}
.y8e{bottom:366.291000px;}
.y1f4{bottom:366.612000px;}
.y5c{bottom:368.086500px;}
.ya2{bottom:368.742000px;}
.y1b0{bottom:370.624500px;}
.y28{bottom:371.974500px;}
.y1a0{bottom:372.000000px;}
.ydf{bottom:373.941000px;}
.y170{bottom:374.331000px;}
.y1e3{bottom:380.101500px;}
.yfe{bottom:383.298000px;}
.y1af{bottom:385.822500px;}
.y1f3{bottom:385.980000px;}
.y8d{bottom:386.554500px;}
.ya1{bottom:389.005500px;}
.y27{bottom:390.132000px;}
.yde{bottom:394.204500px;}
.y16f{bottom:394.594500px;}
.y1e2{bottom:399.468000px;}
.y1ae{bottom:401.020500px;}
.y26{bottom:403.407000px;}
.yfd{bottom:403.561500px;}
.y8c{bottom:406.819500px;}
.ybb{bottom:408.910620px;}
.ya0{bottom:409.270500px;}
.ydd{bottom:414.468000px;}
.y16e{bottom:414.859500px;}
.y1ad{bottom:416.218500px;}
.y1e1{bottom:418.836000px;}
.yfc{bottom:423.825000px;}
.y13c{bottom:424.285500px;}
.y25{bottom:426.445500px;}
.y8b{bottom:427.083000px;}
.yba{bottom:429.160539px;}
.y9f{bottom:429.534000px;}
.y1ac{bottom:431.416500px;}
.ydc{bottom:434.733000px;}
.y16d{bottom:435.123000px;}
.y1e0{bottom:438.204000px;}
.y24{bottom:439.720500px;}
.yfb{bottom:444.090000px;}
.y5b{bottom:444.501000px;}
.y13b{bottom:444.550500px;}
.y1ab{bottom:446.614500px;}
.y8a{bottom:447.348000px;}
.yb9{bottom:449.320278px;}
.y9e{bottom:449.799000px;}
.y10a{bottom:453.055500px;}
.ydb{bottom:454.996500px;}
.y16c{bottom:455.388000px;}
.y1df{bottom:457.570500px;}
.y23{bottom:462.760500px;}
.yfa{bottom:464.353500px;}
.y5a{bottom:464.766000px;}
.y13a{bottom:464.814000px;}
.y89{bottom:467.611500px;}
.yb8{bottom:469.570197px;}
.y9d{bottom:470.062500px;}
.yda{bottom:475.261500px;}
.y16b{bottom:475.651500px;}
.y22{bottom:476.034000px;}
.y1de{bottom:476.938500px;}
.yf9{bottom:484.618500px;}
.y59{bottom:485.029500px;}
.y88{bottom:487.875000px;}
.yb7{bottom:489.820116px;}
.y1aa{bottom:491.701500px;}
.y14e{bottom:493.584000px;}
.y21{bottom:494.191500px;}
.yd9{bottom:495.525000px;}
.y16a{bottom:495.915000px;}
.y1dd{bottom:496.305000px;}
.y20{bottom:499.074000px;}
.y9c{bottom:499.293000px;}
.yf8{bottom:504.882000px;}
.y87{bottom:508.140000px;}
.yb6{bottom:510.070035px;}
.y1a9{bottom:511.965000px;}
.y1dc{bottom:515.673000px;}
.yd8{bottom:515.788500px;}
.y169{bottom:516.180000px;}
.y1f{bottom:517.231500px;}
.y58{bottom:523.227000px;}
.yf7{bottom:525.145500px;}
.y86{bottom:528.403500px;}
.yb5{bottom:530.319954px;}
.y1e{bottom:530.505000px;}
.y1a8{bottom:533.724000px;}
.y9b{bottom:534.112500px;}
.y1db{bottom:535.041000px;}
.yd7{bottom:536.053500px;}
.y168{bottom:536.443500px;}
.y57{bottom:543.490500px;}
.yf6{bottom:545.410500px;}
.y1d{bottom:548.662500px;}
.y85{bottom:548.667000px;}
.yb4{bottom:550.569873px;}
.y1a7{bottom:553.987500px;}
.y1da{bottom:554.407500px;}
.yd6{bottom:556.317000px;}
.y167{bottom:556.708500px;}
.y193{bottom:559.965000px;}
.y56{bottom:563.755500px;}
.yf5{bottom:565.674000px;}
.y84{bottom:568.932000px;}
.yb3{bottom:570.819792px;}
.y1c{bottom:571.702500px;}
.y1d9{bottom:573.775500px;}
.y17d{bottom:574.641000px;}
.y1a6{bottom:575.746500px;}
.y166{bottom:576.972000px;}
.y192{bottom:580.230000px;}
.y55{bottom:584.019000px;}
.y1b{bottom:584.976000px;}
.yf4{bottom:585.939000px;}
.y83{bottom:589.195500px;}
.yb2{bottom:590.979531px;}
.yd5{bottom:591.318000px;}
.y1d8{bottom:593.142000px;}
.y1a5{bottom:596.010000px;}
.y165{bottom:597.235500px;}
.y191{bottom:600.493500px;}
.y1a{bottom:603.133500px;}
.y54{bottom:604.282500px;}
.yf3{bottom:606.202500px;}
.y82{bottom:609.460500px;}
.yd4{bottom:610.551000px;}
.yb1{bottom:611.229450px;}
.y1d7{bottom:612.510000px;}
.y164{bottom:617.500500px;}
.y1a4{bottom:617.769000px;}
.y190{bottom:620.758500px;}
.y53{bottom:624.547500px;}
.y19{bottom:626.173500px;}
.yf2{bottom:626.466000px;}
.y81{bottom:629.724000px;}
.yd3{bottom:629.784000px;}
.y1d6{bottom:631.878000px;}
.y163{bottom:637.764000px;}
.y1a3{bottom:638.032500px;}
.y18{bottom:639.447000px;}
.y18f{bottom:641.022000px;}
.y52{bottom:644.811000px;}
.yf1{bottom:646.731000px;}
.yb0{bottom:648.579450px;}
.yd2{bottom:649.017000px;}
.y80{bottom:649.987500px;}
.y1d5{bottom:651.244500px;}
.y162{bottom:658.029000px;}
.y1a2{bottom:658.297500px;}
.y128{bottom:658.422309px;}
.y18e{bottom:661.285500px;}
.y17{bottom:662.487000px;}
.y51{bottom:665.076000px;}
.yf0{bottom:666.994500px;}
.yd1{bottom:668.248500px;}
.y7f{bottom:670.252500px;}
.y1d4{bottom:670.612500px;}
.y161{bottom:678.292500px;}
.y1a1{bottom:678.561000px;}
.y127{bottom:678.672228px;}
.y16{bottom:680.644500px;}
.y18d{bottom:681.550500px;}
.y50{bottom:685.339500px;}
.yef{bottom:687.258000px;}
.y139{bottom:687.718500px;}
.y1d3{bottom:689.979000px;}
.y7e{bottom:690.516000px;}
.yaf{bottom:690.678000px;}
.y15{bottom:693.918000px;}
.y160{bottom:698.556000px;}
.y126{bottom:698.922147px;}
.y18c{bottom:701.814000px;}
.y4f{bottom:705.603000px;}
.yee{bottom:707.523000px;}
.y1d2{bottom:709.347000px;}
.y7d{bottom:710.781000px;}
.y14{bottom:712.075500px;}
.y118{bottom:716.205000px;}
.y15f{bottom:718.821000px;}
.y125{bottom:719.081886px;}
.y18b{bottom:722.077500px;}
.y4e{bottom:725.868000px;}
.yed{bottom:727.786500px;}
.y1d1{bottom:728.715000px;}
.y13{bottom:730.233000px;}
.y7c{bottom:731.044500px;}
.y15e{bottom:739.084500px;}
.y124{bottom:739.331805px;}
.y18a{bottom:742.342500px;}
.y4d{bottom:746.131500px;}
.y14c{bottom:748.051500px;}
.y1d0{bottom:748.081500px;}
.y12{bottom:748.389000px;}
.y117{bottom:748.512000px;}
.y7b{bottom:751.308000px;}
.y116{bottom:756.733500px;}
.yec{bottom:757.017000px;}
.y15d{bottom:759.349500px;}
.y123{bottom:759.581724px;}
.y189{bottom:762.606000px;}
.y1f2{bottom:764.761500px;}
.y4c{bottom:766.396500px;}
.y1cf{bottom:767.449500px;}
.y14b{bottom:768.315000px;}
.y11{bottom:771.429000px;}
.y7a{bottom:771.573000px;}
.y15c{bottom:779.613000px;}
.y188{bottom:782.871000px;}
.y4b{bottom:786.660000px;}
.y1ce{bottom:786.816000px;}
.y14a{bottom:788.578500px;}
.y122{bottom:788.831607px;}
.y79{bottom:791.836500px;}
.y10{bottom:793.669500px;}
.y15b{bottom:799.876500px;}
.y187{bottom:803.134500px;}
.y1cd{bottom:806.184000px;}
.y149{bottom:808.843500px;}
.y78{bottom:812.101500px;}
.yf{bottom:813.934500px;}
.y15a{bottom:820.141500px;}
.y48{bottom:822.092964px;}
.y47{bottom:822.859500px;}
.y186{bottom:823.398000px;}
.y1cc{bottom:825.552000px;}
.y121{bottom:827.081454px;}
.y148{bottom:829.107000px;}
.y77{bottom:832.365000px;}
.ye{bottom:834.198000px;}
.y159{bottom:840.405000px;}
.y185{bottom:843.663000px;}
.y1cb{bottom:844.918500px;}
.y120{bottom:847.331373px;}
.y147{bottom:849.372000px;}
.y76{bottom:852.628500px;}
.yd{bottom:854.463000px;}
.y158{bottom:860.668500px;}
.y46{bottom:861.864000px;}
.y184{bottom:863.926500px;}
.y1ca{bottom:864.286500px;}
.y11f{bottom:867.581292px;}
.y146{bottom:869.635500px;}
.y75{bottom:872.893500px;}
.yc{bottom:874.726500px;}
.y157{bottom:880.933500px;}
.y1c9{bottom:883.653000px;}
.y183{bottom:884.191500px;}
.y45{bottom:884.904000px;}
.y11e{bottom:887.741031px;}
.y145{bottom:889.899000px;}
.y74{bottom:893.157000px;}
.yb{bottom:894.990000px;}
.y156{bottom:901.197000px;}
.y1c8{bottom:903.021000px;}
.y44{bottom:903.060000px;}
.y182{bottom:904.455000px;}
.y11d{bottom:907.990950px;}
.y144{bottom:910.164000px;}
.y73{bottom:913.422000px;}
.ya{bottom:915.255000px;}
.y43{bottom:921.217500px;}
.y155{bottom:921.462000px;}
.y1c7{bottom:922.389000px;}
.y181{bottom:924.718500px;}
.y142{bottom:930.427500px;}
.y72{bottom:933.685500px;}
.y42{bottom:934.492500px;}
.y9{bottom:935.518500px;}
.y143{bottom:935.853000px;}
.y154{bottom:941.725500px;}
.y1c6{bottom:941.755500px;}
.y180{bottom:944.983500px;}
.y11c{bottom:945.340950px;}
.y140{bottom:950.692500px;}
.y138{bottom:951.153000px;}
.y71{bottom:953.949000px;}
.y8{bottom:955.783500px;}
.y141{bottom:956.116500px;}
.y41{bottom:957.531000px;}
.y1c5{bottom:961.123500px;}
.y17f{bottom:965.247000px;}
.y13f{bottom:970.956000px;}
.y70{bottom:974.214000px;}
.y40{bottom:975.688500px;}
.y7{bottom:976.047000px;}
.y1c4{bottom:980.490000px;}
.y17e{bottom:985.512000px;}
.y3f{bottom:988.963500px;}
.y6f{bottom:994.477500px;}
.y6{bottom:996.310500px;}
.y1c3{bottom:999.858000px;}
.y13e{bottom:1000.186500px;}
.y153{bottom:1005.775500px;}
.y3e{bottom:1012.002000px;}
.y6e{bottom:1014.742500px;}
.y1c2{bottom:1019.226000px;}
.y3d{bottom:1025.277000px;}
.y152{bottom:1026.039000px;}
.y6d{bottom:1035.006000px;}
.y1c1{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y151{bottom:1046.304000px;}
.y3c{bottom:1048.317000px;}
.y6c{bottom:1055.269500px;}
.y1c0{bottom:1057.960500px;}
.y3b{bottom:1061.592000px;}
.y150{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y6b{bottom:1075.534500px;}
.y1bf{bottom:1077.327000px;}
.y3a{bottom:1084.630500px;}
.y14f{bottom:1086.832500px;}
.y6a{bottom:1095.798000px;}
.y1be{bottom:1096.695000px;}
.y39{bottom:1097.905500px;}
.y3{bottom:1100.145000px;}
.y69{bottom:1116.063000px;}
.y38{bottom:1120.944000px;}
.y1{bottom:1137.954000px;}
.y37{bottom:1168.366500px;}
.hb{height:25.508090px;}
.h21{height:27.855430px;}
.h8{height:30.587087px;}
.h20{height:32.027868px;}
.hd{height:33.112997px;}
.h1a{height:33.209038px;}
.hc{height:34.199443px;}
.h11{height:34.951465px;}
.ha{height:35.052500px;}
.h19{height:35.673719px;}
.h16{height:36.798106px;}
.h18{height:37.360299px;}
.h24{height:37.551283px;}
.h26{height:37.927872px;}
.h23{height:38.412058px;}
.h15{height:38.734848px;}
.h9{height:39.326630px;}
.h14{height:39.418945px;}
.h22{height:39.434227px;}
.h1e{height:41.723369px;}
.h1d{height:42.679778px;}
.he{height:43.038432px;}
.h1c{height:43.622227px;}
.hf{height:43.695964px;}
.h4{height:43.815515px;}
.h12{height:43.886426px;}
.h25{height:50.117087px;}
.h2{height:51.026250px;}
.h13{height:52.558594px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h1f{height:54.905038px;}
.h17{height:68.590599px;}
.h5{height:77.469696px;}
.h3{height:92.775000px;}
.h10{height:382.563000px;}
.h1b{height:640.143000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:142.007909px;}
.w4{width:605.490900px;}
.w5{width:616.578900px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x59{left:-29.111100px;}
.xc6{left:-21.828600px;}
.x0{left:0.000000px;}
.x5a{left:2.748794px;}
.xc7{left:10.031294px;}
.x7{left:29.274117px;}
.x2{left:57.002259px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.xa6{left:136.466625px;}
.xc5{left:138.168600px;}
.xcf{left:140.707500px;}
.x58{left:143.712600px;}
.x12e{left:145.059000px;}
.x4{left:146.170500px;}
.xb8{left:147.708000px;}
.xd0{left:155.652000px;}
.x6b{left:158.646000px;}
.xa3{left:160.915350px;}
.xa2{left:166.250550px;}
.xa0{left:168.128700px;}
.xb9{left:170.124000px;}
.x9f{left:172.286850px;}
.x6c{left:173.590500px;}
.x12b{left:175.582500px;}
.xb1{left:177.390000px;}
.xbc{left:178.705500px;}
.x78{left:181.146000px;}
.xd3{left:182.715000px;}
.xed{left:185.277000px;}
.xaf{left:187.029000px;}
.x8{left:188.949000px;}
.x67{left:192.426000px;}
.x2e{left:194.514000px;}
.x79{left:196.089000px;}
.x93{left:199.212000px;}
.x2f{left:201.985500px;}
.x5c{left:203.472000px;}
.x121{left:204.519000px;}
.x68{left:207.370500px;}
.x9{left:208.602000px;}
.xff{left:209.874000px;}
.x69{left:211.042500px;}
.x94{left:214.156500px;}
.x36{left:216.714000px;}
.x6f{left:219.111000px;}
.xec{left:221.073000px;}
.x6a{left:225.987000px;}
.xf2{left:227.305500px;}
.x45{left:228.892500px;}
.xef{left:230.334000px;}
.x37{left:231.657000px;}
.x26{left:234.598500px;}
.xfb{left:235.666500px;}
.xfc{left:239.338500px;}
.x99{left:240.723000px;}
.x46{left:243.837000px;}
.x122{left:246.337500px;}
.x47{left:247.498500px;}
.xf3{left:249.721500px;}
.x139{left:251.667000px;}
.xf0{left:252.748500px;}
.x123{left:253.810500px;}
.xb5{left:256.144500px;}
.x48{left:262.441500px;}
.xe5{left:266.109000px;}
.x30{left:267.439500px;}
.xa9{left:268.975500px;}
.xa1{left:270.296925px;}
.xb7{left:271.752000px;}
.xab{left:274.903500px;}
.xee{left:276.817500px;}
.xbf{left:278.847000px;}
.x31{left:282.384000px;}
.x10a{left:286.257000px;}
.xe6{left:288.525000px;}
.xd6{left:291.874500px;}
.xc0{left:293.790000px;}
.x27{left:294.963000px;}
.xb3{left:297.580500px;}
.x56{left:300.880500px;}
.xb4{left:305.053500px;}
.x10b{left:308.673000px;}
.x28{left:309.906000px;}
.x12a{left:311.136000px;}
.x57{left:315.825000px;}
.xd7{left:317.952000px;}
.xf1{left:319.456500px;}
.x91{left:323.554500px;}
.xe7{left:325.953000px;}
.x12d{left:327.325500px;}
.xcb{left:329.946000px;}
.x10{left:334.480500px;}
.xbd{left:336.975000px;}
.x92{left:338.499000px;}
.xe8{left:340.896000px;}
.x11{left:341.952000px;}
.xe1{left:344.217000px;}
.xe0{left:345.388500px;}
.x40{left:347.251500px;}
.x2a{left:348.510000px;}
.xcc{left:352.362000px;}
.xbe{left:354.736500px;}
.x5d{left:355.965000px;}
.x70{left:358.444500px;}
.x5e{left:359.775000px;}
.x41{left:362.196000px;}
.x2b{left:363.454500px;}
.xc2{left:365.260500px;}
.xda{left:366.985500px;}
.xe9{left:368.308500px;}
.xd1{left:369.774000px;}
.x71{left:373.389000px;}
.x5f{left:374.719500px;}
.x72{left:377.184000px;}
.x115{left:378.636000px;}
.xd2{left:380.193000px;}
.x116{left:382.338000px;}
.x119{left:383.706000px;}
.x9a{left:388.968000px;}
.x49{left:391.105500px;}
.x73{left:392.128500px;}
.x12{left:396.570000px;}
.xb6{left:398.436000px;}
.xfa{left:399.478500px;}
.xe4{left:401.766000px;}
.x13{left:404.041500px;}
.x4a{left:406.048500px;}
.xf7{left:408.913500px;}
.x32{left:410.586000px;}
.xdf{left:414.855000px;}
.x124{left:418.195500px;}
.x4e{left:419.707500px;}
.x7e{left:421.795500px;}
.x4b{left:424.687500px;}
.x22{left:426.175500px;}
.x4f{left:427.179000px;}
.xf5{left:429.301500px;}
.x50{left:430.893000px;}
.x18{left:432.544500px;}
.x11a{left:433.744500px;}
.xf8{left:435.141000px;}
.x7f{left:436.740000px;}
.x11b{left:437.811000px;}
.x19{left:440.016000px;}
.x23{left:441.118500px;}
.x110{left:442.852500px;}
.x109{left:443.952000px;}
.x51{left:445.836000px;}
.xaa{left:447.370500px;}
.xea{left:450.082500px;}
.x10c{left:451.585500px;}
.x42{left:453.520500px;}
.x60{left:454.615500px;}
.xf9{left:457.557000px;}
.x11c{left:460.227000px;}
.xb0{left:463.734000px;}
.x104{left:465.496500px;}
.x100{left:466.665000px;}
.x24{left:467.739000px;}
.x61{left:469.560000px;}
.x7c{left:472.275000px;}
.x62{left:473.370000px;}
.x117{left:477.235500px;}
.x105{left:480.441000px;}
.x25{left:482.683500px;}
.x103{left:484.299000px;}
.x7d{left:487.218000px;}
.x63{left:488.314500px;}
.x120{left:490.680000px;}
.x118{left:492.178500px;}
.x39{left:494.401500px;}
.x6d{left:496.426500px;}
.x106{left:499.056000px;}
.x107{left:502.729500px;}
.x7a{left:504.624000px;}
.xad{left:506.250000px;}
.x3a{left:509.346000px;}
.x6e{left:511.371000px;}
.xae{left:513.723000px;}
.x10d{left:515.332500px;}
.xeb{left:516.802500px;}
.x9d{left:518.038500px;}
.x7b{left:519.567000px;}
.xd5{left:522.183000px;}
.x108{left:525.145500px;}
.x125{left:526.749000px;}
.x2c{left:527.887500px;}
.x126{left:530.560500px;}
.x9e{left:532.983000px;}
.x10e{left:537.748500px;}
.x111{left:540.030000px;}
.x2d{left:542.832000px;}
.x10f{left:546.607500px;}
.x80{left:548.343000px;}
.x14{left:550.014000px;}
.xf4{left:551.413500px;}
.x127{left:552.976500px;}
.x15{left:557.485500px;}
.x112{left:559.621500px;}
.x128{left:561.763500px;}
.x81{left:563.287500px;}
.x95{left:565.062000px;}
.x82{left:567.097500px;}
.xfd{left:572.301000px;}
.xa7{left:573.820500px;}
.xdc{left:576.351000px;}
.x96{left:580.006500px;}
.x83{left:582.042000px;}
.x135{left:583.042500px;}
.x113{left:584.269500px;}
.x84{left:585.852000px;}
.x97{left:587.530500px;}
.xa8{left:588.765000px;}
.xbb{left:592.540500px;}
.x9c{left:593.583000px;}
.xfe{left:594.717000px;}
.x1c{left:596.566500px;}
.xe3{left:599.667000px;}
.x85{left:600.796500px;}
.x5b{left:601.878900px;}
.x1d{left:604.039500px;}
.x4c{left:605.878500px;}
.x1e{left:607.804500px;}
.xc8{left:609.431400px;}
.x11d{left:610.696500px;}
.x74{left:613.242000px;}
.xf6{left:615.531000px;}
.x9b{left:616.962000px;}
.x133{left:619.203000px;}
.x4d{left:620.823000px;}
.x1f{left:622.749000px;}
.x101{left:624.900000px;}
.xe2{left:626.319000px;}
.x75{left:628.186500px;}
.xd4{left:631.416000px;}
.x76{left:635.592000px;}
.x132{left:637.213500px;}
.xdd{left:639.153000px;}
.x3b{left:641.259000px;}
.x129{left:642.927000px;}
.x16{left:644.737500px;}
.xca{left:646.078500px;}
.x102{left:647.316000px;}
.x8b{left:649.015500px;}
.x77{left:650.535000px;}
.x17{left:652.209000px;}
.xcd{left:653.769000px;}
.x3c{left:656.202000px;}
.x138{left:657.931500px;}
.x34{left:659.229000px;}
.xde{left:661.569000px;}
.xc9{left:664.173000px;}
.x29{left:665.823000px;}
.xd8{left:668.076000px;}
.xc{left:670.791000px;}
.x38{left:671.841000px;}
.x35{left:674.173500px;}
.xce{left:676.185000px;}
.xd{left:678.262500px;}
.x90{left:680.385000px;}
.xa4{left:681.429375px;}
.xba{left:682.852500px;}
.x11e{left:684.124500px;}
.x33{left:686.259000px;}
.x131{left:687.618000px;}
.x53{left:688.933500px;}
.xd9{left:690.492000px;}
.x136{left:692.593500px;}
.x114{left:693.727500px;}
.x54{left:696.406500px;}
.x86{left:697.953000px;}
.x55{left:700.068000px;}
.x6{left:701.339982px;}
.x8c{left:702.906000px;}
.x87{left:705.426000px;}
.x137{left:708.033000px;}
.x88{left:709.093500px;}
.x11f{left:710.350500px;}
.x12f{left:711.529500px;}
.x98{left:712.836000px;}
.x20{left:714.928500px;}
.xc3{left:716.793000px;}
.x8d{left:717.850500px;}
.xac{left:719.613000px;}
.x8e{left:721.512000px;}
.x43{left:722.916000px;}
.x89{left:724.038000px;}
.x134{left:726.066000px;}
.x8a{left:727.707000px;}
.x21{left:729.873000px;}
.xc4{left:731.737500px;}
.x64{left:734.443500px;}
.x8f{left:736.455000px;}
.x44{left:737.859000px;}
.x3d{left:739.458000px;}
.xa5{left:741.191025px;}
.x1a{left:743.191500px;}
.x52{left:745.410000px;}
.xb2{left:746.808000px;}
.x65{left:749.386500px;}
.x1b{left:750.663000px;}
.xe{left:753.420000px;}
.x130{left:755.113500px;}
.x66{left:756.955500px;}
.x3e{left:758.160000px;}
.xf{left:760.893000px;}
.xa{left:764.367000px;}
.xc1{left:765.982500px;}
.xdb{left:769.810500px;}
.xb{left:771.838500px;}
.x3f{left:773.104500px;}
.x12c{left:776.496000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:27.760267pt;}
.ls2c{letter-spacing:-0.224448pt;}
.ls2d{letter-spacing:-0.160320pt;}
.ls29{letter-spacing:-0.149632pt;}
.ls3a{letter-spacing:-0.122912pt;}
.ls27{letter-spacing:-0.076608pt;}
.ls3c{letter-spacing:-0.067200pt;}
.ls39{letter-spacing:-0.026720pt;}
.ls38{letter-spacing:-0.021376pt;}
.ls2b{letter-spacing:-0.010688pt;}
.ls2a{letter-spacing:-0.005344pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.000047pt;}
.ls51{letter-spacing:0.000088pt;}
.ls46{letter-spacing:0.000137pt;}
.ls92{letter-spacing:0.000397pt;}
.ls43{letter-spacing:0.000444pt;}
.ls5{letter-spacing:0.000503pt;}
.ls91{letter-spacing:0.000572pt;}
.ls8c{letter-spacing:0.000600pt;}
.ls55{letter-spacing:0.000711pt;}
.ls65{letter-spacing:0.000742pt;}
.ls2e{letter-spacing:0.000752pt;}
.ls47{letter-spacing:0.000797pt;}
.ls69{letter-spacing:0.000868pt;}
.ls4b{letter-spacing:0.000880pt;}
.ls3e{letter-spacing:0.000934pt;}
.ls50{letter-spacing:0.001051pt;}
.ls41{letter-spacing:0.001061pt;}
.ls33{letter-spacing:0.001067pt;}
.ls6a{letter-spacing:0.001156pt;}
.lsb{letter-spacing:0.001349pt;}
.ls34{letter-spacing:0.001370pt;}
.ls98{letter-spacing:0.001574pt;}
.ls4f{letter-spacing:0.001680pt;}
.ls4a{letter-spacing:0.001821pt;}
.ls4{letter-spacing:0.001843pt;}
.ls37{letter-spacing:0.002078pt;}
.ls2f{letter-spacing:0.002200pt;}
.ls31{letter-spacing:0.002287pt;}
.ls90{letter-spacing:0.002369pt;}
.ls5b{letter-spacing:0.002505pt;}
.ls85{letter-spacing:0.002525pt;}
.ls9{letter-spacing:0.002551pt;}
.ls4e{letter-spacing:0.002575pt;}
.ls26{letter-spacing:0.002613pt;}
.ls44{letter-spacing:0.002630pt;}
.ls7e{letter-spacing:0.002653pt;}
.ls40{letter-spacing:0.002710pt;}
.ls45{letter-spacing:0.003106pt;}
.ls42{letter-spacing:0.003198pt;}
.ls4d{letter-spacing:0.003239pt;}
.ls32{letter-spacing:0.003409pt;}
.ls3f{letter-spacing:0.003733pt;}
.ls3d{letter-spacing:0.004252pt;}
.ls57{letter-spacing:0.004267pt;}
.ls7a{letter-spacing:0.004319pt;}
.ls4c{letter-spacing:0.004813pt;}
.ls25{letter-spacing:0.005344pt;}
.ls17{letter-spacing:0.010688pt;}
.ls11{letter-spacing:0.016032pt;}
.ls1d{letter-spacing:0.019200pt;}
.ls18{letter-spacing:0.021376pt;}
.ls20{letter-spacing:0.024000pt;}
.ls15{letter-spacing:0.026720pt;}
.ls19{letter-spacing:0.032064pt;}
.ls1b{letter-spacing:0.033600pt;}
.ls12{letter-spacing:0.037408pt;}
.ls36{letter-spacing:0.038400pt;}
.ls1a{letter-spacing:0.042752pt;}
.ls1e{letter-spacing:0.043200pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls21{letter-spacing:0.048096pt;}
.ls1f{letter-spacing:0.052800pt;}
.ls14{letter-spacing:0.053440pt;}
.lse{letter-spacing:0.055328pt;}
.ls24{letter-spacing:0.058784pt;}
.ls35{letter-spacing:0.069472pt;}
.ls13{letter-spacing:0.074816pt;}
.ls22{letter-spacing:0.080160pt;}
.ls16{letter-spacing:0.085504pt;}
.ls28{letter-spacing:0.090848pt;}
.ls23{letter-spacing:0.106880pt;}
.ls10{letter-spacing:0.161728pt;}
.lsf{letter-spacing:0.170240pt;}
.ls8d{letter-spacing:0.466280pt;}
.ls8e{letter-spacing:0.471509pt;}
.ls83{letter-spacing:0.478097pt;}
.ls3b{letter-spacing:0.484800pt;}
.lsc{letter-spacing:1.133683pt;}
.lsa{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.665203pt;}
.ls7c{letter-spacing:9.394460pt;}
.ls6{letter-spacing:10.626533pt;}
.ls49{letter-spacing:11.046990pt;}
.ls70{letter-spacing:11.146841pt;}
.ls84{letter-spacing:11.201263pt;}
.ls79{letter-spacing:11.451603pt;}
.ls99{letter-spacing:11.478814pt;}
.ls88{letter-spacing:11.636637pt;}
.ls61{letter-spacing:11.699024pt;}
.ls80{letter-spacing:11.701306pt;}
.ls81{letter-spacing:11.756653pt;}
.ls6d{letter-spacing:11.765485pt;}
.ls8f{letter-spacing:11.800930pt;}
.ls5f{letter-spacing:11.819078pt;}
.ls76{letter-spacing:11.828726pt;}
.ls8a{letter-spacing:11.829577pt;}
.ls56{letter-spacing:11.954133pt;}
.ls3{letter-spacing:11.956267pt;}
.ls53{letter-spacing:11.959467pt;}
.ls5a{letter-spacing:11.988631pt;}
.ls7d{letter-spacing:12.028703pt;}
.ls8b{letter-spacing:12.050176pt;}
.ls72{letter-spacing:12.055553pt;}
.ls59{letter-spacing:12.066262pt;}
.ls62{letter-spacing:12.077123pt;}
.ls52{letter-spacing:12.082895pt;}
.ls6b{letter-spacing:12.085409pt;}
.ls58{letter-spacing:12.088337pt;}
.ls71{letter-spacing:12.098781pt;}
.ls60{letter-spacing:12.134140pt;}
.ls78{letter-spacing:12.144969pt;}
.ls67{letter-spacing:12.161213pt;}
.ls6c{letter-spacing:12.177188pt;}
.ls63{letter-spacing:12.202302pt;}
.ls6e{letter-spacing:12.384669pt;}
.ls6f{letter-spacing:12.588591pt;}
.ls89{letter-spacing:12.667022pt;}
.ls74{letter-spacing:12.970290pt;}
.lsd{letter-spacing:13.101433pt;}
.ls48{letter-spacing:13.308785pt;}
.ls30{letter-spacing:13.389734pt;}
.ls97{letter-spacing:13.660486pt;}
.ls64{letter-spacing:14.293166pt;}
.ls7f{letter-spacing:14.601663pt;}
.ls87{letter-spacing:14.701009pt;}
.ls95{letter-spacing:14.857872pt;}
.ls82{letter-spacing:15.009506pt;}
.ls54{letter-spacing:15.438264pt;}
.ls86{letter-spacing:15.668329pt;}
.ls5c{letter-spacing:15.799048pt;}
.ls77{letter-spacing:15.898395pt;}
.ls96{letter-spacing:16.023885pt;}
.ls9a{letter-spacing:16.185976pt;}
.ls66{letter-spacing:16.363754pt;}
.ls94{letter-spacing:16.442186pt;}
.ls7b{letter-spacing:16.619627pt;}
.ls73{letter-spacing:16.635650pt;}
.ls93{letter-spacing:17.242186pt;}
.ls75{letter-spacing:17.383362pt;}
.ls5d{letter-spacing:18.528460pt;}
.ls68{letter-spacing:18.884016pt;}
.ls0{letter-spacing:51.035733pt;}
.ls2{letter-spacing:62.432533pt;}
.ls8{letter-spacing:64.314231pt;}
.ws23{word-spacing:-15.461955pt;}
.ws18{word-spacing:-13.915853pt;}
.ws108{word-spacing:-13.283467pt;}
.ws13{word-spacing:-12.760670pt;}
.ws1b{word-spacing:-12.369595pt;}
.ws15{word-spacing:-11.955200pt;}
.ws5c{word-spacing:-10.810240pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws20a{word-spacing:-9.298400pt;}
.ws204{word-spacing:-4.590797pt;}
.ws43{word-spacing:-4.303843pt;}
.ws12b{word-spacing:-4.144442pt;}
.ws1bc{word-spacing:-4.016947pt;}
.ws48{word-spacing:-3.985040pt;}
.ws17b{word-spacing:-3.873485pt;}
.ws11e{word-spacing:-3.772505pt;}
.wsc9{word-spacing:-3.719371pt;}
.wsd2{word-spacing:-3.613103pt;}
.ws12a{word-spacing:-3.453701pt;}
.wsbd{word-spacing:-3.400567pt;}
.wsb1{word-spacing:-3.347434pt;}
.ws1a3{word-spacing:-3.299635pt;}
.ws44{word-spacing:-3.294300pt;}
.ws1d1{word-spacing:-3.251814pt;}
.ws14e{word-spacing:-3.156173pt;}
.wsbb{word-spacing:-3.134898pt;}
.ws200{word-spacing:-3.108352pt;}
.wsb2{word-spacing:-3.081764pt;}
.ws52{word-spacing:-3.028630pt;}
.ws176{word-spacing:-3.012710pt;}
.wsac{word-spacing:-2.922363pt;}
.ws1fe{word-spacing:-2.917069pt;}
.ws12f{word-spacing:-2.816095pt;}
.ws1ed{word-spacing:-2.773606pt;}
.ws102{word-spacing:-2.762961pt;}
.ws15f{word-spacing:-2.677965pt;}
.ws4b{word-spacing:-2.656693pt;}
.ws5d{word-spacing:-2.630144pt;}
.ws105{word-spacing:-2.603559pt;}
.ws1d2{word-spacing:-2.582323pt;}
.wscb{word-spacing:-2.550426pt;}
.ws123{word-spacing:-2.497292pt;}
.wsf0{word-spacing:-2.444158pt;}
.ws5e{word-spacing:-2.438861pt;}
.wsb0{word-spacing:-2.391024pt;}
.ws168{word-spacing:-2.343219pt;}
.ws112{word-spacing:-2.231622pt;}
.ws1a0{word-spacing:-2.199757pt;}
.ws1fb{word-spacing:-2.151936pt;}
.ws195{word-spacing:-2.104115pt;}
.ws9e{word-spacing:-2.072221pt;}
.ws1a2{word-spacing:-2.008474pt;}
.ws180{word-spacing:-1.960653pt;}
.wsf3{word-spacing:-1.912819pt;}
.wsa4{word-spacing:-1.859685pt;}
.wsf9{word-spacing:-1.836701pt;}
.wsf8{word-spacing:-1.806551pt;}
.ws1a8{word-spacing:-1.769370pt;}
.ws11c{word-spacing:-1.753418pt;}
.wsf2{word-spacing:-1.700284pt;}
.ws1f{word-spacing:-1.696326pt;}
.wsa2{word-spacing:-1.647150pt;}
.ws182{word-spacing:-1.625907pt;}
.wse2{word-spacing:-1.587168pt;}
.ws5f{word-spacing:-1.578086pt;}
.ws93{word-spacing:-1.576480pt;}
.ws94{word-spacing:-1.565792pt;}
.wsfb{word-spacing:-1.540882pt;}
.ws16c{word-spacing:-1.530266pt;}
.wse1{word-spacing:-1.523040pt;}
.ws109{word-spacing:-1.487748pt;}
.wsa3{word-spacing:-1.434614pt;}
.ws191{word-spacing:-1.386803pt;}
.ws49{word-spacing:-1.381481pt;}
.wse{word-spacing:-1.328347pt;}
.ws10{word-spacing:-1.312059pt;}
.wsf{word-spacing:-1.312041pt;}
.wsd{word-spacing:-1.297054pt;}
.ws20f{word-spacing:-1.291162pt;}
.ws12{word-spacing:-1.275213pt;}
.ws7b{word-spacing:-1.250496pt;}
.wsd9{word-spacing:-1.234464pt;}
.wsaf{word-spacing:-1.222079pt;}
.ws1b5{word-spacing:-1.195520pt;}
.ws9b{word-spacing:-1.186368pt;}
.ws1e{word-spacing:-1.175671pt;}
.wsff{word-spacing:-1.168945pt;}
.ws116{word-spacing:-1.115811pt;}
.ws1c9{word-spacing:-1.099878pt;}
.ws31{word-spacing:-1.062677pt;}
.ws161{word-spacing:-1.052058pt;}
.wsa6{word-spacing:-1.009543pt;}
.ws1ea{word-spacing:-1.004237pt;}
.ws20d{word-spacing:-0.956416pt;}
.ws27{word-spacing:-0.956410pt;}
.ws4c{word-spacing:-0.903276pt;}
.ws87{word-spacing:-0.865728pt;}
.ws10a{word-spacing:-0.850142pt;}
.wsb7{word-spacing:-0.817736pt;}
.ws1ab{word-spacing:-0.812954pt;}
.wsad{word-spacing:-0.797008pt;}
.ws1eb{word-spacing:-0.765133pt;}
.wsbc{word-spacing:-0.743874pt;}
.ws219{word-spacing:-0.717312pt;}
.ws9c{word-spacing:-0.716096pt;}
.wsae{word-spacing:-0.690740pt;}
.ws1cb{word-spacing:-0.669491pt;}
.ws30{word-spacing:-0.637606pt;}
.ws218{word-spacing:-0.621670pt;}
.ws88{word-spacing:-0.593184pt;}
.ws101{word-spacing:-0.584473pt;}
.ws155{word-spacing:-0.573850pt;}
.ws89{word-spacing:-0.571808pt;}
.ws50{word-spacing:-0.531339pt;}
.wsd0{word-spacing:-0.526029pt;}
.ws1df{word-spacing:-0.478208pt;}
.ws55{word-spacing:-0.478205pt;}
.ws173{word-spacing:-0.430387pt;}
.wsfe{word-spacing:-0.425071pt;}
.ws1f2{word-spacing:-0.382566pt;}
.wsfd{word-spacing:-0.371937pt;}
.ws60{word-spacing:-0.334746pt;}
.ws56{word-spacing:-0.318803pt;}
.wsdb{word-spacing:-0.304608pt;}
.ws148{word-spacing:-0.286925pt;}
.ws67{word-spacing:-0.265669pt;}
.ws69{word-spacing:-0.246848pt;}
.ws139{word-spacing:-0.239104pt;}
.wsda{word-spacing:-0.229792pt;}
.ws3a{word-spacing:-0.212535pt;}
.ws13c{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.159402pt;}
.ws136{word-spacing:-0.143462pt;}
.ws3b{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws40{word-spacing:-0.053134pt;}
.ws143{word-spacing:-0.047821pt;}
.wsb8{word-spacing:-0.045430pt;}
.wsfc{word-spacing:-0.040382pt;}
.ws19a{word-spacing:-0.023817pt;}
.ws1d{word-spacing:-0.012425pt;}
.ws20e{word-spacing:-0.007646pt;}
.ws1c8{word-spacing:-0.007492pt;}
.ws19e{word-spacing:-0.007151pt;}
.ws202{word-spacing:-0.006861pt;}
.ws6e{word-spacing:-0.005344pt;}
.ws1d3{word-spacing:-0.005274pt;}
.ws1ca{word-spacing:-0.005239pt;}
.ws154{word-spacing:-0.004617pt;}
.ws1a1{word-spacing:-0.004506pt;}
.ws175{word-spacing:-0.004446pt;}
.ws1{word-spacing:-0.003444pt;}
.ws185{word-spacing:-0.003183pt;}
.ws3{word-spacing:-0.003170pt;}
.ws1ce{word-spacing:-0.002628pt;}
.ws149{word-spacing:-0.002551pt;}
.ws1f9{word-spacing:-0.002159pt;}
.ws19{word-spacing:-0.002149pt;}
.ws1aa{word-spacing:-0.001818pt;}
.ws17e{word-spacing:-0.001630pt;}
.ws8{word-spacing:-0.001236pt;}
.ws196{word-spacing:-0.000717pt;}
.ws15a{word-spacing:-0.000529pt;}
.ws209{word-spacing:-0.000418pt;}
.ws0{word-spacing:0.000000pt;}
.ws207{word-spacing:0.000094pt;}
.ws1cc{word-spacing:0.001203pt;}
.ws205{word-spacing:0.001485pt;}
.ws7c{word-spacing:0.042752pt;}
.ws135{word-spacing:0.047821pt;}
.ws6d{word-spacing:0.048096pt;}
.ws20{word-spacing:0.053134pt;}
.ws76{word-spacing:0.064128pt;}
.ws74{word-spacing:0.074816pt;}
.ws14{word-spacing:0.095642pt;}
.ws2f{word-spacing:0.106268pt;}
.ws84{word-spacing:0.139200pt;}
.ws13a{word-spacing:0.143462pt;}
.ws32{word-spacing:0.159402pt;}
.ws61{word-spacing:0.191283pt;}
.wse6{word-spacing:0.208416pt;}
.ws22{word-spacing:0.212535pt;}
.ws153{word-spacing:0.239104pt;}
.ws2a{word-spacing:0.265669pt;}
.ws17c{word-spacing:0.286925pt;}
.ws8e{word-spacing:0.299264pt;}
.ws3c{word-spacing:0.318803pt;}
.ws193{word-spacing:0.334746pt;}
.wscc{word-spacing:0.371937pt;}
.ws14b{word-spacing:0.382566pt;}
.ws75{word-spacing:0.395456pt;}
.ws41{word-spacing:0.425071pt;}
.ws1a6{word-spacing:0.430387pt;}
.wsec{word-spacing:0.460800pt;}
.ws127{word-spacing:0.478205pt;}
.ws13b{word-spacing:0.478208pt;}
.ws1d4{word-spacing:0.526029pt;}
.ws24{word-spacing:0.531339pt;}
.ws77{word-spacing:0.555776pt;}
.ws208{word-spacing:0.573850pt;}
.wsbe{word-spacing:0.584473pt;}
.ws14a{word-spacing:0.621670pt;}
.wsed{word-spacing:0.637606pt;}
.ws85{word-spacing:0.651968pt;}
.ws169{word-spacing:0.669491pt;}
.ws46{word-spacing:0.690740pt;}
.ws92{word-spacing:0.694720pt;}
.ws162{word-spacing:0.717312pt;}
.ws68{word-spacing:0.743874pt;}
.ws1bb{word-spacing:0.765133pt;}
.ws28{word-spacing:0.797008pt;}
.ws16e{word-spacing:0.812954pt;}
.wsc0{word-spacing:0.850142pt;}
.ws9d{word-spacing:0.903276pt;}
.ws130{word-spacing:0.956410pt;}
.ws1f0{word-spacing:0.956416pt;}
.ws71{word-spacing:0.993984pt;}
.ws160{word-spacing:1.004237pt;}
.ws126{word-spacing:1.009543pt;}
.ws91{word-spacing:1.036736pt;}
.ws14f{word-spacing:1.052058pt;}
.ws5b{word-spacing:1.062677pt;}
.ws81{word-spacing:1.080000pt;}
.ws172{word-spacing:1.099878pt;}
.ws4a{word-spacing:1.115811pt;}
.wsa1{word-spacing:1.168945pt;}
.ws1cd{word-spacing:1.195520pt;}
.ws3e{word-spacing:1.222079pt;}
.ws184{word-spacing:1.243341pt;}
.ws57{word-spacing:1.275213pt;}
.ws70{word-spacing:1.293248pt;}
.wse5{word-spacing:1.298592pt;}
.ws216{word-spacing:1.338982pt;}
.wsb3{word-spacing:1.381481pt;}
.wsd1{word-spacing:1.386803pt;}
.ws82{word-spacing:1.392000pt;}
.ws83{word-spacing:1.420800pt;}
.ws129{word-spacing:1.434614pt;}
.ws1e7{word-spacing:1.434624pt;}
.ws17d{word-spacing:1.482445pt;}
.ws3f{word-spacing:1.487748pt;}
.ws2b{word-spacing:1.540882pt;}
.ws13f{word-spacing:1.578086pt;}
.ws53{word-spacing:1.594016pt;}
.ws137{word-spacing:1.625907pt;}
.wsdc{word-spacing:1.635264pt;}
.ws21{word-spacing:1.647150pt;}
.wse3{word-spacing:1.672672pt;}
.ws1b6{word-spacing:1.673728pt;}
.wsdd{word-spacing:1.694048pt;}
.ws29{word-spacing:1.700284pt;}
.wse4{word-spacing:1.710080pt;}
.ws188{word-spacing:1.721549pt;}
.ws118{word-spacing:1.753418pt;}
.wsbf{word-spacing:1.806551pt;}
.ws13e{word-spacing:1.817190pt;}
.wsc8{word-spacing:1.859685pt;}
.ws18b{word-spacing:1.865011pt;}
.ws1e8{word-spacing:1.912832pt;}
.ws1d5{word-spacing:1.960653pt;}
.ws38{word-spacing:1.965953pt;}
.ws1e9{word-spacing:2.008474pt;}
.ws122{word-spacing:2.019087pt;}
.ws1dd{word-spacing:2.056294pt;}
.wsaa{word-spacing:2.072221pt;}
.ws59{word-spacing:2.125355pt;}
.wsce{word-spacing:2.151936pt;}
.ws58{word-spacing:2.178489pt;}
.wscf{word-spacing:2.199757pt;}
.ws12d{word-spacing:2.231622pt;}
.ws1b3{word-spacing:2.247578pt;}
.ws66{word-spacing:2.284756pt;}
.ws1ac{word-spacing:2.295398pt;}
.ws39{word-spacing:2.337890pt;}
.ws34{word-spacing:2.391024pt;}
.ws1e5{word-spacing:2.391040pt;}
.wscd{word-spacing:2.438861pt;}
.ws111{word-spacing:2.444158pt;}
.ws187{word-spacing:2.486682pt;}
.wsb4{word-spacing:2.497292pt;}
.ws206{word-spacing:2.534502pt;}
.ws107{word-spacing:2.550426pt;}
.ws5a{word-spacing:2.603559pt;}
.ws51{word-spacing:2.656693pt;}
.ws159{word-spacing:2.677965pt;}
.wsf1{word-spacing:2.709827pt;}
.ws145{word-spacing:2.725786pt;}
.ws10c{word-spacing:2.762961pt;}
.ws201{word-spacing:2.773606pt;}
.ws11b{word-spacing:2.816095pt;}
.ws62{word-spacing:2.869229pt;}
.ws1ef{word-spacing:2.917069pt;}
.ws96{word-spacing:2.923168pt;}
.ws95{word-spacing:2.960576pt;}
.ws1ee{word-spacing:2.964890pt;}
.wsba{word-spacing:2.975497pt;}
.ws164{word-spacing:3.012710pt;}
.ws163{word-spacing:3.060531pt;}
.ws110{word-spacing:3.081764pt;}
.ws1c6{word-spacing:3.108352pt;}
.ws106{word-spacing:3.134898pt;}
.ws174{word-spacing:3.203994pt;}
.wsd6{word-spacing:3.211744pt;}
.ws64{word-spacing:3.241166pt;}
.ws8b{word-spacing:3.249152pt;}
.ws4d{word-spacing:3.294300pt;}
.wsd4{word-spacing:3.297248pt;}
.ws1fc{word-spacing:3.299635pt;}
.wsd5{word-spacing:3.307936pt;}
.ws12c{word-spacing:3.347434pt;}
.ws21a{word-spacing:3.347456pt;}
.ws132{word-spacing:3.400567pt;}
.ws14c{word-spacing:3.443098pt;}
.wsc5{word-spacing:3.453701pt;}
.ws147{word-spacing:3.490918pt;}
.ws10e{word-spacing:3.506835pt;}
.ws18c{word-spacing:3.538739pt;}
.ws65{word-spacing:3.559969pt;}
.ws8c{word-spacing:3.596512pt;}
.wsca{word-spacing:3.666237pt;}
.ws1b9{word-spacing:3.682202pt;}
.ws1ba{word-spacing:3.730022pt;}
.wsef{word-spacing:3.772505pt;}
.ws166{word-spacing:3.777843pt;}
.wsee{word-spacing:3.825638pt;}
.ws165{word-spacing:3.825664pt;}
.ws1f5{word-spacing:3.873485pt;}
.ws120{word-spacing:3.878772pt;}
.ws6c{word-spacing:3.906464pt;}
.ws6b{word-spacing:3.911808pt;}
.ws121{word-spacing:3.931906pt;}
.ws1c2{word-spacing:3.969126pt;}
.wsf5{word-spacing:3.985040pt;}
.wsf4{word-spacing:4.038174pt;}
.ws1b2{word-spacing:4.064768pt;}
.wsc4{word-spacing:4.091308pt;}
.ws1f4{word-spacing:4.112589pt;}
.ws210{word-spacing:4.160410pt;}
.ws47{word-spacing:4.197575pt;}
.ws211{word-spacing:4.208230pt;}
.ws11a{word-spacing:4.250709pt;}
.ws1a4{word-spacing:4.256051pt;}
.wsc2{word-spacing:4.303843pt;}
.ws1c3{word-spacing:4.303872pt;}
.wsc1{word-spacing:4.356977pt;}
.ws1d0{word-spacing:4.399514pt;}
.ws100{word-spacing:4.410111pt;}
.wsf7{word-spacing:4.463245pt;}
.ws8a{word-spacing:4.494304pt;}
.ws1e2{word-spacing:4.495155pt;}
.ws124{word-spacing:4.516379pt;}
.ws8f{word-spacing:4.553088pt;}
.ws90{word-spacing:4.574464pt;}
.ws18d{word-spacing:4.590797pt;}
.wse8{word-spacing:4.622400pt;}
.wsb9{word-spacing:4.622646pt;}
.ws16b{word-spacing:4.638618pt;}
.ws2d{word-spacing:4.675780pt;}
.ws198{word-spacing:4.686438pt;}
.ws10f{word-spacing:4.728914pt;}
.ws138{word-spacing:4.734259pt;}
.ws1e0{word-spacing:4.772548pt;}
.ws13d{word-spacing:4.773845pt;}
.ws192{word-spacing:4.773862pt;}
.ws18f{word-spacing:4.774246pt;}
.ws1a7{word-spacing:4.774502pt;}
.ws157{word-spacing:4.774537pt;}
.ws16f{word-spacing:4.774656pt;}
.ws1dc{word-spacing:4.774733pt;}
.ws1ec{word-spacing:4.775347pt;}
.ws1ad{word-spacing:4.775654pt;}
.ws1af{word-spacing:4.775808pt;}
.ws194{word-spacing:4.776226pt;}
.ws19c{word-spacing:4.776474pt;}
.ws183{word-spacing:4.776533pt;}
.ws1b7{word-spacing:4.777011pt;}
.ws1f3{word-spacing:4.777071pt;}
.ws1cf{word-spacing:4.777830pt;}
.ws1f6{word-spacing:4.777882pt;}
.ws158{word-spacing:4.778726pt;}
.ws142{word-spacing:4.779102pt;}
.ws171{word-spacing:4.779136pt;}
.ws15d{word-spacing:4.779264pt;}
.ws20b{word-spacing:4.779827pt;}
.ws186{word-spacing:4.779870pt;}
.ws20c{word-spacing:4.780066pt;}
.ws16a{word-spacing:4.780083pt;}
.ws15b{word-spacing:4.780527pt;}
.ws1d7{word-spacing:4.780544pt;}
.ws1be{word-spacing:4.780578pt;}
.ws1b8{word-spacing:4.780988pt;}
.ws1c1{word-spacing:4.780996pt;}
.ws1a9{word-spacing:4.781210pt;}
.ws1b4{word-spacing:4.781466pt;}
.ws1bd{word-spacing:4.781474pt;}
.ws1c0{word-spacing:4.781551pt;}
.ws14d{word-spacing:4.781559pt;}
.ws151{word-spacing:4.781807pt;}
.ws4f{word-spacing:4.782048pt;}
.ws150{word-spacing:4.782080pt;}
.ws1c5{word-spacing:4.782208pt;}
.ws18a{word-spacing:4.782959pt;}
.ws16d{word-spacing:4.783130pt;}
.ws1ff{word-spacing:4.783155pt;}
.ws18e{word-spacing:4.783164pt;}
.ws19b{word-spacing:4.783394pt;}
.ws19d{word-spacing:4.784751pt;}
.ws156{word-spacing:4.784896pt;}
.ws167{word-spacing:4.785229pt;}
.ws8d{word-spacing:4.804256pt;}
.ws170{word-spacing:4.829901pt;}
.ws4e{word-spacing:4.835182pt;}
.ws1e3{word-spacing:4.877722pt;}
.wsf6{word-spacing:4.888316pt;}
.ws1fa{word-spacing:4.925542pt;}
.wsfa{word-spacing:4.941450pt;}
.ws1b1{word-spacing:4.973363pt;}
.ws140{word-spacing:5.069005pt;}
.ws10b{word-spacing:5.100851pt;}
.ws1d9{word-spacing:5.116826pt;}
.wsa9{word-spacing:5.153985pt;}
.ws19f{word-spacing:5.164646pt;}
.ws26{word-spacing:5.207119pt;}
.ws177{word-spacing:5.212467pt;}
.wse7{word-spacing:5.251200pt;}
.ws133{word-spacing:5.260253pt;}
.ws1ae{word-spacing:5.260288pt;}
.ws212{word-spacing:5.308109pt;}
.ws2e{word-spacing:5.313387pt;}
.ws203{word-spacing:5.355930pt;}
.wsa8{word-spacing:5.366521pt;}
.ws1db{word-spacing:5.403750pt;}
.ws36{word-spacing:5.419654pt;}
.ws6f{word-spacing:5.450880pt;}
.ws37{word-spacing:5.472788pt;}
.ws152{word-spacing:5.499392pt;}
.ws131{word-spacing:5.525922pt;}
.wsc6{word-spacing:5.579056pt;}
.ws3d{word-spacing:5.632190pt;}
.wsa7{word-spacing:5.685324pt;}
.wsab{word-spacing:5.738458pt;}
.ws1f8{word-spacing:5.738496pt;}
.ws79{word-spacing:5.766176pt;}
.wsc3{word-spacing:5.791591pt;}
.ws7a{word-spacing:5.814272pt;}
.wsde{word-spacing:5.830304pt;}
.ws1b0{word-spacing:5.834138pt;}
.ws54{word-spacing:5.844725pt;}
.ws78{word-spacing:5.851680pt;}
.ws11d{word-spacing:5.950993pt;}
.ws12e{word-spacing:6.057261pt;}
.ws1a5{word-spacing:6.073242pt;}
.ws35{word-spacing:6.110395pt;}
.ws1bf{word-spacing:6.121062pt;}
.ws119{word-spacing:6.163529pt;}
.wsdf{word-spacing:6.172320pt;}
.ws213{word-spacing:6.216704pt;}
.ws104{word-spacing:6.269796pt;}
.ws63{word-spacing:6.429198pt;}
.ws42{word-spacing:6.482332pt;}
.ws15e{word-spacing:6.551450pt;}
.ws17a{word-spacing:6.599270pt;}
.ws178{word-spacing:6.647091pt;}
.ws1fd{word-spacing:6.694912pt;}
.ws1f7{word-spacing:6.742733pt;}
.ws1d6{word-spacing:6.790554pt;}
.ws33{word-spacing:6.854269pt;}
.ws1d8{word-spacing:6.886195pt;}
.ws190{word-spacing:6.934016pt;}
.ws9f{word-spacing:7.013670pt;}
.ws128{word-spacing:7.066804pt;}
.ws98{word-spacing:7.096832pt;}
.ws10d{word-spacing:7.119938pt;}
.wsa5{word-spacing:7.173072pt;}
.ws97{word-spacing:7.353344pt;}
.wsd3{word-spacing:7.406784pt;}
.ws113{word-spacing:7.438741pt;}
.ws17f{word-spacing:7.460045pt;}
.ws114{word-spacing:7.491875pt;}
.ws103{word-spacing:7.651277pt;}
.wsc7{word-spacing:7.810678pt;}
.ws6a{word-spacing:8.086400pt;}
.ws45{word-spacing:8.288883pt;}
.ws1e1{word-spacing:8.320819pt;}
.ws7e{word-spacing:8.438400pt;}
.ws134{word-spacing:9.085891pt;}
.wsea{word-spacing:9.091200pt;}
.ws7d{word-spacing:9.096000pt;}
.wseb{word-spacing:9.129600pt;}
.ws217{word-spacing:9.133773pt;}
.ws144{word-spacing:9.277235pt;}
.ws99{word-spacing:9.287872pt;}
.ws9a{word-spacing:9.352000pt;}
.ws181{word-spacing:9.564160pt;}
.ws1e4{word-spacing:9.946726pt;}
.ws80{word-spacing:10.363200pt;}
.ws7f{word-spacing:10.392000pt;}
.ws2c{word-spacing:11.211246pt;}
.ws86{word-spacing:11.243776pt;}
.ws1de{word-spacing:11.381350pt;}
.wse0{word-spacing:11.559072pt;}
.ws15c{word-spacing:11.572634pt;}
.ws1f1{word-spacing:11.620454pt;}
.ws215{word-spacing:12.003021pt;}
.ws197{word-spacing:12.050842pt;}
.ws1e6{word-spacing:12.337766pt;}
.ws141{word-spacing:12.385587pt;}
.wse9{word-spacing:12.604800pt;}
.wsd8{word-spacing:13.130208pt;}
.ws146{word-spacing:13.389824pt;}
.wsd7{word-spacing:13.541696pt;}
.ws11f{word-spacing:14.080475pt;}
.ws1c7{word-spacing:14.489702pt;}
.ws115{word-spacing:14.983750pt;}
.ws21b{word-spacing:15.159194pt;}
.ws117{word-spacing:15.674491pt;}
.ws214{word-spacing:15.780864pt;}
.ws72{word-spacing:16.090784pt;}
.ws73{word-spacing:16.384704pt;}
.ws189{word-spacing:17.550234pt;}
.ws1da{word-spacing:17.693696pt;}
.ws1c4{word-spacing:18.028442pt;}
.ws199{word-spacing:19.223962pt;}
.ws179{word-spacing:20.802048pt;}
.ws125{word-spacing:24.229043pt;}
.wsa0{word-spacing:27.470209pt;}
.ws4{word-spacing:35.593054pt;}
.wsc{word-spacing:40.919194pt;}
.ws9{word-spacing:40.920260pt;}
.ws7{word-spacing:40.924527pt;}
.wsb{word-spacing:40.925594pt;}
.wsa{word-spacing:40.936000pt;}
.ws6{word-spacing:40.941333pt;}
.ws5{word-spacing:40.943836pt;}
.ws17{word-spacing:41.177333pt;}
.ws11{word-spacing:52.941333pt;}
.wsb6{word-spacing:186.043306pt;}
.ws1c{word-spacing:958.707389pt;}
.wsb5{word-spacing:970.016236pt;}
._31{margin-left:-21.806285pt;}
._2e{margin-left:-18.592974pt;}
._2d{margin-left:-16.652592pt;}
._3{margin-left:-6.854972pt;}
._2{margin-left:-5.894689pt;}
._5{margin-left:-4.571641pt;}
._4{margin-left:-3.541298pt;}
._a{margin-left:-2.049370pt;}
._6{margin-left:-1.134969pt;}
._b{width:0.969929pt;}
._0{width:2.668647pt;}
._16{width:3.985040pt;}
._30{width:5.881958pt;}
._28{width:8.201773pt;}
._2b{width:9.898906pt;}
._7{width:10.931807pt;}
._1f{width:11.974277pt;}
._10{width:12.877553pt;}
._18{width:14.080475pt;}
._1d{width:15.811042pt;}
._9{width:16.737280pt;}
._12{width:17.687125pt;}
._c{width:19.124499pt;}
._f{width:20.509673pt;}
._11{width:21.970831pt;}
._14{width:23.538303pt;}
._d{width:24.460736pt;}
._19{width:25.397988pt;}
._1a{width:26.904894pt;}
._17{width:28.286374pt;}
._1e{width:29.455319pt;}
._e{width:30.464863pt;}
._13{width:31.880320pt;}
._15{width:33.227824pt;}
._2a{width:34.802683pt;}
._22{width:35.865360pt;}
._29{width:37.159730pt;}
._1c{width:38.203250pt;}
._23{width:39.285085pt;}
._27{width:40.381739pt;}
._26{width:42.185300pt;}
._1{width:48.337951pt;}
._2f{width:51.466319pt;}
._2c{width:54.993920pt;}
._21{width:83.999626pt;}
._20{width:189.896397pt;}
._25{width:1814.586777pt;}
._1b{width:1836.032761pt;}
._24{width:1844.896256pt;}
._8{width:1866.149589pt;}
.fs4{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fsd{font-size:45.429760pt;}
.fs5{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fsb{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:131.946667pt;}
.yd0{bottom:-380.763605pt;}
.ycf{bottom:-362.763677pt;}
.yce{bottom:-344.763749pt;}
.ycd{bottom:-326.763821pt;}
.ycc{bottom:-308.844053pt;}
.ycb{bottom:-290.844125pt;}
.yca{bottom:-272.844197pt;}
.yc9{bottom:-254.844269pt;}
.yc8{bottom:-236.844341pt;}
.yc7{bottom:-218.844413pt;}
.yc6{bottom:-200.844485pt;}
.yc5{bottom:-182.924717pt;}
.yc4{bottom:-164.924789pt;}
.yc3{bottom:-146.924861pt;}
.yc2{bottom:-128.924933pt;}
.yc1{bottom:-95.406000pt;}
.y12e{bottom:-90.898133pt;}
.yc0{bottom:-78.045600pt;}
.y12d{bottom:-73.537733pt;}
.ybf{bottom:-60.685200pt;}
.y12c{bottom:-56.177333pt;}
.ybe{bottom:-43.324800pt;}
.y12b{bottom:-38.897333pt;}
.ybd{bottom:-26.044800pt;}
.y12a{bottom:-21.536933pt;}
.y0{bottom:0.000000pt;}
.y129{bottom:2.703067pt;}
.y4a{bottom:3.044747pt;}
.ybc{bottom:3.555067pt;}
.y49{bottom:12.578910pt;}
.y2{bottom:13.754203pt;}
.y36{bottom:56.693333pt;}
.y137{bottom:96.577333pt;}
.y1f1{bottom:96.850667pt;}
.y19f{bottom:98.576000pt;}
.y1bd{bottom:102.773333pt;}
.y68{bottom:103.066667pt;}
.y11a{bottom:106.545333pt;}
.y109{bottom:108.333333pt;}
.y9a{bottom:109.441333pt;}
.yae{bottom:111.620000pt;}
.y17c{bottom:113.692000pt;}
.y1f0{bottom:114.066667pt;}
.y136{bottom:114.590667pt;}
.yeb{bottom:116.241333pt;}
.y35{bottom:116.490667pt;}
.y19e{bottom:116.588000pt;}
.y1bc{bottom:119.989333pt;}
.y67{bottom:121.080000pt;}
.y115{bottom:124.558667pt;}
.y108{bottom:126.345333pt;}
.y99{bottom:127.454667pt;}
.y17b{bottom:129.218667pt;}
.yad{bottom:129.633333pt;}
.y1ef{bottom:131.281333pt;}
.y17a{bottom:131.705333pt;}
.y135{bottom:132.602667pt;}
.yea{bottom:134.253333pt;}
.y19d{bottom:134.601333pt;}
.y34{bottom:136.969333pt;}
.y1bb{bottom:137.204000pt;}
.y1ba{bottom:137.205333pt;}
.y66{bottom:139.092000pt;}
.y114{bottom:142.570667pt;}
.y107{bottom:144.358667pt;}
.y98{bottom:145.466667pt;}
.yac{bottom:147.645333pt;}
.y1ee{bottom:148.497333pt;}
.y179{bottom:149.717333pt;}
.y134{bottom:150.616000pt;}
.ye9{bottom:152.266667pt;}
.y19c{bottom:152.613333pt;}
.y33{bottom:153.109333pt;}
.y65{bottom:157.104000pt;}
.y113{bottom:160.584000pt;}
.y1b9{bottom:162.390667pt;}
.y97{bottom:163.478667pt;}
.yab{bottom:165.657333pt;}
.y1ed{bottom:165.713333pt;}
.y178{bottom:167.730667pt;}
.y32{bottom:169.249333pt;}
.ye8{bottom:170.278667pt;}
.y19b{bottom:170.625333pt;}
.y64{bottom:175.117333pt;}
.y133{bottom:176.597333pt;}
.y112{bottom:178.596000pt;}
.y31{bottom:181.048000pt;}
.y96{bottom:181.492000pt;}
.y1ec{bottom:182.928000pt;}
.yaa{bottom:183.670667pt;}
.y177{bottom:185.742667pt;}
.y106{bottom:185.959600pt;}
.y14d{bottom:186.566667pt;}
.ye7{bottom:188.290667pt;}
.y19a{bottom:188.638667pt;}
.y63{bottom:193.129333pt;}
.y111{bottom:196.608000pt;}
.y1b8{bottom:197.458667pt;}
.y95{bottom:199.504000pt;}
.y105{bottom:200.142467pt;}
.y1eb{bottom:200.144000pt;}
.y30{bottom:201.528000pt;}
.ya9{bottom:201.682667pt;}
.y176{bottom:203.754667pt;}
.y132{bottom:204.708000pt;}
.ye6{bottom:206.304000pt;}
.y199{bottom:206.650667pt;}
.y1b7{bottom:210.968000pt;}
.y62{bottom:211.142667pt;}
.y104{bottom:214.325333pt;}
.y110{bottom:214.621333pt;}
.y1ea{bottom:217.358667pt;}
.y94{bottom:217.517333pt;}
.y2f{bottom:217.668000pt;}
.ya8{bottom:219.696000pt;}
.y175{bottom:221.768000pt;}
.y131{bottom:221.802667pt;}
.ye5{bottom:224.316000pt;}
.y197{bottom:224.664000pt;}
.y103{bottom:228.206733pt;}
.y61{bottom:229.154667pt;}
.y2e{bottom:229.466667pt;}
.y198{bottom:229.485333pt;}
.y1b6{bottom:232.448000pt;}
.y10f{bottom:232.633333pt;}
.y1e9{bottom:234.574667pt;}
.y102{bottom:235.146800pt;}
.y93{bottom:235.529333pt;}
.ya7{bottom:237.708000pt;}
.y130{bottom:238.898667pt;}
.y174{bottom:239.780000pt;}
.ye4{bottom:242.329333pt;}
.y196{bottom:242.676000pt;}
.y60{bottom:247.166667pt;}
.y2d{bottom:249.946667pt;}
.y10e{bottom:250.646667pt;}
.y1e8{bottom:251.790667pt;}
.y92{bottom:253.541333pt;}
.y1b5{bottom:253.926667pt;}
.ya6{bottom:255.720000pt;}
.y12f{bottom:255.994667pt;}
.y119{bottom:258.616000pt;}
.ye3{bottom:260.341333pt;}
.y195{bottom:260.688000pt;}
.y2c{bottom:261.746667pt;}
.y101{bottom:262.352267pt;}
.y5f{bottom:265.180000pt;}
.y173{bottom:265.762667pt;}
.y1b4{bottom:267.436000pt;}
.y10d{bottom:268.658667pt;}
.y1e7{bottom:269.005333pt;}
.y91{bottom:271.554667pt;}
.ya5{bottom:273.733333pt;}
.y11b{bottom:275.932000pt;}
.ye2{bottom:278.353333pt;}
.y194{bottom:278.701333pt;}
.y1b3{bottom:280.945333pt;}
.y2b{bottom:282.225333pt;}
.y5e{bottom:283.192000pt;}
.y1e6{bottom:286.221333pt;}
.y10c{bottom:286.670667pt;}
.y90{bottom:289.566667pt;}
.y100{bottom:289.708000pt;}
.ya4{bottom:291.745333pt;}
.y2a{bottom:294.025333pt;}
.y1b2{bottom:294.456000pt;}
.ye1{bottom:296.366667pt;}
.y172{bottom:296.713333pt;}
.y5d{bottom:301.205333pt;}
.y1e5{bottom:303.437333pt;}
.y10b{bottom:304.684000pt;}
.y8f{bottom:307.580000pt;}
.y1f5{bottom:308.661333pt;}
.ya3{bottom:309.758667pt;}
.ye0{bottom:314.378667pt;}
.y29{bottom:314.505333pt;}
.y171{bottom:314.726667pt;}
.y1b1{bottom:315.934667pt;}
.y1e4{bottom:320.652000pt;}
.yff{bottom:322.696000pt;}
.y13d{bottom:323.105333pt;}
.y8e{bottom:325.592000pt;}
.y1f4{bottom:325.877333pt;}
.y5c{bottom:327.188000pt;}
.ya2{bottom:327.770667pt;}
.y1b0{bottom:329.444000pt;}
.y28{bottom:330.644000pt;}
.y1a0{bottom:330.666667pt;}
.ydf{bottom:332.392000pt;}
.y170{bottom:332.738667pt;}
.y1e3{bottom:337.868000pt;}
.yfe{bottom:340.709333pt;}
.y1af{bottom:342.953333pt;}
.y1f3{bottom:343.093333pt;}
.y8d{bottom:343.604000pt;}
.ya1{bottom:345.782667pt;}
.y27{bottom:346.784000pt;}
.yde{bottom:350.404000pt;}
.y16f{bottom:350.750667pt;}
.y1e2{bottom:355.082667pt;}
.y1ae{bottom:356.462667pt;}
.y26{bottom:358.584000pt;}
.yfd{bottom:358.721333pt;}
.y8c{bottom:361.617333pt;}
.ybb{bottom:363.476107pt;}
.ya0{bottom:363.796000pt;}
.ydd{bottom:368.416000pt;}
.y16e{bottom:368.764000pt;}
.y1ad{bottom:369.972000pt;}
.y1e1{bottom:372.298667pt;}
.yfc{bottom:376.733333pt;}
.y13c{bottom:377.142667pt;}
.y25{bottom:379.062667pt;}
.y8b{bottom:379.629333pt;}
.yba{bottom:381.476035pt;}
.y9f{bottom:381.808000pt;}
.y1ac{bottom:383.481333pt;}
.ydc{bottom:386.429333pt;}
.y16d{bottom:386.776000pt;}
.y1e0{bottom:389.514667pt;}
.y24{bottom:390.862667pt;}
.yfb{bottom:394.746667pt;}
.y5b{bottom:395.112000pt;}
.y13b{bottom:395.156000pt;}
.y1ab{bottom:396.990667pt;}
.y8a{bottom:397.642667pt;}
.yb9{bottom:399.395803pt;}
.y9e{bottom:399.821333pt;}
.y10a{bottom:402.716000pt;}
.ydb{bottom:404.441333pt;}
.y16c{bottom:404.789333pt;}
.y1df{bottom:406.729333pt;}
.y23{bottom:411.342667pt;}
.yfa{bottom:412.758667pt;}
.y5a{bottom:413.125333pt;}
.y13a{bottom:413.168000pt;}
.y89{bottom:415.654667pt;}
.yb8{bottom:417.395731pt;}
.y9d{bottom:417.833333pt;}
.yda{bottom:422.454667pt;}
.y16b{bottom:422.801333pt;}
.y22{bottom:423.141333pt;}
.y1de{bottom:423.945333pt;}
.yf9{bottom:430.772000pt;}
.y59{bottom:431.137333pt;}
.y88{bottom:433.666667pt;}
.yb7{bottom:435.395659pt;}
.y1aa{bottom:437.068000pt;}
.y14e{bottom:438.741333pt;}
.y21{bottom:439.281333pt;}
.yd9{bottom:440.466667pt;}
.y16a{bottom:440.813333pt;}
.y1dd{bottom:441.160000pt;}
.y20{bottom:443.621333pt;}
.y9c{bottom:443.816000pt;}
.yf8{bottom:448.784000pt;}
.y87{bottom:451.680000pt;}
.yb6{bottom:453.395587pt;}
.y1a9{bottom:455.080000pt;}
.y1dc{bottom:458.376000pt;}
.yd8{bottom:458.478667pt;}
.y169{bottom:458.826667pt;}
.y1f{bottom:459.761333pt;}
.y58{bottom:465.090667pt;}
.yf7{bottom:466.796000pt;}
.y86{bottom:469.692000pt;}
.yb5{bottom:471.395515pt;}
.y1e{bottom:471.560000pt;}
.y1a8{bottom:474.421333pt;}
.y9b{bottom:474.766667pt;}
.y1db{bottom:475.592000pt;}
.yd7{bottom:476.492000pt;}
.y168{bottom:476.838667pt;}
.y57{bottom:483.102667pt;}
.yf6{bottom:484.809333pt;}
.y1d{bottom:487.700000pt;}
.y85{bottom:487.704000pt;}
.yb4{bottom:489.395443pt;}
.y1a7{bottom:492.433333pt;}
.y1da{bottom:492.806667pt;}
.yd6{bottom:494.504000pt;}
.y167{bottom:494.852000pt;}
.y193{bottom:497.746667pt;}
.y56{bottom:501.116000pt;}
.yf5{bottom:502.821333pt;}
.y84{bottom:505.717333pt;}
.yb3{bottom:507.395371pt;}
.y1c{bottom:508.180000pt;}
.y1d9{bottom:510.022667pt;}
.y17d{bottom:510.792000pt;}
.y1a6{bottom:511.774667pt;}
.y166{bottom:512.864000pt;}
.y192{bottom:515.760000pt;}
.y55{bottom:519.128000pt;}
.y1b{bottom:519.978667pt;}
.yf4{bottom:520.834667pt;}
.y83{bottom:523.729333pt;}
.yb2{bottom:525.315139pt;}
.yd5{bottom:525.616000pt;}
.y1d8{bottom:527.237333pt;}
.y1a5{bottom:529.786667pt;}
.y165{bottom:530.876000pt;}
.y191{bottom:533.772000pt;}
.y1a{bottom:536.118667pt;}
.y54{bottom:537.140000pt;}
.yf3{bottom:538.846667pt;}
.y82{bottom:541.742667pt;}
.yd4{bottom:542.712000pt;}
.yb1{bottom:543.315067pt;}
.y1d7{bottom:544.453333pt;}
.y164{bottom:548.889333pt;}
.y1a4{bottom:549.128000pt;}
.y190{bottom:551.785333pt;}
.y53{bottom:555.153333pt;}
.y19{bottom:556.598667pt;}
.yf2{bottom:556.858667pt;}
.y81{bottom:559.754667pt;}
.yd3{bottom:559.808000pt;}
.y1d6{bottom:561.669333pt;}
.y163{bottom:566.901333pt;}
.y1a3{bottom:567.140000pt;}
.y18{bottom:568.397333pt;}
.y18f{bottom:569.797333pt;}
.y52{bottom:573.165333pt;}
.yf1{bottom:574.872000pt;}
.yb0{bottom:576.515067pt;}
.yd2{bottom:576.904000pt;}
.y80{bottom:577.766667pt;}
.y1d5{bottom:578.884000pt;}
.y162{bottom:584.914667pt;}
.y1a2{bottom:585.153333pt;}
.y128{bottom:585.264275pt;}
.y18e{bottom:587.809333pt;}
.y17{bottom:588.877333pt;}
.y51{bottom:591.178667pt;}
.yf0{bottom:592.884000pt;}
.yd1{bottom:593.998667pt;}
.y7f{bottom:595.780000pt;}
.y1d4{bottom:596.100000pt;}
.y161{bottom:602.926667pt;}
.y1a1{bottom:603.165333pt;}
.y127{bottom:603.264203pt;}
.y16{bottom:605.017333pt;}
.y18d{bottom:605.822667pt;}
.y50{bottom:609.190667pt;}
.yef{bottom:610.896000pt;}
.y139{bottom:611.305333pt;}
.y1d3{bottom:613.314667pt;}
.y7e{bottom:613.792000pt;}
.yaf{bottom:613.936000pt;}
.y15{bottom:616.816000pt;}
.y160{bottom:620.938667pt;}
.y126{bottom:621.264131pt;}
.y18c{bottom:623.834667pt;}
.y4f{bottom:627.202667pt;}
.yee{bottom:628.909333pt;}
.y1d2{bottom:630.530667pt;}
.y7d{bottom:631.805333pt;}
.y14{bottom:632.956000pt;}
.y118{bottom:636.626667pt;}
.y15f{bottom:638.952000pt;}
.y125{bottom:639.183899pt;}
.y18b{bottom:641.846667pt;}
.y4e{bottom:645.216000pt;}
.yed{bottom:646.921333pt;}
.y1d1{bottom:647.746667pt;}
.y13{bottom:649.096000pt;}
.y7c{bottom:649.817333pt;}
.y15e{bottom:656.964000pt;}
.y124{bottom:657.183827pt;}
.y18a{bottom:659.860000pt;}
.y4d{bottom:663.228000pt;}
.y14c{bottom:664.934667pt;}
.y1d0{bottom:664.961333pt;}
.y12{bottom:665.234667pt;}
.y117{bottom:665.344000pt;}
.y7b{bottom:667.829333pt;}
.y116{bottom:672.652000pt;}
.yec{bottom:672.904000pt;}
.y15d{bottom:674.977333pt;}
.y123{bottom:675.183755pt;}
.y189{bottom:677.872000pt;}
.y1f2{bottom:679.788000pt;}
.y4c{bottom:681.241333pt;}
.y1cf{bottom:682.177333pt;}
.y14b{bottom:682.946667pt;}
.y11{bottom:685.714667pt;}
.y7a{bottom:685.842667pt;}
.y15c{bottom:692.989333pt;}
.y188{bottom:695.885333pt;}
.y4b{bottom:699.253333pt;}
.y1ce{bottom:699.392000pt;}
.y14a{bottom:700.958667pt;}
.y122{bottom:701.183651pt;}
.y79{bottom:703.854667pt;}
.y10{bottom:705.484000pt;}
.y15b{bottom:711.001333pt;}
.y187{bottom:713.897333pt;}
.y1cd{bottom:716.608000pt;}
.y149{bottom:718.972000pt;}
.y78{bottom:721.868000pt;}
.yf{bottom:723.497333pt;}
.y15a{bottom:729.014667pt;}
.y48{bottom:730.749301pt;}
.y47{bottom:731.430667pt;}
.y186{bottom:731.909333pt;}
.y1cc{bottom:733.824000pt;}
.y121{bottom:735.183515pt;}
.y148{bottom:736.984000pt;}
.y77{bottom:739.880000pt;}
.ye{bottom:741.509333pt;}
.y159{bottom:747.026667pt;}
.y185{bottom:749.922667pt;}
.y1cb{bottom:751.038667pt;}
.y120{bottom:753.183443pt;}
.y147{bottom:754.997333pt;}
.y76{bottom:757.892000pt;}
.yd{bottom:759.522667pt;}
.y158{bottom:765.038667pt;}
.y46{bottom:766.101333pt;}
.y184{bottom:767.934667pt;}
.y1ca{bottom:768.254667pt;}
.y11f{bottom:771.183371pt;}
.y146{bottom:773.009333pt;}
.y75{bottom:775.905333pt;}
.yc{bottom:777.534667pt;}
.y157{bottom:783.052000pt;}
.y1c9{bottom:785.469333pt;}
.y183{bottom:785.948000pt;}
.y45{bottom:786.581333pt;}
.y11e{bottom:789.103139pt;}
.y145{bottom:791.021333pt;}
.y74{bottom:793.917333pt;}
.yb{bottom:795.546667pt;}
.y156{bottom:801.064000pt;}
.y1c8{bottom:802.685333pt;}
.y44{bottom:802.720000pt;}
.y182{bottom:803.960000pt;}
.y11d{bottom:807.103067pt;}
.y144{bottom:809.034667pt;}
.y73{bottom:811.930667pt;}
.ya{bottom:813.560000pt;}
.y43{bottom:818.860000pt;}
.y155{bottom:819.077333pt;}
.y1c7{bottom:819.901333pt;}
.y181{bottom:821.972000pt;}
.y142{bottom:827.046667pt;}
.y72{bottom:829.942667pt;}
.y42{bottom:830.660000pt;}
.y9{bottom:831.572000pt;}
.y143{bottom:831.869333pt;}
.y154{bottom:837.089333pt;}
.y1c6{bottom:837.116000pt;}
.y180{bottom:839.985333pt;}
.y11c{bottom:840.303067pt;}
.y140{bottom:845.060000pt;}
.y138{bottom:845.469333pt;}
.y71{bottom:847.954667pt;}
.y8{bottom:849.585333pt;}
.y141{bottom:849.881333pt;}
.y41{bottom:851.138667pt;}
.y1c5{bottom:854.332000pt;}
.y17f{bottom:857.997333pt;}
.y13f{bottom:863.072000pt;}
.y70{bottom:865.968000pt;}
.y40{bottom:867.278667pt;}
.y7{bottom:867.597333pt;}
.y1c4{bottom:871.546667pt;}
.y17e{bottom:876.010667pt;}
.y3f{bottom:879.078667pt;}
.y6f{bottom:883.980000pt;}
.y6{bottom:885.609333pt;}
.y1c3{bottom:888.762667pt;}
.y13e{bottom:889.054667pt;}
.y153{bottom:894.022667pt;}
.y3e{bottom:899.557333pt;}
.y6e{bottom:901.993333pt;}
.y1c2{bottom:905.978667pt;}
.y3d{bottom:911.357333pt;}
.y152{bottom:912.034667pt;}
.y6d{bottom:920.005333pt;}
.y1c1{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y151{bottom:930.048000pt;}
.y3c{bottom:931.837333pt;}
.y6c{bottom:938.017333pt;}
.y1c0{bottom:940.409333pt;}
.y3b{bottom:943.637333pt;}
.y150{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y6b{bottom:956.030667pt;}
.y1bf{bottom:957.624000pt;}
.y3a{bottom:964.116000pt;}
.y14f{bottom:966.073333pt;}
.y6a{bottom:974.042667pt;}
.y1be{bottom:974.840000pt;}
.y39{bottom:975.916000pt;}
.y3{bottom:977.906667pt;}
.y69{bottom:992.056000pt;}
.y38{bottom:996.394667pt;}
.y1{bottom:1011.514667pt;}
.y37{bottom:1038.548000pt;}
.hb{height:22.673858pt;}
.h21{height:24.760382pt;}
.h8{height:27.188522pt;}
.h20{height:28.469216pt;}
.hd{height:29.433775pt;}
.h1a{height:29.519145pt;}
.hc{height:30.399505pt;}
.h11{height:31.067969pt;}
.ha{height:31.157778pt;}
.h19{height:31.709972pt;}
.h16{height:32.709427pt;}
.h18{height:33.209155pt;}
.h24{height:33.378918pt;}
.h26{height:33.713664pt;}
.h23{height:34.144051pt;}
.h15{height:34.430976pt;}
.h9{height:34.957005pt;}
.h14{height:35.039062pt;}
.h22{height:35.052646pt;}
.h1e{height:37.087439pt;}
.h1d{height:37.937581pt;}
.he{height:38.256384pt;}
.h1c{height:38.775312pt;}
.hf{height:38.840857pt;}
.h4{height:38.947124pt;}
.h12{height:39.010156pt;}
.h25{height:44.548522pt;}
.h2{height:45.356667pt;}
.h13{height:46.718750pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h1f{height:48.804478pt;}
.h17{height:60.969421pt;}
.h5{height:68.861952pt;}
.h3{height:82.466667pt;}
.h10{height:340.056000pt;}
.h1b{height:569.016000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:126.229253pt;}
.w4{width:538.214133pt;}
.w5{width:548.070133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x59{left:-25.876533pt;}
.xc6{left:-19.403200pt;}
.x0{left:0.000000pt;}
.x5a{left:2.443373pt;}
.xc7{left:8.916706pt;}
.x7{left:26.021437pt;}
.x2{left:50.668675pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.xa6{left:121.303667pt;}
.xc5{left:122.816533pt;}
.xcf{left:125.073333pt;}
.x58{left:127.744533pt;}
.x12e{left:128.941333pt;}
.x4{left:129.929333pt;}
.xb8{left:131.296000pt;}
.xd0{left:138.357333pt;}
.x6b{left:141.018667pt;}
.xa3{left:143.035867pt;}
.xa2{left:147.778267pt;}
.xa0{left:149.447733pt;}
.xb9{left:151.221333pt;}
.x9f{left:153.143867pt;}
.x6c{left:154.302667pt;}
.x12b{left:156.073333pt;}
.xb1{left:157.680000pt;}
.xbc{left:158.849333pt;}
.x78{left:161.018667pt;}
.xd3{left:162.413333pt;}
.xed{left:164.690667pt;}
.xaf{left:166.248000pt;}
.x8{left:167.954667pt;}
.x67{left:171.045333pt;}
.x2e{left:172.901333pt;}
.x79{left:174.301333pt;}
.x93{left:177.077333pt;}
.x2f{left:179.542667pt;}
.x5c{left:180.864000pt;}
.x121{left:181.794667pt;}
.x68{left:184.329333pt;}
.x9{left:185.424000pt;}
.xff{left:186.554667pt;}
.x69{left:187.593333pt;}
.x94{left:190.361333pt;}
.x36{left:192.634667pt;}
.x6f{left:194.765333pt;}
.xec{left:196.509333pt;}
.x6a{left:200.877333pt;}
.xf2{left:202.049333pt;}
.x45{left:203.460000pt;}
.xef{left:204.741333pt;}
.x37{left:205.917333pt;}
.x26{left:208.532000pt;}
.xfb{left:209.481333pt;}
.xfc{left:212.745333pt;}
.x99{left:213.976000pt;}
.x46{left:216.744000pt;}
.x122{left:218.966667pt;}
.x47{left:219.998667pt;}
.xf3{left:221.974667pt;}
.x139{left:223.704000pt;}
.xf0{left:224.665333pt;}
.x123{left:225.609333pt;}
.xb5{left:227.684000pt;}
.x48{left:233.281333pt;}
.xe5{left:236.541333pt;}
.x30{left:237.724000pt;}
.xa9{left:239.089333pt;}
.xa1{left:240.263933pt;}
.xb7{left:241.557333pt;}
.xab{left:244.358667pt;}
.xee{left:246.060000pt;}
.xbf{left:247.864000pt;}
.x31{left:251.008000pt;}
.x10a{left:254.450667pt;}
.xe6{left:256.466667pt;}
.xd6{left:259.444000pt;}
.xc0{left:261.146667pt;}
.x27{left:262.189333pt;}
.xb3{left:264.516000pt;}
.x56{left:267.449333pt;}
.xb4{left:271.158667pt;}
.x10b{left:274.376000pt;}
.x28{left:275.472000pt;}
.x12a{left:276.565333pt;}
.x57{left:280.733333pt;}
.xd7{left:282.624000pt;}
.xf1{left:283.961333pt;}
.x91{left:287.604000pt;}
.xe7{left:289.736000pt;}
.x12d{left:290.956000pt;}
.xcb{left:293.285333pt;}
.x10{left:297.316000pt;}
.xbd{left:299.533333pt;}
.x92{left:300.888000pt;}
.xe8{left:303.018667pt;}
.x11{left:303.957333pt;}
.xe1{left:305.970667pt;}
.xe0{left:307.012000pt;}
.x40{left:308.668000pt;}
.x2a{left:309.786667pt;}
.xcc{left:313.210667pt;}
.xbe{left:315.321333pt;}
.x5d{left:316.413333pt;}
.x70{left:318.617333pt;}
.x5e{left:319.800000pt;}
.x41{left:321.952000pt;}
.x2b{left:323.070667pt;}
.xc2{left:324.676000pt;}
.xda{left:326.209333pt;}
.xe9{left:327.385333pt;}
.xd1{left:328.688000pt;}
.x71{left:331.901333pt;}
.x5f{left:333.084000pt;}
.x72{left:335.274667pt;}
.x115{left:336.565333pt;}
.xd2{left:337.949333pt;}
.x116{left:339.856000pt;}
.x119{left:341.072000pt;}
.x9a{left:345.749333pt;}
.x49{left:347.649333pt;}
.x73{left:348.558667pt;}
.x12{left:352.506667pt;}
.xb6{left:354.165333pt;}
.xfa{left:355.092000pt;}
.xe4{left:357.125333pt;}
.x13{left:359.148000pt;}
.x4a{left:360.932000pt;}
.xf7{left:363.478667pt;}
.x32{left:364.965333pt;}
.xdf{left:368.760000pt;}
.x124{left:371.729333pt;}
.x4e{left:373.073333pt;}
.x7e{left:374.929333pt;}
.x4b{left:377.500000pt;}
.x22{left:378.822667pt;}
.x4f{left:379.714667pt;}
.xf5{left:381.601333pt;}
.x50{left:383.016000pt;}
.x18{left:384.484000pt;}
.x11a{left:385.550667pt;}
.xf8{left:386.792000pt;}
.x7f{left:388.213333pt;}
.x11b{left:389.165333pt;}
.x19{left:391.125333pt;}
.x23{left:392.105333pt;}
.x110{left:393.646667pt;}
.x109{left:394.624000pt;}
.x51{left:396.298667pt;}
.xaa{left:397.662667pt;}
.xea{left:400.073333pt;}
.x10c{left:401.409333pt;}
.x42{left:403.129333pt;}
.x60{left:404.102667pt;}
.xf9{left:406.717333pt;}
.x11c{left:409.090667pt;}
.xb0{left:412.208000pt;}
.x104{left:413.774667pt;}
.x100{left:414.813333pt;}
.x24{left:415.768000pt;}
.x61{left:417.386667pt;}
.x7c{left:419.800000pt;}
.x62{left:420.773333pt;}
.x117{left:424.209333pt;}
.x105{left:427.058667pt;}
.x25{left:429.052000pt;}
.x103{left:430.488000pt;}
.x7d{left:433.082667pt;}
.x63{left:434.057333pt;}
.x120{left:436.160000pt;}
.x118{left:437.492000pt;}
.x39{left:439.468000pt;}
.x6d{left:441.268000pt;}
.x106{left:443.605333pt;}
.x107{left:446.870667pt;}
.x7a{left:448.554667pt;}
.xad{left:450.000000pt;}
.x3a{left:452.752000pt;}
.x6e{left:454.552000pt;}
.xae{left:456.642667pt;}
.x10d{left:458.073333pt;}
.xeb{left:459.380000pt;}
.x9d{left:460.478667pt;}
.x7b{left:461.837333pt;}
.xd5{left:464.162667pt;}
.x108{left:466.796000pt;}
.x125{left:468.221333pt;}
.x2c{left:469.233333pt;}
.x126{left:471.609333pt;}
.x9e{left:473.762667pt;}
.x10e{left:477.998667pt;}
.x111{left:480.026667pt;}
.x2d{left:482.517333pt;}
.x10f{left:485.873333pt;}
.x80{left:487.416000pt;}
.x14{left:488.901333pt;}
.xf4{left:490.145333pt;}
.x127{left:491.534667pt;}
.x15{left:495.542667pt;}
.x112{left:497.441333pt;}
.x128{left:499.345333pt;}
.x81{left:500.700000pt;}
.x95{left:502.277333pt;}
.x82{left:504.086667pt;}
.xfd{left:508.712000pt;}
.xa7{left:510.062667pt;}
.xdc{left:512.312000pt;}
.x96{left:515.561333pt;}
.x83{left:517.370667pt;}
.x135{left:518.260000pt;}
.x113{left:519.350667pt;}
.x84{left:520.757333pt;}
.x97{left:522.249333pt;}
.xa8{left:523.346667pt;}
.xbb{left:526.702667pt;}
.x9c{left:527.629333pt;}
.xfe{left:528.637333pt;}
.x1c{left:530.281333pt;}
.xe3{left:533.037333pt;}
.x85{left:534.041333pt;}
.x5b{left:535.003467pt;}
.x1d{left:536.924000pt;}
.x4c{left:538.558667pt;}
.x1e{left:540.270667pt;}
.xc8{left:541.716800pt;}
.x11d{left:542.841333pt;}
.x74{left:545.104000pt;}
.xf6{left:547.138667pt;}
.x9b{left:548.410667pt;}
.x133{left:550.402667pt;}
.x4d{left:551.842667pt;}
.x1f{left:553.554667pt;}
.x101{left:555.466667pt;}
.xe2{left:556.728000pt;}
.x75{left:558.388000pt;}
.xd4{left:561.258667pt;}
.x76{left:564.970667pt;}
.x132{left:566.412000pt;}
.xdd{left:568.136000pt;}
.x3b{left:570.008000pt;}
.x129{left:571.490667pt;}
.x16{left:573.100000pt;}
.xca{left:574.292000pt;}
.x102{left:575.392000pt;}
.x8b{left:576.902667pt;}
.x77{left:578.253333pt;}
.x17{left:579.741333pt;}
.xcd{left:581.128000pt;}
.x3c{left:583.290667pt;}
.x138{left:584.828000pt;}
.x34{left:585.981333pt;}
.xde{left:588.061333pt;}
.xc9{left:590.376000pt;}
.x29{left:591.842667pt;}
.xd8{left:593.845333pt;}
.xc{left:596.258667pt;}
.x38{left:597.192000pt;}
.x35{left:599.265333pt;}
.xce{left:601.053333pt;}
.xd{left:602.900000pt;}
.x90{left:604.786667pt;}
.xa4{left:605.715000pt;}
.xba{left:606.980000pt;}
.x11e{left:608.110667pt;}
.x33{left:610.008000pt;}
.x131{left:611.216000pt;}
.x53{left:612.385333pt;}
.xd9{left:613.770667pt;}
.x136{left:615.638667pt;}
.x114{left:616.646667pt;}
.x54{left:619.028000pt;}
.x86{left:620.402667pt;}
.x55{left:622.282667pt;}
.x6{left:623.413317pt;}
.x8c{left:624.805333pt;}
.x87{left:627.045333pt;}
.x137{left:629.362667pt;}
.x88{left:630.305333pt;}
.x11f{left:631.422667pt;}
.x12f{left:632.470667pt;}
.x98{left:633.632000pt;}
.x20{left:635.492000pt;}
.xc3{left:637.149333pt;}
.x8d{left:638.089333pt;}
.xac{left:639.656000pt;}
.x8e{left:641.344000pt;}
.x43{left:642.592000pt;}
.x89{left:643.589333pt;}
.x134{left:645.392000pt;}
.x8a{left:646.850667pt;}
.x21{left:648.776000pt;}
.xc4{left:650.433333pt;}
.x64{left:652.838667pt;}
.x8f{left:654.626667pt;}
.x44{left:655.874667pt;}
.x3d{left:657.296000pt;}
.xa5{left:658.836467pt;}
.x1a{left:660.614667pt;}
.x52{left:662.586667pt;}
.xb2{left:663.829333pt;}
.x65{left:666.121333pt;}
.x1b{left:667.256000pt;}
.xe{left:669.706667pt;}
.x130{left:671.212000pt;}
.x66{left:672.849333pt;}
.x3e{left:673.920000pt;}
.xf{left:676.349333pt;}
.xa{left:679.437333pt;}
.xc1{left:680.873333pt;}
.xdb{left:684.276000pt;}
.xb{left:686.078667pt;}
.x3f{left:687.204000pt;}
.x12c{left:690.218667pt;}
}


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