
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_30275bba31e5.woff")format("woff");}.ff1{font-family:ff1;line-height:0.638000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_59e84582a1bf.woff")format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_26ed3d7c81f0.woff")format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_f948e481c702.woff")format("woff");}.ff7{font-family:ff7;line-height:1.151000;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_8962163ffefe.woff")format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_35b76cb4f352.woff")format("woff");}.ff9{font-family:ff9;line-height:1.013672;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_5d2d960e8c99.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_9d1ecdcc74b4.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_18453ac33859.woff")format("woff");}.ffc{font-family:ffc;line-height:0.773000;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_152aa88906b2.woff")format("woff");}.ffd{font-family:ffd;line-height:1.123000;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_ed57d27d7098.woff")format("woff");}.ffe{font-family:ffe;line-height:0.989000;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_b74ef472ca14.woff")format("woff");}.fff{font-family:fff;line-height:1.151000;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_e29668443c4c.woff")format("woff");}.ff10{font-family:ff10;line-height:1.123000;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_9b7e9715b54b.woff")format("woff");}.ff11{font-family:ff11;line-height:0.989000;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_07e9ce9906ff.woff")format("woff");}.ff12{font-family:ff12;line-height:1.151000;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_e29668443c4c.woff")format("woff");}.ff13{font-family:ff13;line-height:1.123000;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_9b7e9715b54b.woff")format("woff");}.ff14{font-family:ff14;line-height:0.989000;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_2a9709ff4471.woff")format("woff");}.ff15{font-family:ff15;line-height:1.151000;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_b940a1cd8c7d.woff")format("woff");}.ff16{font-family:ff16;line-height:1.013672;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_fc48fb597f98.woff")format("woff");}.ff17{font-family:ff17;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_b86a9e06f43a.woff")format("woff");}.ff18{font-family:ff18;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:ff19;src:url("fonts/font_0024_8d4a7ebbe4b6.woff")format("woff");}.ff19{font-family:ff19;line-height:1.013672;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_fd376830238e.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_2c78da90da7b.woff")format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url("fonts/font_0027_d00cff6a0756.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_8d4a7ebbe4b6.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.013672;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_fd376830238e.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_2c78da90da7b.woff")format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url("fonts/font_0031_d00cff6a0756.woff")format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_eaafaea6aa94.woff")format("woff");}.ff21{font-family:ff21;line-height:1.013672;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_b301dba6e95c.woff")format("woff");}.ff22{font-family:ff22;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_2edae6937b4a.woff")format("woff");}.ff23{font-family:ff23;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:ff24;src:url("fonts/font_0035_0eb334ec45b1.woff")format("woff");}.ff24{font-family:ff24;line-height:0.909180;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_eaafaea6aa94.woff")format("woff");}.ff25{font-family:ff25;line-height:1.013672;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_b301dba6e95c.woff")format("woff");}.ff26{font-family:ff26;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_2edae6937b4a.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_0eb334ec45b1.woff")format("woff");}.ff28{font-family:ff28;line-height:0.909180;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_2f02cb8f9507.woff")format("woff");}.ff29{font-family:ff29;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{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);}
.m15{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);}
.ma{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);}
.m2{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);}
.m24{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);}
.m3{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);}
.m25{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);}
.m1d{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);}
.mb{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);}
.m12{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);}
.m26{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);}
.m17{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);}
.m11{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);}
.m1f{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);}
.m23{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);}
.m19{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);}
.m6{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);}
.m10{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);}
.m4{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);}
.m1b{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);}
.m2d{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m27{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);}
.m18{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);}
.mc{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);}
.md{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);}
.m21{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m28{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);}
.m7{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);}
.m8{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);}
.m5{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);}
.m1a{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);}
.m20{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);}
.m16{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);}
.m1e{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);}
.m13{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);}
.m1c{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);}
.m22{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);}
.m1{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);}
.mf{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);}
.v3{vertical-align:-21.702000px;}
.v2{vertical-align:-17.358000px;}
.va{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.020000px;}
.v9{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:24.468000px;}
.v8{vertical-align:27.036000px;}
.v6{vertical-align:48.360000px;}
.v7{vertical-align:51.480000px;}
.ls5a{letter-spacing:-0.366732px;}
.ls4a{letter-spacing:-0.334800px;}
.ls22{letter-spacing:-0.306612px;}
.ls21{letter-spacing:-0.276552px;}
.ls55{letter-spacing:-0.264528px;}
.ls1d{letter-spacing:-0.204408px;}
.ls49{letter-spacing:-0.189000px;}
.ls4c{letter-spacing:-0.144288px;}
.ls54{letter-spacing:-0.132264px;}
.ls24{letter-spacing:-0.120240px;}
.ls20{letter-spacing:-0.114228px;}
.ls26{letter-spacing:-0.108216px;}
.ls4b{letter-spacing:-0.102204px;}
.ls25{letter-spacing:-0.096192px;}
.ls61{letter-spacing:-0.091800px;}
.ls19{letter-spacing:-0.090972px;}
.ls53{letter-spacing:-0.090180px;}
.ls46{letter-spacing:-0.086184px;}
.ls58{letter-spacing:-0.070200px;}
.ls60{letter-spacing:-0.064800px;}
.ls48{letter-spacing:-0.054000px;}
.ls57{letter-spacing:-0.048096px;}
.ls62{letter-spacing:-0.042084px;}
.ls64{letter-spacing:-0.036072px;}
.ls23{letter-spacing:-0.030060px;}
.ls1e{letter-spacing:-0.024048px;}
.ls63{letter-spacing:-0.021600px;}
.ls1a{letter-spacing:-0.019152px;}
.ls1c{letter-spacing:-0.018036px;}
.ls1f{letter-spacing:-0.012024px;}
.ls56{letter-spacing:-0.010800px;}
.ls47{letter-spacing:-0.009576px;}
.ls27{letter-spacing:-0.006012px;}
.ls1b{letter-spacing:-0.005400px;}
.ls6{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000608px;}
.ls6e{letter-spacing:0.000800px;}
.ls74{letter-spacing:0.002053px;}
.ls2f{letter-spacing:0.002728px;}
.ls71{letter-spacing:0.004026px;}
.ls72{letter-spacing:0.004800px;}
.ls43{letter-spacing:0.005400px;}
.ls10{letter-spacing:0.006012px;}
.ls4e{letter-spacing:0.007200px;}
.ls3f{letter-spacing:0.010800px;}
.ls45{letter-spacing:0.012024px;}
.ls3e{letter-spacing:0.016200px;}
.ls12{letter-spacing:0.018036px;}
.lsb{letter-spacing:0.021600px;}
.ls15{letter-spacing:0.024048px;}
.ls42{letter-spacing:0.027000px;}
.ls13{letter-spacing:0.030060px;}
.ls3d{letter-spacing:0.032400px;}
.ls17{letter-spacing:0.036072px;}
.lse{letter-spacing:0.042084px;}
.ls50{letter-spacing:0.043200px;}
.ls14{letter-spacing:0.048096px;}
.lsc{letter-spacing:0.048600px;}
.ls8{letter-spacing:0.052668px;}
.ls51{letter-spacing:0.054000px;}
.lsd{letter-spacing:0.054108px;}
.ls5e{letter-spacing:0.059400px;}
.ls16{letter-spacing:0.060120px;}
.ls3b{letter-spacing:0.062244px;}
.ls18{letter-spacing:0.066132px;}
.ls44{letter-spacing:0.072144px;}
.ls5c{letter-spacing:0.075600px;}
.ls11{letter-spacing:0.078156px;}
.lsf{letter-spacing:0.084168px;}
.ls4d{letter-spacing:0.090180px;}
.ls4f{letter-spacing:0.096192px;}
.ls5d{letter-spacing:0.108000px;}
.ls52{letter-spacing:0.108216px;}
.ls40{letter-spacing:0.140400px;}
.ls41{letter-spacing:0.151200px;}
.lsa{letter-spacing:0.167580px;}
.ls5b{letter-spacing:0.172368px;}
.ls9{letter-spacing:0.181944px;}
.ls59{letter-spacing:0.183600px;}
.ls3c{letter-spacing:0.191520px;}
.ls30{letter-spacing:0.434370px;}
.ls29{letter-spacing:0.542815px;}
.ls2d{letter-spacing:0.548815px;}
.ls7{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls2c{letter-spacing:2.197200px;}
.ls2b{letter-spacing:2.767200px;}
.ls75{letter-spacing:2.988600px;}
.ls2e{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls2{letter-spacing:10.461300px;}
.ls35{letter-spacing:10.759365px;}
.ls5{letter-spacing:11.954850px;}
.ls38{letter-spacing:12.672141px;}
.ls6a{letter-spacing:13.141175px;}
.ls73{letter-spacing:13.385894px;}
.ls6b{letter-spacing:13.448400px;}
.ls68{letter-spacing:13.454400px;}
.ls6c{letter-spacing:13.591576px;}
.ls70{letter-spacing:13.605566px;}
.ls6d{letter-spacing:13.809224px;}
.ls65{letter-spacing:14.888100px;}
.ls28{letter-spacing:14.943900px;}
.ls69{letter-spacing:15.850400px;}
.ls39{letter-spacing:16.440600px;}
.ls5f{letter-spacing:16.664400px;}
.ls76{letter-spacing:16.676400px;}
.ls3a{letter-spacing:16.679510px;}
.ls67{letter-spacing:17.556100px;}
.ls66{letter-spacing:17.738453px;}
.ls77{letter-spacing:17.791576px;}
.ls2a{letter-spacing:17.935200px;}
.ls36{letter-spacing:19.803159px;}
.ls6f{letter-spacing:20.662165px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls32{letter-spacing:213.287740px;}
.ls31{letter-spacing:227.705740px;}
.ls34{letter-spacing:289.355700px;}
.ls33{letter-spacing:344.261740px;}
.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;}
}
.ws8c{word-spacing:-29.887800px;}
.ws84{word-spacing:-14.943900px;}
.ws3{word-spacing:-14.355754px;}
.wsbf{word-spacing:-13.449600px;}
.wsd4{word-spacing:-12.672459px;}
.wse5{word-spacing:-12.161520px;}
.ws3a{word-spacing:-12.151944px;}
.ws32{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.wsb9{word-spacing:-10.759635px;}
.ws8{word-spacing:-10.460700px;}
.wsd1{word-spacing:-3.646312px;}
.ws57{word-spacing:-3.559104px;}
.ws58{word-spacing:-3.511008px;}
.ws27{word-spacing:-3.227882px;}
.ws184{word-spacing:-3.012710px;}
.ws7d{word-spacing:-2.988780px;}
.wsca{word-spacing:-2.869229px;}
.ws8b{word-spacing:-2.749678px;}
.wsc4{word-spacing:-2.689902px;}
.wsc3{word-spacing:-2.684686px;}
.wsde{word-spacing:-2.630126px;}
.ws15f{word-spacing:-2.510575px;}
.ws11d{word-spacing:-2.488968px;}
.ws11c{word-spacing:-2.458908px;}
.ws11e{word-spacing:-2.440872px;}
.ws30{word-spacing:-2.391024px;}
.wsfc{word-spacing:-2.320632px;}
.wsfd{word-spacing:-2.278548px;}
.wsbc{word-spacing:-2.259533px;}
.ws154{word-spacing:-2.211697px;}
.wsb5{word-spacing:-2.151922px;}
.ws14c{word-spacing:-2.068128px;}
.wsbd{word-spacing:-2.044339px;}
.wsdb{word-spacing:-1.972595px;}
.ws5{word-spacing:-1.908367px;}
.wse6{word-spacing:-1.829146px;}
.wsdf{word-spacing:-1.733492px;}
.ws94{word-spacing:-1.673717px;}
.ws1b8{word-spacing:-1.667750px;}
.wse7{word-spacing:-1.614845px;}
.wse8{word-spacing:-1.613952px;}
.wsbe{word-spacing:-1.560154px;}
.ws17a{word-spacing:-1.554166px;}
.ws17c{word-spacing:-1.494390px;}
.ws180{word-spacing:-1.452557px;}
.ws8f{word-spacing:-1.434614px;}
.wsce{word-spacing:-1.415335px;}
.wscf{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.ws33{word-spacing:-1.315063px;}
.ws147{word-spacing:-1.306800px;}
.ws146{word-spacing:-1.258200px;}
.ws81{word-spacing:-1.255288px;}
.ws179{word-spacing:-1.214517px;}
.ws178{word-spacing:-1.195512px;}
.ws91{word-spacing:-1.135736px;}
.ws25{word-spacing:-1.075961px;}
.wsd0{word-spacing:-1.060233px;}
.ws8e{word-spacing:-0.956410px;}
.ws19a{word-spacing:-0.914573px;}
.ws82{word-spacing:-0.896634px;}
.ws8d{word-spacing:-0.836858px;}
.ws196{word-spacing:-0.806976px;}
.ws100{word-spacing:-0.777083px;}
.wsea{word-spacing:-0.753178px;}
.ws9e{word-spacing:-0.717307px;}
.ws13d{word-spacing:-0.703404px;}
.ws73{word-spacing:-0.649296px;}
.ws1a5{word-spacing:-0.591782px;}
.wsd2{word-spacing:-0.537980px;}
.ws15c{word-spacing:-0.511376px;}
.wsc8{word-spacing:-0.478205px;}
.ws7a{word-spacing:-0.418429px;}
.wsd9{word-spacing:-0.358654px;}
.ws106{word-spacing:-0.342684px;}
.ws74{word-spacing:-0.330660px;}
.ws18a{word-spacing:-0.322790px;}
.ws150{word-spacing:-0.318636px;}
.wsf9{word-spacing:-0.300600px;}
.ws38{word-spacing:-0.298878px;}
.ws6a{word-spacing:-0.294588px;}
.ws6d{word-spacing:-0.288576px;}
.ws110{word-spacing:-0.282564px;}
.ws72{word-spacing:-0.276552px;}
.ws1a3{word-spacing:-0.268992px;}
.ws1af{word-spacing:-0.255661px;}
.ws23{word-spacing:-0.239102px;}
.ws112{word-spacing:-0.234468px;}
.ws136{word-spacing:-0.232200px;}
.ws11f{word-spacing:-0.226800px;}
.ws133{word-spacing:-0.215194px;}
.ws37{word-spacing:-0.179327px;}
.wse9{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.ws1e{word-spacing:-0.107597px;}
.ws153{word-spacing:-0.081008px;}
.wseb{word-spacing:-0.076608px;}
.ws44{word-spacing:-0.071820px;}
.wsc1{word-spacing:-0.062902px;}
.ws19e{word-spacing:-0.062563px;}
.ws129{word-spacing:-0.062208px;}
.ws29{word-spacing:-0.059776px;}
.wsd6{word-spacing:-0.057026px;}
.ws128{word-spacing:-0.055066px;}
.ws1d{word-spacing:-0.053798px;}
.ws1c{word-spacing:-0.052214px;}
.wsd5{word-spacing:-0.050690px;}
.wsbb{word-spacing:-0.048419px;}
.wsdd{word-spacing:-0.047821px;}
.ws90{word-spacing:-0.047338px;}
.wsba{word-spacing:-0.043039px;}
.ws193{word-spacing:-0.027571px;}
.ws158{word-spacing:-0.024202px;}
.ws124{word-spacing:-0.012024px;}
.ws12b{word-spacing:-0.009736px;}
.ws1a9{word-spacing:-0.008045px;}
.ws173{word-spacing:-0.007948px;}
.wsb1{word-spacing:-0.007763px;}
.ws1a6{word-spacing:-0.006730px;}
.wsae{word-spacing:-0.006172px;}
.ws19b{word-spacing:-0.003888px;}
.ws177{word-spacing:-0.002861px;}
.ws31{word-spacing:-0.002417px;}
.ws1ac{word-spacing:-0.002045px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:0.002999px;}
.ws10f{word-spacing:0.006012px;}
.wscd{word-spacing:0.008265px;}
.ws10a{word-spacing:0.012024px;}
.ws163{word-spacing:0.015238px;}
.wsf5{word-spacing:0.024048px;}
.wsfe{word-spacing:0.030060px;}
.ws161{word-spacing:0.044061px;}
.ws162{word-spacing:0.046852px;}
.wsf4{word-spacing:0.048096px;}
.ws3b{word-spacing:0.053798px;}
.ws34{word-spacing:0.059776px;}
.ws13a{word-spacing:0.070200px;}
.ws111{word-spacing:0.072144px;}
.wsf8{word-spacing:0.084168px;}
.wsf7{word-spacing:0.090180px;}
.ws109{word-spacing:0.096192px;}
.ws138{word-spacing:0.102600px;}
.ws1b{word-spacing:0.107597px;}
.wsf6{word-spacing:0.114228px;}
.ws13b{word-spacing:0.118800px;}
.ws42{word-spacing:0.119551px;}
.ws107{word-spacing:0.126252px;}
.ws49{word-spacing:0.129600px;}
.ws192{word-spacing:0.134140px;}
.ws115{word-spacing:0.140400px;}
.ws155{word-spacing:0.143124px;}
.wsc5{word-spacing:0.150376px;}
.wsed{word-spacing:0.151200px;}
.ws48{word-spacing:0.156600px;}
.ws1b6{word-spacing:0.158004px;}
.wse0{word-spacing:0.161395px;}
.wsf0{word-spacing:0.162000px;}
.wsee{word-spacing:0.167400px;}
.wsad{word-spacing:0.168892px;}
.ws116{word-spacing:0.172800px;}
.ws46{word-spacing:0.178200px;}
.ws28{word-spacing:0.179327px;}
.ws47{word-spacing:0.183600px;}
.wsf3{word-spacing:0.189000px;}
.ws17b{word-spacing:0.190356px;}
.wsb4{word-spacing:0.191282px;}
.ws19d{word-spacing:0.194178px;}
.ws117{word-spacing:0.194400px;}
.ws5c{word-spacing:0.204408px;}
.wsa{word-spacing:0.209214px;}
.ws1ab{word-spacing:0.209444px;}
.ws98{word-spacing:0.209606px;}
.wsb6{word-spacing:0.211038px;}
.ws97{word-spacing:0.212132px;}
.ws17{word-spacing:0.215194px;}
.wsb7{word-spacing:0.221887px;}
.wsef{word-spacing:0.237600px;}
.ws79{word-spacing:0.239102px;}
.ws137{word-spacing:0.243000px;}
.ws120{word-spacing:0.253800px;}
.ws181{word-spacing:0.268992px;}
.ws139{word-spacing:0.270000px;}
.wsc{word-spacing:0.292900px;}
.ws26{word-spacing:0.298878px;}
.ws2d{word-spacing:0.358654px;}
.wsf1{word-spacing:0.372600px;}
.ws14b{word-spacing:0.378756px;}
.ws14e{word-spacing:0.396792px;}
.ws10b{word-spacing:0.408816px;}
.ws121{word-spacing:0.432864px;}
.ws16a{word-spacing:0.445259px;}
.ws122{word-spacing:0.462924px;}
.ws16b{word-spacing:0.467774px;}
.ws83{word-spacing:0.478205px;}
.ws1f{word-spacing:0.484186px;}
.wsf2{word-spacing:0.518400px;}
.ws175{word-spacing:0.520715px;}
.ws174{word-spacing:0.526029px;}
.ws176{word-spacing:0.536556px;}
.wse1{word-spacing:0.537980px;}
.ws14a{word-spacing:0.547092px;}
.ws2{word-spacing:0.562186px;}
.ws159{word-spacing:0.597756px;}
.ws7f{word-spacing:0.657532px;}
.ws5e{word-spacing:0.727452px;}
.ws5d{word-spacing:0.757512px;}
.ws160{word-spacing:0.777083px;}
.ws14d{word-spacing:0.781560px;}
.ws135{word-spacing:0.793584px;}
.ws119{word-spacing:0.799596px;}
.ws11a{word-spacing:0.811620px;}
.ws105{word-spacing:0.836858px;}
.ws11b{word-spacing:0.865728px;}
.ws7e{word-spacing:1.016185px;}
.ws108{word-spacing:1.118232px;}
.ws95{word-spacing:1.135736px;}
.ws52{word-spacing:1.148292px;}
.ws140{word-spacing:1.178352px;}
.wsc9{word-spacing:1.182502px;}
.ws5b{word-spacing:1.184364px;}
.ws53{word-spacing:1.190376px;}
.ws93{word-spacing:1.195512px;}
.ws64{word-spacing:1.202400px;}
.ws3d{word-spacing:1.255288px;}
.ws66{word-spacing:1.268532px;}
.ws65{word-spacing:1.292580px;}
.ws43{word-spacing:1.315063px;}
.ws35{word-spacing:1.374839px;}
.ws1b5{word-spacing:1.398758px;}
.ws39{word-spacing:1.434614px;}
.ws15d{word-spacing:1.613941px;}
.ws17f{word-spacing:1.613952px;}
.ws16{word-spacing:1.667750px;}
.wsd8{word-spacing:1.775347px;}
.wsc7{word-spacing:1.793268px;}
.ws113{word-spacing:1.797588px;}
.ws76{word-spacing:1.821636px;}
.ws1b3{word-spacing:1.829146px;}
.ws188{word-spacing:1.882944px;}
.ws114{word-spacing:1.893780px;}
.ws9c{word-spacing:1.912819px;}
.ws15a{word-spacing:1.972595px;}
.ws131{word-spacing:1.973218px;}
.ws130{word-spacing:1.977526px;}
.ws132{word-spacing:1.990541px;}
.ws168{word-spacing:2.003713px;}
.wsb{word-spacing:2.008454px;}
.ws169{word-spacing:2.027589px;}
.ws96{word-spacing:2.032370px;}
.wsd7{word-spacing:2.044339px;}
.ws165{word-spacing:2.048320px;}
.ws167{word-spacing:2.049401px;}
.ws2b{word-spacing:2.092146px;}
.ws164{word-spacing:2.151922px;}
.ws4c{word-spacing:2.206404px;}
.ws2f{word-spacing:2.211697px;}
.ws118{word-spacing:2.212416px;}
.ws4b{word-spacing:2.266524px;}
.ws9b{word-spacing:2.271473px;}
.ws12f{word-spacing:2.313331px;}
.ws144{word-spacing:2.316600px;}
.ws145{word-spacing:2.332800px;}
.ws15{word-spacing:2.367130px;}
.ws189{word-spacing:2.420928px;}
.ws36{word-spacing:2.510575px;}
.ws63{word-spacing:2.525040px;}
.wsfa{word-spacing:2.543076px;}
.ws126{word-spacing:2.561112px;}
.ws85{word-spacing:2.570351px;}
.ws182{word-spacing:2.582323px;}
.ws125{word-spacing:2.603196px;}
.wsfb{word-spacing:2.609208px;}
.ws166{word-spacing:2.613666px;}
.ws15e{word-spacing:2.630126px;}
.ws1a8{word-spacing:2.743718px;}
.ws1a7{word-spacing:2.797517px;}
.wsda{word-spacing:2.809453px;}
.ws14{word-spacing:2.869236px;}
.ws18b{word-spacing:2.905114px;}
.ws78{word-spacing:2.915820px;}
.ws10d{word-spacing:2.975940px;}
.ws1a{word-spacing:3.012710px;}
.wse2{word-spacing:3.048556px;}
.ws10e{word-spacing:3.066120px;}
.ws19{word-spacing:3.066509px;}
.ws194{word-spacing:3.174106px;}
.ws127{word-spacing:3.194333px;}
.ws1ba{word-spacing:3.217853px;}
.ws1b7{word-spacing:3.220531px;}
.ws191{word-spacing:3.220963px;}
.ws1a4{word-spacing:3.222307px;}
.ws1a1{word-spacing:3.222326px;}
.ws1a2{word-spacing:3.222451px;}
.ws19c{word-spacing:3.223469px;}
.ws1b4{word-spacing:3.224602px;}
.ws12a{word-spacing:3.224755px;}
.ws19f{word-spacing:3.225245px;}
.ws17d{word-spacing:3.227882px;}
.ws18e{word-spacing:3.227904px;}
.ws1b9{word-spacing:3.229526px;}
.ws18c{word-spacing:3.230112px;}
.ws18d{word-spacing:3.281702px;}
.ws77{word-spacing:3.306600px;}
.ws2c{word-spacing:3.347434px;}
.ws1ae{word-spacing:3.389299px;}
.ws1ad{word-spacing:3.394096px;}
.ws172{word-spacing:3.407209px;}
.ws16d{word-spacing:3.419712px;}
.ws16f{word-spacing:3.431753px;}
.ws170{word-spacing:3.434428px;}
.ws171{word-spacing:3.436556px;}
.ws1b0{word-spacing:3.443098px;}
.ws9a{word-spacing:3.466985px;}
.wsc2{word-spacing:3.516379px;}
.wse4{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws10c{word-spacing:3.631248px;}
.ws5f{word-spacing:3.685356px;}
.wse3{word-spacing:3.706087px;}
.ws60{word-spacing:3.709404px;}
.ws18{word-spacing:3.712090px;}
.ws1a0{word-spacing:3.765888px;}
.ws88{word-spacing:3.816267px;}
.ws86{word-spacing:3.819712px;}
.ws89{word-spacing:3.822372px;}
.ws2e{word-spacing:3.825638px;}
.ws195{word-spacing:3.873485px;}
.wscb{word-spacing:3.885414px;}
.wsa3{word-spacing:3.945190px;}
.ws3f{word-spacing:4.004965px;}
.ws6e{word-spacing:4.076136px;}
.ws102{word-spacing:4.088678px;}
.ws2a{word-spacing:4.184292px;}
.ws41{word-spacing:4.244068px;}
.ws7c{word-spacing:4.303843px;}
.ws16c{word-spacing:4.344256px;}
.ws16e{word-spacing:4.345369px;}
.ws1b2{word-spacing:4.357670px;}
.ws80{word-spacing:4.363619px;}
.ws148{word-spacing:4.370724px;}
.ws101{word-spacing:4.411469px;}
.ws104{word-spacing:4.423394px;}
.ws1aa{word-spacing:4.465267px;}
.ws103{word-spacing:4.483170px;}
.ws3e{word-spacing:4.542946px;}
.ws9d{word-spacing:4.662497px;}
.ws61{word-spacing:4.719420px;}
.wsc6{word-spacing:4.722272px;}
.ws92{word-spacing:4.782048px;}
.ws197{word-spacing:4.788058px;}
.ws87{word-spacing:4.848102px;}
.wsc0{word-spacing:4.961375px;}
.ws4d{word-spacing:5.044068px;}
.ws62{word-spacing:5.074128px;}
.ws15b{word-spacing:5.080926px;}
.ws24{word-spacing:5.140702px;}
.wsa2{word-spacing:5.200477px;}
.wscc{word-spacing:5.260253px;}
.ws14f{word-spacing:5.440860px;}
.ws151{word-spacing:5.499355px;}
.ws198{word-spacing:5.702630px;}
.ws3c{word-spacing:5.738458px;}
.ws7b{word-spacing:5.798233px;}
.wsa1{word-spacing:5.876268px;}
.ws141{word-spacing:5.913000px;}
.wsa0{word-spacing:5.917784px;}
.ws18f{word-spacing:5.938942px;}
.ws143{word-spacing:5.950800px;}
.ws142{word-spacing:5.961600px;}
.ws190{word-spacing:5.971622px;}
.ws12{word-spacing:6.067206px;}
.ws13{word-spacing:6.150892px;}
.ws157{word-spacing:6.156887px;}
.ws9f{word-spacing:6.216662px;}
.ws8a{word-spacing:6.575316px;}
.ws20{word-spacing:6.617203px;}
.ws186{word-spacing:6.900235px;}
.ws187{word-spacing:6.939994px;}
.ws156{word-spacing:6.993745px;}
.ws152{word-spacing:7.053521px;}
.ws199{word-spacing:7.208986px;}
.ws50{word-spacing:7.220412px;}
.ws12e{word-spacing:7.292623px;}
.ws12d{word-spacing:7.471950px;}
.ws183{word-spacing:7.477978px;}
.ws75{word-spacing:7.611192px;}
.wsff{word-spacing:7.890379px;}
.ws134{word-spacing:8.009930px;}
.ws17e{word-spacing:8.069706px;}
.ws12c{word-spacing:8.308808px;}
.ws51{word-spacing:8.350668px;}
.ws71{word-spacing:8.362692px;}
.ws99{word-spacing:8.488135px;}
.ws10{word-spacing:8.661460px;}
.ws185{word-spacing:8.715341px;}
.ws70{word-spacing:8.735436px;}
.ws6f{word-spacing:8.837640px;}
.ws4a{word-spacing:9.036036px;}
.ws67{word-spacing:9.408780px;}
.ws4f{word-spacing:9.733428px;}
.ws4e{word-spacing:9.805572px;}
.ws9{word-spacing:10.460700px;}
.wsb8{word-spacing:10.714527px;}
.ws123{word-spacing:11.230416px;}
.ws13e{word-spacing:11.266488px;}
.ws13f{word-spacing:11.290536px;}
.ws149{word-spacing:11.567088px;}
.wsec{word-spacing:11.615688px;}
.ws45{word-spacing:11.620476px;}
.ws5a{word-spacing:11.633220px;}
.wsdc{word-spacing:11.905030px;}
.ws6c{word-spacing:11.933820px;}
.ws59{word-spacing:11.939832px;}
.ws68{word-spacing:11.981916px;}
.wsd3{word-spacing:12.619331px;}
.ws13c{word-spacing:13.376700px;}
.ws1b1{word-spacing:13.933786px;}
.ws6{word-spacing:15.483541px;}
.ws40{word-spacing:16.139412px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.wsf{word-spacing:17.699504px;}
.ws54{word-spacing:21.607128px;}
.ws6b{word-spacing:23.068044px;}
.ws11{word-spacing:27.448877px;}
.ws69{word-spacing:31.364604px;}
.ws56{word-spacing:41.098032px;}
.ws55{word-spacing:41.332500px;}
.wsac{word-spacing:247.615067px;}
.wsa7{word-spacing:253.489950px;}
.wsa5{word-spacing:253.592642px;}
.wsab{word-spacing:259.259330px;}
.wsb2{word-spacing:264.384911px;}
.wsa8{word-spacing:265.448723px;}
.wsa6{word-spacing:265.547792px;}
.wsaa{word-spacing:265.595612px;}
.wsa9{word-spacing:277.502942px;}
.wsb0{word-spacing:284.819494px;}
.wsb3{word-spacing:314.707369px;}
.wsaf{word-spacing:352.918400px;}
.wsa4{word-spacing:377.759157px;}
._19{margin-left:-14.378209px;}
._2{margin-left:-9.898906px;}
._0{margin-left:-7.962163px;}
._1b{margin-left:-6.694867px;}
._b{margin-left:-5.678746px;}
._9{margin-left:-4.644551px;}
._5{margin-left:-2.998009px;}
._6{margin-left:-1.322630px;}
._7{width:1.091170px;}
._3{width:2.999088px;}
._3b{width:10.813478px;}
._8{width:12.119740px;}
._a{width:13.419544px;}
._c{width:14.794560px;}
._17{width:15.879466px;}
._d{width:16.892698px;}
._e{width:18.614246px;}
._14{width:19.785724px;}
._10{width:21.568454px;}
._f{width:23.509901px;}
._1a{width:25.292646px;}
._12{width:27.173600px;}
._39{width:29.529146px;}
._13{width:30.545332px;}
._11{width:31.561517px;}
._1{width:33.355008px;}
._33{width:34.610072px;}
._38{width:36.213635px;}
._3a{width:37.778179px;}
._4{width:54.383616px;}
._3c{width:61.868160px;}
._26{width:207.372499px;}
._2b{width:234.513150px;}
._2a{width:263.183088px;}
._2e{width:265.499971px;}
._1f{width:277.502942px;}
._1e{width:281.185128px;}
._20{width:283.528337px;}
._21{width:284.860562px;}
._25{width:289.458092px;}
._23{width:293.140278px;}
._24{width:295.483487px;}
._28{width:301.413242px;}
._1d{width:302.800039px;}
._2f{width:305.102180px;}
._2d{width:307.773382px;}
._2c{width:311.299184px;}
._22{width:314.755189px;}
._27{width:317.050578px;}
._30{width:319.390198px;}
._1c{width:324.175847px;}
._29{width:339.188092px;}
._31{width:987.973596px;}
._15{width:1084.252709px;}
._37{width:2152.694870px;}
._18{width:2175.524054px;}
._32{width:2292.100406px;}
._35{width:2546.778229px;}
._36{width:2587.038588px;}
._16{width:2610.948588px;}
._34{width:2699.584923px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(65,93,146);}
.fs7{font-size:35.865600px;}
.fs13{font-size:36.000000px;}
.fse{font-size:37.371600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsf{font-size:43.038540px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsd{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs10{font-size:48.418560px;}
.fs11{font-size:50.689836px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs12{font-size:57.026304px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs14{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:148.440000px;}
.y229{bottom:-824.464050px;}
.y242{bottom:-758.219775px;}
.y241{bottom:-738.960333px;}
.y240{bottom:-719.700891px;}
.y60{bottom:-712.933050px;}
.y23f{bottom:-700.531629px;}
.y23e{bottom:-681.272187px;}
.y23d{bottom:-662.102925px;}
.y82{bottom:-645.865833px;}
.y23c{bottom:-642.843483px;}
.y81{bottom:-626.606391px;}
.y23b{bottom:-623.584041px;}
.y80{bottom:-607.346949px;}
.y23a{bottom:-599.914797px;}
.y7f{bottom:-588.177687px;}
.y239{bottom:-576.244050px;}
.y1cd{bottom:-570.716550px;}
.y7e{bottom:-568.918245px;}
.y7d{bottom:-549.748983px;}
.y238{bottom:-539.344500px;}
.y7c{bottom:-530.489541px;}
.y237{bottom:-521.974050px;}
.y7b{bottom:-511.230099px;}
.y236{bottom:-504.694050px;}
.y7a{bottom:-492.060837px;}
.y1f2{bottom:-490.165992px;}
.y235{bottom:-487.414050px;}
.y79{bottom:-472.801395px;}
.y1f1{bottom:-470.906550px;}
.y1f0{bottom:-470.905254px;}
.y148{bottom:-465.270750px;}
.y234{bottom:-465.004050px;}
.y78{bottom:-453.632133px;}
.y1ef{bottom:-451.645812px;}
.y77{bottom:-434.372691px;}
.y1ee{bottom:-432.476550px;}
.y76{bottom:-415.113249px;}
.y75{bottom:-395.943987px;}
.y1ed{bottom:-395.667000px;}
.y1ec{bottom:-378.296550px;}
.y74{bottom:-376.684545px;}
.y1a3{bottom:-370.918050px;}
.y254{bottom:-365.359050px;}
.y18b{bottom:-361.986000px;}
.y73{bottom:-357.425103px;}
.y1eb{bottom:-355.885032px;}
.y18a{bottom:-343.156500px;}
.y72{bottom:-338.255841px;}
.y189{bottom:-324.327000px;}
.y71{bottom:-318.996399px;}
.y188{bottom:-305.497500px;}
.y70{bottom:-299.827137px;}
.y1b2{bottom:-299.273046px;}
.y26d{bottom:-299.114775px;}
.y187{bottom:-286.668000px;}
.y6f{bottom:-280.567695px;}
.y1b1{bottom:-280.013604px;}
.y26c{bottom:-279.855333px;}
.y186{bottom:-267.838500px;}
.y6e{bottom:-261.308253px;}
.y1b0{bottom:-260.754162px;}
.y26b{bottom:-260.595891px;}
.y185{bottom:-249.009000px;}
.y6d{bottom:-242.138991px;}
.y1af{bottom:-241.584900px;}
.y26a{bottom:-241.426629px;}
.y184{bottom:-230.179500px;}
.y6c{bottom:-222.879549px;}
.y1ae{bottom:-222.325458px;}
.y269{bottom:-222.167187px;}
.y183{bottom:-211.350000px;}
.y1fe{bottom:-211.339050px;}
.y6b{bottom:-203.710287px;}
.y1ad{bottom:-203.066016px;}
.y268{bottom:-202.997925px;}
.y182{bottom:-192.520500px;}
.y1ea{bottom:-185.154753px;}
.y6a{bottom:-184.450845px;}
.y1ac{bottom:-183.896754px;}
.y267{bottom:-183.738483px;}
.y181{bottom:-173.691000px;}
.y1e9{bottom:-165.895311px;}
.y69{bottom:-165.191403px;}
.y1ab{bottom:-164.637312px;}
.y266{bottom:-164.479041px;}
.y180{bottom:-154.861500px;}
.y1e8{bottom:-146.635869px;}
.y68{bottom:-146.020638px;}
.y1aa{bottom:-145.468050px;}
.y233{bottom:-144.872961px;}
.y265{bottom:-140.809797px;}
.y17f{bottom:-136.032000px;}
.y223{bottom:-130.788492px;}
.y1e7{bottom:-127.465104px;}
.y67{bottom:-126.761196px;}
.y232{bottom:-125.613519px;}
.y17e{bottom:-117.202500px;}
.y264{bottom:-117.139050px;}
.y222{bottom:-111.529050px;}
.y221{bottom:-111.527754px;}
.y1a9{bottom:-108.659400px;}
.y1e6{bottom:-108.205662px;}
.y66{bottom:-107.591934px;}
.y231{bottom:-106.444257px;}
.y17d{bottom:-98.373000px;}
.y220{bottom:-92.268312px;}
.y1a8{bottom:-91.288950px;}
.y1e5{bottom:-89.036400px;}
.y65{bottom:-88.332492px;}
.y230{bottom:-87.184815px;}
.y263{bottom:-80.239500px;}
.y17c{bottom:-79.543500px;}
.y1a7{bottom:-73.918500px;}
.y21f{bottom:-73.099050px;}
.y64{bottom:-69.073050px;}
.y22f{bottom:-68.014050px;}
.y262{bottom:-62.869050px;}
.y17b{bottom:-60.714000px;}
.y1a6{bottom:-56.638500px;}
.y1e4{bottom:-52.226100px;}
.y261{bottom:-45.589050px;}
.y1a5{bottom:-39.358500px;}
.y21e{bottom:-36.289500px;}
.y1e3{bottom:-34.766550px;}
.y63{bottom:-32.263500px;}
.y22e{bottom:-31.203600px;}
.y260{bottom:-28.309050px;}
.y17a{bottom:-27.148500px;}
.y15a{bottom:-21.488850px;}
.y21d{bottom:-18.919050px;}
.y62{bottom:-14.893050px;}
.y22d{bottom:-13.744050px;}
.y1e2{bottom:-12.355794px;}
.y1a4{bottom:-7.948050px;}
.y25f{bottom:-5.899050px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.y21c{bottom:3.492468px;}
.y61{bottom:7.516473px;}
.y22c{bottom:8.665950px;}
.y8{bottom:14.151273px;}
.y2{bottom:15.473478px;}
.y49{bottom:31.890000px;}
.y153{bottom:95.668500px;}
.y278{bottom:100.305000px;}
.y1f{bottom:102.823500px;}
.y2f5{bottom:103.557000px;}
.y48{bottom:104.389500px;}
.yc5{bottom:105.799500px;}
.y297{bottom:106.246500px;}
.y28a{bottom:106.695000px;}
.y8f{bottom:109.411500px;}
.y225{bottom:113.784000px;}
.y2be{bottom:114.003000px;}
.y152{bottom:114.498000px;}
.y1bb{bottom:118.666500px;}
.y277{bottom:119.134500px;}
.y1e{bottom:120.711000px;}
.y2f4{bottom:120.817500px;}
.y47{bottom:123.219000px;}
.yc4{bottom:124.627500px;}
.y296{bottom:125.076000px;}
.y19f{bottom:125.479500px;}
.y288{bottom:125.524500px;}
.y8e{bottom:128.241000px;}
.y289{bottom:130.950000px;}
.y2bd{bottom:131.263500px;}
.y224{bottom:133.015500px;}
.y150{bottom:133.327500px;}
.y1ba{bottom:137.496000px;}
.y276{bottom:137.962500px;}
.y2f3{bottom:138.078000px;}
.y1d{bottom:138.600000px;}
.y151{bottom:138.751500px;}
.y46{bottom:142.048500px;}
.yc3{bottom:143.457000px;}
.y295{bottom:143.905500px;}
.y19d{bottom:144.309000px;}
.y287{bottom:144.354000px;}
.y8d{bottom:147.070500px;}
.y2bc{bottom:148.524000px;}
.y19e{bottom:149.733000px;}
.y14f{bottom:152.157000px;}
.y177{bottom:154.930500px;}
.y2f2{bottom:155.338500px;}
.y1fb{bottom:155.445000px;}
.y1b9{bottom:156.325500px;}
.y1c{bottom:156.487500px;}
.y275{bottom:156.792000px;}
.y122{bottom:156.931500px;}
.y45{bottom:160.878000px;}
.yc2{bottom:162.286500px;}
.ye4{bottom:162.735000px;}
.y19c{bottom:163.138500px;}
.y286{bottom:163.183500px;}
.y2bb{bottom:165.784500px;}
.y8c{bottom:165.900000px;}
.y121{bottom:168.886500px;}
.y14e{bottom:170.986500px;}
.y2f1{bottom:172.599000px;}
.y175{bottom:173.760000px;}
.y21b{bottom:174.222747px;}
.y1b{bottom:174.375000px;}
.y1b8{bottom:175.155000px;}
.y274{bottom:175.621500px;}
.y176{bottom:179.184000px;}
.y44{bottom:179.707500px;}
.ye3{bottom:181.564500px;}
.y19b{bottom:181.968000px;}
.y285{bottom:182.013000px;}
.y2ba{bottom:183.045000px;}
.y8b{bottom:184.729500px;}
.yc1{bottom:185.599500px;}
.y120{bottom:188.313000px;}
.y14d{bottom:189.816000px;}
.y2f0{bottom:189.858000px;}
.y1a{bottom:192.264000px;}
.y173{bottom:192.589500px;}
.y21a{bottom:193.482189px;}
.y1b7{bottom:193.984500px;}
.y174{bottom:198.013500px;}
.y43{bottom:198.537000px;}
.y273{bottom:198.934500px;}
.y11f{bottom:200.268000px;}
.y2b9{bottom:200.305500px;}
.ye2{bottom:200.394000px;}
.y199{bottom:200.797500px;}
.y283{bottom:200.842500px;}
.y8a{bottom:203.559000px;}
.y19a{bottom:206.221500px;}
.y284{bottom:206.266500px;}
.y2ef{bottom:207.118500px;}
.y14c{bottom:208.645500px;}
.y19{bottom:210.151500px;}
.y172{bottom:211.419000px;}
.y11e{bottom:212.223000px;}
.y219{bottom:212.741631px;}
.y42{bottom:217.366500px;}
.y2b8{bottom:217.566000px;}
.y272{bottom:219.109500px;}
.yc0{bottom:219.223500px;}
.y198{bottom:219.627000px;}
.y282{bottom:219.672000px;}
.y2ee{bottom:221.757000px;}
.y89{bottom:222.388500px;}
.y2ed{bottom:224.379000px;}
.y1b6{bottom:227.550000px;}
.y18{bottom:228.039000px;}
.y171{bottom:230.248500px;}
.y11d{bottom:231.661500px;}
.y218{bottom:231.912396px;}
.y2b7{bottom:234.825000px;}
.y22b{bottom:235.735617px;}
.y41{bottom:236.196000px;}
.ybe{bottom:238.053000px;}
.y197{bottom:238.455000px;}
.y281{bottom:238.501500px;}
.y88{bottom:241.218000px;}
.y2ec{bottom:241.639500px;}
.y14b{bottom:242.211000px;}
.ybf{bottom:243.478500px;}
.y11c{bottom:243.616500px;}
.y1b5{bottom:246.783000px;}
.y170{bottom:249.078000px;}
.y271{bottom:249.537000px;}
.y217{bottom:251.171838px;}
.y2b6{bottom:252.085500px;}
.y22a{bottom:254.906382px;}
.y40{bottom:255.025500px;}
.ybd{bottom:256.882500px;}
.y196{bottom:257.284500px;}
.y280{bottom:257.331000px;}
.y2eb{bottom:258.900000px;}
.y87{bottom:260.047500px;}
.y14a{bottom:261.444000px;}
.y11b{bottom:263.055000px;}
.y1b4{bottom:266.016000px;}
.y16f{bottom:267.907500px;}
.y270{bottom:268.770000px;}
.y2b5{bottom:269.346000px;}
.y216{bottom:270.341100px;}
.y3f{bottom:273.855000px;}
.y11a{bottom:275.010000px;}
.ybc{bottom:275.712000px;}
.y27f{bottom:276.160500px;}
.y86{bottom:278.877000px;}
.y195{bottom:280.597500px;}
.y149{bottom:280.677000px;}
.ye1{bottom:281.136000px;}
.y1b3{bottom:285.249000px;}
.y2b4{bottom:286.606500px;}
.y16e{bottom:286.737000px;}
.y26f{bottom:288.003000px;}
.ybb{bottom:291.811500px;}
.y1e1{bottom:292.654008px;}
.y3e{bottom:292.684500px;}
.y2ea{bottom:293.421000px;}
.y119{bottom:294.436500px;}
.yba{bottom:294.541500px;}
.y27e{bottom:294.990000px;}
.y85{bottom:297.706500px;}
.y146{bottom:303.106500px;}
.y16c{bottom:305.566500px;}
.y215{bottom:307.151400px;}
.y26e{bottom:307.234500px;}
.y17{bottom:307.299000px;}
.y1a0{bottom:307.678500px;}
.y118{bottom:307.951500px;}
.y2b3{bottom:308.350500px;}
.y228{bottom:309.626085px;}
.y2e9{bottom:310.681500px;}
.y16d{bottom:310.990500px;}
.y3d{bottom:311.514000px;}
.y1e0{bottom:311.913450px;}
.y1de{bottom:311.914008px;}
.yb9{bottom:313.371000px;}
.y27d{bottom:313.819500px;}
.y194{bottom:314.221500px;}
.y25e{bottom:314.232039px;}
.y1df{bottom:315.693450px;}
.y227{bottom:319.255950px;}
.y117{bottom:319.906500px;}
.y16a{bottom:324.396000px;}
.y214{bottom:324.610950px;}
.y16{bottom:325.186500px;}
.y2e8{bottom:327.940500px;}
.y251{bottom:329.664000px;}
.y16b{bottom:329.820000px;}
.y3c{bottom:330.342000px;}
.y1dd{bottom:331.173450px;}
.y1db{bottom:331.174188px;}
.y84{bottom:331.272000px;}
.yb8{bottom:332.200500px;}
.y27c{bottom:332.649000px;}
.y193{bottom:333.051000px;}
.y25d{bottom:333.491481px;}
.y1dc{bottom:334.953450px;}
.y1fa{bottom:338.416500px;}
.y116{bottom:339.333000px;}
.y2b2{bottom:341.974500px;}
.y15{bottom:343.074000px;}
.y169{bottom:343.225500px;}
.y2e7{bottom:345.201000px;}
.y213{bottom:347.021706px;}
.y3b{bottom:349.171500px;}
.y1da{bottom:350.343450px;}
.y1d8{bottom:350.344008px;}
.y83{bottom:350.505000px;}
.ye0{bottom:351.030000px;}
.y115{bottom:351.288000px;}
.y27b{bottom:351.478500px;}
.y191{bottom:351.880500px;}
.y25c{bottom:352.660743px;}
.y1d9{bottom:354.123450px;}
.yb7{bottom:355.513500px;}
.y1f9{bottom:357.246000px;}
.y192{bottom:357.306000px;}
.y14{bottom:360.963000px;}
.y168{bottom:362.055000px;}
.y2e6{bottom:362.461500px;}
.y3a{bottom:368.001000px;}
.y2b1{bottom:368.514000px;}
.y1d7{bottom:369.603450px;}
.y1d5{bottom:369.606843px;}
.ydf{bottom:369.859500px;}
.y27a{bottom:370.308000px;}
.y18f{bottom:370.710000px;}
.y114{bottom:370.726500px;}
.y25b{bottom:371.920185px;}
.y5d{bottom:372.934500px;}
.y1d6{bottom:373.383450px;}
.y1f8{bottom:376.075500px;}
.y190{bottom:376.134000px;}
.y2e5{bottom:379.722000px;}
.y167{bottom:380.883000px;}
.y113{bottom:382.681500px;}
.y2b0{bottom:386.088000px;}
.y39{bottom:386.830500px;}
.yde{bottom:388.689000px;}
.y1d4{bottom:388.866285px;}
.yb6{bottom:389.137500px;}
.y18e{bottom:389.539500px;}
.y25a{bottom:391.090950px;}
.y112{bottom:394.638000px;}
.y1f7{bottom:394.905000px;}
.y147{bottom:395.949600px;}
.y2e4{bottom:396.982500px;}
.y13{bottom:399.024000px;}
.y166{bottom:399.712500px;}
.y2af{bottom:403.663500px;}
.y38{bottom:405.660000px;}
.ydd{bottom:407.518500px;}
.yb5{bottom:407.967000px;}
.y1d3{bottom:408.035547px;}
.y1f6{bottom:413.734500px;}
.y111{bottom:414.064500px;}
.y2e3{bottom:414.243000px;}
.y12{bottom:416.913000px;}
.y164{bottom:418.542000px;}
.y5f{bottom:421.157085px;}
.y2ae{bottom:421.237500px;}
.y18d{bottom:423.105000px;}
.y165{bottom:423.967500px;}
.y37{bottom:424.489500px;}
.y110{bottom:426.019500px;}
.ydc{bottom:426.348000px;}
.yb4{bottom:426.796500px;}
.y1d2{bottom:427.294989px;}
.y259{bottom:427.901400px;}
.y5e{bottom:430.786950px;}
.y2e2{bottom:431.503500px;}
.y1f5{bottom:432.564000px;}
.y11{bottom:434.800500px;}
.y163{bottom:437.371500px;}
.y18c{bottom:442.338000px;}
.y36{bottom:443.319000px;}
.ydb{bottom:445.177500px;}
.y258{bottom:445.360950px;}
.y10d{bottom:445.458000px;}
.y109{bottom:445.591500px;}
.yb3{bottom:445.626000px;}
.y1d1{bottom:446.464251px;}
.y2ad{bottom:447.777000px;}
.y2e1{bottom:448.764000px;}
.y279{bottom:451.050000px;}
.y106{bottom:451.435500px;}
.y10f{bottom:451.569000px;}
.y10{bottom:452.688000px;}
.y162{bottom:456.201000px;}
.y10c{bottom:457.413000px;}
.y108{bottom:457.546500px;}
.y35{bottom:462.148500px;}
.y105{bottom:463.390500px;}
.y10e{bottom:463.524000px;}
.yda{bottom:464.007000px;}
.yb2{bottom:464.454000px;}
.y178{bottom:464.767500px;}
.y1d0{bottom:465.723693px;}
.y2e0{bottom:466.024500px;}
.y1f4{bottom:466.129500px;}
.y257{bottom:467.770950px;}
.y10b{bottom:469.368000px;}
.y10a{bottom:469.501500px;}
.y107{bottom:469.503000px;}
.y2ac{bottom:474.318000px;}
.y161{bottom:475.030500px;}
.yd9{bottom:482.836500px;}
.yb1{bottom:483.283500px;}
.y1cf{bottom:484.983135px;}
.y1f3{bottom:485.362500px;}
.y34{bottom:485.461500px;}
.yf{bottom:488.509500px;}
.y160{bottom:493.860000px;}
.y104{bottom:498.118500px;}
.y2df{bottom:500.544000px;}
.y2ab{bottom:500.859000px;}
.yd8{bottom:501.666000px;}
.yb0{bottom:502.113000px;}
.ye{bottom:506.397000px;}
.y1ca{bottom:507.792000px;}
.y1ce{bottom:508.653882px;}
.y15f{bottom:512.689500px;}
.y103{bottom:517.351500px;}
.y2de{bottom:517.804500px;}
.y2aa{bottom:518.433000px;}
.yd7{bottom:520.495500px;}
.yaf{bottom:520.942500px;}
.yd{bottom:524.286000px;}
.y15e{bottom:531.519000px;}
.y2dd{bottom:535.065000px;}
.yd6{bottom:539.323500px;}
.yae{bottom:539.772000px;}
.yc{bottom:542.173500px;}
.y2a9{bottom:544.972500px;}
.y102{bottom:551.877000px;}
.y2dc{bottom:552.325500px;}
.y15d{bottom:554.832000px;}
.yd5{bottom:558.153000px;}
.yad{bottom:558.601500px;}
.yb{bottom:560.061000px;}
.y33{bottom:560.611500px;}
.y2a8{bottom:562.548000px;}
.y1cc{bottom:563.373585px;}
.y2db{bottom:569.586000px;}
.y101{bottom:570.706500px;}
.y1cb{bottom:573.003450px;}
.yd4{bottom:576.982500px;}
.yac{bottom:577.431000px;}
.ya{bottom:577.950000px;}
.y32{bottom:580.068000px;}
.y2a7{bottom:580.122000px;}
.y15c{bottom:585.259500px;}
.y2da{bottom:586.846500px;}
.yff{bottom:589.536000px;}
.y100{bottom:594.961500px;}
.yd3{bottom:595.812000px;}
.yab{bottom:596.260500px;}
.y2a6{bottom:597.696000px;}
.y7{bottom:600.320964px;}
.y2d9{bottom:604.107000px;}
.y15b{bottom:604.492500px;}
.yfd{bottom:608.365500px;}
.yfe{bottom:613.791000px;}
.yd2{bottom:614.641500px;}
.yaa{bottom:615.090000px;}
.y2a5{bottom:615.270000px;}
.y31{bottom:617.458500px;}
.y2d8{bottom:621.366000px;}
.y158{bottom:626.922000px;}
.yfc{bottom:627.195000px;}
.y2a4{bottom:632.844000px;}
.yd1{bottom:633.471000px;}
.ya9{bottom:633.919500px;}
.y250{bottom:635.377500px;}
.y30{bottom:636.915000px;}
.y2d7{bottom:638.626500px;}
.y2a3{bottom:650.418000px;}
.yfb{bottom:650.508000px;}
.y212{bottom:652.031508px;}
.ycf{bottom:652.300500px;}
.ya8{bottom:652.749000px;}
.y24f{bottom:654.207000px;}
.y2d6{bottom:655.887000px;}
.y2f{bottom:656.373000px;}
.yd0{bottom:657.726000px;}
.yfa{bottom:670.681500px;}
.ycd{bottom:671.130000px;}
.y211{bottom:671.290950px;}
.y20f{bottom:671.291508px;}
.ya7{bottom:671.578500px;}
.y24e{bottom:673.036500px;}
.y2d5{bottom:673.147500px;}
.y210{bottom:675.070950px;}
.y2e{bottom:675.829500px;}
.yce{bottom:676.555500px;}
.y145{bottom:679.429500px;}
.y2a2{bottom:685.924500px;}
.ycb{bottom:689.959500px;}
.ya6{bottom:690.408000px;}
.y20e{bottom:690.550950px;}
.y20c{bottom:690.551688px;}
.y24d{bottom:691.866000px;}
.y20d{bottom:694.330950px;}
.y256{bottom:694.840617px;}
.y2d{bottom:695.286000px;}
.ycc{bottom:695.385000px;}
.y179{bottom:695.733000px;}
.y144{bottom:698.257500px;}
.yf9{bottom:704.305500px;}
.y2a1{bottom:704.754000px;}
.y2d4{bottom:707.668500px;}
.yca{bottom:708.789000px;}
.ya5{bottom:709.237500px;}
.y20b{bottom:709.720950px;}
.y209{bottom:709.721508px;}
.y24c{bottom:710.695500px;}
.y20a{bottom:713.500950px;}
.y255{bottom:714.011382px;}
.y2c{bottom:714.744000px;}
.y142{bottom:717.087000px;}
.y143{bottom:722.512500px;}
.yf7{bottom:723.135000px;}
.y2a0{bottom:723.583500px;}
.y2d3{bottom:724.929000px;}
.y294{bottom:727.618500px;}
.ya4{bottom:728.067000px;}
.yf8{bottom:728.560500px;}
.y208{bottom:728.980950px;}
.y206{bottom:728.984343px;}
.y24b{bottom:729.523500px;}
.yc9{bottom:732.102000px;}
.y207{bottom:732.760950px;}
.y2b{bottom:734.200500px;}
.y140{bottom:735.916500px;}
.y141{bottom:741.342000px;}
.yf6{bottom:741.964500px;}
.y2d2{bottom:742.189500px;}
.y29f{bottom:742.413000px;}
.y293{bottom:746.448000px;}
.ya3{bottom:746.896500px;}
.y205{bottom:748.243785px;}
.y24a{bottom:748.353000px;}
.y2a{bottom:753.658500px;}
.y13f{bottom:754.746000px;}
.y2d1{bottom:759.450000px;}
.yf5{bottom:760.794000px;}
.y29e{bottom:761.242500px;}
.y1a2{bottom:763.172085px;}
.y292{bottom:765.277500px;}
.ya2{bottom:765.726000px;}
.y249{bottom:767.182500px;}
.y204{bottom:767.413047px;}
.y253{bottom:768.731085px;}
.y157{bottom:771.150000px;}
.y1a1{bottom:772.801950px;}
.y29{bottom:773.115000px;}
.y13e{bottom:773.575500px;}
.y2d0{bottom:776.709000px;}
.y252{bottom:778.360950px;}
.yf4{bottom:779.623500px;}
.y29d{bottom:780.072000px;}
.y248{bottom:783.282000px;}
.y291{bottom:784.107000px;}
.ya1{bottom:784.555500px;}
.y247{bottom:786.012000px;}
.y203{bottom:786.672489px;}
.y5c{bottom:787.227000px;}
.y156{bottom:789.979500px;}
.y13d{bottom:792.405000px;}
.y28{bottom:792.571500px;}
.y2cf{bottom:793.969500px;}
.yf3{bottom:798.453000px;}
.y29c{bottom:798.901500px;}
.y290{bottom:802.936500px;}
.ya0{bottom:803.385000px;}
.y246{bottom:804.841500px;}
.y202{bottom:805.841751px;}
.y5b{bottom:806.056500px;}
.y2ce{bottom:811.230000px;}
.y13c{bottom:811.234500px;}
.y27{bottom:812.029500px;}
.yf2{bottom:817.282500px;}
.y29b{bottom:817.731000px;}
.y1c9{bottom:821.766000px;}
.y9f{bottom:822.214500px;}
.y245{bottom:823.671000px;}
.y5a{bottom:824.886000px;}
.y201{bottom:825.101193px;}
.y2cd{bottom:828.490500px;}
.y13b{bottom:830.064000px;}
.y26{bottom:831.486000px;}
.yf1{bottom:836.112000px;}
.y29a{bottom:836.560500px;}
.y1c7{bottom:840.595500px;}
.y9e{bottom:841.044000px;}
.y59{bottom:843.715500px;}
.y200{bottom:844.360635px;}
.y2cc{bottom:845.751000px;}
.y1c8{bottom:846.019500px;}
.y13a{bottom:848.893500px;}
.y299{bottom:855.390000px;}
.y244{bottom:857.236500px;}
.yf0{bottom:859.425000px;}
.y9d{bottom:859.873500px;}
.y58{bottom:862.545000px;}
.y2cb{bottom:863.011500px;}
.y1ff{bottom:868.031382px;}
.y25{bottom:870.072000px;}
.y298{bottom:874.219500px;}
.y243{bottom:876.469500px;}
.y1c5{bottom:878.254500px;}
.y9c{bottom:878.703000px;}
.y2ca{bottom:880.272000px;}
.y57{bottom:881.374500px;}
.y1c6{bottom:883.678500px;}
.y24{bottom:890.551500px;}
.y139{bottom:891.036000px;}
.yef{bottom:893.049000px;}
.y1c3{bottom:897.084000px;}
.y9b{bottom:897.532500px;}
.y226{bottom:898.899000px;}
.y56{bottom:900.204000px;}
.y28f{bottom:901.567500px;}
.y1c4{bottom:902.508000px;}
.yc8{bottom:902.956500px;}
.y138{bottom:905.232000px;}
.y23{bottom:906.690000px;}
.yee{bottom:911.878500px;}
.y2c9{bottom:914.791500px;}
.y2f6{bottom:914.793000px;}
.y1c2{bottom:915.913500px;}
.y9a{bottom:916.362000px;}
.y22{bottom:918.490500px;}
.y55{bottom:919.033500px;}
.y1fd{bottom:922.751085px;}
.y137{bottom:926.634000px;}
.yed{bottom:930.708000px;}
.y2c8{bottom:932.052000px;}
.y1fc{bottom:932.380950px;}
.y1c1{bottom:934.743000px;}
.y99{bottom:935.191500px;}
.y54{bottom:937.863000px;}
.y21{bottom:938.970000px;}
.y136{bottom:940.150500px;}
.y155{bottom:940.615500px;}
.y2c7{bottom:949.312500px;}
.yec{bottom:949.537500px;}
.y1c0{bottom:953.572500px;}
.y98{bottom:954.021000px;}
.y20{bottom:955.108500px;}
.y53{bottom:956.692500px;}
.y135{bottom:959.307000px;}
.yc7{bottom:959.445000px;}
.y2c6{bottom:966.573000px;}
.yeb{bottom:968.367000px;}
.y134{bottom:971.262000px;}
.y1bf{bottom:972.402000px;}
.y97{bottom:972.849000px;}
.y52{bottom:975.522000px;}
.y2c5{bottom:983.833500px;}
.yea{bottom:987.196500px;}
.y133{bottom:990.700500px;}
.y1be{bottom:991.231500px;}
.y96{bottom:991.678500px;}
.y159{bottom:992.837340px;}
.y51{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y28e{bottom:997.104000px;}
.y2c4{bottom:1001.094000px;}
.y132{bottom:1002.655500px;}
.ye9{bottom:1006.026000px;}
.y95{bottom:1010.508000px;}
.y50{bottom:1013.181000px;}
.y1bd{bottom:1014.543000px;}
.y131{bottom:1014.612000px;}
.y28d{bottom:1015.933500px;}
.y2c3{bottom:1018.354500px;}
.ye8{bottom:1024.855500px;}
.y94{bottom:1029.337500px;}
.y4f{bottom:1032.010500px;}
.y12f{bottom:1034.038500px;}
.y130{bottom:1034.178000px;}
.y28c{bottom:1034.763000px;}
.y2c2{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.ye7{bottom:1043.685000px;}
.y93{bottom:1048.167000px;}
.y4e{bottom:1050.840000px;}
.y2c1{bottom:1052.875500px;}
.y12c{bottom:1053.475500px;}
.y28b{bottom:1053.592500px;}
.y128{bottom:1053.610500px;}
.y129{bottom:1059.453000px;}
.y125{bottom:1059.454500px;}
.y12e{bottom:1059.588000px;}
.ye6{bottom:1062.513000px;}
.y12b{bottom:1065.432000px;}
.y127{bottom:1065.565500px;}
.y92{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4d{bottom:1069.669500px;}
.y2c0{bottom:1070.134500px;}
.y124{bottom:1071.409500px;}
.y12d{bottom:1071.543000px;}
.y1bc{bottom:1072.422000px;}
.y12a{bottom:1077.387000px;}
.y126{bottom:1077.520500px;}
.ye5{bottom:1081.342500px;}
.y91{bottom:1085.826000px;}
.y2bf{bottom:1087.395000px;}
.y4c{bottom:1088.499000px;}
.yc6{bottom:1091.251500px;}
.y3{bottom:1097.688000px;}
.y90{bottom:1104.655500px;}
.y123{bottom:1106.137500px;}
.y4b{bottom:1107.327000px;}
.y154{bottom:1110.081000px;}
.y1{bottom:1141.174500px;}
.y4a{bottom:1173.397500px;}
.hf{height:25.070054px;}
.h7{height:25.508090px;}
.h36{height:26.279297px;}
.h12{height:27.855430px;}
.h1c{height:30.106714px;}
.hb{height:31.131341px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.h1d{height:34.574294px;}
.h15{height:34.951465px;}
.h14{height:35.091738px;}
.ha{height:36.319550px;}
.h2b{height:37.357453px;}
.hd{height:38.896243px;}
.h1f{height:38.944829px;}
.h1e{height:38.950829px;}
.h18{height:39.418945px;}
.h1a{height:39.432893px;}
.h17{height:39.445312px;}
.h34{height:39.577148px;}
.h3c{height:39.614278px;}
.h21{height:40.504048px;}
.hc{height:41.508281px;}
.h2c{height:42.027310px;}
.h10{height:43.217759px;}
.h16{height:43.886426px;}
.h39{height:43.915781px;}
.h2e{height:43.998778px;}
.h19{height:44.062559px;}
.h28{height:45.567245px;}
.h3a{height:46.645840px;}
.he{height:46.697011px;}
.h2f{height:49.498832px;}
.h4{height:50.629933px;}
.h2{height:51.026250px;}
.h11{height:51.885221px;}
.h6{height:54.541601px;}
.h30{height:55.849550px;}
.h31{height:61.128893px;}
.h1b{height:61.134893px;}
.h27{height:65.952281px;}
.h25{height:65.958281px;}
.h20{height:65.976281px;}
.h23{height:65.982281px;}
.h29{height:68.544281px;}
.h5{height:77.792486px;}
.h22{height:89.868281px;}
.h26{height:89.886281px;}
.h3{height:92.775000px;}
.h24{height:92.988281px;}
.h37{height:159.330000px;}
.h38{height:220.701000px;}
.h3b{height:282.072000px;}
.h35{height:290.334000px;}
.h2a{height:352.684800px;}
.h13{height:390.652500px;}
.h2d{height:492.680580px;}
.h32{height:654.834000px;}
.h33{height:716.850000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:142.007909px;}
.w8{width:388.906500px;}
.wc{width:408.945000px;}
.w9{width:463.825500px;}
.w4{width:515.166000px;}
.wb{width:521.067000px;}
.w6{width:549.502410px;}
.wa{width:596.601000px;}
.w7{width:645.373950px;}
.w5{width:750.519405px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb2{left:-222.439500px;}
.xba{left:-216.861000px;}
.xd2{left:-197.977500px;}
.x22{left:-186.765000px;}
.x91{left:-143.033220px;}
.x9d{left:-85.115550px;}
.xb3{left:-26.871138px;}
.xbb{left:-21.292090px;}
.xd3{left:-2.407140px;}
.x0{left:0.000000px;}
.xbf{left:1.119000px;}
.x7e{left:5.774355px;}
.x24{left:8.805000px;}
.xbc{left:10.567805px;}
.x9e{left:21.582450px;}
.xbd{left:25.599000px;}
.x4{left:29.274117px;}
.xc9{left:30.625500px;}
.xbe{left:36.849000px;}
.xca{left:39.625500px;}
.x25{left:40.665000px;}
.x3{left:52.654500px;}
.x1{left:54.000000px;}
.xc8{left:55.105500px;}
.x2{left:57.002259px;}
.x76{left:62.967000px;}
.x71{left:65.575500px;}
.x5c{left:70.201500px;}
.x6b{left:73.209000px;}
.x79{left:74.290500px;}
.x73{left:75.802500px;}
.x6f{left:77.913000px;}
.x70{left:79.048500px;}
.x7a{left:82.677000px;}
.x5a{left:85.446000px;}
.x74{left:88.792500px;}
.x6e{left:93.268500px;}
.x72{left:96.765000px;}
.x7b{left:102.814500px;}
.x5d{left:104.076000px;}
.x6d{left:106.731000px;}
.x6c{left:108.589500px;}
.x78{left:109.707000px;}
.xa0{left:111.523950px;}
.x9c{left:123.770550px;}
.x84{left:131.800500px;}
.x5b{left:136.734000px;}
.x85{left:137.772000px;}
.x80{left:142.365000px;}
.x9f{left:144.040950px;}
.xc7{left:148.156500px;}
.xc5{left:178.869000px;}
.xc6{left:183.369000px;}
.xa1{left:198.729450px;}
.xce{left:208.375500px;}
.xa2{left:209.994450px;}
.xcf{left:212.875500px;}
.x5e{left:213.987000px;}
.x5f{left:221.530500px;}
.x92{left:226.994760px;}
.x60{left:229.564500px;}
.x77{left:235.404000px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.x4e{left:269.478000px;}
.x6{left:271.221000px;}
.xa5{left:272.574450px;}
.x4f{left:278.709000px;}
.xc{left:282.786000px;}
.xf0{left:287.235000px;}
.xa6{left:289.570950px;}
.xd{left:292.560000px;}
.xa9{left:295.053000px;}
.x38{left:297.973500px;}
.xef{left:299.691000px;}
.xf1{left:302.178000px;}
.x88{left:304.527000px;}
.xa3{left:306.706950px;}
.x26{left:308.106000px;}
.x8{left:310.779000px;}
.x61{left:311.838000px;}
.x45{left:313.551000px;}
.x48{left:315.420000px;}
.xc0{left:318.369000px;}
.x7f{left:319.949055px;}
.xa4{left:323.575950px;}
.xb{left:324.706500px;}
.xeb{left:326.343000px;}
.xc1{left:327.369000px;}
.x49{left:331.186500px;}
.x62{left:332.992500px;}
.xd5{left:341.946000px;}
.x4a{left:343.767000px;}
.xcb{left:347.875500px;}
.xe1{left:350.008500px;}
.x1d{left:353.449500px;}
.xe2{left:356.434500px;}
.x43{left:357.537000px;}
.x4b{left:358.711500px;}
.x2b{left:361.978500px;}
.x44{left:364.344000px;}
.x1e{left:368.394000px;}
.xc2{left:369.669000px;}
.xe7{left:372.469500px;}
.xf6{left:373.701000px;}
.x55{left:374.907000px;}
.xc3{left:378.669000px;}
.xe8{left:382.642500px;}
.xe3{left:384.828000px;}
.xb4{left:388.624500px;}
.xf5{left:392.022000px;}
.x35{left:394.840500px;}
.x37{left:395.991000px;}
.xcc{left:399.175500px;}
.xd1{left:401.730000px;}
.x7c{left:403.305000px;}
.x75{left:405.483000px;}
.xcd{left:408.175500px;}
.x36{left:409.785000px;}
.x14{left:412.098000px;}
.x65{left:415.368000px;}
.x64{left:416.497500px;}
.x15{left:419.571000px;}
.x86{left:420.969000px;}
.xd0{left:422.305500px;}
.x16{left:423.381000px;}
.x8c{left:425.689500px;}
.x39{left:426.988500px;}
.x81{left:429.090000px;}
.x17{left:430.854000px;}
.x82{left:435.814500px;}
.x63{left:436.947000px;}
.xec{left:439.735500px;}
.x3a{left:441.933000px;}
.xe4{left:444.880500px;}
.xa7{left:448.686450px;}
.xed{left:454.680000px;}
.x90{left:457.135500px;}
.xb1{left:459.393000px;}
.xaf{left:461.280000px;}
.x94{left:464.278500px;}
.xa8{left:465.702450px;}
.xb0{left:468.087000px;}
.xb5{left:469.353000px;}
.xab{left:475.629000px;}
.xd9{left:477.084000px;}
.x9a{left:479.298000px;}
.x95{left:483.868500px;}
.x98{left:492.132000px;}
.x9b{left:498.250500px;}
.x89{left:502.426500px;}
.x67{left:504.484500px;}
.x23{left:506.955171px;}
.x66{left:512.062500px;}
.x8d{left:513.853500px;}
.xe9{left:517.878000px;}
.x30{left:519.847500px;}
.x8a{left:521.926500px;}
.xaa{left:530.514000px;}
.xb8{left:532.156500px;}
.x9{left:534.028500px;}
.xea{left:537.391500px;}
.xa{left:542.335500px;}
.x96{left:550.108500px;}
.xb9{left:551.653500px;}
.xc4{left:561.457013px;}
.x97{left:565.876500px;}
.xb6{left:570.912000px;}
.xb7{left:577.719000px;}
.xad{left:582.576000px;}
.xd4{left:585.973500px;}
.x68{left:591.798000px;}
.x10{left:593.931000px;}
.x41{left:596.911500px;}
.x11{left:601.402500px;}
.x2c{left:602.736000px;}
.x3b{left:605.208000px;}
.x12{left:609.024000px;}
.x42{left:612.679500px;}
.x3c{left:615.369000px;}
.x13{left:616.497000px;}
.x2d{left:617.680500px;}
.x83{left:618.952500px;}
.x3f{left:620.379000px;}
.x2e{left:621.967500px;}
.xdf{left:624.234000px;}
.xee{left:626.517000px;}
.x58{left:627.778500px;}
.x40{left:629.610000px;}
.x31{left:631.551000px;}
.x4c{left:632.682000px;}
.x2f{left:636.912000px;}
.x7d{left:639.105000px;}
.xdb{left:640.306500px;}
.x4d{left:641.913000px;}
.x59{left:643.545000px;}
.xd6{left:645.150000px;}
.x32{left:646.495500px;}
.xdc{left:656.073000px;}
.x93{left:658.527000px;}
.xd7{left:660.916500px;}
.xe0{left:662.944500px;}
.x87{left:665.806500px;}
.x1f{left:671.718000px;}
.xd8{left:673.410000px;}
.x1b{left:678.369000px;}
.x69{left:680.718000px;}
.x20{left:682.896000px;}
.x1c{left:685.840500px;}
.x102{left:687.364500px;}
.x46{left:688.816500px;}
.x6a{left:693.067500px;}
.x21{left:697.839000px;}
.x47{left:699.940500px;}
.x56{left:702.681000px;}
.x3d{left:707.461500px;}
.x57{left:718.449000px;}
.xf7{left:720.541500px;}
.xf9{left:722.016000px;}
.xe5{left:723.270000px;}
.xdd{left:728.064000px;}
.xe6{left:730.741500px;}
.x100{left:734.145000px;}
.x3e{left:738.033000px;}
.x101{left:740.122500px;}
.xde{left:743.008500px;}
.xfe{left:745.525500px;}
.xf8{left:747.441000px;}
.xfa{left:748.914000px;}
.x99{left:750.268500px;}
.x27{left:752.598000px;}
.xac{left:755.301000px;}
.x33{left:766.516500px;}
.x28{left:767.541000px;}
.x54{left:770.139000px;}
.x29{left:771.352500px;}
.xff{left:772.425000px;}
.xf2{left:773.634000px;}
.x34{left:781.461000px;}
.x2a{left:786.295500px;}
.x8e{left:787.765500px;}
.xfc{left:789.652500px;}
.xda{left:791.419500px;}
.xf3{left:795.472500px;}
.xf4{left:799.149000px;}
.x8b{left:801.213000px;}
.x50{left:802.357500px;}
.x18{left:806.701500px;}
.x8f{left:807.925500px;}
.xfb{left:810.303000px;}
.x51{left:812.526000px;}
.x19{left:814.173000px;}
.xfd{left:816.550500px;}
.x1a{left:817.899000px;}
.x52{left:821.304000px;}
.xae{left:823.146000px;}
.xe{left:825.519000px;}
.xf{left:832.990500px;}
.x53{left:837.072000px;}
@media print{
.v3{vertical-align:-19.290667pt;}
.v2{vertical-align:-15.429333pt;}
.va{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.573333pt;}
.v9{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:21.749333pt;}
.v8{vertical-align:24.032000pt;}
.v6{vertical-align:42.986667pt;}
.v7{vertical-align:45.760000pt;}
.ls5a{letter-spacing:-0.325984pt;}
.ls4a{letter-spacing:-0.297600pt;}
.ls22{letter-spacing:-0.272544pt;}
.ls21{letter-spacing:-0.245824pt;}
.ls55{letter-spacing:-0.235136pt;}
.ls1d{letter-spacing:-0.181696pt;}
.ls49{letter-spacing:-0.168000pt;}
.ls4c{letter-spacing:-0.128256pt;}
.ls54{letter-spacing:-0.117568pt;}
.ls24{letter-spacing:-0.106880pt;}
.ls20{letter-spacing:-0.101536pt;}
.ls26{letter-spacing:-0.096192pt;}
.ls4b{letter-spacing:-0.090848pt;}
.ls25{letter-spacing:-0.085504pt;}
.ls61{letter-spacing:-0.081600pt;}
.ls19{letter-spacing:-0.080864pt;}
.ls53{letter-spacing:-0.080160pt;}
.ls46{letter-spacing:-0.076608pt;}
.ls58{letter-spacing:-0.062400pt;}
.ls60{letter-spacing:-0.057600pt;}
.ls48{letter-spacing:-0.048000pt;}
.ls57{letter-spacing:-0.042752pt;}
.ls62{letter-spacing:-0.037408pt;}
.ls64{letter-spacing:-0.032064pt;}
.ls23{letter-spacing:-0.026720pt;}
.ls1e{letter-spacing:-0.021376pt;}
.ls63{letter-spacing:-0.019200pt;}
.ls1a{letter-spacing:-0.017024pt;}
.ls1c{letter-spacing:-0.016032pt;}
.ls1f{letter-spacing:-0.010688pt;}
.ls56{letter-spacing:-0.009600pt;}
.ls47{letter-spacing:-0.008512pt;}
.ls27{letter-spacing:-0.005344pt;}
.ls1b{letter-spacing:-0.004800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000540pt;}
.ls6e{letter-spacing:0.000711pt;}
.ls74{letter-spacing:0.001825pt;}
.ls2f{letter-spacing:0.002425pt;}
.ls71{letter-spacing:0.003578pt;}
.ls72{letter-spacing:0.004267pt;}
.ls43{letter-spacing:0.004800pt;}
.ls10{letter-spacing:0.005344pt;}
.ls4e{letter-spacing:0.006400pt;}
.ls3f{letter-spacing:0.009600pt;}
.ls45{letter-spacing:0.010688pt;}
.ls3e{letter-spacing:0.014400pt;}
.ls12{letter-spacing:0.016032pt;}
.lsb{letter-spacing:0.019200pt;}
.ls15{letter-spacing:0.021376pt;}
.ls42{letter-spacing:0.024000pt;}
.ls13{letter-spacing:0.026720pt;}
.ls3d{letter-spacing:0.028800pt;}
.ls17{letter-spacing:0.032064pt;}
.lse{letter-spacing:0.037408pt;}
.ls50{letter-spacing:0.038400pt;}
.ls14{letter-spacing:0.042752pt;}
.lsc{letter-spacing:0.043200pt;}
.ls8{letter-spacing:0.046816pt;}
.ls51{letter-spacing:0.048000pt;}
.lsd{letter-spacing:0.048096pt;}
.ls5e{letter-spacing:0.052800pt;}
.ls16{letter-spacing:0.053440pt;}
.ls3b{letter-spacing:0.055328pt;}
.ls18{letter-spacing:0.058784pt;}
.ls44{letter-spacing:0.064128pt;}
.ls5c{letter-spacing:0.067200pt;}
.ls11{letter-spacing:0.069472pt;}
.lsf{letter-spacing:0.074816pt;}
.ls4d{letter-spacing:0.080160pt;}
.ls4f{letter-spacing:0.085504pt;}
.ls5d{letter-spacing:0.096000pt;}
.ls52{letter-spacing:0.096192pt;}
.ls40{letter-spacing:0.124800pt;}
.ls41{letter-spacing:0.134400pt;}
.lsa{letter-spacing:0.148960pt;}
.ls5b{letter-spacing:0.153216pt;}
.ls9{letter-spacing:0.161728pt;}
.ls59{letter-spacing:0.163200pt;}
.ls3c{letter-spacing:0.170240pt;}
.ls30{letter-spacing:0.386106pt;}
.ls29{letter-spacing:0.482502pt;}
.ls2d{letter-spacing:0.487835pt;}
.ls7{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls2c{letter-spacing:1.953067pt;}
.ls2b{letter-spacing:2.459733pt;}
.ls75{letter-spacing:2.656533pt;}
.ls2e{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls2{letter-spacing:9.298933pt;}
.ls35{letter-spacing:9.563880pt;}
.ls5{letter-spacing:10.626533pt;}
.ls38{letter-spacing:11.264125pt;}
.ls6a{letter-spacing:11.681045pt;}
.ls73{letter-spacing:11.898572pt;}
.ls6b{letter-spacing:11.954133pt;}
.ls68{letter-spacing:11.959467pt;}
.ls6c{letter-spacing:12.081401pt;}
.ls70{letter-spacing:12.093837pt;}
.ls6d{letter-spacing:12.274865pt;}
.ls65{letter-spacing:13.233867pt;}
.ls28{letter-spacing:13.283467pt;}
.ls69{letter-spacing:14.089244pt;}
.ls39{letter-spacing:14.613867pt;}
.ls5f{letter-spacing:14.812800pt;}
.ls76{letter-spacing:14.823467pt;}
.ls3a{letter-spacing:14.826231pt;}
.ls67{letter-spacing:15.605422pt;}
.ls66{letter-spacing:15.767514pt;}
.ls77{letter-spacing:15.814735pt;}
.ls2a{letter-spacing:15.942400pt;}
.ls36{letter-spacing:17.602808pt;}
.ls6f{letter-spacing:18.366369pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls32{letter-spacing:189.589102pt;}
.ls31{letter-spacing:202.405102pt;}
.ls34{letter-spacing:257.205067pt;}
.ls33{letter-spacing:306.010436pt;}
.ws8c{word-spacing:-26.566933pt;}
.ws84{word-spacing:-13.283467pt;}
.ws3{word-spacing:-12.760670pt;}
.wsbf{word-spacing:-11.955200pt;}
.wsd4{word-spacing:-11.264408pt;}
.wse5{word-spacing:-10.810240pt;}
.ws3a{word-spacing:-10.801728pt;}
.ws32{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.wsb9{word-spacing:-9.564120pt;}
.ws8{word-spacing:-9.298400pt;}
.wsd1{word-spacing:-3.241166pt;}
.ws57{word-spacing:-3.163648pt;}
.ws58{word-spacing:-3.120896pt;}
.ws27{word-spacing:-2.869229pt;}
.ws184{word-spacing:-2.677965pt;}
.ws7d{word-spacing:-2.656693pt;}
.wsca{word-spacing:-2.550426pt;}
.ws8b{word-spacing:-2.444158pt;}
.wsc4{word-spacing:-2.391024pt;}
.wsc3{word-spacing:-2.386388pt;}
.wsde{word-spacing:-2.337890pt;}
.ws15f{word-spacing:-2.231622pt;}
.ws11d{word-spacing:-2.212416pt;}
.ws11c{word-spacing:-2.185696pt;}
.ws11e{word-spacing:-2.169664pt;}
.ws30{word-spacing:-2.125355pt;}
.wsfc{word-spacing:-2.062784pt;}
.wsfd{word-spacing:-2.025376pt;}
.wsbc{word-spacing:-2.008474pt;}
.ws154{word-spacing:-1.965953pt;}
.wsb5{word-spacing:-1.912819pt;}
.ws14c{word-spacing:-1.838336pt;}
.wsbd{word-spacing:-1.817190pt;}
.wsdb{word-spacing:-1.753418pt;}
.ws5{word-spacing:-1.696326pt;}
.wse6{word-spacing:-1.625907pt;}
.wsdf{word-spacing:-1.540882pt;}
.ws94{word-spacing:-1.487748pt;}
.ws1b8{word-spacing:-1.482445pt;}
.wse7{word-spacing:-1.435418pt;}
.wse8{word-spacing:-1.434624pt;}
.wsbe{word-spacing:-1.386803pt;}
.ws17a{word-spacing:-1.381481pt;}
.ws17c{word-spacing:-1.328347pt;}
.ws180{word-spacing:-1.291162pt;}
.ws8f{word-spacing:-1.275213pt;}
.wsce{word-spacing:-1.258075pt;}
.wscf{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.ws33{word-spacing:-1.168945pt;}
.ws147{word-spacing:-1.161600pt;}
.ws146{word-spacing:-1.118400pt;}
.ws81{word-spacing:-1.115811pt;}
.ws179{word-spacing:-1.079571pt;}
.ws178{word-spacing:-1.062677pt;}
.ws91{word-spacing:-1.009543pt;}
.ws25{word-spacing:-0.956410pt;}
.wsd0{word-spacing:-0.942429pt;}
.ws8e{word-spacing:-0.850142pt;}
.ws19a{word-spacing:-0.812954pt;}
.ws82{word-spacing:-0.797008pt;}
.ws8d{word-spacing:-0.743874pt;}
.ws196{word-spacing:-0.717312pt;}
.ws100{word-spacing:-0.690740pt;}
.wsea{word-spacing:-0.669491pt;}
.ws9e{word-spacing:-0.637606pt;}
.ws13d{word-spacing:-0.625248pt;}
.ws73{word-spacing:-0.577152pt;}
.ws1a5{word-spacing:-0.526029pt;}
.wsd2{word-spacing:-0.478205pt;}
.ws15c{word-spacing:-0.454556pt;}
.wsc8{word-spacing:-0.425071pt;}
.ws7a{word-spacing:-0.371937pt;}
.wsd9{word-spacing:-0.318803pt;}
.ws106{word-spacing:-0.304608pt;}
.ws74{word-spacing:-0.293920pt;}
.ws18a{word-spacing:-0.286925pt;}
.ws150{word-spacing:-0.283232pt;}
.wsf9{word-spacing:-0.267200pt;}
.ws38{word-spacing:-0.265669pt;}
.ws6a{word-spacing:-0.261856pt;}
.ws6d{word-spacing:-0.256512pt;}
.ws110{word-spacing:-0.251168pt;}
.ws72{word-spacing:-0.245824pt;}
.ws1a3{word-spacing:-0.239104pt;}
.ws1af{word-spacing:-0.227255pt;}
.ws23{word-spacing:-0.212535pt;}
.ws112{word-spacing:-0.208416pt;}
.ws136{word-spacing:-0.206400pt;}
.ws11f{word-spacing:-0.201600pt;}
.ws133{word-spacing:-0.191283pt;}
.ws37{word-spacing:-0.159402pt;}
.wse9{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.ws1e{word-spacing:-0.095642pt;}
.ws153{word-spacing:-0.072007pt;}
.wseb{word-spacing:-0.068096pt;}
.ws44{word-spacing:-0.063840pt;}
.wsc1{word-spacing:-0.055913pt;}
.ws19e{word-spacing:-0.055611pt;}
.ws129{word-spacing:-0.055296pt;}
.ws29{word-spacing:-0.053134pt;}
.wsd6{word-spacing:-0.050690pt;}
.ws128{word-spacing:-0.048947pt;}
.ws1d{word-spacing:-0.047821pt;}
.ws1c{word-spacing:-0.046412pt;}
.wsd5{word-spacing:-0.045058pt;}
.wsbb{word-spacing:-0.043039pt;}
.wsdd{word-spacing:-0.042507pt;}
.ws90{word-spacing:-0.042078pt;}
.wsba{word-spacing:-0.038256pt;}
.ws193{word-spacing:-0.024508pt;}
.ws158{word-spacing:-0.021513pt;}
.ws124{word-spacing:-0.010688pt;}
.ws12b{word-spacing:-0.008654pt;}
.ws1a9{word-spacing:-0.007151pt;}
.ws173{word-spacing:-0.007065pt;}
.wsb1{word-spacing:-0.006901pt;}
.ws1a6{word-spacing:-0.005982pt;}
.wsae{word-spacing:-0.005486pt;}
.ws19b{word-spacing:-0.003456pt;}
.ws177{word-spacing:-0.002543pt;}
.ws31{word-spacing:-0.002149pt;}
.ws1ac{word-spacing:-0.001818pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:0.002666pt;}
.ws10f{word-spacing:0.005344pt;}
.wscd{word-spacing:0.007347pt;}
.ws10a{word-spacing:0.010688pt;}
.ws163{word-spacing:0.013545pt;}
.wsf5{word-spacing:0.021376pt;}
.wsfe{word-spacing:0.026720pt;}
.ws161{word-spacing:0.039166pt;}
.ws162{word-spacing:0.041646pt;}
.wsf4{word-spacing:0.042752pt;}
.ws3b{word-spacing:0.047821pt;}
.ws34{word-spacing:0.053134pt;}
.ws13a{word-spacing:0.062400pt;}
.ws111{word-spacing:0.064128pt;}
.wsf8{word-spacing:0.074816pt;}
.wsf7{word-spacing:0.080160pt;}
.ws109{word-spacing:0.085504pt;}
.ws138{word-spacing:0.091200pt;}
.ws1b{word-spacing:0.095642pt;}
.wsf6{word-spacing:0.101536pt;}
.ws13b{word-spacing:0.105600pt;}
.ws42{word-spacing:0.106268pt;}
.ws107{word-spacing:0.112224pt;}
.ws49{word-spacing:0.115200pt;}
.ws192{word-spacing:0.119235pt;}
.ws115{word-spacing:0.124800pt;}
.ws155{word-spacing:0.127222pt;}
.wsc5{word-spacing:0.133668pt;}
.wsed{word-spacing:0.134400pt;}
.ws48{word-spacing:0.139200pt;}
.ws1b6{word-spacing:0.140448pt;}
.wse0{word-spacing:0.143462pt;}
.wsf0{word-spacing:0.144000pt;}
.wsee{word-spacing:0.148800pt;}
.wsad{word-spacing:0.150126pt;}
.ws116{word-spacing:0.153600pt;}
.ws46{word-spacing:0.158400pt;}
.ws28{word-spacing:0.159402pt;}
.ws47{word-spacing:0.163200pt;}
.wsf3{word-spacing:0.168000pt;}
.ws17b{word-spacing:0.169205pt;}
.wsb4{word-spacing:0.170029pt;}
.ws19d{word-spacing:0.172603pt;}
.ws117{word-spacing:0.172800pt;}
.ws5c{word-spacing:0.181696pt;}
.wsa{word-spacing:0.185968pt;}
.ws1ab{word-spacing:0.186173pt;}
.ws98{word-spacing:0.186316pt;}
.wsb6{word-spacing:0.187589pt;}
.ws97{word-spacing:0.188562pt;}
.ws17{word-spacing:0.191283pt;}
.wsb7{word-spacing:0.197233pt;}
.wsef{word-spacing:0.211200pt;}
.ws79{word-spacing:0.212535pt;}
.ws137{word-spacing:0.216000pt;}
.ws120{word-spacing:0.225600pt;}
.ws181{word-spacing:0.239104pt;}
.ws139{word-spacing:0.240000pt;}
.wsc{word-spacing:0.260355pt;}
.ws26{word-spacing:0.265669pt;}
.ws2d{word-spacing:0.318803pt;}
.wsf1{word-spacing:0.331200pt;}
.ws14b{word-spacing:0.336672pt;}
.ws14e{word-spacing:0.352704pt;}
.ws10b{word-spacing:0.363392pt;}
.ws121{word-spacing:0.384768pt;}
.ws16a{word-spacing:0.395786pt;}
.ws122{word-spacing:0.411488pt;}
.ws16b{word-spacing:0.415799pt;}
.ws83{word-spacing:0.425071pt;}
.ws1f{word-spacing:0.430387pt;}
.wsf2{word-spacing:0.460800pt;}
.ws175{word-spacing:0.462858pt;}
.ws174{word-spacing:0.467582pt;}
.ws176{word-spacing:0.476938pt;}
.wse1{word-spacing:0.478205pt;}
.ws14a{word-spacing:0.486304pt;}
.ws2{word-spacing:0.499721pt;}
.ws159{word-spacing:0.531339pt;}
.ws7f{word-spacing:0.584473pt;}
.ws5e{word-spacing:0.646624pt;}
.ws5d{word-spacing:0.673344pt;}
.ws160{word-spacing:0.690740pt;}
.ws14d{word-spacing:0.694720pt;}
.ws135{word-spacing:0.705408pt;}
.ws119{word-spacing:0.710752pt;}
.ws11a{word-spacing:0.721440pt;}
.ws105{word-spacing:0.743874pt;}
.ws11b{word-spacing:0.769536pt;}
.ws7e{word-spacing:0.903276pt;}
.ws108{word-spacing:0.993984pt;}
.ws95{word-spacing:1.009543pt;}
.ws52{word-spacing:1.020704pt;}
.ws140{word-spacing:1.047424pt;}
.wsc9{word-spacing:1.051113pt;}
.ws5b{word-spacing:1.052768pt;}
.ws53{word-spacing:1.058112pt;}
.ws93{word-spacing:1.062677pt;}
.ws64{word-spacing:1.068800pt;}
.ws3d{word-spacing:1.115811pt;}
.ws66{word-spacing:1.127584pt;}
.ws65{word-spacing:1.148960pt;}
.ws43{word-spacing:1.168945pt;}
.ws35{word-spacing:1.222079pt;}
.ws1b5{word-spacing:1.243341pt;}
.ws39{word-spacing:1.275213pt;}
.ws15d{word-spacing:1.434614pt;}
.ws17f{word-spacing:1.434624pt;}
.ws16{word-spacing:1.482445pt;}
.wsd8{word-spacing:1.578086pt;}
.wsc7{word-spacing:1.594016pt;}
.ws113{word-spacing:1.597856pt;}
.ws76{word-spacing:1.619232pt;}
.ws1b3{word-spacing:1.625907pt;}
.ws188{word-spacing:1.673728pt;}
.ws114{word-spacing:1.683360pt;}
.ws9c{word-spacing:1.700284pt;}
.ws15a{word-spacing:1.753418pt;}
.ws131{word-spacing:1.753971pt;}
.ws130{word-spacing:1.757801pt;}
.ws132{word-spacing:1.769370pt;}
.ws168{word-spacing:1.781078pt;}
.wsb{word-spacing:1.785293pt;}
.ws169{word-spacing:1.802301pt;}
.ws96{word-spacing:1.806551pt;}
.wsd7{word-spacing:1.817190pt;}
.ws165{word-spacing:1.820729pt;}
.ws167{word-spacing:1.821689pt;}
.ws2b{word-spacing:1.859685pt;}
.ws164{word-spacing:1.912819pt;}
.ws4c{word-spacing:1.961248pt;}
.ws2f{word-spacing:1.965953pt;}
.ws118{word-spacing:1.966592pt;}
.ws4b{word-spacing:2.014688pt;}
.ws9b{word-spacing:2.019087pt;}
.ws12f{word-spacing:2.056294pt;}
.ws144{word-spacing:2.059200pt;}
.ws145{word-spacing:2.073600pt;}
.ws15{word-spacing:2.104115pt;}
.ws189{word-spacing:2.151936pt;}
.ws36{word-spacing:2.231622pt;}
.ws63{word-spacing:2.244480pt;}
.wsfa{word-spacing:2.260512pt;}
.ws126{word-spacing:2.276544pt;}
.ws85{word-spacing:2.284756pt;}
.ws182{word-spacing:2.295398pt;}
.ws125{word-spacing:2.313952pt;}
.wsfb{word-spacing:2.319296pt;}
.ws166{word-spacing:2.323259pt;}
.ws15e{word-spacing:2.337890pt;}
.ws1a8{word-spacing:2.438861pt;}
.ws1a7{word-spacing:2.486682pt;}
.wsda{word-spacing:2.497292pt;}
.ws14{word-spacing:2.550432pt;}
.ws18b{word-spacing:2.582323pt;}
.ws78{word-spacing:2.591840pt;}
.ws10d{word-spacing:2.645280pt;}
.ws1a{word-spacing:2.677965pt;}
.wse2{word-spacing:2.709827pt;}
.ws10e{word-spacing:2.725440pt;}
.ws19{word-spacing:2.725786pt;}
.ws194{word-spacing:2.821427pt;}
.ws127{word-spacing:2.839407pt;}
.ws1ba{word-spacing:2.860314pt;}
.ws1b7{word-spacing:2.862694pt;}
.ws191{word-spacing:2.863078pt;}
.ws1a4{word-spacing:2.864273pt;}
.ws1a1{word-spacing:2.864290pt;}
.ws1a2{word-spacing:2.864401pt;}
.ws19c{word-spacing:2.865306pt;}
.ws1b4{word-spacing:2.866313pt;}
.ws12a{word-spacing:2.866449pt;}
.ws19f{word-spacing:2.866884pt;}
.ws17d{word-spacing:2.869229pt;}
.ws18e{word-spacing:2.869248pt;}
.ws1b9{word-spacing:2.870690pt;}
.ws18c{word-spacing:2.871211pt;}
.ws18d{word-spacing:2.917069pt;}
.ws77{word-spacing:2.939200pt;}
.ws2c{word-spacing:2.975497pt;}
.ws1ae{word-spacing:3.012710pt;}
.ws1ad{word-spacing:3.016974pt;}
.ws172{word-spacing:3.028630pt;}
.ws16d{word-spacing:3.039744pt;}
.ws16f{word-spacing:3.050448pt;}
.ws170{word-spacing:3.052825pt;}
.ws171{word-spacing:3.054716pt;}
.ws1b0{word-spacing:3.060531pt;}
.ws9a{word-spacing:3.081764pt;}
.wsc2{word-spacing:3.125670pt;}
.wse4{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws10c{word-spacing:3.227776pt;}
.ws5f{word-spacing:3.275872pt;}
.wse3{word-spacing:3.294300pt;}
.ws60{word-spacing:3.297248pt;}
.ws18{word-spacing:3.299635pt;}
.ws1a0{word-spacing:3.347456pt;}
.ws88{word-spacing:3.392237pt;}
.ws86{word-spacing:3.395299pt;}
.ws89{word-spacing:3.397664pt;}
.ws2e{word-spacing:3.400567pt;}
.ws195{word-spacing:3.443098pt;}
.wscb{word-spacing:3.453701pt;}
.wsa3{word-spacing:3.506835pt;}
.ws3f{word-spacing:3.559969pt;}
.ws6e{word-spacing:3.623232pt;}
.ws102{word-spacing:3.634381pt;}
.ws2a{word-spacing:3.719371pt;}
.ws41{word-spacing:3.772505pt;}
.ws7c{word-spacing:3.825638pt;}
.ws16c{word-spacing:3.861561pt;}
.ws16e{word-spacing:3.862550pt;}
.ws1b2{word-spacing:3.873485pt;}
.ws80{word-spacing:3.878772pt;}
.ws148{word-spacing:3.885088pt;}
.ws101{word-spacing:3.921306pt;}
.ws104{word-spacing:3.931906pt;}
.ws1aa{word-spacing:3.969126pt;}
.ws103{word-spacing:3.985040pt;}
.ws3e{word-spacing:4.038174pt;}
.ws9d{word-spacing:4.144442pt;}
.ws61{word-spacing:4.195040pt;}
.wsc6{word-spacing:4.197575pt;}
.ws92{word-spacing:4.250709pt;}
.ws197{word-spacing:4.256051pt;}
.ws87{word-spacing:4.309424pt;}
.wsc0{word-spacing:4.410111pt;}
.ws4d{word-spacing:4.483616pt;}
.ws62{word-spacing:4.510336pt;}
.ws15b{word-spacing:4.516379pt;}
.ws24{word-spacing:4.569513pt;}
.wsa2{word-spacing:4.622646pt;}
.wscc{word-spacing:4.675780pt;}
.ws14f{word-spacing:4.836320pt;}
.ws151{word-spacing:4.888316pt;}
.ws198{word-spacing:5.069005pt;}
.ws3c{word-spacing:5.100851pt;}
.ws7b{word-spacing:5.153985pt;}
.wsa1{word-spacing:5.223349pt;}
.ws141{word-spacing:5.256000pt;}
.wsa0{word-spacing:5.260253pt;}
.ws18f{word-spacing:5.279059pt;}
.ws143{word-spacing:5.289600pt;}
.ws142{word-spacing:5.299200pt;}
.ws190{word-spacing:5.308109pt;}
.ws12{word-spacing:5.393072pt;}
.ws13{word-spacing:5.467459pt;}
.ws157{word-spacing:5.472788pt;}
.ws9f{word-spacing:5.525922pt;}
.ws8a{word-spacing:5.844725pt;}
.ws20{word-spacing:5.881958pt;}
.ws186{word-spacing:6.133542pt;}
.ws187{word-spacing:6.168883pt;}
.ws156{word-spacing:6.216662pt;}
.ws152{word-spacing:6.269796pt;}
.ws199{word-spacing:6.407987pt;}
.ws50{word-spacing:6.418144pt;}
.ws12e{word-spacing:6.482332pt;}
.ws12d{word-spacing:6.641733pt;}
.ws183{word-spacing:6.647091pt;}
.ws75{word-spacing:6.765504pt;}
.wsff{word-spacing:7.013670pt;}
.ws134{word-spacing:7.119938pt;}
.ws17e{word-spacing:7.173072pt;}
.ws12c{word-spacing:7.385607pt;}
.ws51{word-spacing:7.422816pt;}
.ws71{word-spacing:7.433504pt;}
.ws99{word-spacing:7.545009pt;}
.ws10{word-spacing:7.699075pt;}
.ws185{word-spacing:7.746970pt;}
.ws70{word-spacing:7.764832pt;}
.ws6f{word-spacing:7.855680pt;}
.ws4a{word-spacing:8.032032pt;}
.ws67{word-spacing:8.363360pt;}
.ws4f{word-spacing:8.651936pt;}
.ws4e{word-spacing:8.716064pt;}
.ws9{word-spacing:9.298400pt;}
.wsb8{word-spacing:9.524024pt;}
.ws123{word-spacing:9.982592pt;}
.ws13e{word-spacing:10.014656pt;}
.ws13f{word-spacing:10.036032pt;}
.ws149{word-spacing:10.281856pt;}
.wsec{word-spacing:10.325056pt;}
.ws45{word-spacing:10.329312pt;}
.ws5a{word-spacing:10.340640pt;}
.wsdc{word-spacing:10.582249pt;}
.ws6c{word-spacing:10.607840pt;}
.ws59{word-spacing:10.613184pt;}
.ws68{word-spacing:10.650592pt;}
.wsd3{word-spacing:11.217183pt;}
.ws13c{word-spacing:11.890400pt;}
.ws1b1{word-spacing:12.385587pt;}
.ws6{word-spacing:13.763148pt;}
.ws40{word-spacing:14.346144pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.wsf{word-spacing:15.732893pt;}
.ws54{word-spacing:19.206336pt;}
.ws6b{word-spacing:20.504928pt;}
.ws11{word-spacing:24.399002pt;}
.ws69{word-spacing:27.879648pt;}
.ws56{word-spacing:36.531584pt;}
.ws55{word-spacing:36.740000pt;}
.wsac{word-spacing:220.102282pt;}
.wsa7{word-spacing:225.324400pt;}
.wsa5{word-spacing:225.415682pt;}
.wsab{word-spacing:230.452738pt;}
.wsb2{word-spacing:235.008810pt;}
.wsa8{word-spacing:235.954420pt;}
.wsa6{word-spacing:236.042482pt;}
.wsaa{word-spacing:236.084989pt;}
.wsa9{word-spacing:246.669282pt;}
.wsb0{word-spacing:253.172883pt;}
.wsb3{word-spacing:279.739883pt;}
.wsaf{word-spacing:313.705244pt;}
.wsa4{word-spacing:335.785917pt;}
._19{margin-left:-12.780630pt;}
._2{margin-left:-8.799027pt;}
._0{margin-left:-7.077478pt;}
._1b{margin-left:-5.950993pt;}
._b{margin-left:-5.047774pt;}
._9{margin-left:-4.128490pt;}
._5{margin-left:-2.664897pt;}
._6{margin-left:-1.175671pt;}
._7{width:0.969929pt;}
._3{width:2.665856pt;}
._3b{width:9.611981pt;}
._8{width:10.773102pt;}
._a{width:11.928483pt;}
._c{width:13.150720pt;}
._17{width:14.115081pt;}
._d{width:15.015731pt;}
._e{width:16.545997pt;}
._14{width:17.587310pt;}
._10{width:19.171959pt;}
._f{width:20.897690pt;}
._1a{width:22.482352pt;}
._12{width:24.154311pt;}
._39{width:26.248130pt;}
._13{width:27.151406pt;}
._11{width:28.054682pt;}
._1{width:29.648896pt;}
._33{width:30.764509pt;}
._38{width:32.189898pt;}
._3a{width:33.580604pt;}
._4{width:48.340992pt;}
._3c{width:54.993920pt;}
._26{width:184.331110pt;}
._2b{width:208.456133pt;}
._2a{width:233.940523pt;}
._2e{width:235.999974pt;}
._1f{width:246.669282pt;}
._1e{width:249.942336pt;}
._20{width:252.025189pt;}
._21{width:253.209388pt;}
._25{width:257.296082pt;}
._23{width:260.569136pt;}
._24{width:262.651989pt;}
._28{width:267.922882pt;}
._1d{width:269.155590pt;}
._2f{width:271.201938pt;}
._2d{width:273.576339pt;}
._2c{width:276.710386pt;}
._22{width:279.782390pt;}
._27{width:281.822736pt;}
._30{width:283.902398pt;}
._1c{width:288.156309pt;}
._29{width:301.500526pt;}
._31{width:878.198752pt;}
._15{width:963.780186pt;}
._37{width:1913.506551pt;}
._18{width:1933.799159pt;}
._32{width:2037.422583pt;}
._35{width:2263.802870pt;}
._36{width:2299.589856pt;}
._16{width:2320.843189pt;}
._34{width:2399.631043pt;}
.fs7{font-size:31.880533pt;}
.fs13{font-size:32.000000pt;}
.fse{font-size:33.219200pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsf{font-size:38.256480pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsd{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs10{font-size:43.038720pt;}
.fs11{font-size:45.057632pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs12{font-size:50.690048pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs14{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:131.946667pt;}
.y229{bottom:-732.856933pt;}
.y242{bottom:-673.973133pt;}
.y241{bottom:-656.853629pt;}
.y240{bottom:-639.734125pt;}
.y60{bottom:-633.718267pt;}
.y23f{bottom:-622.694781pt;}
.y23e{bottom:-605.575277pt;}
.y23d{bottom:-588.535933pt;}
.y82{bottom:-574.102963pt;}
.y23c{bottom:-571.416429pt;}
.y81{bottom:-556.983459pt;}
.y23b{bottom:-554.296925pt;}
.y80{bottom:-539.863955pt;}
.y23a{bottom:-533.257597pt;}
.y7f{bottom:-522.824611pt;}
.y239{bottom:-512.216933pt;}
.y1cd{bottom:-507.303600pt;}
.y7e{bottom:-505.705107pt;}
.y7d{bottom:-488.665763pt;}
.y238{bottom:-479.417333pt;}
.y7c{bottom:-471.546259pt;}
.y237{bottom:-463.976933pt;}
.y7b{bottom:-454.426755pt;}
.y236{bottom:-448.616933pt;}
.y7a{bottom:-437.387411pt;}
.y1f2{bottom:-435.703104pt;}
.y235{bottom:-433.256933pt;}
.y79{bottom:-420.267907pt;}
.y1f1{bottom:-418.583600pt;}
.y1f0{bottom:-418.582448pt;}
.y148{bottom:-413.574000pt;}
.y234{bottom:-413.336933pt;}
.y78{bottom:-403.228563pt;}
.y1ef{bottom:-401.462944pt;}
.y77{bottom:-386.109059pt;}
.y1ee{bottom:-384.423600pt;}
.y76{bottom:-368.989555pt;}
.y75{bottom:-351.950211pt;}
.y1ed{bottom:-351.704000pt;}
.y1ec{bottom:-336.263600pt;}
.y74{bottom:-334.830707pt;}
.y1a3{bottom:-329.704933pt;}
.y254{bottom:-324.763600pt;}
.y18b{bottom:-321.765333pt;}
.y73{bottom:-317.711203pt;}
.y1eb{bottom:-316.342251pt;}
.y18a{bottom:-305.028000pt;}
.y72{bottom:-300.671859pt;}
.y189{bottom:-288.290667pt;}
.y71{bottom:-283.552355pt;}
.y188{bottom:-271.553333pt;}
.y70{bottom:-266.513011pt;}
.y1b2{bottom:-266.020485pt;}
.y26d{bottom:-265.879800pt;}
.y187{bottom:-254.816000pt;}
.y6f{bottom:-249.393507pt;}
.y1b1{bottom:-248.900981pt;}
.y26c{bottom:-248.760296pt;}
.y186{bottom:-238.078667pt;}
.y6e{bottom:-232.274003pt;}
.y1b0{bottom:-231.781477pt;}
.y26b{bottom:-231.640792pt;}
.y185{bottom:-221.341333pt;}
.y6d{bottom:-215.234659pt;}
.y1af{bottom:-214.742133pt;}
.y26a{bottom:-214.601448pt;}
.y184{bottom:-204.604000pt;}
.y6c{bottom:-198.115155pt;}
.y1ae{bottom:-197.622629pt;}
.y269{bottom:-197.481944pt;}
.y183{bottom:-187.866667pt;}
.y1fe{bottom:-187.856933pt;}
.y6b{bottom:-181.075811pt;}
.y1ad{bottom:-180.503125pt;}
.y268{bottom:-180.442600pt;}
.y182{bottom:-171.129333pt;}
.y1ea{bottom:-164.582003pt;}
.y6a{bottom:-163.956307pt;}
.y1ac{bottom:-163.463781pt;}
.y267{bottom:-163.323096pt;}
.y181{bottom:-154.392000pt;}
.y1e9{bottom:-147.462499pt;}
.y69{bottom:-146.836803pt;}
.y1ab{bottom:-146.344277pt;}
.y266{bottom:-146.203592pt;}
.y180{bottom:-137.654667pt;}
.y1e8{bottom:-130.342995pt;}
.y68{bottom:-129.796123pt;}
.y1aa{bottom:-129.304933pt;}
.y233{bottom:-128.775965pt;}
.y265{bottom:-125.164264pt;}
.y17f{bottom:-120.917333pt;}
.y223{bottom:-116.256437pt;}
.y1e7{bottom:-113.302315pt;}
.y67{bottom:-112.676619pt;}
.y232{bottom:-111.656461pt;}
.y17e{bottom:-104.180000pt;}
.y264{bottom:-104.123600pt;}
.y222{bottom:-99.136933pt;}
.y221{bottom:-99.135781pt;}
.y1a9{bottom:-96.586133pt;}
.y1e6{bottom:-96.182811pt;}
.y66{bottom:-95.637275pt;}
.y231{bottom:-94.617117pt;}
.y17d{bottom:-87.442667pt;}
.y220{bottom:-82.016277pt;}
.y1a8{bottom:-81.145733pt;}
.y1e5{bottom:-79.143467pt;}
.y65{bottom:-78.517771pt;}
.y230{bottom:-77.497613pt;}
.y263{bottom:-71.324000pt;}
.y17c{bottom:-70.705333pt;}
.y1a7{bottom:-65.705333pt;}
.y21f{bottom:-64.976933pt;}
.y64{bottom:-61.398267pt;}
.y22f{bottom:-60.456933pt;}
.y262{bottom:-55.883600pt;}
.y17b{bottom:-53.968000pt;}
.y1a6{bottom:-50.345333pt;}
.y1e4{bottom:-46.423200pt;}
.y261{bottom:-40.523600pt;}
.y1a5{bottom:-34.985333pt;}
.y21e{bottom:-32.257333pt;}
.y1e3{bottom:-30.903600pt;}
.y63{bottom:-28.678667pt;}
.y22e{bottom:-27.736533pt;}
.y260{bottom:-25.163600pt;}
.y17a{bottom:-24.132000pt;}
.y15a{bottom:-19.101200pt;}
.y21d{bottom:-16.816933pt;}
.y62{bottom:-13.238267pt;}
.y22d{bottom:-12.216933pt;}
.y1e2{bottom:-10.982928pt;}
.y1a4{bottom:-7.064933pt;}
.y25f{bottom:-5.243600pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.y21c{bottom:3.104416pt;}
.y61{bottom:6.681309pt;}
.y22c{bottom:7.703067pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:13.754203pt;}
.y49{bottom:28.346667pt;}
.y153{bottom:85.038667pt;}
.y278{bottom:89.160000pt;}
.y1f{bottom:91.398667pt;}
.y2f5{bottom:92.050667pt;}
.y48{bottom:92.790667pt;}
.yc5{bottom:94.044000pt;}
.y297{bottom:94.441333pt;}
.y28a{bottom:94.840000pt;}
.y8f{bottom:97.254667pt;}
.y225{bottom:101.141333pt;}
.y2be{bottom:101.336000pt;}
.y152{bottom:101.776000pt;}
.y1bb{bottom:105.481333pt;}
.y277{bottom:105.897333pt;}
.y1e{bottom:107.298667pt;}
.y2f4{bottom:107.393333pt;}
.y47{bottom:109.528000pt;}
.yc4{bottom:110.780000pt;}
.y296{bottom:111.178667pt;}
.y19f{bottom:111.537333pt;}
.y288{bottom:111.577333pt;}
.y8e{bottom:113.992000pt;}
.y289{bottom:116.400000pt;}
.y2bd{bottom:116.678667pt;}
.y224{bottom:118.236000pt;}
.y150{bottom:118.513333pt;}
.y1ba{bottom:122.218667pt;}
.y276{bottom:122.633333pt;}
.y2f3{bottom:122.736000pt;}
.y1d{bottom:123.200000pt;}
.y151{bottom:123.334667pt;}
.y46{bottom:126.265333pt;}
.yc3{bottom:127.517333pt;}
.y295{bottom:127.916000pt;}
.y19d{bottom:128.274667pt;}
.y287{bottom:128.314667pt;}
.y8d{bottom:130.729333pt;}
.y2bc{bottom:132.021333pt;}
.y19e{bottom:133.096000pt;}
.y14f{bottom:135.250667pt;}
.y177{bottom:137.716000pt;}
.y2f2{bottom:138.078667pt;}
.y1fb{bottom:138.173333pt;}
.y1b9{bottom:138.956000pt;}
.y1c{bottom:139.100000pt;}
.y275{bottom:139.370667pt;}
.y122{bottom:139.494667pt;}
.y45{bottom:143.002667pt;}
.yc2{bottom:144.254667pt;}
.ye4{bottom:144.653333pt;}
.y19c{bottom:145.012000pt;}
.y286{bottom:145.052000pt;}
.y2bb{bottom:147.364000pt;}
.y8c{bottom:147.466667pt;}
.y121{bottom:150.121333pt;}
.y14e{bottom:151.988000pt;}
.y2f1{bottom:153.421333pt;}
.y175{bottom:154.453333pt;}
.y21b{bottom:154.864664pt;}
.y1b{bottom:155.000000pt;}
.y1b8{bottom:155.693333pt;}
.y274{bottom:156.108000pt;}
.y176{bottom:159.274667pt;}
.y44{bottom:159.740000pt;}
.ye3{bottom:161.390667pt;}
.y19b{bottom:161.749333pt;}
.y285{bottom:161.789333pt;}
.y2ba{bottom:162.706667pt;}
.y8b{bottom:164.204000pt;}
.yc1{bottom:164.977333pt;}
.y120{bottom:167.389333pt;}
.y14d{bottom:168.725333pt;}
.y2f0{bottom:168.762667pt;}
.y1a{bottom:170.901333pt;}
.y173{bottom:171.190667pt;}
.y21a{bottom:171.984168pt;}
.y1b7{bottom:172.430667pt;}
.y174{bottom:176.012000pt;}
.y43{bottom:176.477333pt;}
.y273{bottom:176.830667pt;}
.y11f{bottom:178.016000pt;}
.y2b9{bottom:178.049333pt;}
.ye2{bottom:178.128000pt;}
.y199{bottom:178.486667pt;}
.y283{bottom:178.526667pt;}
.y8a{bottom:180.941333pt;}
.y19a{bottom:183.308000pt;}
.y284{bottom:183.348000pt;}
.y2ef{bottom:184.105333pt;}
.y14c{bottom:185.462667pt;}
.y19{bottom:186.801333pt;}
.y172{bottom:187.928000pt;}
.y11e{bottom:188.642667pt;}
.y219{bottom:189.103672pt;}
.y42{bottom:193.214667pt;}
.y2b8{bottom:193.392000pt;}
.y272{bottom:194.764000pt;}
.yc0{bottom:194.865333pt;}
.y198{bottom:195.224000pt;}
.y282{bottom:195.264000pt;}
.y2ee{bottom:197.117333pt;}
.y89{bottom:197.678667pt;}
.y2ed{bottom:199.448000pt;}
.y1b6{bottom:202.266667pt;}
.y18{bottom:202.701333pt;}
.y171{bottom:204.665333pt;}
.y11d{bottom:205.921333pt;}
.y218{bottom:206.144352pt;}
.y2b7{bottom:208.733333pt;}
.y22b{bottom:209.542771pt;}
.y41{bottom:209.952000pt;}
.ybe{bottom:211.602667pt;}
.y197{bottom:211.960000pt;}
.y281{bottom:212.001333pt;}
.y88{bottom:214.416000pt;}
.y2ec{bottom:214.790667pt;}
.y14b{bottom:215.298667pt;}
.ybf{bottom:216.425333pt;}
.y11c{bottom:216.548000pt;}
.y1b5{bottom:219.362667pt;}
.y170{bottom:221.402667pt;}
.y271{bottom:221.810667pt;}
.y217{bottom:223.263856pt;}
.y2b6{bottom:224.076000pt;}
.y22a{bottom:226.583451pt;}
.y40{bottom:226.689333pt;}
.ybd{bottom:228.340000pt;}
.y196{bottom:228.697333pt;}
.y280{bottom:228.738667pt;}
.y2eb{bottom:230.133333pt;}
.y87{bottom:231.153333pt;}
.y14a{bottom:232.394667pt;}
.y11b{bottom:233.826667pt;}
.y1b4{bottom:236.458667pt;}
.y16f{bottom:238.140000pt;}
.y270{bottom:238.906667pt;}
.y2b5{bottom:239.418667pt;}
.y216{bottom:240.303200pt;}
.y3f{bottom:243.426667pt;}
.y11a{bottom:244.453333pt;}
.ybc{bottom:245.077333pt;}
.y27f{bottom:245.476000pt;}
.y86{bottom:247.890667pt;}
.y195{bottom:249.420000pt;}
.y149{bottom:249.490667pt;}
.ye1{bottom:249.898667pt;}
.y1b3{bottom:253.554667pt;}
.y2b4{bottom:254.761333pt;}
.y16e{bottom:254.877333pt;}
.y26f{bottom:256.002667pt;}
.ybb{bottom:259.388000pt;}
.y1e1{bottom:260.136896pt;}
.y3e{bottom:260.164000pt;}
.y2ea{bottom:260.818667pt;}
.y119{bottom:261.721333pt;}
.yba{bottom:261.814667pt;}
.y27e{bottom:262.213333pt;}
.y85{bottom:264.628000pt;}
.y146{bottom:269.428000pt;}
.y16c{bottom:271.614667pt;}
.y215{bottom:273.023467pt;}
.y26e{bottom:273.097333pt;}
.y17{bottom:273.154667pt;}
.y1a0{bottom:273.492000pt;}
.y118{bottom:273.734667pt;}
.y2b3{bottom:274.089333pt;}
.y228{bottom:275.223187pt;}
.y2e9{bottom:276.161333pt;}
.y16d{bottom:276.436000pt;}
.y3d{bottom:276.901333pt;}
.y1e0{bottom:277.256400pt;}
.y1de{bottom:277.256896pt;}
.yb9{bottom:278.552000pt;}
.y27d{bottom:278.950667pt;}
.y194{bottom:279.308000pt;}
.y25e{bottom:279.317368pt;}
.y1df{bottom:280.616400pt;}
.y227{bottom:283.783067pt;}
.y117{bottom:284.361333pt;}
.y16a{bottom:288.352000pt;}
.y214{bottom:288.543067pt;}
.y16{bottom:289.054667pt;}
.y2e8{bottom:291.502667pt;}
.y251{bottom:293.034667pt;}
.y16b{bottom:293.173333pt;}
.y3c{bottom:293.637333pt;}
.y1dd{bottom:294.376400pt;}
.y1db{bottom:294.377056pt;}
.y84{bottom:294.464000pt;}
.yb8{bottom:295.289333pt;}
.y27c{bottom:295.688000pt;}
.y193{bottom:296.045333pt;}
.y25d{bottom:296.436872pt;}
.y1dc{bottom:297.736400pt;}
.y1fa{bottom:300.814667pt;}
.y116{bottom:301.629333pt;}
.y2b2{bottom:303.977333pt;}
.y15{bottom:304.954667pt;}
.y169{bottom:305.089333pt;}
.y2e7{bottom:306.845333pt;}
.y213{bottom:308.463739pt;}
.y3b{bottom:310.374667pt;}
.y1da{bottom:311.416400pt;}
.y1d8{bottom:311.416896pt;}
.y83{bottom:311.560000pt;}
.ye0{bottom:312.026667pt;}
.y115{bottom:312.256000pt;}
.y27b{bottom:312.425333pt;}
.y191{bottom:312.782667pt;}
.y25c{bottom:313.476216pt;}
.y1d9{bottom:314.776400pt;}
.yb7{bottom:316.012000pt;}
.y1f9{bottom:317.552000pt;}
.y192{bottom:317.605333pt;}
.y14{bottom:320.856000pt;}
.y168{bottom:321.826667pt;}
.y2e6{bottom:322.188000pt;}
.y3a{bottom:327.112000pt;}
.y2b1{bottom:327.568000pt;}
.y1d7{bottom:328.536400pt;}
.y1d5{bottom:328.539416pt;}
.ydf{bottom:328.764000pt;}
.y27a{bottom:329.162667pt;}
.y18f{bottom:329.520000pt;}
.y114{bottom:329.534667pt;}
.y25b{bottom:330.595720pt;}
.y5d{bottom:331.497333pt;}
.y1d6{bottom:331.896400pt;}
.y1f8{bottom:334.289333pt;}
.y190{bottom:334.341333pt;}
.y2e5{bottom:337.530667pt;}
.y167{bottom:338.562667pt;}
.y113{bottom:340.161333pt;}
.y2b0{bottom:343.189333pt;}
.y39{bottom:343.849333pt;}
.yde{bottom:345.501333pt;}
.y1d4{bottom:345.658920pt;}
.yb6{bottom:345.900000pt;}
.y18e{bottom:346.257333pt;}
.y25a{bottom:347.636400pt;}
.y112{bottom:350.789333pt;}
.y1f7{bottom:351.026667pt;}
.y147{bottom:351.955200pt;}
.y2e4{bottom:352.873333pt;}
.y13{bottom:354.688000pt;}
.y166{bottom:355.300000pt;}
.y2af{bottom:358.812000pt;}
.y38{bottom:360.586667pt;}
.ydd{bottom:362.238667pt;}
.yb5{bottom:362.637333pt;}
.y1d3{bottom:362.698264pt;}
.y1f6{bottom:367.764000pt;}
.y111{bottom:368.057333pt;}
.y2e3{bottom:368.216000pt;}
.y12{bottom:370.589333pt;}
.y164{bottom:372.037333pt;}
.y5f{bottom:374.361853pt;}
.y2ae{bottom:374.433333pt;}
.y18d{bottom:376.093333pt;}
.y165{bottom:376.860000pt;}
.y37{bottom:377.324000pt;}
.y110{bottom:378.684000pt;}
.ydc{bottom:378.976000pt;}
.yb4{bottom:379.374667pt;}
.y1d2{bottom:379.817768pt;}
.y259{bottom:380.356800pt;}
.y5e{bottom:382.921733pt;}
.y2e2{bottom:383.558667pt;}
.y1f5{bottom:384.501333pt;}
.y11{bottom:386.489333pt;}
.y163{bottom:388.774667pt;}
.y18c{bottom:393.189333pt;}
.y36{bottom:394.061333pt;}
.ydb{bottom:395.713333pt;}
.y258{bottom:395.876400pt;}
.y10d{bottom:395.962667pt;}
.y109{bottom:396.081333pt;}
.yb3{bottom:396.112000pt;}
.y1d1{bottom:396.857112pt;}
.y2ad{bottom:398.024000pt;}
.y2e1{bottom:398.901333pt;}
.y279{bottom:400.933333pt;}
.y106{bottom:401.276000pt;}
.y10f{bottom:401.394667pt;}
.y10{bottom:402.389333pt;}
.y162{bottom:405.512000pt;}
.y10c{bottom:406.589333pt;}
.y108{bottom:406.708000pt;}
.y35{bottom:410.798667pt;}
.y105{bottom:411.902667pt;}
.y10e{bottom:412.021333pt;}
.yda{bottom:412.450667pt;}
.yb2{bottom:412.848000pt;}
.y178{bottom:413.126667pt;}
.y1d0{bottom:413.976616pt;}
.y2e0{bottom:414.244000pt;}
.y1f4{bottom:414.337333pt;}
.y257{bottom:415.796400pt;}
.y10b{bottom:417.216000pt;}
.y10a{bottom:417.334667pt;}
.y107{bottom:417.336000pt;}
.y2ac{bottom:421.616000pt;}
.y161{bottom:422.249333pt;}
.yd9{bottom:429.188000pt;}
.yb1{bottom:429.585333pt;}
.y1cf{bottom:431.096120pt;}
.y1f3{bottom:431.433333pt;}
.y34{bottom:431.521333pt;}
.yf{bottom:434.230667pt;}
.y160{bottom:438.986667pt;}
.y104{bottom:442.772000pt;}
.y2df{bottom:444.928000pt;}
.y2ab{bottom:445.208000pt;}
.yd8{bottom:445.925333pt;}
.yb0{bottom:446.322667pt;}
.ye{bottom:450.130667pt;}
.y1ca{bottom:451.370667pt;}
.y1ce{bottom:452.136784pt;}
.y15f{bottom:455.724000pt;}
.y103{bottom:459.868000pt;}
.y2de{bottom:460.270667pt;}
.y2aa{bottom:460.829333pt;}
.yd7{bottom:462.662667pt;}
.yaf{bottom:463.060000pt;}
.yd{bottom:466.032000pt;}
.y15e{bottom:472.461333pt;}
.y2dd{bottom:475.613333pt;}
.yd6{bottom:479.398667pt;}
.yae{bottom:479.797333pt;}
.yc{bottom:481.932000pt;}
.y2a9{bottom:484.420000pt;}
.y102{bottom:490.557333pt;}
.y2dc{bottom:490.956000pt;}
.y15d{bottom:493.184000pt;}
.yd5{bottom:496.136000pt;}
.yad{bottom:496.534667pt;}
.yb{bottom:497.832000pt;}
.y33{bottom:498.321333pt;}
.y2a8{bottom:500.042667pt;}
.y1cc{bottom:500.776520pt;}
.y2db{bottom:506.298667pt;}
.y101{bottom:507.294667pt;}
.y1cb{bottom:509.336400pt;}
.yd4{bottom:512.873333pt;}
.yac{bottom:513.272000pt;}
.ya{bottom:513.733333pt;}
.y32{bottom:515.616000pt;}
.y2a7{bottom:515.664000pt;}
.y15c{bottom:520.230667pt;}
.y2da{bottom:521.641333pt;}
.yff{bottom:524.032000pt;}
.y100{bottom:528.854667pt;}
.yd3{bottom:529.610667pt;}
.yab{bottom:530.009333pt;}
.y2a6{bottom:531.285333pt;}
.y7{bottom:533.618634pt;}
.y2d9{bottom:536.984000pt;}
.y15b{bottom:537.326667pt;}
.yfd{bottom:540.769333pt;}
.yfe{bottom:545.592000pt;}
.yd2{bottom:546.348000pt;}
.yaa{bottom:546.746667pt;}
.y2a5{bottom:546.906667pt;}
.y31{bottom:548.852000pt;}
.y2d8{bottom:552.325333pt;}
.y158{bottom:557.264000pt;}
.yfc{bottom:557.506667pt;}
.y2a4{bottom:562.528000pt;}
.yd1{bottom:563.085333pt;}
.ya9{bottom:563.484000pt;}
.y250{bottom:564.780000pt;}
.y30{bottom:566.146667pt;}
.y2d7{bottom:567.668000pt;}
.y2a3{bottom:578.149333pt;}
.yfb{bottom:578.229333pt;}
.y212{bottom:579.583563pt;}
.ycf{bottom:579.822667pt;}
.ya8{bottom:580.221333pt;}
.y24f{bottom:581.517333pt;}
.y2d6{bottom:583.010667pt;}
.y2f{bottom:583.442667pt;}
.yd0{bottom:584.645333pt;}
.yfa{bottom:596.161333pt;}
.ycd{bottom:596.560000pt;}
.y211{bottom:596.703067pt;}
.y20f{bottom:596.703563pt;}
.ya7{bottom:596.958667pt;}
.y24e{bottom:598.254667pt;}
.y2d5{bottom:598.353333pt;}
.y210{bottom:600.063067pt;}
.y2e{bottom:600.737333pt;}
.yce{bottom:601.382667pt;}
.y145{bottom:603.937333pt;}
.y2a2{bottom:609.710667pt;}
.ycb{bottom:613.297333pt;}
.ya6{bottom:613.696000pt;}
.y20e{bottom:613.823067pt;}
.y20c{bottom:613.823723pt;}
.y24d{bottom:614.992000pt;}
.y20d{bottom:617.183067pt;}
.y256{bottom:617.636104pt;}
.y2d{bottom:618.032000pt;}
.ycc{bottom:618.120000pt;}
.y179{bottom:618.429333pt;}
.y144{bottom:620.673333pt;}
.yf9{bottom:626.049333pt;}
.y2a1{bottom:626.448000pt;}
.y2d4{bottom:629.038667pt;}
.yca{bottom:630.034667pt;}
.ya5{bottom:630.433333pt;}
.y20b{bottom:630.863067pt;}
.y209{bottom:630.863563pt;}
.y24c{bottom:631.729333pt;}
.y20a{bottom:634.223067pt;}
.y255{bottom:634.676784pt;}
.y2c{bottom:635.328000pt;}
.y142{bottom:637.410667pt;}
.y143{bottom:642.233333pt;}
.yf7{bottom:642.786667pt;}
.y2a0{bottom:643.185333pt;}
.y2d3{bottom:644.381333pt;}
.y294{bottom:646.772000pt;}
.ya4{bottom:647.170667pt;}
.yf8{bottom:647.609333pt;}
.y208{bottom:647.983067pt;}
.y206{bottom:647.986083pt;}
.y24b{bottom:648.465333pt;}
.yc9{bottom:650.757333pt;}
.y207{bottom:651.343067pt;}
.y2b{bottom:652.622667pt;}
.y140{bottom:654.148000pt;}
.y141{bottom:658.970667pt;}
.yf6{bottom:659.524000pt;}
.y2d2{bottom:659.724000pt;}
.y29f{bottom:659.922667pt;}
.y293{bottom:663.509333pt;}
.ya3{bottom:663.908000pt;}
.y205{bottom:665.105587pt;}
.y24a{bottom:665.202667pt;}
.y2a{bottom:669.918667pt;}
.y13f{bottom:670.885333pt;}
.y2d1{bottom:675.066667pt;}
.yf5{bottom:676.261333pt;}
.y29e{bottom:676.660000pt;}
.y1a2{bottom:678.375187pt;}
.y292{bottom:680.246667pt;}
.ya2{bottom:680.645333pt;}
.y249{bottom:681.940000pt;}
.y204{bottom:682.144931pt;}
.y253{bottom:683.316520pt;}
.y157{bottom:685.466667pt;}
.y1a1{bottom:686.935067pt;}
.y29{bottom:687.213333pt;}
.y13e{bottom:687.622667pt;}
.y2d0{bottom:690.408000pt;}
.y252{bottom:691.876400pt;}
.yf4{bottom:692.998667pt;}
.y29d{bottom:693.397333pt;}
.y248{bottom:696.250667pt;}
.y291{bottom:696.984000pt;}
.ya1{bottom:697.382667pt;}
.y247{bottom:698.677333pt;}
.y203{bottom:699.264435pt;}
.y5c{bottom:699.757333pt;}
.y156{bottom:702.204000pt;}
.y13d{bottom:704.360000pt;}
.y28{bottom:704.508000pt;}
.y2cf{bottom:705.750667pt;}
.yf3{bottom:709.736000pt;}
.y29c{bottom:710.134667pt;}
.y290{bottom:713.721333pt;}
.ya0{bottom:714.120000pt;}
.y246{bottom:715.414667pt;}
.y202{bottom:716.303779pt;}
.y5b{bottom:716.494667pt;}
.y2ce{bottom:721.093333pt;}
.y13c{bottom:721.097333pt;}
.y27{bottom:721.804000pt;}
.yf2{bottom:726.473333pt;}
.y29b{bottom:726.872000pt;}
.y1c9{bottom:730.458667pt;}
.y9f{bottom:730.857333pt;}
.y245{bottom:732.152000pt;}
.y5a{bottom:733.232000pt;}
.y201{bottom:733.423283pt;}
.y2cd{bottom:736.436000pt;}
.y13b{bottom:737.834667pt;}
.y26{bottom:739.098667pt;}
.yf1{bottom:743.210667pt;}
.y29a{bottom:743.609333pt;}
.y1c7{bottom:747.196000pt;}
.y9e{bottom:747.594667pt;}
.y59{bottom:749.969333pt;}
.y200{bottom:750.542787pt;}
.y2cc{bottom:751.778667pt;}
.y1c8{bottom:752.017333pt;}
.y13a{bottom:754.572000pt;}
.y299{bottom:760.346667pt;}
.y244{bottom:761.988000pt;}
.yf0{bottom:763.933333pt;}
.y9d{bottom:764.332000pt;}
.y58{bottom:766.706667pt;}
.y2cb{bottom:767.121333pt;}
.y1ff{bottom:771.583451pt;}
.y25{bottom:773.397333pt;}
.y298{bottom:777.084000pt;}
.y243{bottom:779.084000pt;}
.y1c5{bottom:780.670667pt;}
.y9c{bottom:781.069333pt;}
.y2ca{bottom:782.464000pt;}
.y57{bottom:783.444000pt;}
.y1c6{bottom:785.492000pt;}
.y24{bottom:791.601333pt;}
.y139{bottom:792.032000pt;}
.yef{bottom:793.821333pt;}
.y1c3{bottom:797.408000pt;}
.y9b{bottom:797.806667pt;}
.y226{bottom:799.021333pt;}
.y56{bottom:800.181333pt;}
.y28f{bottom:801.393333pt;}
.y1c4{bottom:802.229333pt;}
.yc8{bottom:802.628000pt;}
.y138{bottom:804.650667pt;}
.y23{bottom:805.946667pt;}
.yee{bottom:810.558667pt;}
.y2c9{bottom:813.148000pt;}
.y2f6{bottom:813.149333pt;}
.y1c2{bottom:814.145333pt;}
.y9a{bottom:814.544000pt;}
.y22{bottom:816.436000pt;}
.y55{bottom:816.918667pt;}
.y1fd{bottom:820.223187pt;}
.y137{bottom:823.674667pt;}
.yed{bottom:827.296000pt;}
.y2c8{bottom:828.490667pt;}
.y1fc{bottom:828.783067pt;}
.y1c1{bottom:830.882667pt;}
.y99{bottom:831.281333pt;}
.y54{bottom:833.656000pt;}
.y21{bottom:834.640000pt;}
.y136{bottom:835.689333pt;}
.y155{bottom:836.102667pt;}
.y2c7{bottom:843.833333pt;}
.yec{bottom:844.033333pt;}
.y1c0{bottom:847.620000pt;}
.y98{bottom:848.018667pt;}
.y20{bottom:848.985333pt;}
.y53{bottom:850.393333pt;}
.y135{bottom:852.717333pt;}
.yc7{bottom:852.840000pt;}
.y2c6{bottom:859.176000pt;}
.yeb{bottom:860.770667pt;}
.y134{bottom:863.344000pt;}
.y1bf{bottom:864.357333pt;}
.y97{bottom:864.754667pt;}
.y52{bottom:867.130667pt;}
.y2c5{bottom:874.518667pt;}
.yea{bottom:877.508000pt;}
.y133{bottom:880.622667pt;}
.y1be{bottom:881.094667pt;}
.y96{bottom:881.492000pt;}
.y159{bottom:882.522080pt;}
.y51{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y28e{bottom:886.314667pt;}
.y2c4{bottom:889.861333pt;}
.y132{bottom:891.249333pt;}
.ye9{bottom:894.245333pt;}
.y95{bottom:898.229333pt;}
.y50{bottom:900.605333pt;}
.y1bd{bottom:901.816000pt;}
.y131{bottom:901.877333pt;}
.y28d{bottom:903.052000pt;}
.y2c3{bottom:905.204000pt;}
.ye8{bottom:910.982667pt;}
.y94{bottom:914.966667pt;}
.y4f{bottom:917.342667pt;}
.y12f{bottom:919.145333pt;}
.y130{bottom:919.269333pt;}
.y28c{bottom:919.789333pt;}
.y2c2{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.ye7{bottom:927.720000pt;}
.y93{bottom:931.704000pt;}
.y4e{bottom:934.080000pt;}
.y2c1{bottom:935.889333pt;}
.y12c{bottom:936.422667pt;}
.y28b{bottom:936.526667pt;}
.y128{bottom:936.542667pt;}
.y129{bottom:941.736000pt;}
.y125{bottom:941.737333pt;}
.y12e{bottom:941.856000pt;}
.ye6{bottom:944.456000pt;}
.y12b{bottom:947.050667pt;}
.y127{bottom:947.169333pt;}
.y92{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4d{bottom:950.817333pt;}
.y2c0{bottom:951.230667pt;}
.y124{bottom:952.364000pt;}
.y12d{bottom:952.482667pt;}
.y1bc{bottom:953.264000pt;}
.y12a{bottom:957.677333pt;}
.y126{bottom:957.796000pt;}
.ye5{bottom:961.193333pt;}
.y91{bottom:965.178667pt;}
.y2bf{bottom:966.573333pt;}
.y4c{bottom:967.554667pt;}
.yc6{bottom:970.001333pt;}
.y3{bottom:975.722667pt;}
.y90{bottom:981.916000pt;}
.y123{bottom:983.233333pt;}
.y4b{bottom:984.290667pt;}
.y154{bottom:986.738667pt;}
.y1{bottom:1014.377333pt;}
.y4a{bottom:1043.020000pt;}
.hf{height:22.284493pt;}
.h7{height:22.673858pt;}
.h36{height:23.359375pt;}
.h12{height:24.760382pt;}
.h1c{height:26.761523pt;}
.hb{height:27.672303pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.h1d{height:30.732706pt;}
.h15{height:31.067969pt;}
.h14{height:31.192656pt;}
.ha{height:32.284045pt;}
.h2b{height:33.206625pt;}
.hd{height:34.574438pt;}
.h1f{height:34.617626pt;}
.h1e{height:34.622959pt;}
.h18{height:35.039062pt;}
.h1a{height:35.051460pt;}
.h17{height:35.062500pt;}
.h34{height:35.179688pt;}
.h3c{height:35.212691pt;}
.h21{height:36.003598pt;}
.hc{height:36.896250pt;}
.h2c{height:37.357609pt;}
.h10{height:38.415786pt;}
.h16{height:39.010156pt;}
.h39{height:39.036250pt;}
.h2e{height:39.110025pt;}
.h19{height:39.166719pt;}
.h28{height:40.504218pt;}
.h3a{height:41.462969pt;}
.he{height:41.508454pt;}
.h2f{height:43.998962pt;}
.h4{height:45.004385pt;}
.h2{height:45.356667pt;}
.h11{height:46.120196pt;}
.h6{height:48.481423pt;}
.h30{height:49.644045pt;}
.h31{height:54.336794pt;}
.h1b{height:54.342127pt;}
.h27{height:58.624250pt;}
.h25{height:58.629583pt;}
.h20{height:58.645583pt;}
.h23{height:58.650916pt;}
.h29{height:60.928250pt;}
.h5{height:69.148877pt;}
.h22{height:79.882916pt;}
.h26{height:79.898916pt;}
.h3{height:82.466667pt;}
.h24{height:82.656250pt;}
.h37{height:141.626667pt;}
.h38{height:196.178667pt;}
.h3b{height:250.730667pt;}
.h35{height:258.074667pt;}
.h2a{height:313.497600pt;}
.h13{height:347.246667pt;}
.h2d{height:437.938293pt;}
.h32{height:582.074667pt;}
.h33{height:637.200000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:126.229253pt;}
.w8{width:345.694667pt;}
.wc{width:363.506667pt;}
.w9{width:412.289333pt;}
.w4{width:457.925333pt;}
.wb{width:463.170667pt;}
.w6{width:488.446587pt;}
.wa{width:530.312000pt;}
.w7{width:573.665733pt;}
.w5{width:667.128360pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb2{left:-197.724000pt;}
.xba{left:-192.765333pt;}
.xd2{left:-175.980000pt;}
.x22{left:-166.013333pt;}
.x91{left:-127.140640pt;}
.x9d{left:-75.658267pt;}
.xb3{left:-23.885456pt;}
.xbb{left:-18.926302pt;}
.xd3{left:-2.139680pt;}
.x0{left:0.000000pt;}
.xbf{left:0.994667pt;}
.x7e{left:5.132760pt;}
.x24{left:7.826667pt;}
.xbc{left:9.393604pt;}
.x9e{left:19.184400pt;}
.xbd{left:22.754667pt;}
.x4{left:26.021437pt;}
.xc9{left:27.222667pt;}
.xbe{left:32.754667pt;}
.xca{left:35.222667pt;}
.x25{left:36.146667pt;}
.x3{left:46.804000pt;}
.x1{left:48.000000pt;}
.xc8{left:48.982667pt;}
.x2{left:50.668675pt;}
.x76{left:55.970667pt;}
.x71{left:58.289333pt;}
.x5c{left:62.401333pt;}
.x6b{left:65.074667pt;}
.x79{left:66.036000pt;}
.x73{left:67.380000pt;}
.x6f{left:69.256000pt;}
.x70{left:70.265333pt;}
.x7a{left:73.490667pt;}
.x5a{left:75.952000pt;}
.x74{left:78.926667pt;}
.x6e{left:82.905333pt;}
.x72{left:86.013333pt;}
.x7b{left:91.390667pt;}
.x5d{left:92.512000pt;}
.x6d{left:94.872000pt;}
.x6c{left:96.524000pt;}
.x78{left:97.517333pt;}
.xa0{left:99.132400pt;}
.x9c{left:110.018267pt;}
.x84{left:117.156000pt;}
.x5b{left:121.541333pt;}
.x85{left:122.464000pt;}
.x80{left:126.546667pt;}
.x9f{left:128.036400pt;}
.xc7{left:131.694667pt;}
.xc5{left:158.994667pt;}
.xc6{left:162.994667pt;}
.xa1{left:176.648400pt;}
.xce{left:185.222667pt;}
.xa2{left:186.661733pt;}
.xcf{left:189.222667pt;}
.x5e{left:190.210667pt;}
.x5f{left:196.916000pt;}
.x92{left:201.773120pt;}
.x60{left:204.057333pt;}
.x77{left:209.248000pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.x4e{left:239.536000pt;}
.x6{left:241.085333pt;}
.xa5{left:242.288400pt;}
.x4f{left:247.741333pt;}
.xc{left:251.365333pt;}
.xf0{left:255.320000pt;}
.xa6{left:257.396400pt;}
.xd{left:260.053333pt;}
.xa9{left:262.269333pt;}
.x38{left:264.865333pt;}
.xef{left:266.392000pt;}
.xf1{left:268.602667pt;}
.x88{left:270.690667pt;}
.xa3{left:272.628400pt;}
.x26{left:273.872000pt;}
.x8{left:276.248000pt;}
.x61{left:277.189333pt;}
.x45{left:278.712000pt;}
.x48{left:280.373333pt;}
.xc0{left:282.994667pt;}
.x7f{left:284.399160pt;}
.xa4{left:287.623067pt;}
.xb{left:288.628000pt;}
.xeb{left:290.082667pt;}
.xc1{left:290.994667pt;}
.x49{left:294.388000pt;}
.x62{left:295.993333pt;}
.xd5{left:303.952000pt;}
.x4a{left:305.570667pt;}
.xcb{left:309.222667pt;}
.xe1{left:311.118667pt;}
.x1d{left:314.177333pt;}
.xe2{left:316.830667pt;}
.x43{left:317.810667pt;}
.x4b{left:318.854667pt;}
.x2b{left:321.758667pt;}
.x44{left:323.861333pt;}
.x1e{left:327.461333pt;}
.xc2{left:328.594667pt;}
.xe7{left:331.084000pt;}
.xf6{left:332.178667pt;}
.x55{left:333.250667pt;}
.xc3{left:336.594667pt;}
.xe8{left:340.126667pt;}
.xe3{left:342.069333pt;}
.xb4{left:345.444000pt;}
.xf5{left:348.464000pt;}
.x35{left:350.969333pt;}
.x37{left:351.992000pt;}
.xcc{left:354.822667pt;}
.xd1{left:357.093333pt;}
.x7c{left:358.493333pt;}
.x75{left:360.429333pt;}
.xcd{left:362.822667pt;}
.x36{left:364.253333pt;}
.x14{left:366.309333pt;}
.x65{left:369.216000pt;}
.x64{left:370.220000pt;}
.x15{left:372.952000pt;}
.x86{left:374.194667pt;}
.xd0{left:375.382667pt;}
.x16{left:376.338667pt;}
.x8c{left:378.390667pt;}
.x39{left:379.545333pt;}
.x81{left:381.413333pt;}
.x17{left:382.981333pt;}
.x82{left:387.390667pt;}
.x63{left:388.397333pt;}
.xec{left:390.876000pt;}
.x3a{left:392.829333pt;}
.xe4{left:395.449333pt;}
.xa7{left:398.832400pt;}
.xed{left:404.160000pt;}
.x90{left:406.342667pt;}
.xb1{left:408.349333pt;}
.xaf{left:410.026667pt;}
.x94{left:412.692000pt;}
.xa8{left:413.957733pt;}
.xb0{left:416.077333pt;}
.xb5{left:417.202667pt;}
.xab{left:422.781333pt;}
.xd9{left:424.074667pt;}
.x9a{left:426.042667pt;}
.x95{left:430.105333pt;}
.x98{left:437.450667pt;}
.x9b{left:442.889333pt;}
.x89{left:446.601333pt;}
.x67{left:448.430667pt;}
.x23{left:450.626819pt;}
.x66{left:455.166667pt;}
.x8d{left:456.758667pt;}
.xe9{left:460.336000pt;}
.x30{left:462.086667pt;}
.x8a{left:463.934667pt;}
.xaa{left:471.568000pt;}
.xb8{left:473.028000pt;}
.x9{left:474.692000pt;}
.xea{left:477.681333pt;}
.xa{left:482.076000pt;}
.x96{left:488.985333pt;}
.xb9{left:490.358667pt;}
.xc4{left:499.072900pt;}
.x97{left:503.001333pt;}
.xb6{left:507.477333pt;}
.xb7{left:513.528000pt;}
.xad{left:517.845333pt;}
.xd4{left:520.865333pt;}
.x68{left:526.042667pt;}
.x10{left:527.938667pt;}
.x41{left:530.588000pt;}
.x11{left:534.580000pt;}
.x2c{left:535.765333pt;}
.x3b{left:537.962667pt;}
.x12{left:541.354667pt;}
.x42{left:544.604000pt;}
.x3c{left:546.994667pt;}
.x13{left:547.997333pt;}
.x2d{left:549.049333pt;}
.x83{left:550.180000pt;}
.x3f{left:551.448000pt;}
.x2e{left:552.860000pt;}
.xdf{left:554.874667pt;}
.xee{left:556.904000pt;}
.x58{left:558.025333pt;}
.x40{left:559.653333pt;}
.x31{left:561.378667pt;}
.x4c{left:562.384000pt;}
.x2f{left:566.144000pt;}
.x7d{left:568.093333pt;}
.xdb{left:569.161333pt;}
.x4d{left:570.589333pt;}
.x59{left:572.040000pt;}
.xd6{left:573.466667pt;}
.x32{left:574.662667pt;}
.xdc{left:583.176000pt;}
.x93{left:585.357333pt;}
.xd7{left:587.481333pt;}
.xe0{left:589.284000pt;}
.x87{left:591.828000pt;}
.x1f{left:597.082667pt;}
.xd8{left:598.586667pt;}
.x1b{left:602.994667pt;}
.x69{left:605.082667pt;}
.x20{left:607.018667pt;}
.x1c{left:609.636000pt;}
.x102{left:610.990667pt;}
.x46{left:612.281333pt;}
.x6a{left:616.060000pt;}
.x21{left:620.301333pt;}
.x47{left:622.169333pt;}
.x56{left:624.605333pt;}
.x3d{left:628.854667pt;}
.x57{left:638.621333pt;}
.xf7{left:640.481333pt;}
.xf9{left:641.792000pt;}
.xe5{left:642.906667pt;}
.xdd{left:647.168000pt;}
.xe6{left:649.548000pt;}
.x100{left:652.573333pt;}
.x3e{left:656.029333pt;}
.x101{left:657.886667pt;}
.xde{left:660.452000pt;}
.xfe{left:662.689333pt;}
.xf8{left:664.392000pt;}
.xfa{left:665.701333pt;}
.x99{left:666.905333pt;}
.x27{left:668.976000pt;}
.xac{left:671.378667pt;}
.x33{left:681.348000pt;}
.x28{left:682.258667pt;}
.x54{left:684.568000pt;}
.x29{left:685.646667pt;}
.xff{left:686.600000pt;}
.xf2{left:687.674667pt;}
.x34{left:694.632000pt;}
.x2a{left:698.929333pt;}
.x8e{left:700.236000pt;}
.xfc{left:701.913333pt;}
.xda{left:703.484000pt;}
.xf3{left:707.086667pt;}
.xf4{left:710.354667pt;}
.x8b{left:712.189333pt;}
.x50{left:713.206667pt;}
.x18{left:717.068000pt;}
.x8f{left:718.156000pt;}
.xfb{left:720.269333pt;}
.x51{left:722.245333pt;}
.x19{left:723.709333pt;}
.xfd{left:725.822667pt;}
.x1a{left:727.021333pt;}
.x52{left:730.048000pt;}
.xae{left:731.685333pt;}
.xe{left:733.794667pt;}
.xf{left:740.436000pt;}
.x53{left:744.064000pt;}
}


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