
/* 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_85b082893c78.woff")format("woff");}.ff1{font-family:ff1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_c2e298b7f916.woff")format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_a5dcd51afbac.woff")format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_bc8b2701ef43.woff")format("woff");}.ff4{font-family:ff4;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_be30a491bc4a.woff")format("woff");}.ff5{font-family:ff5;line-height:1.014160;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_435c3f632ac3.woff")format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_678109b5f6ea.woff")format("woff");}.ff7{font-family:ff7;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_d125d5a73581.woff")format("woff");}.ff8{font-family:ff8;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_be30a491bc4a.woff")format("woff");}.ff9{font-family:ff9;line-height:1.014160;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_435c3f632ac3.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_678109b5f6ea.woff")format("woff");}.ffb{font-family:ffb;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_d125d5a73581.woff")format("woff");}.ffc{font-family:ffc;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_be30a491bc4a.woff")format("woff");}.ffd{font-family:ffd;line-height:1.014160;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_595a4e372f48.woff")format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_b239e832b6a6.woff")format("woff");}.fff{font-family:fff;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_a025c4915e20.woff")format("woff");}.ff10{font-family:ff10;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_bb7be8d14831.woff")format("woff");}.ff11{font-family:ff11;line-height:0.726000;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_dc3e0343106c.woff")format("woff");}.ff12{font-family:ff12;line-height:1.014160;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_5bd0d255df68.woff")format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_38353d2164cd.woff")format("woff");}.ff14{font-family:ff14;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_0b1bc2738930.woff")format("woff");}.ff15{font-family:ff15;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_7075789ccc79.woff")format("woff");}.ff16{font-family:ff16;line-height:0.062000;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_be30a491bc4a.woff")format("woff");}.ff17{font-family:ff17;line-height:1.014160;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_90f1fe7115bd.woff")format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_732d69cd2984.woff")format("woff");}.ff19{font-family:ff19;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_a107946eb142.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.876465;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_252958853edb.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.014160;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_e9807019e60e.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_d254bdc9a79c.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_0b1bc2738930.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_be30a491bc4a.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.014160;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_ff108410a5fc.woff")format("woff");}.ff20{font-family:ff20;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_884f23f7a86a.woff")format("woff");}.ff21{font-family:ff21;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_be30a491bc4a.woff")format("woff");}.ff22{font-family:ff22;line-height:1.014160;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_5467fa0f7884.woff")format("woff");}.ff23{font-family:ff23;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_447f89c74bfb.woff")format("woff");}.ff24{font-family:ff24;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_be30a491bc4a.woff")format("woff");}.ff25{font-family:ff25;line-height:1.014160;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_5467fa0f7884.woff")format("woff");}.ff26{font-family:ff26;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_224b444853c2.woff")format("woff");}.ff27{font-family:ff27;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_be30a491bc4a.woff")format("woff");}.ff28{font-family:ff28;line-height:1.014160;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_65f78b403ffb.woff")format("woff");}.ff29{font-family:ff29;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_cc552af65e2c.woff")format("woff");}.ff2a{font-family:ff2a;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_be30a491bc4a.woff")format("woff");}.ff2b{font-family:ff2b;line-height:1.014160;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_65f78b403ffb.woff")format("woff");}.ff2c{font-family:ff2c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url("fonts/font_0044_cc552af65e2c.woff")format("woff");}.ff2d{font-family:ff2d;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1b{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.340000px;}
.v1{vertical-align:21.702000px;}
.lsd{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.342000px;}
.ls18{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.138000px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000435px;}
.ls2d{letter-spacing:0.000800px;}
.lsc{letter-spacing:0.003178px;}
.lsb{letter-spacing:0.004800px;}
.ls1f{letter-spacing:0.017100px;}
.ls20{letter-spacing:0.018000px;}
.ls1e{letter-spacing:0.079800px;}
.ls24{letter-spacing:0.119700px;}
.lsa{letter-spacing:0.126000px;}
.ls1a{letter-spacing:0.131400px;}
.ls14{letter-spacing:0.135000px;}
.ls1d{letter-spacing:0.166440px;}
.ls11{letter-spacing:0.171000px;}
.ls6{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.194850px;}
.ls22{letter-spacing:0.196308px;}
.ls9{letter-spacing:0.206640px;}
.ls19{letter-spacing:0.229950px;}
.ls21{letter-spacing:0.246924px;}
.ls7{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.342000px;}
.ls8{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.490800px;}
.ls23{letter-spacing:0.513000px;}
.ls25{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.675000px;}
.ls1{letter-spacing:2.989200px;}
.ls15{letter-spacing:5.508000px;}
.ls16{letter-spacing:6.048000px;}
.ls0{letter-spacing:10.461300px;}
.ls28{letter-spacing:11.823869px;}
.ls2b{letter-spacing:11.842237px;}
.ls4{letter-spacing:11.954850px;}
.ls2c{letter-spacing:12.335825px;}
.ls26{letter-spacing:13.448400px;}
.ls27{letter-spacing:13.454400px;}
.ls29{letter-spacing:14.820988px;}
.ls2a{letter-spacing:17.256282px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.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;}
}
.wsf{word-spacing:-28.532313px;}
.ws40{word-spacing:-15.430800px;}
.ws71{word-spacing:-14.943900px;}
.ws33{word-spacing:-14.940000px;}
.ws32{word-spacing:-14.802000px;}
.ws35{word-spacing:-14.580000px;}
.ws74{word-spacing:-14.535000px;}
.ws96{word-spacing:-14.272800px;}
.ws95{word-spacing:-14.193000px;}
.ws99{word-spacing:-13.518000px;}
.ws9a{word-spacing:-13.500000px;}
.ws36{word-spacing:-13.449600px;}
.ws97{word-spacing:-12.842100px;}
.ws98{word-spacing:-12.420000px;}
.ws30{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.955150px;}
.ws9e{word-spacing:-11.799000px;}
.ws31{word-spacing:-11.700000px;}
.ws72{word-spacing:-11.457000px;}
.ws85{word-spacing:-11.399850px;}
.ws10{word-spacing:-11.357400px;}
.ws73{word-spacing:-11.115000px;}
.ws3{word-spacing:-10.460700px;}
.ws8b{word-spacing:-10.125000px;}
.ws83{word-spacing:-9.045000px;}
.ws34{word-spacing:-9.000000px;}
.ws84{word-spacing:-8.775000px;}
.wsb0{word-spacing:-3.658291px;}
.ws90{word-spacing:-3.227882px;}
.ws48{word-spacing:-3.108331px;}
.ws6e{word-spacing:-2.630126px;}
.ws6f{word-spacing:-2.570351px;}
.wsa1{word-spacing:-2.510575px;}
.ws38{word-spacing:-2.450800px;}
.wsac{word-spacing:-2.367130px;}
.ws45{word-spacing:-2.211697px;}
.ws16{word-spacing:-2.205734px;}
.ws56{word-spacing:-2.151922px;}
.wsb5{word-spacing:-2.098138px;}
.ws57{word-spacing:-2.092146px;}
.ws7c{word-spacing:-2.032370px;}
.ws6a{word-spacing:-1.972595px;}
.ws5e{word-spacing:-1.912819px;}
.ws5d{word-spacing:-1.853044px;}
.ws58{word-spacing:-1.673717px;}
.wsb7{word-spacing:-1.613952px;}
.ws41{word-spacing:-1.494390px;}
.wsd8{word-spacing:-1.398758px;}
.ws7a{word-spacing:-1.374839px;}
.wsba{word-spacing:-1.344960px;}
.ws92{word-spacing:-1.315063px;}
.ws7f{word-spacing:-1.195512px;}
.ws5{word-spacing:-1.171598px;}
.ws5c{word-spacing:-1.135736px;}
.wsd1{word-spacing:-1.129766px;}
.wsd6{word-spacing:-1.075968px;}
.wscd{word-spacing:-1.056343px;}
.ws7{word-spacing:-1.046070px;}
.ws50{word-spacing:-0.896634px;}
.ws4f{word-spacing:-0.836858px;}
.ws3d{word-spacing:-0.777083px;}
.ws7e{word-spacing:-0.717307px;}
.ws79{word-spacing:-0.657532px;}
.ws14{word-spacing:-0.645581px;}
.ws6c{word-spacing:-0.597756px;}
.wsd3{word-spacing:-0.573289px;}
.ws53{word-spacing:-0.537980px;}
.wsd9{word-spacing:-0.484186px;}
.wsa4{word-spacing:-0.478205px;}
.ws8c{word-spacing:-0.430387px;}
.wsde{word-spacing:-0.376589px;}
.wsa2{word-spacing:-0.358654px;}
.ws4b{word-spacing:-0.298878px;}
.wsce{word-spacing:-0.268992px;}
.ws24{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.ws22{word-spacing:-0.179327px;}
.ws8d{word-spacing:-0.161395px;}
.ws4e{word-spacing:-0.119551px;}
.wscf{word-spacing:-0.115433px;}
.wsa7{word-spacing:-0.107597px;}
.ws2f{word-spacing:-0.059776px;}
.ws9b{word-spacing:-0.053798px;}
.ws2e{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.002150px;}
.wsc7{word-spacing:0.050075px;}
.ws15{word-spacing:0.053798px;}
.ws1f{word-spacing:0.059776px;}
.wsaa{word-spacing:0.107597px;}
.ws1d{word-spacing:0.119551px;}
.ws1a{word-spacing:0.161395px;}
.ws26{word-spacing:0.179327px;}
.wsa0{word-spacing:0.215194px;}
.ws47{word-spacing:0.239102px;}
.ws9f{word-spacing:0.268992px;}
.ws64{word-spacing:0.298878px;}
.wsc0{word-spacing:0.322790px;}
.ws39{word-spacing:0.358654px;}
.ws62{word-spacing:0.478205px;}
.ws23{word-spacing:0.537980px;}
.ws4c{word-spacing:0.597756px;}
.ws19{word-spacing:0.645581px;}
.ws88{word-spacing:0.717307px;}
.ws3f{word-spacing:0.777083px;}
.ws2b{word-spacing:0.836858px;}
.ws42{word-spacing:0.956410px;}
.ws6{word-spacing:1.004227px;}
.ws66{word-spacing:1.016185px;}
.wsc2{word-spacing:1.022170px;}
.ws4a{word-spacing:1.075961px;}
.wsdd{word-spacing:1.075968px;}
.ws2c{word-spacing:1.135736px;}
.ws81{word-spacing:1.195512px;}
.ws7d{word-spacing:1.315063px;}
.wsc4{word-spacing:1.398758px;}
.ws69{word-spacing:1.434614px;}
.ws29{word-spacing:1.494390px;}
.wse5{word-spacing:1.506355px;}
.ws77{word-spacing:1.613941px;}
.ws76{word-spacing:1.673717px;}
.ws1e{word-spacing:1.733492px;}
.ws37{word-spacing:1.793268px;}
.ws3c{word-spacing:1.853044px;}
.ws4d{word-spacing:1.912819px;}
.ws80{word-spacing:1.972595px;}
.ws63{word-spacing:2.032370px;}
.ws61{word-spacing:2.092146px;}
.ws6b{word-spacing:2.151922px;}
.wse0{word-spacing:2.151936px;}
.ws9d{word-spacing:2.259533px;}
.ws70{word-spacing:2.271473px;}
.wse4{word-spacing:2.313331px;}
.ws44{word-spacing:2.450800px;}
.ws0{word-spacing:2.511541px;}
.ws9c{word-spacing:2.582323px;}
.ws59{word-spacing:2.630126px;}
.ws51{word-spacing:2.689902px;}
.ws20{word-spacing:2.809453px;}
.ws86{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.wsb3{word-spacing:2.905114px;}
.ws52{word-spacing:2.929004px;}
.wsc9{word-spacing:3.012710px;}
.wse2{word-spacing:3.066509px;}
.ws7b{word-spacing:3.108331px;}
.ws43{word-spacing:3.168107px;}
.ws1b{word-spacing:3.219667px;}
.wsd7{word-spacing:3.220109px;}
.wsbf{word-spacing:3.221155px;}
.wsab{word-spacing:3.224822px;}
.ws46{word-spacing:3.227882px;}
.wsbe{word-spacing:3.281702px;}
.ws5f{word-spacing:3.347434px;}
.wsbd{word-spacing:3.443098px;}
.ws75{word-spacing:3.466985px;}
.ws1c{word-spacing:3.586536px;}
.wsdb{word-spacing:3.604493px;}
.ws91{word-spacing:3.646312px;}
.ws21{word-spacing:3.706087px;}
.ws78{word-spacing:3.765863px;}
.wscb{word-spacing:3.819686px;}
.ws8e{word-spacing:3.825638px;}
.wsa9{word-spacing:3.927283px;}
.ws49{word-spacing:3.945190px;}
.ws82{word-spacing:4.124516px;}
.ws5b{word-spacing:4.244068px;}
.wsa6{word-spacing:4.303843px;}
.ws27{word-spacing:4.363619px;}
.ws60{word-spacing:4.483170px;}
.wsda{word-spacing:4.572864px;}
.ws94{word-spacing:4.602721px;}
.ws2a{word-spacing:4.662497px;}
.ws18{word-spacing:4.734259px;}
.wsd{word-spacing:4.770079px;}
.wse{word-spacing:4.853765px;}
.ws8a{word-spacing:5.080926px;}
.ws8f{word-spacing:5.678682px;}
.ws6d{word-spacing:5.798233px;}
.wsc1{word-spacing:5.864026px;}
.wsa8{word-spacing:5.971622px;}
.ws28{word-spacing:5.977560px;}
.ws93{word-spacing:6.037336px;}
.ws3e{word-spacing:6.156887px;}
.ws67{word-spacing:6.515540px;}
.ws54{word-spacing:6.694867px;}
.ws3a{word-spacing:6.754643px;}
.ws3b{word-spacing:6.814418px;}
.ws55{word-spacing:6.933970px;}
.wsa5{word-spacing:6.993745px;}
.ws25{word-spacing:7.053521px;}
.wsa3{word-spacing:7.113296px;}
.wsd4{word-spacing:7.155187px;}
.ws68{word-spacing:7.173072px;}
.ws89{word-spacing:7.591501px;}
.wsb{word-spacing:7.782761px;}
.ws87{word-spacing:7.890379px;}
.ws65{word-spacing:8.488135px;}
.wsb6{word-spacing:11.297664px;}
.wscc{word-spacing:11.781850px;}
.ws2d{word-spacing:11.910929px;}
.wsbb{word-spacing:12.050842px;}
.ws9{word-spacing:12.176255px;}
.ws2{word-spacing:12.929425px;}
.wsb4{word-spacing:13.180608px;}
.wsd0{word-spacing:13.288205px;}
.wsdc{word-spacing:13.391405px;}
.wsae{word-spacing:13.395802px;}
.wsc8{word-spacing:13.449600px;}
.wsb1{word-spacing:13.503398px;}
.wsc3{word-spacing:14.471770px;}
.ws5a{word-spacing:14.884124px;}
.wsd2{word-spacing:15.709133px;}
.wsa{word-spacing:16.109478px;}
.wsc6{word-spacing:16.408512px;}
.wse3{word-spacing:16.516109px;}
.wsb2{word-spacing:16.615786px;}
.wsb9{word-spacing:16.618483px;}
.wsc5{word-spacing:16.619261px;}
.wse1{word-spacing:16.619971px;}
.wsad{word-spacing:16.623706px;}
.wsaf{word-spacing:16.624714px;}
.wsbc{word-spacing:16.838899px;}
.wsb8{word-spacing:16.892698px;}
.wsdf{word-spacing:17.107891px;}
.wsd5{word-spacing:19.044634px;}
.wsca{word-spacing:26.092224px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
._11{margin-left:-7.352399px;}
._a{margin-left:-6.013467px;}
._b{margin-left:-4.883697px;}
._2{margin-left:-3.849538px;}
._6{margin-left:-2.301354px;}
._1{margin-left:-1.087913px;}
._17{width:1.006067px;}
._5{width:2.301354px;}
._8{width:3.671898px;}
._0{width:5.646948px;}
._19{width:7.250496px;}
._9{width:8.309251px;}
._23{width:10.162188px;}
._1c{width:11.739922px;}
._3{width:12.971237px;}
._c{width:14.824386px;}
._d{width:16.295093px;}
._25{width:17.334924px;}
._10{width:18.375013px;}
._f{width:19.749852px;}
._12{width:21.166540px;}
._13{width:22.535401px;}
._e{width:24.609605px;}
._4{width:25.946136px;}
._1a{width:27.197898px;}
._7{width:30.587087px;}
._1d{width:32.559760px;}
._14{width:37.001096px;}
._1b{width:40.701193px;}
._27{width:61.868160px;}
._24{width:73.523988px;}
._26{width:88.767360px;}
._15{width:878.988649px;}
._1f{width:1578.846467px;}
._22{width:1977.007674px;}
._1e{width:2000.263674px;}
._20{width:2079.600713px;}
._18{width:2104.080713px;}
._21{width:2464.982400px;}
._16{width:2488.892400px;}
.fc4{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(74,73,130);}
.fc3{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:27.000000px;}
.fs5{font-size:35.865600px;}
.fsc{font-size:36.000000px;}
.fs10{font-size:36.180000px;}
.fs12{font-size:40.500000px;}
.fs0{font-size:41.842800px;}
.fs11{font-size:44.820000px;}
.fs4{font-size:45.429600px;}
.fsd{font-size:45.828000px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:48.240000px;}
.fsf{font-size:51.300000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fse{font-size:56.772000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:59.775600px;}
.fs14{font-size:62.928000px;}
.fsb{font-size:66.240000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:114.129254px;}
.y65{bottom:-745.359000px;}
.y64{bottom:-726.099000px;}
.y63{bottom:-707.019000px;}
.y62{bottom:-687.765000px;}
.y61{bottom:-668.505000px;}
.y60{bottom:-649.245000px;}
.y5f{bottom:-629.985000px;}
.y5e{bottom:-610.905000px;}
.y5d{bottom:-591.645000px;}
.y233{bottom:-576.542175px;}
.y5c{bottom:-572.385000px;}
.y232{bottom:-555.167175px;}
.y5b{bottom:-548.625000px;}
.yb7{bottom:-536.694000px;}
.yb6{bottom:-517.434000px;}
.y5a{bottom:-511.320000px;}
.yb5{bottom:-498.174000px;}
.y59{bottom:-492.240000px;}
.yb4{bottom:-479.094000px;}
.y58{bottom:-472.980000px;}
.y1c2{bottom:-470.694375px;}
.yb3{bottom:-459.840000px;}
.y21b{bottom:-458.605500px;}
.y1c1{bottom:-456.249375px;}
.y57{bottom:-453.720000px;}
.y1c0{bottom:-441.804375px;}
.y21a{bottom:-441.325500px;}
.yb2{bottom:-440.580000px;}
.y56{bottom:-434.460000px;}
.y1bf{bottom:-427.359375px;}
.yb1{bottom:-421.320000px;}
.y219{bottom:-418.825500px;}
.y55{bottom:-415.200000px;}
.y1be{bottom:-413.053875px;}
.y80{bottom:-404.805000px;}
.yb0{bottom:-402.060000px;}
.y1bd{bottom:-398.608875px;}
.y54{bottom:-396.120000px;}
.y7f{bottom:-385.545000px;}
.y1bc{bottom:-384.163875px;}
.yaf{bottom:-382.980000px;}
.y1bb{bottom:-369.718875px;}
.y7e{bottom:-366.465000px;}
.yae{bottom:-363.720000px;}
.y53{bottom:-359.400000px;}
.y1ba{bottom:-355.273875px;}
.y7d{bottom:-347.211000px;}
.yad{bottom:-344.460000px;}
.y1b9{bottom:-340.963875px;}
.y52{bottom:-336.900000px;}
.y13f{bottom:-336.294300px;}
.y7c{bottom:-327.951000px;}
.y1b8{bottom:-326.518875px;}
.yac{bottom:-325.200000px;}
.y13e{bottom:-317.997300px;}
.y1b7{bottom:-312.073875px;}
.y7b{bottom:-308.691000px;}
.yab{bottom:-305.940000px;}
.y13d{bottom:-299.700300px;}
.y1b6{bottom:-294.253875px;}
.y7a{bottom:-289.431000px;}
.yaa{bottom:-286.815000px;}
.y13c{bottom:-281.580000px;}
.y79{bottom:-270.351000px;}
.ya9{bottom:-267.555000px;}
.y18d{bottom:-267.445125px;}
.y1b5{bottom:-266.275125px;}
.y13b{bottom:-263.283000px;}
.y18c{bottom:-253.000125px;}
.y1b4{bottom:-251.965125px;}
.y78{bottom:-251.091000px;}
.ya8{bottom:-248.295000px;}
.y13a{bottom:-244.986000px;}
.y18b{bottom:-238.555125px;}
.y1b3{bottom:-237.520125px;}
.y77{bottom:-231.831000px;}
.ya7{bottom:-229.035000px;}
.y139{bottom:-226.689000px;}
.y18a{bottom:-224.110125px;}
.y1b2{bottom:-223.075125px;}
.ya6{bottom:-209.775000px;}
.y189{bottom:-209.631375px;}
.y1b1{bottom:-208.630125px;}
.y138{bottom:-208.392000px;}
.y76{bottom:-208.071000px;}
.y188{bottom:-195.321375px;}
.y1b0{bottom:-194.185125px;}
.ya5{bottom:-190.695000px;}
.y137{bottom:-190.266000px;}
.y187{bottom:-180.876375px;}
.y1af{bottom:-179.875125px;}
.y136{bottom:-171.969000px;}
.ya4{bottom:-171.435000px;}
.y75{bottom:-170.766000px;}
.y186{bottom:-166.431375px;}
.y1ae{bottom:-165.430125px;}
.y135{bottom:-153.672000px;}
.ya3{bottom:-152.175000px;}
.y185{bottom:-151.986375px;}
.y74{bottom:-151.686000px;}
.y1ad{bottom:-150.985125px;}
.y184{bottom:-137.541375px;}
.y1ac{bottom:-136.540125px;}
.y134{bottom:-135.375000px;}
.ya2{bottom:-132.915000px;}
.y73{bottom:-132.426000px;}
.y183{bottom:-123.096375px;}
.y1ab{bottom:-122.095125px;}
.y133{bottom:-117.035250px;}
.ya1{bottom:-113.655000px;}
.y72{bottom:-113.166000px;}
.y182{bottom:-108.786375px;}
.y1aa{bottom:-107.650125px;}
.y132{bottom:-98.909250px;}
.ya0{bottom:-94.395000px;}
.y181{bottom:-94.341375px;}
.y71{bottom:-93.906000px;}
.y1a9{bottom:-93.340125px;}
.y131{bottom:-80.612250px;}
.y180{bottom:-79.896375px;}
.y1a8{bottom:-78.872625px;}
.y9f{bottom:-75.315000px;}
.y70{bottom:-74.646000px;}
.y17f{bottom:-65.451375px;}
.y1a7{bottom:-61.052625px;}
.y130{bottom:-58.040250px;}
.y9e{bottom:-56.055000px;}
.y6f{bottom:-55.566000px;}
.y17e{bottom:-51.006375px;}
.y226{bottom:-43.003500px;}
.y218{bottom:-38.410500px;}
.y231{bottom:-34.235625px;}
.y1a6{bottom:-33.512625px;}
.y225{bottom:-25.723500px;}
.y17d{bottom:-23.601375px;}
.y12f{bottom:-23.156250px;}
.y217{bottom:-21.130500px;}
.y1a5{bottom:-20.552625px;}
.y51{bottom:-19.530000px;}
.y9d{bottom:-19.305000px;}
.y6e{bottom:-18.846000px;}
.y230{bottom:-17.819625px;}
.y23f{bottom:-17.689350px;}
.y211{bottom:-17.017350px;}
.y17c{bottom:-6.703875px;}
.y1a4{bottom:-3.677625px;}
.y224{bottom:-3.223500px;}
.y12e{bottom:-1.781250px;}
.y0{bottom:0.000000px;}
.y22d{bottom:0.171000px;}
.y4e{bottom:0.180000px;}
.y216{bottom:1.369500px;}
.y19{bottom:1.739201px;}
.y9c{bottom:3.195000px;}
.y6d{bottom:3.654000px;}
.y22f{bottom:4.275000px;}
.y210{bottom:4.357650px;}
.y23b{bottom:4.500000px;}
.y50{bottom:4.680000px;}
.y23e{bottom:4.810650px;}
.y18{bottom:30.271042px;}
.y46{bottom:31.890000px;}
.y1c4{bottom:88.468500px;}
.y27d{bottom:92.982000px;}
.y158{bottom:101.293500px;}
.y92{bottom:104.262000px;}
.y16{bottom:104.646000px;}
.y107{bottom:106.744500px;}
.y257{bottom:106.840500px;}
.y1c3{bottom:107.701500px;}
.y27c{bottom:110.242500px;}
.yd5{bottom:112.872000px;}
.y157{bottom:120.123000px;}
.y2b2{bottom:121.762500px;}
.y15{bottom:122.535000px;}
.y91{bottom:123.091500px;}
.y106{bottom:125.574000px;}
.y45{bottom:125.665500px;}
.y256{bottom:125.670000px;}
.y27b{bottom:127.501500px;}
.y1a1{bottom:130.131000px;}
.yd4{bottom:131.701500px;}
.y156{bottom:138.952500px;}
.y2b1{bottom:139.023000px;}
.y1f5{bottom:140.368500px;}
.y14{bottom:140.422500px;}
.y90{bottom:141.921000px;}
.y105{bottom:144.403500px;}
.y44{bottom:144.495000px;}
.y255{bottom:144.499500px;}
.y27a{bottom:144.762000px;}
.yd3{bottom:150.531000px;}
.y2b0{bottom:156.283500px;}
.y155{bottom:157.782000px;}
.y13{bottom:158.310000px;}
.y1f4{bottom:159.198000px;}
.y8f{bottom:160.750500px;}
.y279{bottom:162.022500px;}
.y104{bottom:163.233000px;}
.y43{bottom:163.324500px;}
.y254{bottom:163.327500px;}
.yd2{bottom:169.360500px;}
.y2af{bottom:173.544000px;}
.y12{bottom:176.199000px;}
.y154{bottom:176.611500px;}
.y1f3{bottom:178.027500px;}
.y278{bottom:179.283000px;}
.y8e{bottom:179.580000px;}
.y103{bottom:182.062500px;}
.y42{bottom:182.154000px;}
.y253{bottom:182.157000px;}
.y12d{bottom:184.637250px;}
.yd1{bottom:188.188500px;}
.y2ae{bottom:190.804500px;}
.y11{bottom:194.086500px;}
.y153{bottom:195.439500px;}
.y277{bottom:196.543500px;}
.y1f2{bottom:196.857000px;}
.y8d{bottom:198.409500px;}
.y102{bottom:200.892000px;}
.y41{bottom:200.983500px;}
.y252{bottom:200.986500px;}
.y12c{bottom:202.934250px;}
.yd0{bottom:207.018000px;}
.y2ad{bottom:208.065000px;}
.y10{bottom:211.974000px;}
.y276{bottom:213.804000px;}
.y8c{bottom:214.162500px;}
.y152{bottom:214.269000px;}
.y1f1{bottom:215.686500px;}
.y8b{bottom:217.239000px;}
.y101{bottom:219.721500px;}
.y40{bottom:219.813000px;}
.y251{bottom:219.816000px;}
.y12b{bottom:221.060250px;}
.y2ac{bottom:225.325500px;}
.ycf{bottom:225.847500px;}
.yf{bottom:229.863000px;}
.y275{bottom:231.064500px;}
.y8a{bottom:232.992000px;}
.y151{bottom:233.098500px;}
.y1f0{bottom:234.516000px;}
.y89{bottom:236.068500px;}
.y100{bottom:238.551000px;}
.y3f{bottom:238.642500px;}
.y250{bottom:238.645500px;}
.y12a{bottom:239.357250px;}
.y175{bottom:239.446500px;}
.y2ab{bottom:242.586000px;}
.yce{bottom:244.677000px;}
.y274{bottom:248.325000px;}
.y150{bottom:251.928000px;}
.y1ef{bottom:253.345500px;}
.y88{bottom:254.898000px;}
.yff{bottom:257.380500px;}
.y3e{bottom:257.472000px;}
.y24f{bottom:257.475000px;}
.y235{bottom:257.581500px;}
.y129{bottom:257.654250px;}
.y174{bottom:258.276000px;}
.y2aa{bottom:259.846500px;}
.ycd{bottom:263.506500px;}
.y273{bottom:265.584000px;}
.y14f{bottom:270.757500px;}
.y1ee{bottom:272.175000px;}
.y87{bottom:273.727500px;}
.y128{bottom:275.951250px;}
.yfe{bottom:276.210000px;}
.y3d{bottom:276.301500px;}
.y24e{bottom:276.304500px;}
.y234{bottom:276.814500px;}
.y173{bottom:277.105500px;}
.ycc{bottom:282.336000px;}
.y272{bottom:282.844500px;}
.y20f{bottom:286.365150px;}
.y14e{bottom:289.587000px;}
.y1ed{bottom:291.004500px;}
.y86{bottom:292.557000px;}
.y127{bottom:294.248250px;}
.y2a9{bottom:294.366000px;}
.yfd{bottom:295.039500px;}
.y3c{bottom:295.131000px;}
.y172{bottom:295.935000px;}
.y24d{bottom:299.617500px;}
.y271{bottom:300.105000px;}
.ye{bottom:300.154500px;}
.ycb{bottom:301.165500px;}
.y229{bottom:302.232000px;}
.y20e{bottom:304.662150px;}
.y22e{bottom:305.787375px;}
.y14d{bottom:308.416500px;}
.y1ec{bottom:309.834000px;}
.y85{bottom:311.386500px;}
.y2a8{bottom:311.626500px;}
.y126{bottom:312.374250px;}
.yfc{bottom:313.869000px;}
.y3b{bottom:313.960500px;}
.y171{bottom:314.764500px;}
.y270{bottom:317.365500px;}
.yd{bottom:318.043500px;}
.y24c{bottom:318.447000px;}
.yca{bottom:319.995000px;}
.y4c{bottom:320.745000px;}
.y6c{bottom:321.024000px;}
.y20d{bottom:322.959150px;}
.y22c{bottom:324.939375px;}
.y14c{bottom:327.246000px;}
.y1eb{bottom:328.663500px;}
.y2a7{bottom:328.887000px;}
.y84{bottom:330.214500px;}
.y4b{bottom:330.285000px;}
.y125{bottom:330.671250px;}
.yfb{bottom:332.698500px;}
.y3a{bottom:332.790000px;}
.y170{bottom:333.594000px;}
.y26f{bottom:334.626000px;}
.yc{bottom:335.931000px;}
.y24b{bottom:337.276500px;}
.y1a3{bottom:338.468625px;}
.yc9{bottom:338.824500px;}
.y20c{bottom:341.256150px;}
.y17b{bottom:344.194875px;}
.y1a2{bottom:345.623625px;}
.y14b{bottom:346.075500px;}
.y2a6{bottom:346.147500px;}
.y1ea{bottom:347.493000px;}
.y124{bottom:348.968250px;}
.y83{bottom:349.044000px;}
.yfa{bottom:351.528000px;}
.y39{bottom:351.619500px;}
.y26e{bottom:351.886500px;}
.y16f{bottom:352.423500px;}
.yb{bottom:353.818500px;}
.y24a{bottom:356.106000px;}
.yc8{bottom:357.654000px;}
.y17a{bottom:358.639875px;}
.y20b{bottom:359.553150px;}
.y2a5{bottom:363.408000px;}
.y14a{bottom:364.905000px;}
.y1e9{bottom:366.322500px;}
.y123{bottom:367.265250px;}
.y26d{bottom:369.147000px;}
.yf9{bottom:370.357500px;}
.y38{bottom:370.449000px;}
.y16e{bottom:371.253000px;}
.y82{bottom:372.357000px;}
.y179{bottom:373.084875px;}
.y21d{bottom:374.464500px;}
.y249{bottom:374.935500px;}
.yc7{bottom:376.483500px;}
.y223{bottom:377.191500px;}
.y20a{bottom:377.679150px;}
.y2a4{bottom:380.668500px;}
.ya{bottom:380.673000px;}
.y149{bottom:383.734500px;}
.y1e8{bottom:385.152000px;}
.y9b{bottom:385.560000px;}
.y122{bottom:385.562250px;}
.y26c{bottom:386.407500px;}
.yf8{bottom:389.187000px;}
.y37{bottom:389.278500px;}
.y16d{bottom:390.082500px;}
.y21c{bottom:393.697500px;}
.y248{bottom:393.765000px;}
.y222{bottom:394.471500px;}
.yc6{bottom:395.313000px;}
.y209{bottom:395.976150px;}
.y2a3{bottom:397.929000px;}
.y9{bottom:398.562000px;}
.y148{bottom:402.564000px;}
.y81{bottom:402.784500px;}
.y26b{bottom:403.668000px;}
.y121{bottom:403.731000px;}
.y1e7{bottom:403.981500px;}
.y9a{bottom:404.820000px;}
.yf7{bottom:408.015000px;}
.y36{bottom:408.108000px;}
.y16c{bottom:408.912000px;}
.y247{bottom:412.594500px;}
.yc5{bottom:414.142500px;}
.y178{bottom:414.147375px;}
.y208{bottom:414.273150px;}
.y2a2{bottom:415.188000px;}
.y213{bottom:416.127000px;}
.y8{bottom:416.449500px;}
.y221{bottom:416.971500px;}
.y26a{bottom:420.927000px;}
.y177{bottom:421.302375px;}
.y147{bottom:421.393500px;}
.y120{bottom:422.028000px;}
.y1e6{bottom:422.811000px;}
.y99{bottom:424.080000px;}
.y67{bottom:425.214000px;}
.y215{bottom:426.064500px;}
.yf6{bottom:426.844500px;}
.y35{bottom:426.937500px;}
.y16b{bottom:427.741500px;}
.y246{bottom:431.424000px;}
.y2a1{bottom:432.448500px;}
.y207{bottom:432.570150px;}
.yc4{bottom:432.972000px;}
.y22b{bottom:434.717625px;}
.y214{bottom:435.604500px;}
.y269{bottom:438.187500px;}
.y146{bottom:440.223000px;}
.y11f{bottom:440.325000px;}
.y1e5{bottom:441.639000px;}
.y98{bottom:443.160000px;}
.y22a{bottom:443.780625px;}
.y7{bottom:444.798000px;}
.yf5{bottom:445.674000px;}
.y34{bottom:445.767000px;}
.y16a{bottom:446.571000px;}
.y2a0{bottom:449.709000px;}
.y245{bottom:450.253500px;}
.y206{bottom:450.867150px;}
.yc3{bottom:451.801500px;}
.y268{bottom:455.448000px;}
.y11e{bottom:458.622000px;}
.y145{bottom:459.052500px;}
.y1e4{bottom:460.468500px;}
.y1a0{bottom:461.791500px;}
.y97{bottom:462.420000px;}
.yf4{bottom:464.503500px;}
.y33{bottom:464.596500px;}
.y169{bottom:465.400500px;}
.y29f{bottom:466.969500px;}
.y205{bottom:469.035900px;}
.y244{bottom:469.083000px;}
.yc2{bottom:470.631000px;}
.y6{bottom:471.652500px;}
.y267{bottom:472.708500px;}
.y11d{bottom:476.919000px;}
.y144{bottom:477.882000px;}
.y1e3{bottom:479.298000px;}
.y19e{bottom:480.621000px;}
.y96{bottom:481.680000px;}
.yf3{bottom:483.333000px;}
.y32{bottom:483.426000px;}
.y168{bottom:484.230000px;}
.y19f{bottom:486.045000px;}
.y204{bottom:487.332900px;}
.y243{bottom:487.912500px;}
.yc1{bottom:489.460500px;}
.y5{bottom:489.540000px;}
.y266{bottom:489.969000px;}
.y11c{bottom:495.045000px;}
.y143{bottom:496.711500px;}
.y1e2{bottom:498.127500px;}
.y19d{bottom:499.450500px;}
.y29e{bottom:501.490500px;}
.yf2{bottom:502.162500px;}
.y31{bottom:502.254000px;}
.y167{bottom:503.059500px;}
.y203{bottom:505.629900px;}
.y242{bottom:506.742000px;}
.y265{bottom:507.229500px;}
.y4{bottom:507.429000px;}
.yc0{bottom:508.290000px;}
.y11b{bottom:513.342000px;}
.y142{bottom:515.541000px;}
.y1e1{bottom:516.957000px;}
.y19c{bottom:518.280000px;}
.y29d{bottom:518.751000px;}
.yf1{bottom:520.992000px;}
.y30{bottom:521.083500px;}
.y166{bottom:521.889000px;}
.y202{bottom:523.926900px;}
.y3{bottom:525.316500px;}
.ybf{bottom:527.119500px;}
.y264{bottom:528.973500px;}
.y241{bottom:530.053500px;}
.y11a{bottom:531.639000px;}
.y1e0{bottom:535.786500px;}
.y29c{bottom:536.011500px;}
.y95{bottom:536.430000px;}
.y19b{bottom:537.109500px;}
.y141{bottom:538.854000px;}
.yf0{bottom:539.821500px;}
.y2f{bottom:539.913000px;}
.y165{bottom:540.718500px;}
.y201{bottom:542.223900px;}
.y2{bottom:543.204000px;}
.ybe{bottom:545.949000px;}
.y94{bottom:545.970000px;}
.y119{bottom:549.936000px;}
.y23d{bottom:553.159650px;}
.y29b{bottom:553.272000px;}
.y1df{bottom:554.616000px;}
.y19a{bottom:555.939000px;}
.yef{bottom:558.651000px;}
.y164{bottom:559.548000px;}
.y200{bottom:560.349900px;}
.y240{bottom:560.481000px;}
.y1{bottom:561.093000px;}
.y263{bottom:562.596000px;}
.y2e{bottom:563.226000px;}
.ybd{bottom:564.778500px;}
.y118{bottom:568.233000px;}
.y140{bottom:569.281500px;}
.y23c{bottom:570.439650px;}
.y29a{bottom:570.531000px;}
.y1de{bottom:573.445500px;}
.y199{bottom:574.768500px;}
.yee{bottom:577.480500px;}
.y163{bottom:578.377500px;}
.y1ff{bottom:578.646900px;}
.y236{bottom:582.910350px;}
.ybc{bottom:583.608000px;}
.y117{bottom:586.359000px;}
.y299{bottom:587.791500px;}
.y262{bottom:589.137000px;}
.y112{bottom:591.709500px;}
.y1dd{bottom:592.275000px;}
.y198{bottom:593.598000px;}
.yed{bottom:596.310000px;}
.y1fe{bottom:596.943900px;}
.y162{bottom:597.207000px;}
.ybb{bottom:602.437500px;}
.y116{bottom:604.656000px;}
.y298{bottom:605.052000px;}
.y1dc{bottom:611.104500px;}
.y197{bottom:612.427500px;}
.y1fd{bottom:615.240900px;}
.y261{bottom:615.678000px;}
.y161{bottom:616.036500px;}
.yec{bottom:619.623000px;}
.yba{bottom:621.267000px;}
.y297{bottom:622.312500px;}
.y115{bottom:622.953000px;}
.y1db{bottom:629.934000px;}
.y195{bottom:631.257000px;}
.y1fc{bottom:633.537900px;}
.y160{bottom:634.866000px;}
.y196{bottom:636.681000px;}
.y2d{bottom:638.376000px;}
.y296{bottom:639.573000px;}
.yb9{bottom:640.096500px;}
.y260{bottom:642.219000px;}
.y1da{bottom:648.763500px;}
.y194{bottom:650.086500px;}
.y1fb{bottom:651.663900px;}
.yeb{bottom:653.247000px;}
.y15f{bottom:653.695500px;}
.y295{bottom:656.833500px;}
.y69{bottom:661.299000px;}
.y1d9{bottom:667.593000px;}
.y25f{bottom:668.758500px;}
.y193{bottom:668.916000px;}
.y1fa{bottom:669.960900px;}
.y68{bottom:670.839000px;}
.yea{bottom:672.076500px;}
.y15e{bottom:672.525000px;}
.yb8{bottom:673.662000px;}
.y294{bottom:674.094000px;}
.y114{bottom:674.965500px;}
.y2c{bottom:675.766500px;}
.y113{bottom:684.028500px;}
.y1d8{bottom:686.422500px;}
.y192{bottom:687.745500px;}
.y1f9{bottom:688.257900px;}
.ye9{bottom:690.906000px;}
.y15d{bottom:691.354500px;}
.y2b{bottom:695.223000px;}
.y25e{bottom:695.299500px;}
.y93{bottom:696.091500px;}
.y1d7{bottom:705.252000px;}
.y191{bottom:706.575000px;}
.y293{bottom:708.613500px;}
.ye8{bottom:709.735500px;}
.y15c{bottom:710.184000px;}
.y25d{bottom:712.873500px;}
.y2a{bottom:714.681000px;}
.y1d6{bottom:724.081500px;}
.y190{bottom:725.403000px;}
.y292{bottom:725.874000px;}
.y228{bottom:728.239500px;}
.ye7{bottom:728.565000px;}
.y15b{bottom:729.013500px;}
.y25c{bottom:730.447500px;}
.y29{bottom:734.137500px;}
.y1f8{bottom:740.270400px;}
.y1d5{bottom:742.911000px;}
.y291{bottom:743.134500px;}
.y18f{bottom:744.232500px;}
.ye6{bottom:747.394500px;}
.y227{bottom:747.472500px;}
.y15a{bottom:747.843000px;}
.y25b{bottom:748.021500px;}
.y1f7{bottom:749.333400px;}
.y66{bottom:750.534000px;}
.y28{bottom:753.594000px;}
.y290{bottom:760.395000px;}
.y1d4{bottom:761.740500px;}
.y25a{bottom:765.595500px;}
.ye5{bottom:766.224000px;}
.y159{bottom:766.671000px;}
.y6b{bottom:768.738000px;}
.y21e{bottom:769.902000px;}
.y27{bottom:773.052000px;}
.y4a{bottom:775.951500px;}
.y18e{bottom:776.010000px;}
.y28f{bottom:777.655500px;}
.y4f{bottom:778.921500px;}
.y1d3{bottom:780.570000px;}
.y259{bottom:783.169500px;}
.ye4{bottom:785.053500px;}
.y111{bottom:785.500500px;}
.y6a{bottom:789.123000px;}
.y26{bottom:792.508500px;}
.y28e{bottom:794.916000px;}
.y176{bottom:798.438000px;}
.y4d{bottom:799.306500px;}
.ye3{bottom:803.883000px;}
.y110{bottom:804.330000px;}
.y25{bottom:811.965000px;}
.y28d{bottom:812.176500px;}
.y258{bottom:818.677500px;}
.ye2{bottom:822.712500px;}
.y10f{bottom:823.159500px;}
.y212{bottom:827.913000px;}
.y28c{bottom:829.437000px;}
.y24{bottom:831.423000px;}
.y1d2{bottom:837.507000px;}
.ye1{bottom:841.540500px;}
.y220{bottom:841.666500px;}
.y10e{bottom:841.989000px;}
.y28b{bottom:846.697500px;}
.y1f6{bottom:850.342500px;}
.y21f{bottom:851.206500px;}
.y1d1{bottom:856.335000px;}
.ye0{bottom:860.370000px;}
.y10d{bottom:860.818500px;}
.y28a{bottom:863.956500px;}
.y23{bottom:870.007500px;}
.y1d0{bottom:875.164500px;}
.ydf{bottom:879.199500px;}
.y10c{bottom:879.648000px;}
.y289{bottom:881.217000px;}
.y22{bottom:886.147500px;}
.y1cf{bottom:893.994000px;}
.yde{bottom:898.029000px;}
.y10b{bottom:898.477500px;}
.y21{bottom:906.627000px;}
.y1ce{bottom:912.823500px;}
.y288{bottom:915.738000px;}
.ydd{bottom:916.858500px;}
.y10a{bottom:917.307000px;}
.y20{bottom:922.767000px;}
.y1cd{bottom:931.653000px;}
.y287{bottom:932.998500px;}
.y1f{bottom:934.566000px;}
.y109{bottom:936.136500px;}
.ydc{bottom:940.171500px;}
.y286{bottom:950.259000px;}
.y1cc{bottom:950.482500px;}
.y108{bottom:954.966000px;}
.y1e{bottom:955.045500px;}
.y285{bottom:967.519500px;}
.y1cb{bottom:969.312000px;}
.ydb{bottom:973.795500px;}
.y284{bottom:984.780000px;}
.y1ca{bottom:988.141500px;}
.yda{bottom:992.625000px;}
.y1d{bottom:999.721500px;}
.y2b3{bottom:1002.039000px;}
.y283{bottom:1002.040500px;}
.y1c9{bottom:1006.971000px;}
.yd9{bottom:1011.454500px;}
.y282{bottom:1019.299500px;}
.y1c8{bottom:1025.800500px;}
.yd8{bottom:1030.284000px;}
.y1c{bottom:1036.485000px;}
.y281{bottom:1036.560000px;}
.y1c7{bottom:1044.630000px;}
.y238{bottom:1046.794650px;}
.yd7{bottom:1049.113500px;}
.y280{bottom:1053.820500px;}
.y237{bottom:1056.334650px;}
.y1c6{bottom:1063.459500px;}
.y1b{bottom:1064.728500px;}
.yd6{bottom:1067.943000px;}
.y27f{bottom:1071.081000px;}
.y1c5{bottom:1082.289000px;}
.y49{bottom:1086.772500px;}
.y27e{bottom:1088.341500px;}
.y1a{bottom:1092.972000px;}
.y48{bottom:1105.602000px;}
.y17{bottom:1136.460000px;}
.y47{bottom:1168.366500px;}
.y23a{bottom:1175.850000px;}
.y239{bottom:1196.010000px;}
.h37{height:-75.463500px;}
.h1c{height:-59.302500px;}
.h38{height:-55.303500px;}
.h1d{height:-38.917500px;}
.h26{height:14.824349px;}
.h35{height:19.152000px;}
.h17{height:20.376000px;}
.ha{height:26.110157px;}
.h29{height:26.410693px;}
.h28{height:26.516689px;}
.h2b{height:29.564209px;}
.h2{height:30.461558px;}
.h4{height:30.670772px;}
.h3{height:31.109558px;}
.h2a{height:32.717725px;}
.h2e{height:32.849033px;}
.h1e{height:33.072749px;}
.h22{height:33.453545px;}
.h21{height:33.587807px;}
.hb{height:34.813397px;}
.h2c{height:35.022217px;}
.h11{height:35.052500px;}
.h14{height:35.214258px;}
.h13{height:35.355586px;}
.hc{height:35.557397px;}
.h24{height:37.447998px;}
.hd{height:38.734848px;}
.he{height:39.165235px;}
.h18{height:39.418945px;}
.h39{height:39.434227px;}
.h1a{height:39.999235px;}
.h23{height:41.442451px;}
.h25{height:41.608775px;}
.hf{height:43.038432px;}
.h10{height:43.516637px;}
.h16{height:43.623633px;}
.h7{height:43.815515px;}
.h30{height:45.936211px;}
.h19{height:48.353906px;}
.h5{height:50.931027px;}
.h9{height:54.411312px;}
.h6{height:77.379634px;}
.h8{height:77.469696px;}
.h20{height:170.150700px;}
.h15{height:257.580000px;}
.h2f{height:270.204225px;}
.h12{height:285.685500px;}
.h1b{height:304.606500px;}
.h2d{height:309.809250px;}
.h27{height:322.107750px;}
.h32{height:350.644500px;}
.h1f{height:367.041000px;}
.h34{height:374.176500px;}
.h31{height:386.590500px;}
.h33{height:400.812600px;}
.h36{height:537.636150px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w14{width:-48.514500px;}
.w7{width:200.520000px;}
.w2{width:207.609956px;}
.w13{width:239.650500px;}
.w12{width:291.241500px;}
.w8{width:332.383500px;}
.w4{width:392.475000px;}
.w5{width:392.655000px;}
.w9{width:409.294500px;}
.wc{width:418.125375px;}
.wb{width:423.801000px;}
.w11{width:454.617750px;}
.w6{width:532.903500px;}
.wf{width:563.805000px;}
.wd{width:564.374100px;}
.wa{width:568.566450px;}
.we{width:582.726000px;}
.w10{width:750.101617px;}
.w3{width:787.057350px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x94{left:-197.631000px;}
.x97{left:-193.848000px;}
.x16{left:-191.955000px;}
.xa6{left:-190.380000px;}
.x93{left:-182.357250px;}
.x67{left:-179.961825px;}
.x89{left:-143.020125px;}
.x79{left:-140.655375px;}
.x19{left:-4.545000px;}
.x96{left:-1.941000px;}
.x0{left:0.000000px;}
.x99{left:1.842000px;}
.x1a{left:3.735000px;}
.x68{left:5.943675px;}
.x8b{left:27.642375px;}
.x7b{left:30.007125px;}
.x1c{left:35.595000px;}
.xa9{left:40.095000px;}
.x1{left:53.574000px;}
.x3{left:58.054042px;}
.x9c{left:71.195783px;}
.x9d{left:74.566050px;}
.xac{left:85.848000px;}
.xa1{left:136.500750px;}
.xaa{left:143.685000px;}
.x2{left:148.483500px;}
.x10{left:187.410000px;}
.xa2{left:189.275768px;}
.x11{left:196.084350px;}
.x17{left:197.820000px;}
.xa0{left:218.951250px;}
.x13{left:227.944350px;}
.xab{left:237.045000px;}
.x8{left:248.526000px;}
.x5{left:249.591000px;}
.x6{left:269.914500px;}
.x4b{left:271.525500px;}
.xa{left:281.479500px;}
.x70{left:284.988000px;}
.x4c{left:286.468500px;}
.x9f{left:288.861750px;}
.x7{left:292.855500px;}
.x5b{left:300.510000px;}
.xa8{left:304.065000px;}
.x8c{left:306.667500px;}
.x9{left:308.025000px;}
.x9b{left:309.397500px;}
.xa3{left:313.539000px;}
.x5c{left:315.453000px;}
.x87{left:319.288500px;}
.x57{left:325.117500px;}
.x88{left:328.519500px;}
.x47{left:330.619500px;}
.x58{left:340.062000px;}
.x23{left:343.720500px;}
.x48{left:345.562500px;}
.x24{left:351.192000px;}
.x49{left:352.885500px;}
.x63{left:357.168000px;}
.x85{left:360.174000px;}
.x4a{left:367.830000px;}
.x64{left:372.112500px;}
.x86{left:375.118500px;}
.x65{left:379.471500px;}
.x55{left:380.712000px;}
.x51{left:381.807000px;}
.xd{left:389.775000px;}
.xf{left:390.855000px;}
.x6a{left:392.751000px;}
.x66{left:394.416000px;}
.x56{left:395.655000px;}
.x52{left:396.751500px;}
.x53{left:400.449000px;}
.x6b{left:407.695500px;}
.x2b{left:408.898500px;}
.x54{left:415.393500px;}
.x8a{left:417.207375px;}
.x7a{left:426.862125px;}
.xb{left:432.943500px;}
.x32{left:434.235000px;}
.x39{left:435.295500px;}
.xc{left:440.415000px;}
.xe{left:446.443500px;}
.x18{left:450.111000px;}
.x9e{left:452.736750px;}
.x14{left:461.271000px;}
.x8d{left:479.899500px;}
.x30{left:487.642500px;}
.x7f{left:491.569500px;}
.x8e{left:494.842500px;}
.x8f{left:498.561000px;}
.x31{left:502.587000px;}
.x80{left:506.514000px;}
.x81{left:510.175500px;}
.x90{left:513.504000px;}
.x2c{left:515.874000px;}
.x6d{left:518.373000px;}
.x82{left:525.118500px;}
.x1b{left:528.555000px;}
.x2d{left:530.818500px;}
.xa7{left:537.756000px;}
.x15{left:539.412000px;}
.x91{left:547.483500px;}
.x29{left:552.276000px;}
.x2e{left:553.771500px;}
.x2a{left:559.747500px;}
.x92{left:562.426500px;}
.x69{left:566.082675px;}
.x25{left:568.395000px;}
.x4{left:570.751500px;}
.x26{left:575.866500px;}
.x45{left:579.783000px;}
.x95{left:580.839000px;}
.x9a{left:582.822000px;}
.x98{left:584.622000px;}
.x4f{left:591.775500px;}
.x33{left:593.695500px;}
.x46{left:594.727500px;}
.x6e{left:598.185000px;}
.x5f{left:602.563500px;}
.x50{left:606.718500px;}
.x34{left:608.638500px;}
.x4d{left:611.001000px;}
.x6f{left:613.128000px;}
.x60{left:617.506500px;}
.x3f{left:618.574500px;}
.x4e{left:625.944000px;}
.x40{left:633.517500px;}
.x71{left:635.145000px;}
.x41{left:637.213500px;}
.x43{left:643.543500px;}
.x59{left:646.290000px;}
.x44{left:651.015000px;}
.x42{left:652.156500px;}
.x5d{left:654.597000px;}
.x75{left:656.362500px;}
.xa4{left:657.444000px;}
.x5a{left:661.234500px;}
.xa5{left:664.168500px;}
.x72{left:666.081000px;}
.x5e{left:669.541500px;}
.x76{left:671.305500px;}
.x73{left:681.024000px;}
.x1d{left:691.795500px;}
.x1e{left:699.267000px;}
.x37{left:712.972500px;}
.x6c{left:715.527000px;}
.x12{left:720.904350px;}
.x38{left:727.917000px;}
.x35{left:729.658500px;}
.x3a{left:735.055500px;}
.x36{left:744.603000px;}
.xad{left:747.261000px;}
.x7c{left:748.786500px;}
.x21{left:749.895000px;}
.xb1{left:753.273000px;}
.x22{left:757.366500px;}
.x74{left:759.906000px;}
.x7d{left:761.760000px;}
.x83{left:766.312500px;}
.xae{left:774.160500px;}
.xb2{left:779.095500px;}
.x84{left:781.257000px;}
.x61{left:782.811000px;}
.xaf{left:786.166500px;}
.x62{left:790.282500px;}
.x3b{left:795.585000px;}
.x77{left:804.928500px;}
.x3c{left:810.529500px;}
.x78{left:812.772000px;}
.x3d{left:817.942500px;}
.x2f{left:819.007500px;}
.x27{left:821.527500px;}
.x28{left:824.140500px;}
.x1f{left:826.489500px;}
.x7e{left:831.375000px;}
.x3e{left:832.885500px;}
.x20{left:833.962500px;}
.xb0{left:837.279000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.080000pt;}
.v1{vertical-align:19.290667pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.304000pt;}
.ls18{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.122667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000387pt;}
.ls2d{letter-spacing:0.000711pt;}
.lsc{letter-spacing:0.002825pt;}
.lsb{letter-spacing:0.004267pt;}
.ls1f{letter-spacing:0.015200pt;}
.ls20{letter-spacing:0.016000pt;}
.ls1e{letter-spacing:0.070933pt;}
.ls24{letter-spacing:0.106400pt;}
.lsa{letter-spacing:0.112000pt;}
.ls1a{letter-spacing:0.116800pt;}
.ls14{letter-spacing:0.120000pt;}
.ls1d{letter-spacing:0.147947pt;}
.ls11{letter-spacing:0.152000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.173200pt;}
.ls22{letter-spacing:0.174496pt;}
.ls9{letter-spacing:0.183680pt;}
.ls19{letter-spacing:0.204400pt;}
.ls21{letter-spacing:0.219488pt;}
.ls7{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.304000pt;}
.ls8{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.436267pt;}
.ls23{letter-spacing:0.456000pt;}
.ls25{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.600000pt;}
.ls1{letter-spacing:2.657067pt;}
.ls15{letter-spacing:4.896000pt;}
.ls16{letter-spacing:5.376000pt;}
.ls0{letter-spacing:9.298933pt;}
.ls28{letter-spacing:10.510106pt;}
.ls2b{letter-spacing:10.526433pt;}
.ls4{letter-spacing:10.626533pt;}
.ls2c{letter-spacing:10.965178pt;}
.ls26{letter-spacing:11.954133pt;}
.ls27{letter-spacing:11.959467pt;}
.ls29{letter-spacing:13.174212pt;}
.ls2a{letter-spacing:15.338918pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.wsf{word-spacing:-25.362056pt;}
.ws40{word-spacing:-13.716267pt;}
.ws71{word-spacing:-13.283467pt;}
.ws33{word-spacing:-13.280000pt;}
.ws32{word-spacing:-13.157333pt;}
.ws35{word-spacing:-12.960000pt;}
.ws74{word-spacing:-12.920000pt;}
.ws96{word-spacing:-12.686933pt;}
.ws95{word-spacing:-12.616000pt;}
.ws99{word-spacing:-12.016000pt;}
.ws9a{word-spacing:-12.000000pt;}
.ws36{word-spacing:-11.955200pt;}
.ws97{word-spacing:-11.415200pt;}
.ws98{word-spacing:-11.040000pt;}
.ws30{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.626800pt;}
.ws9e{word-spacing:-10.488000pt;}
.ws31{word-spacing:-10.400000pt;}
.ws72{word-spacing:-10.184000pt;}
.ws85{word-spacing:-10.133200pt;}
.ws10{word-spacing:-10.095467pt;}
.ws73{word-spacing:-9.880000pt;}
.ws3{word-spacing:-9.298400pt;}
.ws8b{word-spacing:-9.000000pt;}
.ws83{word-spacing:-8.040000pt;}
.ws34{word-spacing:-8.000000pt;}
.ws84{word-spacing:-7.800000pt;}
.wsb0{word-spacing:-3.251814pt;}
.ws90{word-spacing:-2.869229pt;}
.ws48{word-spacing:-2.762961pt;}
.ws6e{word-spacing:-2.337890pt;}
.ws6f{word-spacing:-2.284756pt;}
.wsa1{word-spacing:-2.231622pt;}
.ws38{word-spacing:-2.178489pt;}
.wsac{word-spacing:-2.104115pt;}
.ws45{word-spacing:-1.965953pt;}
.ws16{word-spacing:-1.960653pt;}
.ws56{word-spacing:-1.912819pt;}
.wsb5{word-spacing:-1.865011pt;}
.ws57{word-spacing:-1.859685pt;}
.ws7c{word-spacing:-1.806551pt;}
.ws6a{word-spacing:-1.753418pt;}
.ws5e{word-spacing:-1.700284pt;}
.ws5d{word-spacing:-1.647150pt;}
.ws58{word-spacing:-1.487748pt;}
.wsb7{word-spacing:-1.434624pt;}
.ws41{word-spacing:-1.328347pt;}
.wsd8{word-spacing:-1.243341pt;}
.ws7a{word-spacing:-1.222079pt;}
.wsba{word-spacing:-1.195520pt;}
.ws92{word-spacing:-1.168945pt;}
.ws7f{word-spacing:-1.062677pt;}
.ws5{word-spacing:-1.041421pt;}
.ws5c{word-spacing:-1.009543pt;}
.wsd1{word-spacing:-1.004237pt;}
.wsd6{word-spacing:-0.956416pt;}
.wscd{word-spacing:-0.938971pt;}
.ws7{word-spacing:-0.929840pt;}
.ws50{word-spacing:-0.797008pt;}
.ws4f{word-spacing:-0.743874pt;}
.ws3d{word-spacing:-0.690740pt;}
.ws7e{word-spacing:-0.637606pt;}
.ws79{word-spacing:-0.584473pt;}
.ws14{word-spacing:-0.573850pt;}
.ws6c{word-spacing:-0.531339pt;}
.wsd3{word-spacing:-0.509590pt;}
.ws53{word-spacing:-0.478205pt;}
.wsd9{word-spacing:-0.430387pt;}
.wsa4{word-spacing:-0.425071pt;}
.ws8c{word-spacing:-0.382566pt;}
.wsde{word-spacing:-0.334746pt;}
.wsa2{word-spacing:-0.318803pt;}
.ws4b{word-spacing:-0.265669pt;}
.wsce{word-spacing:-0.239104pt;}
.ws24{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.ws22{word-spacing:-0.159402pt;}
.ws8d{word-spacing:-0.143462pt;}
.ws4e{word-spacing:-0.106268pt;}
.wscf{word-spacing:-0.102607pt;}
.wsa7{word-spacing:-0.095642pt;}
.ws2f{word-spacing:-0.053134pt;}
.ws9b{word-spacing:-0.047821pt;}
.ws2e{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.001911pt;}
.wsc7{word-spacing:0.044511pt;}
.ws15{word-spacing:0.047821pt;}
.ws1f{word-spacing:0.053134pt;}
.wsaa{word-spacing:0.095642pt;}
.ws1d{word-spacing:0.106268pt;}
.ws1a{word-spacing:0.143462pt;}
.ws26{word-spacing:0.159402pt;}
.wsa0{word-spacing:0.191283pt;}
.ws47{word-spacing:0.212535pt;}
.ws9f{word-spacing:0.239104pt;}
.ws64{word-spacing:0.265669pt;}
.wsc0{word-spacing:0.286925pt;}
.ws39{word-spacing:0.318803pt;}
.ws62{word-spacing:0.425071pt;}
.ws23{word-spacing:0.478205pt;}
.ws4c{word-spacing:0.531339pt;}
.ws19{word-spacing:0.573850pt;}
.ws88{word-spacing:0.637606pt;}
.ws3f{word-spacing:0.690740pt;}
.ws2b{word-spacing:0.743874pt;}
.ws42{word-spacing:0.850142pt;}
.ws6{word-spacing:0.892646pt;}
.ws66{word-spacing:0.903276pt;}
.wsc2{word-spacing:0.908595pt;}
.ws4a{word-spacing:0.956410pt;}
.wsdd{word-spacing:0.956416pt;}
.ws2c{word-spacing:1.009543pt;}
.ws81{word-spacing:1.062677pt;}
.ws7d{word-spacing:1.168945pt;}
.wsc4{word-spacing:1.243341pt;}
.ws69{word-spacing:1.275213pt;}
.ws29{word-spacing:1.328347pt;}
.wse5{word-spacing:1.338982pt;}
.ws77{word-spacing:1.434614pt;}
.ws76{word-spacing:1.487748pt;}
.ws1e{word-spacing:1.540882pt;}
.ws37{word-spacing:1.594016pt;}
.ws3c{word-spacing:1.647150pt;}
.ws4d{word-spacing:1.700284pt;}
.ws80{word-spacing:1.753418pt;}
.ws63{word-spacing:1.806551pt;}
.ws61{word-spacing:1.859685pt;}
.ws6b{word-spacing:1.912819pt;}
.wse0{word-spacing:1.912832pt;}
.ws9d{word-spacing:2.008474pt;}
.ws70{word-spacing:2.019087pt;}
.wse4{word-spacing:2.056294pt;}
.ws44{word-spacing:2.178489pt;}
.ws0{word-spacing:2.232481pt;}
.ws9c{word-spacing:2.295398pt;}
.ws59{word-spacing:2.337890pt;}
.ws51{word-spacing:2.391024pt;}
.ws20{word-spacing:2.497292pt;}
.ws86{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.wsb3{word-spacing:2.582323pt;}
.ws52{word-spacing:2.603559pt;}
.wsc9{word-spacing:2.677965pt;}
.wse2{word-spacing:2.725786pt;}
.ws7b{word-spacing:2.762961pt;}
.ws43{word-spacing:2.816095pt;}
.ws1b{word-spacing:2.861926pt;}
.wsd7{word-spacing:2.862319pt;}
.wsbf{word-spacing:2.863249pt;}
.wsab{word-spacing:2.866509pt;}
.ws46{word-spacing:2.869229pt;}
.wsbe{word-spacing:2.917069pt;}
.ws5f{word-spacing:2.975497pt;}
.wsbd{word-spacing:3.060531pt;}
.ws75{word-spacing:3.081764pt;}
.ws1c{word-spacing:3.188032pt;}
.wsdb{word-spacing:3.203994pt;}
.ws91{word-spacing:3.241166pt;}
.ws21{word-spacing:3.294300pt;}
.ws78{word-spacing:3.347434pt;}
.wscb{word-spacing:3.395277pt;}
.ws8e{word-spacing:3.400567pt;}
.wsa9{word-spacing:3.490918pt;}
.ws49{word-spacing:3.506835pt;}
.ws82{word-spacing:3.666237pt;}
.ws5b{word-spacing:3.772505pt;}
.wsa6{word-spacing:3.825638pt;}
.ws27{word-spacing:3.878772pt;}
.ws60{word-spacing:3.985040pt;}
.wsda{word-spacing:4.064768pt;}
.ws94{word-spacing:4.091308pt;}
.ws2a{word-spacing:4.144442pt;}
.ws18{word-spacing:4.208230pt;}
.wsd{word-spacing:4.240070pt;}
.wse{word-spacing:4.314458pt;}
.ws8a{word-spacing:4.516379pt;}
.ws8f{word-spacing:5.047717pt;}
.ws6d{word-spacing:5.153985pt;}
.wsc1{word-spacing:5.212467pt;}
.wsa8{word-spacing:5.308109pt;}
.ws28{word-spacing:5.313387pt;}
.ws93{word-spacing:5.366521pt;}
.ws3e{word-spacing:5.472788pt;}
.ws67{word-spacing:5.791591pt;}
.ws54{word-spacing:5.950993pt;}
.ws3a{word-spacing:6.004127pt;}
.ws3b{word-spacing:6.057261pt;}
.ws55{word-spacing:6.163529pt;}
.wsa5{word-spacing:6.216662pt;}
.ws25{word-spacing:6.269796pt;}
.wsa3{word-spacing:6.322930pt;}
.wsd4{word-spacing:6.360166pt;}
.ws68{word-spacing:6.376064pt;}
.ws89{word-spacing:6.748001pt;}
.wsb{word-spacing:6.918010pt;}
.ws87{word-spacing:7.013670pt;}
.ws65{word-spacing:7.545009pt;}
.wsb6{word-spacing:10.042368pt;}
.wscc{word-spacing:10.472755pt;}
.ws2d{word-spacing:10.587492pt;}
.wsbb{word-spacing:10.711859pt;}
.ws9{word-spacing:10.823338pt;}
.ws2{word-spacing:11.492822pt;}
.wsb4{word-spacing:11.716096pt;}
.wsd0{word-spacing:11.811738pt;}
.wsdc{word-spacing:11.903471pt;}
.wsae{word-spacing:11.907379pt;}
.wsc8{word-spacing:11.955200pt;}
.wsb1{word-spacing:12.003021pt;}
.wsc3{word-spacing:12.863795pt;}
.ws5a{word-spacing:13.230333pt;}
.wsd2{word-spacing:13.963674pt;}
.wsa{word-spacing:14.319536pt;}
.wsc6{word-spacing:14.585344pt;}
.wse3{word-spacing:14.680986pt;}
.wsb2{word-spacing:14.769587pt;}
.wsb9{word-spacing:14.771985pt;}
.wsc5{word-spacing:14.772676pt;}
.wse1{word-spacing:14.773308pt;}
.wsad{word-spacing:14.776627pt;}
.wsaf{word-spacing:14.777523pt;}
.wsbc{word-spacing:14.967910pt;}
.wsb8{word-spacing:15.015731pt;}
.wsdf{word-spacing:15.207014pt;}
.wsd5{word-spacing:16.928563pt;}
.wsca{word-spacing:23.193088pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
._11{margin-left:-6.535466pt;}
._a{margin-left:-5.345304pt;}
._b{margin-left:-4.341064pt;}
._2{margin-left:-3.421811pt;}
._6{margin-left:-2.045648pt;}
._1{margin-left:-0.967034pt;}
._17{width:0.894282pt;}
._5{width:2.045648pt;}
._8{width:3.263909pt;}
._0{width:5.019509pt;}
._19{width:6.444885pt;}
._9{width:7.386001pt;}
._23{width:9.033056pt;}
._1c{width:10.435486pt;}
._3{width:11.529988pt;}
._c{width:13.177232pt;}
._d{width:14.484527pt;}
._25{width:15.408821pt;}
._10{width:16.333345pt;}
._f{width:17.555424pt;}
._12{width:18.814702pt;}
._13{width:20.031468pt;}
._e{width:21.875204pt;}
._4{width:23.063232pt;}
._1a{width:24.175909pt;}
._7{width:27.188522pt;}
._1d{width:28.942009pt;}
._14{width:32.889863pt;}
._1b{width:36.178838pt;}
._27{width:54.993920pt;}
._24{width:65.354656pt;}
._26{width:78.904320pt;}
._15{width:781.323243pt;}
._1f{width:1403.419082pt;}
._22{width:1757.340155pt;}
._1e{width:1778.012155pt;}
._20{width:1848.533967pt;}
._18{width:1870.293967pt;}
._21{width:2191.095467pt;}
._16{width:2212.348800pt;}
.fs13{font-size:24.000000pt;}
.fs5{font-size:31.880533pt;}
.fsc{font-size:32.000000pt;}
.fs10{font-size:32.160000pt;}
.fs12{font-size:36.000000pt;}
.fs0{font-size:37.193600pt;}
.fs11{font-size:39.840000pt;}
.fs4{font-size:40.381867pt;}
.fsd{font-size:40.736000pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.880000pt;}
.fsf{font-size:45.600000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fse{font-size:50.464000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:53.133867pt;}
.fs14{font-size:55.936000pt;}
.fsb{font-size:58.880000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:101.448225pt;}
.y65{bottom:-662.541333pt;}
.y64{bottom:-645.421333pt;}
.y63{bottom:-628.461333pt;}
.y62{bottom:-611.346667pt;}
.y61{bottom:-594.226667pt;}
.y60{bottom:-577.106667pt;}
.y5f{bottom:-559.986667pt;}
.y5e{bottom:-543.026667pt;}
.y5d{bottom:-525.906667pt;}
.y233{bottom:-512.481933pt;}
.y5c{bottom:-508.786667pt;}
.y232{bottom:-493.481933pt;}
.y5b{bottom:-487.666667pt;}
.yb7{bottom:-477.061333pt;}
.yb6{bottom:-459.941333pt;}
.y5a{bottom:-454.506667pt;}
.yb5{bottom:-442.821333pt;}
.y59{bottom:-437.546667pt;}
.yb4{bottom:-425.861333pt;}
.y58{bottom:-420.426667pt;}
.y1c2{bottom:-418.395000pt;}
.yb3{bottom:-408.746667pt;}
.y21b{bottom:-407.649333pt;}
.y1c1{bottom:-405.555000pt;}
.y57{bottom:-403.306667pt;}
.y1c0{bottom:-392.715000pt;}
.y21a{bottom:-392.289333pt;}
.yb2{bottom:-391.626667pt;}
.y56{bottom:-386.186667pt;}
.y1bf{bottom:-379.875000pt;}
.yb1{bottom:-374.506667pt;}
.y219{bottom:-372.289333pt;}
.y55{bottom:-369.066667pt;}
.y1be{bottom:-367.159000pt;}
.y80{bottom:-359.826667pt;}
.yb0{bottom:-357.386667pt;}
.y1bd{bottom:-354.319000pt;}
.y54{bottom:-352.106667pt;}
.y7f{bottom:-342.706667pt;}
.y1bc{bottom:-341.479000pt;}
.yaf{bottom:-340.426667pt;}
.y1bb{bottom:-328.639000pt;}
.y7e{bottom:-325.746667pt;}
.yae{bottom:-323.306667pt;}
.y53{bottom:-319.466667pt;}
.y1ba{bottom:-315.799000pt;}
.y7d{bottom:-308.632000pt;}
.yad{bottom:-306.186667pt;}
.y1b9{bottom:-303.079000pt;}
.y52{bottom:-299.466667pt;}
.y13f{bottom:-298.928267pt;}
.y7c{bottom:-291.512000pt;}
.y1b8{bottom:-290.239000pt;}
.yac{bottom:-289.066667pt;}
.y13e{bottom:-282.664267pt;}
.y1b7{bottom:-277.399000pt;}
.y7b{bottom:-274.392000pt;}
.yab{bottom:-271.946667pt;}
.y13d{bottom:-266.400267pt;}
.y1b6{bottom:-261.559000pt;}
.y7a{bottom:-257.272000pt;}
.yaa{bottom:-254.946667pt;}
.y13c{bottom:-250.293333pt;}
.y79{bottom:-240.312000pt;}
.ya9{bottom:-237.826667pt;}
.y18d{bottom:-237.729000pt;}
.y1b5{bottom:-236.689000pt;}
.y13b{bottom:-234.029333pt;}
.y18c{bottom:-224.889000pt;}
.y1b4{bottom:-223.969000pt;}
.y78{bottom:-223.192000pt;}
.ya8{bottom:-220.706667pt;}
.y13a{bottom:-217.765333pt;}
.y18b{bottom:-212.049000pt;}
.y1b3{bottom:-211.129000pt;}
.y77{bottom:-206.072000pt;}
.ya7{bottom:-203.586667pt;}
.y139{bottom:-201.501333pt;}
.y18a{bottom:-199.209000pt;}
.y1b2{bottom:-198.289000pt;}
.ya6{bottom:-186.466667pt;}
.y189{bottom:-186.339000pt;}
.y1b1{bottom:-185.449000pt;}
.y138{bottom:-185.237333pt;}
.y76{bottom:-184.952000pt;}
.y188{bottom:-173.619000pt;}
.y1b0{bottom:-172.609000pt;}
.ya5{bottom:-169.506667pt;}
.y137{bottom:-169.125333pt;}
.y187{bottom:-160.779000pt;}
.y1af{bottom:-159.889000pt;}
.y136{bottom:-152.861333pt;}
.ya4{bottom:-152.386667pt;}
.y75{bottom:-151.792000pt;}
.y186{bottom:-147.939000pt;}
.y1ae{bottom:-147.049000pt;}
.y135{bottom:-136.597333pt;}
.ya3{bottom:-135.266667pt;}
.y185{bottom:-135.099000pt;}
.y74{bottom:-134.832000pt;}
.y1ad{bottom:-134.209000pt;}
.y184{bottom:-122.259000pt;}
.y1ac{bottom:-121.369000pt;}
.y134{bottom:-120.333333pt;}
.ya2{bottom:-118.146667pt;}
.y73{bottom:-117.712000pt;}
.y183{bottom:-109.419000pt;}
.y1ab{bottom:-108.529000pt;}
.y133{bottom:-104.031333pt;}
.ya1{bottom:-101.026667pt;}
.y72{bottom:-100.592000pt;}
.y182{bottom:-96.699000pt;}
.y1aa{bottom:-95.689000pt;}
.y132{bottom:-87.919333pt;}
.ya0{bottom:-83.906667pt;}
.y181{bottom:-83.859000pt;}
.y71{bottom:-83.472000pt;}
.y1a9{bottom:-82.969000pt;}
.y131{bottom:-71.655333pt;}
.y180{bottom:-71.019000pt;}
.y1a8{bottom:-70.109000pt;}
.y9f{bottom:-66.946667pt;}
.y70{bottom:-66.352000pt;}
.y17f{bottom:-58.179000pt;}
.y1a7{bottom:-54.269000pt;}
.y130{bottom:-51.591333pt;}
.y9e{bottom:-49.826667pt;}
.y6f{bottom:-49.392000pt;}
.y17e{bottom:-45.339000pt;}
.y226{bottom:-38.225333pt;}
.y218{bottom:-34.142667pt;}
.y231{bottom:-30.431667pt;}
.y1a6{bottom:-29.789000pt;}
.y225{bottom:-22.865333pt;}
.y17d{bottom:-20.979000pt;}
.y12f{bottom:-20.583333pt;}
.y217{bottom:-18.782667pt;}
.y1a5{bottom:-18.269000pt;}
.y51{bottom:-17.360000pt;}
.y9d{bottom:-17.160000pt;}
.y6e{bottom:-16.752000pt;}
.y230{bottom:-15.839667pt;}
.y23f{bottom:-15.723867pt;}
.y211{bottom:-15.126533pt;}
.y17c{bottom:-5.959000pt;}
.y1a4{bottom:-3.269000pt;}
.y224{bottom:-2.865333pt;}
.y12e{bottom:-1.583333pt;}
.y0{bottom:0.000000pt;}
.y22d{bottom:0.152000pt;}
.y4e{bottom:0.160000pt;}
.y216{bottom:1.217333pt;}
.y19{bottom:1.545957pt;}
.y9c{bottom:2.840000pt;}
.y6d{bottom:3.248000pt;}
.y22f{bottom:3.800000pt;}
.y210{bottom:3.873467pt;}
.y23b{bottom:4.000000pt;}
.y50{bottom:4.160000pt;}
.y23e{bottom:4.276133pt;}
.y18{bottom:26.907593pt;}
.y46{bottom:28.346667pt;}
.y1c4{bottom:78.638667pt;}
.y27d{bottom:82.650667pt;}
.y158{bottom:90.038667pt;}
.y92{bottom:92.677333pt;}
.y16{bottom:93.018667pt;}
.y107{bottom:94.884000pt;}
.y257{bottom:94.969333pt;}
.y1c3{bottom:95.734667pt;}
.y27c{bottom:97.993333pt;}
.yd5{bottom:100.330667pt;}
.y157{bottom:106.776000pt;}
.y2b2{bottom:108.233333pt;}
.y15{bottom:108.920000pt;}
.y91{bottom:109.414667pt;}
.y106{bottom:111.621333pt;}
.y45{bottom:111.702667pt;}
.y256{bottom:111.706667pt;}
.y27b{bottom:113.334667pt;}
.y1a1{bottom:115.672000pt;}
.yd4{bottom:117.068000pt;}
.y156{bottom:123.513333pt;}
.y2b1{bottom:123.576000pt;}
.y1f5{bottom:124.772000pt;}
.y14{bottom:124.820000pt;}
.y90{bottom:126.152000pt;}
.y105{bottom:128.358667pt;}
.y44{bottom:128.440000pt;}
.y255{bottom:128.444000pt;}
.y27a{bottom:128.677333pt;}
.yd3{bottom:133.805333pt;}
.y2b0{bottom:138.918667pt;}
.y155{bottom:140.250667pt;}
.y13{bottom:140.720000pt;}
.y1f4{bottom:141.509333pt;}
.y8f{bottom:142.889333pt;}
.y279{bottom:144.020000pt;}
.y104{bottom:145.096000pt;}
.y43{bottom:145.177333pt;}
.y254{bottom:145.180000pt;}
.yd2{bottom:150.542667pt;}
.y2af{bottom:154.261333pt;}
.y12{bottom:156.621333pt;}
.y154{bottom:156.988000pt;}
.y1f3{bottom:158.246667pt;}
.y278{bottom:159.362667pt;}
.y8e{bottom:159.626667pt;}
.y103{bottom:161.833333pt;}
.y42{bottom:161.914667pt;}
.y253{bottom:161.917333pt;}
.y12d{bottom:164.122000pt;}
.yd1{bottom:167.278667pt;}
.y2ae{bottom:169.604000pt;}
.y11{bottom:172.521333pt;}
.y153{bottom:173.724000pt;}
.y277{bottom:174.705333pt;}
.y1f2{bottom:174.984000pt;}
.y8d{bottom:176.364000pt;}
.y102{bottom:178.570667pt;}
.y41{bottom:178.652000pt;}
.y252{bottom:178.654667pt;}
.y12c{bottom:180.386000pt;}
.yd0{bottom:184.016000pt;}
.y2ad{bottom:184.946667pt;}
.y10{bottom:188.421333pt;}
.y276{bottom:190.048000pt;}
.y8c{bottom:190.366667pt;}
.y152{bottom:190.461333pt;}
.y1f1{bottom:191.721333pt;}
.y8b{bottom:193.101333pt;}
.y101{bottom:195.308000pt;}
.y40{bottom:195.389333pt;}
.y251{bottom:195.392000pt;}
.y12b{bottom:196.498000pt;}
.y2ac{bottom:200.289333pt;}
.ycf{bottom:200.753333pt;}
.yf{bottom:204.322667pt;}
.y275{bottom:205.390667pt;}
.y8a{bottom:207.104000pt;}
.y151{bottom:207.198667pt;}
.y1f0{bottom:208.458667pt;}
.y89{bottom:209.838667pt;}
.y100{bottom:212.045333pt;}
.y3f{bottom:212.126667pt;}
.y250{bottom:212.129333pt;}
.y12a{bottom:212.762000pt;}
.y175{bottom:212.841333pt;}
.y2ab{bottom:215.632000pt;}
.yce{bottom:217.490667pt;}
.y274{bottom:220.733333pt;}
.y150{bottom:223.936000pt;}
.y1ef{bottom:225.196000pt;}
.y88{bottom:226.576000pt;}
.yff{bottom:228.782667pt;}
.y3e{bottom:228.864000pt;}
.y24f{bottom:228.866667pt;}
.y235{bottom:228.961333pt;}
.y129{bottom:229.026000pt;}
.y174{bottom:229.578667pt;}
.y2aa{bottom:230.974667pt;}
.ycd{bottom:234.228000pt;}
.y273{bottom:236.074667pt;}
.y14f{bottom:240.673333pt;}
.y1ee{bottom:241.933333pt;}
.y87{bottom:243.313333pt;}
.y128{bottom:245.290000pt;}
.yfe{bottom:245.520000pt;}
.y3d{bottom:245.601333pt;}
.y24e{bottom:245.604000pt;}
.y234{bottom:246.057333pt;}
.y173{bottom:246.316000pt;}
.ycc{bottom:250.965333pt;}
.y272{bottom:251.417333pt;}
.y20f{bottom:254.546800pt;}
.y14e{bottom:257.410667pt;}
.y1ed{bottom:258.670667pt;}
.y86{bottom:260.050667pt;}
.y127{bottom:261.554000pt;}
.y2a9{bottom:261.658667pt;}
.yfd{bottom:262.257333pt;}
.y3c{bottom:262.338667pt;}
.y172{bottom:263.053333pt;}
.y24d{bottom:266.326667pt;}
.y271{bottom:266.760000pt;}
.ye{bottom:266.804000pt;}
.ycb{bottom:267.702667pt;}
.y229{bottom:268.650667pt;}
.y20e{bottom:270.810800pt;}
.y22e{bottom:271.811000pt;}
.y14d{bottom:274.148000pt;}
.y1ec{bottom:275.408000pt;}
.y85{bottom:276.788000pt;}
.y2a8{bottom:277.001333pt;}
.y126{bottom:277.666000pt;}
.yfc{bottom:278.994667pt;}
.y3b{bottom:279.076000pt;}
.y171{bottom:279.790667pt;}
.y270{bottom:282.102667pt;}
.yd{bottom:282.705333pt;}
.y24c{bottom:283.064000pt;}
.yca{bottom:284.440000pt;}
.y4c{bottom:285.106667pt;}
.y6c{bottom:285.354667pt;}
.y20d{bottom:287.074800pt;}
.y22c{bottom:288.835000pt;}
.y14c{bottom:290.885333pt;}
.y1eb{bottom:292.145333pt;}
.y2a7{bottom:292.344000pt;}
.y84{bottom:293.524000pt;}
.y4b{bottom:293.586667pt;}
.y125{bottom:293.930000pt;}
.yfb{bottom:295.732000pt;}
.y3a{bottom:295.813333pt;}
.y170{bottom:296.528000pt;}
.y26f{bottom:297.445333pt;}
.yc{bottom:298.605333pt;}
.y24b{bottom:299.801333pt;}
.y1a3{bottom:300.861000pt;}
.yc9{bottom:301.177333pt;}
.y20c{bottom:303.338800pt;}
.y17b{bottom:305.951000pt;}
.y1a2{bottom:307.221000pt;}
.y14b{bottom:307.622667pt;}
.y2a6{bottom:307.686667pt;}
.y1ea{bottom:308.882667pt;}
.y124{bottom:310.194000pt;}
.y83{bottom:310.261333pt;}
.yfa{bottom:312.469333pt;}
.y39{bottom:312.550667pt;}
.y26e{bottom:312.788000pt;}
.y16f{bottom:313.265333pt;}
.yb{bottom:314.505333pt;}
.y24a{bottom:316.538667pt;}
.yc8{bottom:317.914667pt;}
.y17a{bottom:318.791000pt;}
.y20b{bottom:319.602800pt;}
.y2a5{bottom:323.029333pt;}
.y14a{bottom:324.360000pt;}
.y1e9{bottom:325.620000pt;}
.y123{bottom:326.458000pt;}
.y26d{bottom:328.130667pt;}
.yf9{bottom:329.206667pt;}
.y38{bottom:329.288000pt;}
.y16e{bottom:330.002667pt;}
.y82{bottom:330.984000pt;}
.y179{bottom:331.631000pt;}
.y21d{bottom:332.857333pt;}
.y249{bottom:333.276000pt;}
.yc7{bottom:334.652000pt;}
.y223{bottom:335.281333pt;}
.y20a{bottom:335.714800pt;}
.y2a4{bottom:338.372000pt;}
.ya{bottom:338.376000pt;}
.y149{bottom:341.097333pt;}
.y1e8{bottom:342.357333pt;}
.y9b{bottom:342.720000pt;}
.y122{bottom:342.722000pt;}
.y26c{bottom:343.473333pt;}
.yf8{bottom:345.944000pt;}
.y37{bottom:346.025333pt;}
.y16d{bottom:346.740000pt;}
.y21c{bottom:349.953333pt;}
.y248{bottom:350.013333pt;}
.y222{bottom:350.641333pt;}
.yc6{bottom:351.389333pt;}
.y209{bottom:351.978800pt;}
.y2a3{bottom:353.714667pt;}
.y9{bottom:354.277333pt;}
.y148{bottom:357.834667pt;}
.y81{bottom:358.030667pt;}
.y26b{bottom:358.816000pt;}
.y121{bottom:358.872000pt;}
.y1e7{bottom:359.094667pt;}
.y9a{bottom:359.840000pt;}
.yf7{bottom:362.680000pt;}
.y36{bottom:362.762667pt;}
.y16c{bottom:363.477333pt;}
.y247{bottom:366.750667pt;}
.yc5{bottom:368.126667pt;}
.y178{bottom:368.131000pt;}
.y208{bottom:368.242800pt;}
.y2a2{bottom:369.056000pt;}
.y213{bottom:369.890667pt;}
.y8{bottom:370.177333pt;}
.y221{bottom:370.641333pt;}
.y26a{bottom:374.157333pt;}
.y177{bottom:374.491000pt;}
.y147{bottom:374.572000pt;}
.y120{bottom:375.136000pt;}
.y1e6{bottom:375.832000pt;}
.y99{bottom:376.960000pt;}
.y67{bottom:377.968000pt;}
.y215{bottom:378.724000pt;}
.yf6{bottom:379.417333pt;}
.y35{bottom:379.500000pt;}
.y16b{bottom:380.214667pt;}
.y246{bottom:383.488000pt;}
.y2a1{bottom:384.398667pt;}
.y207{bottom:384.506800pt;}
.yc4{bottom:384.864000pt;}
.y22b{bottom:386.415667pt;}
.y214{bottom:387.204000pt;}
.y269{bottom:389.500000pt;}
.y146{bottom:391.309333pt;}
.y11f{bottom:391.400000pt;}
.y1e5{bottom:392.568000pt;}
.y98{bottom:393.920000pt;}
.y22a{bottom:394.471667pt;}
.y7{bottom:395.376000pt;}
.yf5{bottom:396.154667pt;}
.y34{bottom:396.237333pt;}
.y16a{bottom:396.952000pt;}
.y2a0{bottom:399.741333pt;}
.y245{bottom:400.225333pt;}
.y206{bottom:400.770800pt;}
.yc3{bottom:401.601333pt;}
.y268{bottom:404.842667pt;}
.y11e{bottom:407.664000pt;}
.y145{bottom:408.046667pt;}
.y1e4{bottom:409.305333pt;}
.y1a0{bottom:410.481333pt;}
.y97{bottom:411.040000pt;}
.yf4{bottom:412.892000pt;}
.y33{bottom:412.974667pt;}
.y169{bottom:413.689333pt;}
.y29f{bottom:415.084000pt;}
.y205{bottom:416.920800pt;}
.y244{bottom:416.962667pt;}
.yc2{bottom:418.338667pt;}
.y6{bottom:419.246667pt;}
.y267{bottom:420.185333pt;}
.y11d{bottom:423.928000pt;}
.y144{bottom:424.784000pt;}
.y1e3{bottom:426.042667pt;}
.y19e{bottom:427.218667pt;}
.y96{bottom:428.160000pt;}
.yf3{bottom:429.629333pt;}
.y32{bottom:429.712000pt;}
.y168{bottom:430.426667pt;}
.y19f{bottom:432.040000pt;}
.y204{bottom:433.184800pt;}
.y243{bottom:433.700000pt;}
.yc1{bottom:435.076000pt;}
.y5{bottom:435.146667pt;}
.y266{bottom:435.528000pt;}
.y11c{bottom:440.040000pt;}
.y143{bottom:441.521333pt;}
.y1e2{bottom:442.780000pt;}
.y19d{bottom:443.956000pt;}
.y29e{bottom:445.769333pt;}
.yf2{bottom:446.366667pt;}
.y31{bottom:446.448000pt;}
.y167{bottom:447.164000pt;}
.y203{bottom:449.448800pt;}
.y242{bottom:450.437333pt;}
.y265{bottom:450.870667pt;}
.y4{bottom:451.048000pt;}
.yc0{bottom:451.813333pt;}
.y11b{bottom:456.304000pt;}
.y142{bottom:458.258667pt;}
.y1e1{bottom:459.517333pt;}
.y19c{bottom:460.693333pt;}
.y29d{bottom:461.112000pt;}
.yf1{bottom:463.104000pt;}
.y30{bottom:463.185333pt;}
.y166{bottom:463.901333pt;}
.y202{bottom:465.712800pt;}
.y3{bottom:466.948000pt;}
.ybf{bottom:468.550667pt;}
.y264{bottom:470.198667pt;}
.y241{bottom:471.158667pt;}
.y11a{bottom:472.568000pt;}
.y1e0{bottom:476.254667pt;}
.y29c{bottom:476.454667pt;}
.y95{bottom:476.826667pt;}
.y19b{bottom:477.430667pt;}
.y141{bottom:478.981333pt;}
.yf0{bottom:479.841333pt;}
.y2f{bottom:479.922667pt;}
.y165{bottom:480.638667pt;}
.y201{bottom:481.976800pt;}
.y2{bottom:482.848000pt;}
.ybe{bottom:485.288000pt;}
.y94{bottom:485.306667pt;}
.y119{bottom:488.832000pt;}
.y23d{bottom:491.697467pt;}
.y29b{bottom:491.797333pt;}
.y1df{bottom:492.992000pt;}
.y19a{bottom:494.168000pt;}
.yef{bottom:496.578667pt;}
.y164{bottom:497.376000pt;}
.y200{bottom:498.088800pt;}
.y240{bottom:498.205333pt;}
.y1{bottom:498.749333pt;}
.y263{bottom:500.085333pt;}
.y2e{bottom:500.645333pt;}
.ybd{bottom:502.025333pt;}
.y118{bottom:505.096000pt;}
.y140{bottom:506.028000pt;}
.y23c{bottom:507.057467pt;}
.y29a{bottom:507.138667pt;}
.y1de{bottom:509.729333pt;}
.y199{bottom:510.905333pt;}
.yee{bottom:513.316000pt;}
.y163{bottom:514.113333pt;}
.y1ff{bottom:514.352800pt;}
.y236{bottom:518.142533pt;}
.ybc{bottom:518.762667pt;}
.y117{bottom:521.208000pt;}
.y299{bottom:522.481333pt;}
.y262{bottom:523.677333pt;}
.y112{bottom:525.964000pt;}
.y1dd{bottom:526.466667pt;}
.y198{bottom:527.642667pt;}
.yed{bottom:530.053333pt;}
.y1fe{bottom:530.616800pt;}
.y162{bottom:530.850667pt;}
.ybb{bottom:535.500000pt;}
.y116{bottom:537.472000pt;}
.y298{bottom:537.824000pt;}
.y1dc{bottom:543.204000pt;}
.y197{bottom:544.380000pt;}
.y1fd{bottom:546.880800pt;}
.y261{bottom:547.269333pt;}
.y161{bottom:547.588000pt;}
.yec{bottom:550.776000pt;}
.yba{bottom:552.237333pt;}
.y297{bottom:553.166667pt;}
.y115{bottom:553.736000pt;}
.y1db{bottom:559.941333pt;}
.y195{bottom:561.117333pt;}
.y1fc{bottom:563.144800pt;}
.y160{bottom:564.325333pt;}
.y196{bottom:565.938667pt;}
.y2d{bottom:567.445333pt;}
.y296{bottom:568.509333pt;}
.yb9{bottom:568.974667pt;}
.y260{bottom:570.861333pt;}
.y1da{bottom:576.678667pt;}
.y194{bottom:577.854667pt;}
.y1fb{bottom:579.256800pt;}
.yeb{bottom:580.664000pt;}
.y15f{bottom:581.062667pt;}
.y295{bottom:583.852000pt;}
.y69{bottom:587.821333pt;}
.y1d9{bottom:593.416000pt;}
.y25f{bottom:594.452000pt;}
.y193{bottom:594.592000pt;}
.y1fa{bottom:595.520800pt;}
.y68{bottom:596.301333pt;}
.yea{bottom:597.401333pt;}
.y15e{bottom:597.800000pt;}
.yb8{bottom:598.810667pt;}
.y294{bottom:599.194667pt;}
.y114{bottom:599.969333pt;}
.y2c{bottom:600.681333pt;}
.y113{bottom:608.025333pt;}
.y1d8{bottom:610.153333pt;}
.y192{bottom:611.329333pt;}
.y1f9{bottom:611.784800pt;}
.ye9{bottom:614.138667pt;}
.y15d{bottom:614.537333pt;}
.y2b{bottom:617.976000pt;}
.y25e{bottom:618.044000pt;}
.y93{bottom:618.748000pt;}
.y1d7{bottom:626.890667pt;}
.y191{bottom:628.066667pt;}
.y293{bottom:629.878667pt;}
.ye8{bottom:630.876000pt;}
.y15c{bottom:631.274667pt;}
.y25d{bottom:633.665333pt;}
.y2a{bottom:635.272000pt;}
.y1d6{bottom:643.628000pt;}
.y190{bottom:644.802667pt;}
.y292{bottom:645.221333pt;}
.y228{bottom:647.324000pt;}
.ye7{bottom:647.613333pt;}
.y15b{bottom:648.012000pt;}
.y25c{bottom:649.286667pt;}
.y29{bottom:652.566667pt;}
.y1f8{bottom:658.018133pt;}
.y1d5{bottom:660.365333pt;}
.y291{bottom:660.564000pt;}
.y18f{bottom:661.540000pt;}
.ye6{bottom:664.350667pt;}
.y227{bottom:664.420000pt;}
.y15a{bottom:664.749333pt;}
.y25b{bottom:664.908000pt;}
.y1f7{bottom:666.074133pt;}
.y66{bottom:667.141333pt;}
.y28{bottom:669.861333pt;}
.y290{bottom:675.906667pt;}
.y1d4{bottom:677.102667pt;}
.y25a{bottom:680.529333pt;}
.ye5{bottom:681.088000pt;}
.y159{bottom:681.485333pt;}
.y6b{bottom:683.322667pt;}
.y21e{bottom:684.357333pt;}
.y27{bottom:687.157333pt;}
.y4a{bottom:689.734667pt;}
.y18e{bottom:689.786667pt;}
.y28f{bottom:691.249333pt;}
.y4f{bottom:692.374667pt;}
.y1d3{bottom:693.840000pt;}
.y259{bottom:696.150667pt;}
.ye4{bottom:697.825333pt;}
.y111{bottom:698.222667pt;}
.y6a{bottom:701.442667pt;}
.y26{bottom:704.452000pt;}
.y28e{bottom:706.592000pt;}
.y176{bottom:709.722667pt;}
.y4d{bottom:710.494667pt;}
.ye3{bottom:714.562667pt;}
.y110{bottom:714.960000pt;}
.y25{bottom:721.746667pt;}
.y28d{bottom:721.934667pt;}
.y258{bottom:727.713333pt;}
.ye2{bottom:731.300000pt;}
.y10f{bottom:731.697333pt;}
.y212{bottom:735.922667pt;}
.y28c{bottom:737.277333pt;}
.y24{bottom:739.042667pt;}
.y1d2{bottom:744.450667pt;}
.ye1{bottom:748.036000pt;}
.y220{bottom:748.148000pt;}
.y10e{bottom:748.434667pt;}
.y28b{bottom:752.620000pt;}
.y1f6{bottom:755.860000pt;}
.y21f{bottom:756.628000pt;}
.y1d1{bottom:761.186667pt;}
.ye0{bottom:764.773333pt;}
.y10d{bottom:765.172000pt;}
.y28a{bottom:767.961333pt;}
.y23{bottom:773.340000pt;}
.y1d0{bottom:777.924000pt;}
.ydf{bottom:781.510667pt;}
.y10c{bottom:781.909333pt;}
.y289{bottom:783.304000pt;}
.y22{bottom:787.686667pt;}
.y1cf{bottom:794.661333pt;}
.yde{bottom:798.248000pt;}
.y10b{bottom:798.646667pt;}
.y21{bottom:805.890667pt;}
.y1ce{bottom:811.398667pt;}
.y288{bottom:813.989333pt;}
.ydd{bottom:814.985333pt;}
.y10a{bottom:815.384000pt;}
.y20{bottom:820.237333pt;}
.y1cd{bottom:828.136000pt;}
.y287{bottom:829.332000pt;}
.y1f{bottom:830.725333pt;}
.y109{bottom:832.121333pt;}
.ydc{bottom:835.708000pt;}
.y286{bottom:844.674667pt;}
.y1cc{bottom:844.873333pt;}
.y108{bottom:848.858667pt;}
.y1e{bottom:848.929333pt;}
.y285{bottom:860.017333pt;}
.y1cb{bottom:861.610667pt;}
.ydb{bottom:865.596000pt;}
.y284{bottom:875.360000pt;}
.y1ca{bottom:878.348000pt;}
.yda{bottom:882.333333pt;}
.y1d{bottom:888.641333pt;}
.y2b3{bottom:890.701333pt;}
.y283{bottom:890.702667pt;}
.y1c9{bottom:895.085333pt;}
.yd9{bottom:899.070667pt;}
.y282{bottom:906.044000pt;}
.y1c8{bottom:911.822667pt;}
.yd8{bottom:915.808000pt;}
.y1c{bottom:921.320000pt;}
.y281{bottom:921.386667pt;}
.y1c7{bottom:928.560000pt;}
.y238{bottom:930.484133pt;}
.yd7{bottom:932.545333pt;}
.y280{bottom:936.729333pt;}
.y237{bottom:938.964133pt;}
.y1c6{bottom:945.297333pt;}
.y1b{bottom:946.425333pt;}
.yd6{bottom:949.282667pt;}
.y27f{bottom:952.072000pt;}
.y1c5{bottom:962.034667pt;}
.y49{bottom:966.020000pt;}
.y27e{bottom:967.414667pt;}
.y1a{bottom:971.530667pt;}
.y48{bottom:982.757333pt;}
.y17{bottom:1010.186667pt;}
.y47{bottom:1038.548000pt;}
.y23a{bottom:1045.200000pt;}
.y239{bottom:1063.120000pt;}
.h37{height:-67.078667pt;}
.h1c{height:-52.713333pt;}
.h38{height:-49.158667pt;}
.h1d{height:-34.593333pt;}
.h26{height:13.177199pt;}
.h35{height:17.024000pt;}
.h17{height:18.112000pt;}
.ha{height:23.209028pt;}
.h29{height:23.476172pt;}
.h28{height:23.570391pt;}
.h2b{height:26.279297pt;}
.h2{height:27.076941pt;}
.h4{height:27.262909pt;}
.h3{height:27.652941pt;}
.h2a{height:29.082422pt;}
.h2e{height:29.199141pt;}
.h1e{height:29.397999pt;}
.h22{height:29.736484pt;}
.h21{height:29.855828pt;}
.hb{height:30.945242pt;}
.h2c{height:31.130859pt;}
.h11{height:31.157778pt;}
.h14{height:31.301562pt;}
.h13{height:31.427187pt;}
.hc{height:31.606575pt;}
.h24{height:33.287109pt;}
.hd{height:34.430976pt;}
.he{height:34.813542pt;}
.h18{height:35.039062pt;}
.h39{height:35.052646pt;}
.h1a{height:35.554876pt;}
.h23{height:36.837734pt;}
.h25{height:36.985578pt;}
.hf{height:38.256384pt;}
.h10{height:38.681455pt;}
.h16{height:38.776563pt;}
.h7{height:38.947124pt;}
.h30{height:40.832187pt;}
.h19{height:42.981250pt;}
.h5{height:45.272024pt;}
.h9{height:48.365611pt;}
.h6{height:68.781897pt;}
.h8{height:68.861952pt;}
.h20{height:151.245067pt;}
.h15{height:228.960000pt;}
.h2f{height:240.181533pt;}
.h12{height:253.942667pt;}
.h1b{height:270.761333pt;}
.h2d{height:275.386000pt;}
.h27{height:286.318000pt;}
.h32{height:311.684000pt;}
.h1f{height:326.258667pt;}
.h34{height:332.601333pt;}
.h31{height:343.636000pt;}
.h33{height:356.277867pt;}
.h36{height:477.898800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w14{width:-43.124000pt;}
.w7{width:178.240000pt;}
.w2{width:184.542183pt;}
.w13{width:213.022667pt;}
.w12{width:258.881333pt;}
.w8{width:295.452000pt;}
.w4{width:348.866667pt;}
.w5{width:349.026667pt;}
.w9{width:363.817333pt;}
.wc{width:371.667000pt;}
.wb{width:376.712000pt;}
.w11{width:404.104667pt;}
.w6{width:473.692000pt;}
.wf{width:501.160000pt;}
.wd{width:501.665867pt;}
.wa{width:505.392400pt;}
.we{width:517.978667pt;}
.w10{width:666.756993pt;}
.w3{width:699.606533pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x94{left:-175.672000pt;}
.x97{left:-172.309333pt;}
.x16{left:-170.626667pt;}
.xa6{left:-169.226667pt;}
.x93{left:-162.095333pt;}
.x67{left:-159.966067pt;}
.x89{left:-127.129000pt;}
.x79{left:-125.027000pt;}
.x19{left:-4.040000pt;}
.x96{left:-1.725333pt;}
.x0{left:0.000000pt;}
.x99{left:1.637333pt;}
.x1a{left:3.320000pt;}
.x68{left:5.283267pt;}
.x8b{left:24.571000pt;}
.x7b{left:26.673000pt;}
.x1c{left:31.640000pt;}
.xa9{left:35.640000pt;}
.x1{left:47.621333pt;}
.x3{left:51.603593pt;}
.x9c{left:63.285140pt;}
.x9d{left:66.280933pt;}
.xac{left:76.309333pt;}
.xa1{left:121.334000pt;}
.xaa{left:127.720000pt;}
.x2{left:131.985333pt;}
.x10{left:166.586667pt;}
.xa2{left:168.245127pt;}
.x11{left:174.297200pt;}
.x17{left:175.840000pt;}
.xa0{left:194.623333pt;}
.x13{left:202.617200pt;}
.xab{left:210.706667pt;}
.x8{left:220.912000pt;}
.x5{left:221.858667pt;}
.x6{left:239.924000pt;}
.x4b{left:241.356000pt;}
.xa{left:250.204000pt;}
.x70{left:253.322667pt;}
.x4c{left:254.638667pt;}
.x9f{left:256.766000pt;}
.x7{left:260.316000pt;}
.x5b{left:267.120000pt;}
.xa8{left:270.280000pt;}
.x8c{left:272.593333pt;}
.x9{left:273.800000pt;}
.x9b{left:275.020000pt;}
.xa3{left:278.701333pt;}
.x5c{left:280.402667pt;}
.x87{left:283.812000pt;}
.x57{left:288.993333pt;}
.x88{left:292.017333pt;}
.x47{left:293.884000pt;}
.x58{left:302.277333pt;}
.x23{left:305.529333pt;}
.x48{left:307.166667pt;}
.x24{left:312.170667pt;}
.x49{left:313.676000pt;}
.x63{left:317.482667pt;}
.x85{left:320.154667pt;}
.x4a{left:326.960000pt;}
.x64{left:330.766667pt;}
.x86{left:333.438667pt;}
.x65{left:337.308000pt;}
.x55{left:338.410667pt;}
.x51{left:339.384000pt;}
.xd{left:346.466667pt;}
.xf{left:347.426667pt;}
.x6a{left:349.112000pt;}
.x66{left:350.592000pt;}
.x56{left:351.693333pt;}
.x52{left:352.668000pt;}
.x53{left:355.954667pt;}
.x6b{left:362.396000pt;}
.x2b{left:363.465333pt;}
.x54{left:369.238667pt;}
.x8a{left:370.851000pt;}
.x7a{left:379.433000pt;}
.xb{left:384.838667pt;}
.x32{left:385.986667pt;}
.x39{left:386.929333pt;}
.xc{left:391.480000pt;}
.xe{left:396.838667pt;}
.x18{left:400.098667pt;}
.x9e{left:402.432667pt;}
.x14{left:410.018667pt;}
.x8d{left:426.577333pt;}
.x30{left:433.460000pt;}
.x7f{left:436.950667pt;}
.x8e{left:439.860000pt;}
.x8f{left:443.165333pt;}
.x31{left:446.744000pt;}
.x80{left:450.234667pt;}
.x81{left:453.489333pt;}
.x90{left:456.448000pt;}
.x2c{left:458.554667pt;}
.x6d{left:460.776000pt;}
.x82{left:466.772000pt;}
.x1b{left:469.826667pt;}
.x2d{left:471.838667pt;}
.xa7{left:478.005333pt;}
.x15{left:479.477333pt;}
.x91{left:486.652000pt;}
.x29{left:490.912000pt;}
.x2e{left:492.241333pt;}
.x2a{left:497.553333pt;}
.x92{left:499.934667pt;}
.x69{left:503.184600pt;}
.x25{left:505.240000pt;}
.x4{left:507.334667pt;}
.x26{left:511.881333pt;}
.x45{left:515.362667pt;}
.x95{left:516.301333pt;}
.x9a{left:518.064000pt;}
.x98{left:519.664000pt;}
.x4f{left:526.022667pt;}
.x33{left:527.729333pt;}
.x46{left:528.646667pt;}
.x6e{left:531.720000pt;}
.x5f{left:535.612000pt;}
.x50{left:539.305333pt;}
.x34{left:541.012000pt;}
.x4d{left:543.112000pt;}
.x6f{left:545.002667pt;}
.x60{left:548.894667pt;}
.x3f{left:549.844000pt;}
.x4e{left:556.394667pt;}
.x40{left:563.126667pt;}
.x71{left:564.573333pt;}
.x41{left:566.412000pt;}
.x43{left:572.038667pt;}
.x59{left:574.480000pt;}
.x44{left:578.680000pt;}
.x42{left:579.694667pt;}
.x5d{left:581.864000pt;}
.x75{left:583.433333pt;}
.xa4{left:584.394667pt;}
.x5a{left:587.764000pt;}
.xa5{left:590.372000pt;}
.x72{left:592.072000pt;}
.x5e{left:595.148000pt;}
.x76{left:596.716000pt;}
.x73{left:605.354667pt;}
.x1d{left:614.929333pt;}
.x1e{left:621.570667pt;}
.x37{left:633.753333pt;}
.x6c{left:636.024000pt;}
.x12{left:640.803867pt;}
.x38{left:647.037333pt;}
.x35{left:648.585333pt;}
.x3a{left:653.382667pt;}
.x36{left:661.869333pt;}
.xad{left:664.232000pt;}
.x7c{left:665.588000pt;}
.x21{left:666.573333pt;}
.xb1{left:669.576000pt;}
.x22{left:673.214667pt;}
.x74{left:675.472000pt;}
.x7d{left:677.120000pt;}
.x83{left:681.166667pt;}
.xae{left:688.142667pt;}
.xb2{left:692.529333pt;}
.x84{left:694.450667pt;}
.x61{left:695.832000pt;}
.xaf{left:698.814667pt;}
.x62{left:702.473333pt;}
.x3b{left:707.186667pt;}
.x77{left:715.492000pt;}
.x3c{left:720.470667pt;}
.x78{left:722.464000pt;}
.x3d{left:727.060000pt;}
.x2f{left:728.006667pt;}
.x27{left:730.246667pt;}
.x28{left:732.569333pt;}
.x1f{left:734.657333pt;}
.x7e{left:739.000000pt;}
.x3e{left:740.342667pt;}
.x20{left:741.300000pt;}
.xb0{left:744.248000pt;}
}


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