
/* 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_be30778127b2.woff")format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_37c44604c794.woff")format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_6adaf3c3491b.woff")format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_75bc2e97fc34.woff")format("woff");}.ff4{font-family:ff4;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_ea0c6341db14.woff")format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_b7e41c793913.woff")format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_ce238bd6c049.woff")format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_e236722b26a3.woff")format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_33518548c863.woff")format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_3245cfc0cfe4.woff")format("woff");}.ffa{font-family:ffa;line-height:1.049805;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_2564720adf06.woff")format("woff");}.ffb{font-family:ffb;line-height:0.674316;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_33518548c863.woff")format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_586742a83163.woff")format("woff");}.ffd{font-family:ffd;line-height:1.049805;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_76a46c31553c.woff")format("woff");}.ffe{font-family:ffe;line-height:0.674316;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_33518548c863.woff")format("woff");}.fff{font-family:fff;line-height:0.666504;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_626fabaa38f1.woff")format("woff");}.ff10{font-family:ff10;line-height:1.049805;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_33518548c863.woff")format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_b8b5d651409e.woff")format("woff");}.ff12{font-family:ff12;line-height:1.049805;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_f4dad22f43f1.woff")format("woff");}.ff13{font-family:ff13;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_390da17094cc.woff")format("woff");}.ff14{font-family:ff14;line-height:1.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_33518548c863.woff")format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_33518548c863.woff")format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_834c76f1ed3d.woff")format("woff");}.ff17{font-family:ff17;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_88c229e5aa36.woff")format("woff");}.ff18{font-family:ff18;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_33518548c863.woff")format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_9028fb40b9e0.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_33518548c863.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_33518548c863.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_b6d478222dfa.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_33518548c863.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_626fabaa38f1.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_33518548c863.woff")format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_71d96e247031.woff")format("woff");}.ff21{font-family:ff21;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_af31d56eedef.woff")format("woff");}.ff22{font-family:ff22;line-height:1.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_94339d46906d.woff")format("woff");}.ff23{font-family:ff23;line-height:0.908691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_33518548c863.woff")format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_71d96e247031.woff")format("woff");}.ff25{font-family:ff25;line-height:1.049805;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:ff26;src:url("fonts/font_0037_787efab4f069.woff")format("woff");}.ff26{font-family:ff26;line-height:1.975586;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:ff27;src:url("fonts/font_0038_94339d46906d.woff")format("woff");}.ff27{font-family:ff27;line-height:0.908691;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:ff28;src:url("fonts/font_0039_33518548c863.woff")format("woff");}.ff28{font-family:ff28;line-height:0.666504;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:ff29;src:url("fonts/font_0040_ee4e96a395fe.woff")format("woff");}.ff29{font-family:ff29;line-height:1.049805;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:ff2a;src:url("fonts/font_0041_2564720adf06.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.674316;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:ff2b;src:url("fonts/font_0042_0d707150d7be.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.893555;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:ff2c;src:url("fonts/font_0043_62d2652f2cfb.woff")format("woff");}.ff2c{font-family:ff2c;line-height:1.975586;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:ff2d;src:url("fonts/font_0044_5e817de084f9.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.908691;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:ff2e;src:url("fonts/font_0045_33518548c863.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.666504;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:ff2f;src:url("fonts/font_0046_a18dd21566b6.woff")format("woff");}.ff2f{font-family:ff2f;line-height:1.049805;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:ff30;src:url("fonts/font_0047_cb6b85befa73.woff")format("woff");}.ff30{font-family:ff30;line-height:1.975586;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:ff31;src:url("fonts/font_0048_69f0d1559662.woff")format("woff");}.ff31{font-family:ff31;line-height:0.666504;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:ff32;src:url("fonts/font_0049_a9751b756a01.woff")format("woff");}.ff32{font-family:ff32;line-height:0.893555;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:ff33;src:url("fonts/font_0050_33518548c863.woff")format("woff");}.ff33{font-family:ff33;line-height:0.666504;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:ff34;src:url("fonts/font_0051_7ef5b9c1809a.woff")format("woff");}.ff34{font-family:ff34;line-height:1.049805;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:ff35;src:url("fonts/font_0052_8a983ae56ce3.woff")format("woff");}.ff35{font-family:ff35;line-height:1.975586;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:ff36;src:url("fonts/font_0053_229e6d6a98a9.woff")format("woff");}.ff36{font-family:ff36;line-height:0.908691;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:ff37;src:url("fonts/font_0054_33518548c863.woff")format("woff");}.ff37{font-family:ff37;line-height:0.666504;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:ff38;src:url("fonts/font_0055_167a152e6bcd.woff")format("woff");}.ff38{font-family:ff38;line-height:1.049805;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:ff39;src:url("fonts/font_0056_2564720adf06.woff")format("woff");}.ff39{font-family:ff39;line-height:0.674316;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:ff3a;src:url("fonts/font_0057_d86113c78ead.woff")format("woff");}.ff3a{font-family:ff3a;line-height:0.910156;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;}
.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);}
.v4{vertical-align:-25.978680px;}
.v8{vertical-align:-21.040504px;}
.v1{vertical-align:-14.844960px;}
.v6{vertical-align:-11.875968px;}
.v15{vertical-align:-2.661404px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:1.601474px;}
.vf{vertical-align:2.661404px;}
.v2{vertical-align:14.844960px;}
.v7{vertical-align:20.782944px;}
.vc{vertical-align:22.267440px;}
.v3{vertical-align:25.978680px;}
.v9{vertical-align:32.652974px;}
.vb{vertical-align:37.409299px;}
.v13{vertical-align:39.181787px;}
.v5{vertical-align:40.816218px;}
.va{vertical-align:43.663035px;}
.v12{vertical-align:49.014198px;}
.v10{vertical-align:55.850302px;}
.v11{vertical-align:57.451034px;}
.v14{vertical-align:61.520929px;}
.ve{vertical-align:65.911622px;}
.v16{vertical-align:68.585497px;}
.vd{vertical-align:81.944179px;}
.ls2{letter-spacing:-6.828682px;}
.ls6d{letter-spacing:-4.987907px;}
.ls6c{letter-spacing:-4.394108px;}
.ls2a{letter-spacing:-4.082364px;}
.ls69{letter-spacing:-1.336046px;}
.ls6a{letter-spacing:-1.261822px;}
.ls6b{letter-spacing:-1.187597px;}
.lsc{letter-spacing:-0.742248px;}
.ls1e{letter-spacing:-0.593798px;}
.ls19{letter-spacing:-0.482461px;}
.ls52{letter-spacing:-0.221784px;}
.ls53{letter-spacing:-0.073928px;}
.ls4d{letter-spacing:-0.051660px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.002969px;}
.ls9{letter-spacing:0.003711px;}
.ls1b{letter-spacing:0.005938px;}
.lsa{letter-spacing:0.006680px;}
.ls25{letter-spacing:0.008165px;}
.ls1c{letter-spacing:0.013360px;}
.ls27{letter-spacing:0.015587px;}
.ls14{letter-spacing:0.017814px;}
.ls8{letter-spacing:0.020041px;}
.ls6{letter-spacing:0.022267px;}
.ls65{letter-spacing:0.023752px;}
.lsb{letter-spacing:0.024494px;}
.ls67{letter-spacing:0.032659px;}
.ls13{letter-spacing:0.040081px;}
.ls17{letter-spacing:0.048246px;}
.ls64{letter-spacing:0.050473px;}
.ls7{letter-spacing:0.065318px;}
.ls10{letter-spacing:0.080163px;}
.lsd{letter-spacing:0.135089px;}
.ls66{letter-spacing:0.146965px;}
.ls50{letter-spacing:0.147856px;}
.ls51{letter-spacing:0.206642px;}
.ls22{letter-spacing:0.207829px;}
.ls20{letter-spacing:0.213767px;}
.ls21{letter-spacing:0.219705px;}
.ls46{letter-spacing:0.221784px;}
.ls44{letter-spacing:0.293040px;}
.ls3d{letter-spacing:0.295712px;}
.ls38{letter-spacing:0.296602px;}
.ls4e{letter-spacing:0.309963px;}
.ls2f{letter-spacing:0.318870px;}
.ls3e{letter-spacing:0.319760px;}
.ls2d{letter-spacing:0.325995px;}
.ls29{letter-spacing:0.371124px;}
.ls56{letter-spacing:0.393837px;}
.ls35{letter-spacing:0.393985px;}
.ls42{letter-spacing:0.403783px;}
.ls24{letter-spacing:0.415659px;}
.ls4f{letter-spacing:0.443567px;}
.ls5{letter-spacing:0.608643px;}
.ls5e{letter-spacing:0.619926px;}
.ls49{letter-spacing:0.665351px;}
.ls63{letter-spacing:0.764515px;}
.ls1a{letter-spacing:1.484496px;}
.ls15{letter-spacing:1.496372px;}
.ls16{letter-spacing:1.520124px;}
.ls4b{letter-spacing:1.626414px;}
.ls1f{letter-spacing:1.692325px;}
.ls5d{letter-spacing:1.704795px;}
.ls5c{letter-spacing:2.479702px;}
.ls28{letter-spacing:2.493953px;}
.ls1d{letter-spacing:2.746318px;}
.lse{letter-spacing:2.954889px;}
.ls12{letter-spacing:2.985321px;}
.ls11{letter-spacing:2.986064px;}
.lsf{letter-spacing:3.006104px;}
.ls45{letter-spacing:3.488566px;}
.ls36{letter-spacing:4.273567px;}
.ls5b{letter-spacing:4.275645px;}
.ls2e{letter-spacing:4.373325px;}
.ls43{letter-spacing:5.164265px;}
.ls3c{letter-spacing:5.264023px;}
.ls4{letter-spacing:5.385751px;}
.ls23{letter-spacing:5.507480px;}
.ls3a{letter-spacing:6.054962px;}
.ls55{letter-spacing:9.980267px;}
.ls3b{letter-spacing:12.050248px;}
.ls5f{letter-spacing:12.789527px;}
.ls37{letter-spacing:12.937383px;}
.ls33{letter-spacing:14.637724px;}
.ls2b{letter-spacing:15.460729px;}
.ls40{letter-spacing:16.042354px;}
.ls59{letter-spacing:16.357661px;}
.ls39{letter-spacing:16.707706px;}
.ls32{letter-spacing:16.929489px;}
.ls34{letter-spacing:17.151273px;}
.ls41{letter-spacing:18.038408px;}
.ls3f{letter-spacing:18.481975px;}
.ls47{letter-spacing:19.590894px;}
.ls2c{letter-spacing:20.478029px;}
.ls31{letter-spacing:21.296580px;}
.ls61{letter-spacing:23.287289px;}
.ls30{letter-spacing:23.530449px;}
.ls58{letter-spacing:25.750068px;}
.ls60{letter-spacing:36.520383px;}
.ls62{letter-spacing:53.819512px;}
.ls4a{letter-spacing:75.554315px;}
.ls5a{letter-spacing:94.405929px;}
.ls48{letter-spacing:101.355152px;}
.ls54{letter-spacing:360.028877px;}
.ls18{letter-spacing:961.048608px;}
.ls3{letter-spacing:1052.585452px;}
.ls4c{letter-spacing:1105.578396px;}
.ls68{letter-spacing:1313.073528px;}
.ls57{letter-spacing:1497.483559px;}
.ls1{letter-spacing:2635.411895px;}
.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;}
}
.wsa8{word-spacing:-73.927901px;}
.wsaa{word-spacing:-51.970424px;}
.wsb1{word-spacing:-51.867103px;}
.wsa6{word-spacing:-51.660461px;}
.wsab{word-spacing:-18.925543px;}
.wsb9{word-spacing:-18.777687px;}
.ws0{word-spacing:-18.556200px;}
.wsae{word-spacing:-18.481975px;}
.ws6a{word-spacing:-17.813952px;}
.wsb2{word-spacing:-16.190210px;}
.ws7{word-spacing:-14.844960px;}
.ws11b{word-spacing:-14.251162px;}
.wse2{word-spacing:-13.657363px;}
.ws5f{word-spacing:-12.061530px;}
.ws13{word-spacing:-11.727518px;}
.wsbb{word-spacing:-11.365301px;}
.wsac{word-spacing:-11.051776px;}
.wsf7{word-spacing:-10.450852px;}
.ws11c{word-spacing:-9.857053px;}
.ws77{word-spacing:-9.649224px;}
.wsa7{word-spacing:-7.488985px;}
.wscb{word-spacing:-7.422480px;}
.wsfe{word-spacing:-5.581705px;}
.wscc{word-spacing:-5.462945px;}
.ws117{word-spacing:-5.284806px;}
.ws118{word-spacing:-4.928527px;}
.wse7{word-spacing:-4.750387px;}
.ws121{word-spacing:-4.691007px;}
.ws11d{word-spacing:-4.512868px;}
.wsfb{word-spacing:-4.334728px;}
.ws10d{word-spacing:-4.275348px;}
.wsf9{word-spacing:-4.215969px;}
.wsa5{word-spacing:-4.082364px;}
.wsd1{word-spacing:-3.859690px;}
.wsbd{word-spacing:-3.844251px;}
.wsdf{word-spacing:-3.800310px;}
.ws12a{word-spacing:-3.740930px;}
.ws11e{word-spacing:-3.681550px;}
.ws17{word-spacing:-3.562790px;}
.wsb7{word-spacing:-3.496730px;}
.ws1b{word-spacing:-3.414341px;}
.wsfd{word-spacing:-3.384651px;}
.ws4b{word-spacing:-3.340116px;}
.wsce{word-spacing:-3.265891px;}
.ws114{word-spacing:-3.206511px;}
.ws88{word-spacing:-3.191666px;}
.ws125{word-spacing:-3.147132px;}
.ws8d{word-spacing:-3.117442px;}
.wsc7{word-spacing:-3.087752px;}
.ws5a{word-spacing:-3.043217px;}
.ws116{word-spacing:-2.968992px;}
.wsa4{word-spacing:-2.909612px;}
.ws1c{word-spacing:-2.894767px;}
.ws44{word-spacing:-2.850232px;}
.ws11f{word-spacing:-2.790852px;}
.ws41{word-spacing:-2.746318px;}
.ws111{word-spacing:-2.731473px;}
.ws28{word-spacing:-2.672093px;}
.wsda{word-spacing:-2.612713px;}
.ws89{word-spacing:-2.597868px;}
.wse6{word-spacing:-2.553333px;}
.ws15{word-spacing:-2.523643px;}
.ws10c{word-spacing:-2.493953px;}
.ws3c{word-spacing:-2.449418px;}
.ws10a{word-spacing:-2.375194px;}
.wsfc{word-spacing:-2.315814px;}
.ws9a{word-spacing:-2.300969px;}
.wse3{word-spacing:-2.256434px;}
.ws19{word-spacing:-2.226744px;}
.wscd{word-spacing:-2.197054px;}
.ws26{word-spacing:-2.152519px;}
.wsc9{word-spacing:-2.137674px;}
.ws67{word-spacing:-2.078294px;}
.wsd5{word-spacing:-2.018915px;}
.ws8e{word-spacing:-2.004070px;}
.ws40{word-spacing:-1.929845px;}
.ws110{word-spacing:-1.840775px;}
.ws7f{word-spacing:-1.781395px;}
.wsfa{word-spacing:-1.722015px;}
.ws54{word-spacing:-1.707170px;}
.wseb{word-spacing:-1.662636px;}
.wsd0{word-spacing:-1.603256px;}
.ws87{word-spacing:-1.558721px;}
.ws33{word-spacing:-1.484496px;}
.ws122{word-spacing:-1.425116px;}
.ws46{word-spacing:-1.410271px;}
.wsd7{word-spacing:-1.365736px;}
.ws9b{word-spacing:-1.336046px;}
.wsa3{word-spacing:-1.306356px;}
.wsa2{word-spacing:-1.261822px;}
.wse9{word-spacing:-1.246977px;}
.ws43{word-spacing:-1.187597px;}
.wsff{word-spacing:-1.128217px;}
.wsf8{word-spacing:-1.068837px;}
.ws68{word-spacing:-1.039147px;}
.ws106{word-spacing:-1.009457px;}
.ws2c{word-spacing:-0.964922px;}
.wsd4{word-spacing:-0.950077px;}
.ws6{word-spacing:-0.890698px;}
.ws91{word-spacing:-0.831318px;}
.wscf{word-spacing:-0.771938px;}
.ws69{word-spacing:-0.742248px;}
.wsca{word-spacing:-0.712558px;}
.ws99{word-spacing:-0.668023px;}
.ws10e{word-spacing:-0.653178px;}
.wsc{word-spacing:-0.593798px;}
.ws96{word-spacing:-0.534419px;}
.ws45{word-spacing:-0.519574px;}
.ws12b{word-spacing:-0.475039px;}
.ws16{word-spacing:-0.445349px;}
.wsb3{word-spacing:-0.443567px;}
.ws103{word-spacing:-0.415659px;}
.wsb5{word-spacing:-0.309963px;}
.ws34{word-spacing:-0.296899px;}
.ws102{word-spacing:-0.237519px;}
.ws30{word-spacing:-0.222674px;}
.ws9d{word-spacing:-0.148450px;}
.wsb4{word-spacing:-0.147856px;}
.ws78{word-spacing:-0.081647px;}
.wsee{word-spacing:-0.059380px;}
.ws1{word-spacing:0.000000px;}
.ws113{word-spacing:0.059380px;}
.ws1d{word-spacing:0.074225px;}
.ws11{word-spacing:0.148450px;}
.ws83{word-spacing:0.178140px;}
.wsb6{word-spacing:0.221784px;}
.ws1e{word-spacing:0.222674px;}
.ws64{word-spacing:0.237519px;}
.ws4d{word-spacing:0.296899px;}
.ws82{word-spacing:0.356279px;}
.ws7d{word-spacing:0.371124px;}
.ws97{word-spacing:0.415659px;}
.ws48{word-spacing:0.445349px;}
.ws7c{word-spacing:0.482461px;}
.ws49{word-spacing:0.519574px;}
.ws81{word-spacing:0.534419px;}
.ws3f{word-spacing:0.593798px;}
.ws7e{word-spacing:0.653178px;}
.ws52{word-spacing:0.668023px;}
.wse1{word-spacing:0.712558px;}
.ws72{word-spacing:0.742248px;}
.wsf{word-spacing:0.771938px;}
.wsc8{word-spacing:0.831318px;}
.ws3b{word-spacing:0.890698px;}
.ws63{word-spacing:0.950077px;}
.wse5{word-spacing:1.009457px;}
.ws18{word-spacing:1.039147px;}
.ws129{word-spacing:1.068837px;}
.ws5e{word-spacing:1.113372px;}
.ws127{word-spacing:1.128217px;}
.ws65{word-spacing:1.187597px;}
.wsdb{word-spacing:1.246977px;}
.wsc0{word-spacing:1.261822px;}
.wse8{word-spacing:1.306356px;}
.ws58{word-spacing:1.336046px;}
.wsc5{word-spacing:1.365736px;}
.ws23{word-spacing:1.410271px;}
.wsd6{word-spacing:1.425116px;}
.ws39{word-spacing:1.484496px;}
.wsdc{word-spacing:1.543876px;}
.ws61{word-spacing:1.558721px;}
.wsd2{word-spacing:1.603256px;}
.ws6e{word-spacing:1.632946px;}
.wse0{word-spacing:1.662636px;}
.ws12{word-spacing:1.707170px;}
.ws90{word-spacing:1.722015px;}
.ws80{word-spacing:1.781395px;}
.ws27{word-spacing:1.855620px;}
.ws10f{word-spacing:1.900155px;}
.ws4c{word-spacing:1.929845px;}
.ws107{word-spacing:1.959535px;}
.ws76{word-spacing:2.004070px;}
.ws100{word-spacing:2.018915px;}
.wsd8{word-spacing:2.078294px;}
.wsf0{word-spacing:2.137674px;}
.ws3d{word-spacing:2.152519px;}
.ws108{word-spacing:2.256434px;}
.ws62{word-spacing:2.300969px;}
.ws10b{word-spacing:2.434573px;}
.wse{word-spacing:2.449418px;}
.ws5{word-spacing:2.493953px;}
.ws9f{word-spacing:2.523643px;}
.wsb{word-spacing:2.597868px;}
.wsd3{word-spacing:2.672093px;}
.ws66{word-spacing:2.746318px;}
.ws11a{word-spacing:2.790852px;}
.ws124{word-spacing:2.850232px;}
.ws2b{word-spacing:2.894767px;}
.ws14{word-spacing:2.968992px;}
.wsef{word-spacing:3.028372px;}
.ws4e{word-spacing:3.043217px;}
.ws115{word-spacing:3.087752px;}
.ws1f{word-spacing:3.117442px;}
.wsdd{word-spacing:3.147132px;}
.ws2a{word-spacing:3.191666px;}
.ws86{word-spacing:3.206511px;}
.ws75{word-spacing:3.265891px;}
.ws38{word-spacing:3.488566px;}
.wsc6{word-spacing:3.562790px;}
.ws101{word-spacing:3.622170px;}
.ws37{word-spacing:3.637015px;}
.wsd9{word-spacing:3.681550px;}
.ws47{word-spacing:3.785465px;}
.ws94{word-spacing:3.859690px;}
.wsf5{word-spacing:3.919069px;}
.ws3e{word-spacing:3.933914px;}
.ws123{word-spacing:3.978449px;}
.ws93{word-spacing:4.008139px;}
.ws2d{word-spacing:4.082364px;}
.ws120{word-spacing:4.097209px;}
.ws9c{word-spacing:4.156589px;}
.wsde{word-spacing:4.215969px;}
.ws5d{word-spacing:4.230814px;}
.ws56{word-spacing:4.305038px;}
.wsea{word-spacing:4.334728px;}
.ws5b{word-spacing:4.379263px;}
.ws29{word-spacing:4.453488px;}
.ws2e{word-spacing:4.527713px;}
.ws3{word-spacing:4.572248px;}
.ws22{word-spacing:4.601938px;}
.wse4{word-spacing:4.631628px;}
.ws50{word-spacing:4.676162px;}
.wsed{word-spacing:4.691007px;}
.wsf4{word-spacing:4.750387px;}
.ws119{word-spacing:4.809767px;}
.ws21{word-spacing:4.824612px;}
.ws85{word-spacing:4.928527px;}
.ws6b{word-spacing:4.973062px;}
.wsf6{word-spacing:4.987907px;}
.wsbe{word-spacing:5.047286px;}
.ws6d{word-spacing:5.121511px;}
.ws92{word-spacing:5.195736px;}
.ws74{word-spacing:5.269961px;}
.ws42{word-spacing:5.344186px;}
.ws71{word-spacing:5.492635px;}
.ws109{word-spacing:5.522325px;}
.ws35{word-spacing:5.566860px;}
.wsf2{word-spacing:5.581705px;}
.wsc1{word-spacing:5.641085px;}
.ws126{word-spacing:5.700465px;}
.wsec{word-spacing:5.759844px;}
.ws32{word-spacing:5.789534px;}
.wsbf{word-spacing:5.863759px;}
.ws31{word-spacing:5.937984px;}
.ws98{word-spacing:6.086434px;}
.wsc4{word-spacing:6.116124px;}
.ws51{word-spacing:6.234883px;}
.ws112{word-spacing:6.294263px;}
.ws8b{word-spacing:6.309108px;}
.ws104{word-spacing:6.413023px;}
.ws3a{word-spacing:6.531782px;}
.ws4f{word-spacing:6.606007px;}
.ws70{word-spacing:6.828682px;}
.ws6c{word-spacing:6.902906px;}
.ws12d{word-spacing:6.947441px;}
.ws79{word-spacing:6.977131px;}
.ws7b{word-spacing:7.051356px;}
.wsc2{word-spacing:7.125581px;}
.ws59{word-spacing:7.199806px;}
.ws8a{word-spacing:7.348255px;}
.ws5c{word-spacing:7.422480px;}
.ws9{word-spacing:7.496705px;}
.ws7a{word-spacing:7.570930px;}
.ws4{word-spacing:7.659999px;}
.wsa{word-spacing:7.719379px;}
.wsf1{word-spacing:7.778759px;}
.ws9e{word-spacing:7.942054px;}
.ws128{word-spacing:8.016278px;}
.wsc3{word-spacing:8.194418px;}
.ws105{word-spacing:8.372557px;}
.ws53{word-spacing:8.535852px;}
.ws20{word-spacing:8.610077px;}
.ws25{word-spacing:8.684302px;}
.wsf3{word-spacing:8.847596px;}
.ws55{word-spacing:8.981201px;}
.ws8c{word-spacing:9.055426px;}
.ws24{word-spacing:9.203875px;}
.ws84{word-spacing:9.263255px;}
.ws6f{word-spacing:9.278100px;}
.ws73{word-spacing:9.426550px;}
.ws8f{word-spacing:9.649224px;}
.ws1a{word-spacing:9.723449px;}
.ws2f{word-spacing:10.094573px;}
.ws36{word-spacing:10.688371px;}
.ws57{word-spacing:11.875968px;}
.ws4a{word-spacing:13.805813px;}
.ws8{word-spacing:13.954262px;}
.ws10{word-spacing:14.622286px;}
.wsba{word-spacing:24.461674px;}
.wsaf{word-spacing:26.428779px;}
.wsb0{word-spacing:31.078221px;}
.wsa9{word-spacing:39.470373px;}
.wsad{word-spacing:41.950076px;}
.wsbc{word-spacing:88.103353px;}
.wsb8{word-spacing:171.884448px;}
.wsa0{word-spacing:261.934123px;}
.ws2{word-spacing:360.138730px;}
.ws12c{word-spacing:363.879660px;}
.ws60{word-spacing:1041.567671px;}
.wsd{word-spacing:1311.826848px;}
.ws95{word-spacing:1462.369587px;}
.wsa1{word-spacing:2190.859278px;}
._15{margin-left:-1048.982728px;}
._2{margin-left:-360.137987px;}
._1b{margin-left:-77.550368px;}
._1d{margin-left:-23.677711px;}
._16{margin-left:-19.315520px;}
._17{margin-left:-17.527444px;}
._3{margin-left:-9.479991px;}
._12{margin-left:-8.310209px;}
._10{margin-left:-6.907360px;}
._f{margin-left:-5.235817px;}
._0{margin-left:-4.097209px;}
._5{margin-left:-2.868046px;}
._1{margin-left:-1.569112px;}
._8{width:1.757643px;}
._6{width:2.986806px;}
._7{width:4.786015px;}
._a{width:6.460527px;}
._9{width:7.861891px;}
._d{width:9.062848px;}
._11{width:10.109418px;}
._e{width:11.957615px;}
._13{width:13.145212px;}
._1e{width:19.532998px;}
._c{width:30.951742px;}
._26{width:78.618908px;}
._23{width:207.959185px;}
._27{width:356.932218px;}
._25{width:363.879660px;}
._28{width:367.145551px;}
._18{width:396.731556px;}
._1a{width:596.025144px;}
._19{width:597.925002px;}
._22{width:1002.903972px;}
._14{width:1052.585452px;}
._21{width:1190.640017px;}
._1f{width:1218.479661px;}
._24{width:1259.075282px;}
._20{width:1396.867686px;}
._4{width:1626.946752px;}
._b{width:1632.485406px;}
._1c{width:1727.507995px;}
.fc2{color:transparent;}
.fc1{color:rgb(43,78,168);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:38.596896px;}
.fs10{font-size:44.534880px;}
.fsd{font-size:48.246120px;}
.fsf{font-size:51.660461px;}
.fs3{font-size:51.957360px;}
.fs4{font-size:59.379840px;}
.fs12{font-size:59.676739px;}
.fs2{font-size:66.802320px;}
.fs7{font-size:69.596141px;}
.fs8{font-size:73.596858px;}
.fsb{font-size:73.927901px;}
.fs0{font-size:74.224800px;}
.fs5{font-size:77.019364px;}
.fsa{font-size:81.647280px;}
.fs11{font-size:81.944179px;}
.fs9{font-size:88.670431px;}
.fsc{font-size:89.069760px;}
.fs6{font-size:92.794360px;}
.fs1{font-size:103.914720px;}
.y1f2{bottom:-1358.259099px;}
.y1db{bottom:-1351.278999px;}
.y21b{bottom:-1342.136916px;}
.y1f1{bottom:-1332.651543px;}
.y1da{bottom:-1325.671443px;}
.y21a{bottom:-1316.529360px;}
.y20e{bottom:-1293.653462px;}
.y20d{bottom:-1268.045906px;}
.y1b2{bottom:-1188.429417px;}
.yc8{bottom:-1173.741628px;}
.y1b1{bottom:-1162.821861px;}
.yc7{bottom:-1148.134072px;}
.y1c3{bottom:-1134.540542px;}
.y1c2{bottom:-1108.932986px;}
.y138{bottom:-1084.515439px;}
.y196{bottom:-1061.449526px;}
.y137{bottom:-1058.907883px;}
.y175{bottom:-1035.958317px;}
.y195{bottom:-1035.841970px;}
.y174{bottom:-1010.350761px;}
.y43{bottom:-878.436647px;}
.y42{bottom:-852.943898px;}
.y34{bottom:-819.473282px;}
.y33{bottom:-792.794903px;}
.y192{bottom:-131.016199px;}
.y1f7{bottom:-80.561854px;}
.y36{bottom:-72.018723px;}
.y21d{bottom:-63.985860px;}
.y1f6{bottom:-59.178208px;}
.y45{bottom:-52.922907px;}
.y21c{bottom:-45.949234px;}
.yca{bottom:-43.449936px;}
.y1bc{bottom:-35.648910px;}
.y177{bottom:-34.585973px;}
.yc9{bottom:-25.855096px;}
.y13a{bottom:-25.256881px;}
.yba{bottom:-23.845979px;}
.y35{bottom:-20.512023px;}
.y191{bottom:-19.902564px;}
.y199{bottom:-17.323697px;}
.y210{bottom:-15.502406px;}
.y132{bottom:-14.152220px;}
.y1e0{bottom:-10.780224px;}
.y176{bottom:-10.097356px;}
.y1ec{bottom:-9.298660px;}
.y139{bottom:-7.662041px;}
.y1a1{bottom:-7.392122px;}
.yb9{bottom:-6.251138px;}
.y1bb{bottom:-4.026250px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.217500px;}
.y198{bottom:0.271143px;}
.y44{bottom:0.287621px;}
.y1a0{bottom:1.294406px;}
.y1eb{bottom:2.267827px;}
.y20f{bottom:2.534220px;}
.y131{bottom:3.442620px;}
.y1e6{bottom:3.491757px;}
.y1b8{bottom:3.561157px;}
.y1f5{bottom:3.619758px;}
.y1c9{bottom:3.882068px;}
.y1b5{bottom:8.171408px;}
.y1e9{bottom:8.295289px;}
.y1c7{bottom:8.892688px;}
.y1f4{bottom:9.629295px;}
.y1de{bottom:10.597631px;}
.y19b{bottom:10.688928px;}
.y17d{bottom:11.357137px;}
.y179{bottom:11.357322px;}
.y1df{bottom:11.490556px;}
.y17b{bottom:11.578141px;}
.y1ed{bottom:13.618024px;}
.y1bd{bottom:13.907315px;}
.y1ca{bottom:14.561050px;}
.y1b4{bottom:17.519020px;}
.y1ba{bottom:17.523733px;}
.y1e4{bottom:17.639598px;}
.y1f3{bottom:18.982065px;}
.y1dc{bottom:21.286003px;}
.y1e8{bottom:28.559105px;}
.y1c6{bottom:29.155873px;}
.y1b7{bottom:32.361864px;}
.y1e5{bottom:32.486191px;}
.y1ea{bottom:32.889566px;}
.y1c8{bottom:34.090523px;}
.y1b6{bottom:34.446987px;}
.y1e3{bottom:43.255616px;}
.y1f0{bottom:47.929737px;}
.y1c5{bottom:49.857912px;}
.y1d9{bottom:54.909837px;}
.y3{bottom:60.774153px;}
.y219{bottom:64.051920px;}
.y25{bottom:105.200479px;}
.ye0{bottom:108.970542px;}
.yb6{bottom:109.168722px;}
.y18b{bottom:110.024906px;}
.y10f{bottom:110.726330px;}
.ya7{bottom:110.744329px;}
.y83{bottom:110.745999px;}
.y171{bottom:110.936572px;}
.y12a{bottom:111.273923px;}
.y38{bottom:111.486021px;}
.y1ab{bottom:112.336451px;}
.y20c{bottom:112.535374px;}
.y51{bottom:115.769905px;}
.y217{bottom:116.372239px;}
.y252{bottom:117.771006px;}
.y289{bottom:117.771191px;}
.y24{bottom:123.014431px;}
.y1d8{bottom:127.637359px;}
.y37{bottom:129.299973px;}
.ydf{bottom:131.237982px;}
.yb5{bottom:131.436162px;}
.y18a{bottom:132.292346px;}
.y8{bottom:132.659387px;}
.y10e{bottom:132.993770px;}
.ya6{bottom:133.011769px;}
.y82{bottom:133.013439px;}
.y170{bottom:133.204012px;}
.y129{bottom:133.541363px;}
.y216{bottom:134.186191px;}
.y1aa{bottom:134.603891px;}
.y251{bottom:135.584958px;}
.y288{bottom:135.585143px;}
.y50{bottom:138.037345px;}
.y23{bottom:140.828383px;}
.y1dd{bottom:148.705861px;}
.y215{bottom:152.000143px;}
.y1e1{bottom:152.405040px;}
.y1d7{bottom:152.407637px;}
.y250{bottom:153.398910px;}
.y287{bottom:153.399095px;}
.yde{bottom:153.505422px;}
.yb4{bottom:153.703602px;}
.y189{bottom:154.559786px;}
.y10d{bottom:155.261210px;}
.ya5{bottom:155.279209px;}
.y81{bottom:155.280879px;}
.y16f{bottom:155.471452px;}
.y128{bottom:155.808803px;}
.y1a9{bottom:156.871331px;}
.y22{bottom:158.642335px;}
.y4f{bottom:160.304785px;}
.y214{bottom:169.814095px;}
.y24f{bottom:171.212862px;}
.y286{bottom:171.213047px;}
.ydd{bottom:175.772862px;}
.yb3{bottom:175.971042px;}
.y21{bottom:176.456287px;}
.y188{bottom:176.827226px;}
.y10c{bottom:177.528650px;}
.ya4{bottom:177.546649px;}
.y80{bottom:177.548319px;}
.y16e{bottom:177.738892px;}
.y127{bottom:178.076243px;}
.y1a8{bottom:179.138771px;}
.y4e{bottom:182.572225px;}
.y18e{bottom:186.367732px;}
.y1b3{bottom:188.366399px;}
.y24e{bottom:189.026814px;}
.y285{bottom:189.026999px;}
.y213{bottom:191.339102px;}
.y31{bottom:193.344863px;}
.y20{bottom:194.270239px;}
.ydc{bottom:198.040302px;}
.yb2{bottom:198.238482px;}
.y187{bottom:199.094666px;}
.y10b{bottom:199.796090px;}
.ya3{bottom:199.814089px;}
.y7f{bottom:199.815759px;}
.y16d{bottom:200.006332px;}
.y126{bottom:200.343683px;}
.y1a7{bottom:201.406211px;}
.y4d{bottom:204.839665px;}
.y24d{bottom:206.840766px;}
.y284{bottom:206.840951px;}
.y1f{bottom:212.084191px;}
.y1d6{bottom:214.812138px;}
.y1b0{bottom:217.759419px;}
.ydb{bottom:220.307742px;}
.yb1{bottom:220.505922px;}
.y186{bottom:221.362106px;}
.y10a{bottom:222.063530px;}
.ya2{bottom:222.081529px;}
.y7e{bottom:222.083199px;}
.y16c{bottom:222.273772px;}
.y125{bottom:222.611123px;}
.y1a6{bottom:223.673651px;}
.y24c{bottom:224.654718px;}
.y283{bottom:224.654903px;}
.y212{bottom:224.740262px;}
.y4c{bottom:227.107105px;}
.y1e{bottom:229.898143px;}
.yc6{bottom:232.447208px;}
.y1d5{bottom:237.079578px;}
.y124{bottom:241.169179px;}
.y1c4{bottom:242.255273px;}
.y24b{bottom:242.468670px;}
.y282{bottom:242.468855px;}
.yda{bottom:242.575182px;}
.yb0{bottom:242.773362px;}
.y185{bottom:243.629546px;}
.y109{bottom:244.330970px;}
.ya1{bottom:244.348969px;}
.y7d{bottom:244.350639px;}
.y16b{bottom:244.541212px;}
.y123{bottom:244.878563px;}
.y1d{bottom:247.712095px;}
.y4b{bottom:249.374545px;}
.y193{bottom:257.621684px;}
.y1d4{bottom:259.347018px;}
.y24a{bottom:260.282622px;}
.y281{bottom:260.282807px;}
.y218{bottom:263.533689px;}
.yd9{bottom:264.842622px;}
.yaf{bottom:265.040802px;}
.y1c{bottom:265.526047px;}
.y184{bottom:265.896986px;}
.y108{bottom:266.598410px;}
.ya0{bottom:266.616409px;}
.y7c{bottom:266.618079px;}
.y16a{bottom:266.808652px;}
.y122{bottom:267.146003px;}
.y4a{bottom:271.641985px;}
.y1c1{bottom:271.648294px;}
.y20b{bottom:274.665554px;}
.y1a5{bottom:275.631011px;}
.y249{bottom:278.096574px;}
.y280{bottom:278.096759px;}
.y1d3{bottom:281.614458px;}
.y1b{bottom:283.339999px;}
.yd8{bottom:287.110062px;}
.yae{bottom:287.308242px;}
.y107{bottom:288.865850px;}
.y9f{bottom:288.883849px;}
.y7b{bottom:288.885519px;}
.y169{bottom:289.076092px;}
.y121{bottom:289.413443px;}
.y211{bottom:291.542582px;}
.y20a{bottom:291.550932px;}
.y1a4{bottom:293.444963px;}
.y49{bottom:293.909425px;}
.y248{bottom:295.910526px;}
.y27f{bottom:295.910711px;}
.y1a{bottom:301.153951px;}
.y1d2{bottom:303.881898px;}
.yd7{bottom:309.377502px;}
.yad{bottom:309.575682px;}
.y106{bottom:311.133290px;}
.y9e{bottom:311.151289px;}
.y7a{bottom:311.152959px;}
.y1a3{bottom:311.258915px;}
.y168{bottom:311.343532px;}
.y120{bottom:311.680883px;}
.y247{bottom:313.724478px;}
.y27e{bottom:313.724663px;}
.y48{bottom:316.176865px;}
.y183{bottom:317.854346px;}
.y7{bottom:317.987765px;}
.y19{bottom:318.967903px;}
.y197{bottom:321.358498px;}
.y136{bottom:321.673397px;}
.y1d1{bottom:326.149338px;}
.y143{bottom:327.438437px;}
.y1a2{bottom:329.072867px;}
.y11f{bottom:330.238939px;}
.y130{bottom:330.776883px;}
.y246{bottom:331.538430px;}
.y27d{bottom:331.538615px;}
.yd6{bottom:331.644942px;}
.yac{bottom:331.843122px;}
.y105{bottom:333.400730px;}
.y9d{bottom:333.418729px;}
.y79{bottom:333.420399px;}
.y167{bottom:333.610972px;}
.y11e{bottom:333.948323px;}
.y182{bottom:335.668298px;}
.y18{bottom:336.781855px;}
.y194{bottom:344.739310px;}
.y1d0{bottom:348.416778px;}
.y209{bottom:348.555578px;}
.y245{bottom:349.352382px;}
.y27c{bottom:349.352567px;}
.y181{bottom:353.482250px;}
.yd5{bottom:353.912382px;}
.yab{bottom:354.110562px;}
.y104{bottom:355.668170px;}
.y9c{bottom:355.686169px;}
.y78{bottom:355.687839px;}
.y166{bottom:355.878412px;}
.y11d{bottom:356.215763px;}
.y17{bottom:365.729527px;}
.y244{bottom:367.166334px;}
.y27b{bottom:367.166519px;}
.y47{bottom:368.134225px;}
.y173{bottom:370.230519px;}
.y1cf{bottom:370.684218px;}
.y208{bottom:370.823018px;}
.y180{bottom:371.296202px;}
.yd4{bottom:376.179822px;}
.yaa{bottom:376.378002px;}
.y103{bottom:377.935610px;}
.y9b{bottom:377.953609px;}
.y77{bottom:377.955279px;}
.y165{bottom:378.145852px;}
.y11c{bottom:378.483203px;}
.y243{bottom:384.980286px;}
.y27a{bottom:384.980471px;}
.y46{bottom:385.948177px;}
.y17f{bottom:389.110154px;}
.y19d{bottom:392.425054px;}
.y1ce{bottom:392.951658px;}
.y207{bottom:393.090458px;}
.yd3{bottom:398.447262px;}
.ya9{bottom:398.645442px;}
.y102{bottom:400.203050px;}
.y9a{bottom:400.221049px;}
.y76{bottom:400.222719px;}
.y164{bottom:400.413292px;}
.y11b{bottom:400.750643px;}
.y242{bottom:402.794238px;}
.y279{bottom:402.794423px;}
.y17e{bottom:406.924106px;}
.y1cd{bottom:415.219098px;}
.y206{bottom:415.357898px;}
.y241{bottom:420.608190px;}
.y278{bottom:420.608375px;}
.ya8{bottom:420.912882px;}
.y16{bottom:421.398127px;}
.y101{bottom:422.470490px;}
.y99{bottom:422.488489px;}
.y75{bottom:422.490159px;}
.y40{bottom:422.534345px;}
.y163{bottom:422.680732px;}
.y11a{bottom:423.018083px;}
.y144{bottom:425.555644px;}
.y205{bottom:433.914098px;}
.y1cc{bottom:437.486538px;}
.y203{bottom:437.625338px;}
.y240{bottom:438.422142px;}
.y277{bottom:438.422327px;}
.y15{bottom:439.212079px;}
.y100{bottom:444.737930px;}
.y98{bottom:444.755929px;}
.y74{bottom:444.757599px;}
.y162{bottom:444.948172px;}
.y119{bottom:445.285523px;}
.yb8{bottom:451.565869px;}
.y204{bottom:452.470298px;}
.y23f{bottom:456.236094px;}
.y276{bottom:456.236279px;}
.y14{bottom:457.026031px;}
.yd2{bottom:459.682722px;}
.y202{bottom:459.892778px;}
.y118{bottom:463.843579px;}
.yff{bottom:467.005370px;}
.y97{bottom:467.023369px;}
.y73{bottom:467.025039px;}
.y161{bottom:467.215612px;}
.y117{bottom:467.552963px;}
.y172{bottom:470.275736px;}
.y19a{bottom:470.314704px;}
.y23e{bottom:474.050046px;}
.y275{bottom:474.050231px;}
.y13{bottom:474.839983px;}
.y1c0{bottom:476.276811px;}
.yd1{bottom:477.496674px;}
.y19c{bottom:478.607448px;}
.y201{bottom:482.160218px;}
.y116{bottom:486.111019px;}
.yc1{bottom:486.381568px;}
.yfe{bottom:489.272810px;}
.y96{bottom:489.290809px;}
.y72{bottom:489.292479px;}
.y160{bottom:489.483052px;}
.y115{bottom:489.820403px;}
.y23d{bottom:491.863998px;}
.y274{bottom:491.864183px;}
.y12{bottom:492.653935px;}
.y1bf{bottom:493.154025px;}
.y1cb{bottom:493.155138px;}
.yd0{bottom:495.310626px;}
.y19f{bottom:497.184283px;}
.yc0{bottom:504.195520px;}
.y200{bottom:504.427658px;}
.y23c{bottom:509.677950px;}
.y273{bottom:509.678135px;}
.y11{bottom:510.467887px;}
.yfd{bottom:511.540250px;}
.y95{bottom:511.558249px;}
.y71{bottom:511.559919px;}
.y19e{bottom:511.655669px;}
.y15f{bottom:511.750492px;}
.y114{bottom:512.087843px;}
.ycf{bottom:513.124578px;}
.y41{bottom:521.448518px;}
.ybf{bottom:522.009472px;}
.y142{bottom:523.673036px;}
.y23b{bottom:527.491902px;}
.y272{bottom:527.492087px;}
.y10{bottom:528.281839px;}
.yce{bottom:530.938530px;}
.yfc{bottom:533.807690px;}
.y94{bottom:533.825689px;}
.y70{bottom:533.827359px;}
.y15e{bottom:534.017932px;}
.y113{bottom:534.355283px;}
.y1ff{bottom:535.973198px;}
.ybe{bottom:539.823424px;}
.y23a{bottom:545.305854px;}
.y271{bottom:545.306039px;}
.yf{bottom:546.095791px;}
.ycd{bottom:548.752482px;}
.y1af{bottom:553.819460px;}
.yfb{bottom:556.075130px;}
.y93{bottom:556.093129px;}
.y6f{bottom:556.094799px;}
.y15d{bottom:556.285372px;}
.y112{bottom:556.622723px;}
.ybd{bottom:557.637376px;}
.y239{bottom:563.119806px;}
.y270{bottom:563.119991px;}
.ye{bottom:563.909743px;}
.ycc{bottom:566.566434px;}
.y190{bottom:568.397189px;}
.y1fe{bottom:569.374358px;}
.y1ae{bottom:569.381039px;}
.y1be{bottom:569.382894px;}
.y1b9{bottom:571.125693px;}
.y53{bottom:575.450029px;}
.ybc{bottom:575.451328px;}
.yfa{bottom:578.342570px;}
.y92{bottom:578.360569px;}
.y6e{bottom:578.362239px;}
.y15c{bottom:578.552812px;}
.y111{bottom:578.890163px;}
.y238{bottom:580.933758px;}
.y26f{bottom:580.933943px;}
.yd{bottom:581.723695px;}
.ycb{bottom:584.380386px;}
.y18f{bottom:591.776888px;}
.ybb{bottom:593.265280px;}
.y237{bottom:598.747710px;}
.y26e{bottom:598.747895px;}
.yc{bottom:599.537647px;}
.yf9{bottom:600.610010px;}
.y91{bottom:600.628009px;}
.y6d{bottom:600.629679px;}
.y15b{bottom:600.820252px;}
.y110{bottom:601.157603px;}
.y29d{bottom:603.201383px;}
.y55{bottom:604.332755px;}
.y1fd{bottom:613.909238px;}
.y236{bottom:616.561662px;}
.y26d{bottom:616.561847px;}
.yb{bottom:617.351599px;}
.y29c{bottom:621.015335px;}
.y17c{bottom:621.839066px;}
.yf8{bottom:622.877450px;}
.y90{bottom:622.895449px;}
.y6c{bottom:622.897119px;}
.y141{bottom:622.947592px;}
.y15a{bottom:623.087692px;}
.y18d{bottom:631.503485px;}
.y235{bottom:634.375614px;}
.y26c{bottom:634.375799px;}
.y29b{bottom:638.829287px;}
.y140{bottom:640.761544px;}
.yf7{bottom:645.144890px;}
.y8f{bottom:645.162889px;}
.y6b{bottom:645.164559px;}
.y159{bottom:645.355132px;}
.y32{bottom:645.520839px;}
.ya{bottom:646.299271px;}
.yc5{bottom:647.734243px;}
.y234{bottom:652.189566px;}
.y26b{bottom:652.189751px;}
.y12e{bottom:656.121996px;}
.yb7{bottom:656.615241px;}
.y29a{bottom:656.643239px;}
.y13f{bottom:658.575496px;}
.yf6{bottom:667.412330px;}
.y8e{bottom:667.430329px;}
.y6a{bottom:667.431999px;}
.y158{bottom:667.622572px;}
.y233{bottom:670.003518px;}
.y26a{bottom:670.003703px;}
.y54{bottom:672.242880px;}
.y12d{bottom:673.935948px;}
.y13e{bottom:676.389448px;}
.y1fc{bottom:680.711558px;}
.y299{bottom:685.590911px;}
.y232{bottom:687.817470px;}
.y269{bottom:687.817655px;}
.yf5{bottom:689.679770px;}
.y8d{bottom:689.697769px;}
.y69{bottom:689.699439px;}
.y157{bottom:689.890012px;}
.y12c{bottom:691.749900px;}
.y13d{bottom:694.203400px;}
.y1fb{bottom:702.978998px;}
.y298{bottom:703.404863px;}
.y231{bottom:705.631422px;}
.y268{bottom:705.631607px;}
.y12b{bottom:709.563852px;}
.yf4{bottom:711.947210px;}
.yc4{bottom:711.965209px;}
.y68{bottom:711.966879px;}
.y13c{bottom:712.017352px;}
.y156{bottom:712.157452px;}
.y297{bottom:721.218815px;}
.y230{bottom:723.445374px;}
.y267{bottom:723.445559px;}
.y1fa{bottom:725.246438px;}
.y1ad{bottom:728.458702px;}
.y13b{bottom:729.831304px;}
.yf3{bottom:734.214650px;}
.y8c{bottom:734.232649px;}
.y67{bottom:734.234319px;}
.y155{bottom:734.424892px;}
.y296{bottom:739.032767px;}
.y22f{bottom:741.259326px;}
.y266{bottom:741.259511px;}
.y1f9{bottom:747.513878px;}
.yf2{bottom:756.482090px;}
.yc3{bottom:756.500089px;}
.y66{bottom:756.501759px;}
.y154{bottom:756.692332px;}
.y295{bottom:756.846719px;}
.y22e{bottom:759.073278px;}
.y265{bottom:759.073463px;}
.y12f{bottom:773.153744px;}
.y22d{bottom:776.887230px;}
.y264{bottom:776.887415px;}
.yf1{bottom:778.749530px;}
.yc2{bottom:778.767529px;}
.y65{bottom:778.769199px;}
.y153{bottom:778.959772px;}
.y1ef{bottom:779.423884px;}
.y294{bottom:785.794391px;}
.y135{bottom:793.183306px;}
.y22c{bottom:794.701182px;}
.y263{bottom:794.701367px;}
.y17a{bottom:797.308349px;}
.y1f8{bottom:797.615618px;}
.y1ee{bottom:797.620629px;}
.yf0{bottom:801.016970px;}
.y8b{bottom:801.034969px;}
.y64{bottom:801.036639px;}
.y152{bottom:801.227212px;}
.y293{bottom:803.608343px;}
.ye1{bottom:804.203069px;}
.y178{bottom:805.768121px;}
.y18c{bottom:805.781089px;}
.y22b{bottom:812.515134px;}
.y262{bottom:812.515319px;}
.y292{bottom:821.422295px;}
.yef{bottom:823.284410px;}
.y8a{bottom:823.302409px;}
.y63{bottom:823.304079px;}
.y151{bottom:823.494652px;}
.y22a{bottom:830.329086px;}
.y261{bottom:830.329271px;}
.y291{bottom:839.236247px;}
.yee{bottom:845.551850px;}
.y89{bottom:845.569849px;}
.y62{bottom:845.571519px;}
.y150{bottom:845.762092px;}
.y229{bottom:848.143038px;}
.y260{bottom:848.143223px;}
.y290{bottom:857.050199px;}
.y228{bottom:865.956990px;}
.y25f{bottom:865.957175px;}
.yed{bottom:867.819290px;}
.y88{bottom:867.837289px;}
.y61{bottom:867.838959px;}
.y14f{bottom:868.029532px;}
.y1ac{bottom:870.479321px;}
.y52{bottom:874.687311px;}
.y28f{bottom:874.864151px;}
.y227{bottom:883.770942px;}
.y25e{bottom:883.771127px;}
.yec{bottom:890.086730px;}
.y87{bottom:890.104729px;}
.y60{bottom:890.106399px;}
.y30{bottom:890.291961px;}
.y14e{bottom:890.297157px;}
.y28e{bottom:892.678103px;}
.y226{bottom:901.584894px;}
.y25d{bottom:901.585079px;}
.y28d{bottom:910.492055px;}
.yeb{bottom:912.354170px;}
.y86{bottom:912.372169px;}
.y5f{bottom:912.373839px;}
.y2f{bottom:912.559401px;}
.y14d{bottom:912.564597px;}
.y225{bottom:919.398846px;}
.y25c{bottom:919.399031px;}
.y134{bottom:923.071489px;}
.y28c{bottom:928.306007px;}
.yea{bottom:934.622723px;}
.y85{bottom:934.639609px;}
.y5e{bottom:934.641279px;}
.y2e{bottom:934.826841px;}
.y14c{bottom:934.832037px;}
.y224{bottom:937.212798px;}
.y25b{bottom:937.212983px;}
.y28b{bottom:946.119959px;}
.y223{bottom:955.026750px;}
.y25a{bottom:955.026935px;}
.y1e2{bottom:955.720773px;}
.ye9{bottom:956.890163px;}
.y84{bottom:956.907049px;}
.y5d{bottom:956.908719px;}
.y2d{bottom:957.094281px;}
.y14b{bottom:957.099477px;}
.y6{bottom:958.028215px;}
.y28a{bottom:963.933911px;}
.y222{bottom:972.840702px;}
.y259{bottom:972.840887px;}
.y1e7{bottom:973.151332px;}
.ye8{bottom:979.157603px;}
.y3f{bottom:979.174489px;}
.y5c{bottom:979.176159px;}
.y2c{bottom:979.361721px;}
.y14a{bottom:979.366917px;}
.y221{bottom:990.654654px;}
.y258{bottom:990.654839px;}
.ye7{bottom:1001.425043px;}
.y3e{bottom:1001.441929px;}
.y5b{bottom:1001.443599px;}
.y2b{bottom:1001.629161px;}
.y149{bottom:1001.634357px;}
.y257{bottom:1008.468791px;}
.ye6{bottom:1023.692483px;}
.y3d{bottom:1023.709369px;}
.y5a{bottom:1023.711039px;}
.y2a{bottom:1023.896601px;}
.y148{bottom:1023.901797px;}
.y256{bottom:1026.282743px;}
.y220{bottom:1030.736231px;}
.y5{bottom:1038.155742px;}
.y255{bottom:1044.096695px;}
.ye5{bottom:1045.959923px;}
.y3c{bottom:1045.976809px;}
.y59{bottom:1045.978479px;}
.y29{bottom:1046.164041px;}
.y147{bottom:1046.169237px;}
.y254{bottom:1061.910647px;}
.ye4{bottom:1068.227363px;}
.y3b{bottom:1068.244249px;}
.y58{bottom:1068.245919px;}
.y28{bottom:1068.431481px;}
.y146{bottom:1068.436677px;}
.y4{bottom:1069.330158px;}
.y253{bottom:1079.724599px;}
.y133{bottom:1080.764489px;}
.ye3{bottom:1090.494803px;}
.y3a{bottom:1090.511689px;}
.y57{bottom:1090.513359px;}
.y21f{bottom:1097.538551px;}
.ye2{bottom:1112.762243px;}
.y39{bottom:1112.779129px;}
.y56{bottom:1112.780799px;}
.y27{bottom:1112.966361px;}
.y145{bottom:1112.971557px;}
.y21e{bottom:1115.352503px;}
.y2{bottom:1152.078378px;}
.y9{bottom:1160.460213px;}
.y26{bottom:1161.389879px;}
.h45{height:13.885604px;}
.h22{height:17.158918px;}
.h27{height:25.241999px;}
.h23{height:25.620545px;}
.h24{height:28.947672px;}
.h3e{height:40.385714px;}
.h3a{height:41.905466px;}
.h7{height:42.940207px;}
.h2a{height:43.313882px;}
.h31{height:45.076721px;}
.h5{height:46.383251px;}
.h43{height:48.129216px;}
.h10{height:49.052593px;}
.h15{height:49.273235px;}
.h8{height:49.521859px;}
.h44{height:49.769468px;}
.h38{height:50.103480px;}
.hc{height:51.333707px;}
.h6{height:51.536946px;}
.h9{height:51.957360px;}
.h29{height:52.966214px;}
.h46{height:52.971410px;}
.h1e{height:52.972152px;}
.ha{height:53.675258px;}
.h13{height:54.418231px;}
.h35{height:54.616116px;}
.h2d{height:56.712386px;}
.h12{height:61.378630px;}
.h34{height:61.413600px;}
.h16{height:61.654714px;}
.h3{height:61.902323px;}
.he{height:64.232946px;}
.h2f{height:65.786368px;}
.h1a{height:66.215190px;}
.h1c{height:68.512796px;}
.h4{height:72.740304px;}
.h11{height:73.949754px;}
.h18{height:74.282788px;}
.h1d{height:76.739861px;}
.h42{height:76.747283px;}
.hd{height:77.389047px;}
.h1b{height:81.052728px;}
.h19{height:94.520644px;}
.h3b{height:96.803966px;}
.h3f{height:109.430550px;}
.h2b{height:109.449404px;}
.h3d{height:123.175643px;}
.h39{height:133.324349px;}
.h32{height:134.212523px;}
.h2e{height:134.213265px;}
.h3c{height:134.225735px;}
.h40{height:134.371865px;}
.h37{height:136.896046px;}
.h36{height:143.156759px;}
.h2c{height:147.730547px;}
.h30{height:149.992863px;}
.h33{height:151.593596px;}
.h41{height:155.591789px;}
.h17{height:197.267251px;}
.h26{height:237.935019px;}
.h20{height:305.915658px;}
.h1f{height:325.945220px;}
.h21{height:352.653159px;}
.h14{height:442.483723px;}
.h28{height:497.111320px;}
.hf{height:516.033077px;}
.h25{height:560.846300px;}
.hb{height:628.888174px;}
.h2{height:1262.406120px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w12{width:8.329878px;}
.w9{width:8.684302px;}
.wc{width:9.127795px;}
.w14{width:9.352325px;}
.we{width:9.795818px;}
.wb{width:10.020348px;}
.w13{width:14.696510px;}
.w15{width:15.141859px;}
.wd{width:15.364534px;}
.wa{width:15.589064px;}
.wf{width:15.809882px;}
.w1d{width:44.184168px;}
.w1a{width:133.604640px;}
.w1c{width:241.434718px;}
.w1b{width:267.816068px;}
.w19{width:289.090751px;}
.w18{width:407.187975px;}
.w7{width:436.412134px;}
.w17{width:458.054230px;}
.w6{width:492.863806px;}
.w8{width:497.113176px;}
.w4{width:559.629013px;}
.w10{width:566.307390px;}
.w2{width:610.163113px;}
.w11{width:645.217630px;}
.w5{width:651.890440px;}
.w16{width:667.063844px;}
.w3{width:686.434662px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x61{left:-316.804065px;}
.x20{left:-124.017208px;}
.x25{left:-97.308342px;}
.x50{left:-94.735896px;}
.x39{left:-93.053405px;}
.x12{left:-55.427926px;}
.x7{left:-46.061313px;}
.x9{left:-42.117564px;}
.x30{left:-38.437944px;}
.x46{left:-18.748813px;}
.x14{left:-10.512273px;}
.x0{left:0.000000px;}
.x1b{left:1.019849px;}
.x28{left:6.235254px;}
.x2c{left:7.569445px;}
.x52{left:8.691279px;}
.x2a{left:11.800259px;}
.x51{left:17.189425px;}
.x3b{left:18.951818px;}
.x47{left:39.592993px;}
.x48{left:49.166879px;}
.x59{left:51.008953px;}
.x5a{left:69.102547px;}
.x55{left:75.103659px;}
.x54{left:78.887787px;}
.x57{left:91.846695px;}
.x56{left:96.496137px;}
.x1{left:101.927009px;}
.x23{left:103.242087px;}
.x4{left:104.556979px;}
.x3c{left:107.353555px;}
.x36{left:112.076137px;}
.x63{left:117.722046px;}
.x38{left:120.863054px;}
.x31{left:122.534411px;}
.xd{left:128.750182px;}
.x10{left:130.851114px;}
.x44{left:137.074724px;}
.x6{left:140.062598px;}
.x43{left:143.958480px;}
.x4a{left:149.810883px;}
.xc{left:151.897185px;}
.x4b{left:158.940979px;}
.x11{left:165.328720px;}
.x45{left:177.982535px;}
.x3e{left:189.102746px;}
.x3d{left:195.147020px;}
.x3{left:196.607422px;}
.x4f{left:199.238320px;}
.x1a{left:201.342593px;}
.x29{left:202.378029px;}
.x2d{left:203.489545px;}
.x1e{left:207.151982px;}
.x5{left:210.241404px;}
.x2b{left:213.734423px;}
.x2e{left:215.291288px;}
.x24{left:216.356971px;}
.x1f{left:226.937159px;}
.x17{left:229.116028px;}
.x53{left:273.957642px;}
.x60{left:304.437129px;}
.x49{left:326.605293px;}
.x58{left:332.842032px;}
.x62{left:358.567391px;}
.x37{left:359.668173px;}
.x16{left:385.968432px;}
.x5f{left:440.672481px;}
.x22{left:449.369372px;}
.x1d{left:458.293634px;}
.x5b{left:467.053459px;}
.x4c{left:479.377189px;}
.x4e{left:485.698173px;}
.x1c{left:492.455569px;}
.x33{left:498.501579px;}
.x27{left:501.017771px;}
.x34{left:505.404486px;}
.x35{left:516.538206px;}
.x21{left:551.354247px;}
.x41{left:559.839366px;}
.x40{left:560.948285px;}
.xe{left:575.319979px;}
.x26{left:578.063114px;}
.x5e{left:580.538696px;}
.x3a{left:582.318050px;}
.x5c{left:587.385406px;}
.x5d{left:588.864892px;}
.x13{left:597.669632px;}
.x2f{left:603.533465px;}
.x4d{left:643.501367px;}
.x3f{left:649.546635px;}
.x42{left:654.661652px;}
.x8{left:657.553421px;}
.x32{left:663.439262px;}
.x15{left:664.859182px;}
.xa{left:672.755588px;}
.x18{left:679.375727px;}
.xb{left:687.607970px;}
.x19{left:701.065512px;}
.xf{left:757.577120px;}
.x2{left:769.803986px;}
@media print{
.v4{vertical-align:-23.092160pt;}
.v8{vertical-align:-18.702670pt;}
.v1{vertical-align:-13.195520pt;}
.v6{vertical-align:-10.556416pt;}
.v15{vertical-align:-2.365693pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:1.423533pt;}
.vf{vertical-align:2.365693pt;}
.v2{vertical-align:13.195520pt;}
.v7{vertical-align:18.473728pt;}
.vc{vertical-align:19.793280pt;}
.v3{vertical-align:23.092160pt;}
.v9{vertical-align:29.024866pt;}
.vb{vertical-align:33.252710pt;}
.v13{vertical-align:34.828255pt;}
.v5{vertical-align:36.281082pt;}
.va{vertical-align:38.811587pt;}
.v12{vertical-align:43.568176pt;}
.v10{vertical-align:49.644713pt;}
.v11{vertical-align:51.067586pt;}
.v14{vertical-align:54.685270pt;}
.ve{vertical-align:58.588109pt;}
.v16{vertical-align:60.964886pt;}
.vd{vertical-align:72.839270pt;}
.ls2{letter-spacing:-6.069939pt;}
.ls6d{letter-spacing:-4.433695pt;}
.ls6c{letter-spacing:-3.905874pt;}
.ls2a{letter-spacing:-3.628768pt;}
.ls69{letter-spacing:-1.187597pt;}
.ls6a{letter-spacing:-1.121619pt;}
.ls6b{letter-spacing:-1.055642pt;}
.lsc{letter-spacing:-0.659776pt;}
.ls1e{letter-spacing:-0.527821pt;}
.ls19{letter-spacing:-0.428854pt;}
.ls52{letter-spacing:-0.197141pt;}
.ls53{letter-spacing:-0.065714pt;}
.ls4d{letter-spacing:-0.045920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.002639pt;}
.ls9{letter-spacing:0.003299pt;}
.ls1b{letter-spacing:0.005278pt;}
.lsa{letter-spacing:0.005938pt;}
.ls25{letter-spacing:0.007258pt;}
.ls1c{letter-spacing:0.011876pt;}
.ls27{letter-spacing:0.013855pt;}
.ls14{letter-spacing:0.015835pt;}
.ls8{letter-spacing:0.017814pt;}
.ls6{letter-spacing:0.019793pt;}
.ls65{letter-spacing:0.021113pt;}
.lsb{letter-spacing:0.021773pt;}
.ls67{letter-spacing:0.029030pt;}
.ls13{letter-spacing:0.035628pt;}
.ls17{letter-spacing:0.042885pt;}
.ls64{letter-spacing:0.044865pt;}
.ls7{letter-spacing:0.058060pt;}
.ls10{letter-spacing:0.071256pt;}
.lsd{letter-spacing:0.120079pt;}
.ls66{letter-spacing:0.130636pt;}
.ls50{letter-spacing:0.131427pt;}
.ls51{letter-spacing:0.183682pt;}
.ls22{letter-spacing:0.184737pt;}
.ls20{letter-spacing:0.190015pt;}
.ls21{letter-spacing:0.195294pt;}
.ls46{letter-spacing:0.197141pt;}
.ls44{letter-spacing:0.260480pt;}
.ls3d{letter-spacing:0.262855pt;}
.ls38{letter-spacing:0.263646pt;}
.ls4e{letter-spacing:0.275522pt;}
.ls2f{letter-spacing:0.283440pt;}
.ls3e{letter-spacing:0.284232pt;}
.ls2d{letter-spacing:0.289774pt;}
.ls29{letter-spacing:0.329888pt;}
.ls56{letter-spacing:0.350077pt;}
.ls35{letter-spacing:0.350209pt;}
.ls42{letter-spacing:0.358918pt;}
.ls24{letter-spacing:0.369475pt;}
.ls4f{letter-spacing:0.394282pt;}
.ls5{letter-spacing:0.541016pt;}
.ls5e{letter-spacing:0.551045pt;}
.ls49{letter-spacing:0.591423pt;}
.ls63{letter-spacing:0.679569pt;}
.ls1a{letter-spacing:1.319552pt;}
.ls15{letter-spacing:1.330108pt;}
.ls16{letter-spacing:1.351221pt;}
.ls4b{letter-spacing:1.445701pt;}
.ls1f{letter-spacing:1.504289pt;}
.ls5d{letter-spacing:1.515374pt;}
.ls5c{letter-spacing:2.204180pt;}
.ls28{letter-spacing:2.216847pt;}
.ls1d{letter-spacing:2.441171pt;}
.lse{letter-spacing:2.626568pt;}
.ls12{letter-spacing:2.653619pt;}
.ls11{letter-spacing:2.654279pt;}
.lsf{letter-spacing:2.672093pt;}
.ls45{letter-spacing:3.100947pt;}
.ls36{letter-spacing:3.798726pt;}
.ls5b{letter-spacing:3.800574pt;}
.ls2e{letter-spacing:3.887400pt;}
.ls43{letter-spacing:4.590457pt;}
.ls3c{letter-spacing:4.679131pt;}
.ls4{letter-spacing:4.787335pt;}
.ls23{letter-spacing:4.895538pt;}
.ls3a{letter-spacing:5.382189pt;}
.ls55{letter-spacing:8.871348pt;}
.ls3b{letter-spacing:10.711331pt;}
.ls5f{letter-spacing:11.368468pt;}
.ls37{letter-spacing:11.499896pt;}
.ls33{letter-spacing:13.011311pt;}
.ls2b{letter-spacing:13.742870pt;}
.ls40{letter-spacing:14.259871pt;}
.ls59{letter-spacing:14.540143pt;}
.ls39{letter-spacing:14.851294pt;}
.ls32{letter-spacing:15.048435pt;}
.ls34{letter-spacing:15.245576pt;}
.ls41{letter-spacing:16.034140pt;}
.ls3f{letter-spacing:16.428422pt;}
.ls47{letter-spacing:17.414128pt;}
.ls2c{letter-spacing:18.202692pt;}
.ls31{letter-spacing:18.930293pt;}
.ls61{letter-spacing:20.699812pt;}
.ls30{letter-spacing:20.915955pt;}
.ls58{letter-spacing:22.888949pt;}
.ls60{letter-spacing:32.462563pt;}
.ls62{letter-spacing:47.839566pt;}
.ls4a{letter-spacing:67.159391pt;}
.ls5a{letter-spacing:83.916382pt;}
.ls48{letter-spacing:90.093468pt;}
.ls54{letter-spacing:320.025668pt;}
.ls18{letter-spacing:854.265429pt;}
.ls3{letter-spacing:935.631513pt;}
.ls4c{letter-spacing:982.736352pt;}
.ls68{letter-spacing:1167.176469pt;}
.ls57{letter-spacing:1331.096497pt;}
.ls1{letter-spacing:2342.588352pt;}
.wsa8{word-spacing:-65.713690pt;}
.wsaa{word-spacing:-46.195932pt;}
.wsb1{word-spacing:-46.104091pt;}
.wsa6{word-spacing:-45.920410pt;}
.wsab{word-spacing:-16.822705pt;}
.wsb9{word-spacing:-16.691277pt;}
.ws0{word-spacing:-16.494400pt;}
.wsae{word-spacing:-16.428422pt;}
.ws6a{word-spacing:-15.834624pt;}
.wsb2{word-spacing:-14.391298pt;}
.ws7{word-spacing:-13.195520pt;}
.ws11b{word-spacing:-12.667699pt;}
.wse2{word-spacing:-12.139878pt;}
.ws5f{word-spacing:-10.721360pt;}
.ws13{word-spacing:-10.424461pt;}
.wsbb{word-spacing:-10.102490pt;}
.wsac{word-spacing:-9.823801pt;}
.wsf7{word-spacing:-9.289646pt;}
.ws11c{word-spacing:-8.761825pt;}
.ws77{word-spacing:-8.577088pt;}
.wsa7{word-spacing:-6.656876pt;}
.wscb{word-spacing:-6.597760pt;}
.wsfe{word-spacing:-4.961516pt;}
.wscc{word-spacing:-4.855951pt;}
.ws117{word-spacing:-4.697605pt;}
.ws118{word-spacing:-4.380913pt;}
.wse7{word-spacing:-4.222566pt;}
.ws121{word-spacing:-4.169784pt;}
.ws11d{word-spacing:-4.011438pt;}
.wsfb{word-spacing:-3.853092pt;}
.ws10d{word-spacing:-3.800310pt;}
.wsf9{word-spacing:-3.747528pt;}
.wsa5{word-spacing:-3.628768pt;}
.wsd1{word-spacing:-3.430835pt;}
.wsbd{word-spacing:-3.417112pt;}
.wsdf{word-spacing:-3.378053pt;}
.ws12a{word-spacing:-3.325271pt;}
.ws11e{word-spacing:-3.272489pt;}
.ws17{word-spacing:-3.166925pt;}
.wsb7{word-spacing:-3.108205pt;}
.ws1b{word-spacing:-3.034970pt;}
.wsfd{word-spacing:-3.008579pt;}
.ws4b{word-spacing:-2.968992pt;}
.wsce{word-spacing:-2.903014pt;}
.ws114{word-spacing:-2.850232pt;}
.ws88{word-spacing:-2.837037pt;}
.ws125{word-spacing:-2.797450pt;}
.ws8d{word-spacing:-2.771059pt;}
.wsc7{word-spacing:-2.744668pt;}
.ws5a{word-spacing:-2.705082pt;}
.ws116{word-spacing:-2.639104pt;}
.wsa4{word-spacing:-2.586322pt;}
.ws1c{word-spacing:-2.573126pt;}
.ws44{word-spacing:-2.533540pt;}
.ws11f{word-spacing:-2.480758pt;}
.ws41{word-spacing:-2.441171pt;}
.ws111{word-spacing:-2.427976pt;}
.ws28{word-spacing:-2.375194pt;}
.wsda{word-spacing:-2.322412pt;}
.ws89{word-spacing:-2.309216pt;}
.wse6{word-spacing:-2.269629pt;}
.ws15{word-spacing:-2.243238pt;}
.ws10c{word-spacing:-2.216847pt;}
.ws3c{word-spacing:-2.177261pt;}
.ws10a{word-spacing:-2.111283pt;}
.wsfc{word-spacing:-2.058501pt;}
.ws9a{word-spacing:-2.045306pt;}
.wse3{word-spacing:-2.005719pt;}
.ws19{word-spacing:-1.979328pt;}
.wscd{word-spacing:-1.952937pt;}
.ws26{word-spacing:-1.913350pt;}
.wsc9{word-spacing:-1.900155pt;}
.ws67{word-spacing:-1.847373pt;}
.wsd5{word-spacing:-1.794591pt;}
.ws8e{word-spacing:-1.781395pt;}
.ws40{word-spacing:-1.715418pt;}
.ws110{word-spacing:-1.636244pt;}
.ws7f{word-spacing:-1.583462pt;}
.wsfa{word-spacing:-1.530680pt;}
.ws54{word-spacing:-1.517485pt;}
.wseb{word-spacing:-1.477898pt;}
.wsd0{word-spacing:-1.425116pt;}
.ws87{word-spacing:-1.385530pt;}
.ws33{word-spacing:-1.319552pt;}
.ws122{word-spacing:-1.266770pt;}
.ws46{word-spacing:-1.253574pt;}
.wsd7{word-spacing:-1.213988pt;}
.ws9b{word-spacing:-1.187597pt;}
.wsa3{word-spacing:-1.161206pt;}
.wsa2{word-spacing:-1.121619pt;}
.wse9{word-spacing:-1.108424pt;}
.ws43{word-spacing:-1.055642pt;}
.wsff{word-spacing:-1.002860pt;}
.wsf8{word-spacing:-0.950077pt;}
.ws68{word-spacing:-0.923686pt;}
.ws106{word-spacing:-0.897295pt;}
.ws2c{word-spacing:-0.857709pt;}
.wsd4{word-spacing:-0.844513pt;}
.ws6{word-spacing:-0.791731pt;}
.ws91{word-spacing:-0.738949pt;}
.wscf{word-spacing:-0.686167pt;}
.ws69{word-spacing:-0.659776pt;}
.wsca{word-spacing:-0.633385pt;}
.ws99{word-spacing:-0.593798pt;}
.ws10e{word-spacing:-0.580603pt;}
.wsc{word-spacing:-0.527821pt;}
.ws96{word-spacing:-0.475039pt;}
.ws45{word-spacing:-0.461843pt;}
.ws12b{word-spacing:-0.422257pt;}
.ws16{word-spacing:-0.395866pt;}
.wsb3{word-spacing:-0.394282pt;}
.ws103{word-spacing:-0.369475pt;}
.wsb5{word-spacing:-0.275522pt;}
.ws34{word-spacing:-0.263910pt;}
.ws102{word-spacing:-0.211128pt;}
.ws30{word-spacing:-0.197933pt;}
.ws9d{word-spacing:-0.131955pt;}
.wsb4{word-spacing:-0.131427pt;}
.ws78{word-spacing:-0.072575pt;}
.wsee{word-spacing:-0.052782pt;}
.ws1{word-spacing:0.000000pt;}
.ws113{word-spacing:0.052782pt;}
.ws1d{word-spacing:0.065978pt;}
.ws11{word-spacing:0.131955pt;}
.ws83{word-spacing:0.158346pt;}
.wsb6{word-spacing:0.197141pt;}
.ws1e{word-spacing:0.197933pt;}
.ws64{word-spacing:0.211128pt;}
.ws4d{word-spacing:0.263910pt;}
.ws82{word-spacing:0.316692pt;}
.ws7d{word-spacing:0.329888pt;}
.ws97{word-spacing:0.369475pt;}
.ws48{word-spacing:0.395866pt;}
.ws7c{word-spacing:0.428854pt;}
.ws49{word-spacing:0.461843pt;}
.ws81{word-spacing:0.475039pt;}
.ws3f{word-spacing:0.527821pt;}
.ws7e{word-spacing:0.580603pt;}
.ws52{word-spacing:0.593798pt;}
.wse1{word-spacing:0.633385pt;}
.ws72{word-spacing:0.659776pt;}
.wsf{word-spacing:0.686167pt;}
.wsc8{word-spacing:0.738949pt;}
.ws3b{word-spacing:0.791731pt;}
.ws63{word-spacing:0.844513pt;}
.wse5{word-spacing:0.897295pt;}
.ws18{word-spacing:0.923686pt;}
.ws129{word-spacing:0.950077pt;}
.ws5e{word-spacing:0.989664pt;}
.ws127{word-spacing:1.002860pt;}
.ws65{word-spacing:1.055642pt;}
.wsdb{word-spacing:1.108424pt;}
.wsc0{word-spacing:1.121619pt;}
.wse8{word-spacing:1.161206pt;}
.ws58{word-spacing:1.187597pt;}
.wsc5{word-spacing:1.213988pt;}
.ws23{word-spacing:1.253574pt;}
.wsd6{word-spacing:1.266770pt;}
.ws39{word-spacing:1.319552pt;}
.wsdc{word-spacing:1.372334pt;}
.ws61{word-spacing:1.385530pt;}
.wsd2{word-spacing:1.425116pt;}
.ws6e{word-spacing:1.451507pt;}
.wse0{word-spacing:1.477898pt;}
.ws12{word-spacing:1.517485pt;}
.ws90{word-spacing:1.530680pt;}
.ws80{word-spacing:1.583462pt;}
.ws27{word-spacing:1.649440pt;}
.ws10f{word-spacing:1.689027pt;}
.ws4c{word-spacing:1.715418pt;}
.ws107{word-spacing:1.741809pt;}
.ws76{word-spacing:1.781395pt;}
.ws100{word-spacing:1.794591pt;}
.wsd8{word-spacing:1.847373pt;}
.wsf0{word-spacing:1.900155pt;}
.ws3d{word-spacing:1.913350pt;}
.ws108{word-spacing:2.005719pt;}
.ws62{word-spacing:2.045306pt;}
.ws10b{word-spacing:2.164065pt;}
.wse{word-spacing:2.177261pt;}
.ws5{word-spacing:2.216847pt;}
.ws9f{word-spacing:2.243238pt;}
.wsb{word-spacing:2.309216pt;}
.wsd3{word-spacing:2.375194pt;}
.ws66{word-spacing:2.441171pt;}
.ws11a{word-spacing:2.480758pt;}
.ws124{word-spacing:2.533540pt;}
.ws2b{word-spacing:2.573126pt;}
.ws14{word-spacing:2.639104pt;}
.wsef{word-spacing:2.691886pt;}
.ws4e{word-spacing:2.705082pt;}
.ws115{word-spacing:2.744668pt;}
.ws1f{word-spacing:2.771059pt;}
.wsdd{word-spacing:2.797450pt;}
.ws2a{word-spacing:2.837037pt;}
.ws86{word-spacing:2.850232pt;}
.ws75{word-spacing:2.903014pt;}
.ws38{word-spacing:3.100947pt;}
.wsc6{word-spacing:3.166925pt;}
.ws101{word-spacing:3.219707pt;}
.ws37{word-spacing:3.232902pt;}
.wsd9{word-spacing:3.272489pt;}
.ws47{word-spacing:3.364858pt;}
.ws94{word-spacing:3.430835pt;}
.wsf5{word-spacing:3.483617pt;}
.ws3e{word-spacing:3.496813pt;}
.ws123{word-spacing:3.536399pt;}
.ws93{word-spacing:3.562790pt;}
.ws2d{word-spacing:3.628768pt;}
.ws120{word-spacing:3.641964pt;}
.ws9c{word-spacing:3.694746pt;}
.wsde{word-spacing:3.747528pt;}
.ws5d{word-spacing:3.760723pt;}
.ws56{word-spacing:3.826701pt;}
.wsea{word-spacing:3.853092pt;}
.ws5b{word-spacing:3.892678pt;}
.ws29{word-spacing:3.958656pt;}
.ws2e{word-spacing:4.024634pt;}
.ws3{word-spacing:4.064220pt;}
.ws22{word-spacing:4.090611pt;}
.wse4{word-spacing:4.117002pt;}
.ws50{word-spacing:4.156589pt;}
.wsed{word-spacing:4.169784pt;}
.wsf4{word-spacing:4.222566pt;}
.ws119{word-spacing:4.275348pt;}
.ws21{word-spacing:4.288544pt;}
.ws85{word-spacing:4.380913pt;}
.ws6b{word-spacing:4.420499pt;}
.wsf6{word-spacing:4.433695pt;}
.wsbe{word-spacing:4.486477pt;}
.ws6d{word-spacing:4.552454pt;}
.ws92{word-spacing:4.618432pt;}
.ws74{word-spacing:4.684410pt;}
.ws42{word-spacing:4.750387pt;}
.ws71{word-spacing:4.882342pt;}
.ws109{word-spacing:4.908733pt;}
.ws35{word-spacing:4.948320pt;}
.wsf2{word-spacing:4.961516pt;}
.wsc1{word-spacing:5.014298pt;}
.ws126{word-spacing:5.067080pt;}
.wsec{word-spacing:5.119862pt;}
.ws32{word-spacing:5.146253pt;}
.wsbf{word-spacing:5.212230pt;}
.ws31{word-spacing:5.278208pt;}
.ws98{word-spacing:5.410163pt;}
.wsc4{word-spacing:5.436554pt;}
.ws51{word-spacing:5.542118pt;}
.ws112{word-spacing:5.594900pt;}
.ws8b{word-spacing:5.608096pt;}
.ws104{word-spacing:5.700465pt;}
.ws3a{word-spacing:5.806029pt;}
.ws4f{word-spacing:5.872006pt;}
.ws70{word-spacing:6.069939pt;}
.ws6c{word-spacing:6.135917pt;}
.ws12d{word-spacing:6.175503pt;}
.ws79{word-spacing:6.201894pt;}
.ws7b{word-spacing:6.267872pt;}
.wsc2{word-spacing:6.333850pt;}
.ws59{word-spacing:6.399827pt;}
.ws8a{word-spacing:6.531782pt;}
.ws5c{word-spacing:6.597760pt;}
.ws9{word-spacing:6.663738pt;}
.ws7a{word-spacing:6.729715pt;}
.ws4{word-spacing:6.808888pt;}
.wsa{word-spacing:6.861670pt;}
.wsf1{word-spacing:6.914452pt;}
.ws9e{word-spacing:7.059603pt;}
.ws128{word-spacing:7.125581pt;}
.wsc3{word-spacing:7.283927pt;}
.ws105{word-spacing:7.442273pt;}
.ws53{word-spacing:7.587424pt;}
.ws20{word-spacing:7.653402pt;}
.ws25{word-spacing:7.719379pt;}
.wsf3{word-spacing:7.864530pt;}
.ws55{word-spacing:7.983290pt;}
.ws8c{word-spacing:8.049267pt;}
.ws24{word-spacing:8.181222pt;}
.ws84{word-spacing:8.234004pt;}
.ws6f{word-spacing:8.247200pt;}
.ws73{word-spacing:8.379155pt;}
.ws8f{word-spacing:8.577088pt;}
.ws1a{word-spacing:8.643066pt;}
.ws2f{word-spacing:8.972954pt;}
.ws36{word-spacing:9.500774pt;}
.ws57{word-spacing:10.556416pt;}
.ws4a{word-spacing:12.271834pt;}
.ws8{word-spacing:12.403789pt;}
.ws10{word-spacing:12.997587pt;}
.wsba{word-spacing:21.743710pt;}
.wsaf{word-spacing:23.492248pt;}
.wsb0{word-spacing:27.625085pt;}
.wsa9{word-spacing:35.084776pt;}
.wsad{word-spacing:37.288956pt;}
.wsbc{word-spacing:78.314092pt;}
.wsb8{word-spacing:152.786176pt;}
.wsa0{word-spacing:232.830332pt;}
.ws2{word-spacing:320.123315pt;}
.ws12c{word-spacing:323.448586pt;}
.ws60{word-spacing:925.837930pt;}
.wsd{word-spacing:1166.068309pt;}
.ws95{word-spacing:1299.884077pt;}
.wsa1{word-spacing:1947.430470pt;}
._15{margin-left:-932.429092pt;}
._2{margin-left:-320.122655pt;}
._1b{margin-left:-68.933660pt;}
._1d{margin-left:-21.046854pt;}
._16{margin-left:-17.169351pt;}
._17{margin-left:-15.579950pt;}
._3{margin-left:-8.426659pt;}
._12{margin-left:-7.386852pt;}
._10{margin-left:-6.139875pt;}
._f{margin-left:-4.654060pt;}
._0{margin-left:-3.641964pt;}
._5{margin-left:-2.549374pt;}
._1{margin-left:-1.394766pt;}
._8{width:1.562350pt;}
._6{width:2.654939pt;}
._7{width:4.254236pt;}
._a{width:5.742690pt;}
._9{width:6.988347pt;}
._d{width:8.055865pt;}
._11{width:8.986149pt;}
._e{width:10.628991pt;}
._13{width:11.684633pt;}
._1e{width:17.362665pt;}
._c{width:27.512659pt;}
._26{width:69.883474pt;}
._23{width:184.852609pt;}
._27{width:317.273083pt;}
._25{width:323.448586pt;}
._28{width:326.351601pt;}
._18{width:352.650272pt;}
._1a{width:529.800128pt;}
._19{width:531.488891pt;}
._22{width:891.470198pt;}
._14{width:935.631513pt;}
._21{width:1058.346682pt;}
._1f{width:1083.093032pt;}
._24{width:1119.178029pt;}
._20{width:1241.660165pt;}
._4{width:1446.174890pt;}
._b{width:1451.098139pt;}
._1c{width:1535.562662pt;}
.fse{font-size:34.308352pt;}
.fs10{font-size:39.586560pt;}
.fsd{font-size:42.885440pt;}
.fsf{font-size:45.920410pt;}
.fs3{font-size:46.184320pt;}
.fs4{font-size:52.782080pt;}
.fs12{font-size:53.045990pt;}
.fs2{font-size:59.379840pt;}
.fs7{font-size:61.863237pt;}
.fs8{font-size:65.419430pt;}
.fsb{font-size:65.713690pt;}
.fs0{font-size:65.977600pt;}
.fs5{font-size:68.461657pt;}
.fsa{font-size:72.575360pt;}
.fs11{font-size:72.839270pt;}
.fs9{font-size:78.818161pt;}
.fsc{font-size:79.173120pt;}
.fs6{font-size:82.483876pt;}
.fs1{font-size:92.368640pt;}
.y1f2{bottom:-1207.341422pt;}
.y1db{bottom:-1201.136888pt;}
.y21b{bottom:-1193.010592pt;}
.y1f1{bottom:-1184.579150pt;}
.y1da{bottom:-1178.374616pt;}
.y21a{bottom:-1170.248320pt;}
.y20e{bottom:-1149.914189pt;}
.y20d{bottom:-1127.151917pt;}
.y1b2{bottom:-1056.381704pt;}
.yc8{bottom:-1043.325891pt;}
.y1b1{bottom:-1033.619432pt;}
.yc7{bottom:-1020.563619pt;}
.y1c3{bottom:-1008.480482pt;}
.y1c2{bottom:-985.718210pt;}
.y138{bottom:-964.013724pt;}
.y196{bottom:-943.510689pt;}
.y137{bottom:-941.251452pt;}
.y175{bottom:-920.851837pt;}
.y195{bottom:-920.748417pt;}
.y174{bottom:-898.089565pt;}
.y43{bottom:-780.832575pt;}
.y42{bottom:-758.172354pt;}
.y34{bottom:-728.420695pt;}
.y33{bottom:-704.706581pt;}
.y192{bottom:-116.458843pt;}
.y1f7{bottom:-71.610537pt;}
.y36{bottom:-64.016643pt;}
.y21d{bottom:-56.876320pt;}
.y1f6{bottom:-52.602852pt;}
.y45{bottom:-47.042584pt;}
.y21c{bottom:-40.843763pt;}
.yca{bottom:-38.622165pt;}
.y1bc{bottom:-31.687920pt;}
.y177{bottom:-30.743087pt;}
.yc9{bottom:-22.982307pt;}
.y13a{bottom:-22.450561pt;}
.yba{bottom:-21.196426pt;}
.y35{bottom:-18.232910pt;}
.y191{bottom:-17.691168pt;}
.y199{bottom:-15.398842pt;}
.y210{bottom:-13.779917pt;}
.y132{bottom:-12.579751pt;}
.y1e0{bottom:-9.582422pt;}
.y176{bottom:-8.975428pt;}
.y1ec{bottom:-8.265476pt;}
.y139{bottom:-6.810703pt;}
.y1a1{bottom:-6.570775pt;}
.yb9{bottom:-5.556567pt;}
.y1bb{bottom:-3.578889pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.193333pt;}
.y198{bottom:0.241016pt;}
.y44{bottom:0.255663pt;}
.y1a0{bottom:1.150583pt;}
.y1eb{bottom:2.015847pt;}
.y20f{bottom:2.252640pt;}
.y131{bottom:3.060107pt;}
.y1e6{bottom:3.103784pt;}
.y1b8{bottom:3.165473pt;}
.y1f5{bottom:3.217563pt;}
.y1c9{bottom:3.450727pt;}
.y1b5{bottom:7.263474pt;}
.y1e9{bottom:7.373591pt;}
.y1c7{bottom:7.904611pt;}
.y1f4{bottom:8.559373pt;}
.y1de{bottom:9.420117pt;}
.y19b{bottom:9.501269pt;}
.y17d{bottom:10.095233pt;}
.y179{bottom:10.095398pt;}
.y1df{bottom:10.213827pt;}
.y17b{bottom:10.291681pt;}
.y1ed{bottom:12.104910pt;}
.y1bd{bottom:12.362058pt;}
.y1ca{bottom:12.943156pt;}
.y1b4{bottom:15.572462pt;}
.y1ba{bottom:15.576652pt;}
.y1e4{bottom:15.679643pt;}
.y1f3{bottom:16.872946pt;}
.y1dc{bottom:18.920891pt;}
.y1e8{bottom:25.385871pt;}
.y1c6{bottom:25.916331pt;}
.y1b7{bottom:28.766102pt;}
.y1e5{bottom:28.876614pt;}
.y1ea{bottom:29.235169pt;}
.y1c8{bottom:30.302687pt;}
.y1b6{bottom:30.619544pt;}
.y1e3{bottom:38.449436pt;}
.y1f0{bottom:42.604210pt;}
.y1c5{bottom:44.318144pt;}
.y1d9{bottom:48.808744pt;}
.y3{bottom:54.021469pt;}
.y219{bottom:56.935040pt;}
.y25{bottom:93.511537pt;}
.ye0{bottom:96.862704pt;}
.yb6{bottom:97.038864pt;}
.y18b{bottom:97.799916pt;}
.y10f{bottom:98.423404pt;}
.ya7{bottom:98.439404pt;}
.y83{bottom:98.440888pt;}
.y171{bottom:98.610286pt;}
.y12a{bottom:98.910154pt;}
.y38{bottom:99.098685pt;}
.y1ab{bottom:99.854623pt;}
.y20c{bottom:100.031443pt;}
.y51{bottom:102.906582pt;}
.y217{bottom:103.441990pt;}
.y252{bottom:104.685338pt;}
.y289{bottom:104.685503pt;}
.y24{bottom:109.346161pt;}
.y1d8{bottom:113.455430pt;}
.y37{bottom:114.933309pt;}
.ydf{bottom:116.655984pt;}
.yb5{bottom:116.832144pt;}
.y18a{bottom:117.593196pt;}
.y8{bottom:117.919455pt;}
.y10e{bottom:118.216684pt;}
.ya6{bottom:118.232684pt;}
.y82{bottom:118.234168pt;}
.y170{bottom:118.403566pt;}
.y129{bottom:118.703434pt;}
.y216{bottom:119.276614pt;}
.y1aa{bottom:119.647903pt;}
.y251{bottom:120.519962pt;}
.y288{bottom:120.520127pt;}
.y50{bottom:122.699862pt;}
.y23{bottom:125.180785pt;}
.y1dd{bottom:132.182988pt;}
.y215{bottom:135.111238pt;}
.y1e1{bottom:135.471146pt;}
.y1d7{bottom:135.473456pt;}
.y250{bottom:136.354586pt;}
.y287{bottom:136.354751pt;}
.yde{bottom:136.449264pt;}
.yb4{bottom:136.625424pt;}
.y189{bottom:137.386476pt;}
.y10d{bottom:138.009964pt;}
.ya5{bottom:138.025964pt;}
.y81{bottom:138.027448pt;}
.y16f{bottom:138.196846pt;}
.y128{bottom:138.496714pt;}
.y1a9{bottom:139.441183pt;}
.y22{bottom:141.015409pt;}
.y4f{bottom:142.493142pt;}
.y214{bottom:150.945862pt;}
.y24f{bottom:152.189210pt;}
.y286{bottom:152.189375pt;}
.ydd{bottom:156.242544pt;}
.yb3{bottom:156.418704pt;}
.y21{bottom:156.850033pt;}
.y188{bottom:157.179756pt;}
.y10c{bottom:157.803244pt;}
.ya4{bottom:157.819244pt;}
.y80{bottom:157.820728pt;}
.y16e{bottom:157.990126pt;}
.y127{bottom:158.289994pt;}
.y1a8{bottom:159.234463pt;}
.y4e{bottom:162.286422pt;}
.y18e{bottom:165.660206pt;}
.y1b3{bottom:167.436799pt;}
.y24e{bottom:168.023834pt;}
.y285{bottom:168.023999pt;}
.y213{bottom:170.079202pt;}
.y31{bottom:171.862100pt;}
.y20{bottom:172.684657pt;}
.ydc{bottom:176.035824pt;}
.yb2{bottom:176.211984pt;}
.y187{bottom:176.973036pt;}
.y10b{bottom:177.596524pt;}
.ya3{bottom:177.612524pt;}
.y7f{bottom:177.614008pt;}
.y16d{bottom:177.783406pt;}
.y126{bottom:178.083274pt;}
.y1a7{bottom:179.027743pt;}
.y4d{bottom:182.079702pt;}
.y24d{bottom:183.858458pt;}
.y284{bottom:183.858623pt;}
.y1f{bottom:188.519281pt;}
.y1d6{bottom:190.944123pt;}
.y1b0{bottom:193.563928pt;}
.ydb{bottom:195.829104pt;}
.yb1{bottom:196.005264pt;}
.y186{bottom:196.766316pt;}
.y10a{bottom:197.389804pt;}
.ya2{bottom:197.405804pt;}
.y7e{bottom:197.407288pt;}
.y16c{bottom:197.576686pt;}
.y125{bottom:197.876554pt;}
.y1a6{bottom:198.821023pt;}
.y24c{bottom:199.693082pt;}
.y283{bottom:199.693247pt;}
.y212{bottom:199.769122pt;}
.y4c{bottom:201.872982pt;}
.y1e{bottom:204.353905pt;}
.yc6{bottom:206.619741pt;}
.y1d5{bottom:210.737403pt;}
.y124{bottom:214.372604pt;}
.y1c4{bottom:215.338021pt;}
.y24b{bottom:215.527706pt;}
.y282{bottom:215.527871pt;}
.yda{bottom:215.622384pt;}
.yb0{bottom:215.798544pt;}
.y185{bottom:216.559596pt;}
.y109{bottom:217.183084pt;}
.ya1{bottom:217.199084pt;}
.y7d{bottom:217.200568pt;}
.y16b{bottom:217.369966pt;}
.y123{bottom:217.669834pt;}
.y1d{bottom:220.188529pt;}
.y4b{bottom:221.666262pt;}
.y193{bottom:228.997052pt;}
.y1d4{bottom:230.530683pt;}
.y24a{bottom:231.362330pt;}
.y281{bottom:231.362495pt;}
.y218{bottom:234.252168pt;}
.yd9{bottom:235.415664pt;}
.yaf{bottom:235.591824pt;}
.y1c{bottom:236.023153pt;}
.y184{bottom:236.352876pt;}
.y108{bottom:236.976364pt;}
.ya0{bottom:236.992364pt;}
.y7c{bottom:236.993848pt;}
.y16a{bottom:237.163246pt;}
.y122{bottom:237.463114pt;}
.y4a{bottom:241.459542pt;}
.y1c1{bottom:241.465150pt;}
.y20b{bottom:244.147159pt;}
.y1a5{bottom:245.005343pt;}
.y249{bottom:247.196954pt;}
.y280{bottom:247.197119pt;}
.y1d3{bottom:250.323963pt;}
.y1b{bottom:251.857777pt;}
.yd8{bottom:255.208944pt;}
.yae{bottom:255.385104pt;}
.y107{bottom:256.769644pt;}
.y9f{bottom:256.785644pt;}
.y7b{bottom:256.787128pt;}
.y169{bottom:256.956526pt;}
.y121{bottom:257.256394pt;}
.y211{bottom:259.148962pt;}
.y20a{bottom:259.156384pt;}
.y1a4{bottom:260.839967pt;}
.y49{bottom:261.252822pt;}
.y248{bottom:263.031578pt;}
.y27f{bottom:263.031743pt;}
.y1a{bottom:267.692401pt;}
.y1d2{bottom:270.117243pt;}
.yd7{bottom:275.002224pt;}
.yad{bottom:275.178384pt;}
.y106{bottom:276.562924pt;}
.y9e{bottom:276.578924pt;}
.y7a{bottom:276.580408pt;}
.y1a3{bottom:276.674591pt;}
.y168{bottom:276.749806pt;}
.y120{bottom:277.049674pt;}
.y247{bottom:278.866202pt;}
.y27e{bottom:278.866367pt;}
.y48{bottom:281.046102pt;}
.y183{bottom:282.537196pt;}
.y7{bottom:282.655791pt;}
.y19{bottom:283.527025pt;}
.y197{bottom:285.651999pt;}
.y136{bottom:285.931908pt;}
.y1d1{bottom:289.910523pt;}
.y143{bottom:291.056389pt;}
.y1a2{bottom:292.509215pt;}
.y11f{bottom:293.545724pt;}
.y130{bottom:294.023896pt;}
.y246{bottom:294.700826pt;}
.y27d{bottom:294.700991pt;}
.yd6{bottom:294.795504pt;}
.yac{bottom:294.971664pt;}
.y105{bottom:296.356204pt;}
.y9d{bottom:296.372204pt;}
.y79{bottom:296.373688pt;}
.y167{bottom:296.543086pt;}
.y11e{bottom:296.842954pt;}
.y182{bottom:298.371820pt;}
.y18{bottom:299.361649pt;}
.y194{bottom:306.434943pt;}
.y1d0{bottom:309.703803pt;}
.y209{bottom:309.827181pt;}
.y245{bottom:310.535450pt;}
.y27c{bottom:310.535615pt;}
.y181{bottom:314.206444pt;}
.yd5{bottom:314.588784pt;}
.yab{bottom:314.764944pt;}
.y104{bottom:316.149484pt;}
.y9c{bottom:316.165484pt;}
.y78{bottom:316.166968pt;}
.y166{bottom:316.336366pt;}
.y11d{bottom:316.636234pt;}
.y17{bottom:325.092913pt;}
.y244{bottom:326.370074pt;}
.y27b{bottom:326.370239pt;}
.y47{bottom:327.230422pt;}
.y173{bottom:329.093795pt;}
.y1cf{bottom:329.497083pt;}
.y208{bottom:329.620461pt;}
.y180{bottom:330.041068pt;}
.yd4{bottom:334.382064pt;}
.yaa{bottom:334.558224pt;}
.y103{bottom:335.942764pt;}
.y9b{bottom:335.958764pt;}
.y77{bottom:335.960248pt;}
.y165{bottom:336.129646pt;}
.y11c{bottom:336.429514pt;}
.y243{bottom:342.204698pt;}
.y27a{bottom:342.204863pt;}
.y46{bottom:343.065046pt;}
.y17f{bottom:345.875692pt;}
.y19d{bottom:348.822271pt;}
.y1ce{bottom:349.290363pt;}
.y207{bottom:349.413741pt;}
.yd3{bottom:354.175344pt;}
.ya9{bottom:354.351504pt;}
.y102{bottom:355.736044pt;}
.y9a{bottom:355.752044pt;}
.y76{bottom:355.753528pt;}
.y164{bottom:355.922926pt;}
.y11b{bottom:356.222794pt;}
.y242{bottom:358.039322pt;}
.y279{bottom:358.039487pt;}
.y17e{bottom:361.710316pt;}
.y1cd{bottom:369.083643pt;}
.y206{bottom:369.207021pt;}
.y241{bottom:373.873946pt;}
.y278{bottom:373.874111pt;}
.ya8{bottom:374.144784pt;}
.y16{bottom:374.576113pt;}
.y101{bottom:375.529324pt;}
.y99{bottom:375.545324pt;}
.y75{bottom:375.546808pt;}
.y40{bottom:375.586084pt;}
.y163{bottom:375.716206pt;}
.y11a{bottom:376.016074pt;}
.y144{bottom:378.271683pt;}
.y205{bottom:385.701421pt;}
.y1cc{bottom:388.876923pt;}
.y203{bottom:389.000301pt;}
.y240{bottom:389.708570pt;}
.y277{bottom:389.708735pt;}
.y15{bottom:390.410737pt;}
.y100{bottom:395.322604pt;}
.y98{bottom:395.338604pt;}
.y74{bottom:395.340088pt;}
.y162{bottom:395.509486pt;}
.y119{bottom:395.809354pt;}
.yb8{bottom:401.391884pt;}
.y204{bottom:402.195821pt;}
.y23f{bottom:405.543194pt;}
.y276{bottom:405.543359pt;}
.y14{bottom:406.245361pt;}
.yd2{bottom:408.606864pt;}
.y202{bottom:408.793581pt;}
.y118{bottom:412.305404pt;}
.yff{bottom:415.115884pt;}
.y97{bottom:415.131884pt;}
.y73{bottom:415.133368pt;}
.y161{bottom:415.302766pt;}
.y117{bottom:415.602634pt;}
.y172{bottom:418.022876pt;}
.y19a{bottom:418.057515pt;}
.y23e{bottom:421.377818pt;}
.y275{bottom:421.377983pt;}
.y13{bottom:422.079985pt;}
.y1c0{bottom:423.357165pt;}
.yd1{bottom:424.441488pt;}
.y19c{bottom:425.428843pt;}
.y201{bottom:428.586861pt;}
.y116{bottom:432.098684pt;}
.yc1{bottom:432.339172pt;}
.yfe{bottom:434.909164pt;}
.y96{bottom:434.925164pt;}
.y72{bottom:434.926648pt;}
.y160{bottom:435.096046pt;}
.y115{bottom:435.395914pt;}
.y23d{bottom:437.212442pt;}
.y274{bottom:437.212607pt;}
.y12{bottom:437.914609pt;}
.y1bf{bottom:438.359133pt;}
.y1cb{bottom:438.360123pt;}
.yd0{bottom:440.276112pt;}
.y19f{bottom:441.941585pt;}
.yc0{bottom:448.173796pt;}
.y200{bottom:448.380141pt;}
.y23c{bottom:453.047066pt;}
.y273{bottom:453.047231pt;}
.y11{bottom:453.749233pt;}
.yfd{bottom:454.702444pt;}
.y95{bottom:454.718444pt;}
.y71{bottom:454.719928pt;}
.y19e{bottom:454.805040pt;}
.y15f{bottom:454.889326pt;}
.y114{bottom:455.189194pt;}
.ycf{bottom:456.110736pt;}
.y41{bottom:463.509794pt;}
.ybf{bottom:464.008420pt;}
.y142{bottom:465.487143pt;}
.y23b{bottom:468.881690pt;}
.y272{bottom:468.881855pt;}
.y10{bottom:469.583857pt;}
.yce{bottom:471.945360pt;}
.yfc{bottom:474.495724pt;}
.y94{bottom:474.511724pt;}
.y70{bottom:474.513208pt;}
.y15e{bottom:474.682606pt;}
.y113{bottom:474.982474pt;}
.y1ff{bottom:476.420621pt;}
.ybe{bottom:479.843044pt;}
.y23a{bottom:484.716314pt;}
.y271{bottom:484.716479pt;}
.yf{bottom:485.418481pt;}
.ycd{bottom:487.779984pt;}
.y1af{bottom:492.283964pt;}
.yfb{bottom:494.289004pt;}
.y93{bottom:494.305004pt;}
.y6f{bottom:494.306488pt;}
.y15d{bottom:494.475886pt;}
.y112{bottom:494.775754pt;}
.ybd{bottom:495.677668pt;}
.y239{bottom:500.550938pt;}
.y270{bottom:500.551103pt;}
.ye{bottom:501.253105pt;}
.ycc{bottom:503.614608pt;}
.y190{bottom:505.241946pt;}
.y1fe{bottom:506.110541pt;}
.y1ae{bottom:506.116479pt;}
.y1be{bottom:506.118128pt;}
.y1b9{bottom:507.667282pt;}
.y53{bottom:511.511137pt;}
.ybc{bottom:511.512292pt;}
.yfa{bottom:514.082284pt;}
.y92{bottom:514.098284pt;}
.y6e{bottom:514.099768pt;}
.y15c{bottom:514.269166pt;}
.y111{bottom:514.569034pt;}
.y238{bottom:516.385562pt;}
.y26f{bottom:516.385727pt;}
.yd{bottom:517.087729pt;}
.ycb{bottom:519.449232pt;}
.y18f{bottom:526.023900pt;}
.ybb{bottom:527.346916pt;}
.y237{bottom:532.220186pt;}
.y26e{bottom:532.220351pt;}
.yc{bottom:532.922353pt;}
.yf9{bottom:533.875564pt;}
.y91{bottom:533.891564pt;}
.y6d{bottom:533.893048pt;}
.y15b{bottom:534.062446pt;}
.y110{bottom:534.362314pt;}
.y29d{bottom:536.179007pt;}
.y55{bottom:537.184671pt;}
.y1fd{bottom:545.697101pt;}
.y236{bottom:548.054810pt;}
.y26d{bottom:548.054975pt;}
.yb{bottom:548.756977pt;}
.y29c{bottom:552.013631pt;}
.y17c{bottom:552.745837pt;}
.yf8{bottom:553.668844pt;}
.y90{bottom:553.684844pt;}
.y6c{bottom:553.686328pt;}
.y141{bottom:553.731193pt;}
.y15a{bottom:553.855726pt;}
.y18d{bottom:561.336431pt;}
.y235{bottom:563.889434pt;}
.y26c{bottom:563.889599pt;}
.y29b{bottom:567.848255pt;}
.y140{bottom:569.565817pt;}
.yf7{bottom:573.462124pt;}
.y8f{bottom:573.478124pt;}
.y6b{bottom:573.479608pt;}
.y159{bottom:573.649006pt;}
.y32{bottom:573.796301pt;}
.ya{bottom:574.488241pt;}
.yc5{bottom:575.763772pt;}
.y234{bottom:579.724058pt;}
.y26b{bottom:579.724223pt;}
.y12e{bottom:583.219552pt;}
.yb7{bottom:583.657992pt;}
.y29a{bottom:583.682879pt;}
.y13f{bottom:585.400441pt;}
.yf6{bottom:593.255404pt;}
.y8e{bottom:593.271404pt;}
.y6a{bottom:593.272888pt;}
.y158{bottom:593.442286pt;}
.y233{bottom:595.558682pt;}
.y26a{bottom:595.558847pt;}
.y54{bottom:597.549227pt;}
.y12d{bottom:599.054176pt;}
.y13e{bottom:601.235065pt;}
.y1fc{bottom:605.076941pt;}
.y299{bottom:609.414143pt;}
.y232{bottom:611.393306pt;}
.y269{bottom:611.393471pt;}
.yf5{bottom:613.048684pt;}
.y8d{bottom:613.064684pt;}
.y69{bottom:613.066168pt;}
.y157{bottom:613.235566pt;}
.y12c{bottom:614.888800pt;}
.y13d{bottom:617.069689pt;}
.y1fb{bottom:624.870221pt;}
.y298{bottom:625.248767pt;}
.y231{bottom:627.227930pt;}
.y268{bottom:627.228095pt;}
.y12b{bottom:630.723424pt;}
.yf4{bottom:632.841964pt;}
.yc4{bottom:632.857964pt;}
.y68{bottom:632.859448pt;}
.y13c{bottom:632.904313pt;}
.y156{bottom:633.028846pt;}
.y297{bottom:641.083391pt;}
.y230{bottom:643.062554pt;}
.y267{bottom:643.062719pt;}
.y1fa{bottom:644.663501pt;}
.y1ad{bottom:647.518846pt;}
.y13b{bottom:648.738937pt;}
.yf3{bottom:652.635244pt;}
.y8c{bottom:652.651244pt;}
.y67{bottom:652.652728pt;}
.y155{bottom:652.822126pt;}
.y296{bottom:656.918015pt;}
.y22f{bottom:658.897178pt;}
.y266{bottom:658.897343pt;}
.y1f9{bottom:664.456781pt;}
.yf2{bottom:672.428524pt;}
.yc3{bottom:672.444524pt;}
.y66{bottom:672.446008pt;}
.y154{bottom:672.615406pt;}
.y295{bottom:672.752639pt;}
.y22e{bottom:674.731802pt;}
.y265{bottom:674.731967pt;}
.y12f{bottom:687.247772pt;}
.y22d{bottom:690.566426pt;}
.y264{bottom:690.566591pt;}
.yf1{bottom:692.221804pt;}
.yc2{bottom:692.237804pt;}
.y65{bottom:692.239288pt;}
.y153{bottom:692.408686pt;}
.y1ef{bottom:692.821230pt;}
.y294{bottom:698.483903pt;}
.y135{bottom:705.051827pt;}
.y22c{bottom:706.401050pt;}
.y263{bottom:706.401215pt;}
.y17a{bottom:708.718533pt;}
.y1f8{bottom:708.991661pt;}
.y1ee{bottom:708.996114pt;}
.yf0{bottom:712.015084pt;}
.y8b{bottom:712.031084pt;}
.y64{bottom:712.032568pt;}
.y152{bottom:712.201966pt;}
.y293{bottom:714.318527pt;}
.ye1{bottom:714.847173pt;}
.y178{bottom:716.238329pt;}
.y18c{bottom:716.249857pt;}
.y22b{bottom:722.235674pt;}
.y262{bottom:722.235839pt;}
.y292{bottom:730.153151pt;}
.yef{bottom:731.808364pt;}
.y8a{bottom:731.824364pt;}
.y63{bottom:731.825848pt;}
.y151{bottom:731.995246pt;}
.y22a{bottom:738.070298pt;}
.y261{bottom:738.070463pt;}
.y291{bottom:745.987775pt;}
.yee{bottom:751.601644pt;}
.y89{bottom:751.617644pt;}
.y62{bottom:751.619128pt;}
.y150{bottom:751.788526pt;}
.y229{bottom:753.904922pt;}
.y260{bottom:753.905087pt;}
.y290{bottom:761.822399pt;}
.y228{bottom:769.739546pt;}
.y25f{bottom:769.739711pt;}
.yed{bottom:771.394924pt;}
.y88{bottom:771.410924pt;}
.y61{bottom:771.412408pt;}
.y14f{bottom:771.581806pt;}
.y1ac{bottom:773.759397pt;}
.y52{bottom:777.499832pt;}
.y28f{bottom:777.657023pt;}
.y227{bottom:785.574170pt;}
.y25e{bottom:785.574335pt;}
.yec{bottom:791.188204pt;}
.y87{bottom:791.204204pt;}
.y60{bottom:791.205688pt;}
.y30{bottom:791.370632pt;}
.y14e{bottom:791.375251pt;}
.y28e{bottom:793.491647pt;}
.y226{bottom:801.408794pt;}
.y25d{bottom:801.408959pt;}
.y28d{bottom:809.326271pt;}
.yeb{bottom:810.981484pt;}
.y86{bottom:810.997484pt;}
.y5f{bottom:810.998968pt;}
.y2f{bottom:811.163912pt;}
.y14d{bottom:811.168531pt;}
.y225{bottom:817.243418pt;}
.y25c{bottom:817.243583pt;}
.y134{bottom:820.507990pt;}
.y28c{bottom:825.160895pt;}
.yea{bottom:830.775754pt;}
.y85{bottom:830.790764pt;}
.y5e{bottom:830.792248pt;}
.y2e{bottom:830.957192pt;}
.y14c{bottom:830.961811pt;}
.y224{bottom:833.078042pt;}
.y25b{bottom:833.078207pt;}
.y28b{bottom:840.995519pt;}
.y223{bottom:848.912666pt;}
.y25a{bottom:848.912831pt;}
.y1e2{bottom:849.529576pt;}
.ye9{bottom:850.569034pt;}
.y84{bottom:850.584044pt;}
.y5d{bottom:850.585528pt;}
.y2d{bottom:850.750472pt;}
.y14b{bottom:850.755091pt;}
.y6{bottom:851.580636pt;}
.y28a{bottom:856.830143pt;}
.y222{bottom:864.747290pt;}
.y259{bottom:864.747455pt;}
.y1e7{bottom:865.023407pt;}
.ye8{bottom:870.362314pt;}
.y3f{bottom:870.377324pt;}
.y5c{bottom:870.378808pt;}
.y2c{bottom:870.543752pt;}
.y14a{bottom:870.548371pt;}
.y221{bottom:880.581914pt;}
.y258{bottom:880.582079pt;}
.ye7{bottom:890.155594pt;}
.y3e{bottom:890.170604pt;}
.y5b{bottom:890.172088pt;}
.y2b{bottom:890.337032pt;}
.y149{bottom:890.341651pt;}
.y257{bottom:896.416703pt;}
.ye6{bottom:909.948874pt;}
.y3d{bottom:909.963884pt;}
.y5a{bottom:909.965368pt;}
.y2a{bottom:910.130312pt;}
.y148{bottom:910.134931pt;}
.y256{bottom:912.251327pt;}
.y220{bottom:916.209983pt;}
.y5{bottom:922.805104pt;}
.y255{bottom:928.085951pt;}
.ye5{bottom:929.742154pt;}
.y3c{bottom:929.757164pt;}
.y59{bottom:929.758648pt;}
.y29{bottom:929.923592pt;}
.y147{bottom:929.928211pt;}
.y254{bottom:943.920575pt;}
.ye4{bottom:949.535434pt;}
.y3b{bottom:949.550444pt;}
.y58{bottom:949.551928pt;}
.y28{bottom:949.716872pt;}
.y146{bottom:949.721491pt;}
.y4{bottom:950.515696pt;}
.y253{bottom:959.755199pt;}
.y133{bottom:960.679545pt;}
.ye3{bottom:969.328714pt;}
.y3a{bottom:969.343724pt;}
.y57{bottom:969.345208pt;}
.y21f{bottom:975.589823pt;}
.ye2{bottom:989.121994pt;}
.y39{bottom:989.137004pt;}
.y56{bottom:989.138488pt;}
.y27{bottom:989.303432pt;}
.y145{bottom:989.308051pt;}
.y21e{bottom:991.424447pt;}
.y2{bottom:1024.069669pt;}
.y9{bottom:1031.520189pt;}
.y26{bottom:1032.346559pt;}
.h45{height:12.342760pt;}
.h22{height:15.252372pt;}
.h27{height:22.437332pt;}
.h23{height:22.773818pt;}
.h24{height:25.731264pt;}
.h3e{height:35.898412pt;}
.h3a{height:37.249304pt;}
.h7{height:38.169072pt;}
.h2a{height:38.501228pt;}
.h31{height:40.068196pt;}
.h5{height:41.229557pt;}
.h43{height:42.781525pt;}
.h10{height:43.602305pt;}
.h15{height:43.798431pt;}
.h8{height:44.019430pt;}
.h44{height:44.239527pt;}
.h38{height:44.536426pt;}
.hc{height:45.629962pt;}
.h6{height:45.810619pt;}
.h9{height:46.184320pt;}
.h29{height:47.081079pt;}
.h46{height:47.085698pt;}
.h1e{height:47.086358pt;}
.ha{height:47.711341pt;}
.h13{height:48.371761pt;}
.h35{height:48.547658pt;}
.h2d{height:50.411010pt;}
.h12{height:54.558782pt;}
.h34{height:54.589866pt;}
.h16{height:54.804190pt;}
.h3{height:55.024287pt;}
.he{height:57.095952pt;}
.h2f{height:58.476772pt;}
.h1a{height:58.857947pt;}
.h1c{height:60.900263pt;}
.h4{height:64.658048pt;}
.h11{height:65.733114pt;}
.h18{height:66.029145pt;}
.h1d{height:68.213210pt;}
.h42{height:68.219808pt;}
.hd{height:68.790264pt;}
.h1b{height:72.046869pt;}
.h19{height:84.018350pt;}
.h3b{height:86.047969pt;}
.h3f{height:97.271600pt;}
.h2b{height:97.288359pt;}
.h3d{height:109.489460pt;}
.h39{height:118.510532pt;}
.h32{height:119.300020pt;}
.h2e{height:119.300680pt;}
.h3c{height:119.311764pt;}
.h40{height:119.441657pt;}
.h37{height:121.685374pt;}
.h36{height:127.250453pt;}
.h2c{height:131.316042pt;}
.h30{height:133.326990pt;}
.h33{height:134.749863pt;}
.h41{height:138.303812pt;}
.h17{height:175.348668pt;}
.h26{height:211.497795pt;}
.h20{height:271.925029pt;}
.h1f{height:289.729084pt;}
.h21{height:313.469474pt;}
.h14{height:393.318865pt;}
.h28{height:441.876729pt;}
.hf{height:458.696068pt;}
.h25{height:498.530044pt;}
.hb{height:559.011710pt;}
.h2{height:1122.138774pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w12{width:7.404336pt;}
.w9{width:7.719379pt;}
.wc{width:8.113595pt;}
.w14{width:8.313178pt;}
.we{width:8.707394pt;}
.wb{width:8.906976pt;}
.w13{width:13.063565pt;}
.w15{width:13.459430pt;}
.wd{width:13.657363pt;}
.wa{width:13.856945pt;}
.wf{width:14.053229pt;}
.w1d{width:39.274816pt;}
.w1a{width:118.759680pt;}
.w1c{width:214.608638pt;}
.w1b{width:238.058727pt;}
.w19{width:256.969556pt;}
.w18{width:361.944866pt;}
.w7{width:387.921897pt;}
.w17{width:407.159316pt;}
.w6{width:438.101161pt;}
.w8{width:441.878378pt;}
.w4{width:497.448012pt;}
.w10{width:503.384346pt;}
.w2{width:542.367211pt;}
.w11{width:573.526782pt;}
.w5{width:579.458169pt;}
.w16{width:592.945640pt;}
.w3{width:610.164144pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x61{left:-281.603613pt;}
.x20{left:-110.237518pt;}
.x25{left:-86.496304pt;}
.x50{left:-84.209685pt;}
.x39{left:-82.714138pt;}
.x12{left:-49.269268pt;}
.x7{left:-40.943389pt;}
.x9{left:-37.437835pt;}
.x30{left:-34.167061pt;}
.x46{left:-16.665612pt;}
.x14{left:-9.344243pt;}
.x0{left:0.000000pt;}
.x1b{left:0.906532pt;}
.x28{left:5.542448pt;}
.x2c{left:6.728396pt;}
.x52{left:7.725581pt;}
.x2a{left:10.489119pt;}
.x51{left:15.279488pt;}
.x3b{left:16.846061pt;}
.x47{left:35.193771pt;}
.x48{left:43.703892pt;}
.x59{left:45.341291pt;}
.x5a{left:61.424486pt;}
.x55{left:66.758808pt;}
.x54{left:70.122478pt;}
.x57{left:81.641507pt;}
.x56{left:85.774344pt;}
.x1{left:90.601786pt;}
.x23{left:91.770744pt;}
.x4{left:92.939537pt;}
.x3c{left:95.425382pt;}
.x36{left:99.623233pt;}
.x63{left:104.641819pt;}
.x38{left:107.433826pt;}
.x31{left:108.919477pt;}
.xd{left:114.444606pt;}
.x10{left:116.312102pt;}
.x44{left:121.844199pt;}
.x6{left:124.500087pt;}
.x43{left:127.963093pt;}
.x4a{left:133.165229pt;}
.xc{left:135.019720pt;}
.x4b{left:141.280870pt;}
.x11{left:146.958862pt;}
.x45{left:158.206697pt;}
.x3e{left:168.091329pt;}
.x3d{left:173.464017pt;}
.x3{left:174.762152pt;}
.x4f{left:177.100728pt;}
.x1a{left:178.971193pt;}
.x29{left:179.891581pt;}
.x2d{left:180.879596pt;}
.x1e{left:184.135095pt;}
.x5{left:186.881248pt;}
.x2b{left:189.986154pt;}
.x2e{left:191.370034pt;}
.x24{left:192.317307pt;}
.x1f{left:201.721919pt;}
.x17{left:203.658692pt;}
.x53{left:243.517904pt;}
.x60{left:270.610781pt;}
.x49{left:290.315816pt;}
.x58{left:295.859584pt;}
.x62{left:318.726569pt;}
.x37{left:319.705043pt;}
.x16{left:343.083051pt;}
.x5f{left:391.708872pt;}
.x22{left:399.439442pt;}
.x1d{left:407.372119pt;}
.x5b{left:415.158631pt;}
.x4c{left:426.113057pt;}
.x4e{left:431.731709pt;}
.x1c{left:437.738284pt;}
.x33{left:443.112515pt;}
.x27{left:445.349130pt;}
.x34{left:449.248432pt;}
.x35{left:459.145072pt;}
.x21{left:490.092664pt;}
.x41{left:497.634992pt;}
.x40{left:498.620698pt;}
.xe{left:511.395537pt;}
.x26{left:513.833879pt;}
.x5e{left:516.034397pt;}
.x3a{left:517.616045pt;}
.x5c{left:522.120361pt;}
.x5d{left:523.435460pt;}
.x13{left:531.261895pt;}
.x2f{left:536.474191pt;}
.x4d{left:572.001215pt;}
.x3f{left:577.374787pt;}
.x42{left:581.921468pt;}
.x8{left:584.491930pt;}
.x32{left:589.723788pt;}
.x15{left:590.985940pt;}
.xa{left:598.004967pt;}
.x18{left:603.889535pt;}
.xb{left:611.207085pt;}
.x19{left:623.169344pt;}
.xf{left:673.401885pt;}
.x2{left:684.270210pt;}
}


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