
/* 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_5cedce9c34a6.woff")format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_b15aa7bcffd0.woff")format("woff");}.ff2{font-family:ff2;line-height:1.079590;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_580462e098a1.woff")format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_4d1bfa72e48c.woff")format("woff");}.ff4{font-family:ff4;line-height:1.079590;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_8d10f41ee6a9.woff")format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_01199654a0ff.woff")format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_b34f0ae7049f.woff")format("woff");}.ff7{font-family:ff7;line-height:0.718262;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_0987e258ae9c.woff")format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_98d390ad7923.woff")format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_8d10f41ee6a9.woff")format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_ed2c7c94809b.woff")format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_9e4d99b48e7b.woff")format("woff");}.ffc{font-family:ffc;line-height:0.940918;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_de72180bc8c1.woff")format("woff");}.ffd{font-family:ffd;line-height:0.718262;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_8d10f41ee6a9.woff")format("woff");}.ffe{font-family:ffe;line-height:0.750000;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_0b7634ce1829.woff")format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_d057402ce5d2.woff")format("woff");}.ff10{font-family:ff10;line-height:0.925293;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_6aac9e05e2ba.woff")format("woff");}.ff11{font-family:ff11;line-height:0.718262;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_f4af9eaccdb6.woff")format("woff");}.ff12{font-family:ff12;line-height:0.938477;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_8d10f41ee6a9.woff")format("woff");}.ff13{font-family:ff13;line-height:0.750000;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_a46a77b0196e.woff")format("woff");}.ff14{font-family:ff14;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_08bc972b70fb.woff")format("woff");}.ff15{font-family:ff15;line-height:0.938477;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_833a9381c711.woff")format("woff");}.ff16{font-family:ff16;line-height:0.718262;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_9c79f488a57f.woff")format("woff");}.ff17{font-family:ff17;line-height:0.935547;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_8d10f41ee6a9.woff")format("woff");}.ff18{font-family:ff18;line-height:0.750000;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_28766b190cc6.woff")format("woff");}.ff19{font-family:ff19;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_bfc03c9761f1.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;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_a714ac0a744f.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.718262;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_860c4838fc6e.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.926270;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_8d10f41ee6a9.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.750000;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_71b613047c57.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.070312;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_6e0723799a16.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;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_a714ac0a744f.woff")format("woff");}.ff20{font-family:ff20;line-height:0.718262;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_67f6cf3132a9.woff")format("woff");}.ff21{font-family:ff21;line-height:0.938477;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_8d10f41ee6a9.woff")format("woff");}.ff22{font-family:ff22;line-height:0.750000;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_275d72cc514a.woff")format("woff");}.ff23{font-family:ff23;line-height:0.939453;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_510d860e3331.woff")format("woff");}.ff24{font-family:ff24;line-height:0.913086;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_a714ac0a744f.woff")format("woff");}.ff25{font-family:ff25;line-height:0.718262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v5{vertical-align:-24.479400px;}
.v4{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.481704px;}
.v1{vertical-align:27.971400px;}
.v2{vertical-align:30.232224px;}
.ls3b{letter-spacing:-0.021600px;}
.ls2f{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.066096px;}
.ls34{letter-spacing:0.156816px;}
.ls40{letter-spacing:0.185328px;}
.ls39{letter-spacing:0.213840px;}
.ls28{letter-spacing:0.218592px;}
.ls3c{letter-spacing:0.223344px;}
.ls3f{letter-spacing:0.228096px;}
.ls2e{letter-spacing:0.232848px;}
.ls3{letter-spacing:0.233856px;}
.ls5a{letter-spacing:0.245088px;}
.ls53{letter-spacing:0.271728px;}
.ls51{letter-spacing:0.277056px;}
.ls26{letter-spacing:0.278880px;}
.ls27{letter-spacing:0.280368px;}
.ls59{letter-spacing:0.282384px;}
.ls52{letter-spacing:0.287712px;}
.ls47{letter-spacing:0.289296px;}
.ls50{letter-spacing:0.293040px;}
.ls55{letter-spacing:0.298368px;}
.ls7{letter-spacing:0.303696px;}
.ls56{letter-spacing:0.309024px;}
.ls6{letter-spacing:0.314352px;}
.ls4f{letter-spacing:0.319680px;}
.ls4d{letter-spacing:0.325008px;}
.ls4c{letter-spacing:0.330336px;}
.ls4e{letter-spacing:0.335664px;}
.ls45{letter-spacing:0.340800px;}
.ls54{letter-spacing:0.340992px;}
.ls24{letter-spacing:0.346320px;}
.ls4b{letter-spacing:0.348336px;}
.ls3a{letter-spacing:0.354240px;}
.ls31{letter-spacing:0.356976px;}
.ls2a{letter-spacing:0.360144px;}
.ls58{letter-spacing:0.362304px;}
.ls3e{letter-spacing:0.366048px;}
.ls23{letter-spacing:0.372960px;}
.ls20{letter-spacing:0.377856px;}
.ls29{letter-spacing:0.383760px;}
.ls30{letter-spacing:0.388944px;}
.ls14{letter-spacing:0.389664px;}
.ls46{letter-spacing:0.394272px;}
.ls17{letter-spacing:0.395568px;}
.ls2d{letter-spacing:0.400320px;}
.ls13{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.ls1b{letter-spacing:0.407376px;}
.ls10{letter-spacing:0.413280px;}
.ls9{letter-spacing:0.419184px;}
.ls4a{letter-spacing:0.421200px;}
.lsb{letter-spacing:0.425088px;}
.lsc{letter-spacing:0.430992px;}
.ls12{letter-spacing:0.436896px;}
.lsd{letter-spacing:0.442800px;}
.ls11{letter-spacing:0.448704px;}
.ls1a{letter-spacing:0.454608px;}
.lsf{letter-spacing:0.460512px;}
.lse{letter-spacing:0.466416px;}
.ls1e{letter-spacing:0.472320px;}
.ls16{letter-spacing:0.478224px;}
.ls3d{letter-spacing:0.479520px;}
.ls19{letter-spacing:0.484128px;}
.ls21{letter-spacing:0.490032px;}
.ls18{letter-spacing:0.495936px;}
.ls2b{letter-spacing:0.501840px;}
.ls2c{letter-spacing:0.507744px;}
.ls44{letter-spacing:0.511920px;}
.lsa{letter-spacing:0.513648px;}
.ls22{letter-spacing:0.525456px;}
.ls1c{letter-spacing:0.531360px;}
.ls15{letter-spacing:0.537264px;}
.ls1d{letter-spacing:0.543168px;}
.ls1f{letter-spacing:0.549072px;}
.ls36{letter-spacing:0.557280px;}
.ls37{letter-spacing:0.570240px;}
.ls41{letter-spacing:0.589680px;}
.ls8{letter-spacing:0.590400px;}
.ls48{letter-spacing:0.596160px;}
.ls33{letter-spacing:0.640800px;}
.ls49{letter-spacing:0.654480px;}
.ls4{letter-spacing:0.655344px;}
.ls43{letter-spacing:0.660960px;}
.ls57{letter-spacing:1.278720px;}
.ls32{letter-spacing:6.792720px;}
.ls38{letter-spacing:7.141200px;}
.ls42{letter-spacing:12.357072px;}
.ls35{letter-spacing:13.440000px;}
.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;}
}
.ws6{word-spacing:-17.003520px;}
.ws7{word-spacing:-16.926768px;}
.ws1a5{word-spacing:-15.152832px;}
.ws1a6{word-spacing:-15.115536px;}
.ws201{word-spacing:-15.104880px;}
.ws2{word-spacing:-12.835200px;}
.ws5{word-spacing:-10.874736px;}
.wsb9{word-spacing:-10.808640px;}
.ws4{word-spacing:-10.008000px;}
.ws58{word-spacing:-8.406720px;}
.ws3{word-spacing:-1.303200px;}
.wsb{word-spacing:-0.401472px;}
.ws107{word-spacing:-0.252720px;}
.ws12c{word-spacing:-0.246240px;}
.wsa9{word-spacing:-0.242064px;}
.ws15d{word-spacing:-0.233280px;}
.ws26{word-spacing:-0.212544px;}
.ws14e{word-spacing:-0.207792px;}
.ws130{word-spacing:-0.200736px;}
.ws60{word-spacing:-0.194832px;}
.ws106{word-spacing:-0.194400px;}
.ws78{word-spacing:-0.191808px;}
.wsc1{word-spacing:-0.183024px;}
.ws8e{word-spacing:-0.177120px;}
.ws1ac{word-spacing:-0.171216px;}
.ws143{word-spacing:-0.165312px;}
.ws1b8{word-spacing:-0.165168px;}
.ws14d{word-spacing:-0.159840px;}
.wse{word-spacing:-0.159408px;}
.ws217{word-spacing:-0.154512px;}
.ws31{word-spacing:-0.153504px;}
.ws8{word-spacing:-0.149184px;}
.ws96{word-spacing:-0.147600px;}
.ws213{word-spacing:-0.143856px;}
.ws5a{word-spacing:-0.142560px;}
.ws1c{word-spacing:-0.141696px;}
.ws136{word-spacing:-0.135792px;}
.ws76{word-spacing:-0.129888px;}
.wsc{word-spacing:-0.127872px;}
.wsd7{word-spacing:-0.123984px;}
.ws9{word-spacing:-0.122544px;}
.ws80{word-spacing:-0.118080px;}
.wsd{word-spacing:-0.117216px;}
.wscd{word-spacing:-0.112176px;}
.ws238{word-spacing:-0.111888px;}
.ws108{word-spacing:-0.110160px;}
.ws1e6{word-spacing:-0.106560px;}
.ws1cc{word-spacing:-0.101232px;}
.ws105{word-spacing:-0.100368px;}
.wse2{word-spacing:-0.094464px;}
.wsa{word-spacing:-0.091872px;}
.wsdd{word-spacing:-0.088560px;}
.ws59{word-spacing:-0.085536px;}
.ws231{word-spacing:-0.085248px;}
.ws119{word-spacing:-0.082656px;}
.ws1c0{word-spacing:-0.079920px;}
.ws0{word-spacing:-0.072000px;}
.wse9{word-spacing:-0.071280px;}
.ws1ea{word-spacing:-0.058608px;}
.ws5b{word-spacing:-0.057024px;}
.ws1b2{word-spacing:-0.053136px;}
.ws1ed{word-spacing:-0.042624px;}
.ws11f{word-spacing:-0.033264px;}
.ws14f{word-spacing:-0.011808px;}
.ws61{word-spacing:-0.007200px;}
.ws1{word-spacing:0.000000px;}
.ws1d{word-spacing:0.007200px;}
.ws32{word-spacing:0.014400px;}
.ws1e5{word-spacing:0.031968px;}
.ws1b9{word-spacing:0.154512px;}
.ws162{word-spacing:0.159408px;}
.ws3a{word-spacing:0.177120px;}
.ws16a{word-spacing:0.188928px;}
.ws15c{word-spacing:0.242064px;}
.ws97{word-spacing:0.295200px;}
.ws7b{word-spacing:0.318816px;}
.ws22c{word-spacing:0.362304px;}
.wsf4{word-spacing:0.366048px;}
.ws1b{word-spacing:0.395568px;}
.ws200{word-spacing:0.431568px;}
.wsd1{word-spacing:0.436896px;}
.ws8b{word-spacing:0.442800px;}
.wsd9{word-spacing:0.454608px;}
.wsd0{word-spacing:0.466416px;}
.wsd8{word-spacing:0.478224px;}
.ws142{word-spacing:0.590400px;}
.ws11c{word-spacing:0.779328px;}
.ws95{word-spacing:0.820656px;}
.wsb6{word-spacing:0.856080px;}
.wsb0{word-spacing:0.861984px;}
.ws1ee{word-spacing:0.873792px;}
.ws20d{word-spacing:0.969696px;}
.ws19f{word-spacing:0.980064px;}
.ws18f{word-spacing:0.991872px;}
.ws66{word-spacing:1.068624px;}
.ws184{word-spacing:1.115856px;}
.wsed{word-spacing:1.133568px;}
.ws7f{word-spacing:1.257552px;}
.ws74{word-spacing:1.269360px;}
.ws16f{word-spacing:1.281168px;}
.ws1a7{word-spacing:1.292976px;}
.ws1a{word-spacing:1.298880px;}
.ws110{word-spacing:1.310688px;}
.ws19{word-spacing:1.346112px;}
.ws185{word-spacing:1.487808px;}
.ws23d{word-spacing:1.497168px;}
.ws186{word-spacing:1.499616px;}
.ws56{word-spacing:1.505520px;}
.ws6c{word-spacing:1.511424px;}
.ws152{word-spacing:1.517328px;}
.ws12a{word-spacing:1.558656px;}
.ws1dc{word-spacing:1.699632px;}
.ws21{word-spacing:1.771200px;}
.ws6b{word-spacing:1.800720px;}
.ws188{word-spacing:1.836144px;}
.ws12d{word-spacing:1.871568px;}
.ws1f4{word-spacing:1.960704px;}
.ws8d{word-spacing:1.977840px;}
.ws1fd{word-spacing:2.003328px;}
.ws172{word-spacing:2.013264px;}
.ws1a2{word-spacing:2.119536px;}
.ws123{word-spacing:2.149056px;}
.ws17{word-spacing:2.231712px;}
.ws16{word-spacing:2.284848px;}
.wsfc{word-spacing:2.332080px;}
.ws114{word-spacing:2.397024px;}
.ws87{word-spacing:2.450160px;}
.ws1fb{word-spacing:2.498832px;}
.ws11d{word-spacing:2.499552px;}
.ws15{word-spacing:2.562336px;}
.wsd2{word-spacing:2.698128px;}
.ws168{word-spacing:2.727648px;}
.ws171{word-spacing:2.768976px;}
.ws20b{word-spacing:2.813184px;}
.ws16d{word-spacing:2.828016px;}
.wsef{word-spacing:2.869344px;}
.ws223{word-spacing:2.887776px;}
.ws222{word-spacing:2.941056px;}
.ws1d5{word-spacing:3.042288px;}
.ws57{word-spacing:3.052368px;}
.ws98{word-spacing:3.064176px;}
.ws5e{word-spacing:3.117312px;}
.ws1d0{word-spacing:3.132864px;}
.wsab{word-spacing:3.140928px;}
.wsf{word-spacing:3.176352px;}
.ws173{word-spacing:3.182256px;}
.ws144{word-spacing:3.188160px;}
.ws198{word-spacing:3.223584px;}
.wsd3{word-spacing:3.235392px;}
.ws7c{word-spacing:3.259008px;}
.ws18{word-spacing:3.323952px;}
.ws11e{word-spacing:3.354912px;}
.ws225{word-spacing:3.452544px;}
.ws12b{word-spacing:3.466800px;}
.ws17d{word-spacing:3.554208px;}
.ws1b6{word-spacing:3.569760px;}
.wsa4{word-spacing:3.595536px;}
.ws1cd{word-spacing:3.607056px;}
.ws6f{word-spacing:3.619152px;}
.ws127{word-spacing:3.642768px;}
.ws176{word-spacing:3.660480px;}
.ws166{word-spacing:3.666384px;}
.ws145{word-spacing:3.743136px;}
.wsc6{word-spacing:3.754944px;}
.ws13{word-spacing:3.760848px;}
.ws1f0{word-spacing:3.761568px;}
.ws14{word-spacing:3.778560px;}
.wsc9{word-spacing:3.802176px;}
.ws149{word-spacing:3.920256px;}
.ws1c6{word-spacing:3.932064px;}
.ws218{word-spacing:3.985344px;}
.wsdc{word-spacing:4.008816px;}
.ws24{word-spacing:4.020624px;}
.ws181{word-spacing:4.126896px;}
.ws73{word-spacing:4.144608px;}
.ws1a4{word-spacing:4.203648px;}
.ws15b{word-spacing:4.239072px;}
.wsbb{word-spacing:4.244976px;}
.wscc{word-spacing:4.321728px;}
.ws43{word-spacing:4.404384px;}
.ws2c{word-spacing:4.428000px;}
.wsf5{word-spacing:4.439808px;}
.wsf1{word-spacing:4.445712px;}
.ws1e4{word-spacing:4.454208px;}
.ws39{word-spacing:4.475232px;}
.wsea{word-spacing:4.492944px;}
.ws82{word-spacing:4.498848px;}
.wseb{word-spacing:4.522464px;}
.ws1a1{word-spacing:4.528368px;}
.wsc8{word-spacing:4.551984px;}
.ws124{word-spacing:4.557888px;}
.ws13d{word-spacing:4.569696px;}
.ws1cb{word-spacing:4.592736px;}
.wse3{word-spacing:4.593312px;}
.ws153{word-spacing:4.605120px;}
.ws183{word-spacing:4.670064px;}
.ws109{word-spacing:4.675968px;}
.ws1b1{word-spacing:4.693680px;}
.ws1a9{word-spacing:4.805856px;}
.ws19c{word-spacing:4.864896px;}
.ws164{word-spacing:4.876704px;}
.ws221{word-spacing:4.907088px;}
.ws1a3{word-spacing:4.923936px;}
.ws196{word-spacing:4.929840px;}
.wsaf{word-spacing:5.053824px;}
.ws159{word-spacing:5.059728px;}
.ws19e{word-spacing:5.071536px;}
.ws20a{word-spacing:5.104224px;}
.ws131{word-spacing:5.106960px;}
.ws29{word-spacing:5.142384px;}
.ws1af{word-spacing:5.230944px;}
.ws48{word-spacing:5.242752px;}
.wsb4{word-spacing:5.289984px;}
.ws9f{word-spacing:5.354928px;}
.wsb8{word-spacing:5.419872px;}
.ws227{word-spacing:5.434560px;}
.wsc2{word-spacing:5.520240px;}
.wsd6{word-spacing:5.591088px;}
.ws22{word-spacing:5.602896px;}
.ws91{word-spacing:5.697360px;}
.ws1fa{word-spacing:5.716944px;}
.ws1b3{word-spacing:5.738256px;}
.ws12{word-spacing:5.738688px;}
.ws1f7{word-spacing:5.754240px;}
.ws135{word-spacing:5.886288px;}
.ws197{word-spacing:5.921712px;}
.ws62{word-spacing:5.945328px;}
.ws1c9{word-spacing:6.031296px;}
.ws151{word-spacing:6.045696px;}
.ws7e{word-spacing:6.057504px;}
.ws190{word-spacing:6.069312px;}
.wsc5{word-spacing:6.140160px;}
.ws17b{word-spacing:6.169680px;}
.ws18a{word-spacing:6.187392px;}
.ws1b5{word-spacing:6.441552px;}
.ws206{word-spacing:6.457536px;}
.ws128{word-spacing:6.523920px;}
.ws195{word-spacing:6.541632px;}
.wsf7{word-spacing:6.559344px;}
.ws28{word-spacing:6.582960px;}
.ws1da{word-spacing:6.851808px;}
.ws50{word-spacing:6.866352px;}
.wsb3{word-spacing:6.919488px;}
.ws203{word-spacing:6.926400px;}
.ws7a{word-spacing:6.996240px;}
.wse5{word-spacing:7.008048px;}
.ws167{word-spacing:7.031664px;}
.wsc0{word-spacing:7.067088px;}
.ws9c{word-spacing:7.114320px;}
.ws210{word-spacing:7.128864px;}
.ws1c1{word-spacing:7.240752px;}
.wsd4{word-spacing:7.326864px;}
.ws4a{word-spacing:7.380000px;}
.ws11{word-spacing:7.391808px;}
.ws99{word-spacing:7.444944px;}
.ws156{word-spacing:7.474464px;}
.ws1f1{word-spacing:7.501824px;}
.ws11b{word-spacing:7.527168px;}
.ws53{word-spacing:7.533504px;}
.ws214{word-spacing:7.720272px;}
.ws10b{word-spacing:7.746048px;}
.ws182{word-spacing:7.757856px;}
.wsbc{word-spacing:7.769664px;}
.ws68{word-spacing:7.893648px;}
.ws33{word-spacing:7.958592px;}
.wse1{word-spacing:7.999920px;}
.wse6{word-spacing:8.007120px;}
.wsa1{word-spacing:8.029440px;}
.ws4d{word-spacing:8.053056px;}
.wse4{word-spacing:8.070768px;}
.ws4b{word-spacing:8.088480px;}
.ws19a{word-spacing:8.200656px;}
.ws15f{word-spacing:8.253792px;}
.ws93{word-spacing:8.259696px;}
.ws1f8{word-spacing:8.434224px;}
.ws1ad{word-spacing:8.484048px;}
.ws118{word-spacing:8.495856px;}
.ws175{word-spacing:8.513568px;}
.wse8{word-spacing:8.567856px;}
.ws13a{word-spacing:8.590320px;}
.ws139{word-spacing:8.619840px;}
.ws69{word-spacing:8.655264px;}
.ws3d{word-spacing:8.661168px;}
.ws160{word-spacing:8.720208px;}
.wsee{word-spacing:8.808768px;}
.ws20{word-spacing:8.814672px;}
.wsa7{word-spacing:8.820576px;}
.wsf2{word-spacing:8.844192px;}
.ws63{word-spacing:8.850096px;}
.ws27{word-spacing:8.932752px;}
.ws2f{word-spacing:8.974080px;}
.ws229{word-spacing:8.977680px;}
.ws42{word-spacing:9.033120px;}
.ws18c{word-spacing:9.080352px;}
.ws1d2{word-spacing:9.100224px;}
.ws46{word-spacing:9.133488px;}
.ws16c{word-spacing:9.180720px;}
.ws209{word-spacing:9.270720px;}
.ws83{word-spacing:9.275184px;}
.ws202{word-spacing:9.286704px;}
.ws178{word-spacing:9.292896px;}
.ws10c{word-spacing:9.298800px;}
.ws1db{word-spacing:9.345312px;}
.ws199{word-spacing:9.357840px;}
.ws94{word-spacing:9.375552px;}
.ws150{word-spacing:9.381456px;}
.ws17c{word-spacing:9.517248px;}
.ws21e{word-spacing:9.563760px;}
.ws1e0{word-spacing:9.606384px;}
.ws224{word-spacing:9.664992px;}
.ws5c{word-spacing:9.747504px;}
.ws9b{word-spacing:9.824256px;}
.wsda{word-spacing:9.836064px;}
.wsf8{word-spacing:9.895104px;}
.ws23{word-spacing:9.930528px;}
.ws22b{word-spacing:9.931392px;}
.ws148{word-spacing:9.960048px;}
.ws237{word-spacing:9.979344px;}
.ws8a{word-spacing:10.231632px;}
.ws1bf{word-spacing:10.235088px;}
.ws67{word-spacing:10.237536px;}
.ws41{word-spacing:10.249344px;}
.ws1d7{word-spacing:10.272384px;}
.ws157{word-spacing:10.337904px;}
.wsa3{word-spacing:10.379232px;}
.wse7{word-spacing:10.392624px;}
.ws90{word-spacing:10.426464px;}
.ws120{word-spacing:10.473696px;}
.ws207{word-spacing:10.496160px;}
.ws15a{word-spacing:10.568160px;}
.ws14b{word-spacing:10.603584px;}
.wsc4{word-spacing:10.621296px;}
.ws81{word-spacing:10.686240px;}
.wsb7{word-spacing:10.692144px;}
.ws8c{word-spacing:10.810224px;}
.ws204{word-spacing:10.815840px;}
.ws1b0{word-spacing:10.892880px;}
.ws6d{word-spacing:10.910592px;}
.ws18b{word-spacing:10.969632px;}
.ws2b{word-spacing:11.046384px;}
.ws232{word-spacing:11.103552px;}
.ws161{word-spacing:11.111328px;}
.wsad{word-spacing:11.312064px;}
.ws10d{word-spacing:11.341584px;}
.ws2a{word-spacing:11.359296px;}
.ws44{word-spacing:11.388816px;}
.ws1ec{word-spacing:11.407248px;}
.ws71{word-spacing:11.512800px;}
.ws2e{word-spacing:11.524608px;}
.ws1d3{word-spacing:11.540448px;}
.ws1c2{word-spacing:11.556432px;}
.ws165{word-spacing:11.713536px;}
.wsba{word-spacing:11.754864px;}
.ws22e{word-spacing:11.764224px;}
.ws75{word-spacing:11.784384px;}
.wsdb{word-spacing:11.790288px;}
.ws16b{word-spacing:11.825712px;}
.ws115{word-spacing:11.878848px;}
.ws92{word-spacing:11.884752px;}
.wsb2{word-spacing:11.902464px;}
.wsde{word-spacing:11.955600px;}
.ws20e{word-spacing:11.961360px;}
.ws233{word-spacing:11.966688px;}
.ws10{word-spacing:12.038256px;}
.ws17a{word-spacing:12.091392px;}
.wsf9{word-spacing:12.179952px;}
.wsfa{word-spacing:12.203568px;}
.ws138{word-spacing:12.262608px;}
.ws113{word-spacing:12.303936px;}
.ws37{word-spacing:12.410208px;}
.wsa8{word-spacing:12.522384px;}
.ws1e1{word-spacing:12.563424px;}
.ws3e{word-spacing:12.622752px;}
.wsfd{word-spacing:12.687696px;}
.ws121{word-spacing:12.699504px;}
.ws10e{word-spacing:12.705408px;}
.ws23c{word-spacing:12.749904px;}
.ws111{word-spacing:12.799872px;}
.ws211{word-spacing:12.803184px;}
.wsfe{word-spacing:12.982896px;}
.ws1d4{word-spacing:13.042944px;}
.ws3c{word-spacing:13.053744px;}
.ws51{word-spacing:13.083264px;}
.ws21c{word-spacing:13.117536px;}
.ws7d{word-spacing:13.201344px;}
.ws1e7{word-spacing:13.213440px;}
.ws17f{word-spacing:13.224960px;}
.wsd5{word-spacing:13.230864px;}
.ws13e{word-spacing:13.236768px;}
.ws77{word-spacing:13.309344px;}
.ws21b{word-spacing:13.325328px;}
.ws169{word-spacing:13.396176px;}
.ws1c8{word-spacing:13.463856px;}
.wsb5{word-spacing:13.520160px;}
.ws4e{word-spacing:13.543776px;}
.ws47{word-spacing:13.549680px;}
.ws18e{word-spacing:13.732704px;}
.wsf3{word-spacing:13.762224px;}
.wsa6{word-spacing:13.809456px;}
.ws1ce{word-spacing:13.895424px;}
.ws163{word-spacing:13.903920px;}
.ws180{word-spacing:13.921632px;}
.wsdf{word-spacing:13.974768px;}
.ws215{word-spacing:14.007312px;}
.ws112{word-spacing:14.134176px;}
.ws1ff{word-spacing:14.140512px;}
.ws147{word-spacing:14.151888px;}
.wsa5{word-spacing:14.181408px;}
.wsbf{word-spacing:14.258160px;}
.ws55{word-spacing:14.411664px;}
.ws192{word-spacing:14.594688px;}
.ws1a0{word-spacing:14.606496px;}
.ws13f{word-spacing:14.630112px;}
.ws6e{word-spacing:14.842656px;}
.wse0{word-spacing:14.883984px;}
.wsc7{word-spacing:14.889888px;}
.ws1dd{word-spacing:14.939712px;}
.ws36{word-spacing:15.019776px;}
.ws64{word-spacing:15.108336px;}
.ws30{word-spacing:15.185088px;}
.ws116{word-spacing:15.214608px;}
.wsb1{word-spacing:15.238224px;}
.ws14c{word-spacing:15.267744px;}
.ws16e{word-spacing:15.303168px;}
.ws126{word-spacing:15.421248px;}
.ws45{word-spacing:15.450768px;}
.ws219{word-spacing:15.536448px;}
.ws38{word-spacing:15.604272px;}
.ws1c5{word-spacing:15.696288px;}
.ws22f{word-spacing:15.754896px;}
.ws79{word-spacing:15.869952px;}
.wsae{word-spacing:15.887664px;}
.ws34{word-spacing:15.934896px;}
.ws125{word-spacing:15.988032px;}
.ws1ba{word-spacing:16.074576px;}
.ws141{word-spacing:16.129728px;}
.ws1eb{word-spacing:16.170480px;}
.ws1e3{word-spacing:16.175808px;}
.ws1f3{word-spacing:16.335648px;}
.wsa2{word-spacing:16.501680px;}
.ws193{word-spacing:16.513488px;}
.ws1cf{word-spacing:16.564752px;}
.ws137{word-spacing:16.572528px;}
.ws1bb{word-spacing:16.660656px;}
.ws5d{word-spacing:16.909056px;}
.ws103{word-spacing:17.050752px;}
.ws11a{word-spacing:17.054928px;}
.ws132{word-spacing:17.109792px;}
.ws239{word-spacing:17.118864px;}
.ws19d{word-spacing:17.145216px;}
.ws1f{word-spacing:17.233776px;}
.ws22a{word-spacing:17.246736px;}
.ws9d{word-spacing:17.281008px;}
.ws1b7{word-spacing:17.459856px;}
.ws230{word-spacing:17.523792px;}
.ws177{word-spacing:17.652960px;}
.ws189{word-spacing:17.694288px;}
.ws15e{word-spacing:18.066240px;}
.ws1e2{word-spacing:18.067248px;}
.wsc3{word-spacing:18.243360px;}
.ws12f{word-spacing:18.266976px;}
.ws194{word-spacing:18.331920px;}
.wsec{word-spacing:18.591696px;}
.wsff{word-spacing:18.621216px;}
.ws191{word-spacing:18.674352px;}
.ws104{word-spacing:18.762912px;}
.ws4c{word-spacing:18.780624px;}
.ws117{word-spacing:18.792432px;}
.ws8f{word-spacing:18.934128px;}
.ws3b{word-spacing:18.987264px;}
.ws1f5{word-spacing:19.143504px;}
.ws9a{word-spacing:19.164384px;}
.wsa0{word-spacing:19.323792px;}
.wsac{word-spacing:19.388736px;}
.ws12e{word-spacing:19.435968px;}
.ws1d8{word-spacing:19.527120px;}
.wsca{word-spacing:19.618992px;}
.wscb{word-spacing:19.648512px;}
.wsaa{word-spacing:19.742976px;}
.ws1a8{word-spacing:19.861056px;}
.ws13b{word-spacing:19.914192px;}
.ws1c3{word-spacing:19.916064px;}
.ws122{word-spacing:19.967328px;}
.ws170{word-spacing:19.990944px;}
.ws54{word-spacing:20.191680px;}
.ws1e8{word-spacing:20.395584px;}
.ws179{word-spacing:20.404224px;}
.ws154{word-spacing:20.469168px;}
.ws72{word-spacing:20.622672px;}
.ws13c{word-spacing:20.870640px;}
.ws40{word-spacing:21.449232px;}
.ws10f{word-spacing:21.567312px;}
.ws14a{word-spacing:21.915648px;}
.wsce{word-spacing:21.962880px;}
.ws85{word-spacing:22.069152px;}
.ws1e{word-spacing:22.134096px;}
.ws65{word-spacing:22.299408px;}
.ws187{word-spacing:22.523760px;}
.ws2d{word-spacing:22.671360px;}
.ws146{word-spacing:22.694976px;}
.ws129{word-spacing:22.700880px;}
.wsfb{word-spacing:22.712688px;}
.ws236{word-spacing:22.782528px;}
.ws1be{word-spacing:22.910400px;}
.ws21f{word-spacing:23.006304px;}
.ws101{word-spacing:23.255856px;}
.ws158{word-spacing:23.279472px;}
.ws18d{word-spacing:23.474304px;}
.wsf0{word-spacing:23.775408px;}
.ws1ae{word-spacing:23.881680px;}
.wsf6{word-spacing:23.887584px;}
.ws226{word-spacing:23.949360px;}
.ws133{word-spacing:24.088320px;}
.ws23b{word-spacing:25.505136px;}
.ws6a{word-spacing:25.700112px;}
.ws1c4{word-spacing:25.835472px;}
.ws134{word-spacing:25.924464px;}
.ws1fc{word-spacing:26.032608px;}
.ws155{word-spacing:26.054352px;}
.ws17e{word-spacing:26.190144px;}
.ws4f{word-spacing:26.408592px;}
.ws20f{word-spacing:26.996976px;}
.wsbd{word-spacing:27.176112px;}
.ws1ab{word-spacing:27.636624px;}
.ws9e{word-spacing:27.719280px;}
.ws88{word-spacing:28.404144px;}
.wsbe{word-spacing:28.410048px;}
.ws35{word-spacing:28.469088px;}
.ws19b{word-spacing:28.498608px;}
.ws89{word-spacing:29.124432px;}
.ws140{word-spacing:29.212992px;}
.ws70{word-spacing:29.968704px;}
.ws86{word-spacing:30.358368px;}
.ws1df{word-spacing:31.856112px;}
.wscf{word-spacing:31.970160px;}
.ws174{word-spacing:32.483808px;}
.ws1ca{word-spacing:33.140160px;}
.ws102{word-spacing:33.936192px;}
.ws25{word-spacing:34.083792px;}
.ws84{word-spacing:40.613616px;}
.ws208{word-spacing:41.265360px;}
.ws1f9{word-spacing:42.741216px;}
.ws49{word-spacing:43.843104px;}
.ws5f{word-spacing:44.215056px;}
.ws1aa{word-spacing:44.421696px;}
.ws234{word-spacing:45.000288px;}
.ws212{word-spacing:45.431856px;}
.ws52{word-spacing:49.735296px;}
.ws10a{word-spacing:53.265888px;}
.ws1b4{word-spacing:55.672272px;}
.ws216{word-spacing:57.728880px;}
.ws23a{word-spacing:61.442496px;}
.ws21a{word-spacing:61.778160px;}
.ws1bc{word-spacing:63.296640px;}
.ws100{word-spacing:63.946224px;}
.ws228{word-spacing:68.379552px;}
.ws3f{word-spacing:69.767568px;}
.ws235{word-spacing:70.020576px;}
.ws1ef{word-spacing:74.261664px;}
.ws20c{word-spacing:82.642608px;}
.ws1d9{word-spacing:113.992560px;}
.ws1bd{word-spacing:122.357520px;}
.ws1d6{word-spacing:130.312224px;}
.ws205{word-spacing:158.017824px;}
.ws1d1{word-spacing:198.350784px;}
.ws1de{word-spacing:225.017424px;}
.ws21d{word-spacing:306.082944px;}
.ws1fe{word-spacing:324.102240px;}
.ws1e9{word-spacing:348.206112px;}
.ws1f2{word-spacing:360.124848px;}
.ws1f6{word-spacing:819.297216px;}
.ws22d{word-spacing:897.341760px;}
.ws1c7{word-spacing:928.547856px;}
.ws220{word-spacing:966.339360px;}
._c{margin-left:-23.379840px;}
._b{margin-left:-19.772496px;}
._9{margin-left:-17.978400px;}
._8{margin-left:-10.975200px;}
._2{margin-left:-9.307200px;}
._4{margin-left:-7.977600px;}
._0{margin-left:-6.239016px;}
._7{margin-left:-5.126400px;}
._6{margin-left:-3.077784px;}
._3{margin-left:-1.512000px;}
._5{width:1.303200px;}
._a{width:6.647952px;}
._1{width:12.835200px;}
.fc3{color:rgb(64,108,108);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc0{color:rgb(28,28,27);}
.fsa{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs1{font-size:48.972000px;}
.fs6{font-size:53.280000px;}
.fs5{font-size:59.040000px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:42.520500px;}
.y16{bottom:56.746500px;}
.y15{bottom:76.906500px;}
.y72{bottom:77.266500px;}
.y15a{bottom:86.266500px;}
.y10b{bottom:110.028450px;}
.y13c{bottom:110.028810px;}
.y1bc{bottom:112.560258px;}
.y4e{bottom:119.032554px;}
.y10a{bottom:124.068234px;}
.y13b{bottom:124.068594px;}
.y183{bottom:124.447416px;}
.y6c{bottom:125.910714px;}
.ya1{bottom:126.229380px;}
.yd9{bottom:126.270420px;}
.y6{bottom:127.151250px;}
.y1bb{bottom:129.838314px;}
.y4d{bottom:136.312086px;}
.y109{bottom:137.746866px;}
.y13a{bottom:137.748414px;}
.y182{bottom:141.725472px;}
.y6b{bottom:143.188770px;}
.ya0{bottom:143.508912px;}
.yd8{bottom:143.549952px;}
.y1ba{bottom:146.757702px;}
.y139{bottom:151.428234px;}
.y4c{bottom:153.591618px;}
.y108{bottom:157.186650px;}
.y181{bottom:159.003528px;}
.y6a{bottom:160.466826px;}
.y9f{bottom:160.788444px;}
.yd7{bottom:160.829484px;}
.y1b9{bottom:164.037234px;}
.y138{bottom:165.466830px;}
.y228{bottom:166.860996px;}
.y107{bottom:166.906500px;}
.y4b{bottom:170.869674px;}
.y180{bottom:176.281584px;}
.y69{bottom:177.746358px;}
.y9e{bottom:178.066500px;}
.yd6{bottom:178.109016px;}
.y1b8{bottom:181.316766px;}
.y227{bottom:182.342832px;}
.y137{bottom:185.266500px;}
.y4a{bottom:188.149206px;}
.y17f{bottom:193.559640px;}
.y136{bottom:194.266500px;}
.y68{bottom:195.025890px;}
.yd5{bottom:195.388548px;}
.y9d{bottom:195.706500px;}
.y226{bottom:197.823336px;}
.y1b7{bottom:198.596298px;}
.y1ec{bottom:205.034640px;}
.y49{bottom:205.428738px;}
.y17e{bottom:210.839172px;}
.y67{bottom:212.305422px;}
.yd4{bottom:212.306460px;}
.y225{bottom:213.303840px;}
.y1b6{bottom:215.875830px;}
.y9c{bottom:216.586500px;}
.y1eb{bottom:220.515144px;}
.y48{bottom:222.346650px;}
.y17d{bottom:228.118704px;}
.y224{bottom:229.143984px;}
.y106{bottom:229.548594px;}
.y66{bottom:229.583478px;}
.yd3{bottom:229.585992px;}
.y1b5{bottom:233.155362px;}
.y1ea{bottom:235.995648px;}
.y9b{bottom:236.757918px;}
.y47{bottom:240.346650px;}
.y223{bottom:244.625820px;}
.y17c{bottom:245.396760px;}
.y105{bottom:246.826650px;}
.y65{bottom:246.863010px;}
.yd2{bottom:246.864048px;}
.y135{bottom:248.649360px;}
.y1b4{bottom:250.434894px;}
.y1e9{bottom:251.477484px;}
.y9a{bottom:254.037450px;}
.y222{bottom:260.106324px;}
.y46{bottom:260.527956px;}
.y17b{bottom:262.316148px;}
.y64{bottom:263.780922px;}
.yd1{bottom:264.142104px;}
.y104{bottom:264.826650px;}
.y134{bottom:265.928892px;}
.y1e8{bottom:266.957988px;}
.y1b3{bottom:267.714426px;}
.y99{bottom:271.315506px;}
.y221{bottom:275.586828px;}
.y45{bottom:277.806012px;}
.y17a{bottom:279.595680px;}
.y63{bottom:281.058978px;}
.yd0{bottom:281.420160px;}
.y1e7{bottom:282.438492px;}
.y133{bottom:283.208424px;}
.y1b2{bottom:284.993958px;}
.y103{bottom:285.346650px;}
.y98{bottom:288.595038px;}
.y220{bottom:291.068664px;}
.y44{bottom:295.085544px;}
.y179{bottom:296.873736px;}
.y1e6{bottom:297.920328px;}
.y62{bottom:298.337034px;}
.ycf{bottom:298.698216px;}
.y132{bottom:300.487956px;}
.y1b1{bottom:302.273490px;}
.y97{bottom:305.514426px;}
.y102{bottom:305.532858px;}
.y21f{bottom:306.549168px;}
.y43{bottom:312.365076px;}
.y1e5{bottom:313.400832px;}
.y178{bottom:314.153268px;}
.y61{bottom:315.615090px;}
.yce{bottom:315.976272px;}
.y131{bottom:317.767488px;}
.y1b0{bottom:319.553022px;}
.y21e{bottom:322.029672px;}
.y96{bottom:322.792482px;}
.y101{bottom:322.812390px;}
.y1e4{bottom:328.881336px;}
.y42{bottom:329.644608px;}
.y177{bottom:331.431324px;}
.y60{bottom:332.893146px;}
.ycd{bottom:333.255804px;}
.y130{bottom:335.047020px;}
.y1af{bottom:336.470934px;}
.y21d{bottom:337.511508px;}
.y95{bottom:340.070538px;}
.y100{bottom:340.091922px;}
.y1e3{bottom:344.721480px;}
.y41{bottom:346.562520px;}
.y176{bottom:348.709380px;}
.y5f{bottom:350.171202px;}
.ycc{bottom:350.535336px;}
.y12f{bottom:352.326552px;}
.y21c{bottom:353.351652px;}
.y1ae{bottom:353.750466px;}
.y94{bottom:357.348594px;}
.yff{bottom:357.371454px;}
.y1e2{bottom:360.203316px;}
.y40{bottom:363.840576px;}
.y175{bottom:365.988912px;}
.y5e{bottom:367.449258px;}
.ycb{bottom:367.813392px;}
.y21b{bottom:368.832156px;}
.y12e{bottom:369.244464px;}
.y1ad{bottom:371.029998px;}
.y93{bottom:374.626650px;}
.yfe{bottom:374.650986px;}
.y1e1{bottom:375.683820px;}
.y3f{bottom:381.118632px;}
.y174{bottom:383.268444px;}
.y21a{bottom:384.313992px;}
.y5d{bottom:384.727314px;}
.yca{bottom:385.092924px;}
.y12d{bottom:386.523996px;}
.yf{bottom:388.075500px;}
.y1ac{bottom:388.308054px;}
.y1e0{bottom:391.165656px;}
.y92{bottom:391.186146px;}
.yfd{bottom:391.930518px;}
.y3e{bottom:398.398164px;}
.y219{bottom:399.794496px;}
.y173{bottom:400.546500px;}
.y5c{bottom:402.006846px;}
.yc9{bottom:402.372456px;}
.y12c{bottom:403.802052px;}
.y1ab{bottom:405.587586px;}
.y1df{bottom:406.646160px;}
.y91{bottom:406.666650px;}
.yfc{bottom:409.210050px;}
.ye{bottom:409.675500px;}
.y218{bottom:415.275000px;}
.y3d{bottom:415.677696px;}
.y172{bottom:418.186500px;}
.y90{bottom:419.266500px;}
.y5b{bottom:419.286378px;}
.yc8{bottom:419.290368px;}
.y12b{bottom:421.080108px;}
.y1de{bottom:422.126664px;}
.y1aa{bottom:422.867118px;}
.yfb{bottom:426.489582px;}
.y217{bottom:430.756836px;}
.y278{bottom:430.786650px;}
.yd{bottom:431.275500px;}
.y3c{bottom:432.957228px;}
.y5a{bottom:436.564434px;}
.yc7{bottom:436.569900px;}
.y1dd{bottom:437.608500px;}
.y12a{bottom:438.358164px;}
.y171{bottom:438.365400px;}
.y1a9{bottom:440.146650px;}
.yfa{bottom:443.769114px;}
.y277{bottom:446.203830px;}
.y216{bottom:446.237340px;}
.y3b{bottom:450.235284px;}
.y1dc{bottom:453.089004px;}
.y59{bottom:453.483822px;}
.yc6{bottom:453.847956px;}
.y129{bottom:455.636220px;}
.y170{bottom:455.644932px;}
.y1a8{bottom:457.786650px;}
.yf9{bottom:460.687026px;}
.y276{bottom:461.684334px;}
.y215{bottom:461.717844px;}
.y3a{bottom:467.514816px;}
.y1db{bottom:468.929148px;}
.y58{bottom:470.761878px;}
.yc5{bottom:471.126012px;}
.y128{bottom:472.914276px;}
.y16f{bottom:472.924464px;}
.y275{bottom:477.524478px;}
.y214{bottom:477.557988px;}
.yf8{bottom:477.966558px;}
.y1a7{bottom:477.996648px;}
.y1da{bottom:484.409652px;}
.y39{bottom:484.794348px;}
.y57{bottom:488.039934px;}
.yc4{bottom:488.405544px;}
.y127{bottom:490.192332px;}
.y16e{bottom:490.203996px;}
.yc{bottom:491.179500px;}
.y274{bottom:493.004982px;}
.y213{bottom:493.039824px;}
.yf7{bottom:495.246090px;}
.y1a6{bottom:495.276180px;}
.y1d9{bottom:499.891488px;}
.y38{bottom:502.072404px;}
.y56{bottom:505.319466px;}
.yc3{bottom:505.683600px;}
.y126{bottom:507.470388px;}
.y16d{bottom:507.483528px;}
.y273{bottom:508.486818px;}
.y212{bottom:508.520328px;}
.yf6{bottom:512.525622px;}
.y1a5{bottom:512.555712px;}
.yb{bottom:512.779500px;}
.y1d8{bottom:515.371992px;}
.y37{bottom:519.351936px;}
.y55{bottom:522.598998px;}
.yc2{bottom:522.961656px;}
.y272{bottom:523.967322px;}
.y24d{bottom:523.995294px;}
.y211{bottom:524.000832px;}
.y125{bottom:524.748444px;}
.y16c{bottom:524.763060px;}
.yf5{bottom:529.805154px;}
.y1a4{bottom:529.835244px;}
.y1d7{bottom:530.852496px;}
.ya{bottom:534.379500px;}
.y36{bottom:536.271324px;}
.y271{bottom:539.447826px;}
.y24c{bottom:539.477130px;}
.y210{bottom:539.482668px;}
.y54{bottom:539.877054px;}
.yc1{bottom:540.239712px;}
.y124{bottom:542.026500px;}
.y16b{bottom:542.042592px;}
.y1d6{bottom:546.334332px;}
.yf4{bottom:547.084686px;}
.y1a3{bottom:547.114776px;}
.y35{bottom:553.549380px;}
.y270{bottom:554.929662px;}
.y24b{bottom:554.957634px;}
.y20f{bottom:554.963172px;}
.y9{bottom:555.979500px;}
.y53{bottom:557.156586px;}
.yc0{bottom:557.517768px;}
.y123{bottom:559.305780px;}
.y16a{bottom:559.322124px;}
.y1d5{bottom:561.814836px;}
.yf3{bottom:564.362742px;}
.y1a2{bottom:564.394308px;}
.y26f{bottom:570.410166px;}
.y24a{bottom:570.438138px;}
.y20e{bottom:570.443676px;}
.y34{bottom:570.828912px;}
.y52{bottom:574.436118px;}
.ybf{bottom:574.795824px;}
.y169{bottom:576.240036px;}
.y1d4{bottom:577.295340px;}
.y8{bottom:577.579500px;}
.y122{bottom:578.386140px;}
.yf2{bottom:581.642274px;}
.y1a1{bottom:581.673840px;}
.y26e{bottom:585.890670px;}
.y249{bottom:585.919974px;}
.y20d{bottom:585.925512px;}
.y33{bottom:588.108444px;}
.y51{bottom:591.715650px;}
.ybe{bottom:592.073880px;}
.y1d3{bottom:593.135484px;}
.y168{bottom:593.519568px;}
.y14b{bottom:595.315212px;}
.y8f{bottom:595.329900px;}
.y121{bottom:597.466500px;}
.yf1{bottom:598.921806px;}
.y1a0{bottom:598.953372px;}
.y7{bottom:599.179500px;}
.y26d{bottom:601.732146px;}
.y248{bottom:601.760118px;}
.y20c{bottom:601.765656px;}
.y32{bottom:605.386500px;}
.y1d2{bottom:608.617320px;}
.ybd{bottom:608.993268px;}
.y50{bottom:608.995182px;}
.y167{bottom:610.799100px;}
.y14a{bottom:612.594744px;}
.y8e{bottom:612.607956px;}
.yf0{bottom:616.199862px;}
.y120{bottom:616.204536px;}
.y19f{bottom:616.232904px;}
.y26c{bottom:617.212650px;}
.y247{bottom:617.240622px;}
.y20b{bottom:617.246160px;}
.y31{bottom:623.386500px;}
.y1d1{bottom:624.097824px;}
.ybc{bottom:626.271324px;}
.y4f{bottom:626.274714px;}
.y166{bottom:628.078632px;}
.y149{bottom:629.874276px;}
.y8d{bottom:629.886012px;}
.y26b{bottom:632.693154px;}
.y246{bottom:632.722458px;}
.y20a{bottom:632.726664px;}
.yef{bottom:633.479394px;}
.y11f{bottom:633.484068px;}
.y19e{bottom:633.512436px;}
.y1d0{bottom:639.579660px;}
.ybb{bottom:643.549380px;}
.y30{bottom:643.564290px;}
.y165{bottom:645.356688px;}
.y148{bottom:647.153808px;}
.y8c{bottom:647.164068px;}
.y26a{bottom:648.174990px;}
.y245{bottom:648.202962px;}
.y209{bottom:648.208500px;}
.yee{bottom:650.398782px;}
.y11e{bottom:650.403456px;}
.y19d{bottom:650.430348px;}
.y1cf{bottom:655.060164px;}
.y2f{bottom:660.483678px;}
.yba{bottom:660.828912px;}
.y164{bottom:662.636220px;}
.y269{bottom:663.655494px;}
.y244{bottom:663.683466px;}
.y208{bottom:663.689004px;}
.y147{bottom:664.433340px;}
.y8b{bottom:664.442124px;}
.yed{bottom:667.676838px;}
.y11d{bottom:667.681512px;}
.y19c{bottom:667.709880px;}
.y1ce{bottom:670.540668px;}
.y2e{bottom:677.761734px;}
.yb9{bottom:678.108444px;}
.y268{bottom:679.135998px;}
.y243{bottom:679.165302px;}
.y207{bottom:679.170840px;}
.y163{bottom:679.914276px;}
.y146{bottom:681.712872px;}
.y8a{bottom:681.720180px;}
.yec{bottom:684.956370px;}
.y11c{bottom:684.959568px;}
.y19b{bottom:684.987936px;}
.y1cd{bottom:686.022504px;}
.y5{bottom:689.592150px;}
.y267{bottom:694.617834px;}
.y242{bottom:694.645806px;}
.y206{bottom:694.651344px;}
.y2d{bottom:695.041266px;}
.yb8{bottom:695.386500px;}
.y162{bottom:697.192332px;}
.y145{bottom:698.992404px;}
.y89{bottom:698.999712px;}
.y1cc{bottom:701.503008px;}
.yeb{bottom:702.234426px;}
.y11b{bottom:702.237624px;}
.y19a{bottom:702.265992px;}
.y266{bottom:710.098338px;}
.y241{bottom:710.126310px;}
.y205{bottom:710.131848px;}
.y2c{bottom:712.320798px;}
.yb7{bottom:713.386650px;}
.y161{bottom:714.470388px;}
.y144{bottom:716.271936px;}
.y88{bottom:716.279244px;}
.y1cb{bottom:717.343152px;}
.yea{bottom:719.512482px;}
.y11a{bottom:719.515680px;}
.y199{bottom:719.545524px;}
.y4{bottom:719.592750px;}
.y265{bottom:725.578842px;}
.y240{bottom:725.608146px;}
.y204{bottom:725.613684px;}
.y2b{bottom:729.598854px;}
.y160{bottom:731.748444px;}
.y1ca{bottom:732.823656px;}
.y143{bottom:733.191324px;}
.y87{bottom:733.197156px;}
.yb6{bottom:733.906650px;}
.ye9{bottom:736.790538px;}
.y119{bottom:736.793736px;}
.y198{bottom:736.825056px;}
.y264{bottom:741.418986px;}
.y23f{bottom:741.448290px;}
.y203{bottom:741.453828px;}
.y2a{bottom:746.878386px;}
.y1c9{bottom:748.305492px;}
.y15f{bottom:749.026500px;}
.y142{bottom:750.469380px;}
.y86{bottom:750.476688px;}
.ye8{bottom:754.068594px;}
.y118{bottom:754.071792px;}
.yb5{bottom:754.073958px;}
.y197{bottom:754.104588px;}
.y263{bottom:756.900822px;}
.y23e{bottom:756.928794px;}
.y202{bottom:756.934332px;}
.y1c8{bottom:763.785996px;}
.y29{bottom:764.157918px;}
.y15e{bottom:766.305780px;}
.y141{bottom:767.748912px;}
.y85{bottom:767.756220px;}
.y117{bottom:771.349848px;}
.yb4{bottom:771.353490px;}
.ye7{bottom:771.355284px;}
.y196{bottom:771.384120px;}
.y262{bottom:772.381326px;}
.y23d{bottom:772.409298px;}
.y201{bottom:772.414836px;}
.y1c7{bottom:779.266500px;}
.y3{bottom:781.284450px;}
.y28{bottom:781.435974px;}
.y140{bottom:785.028444px;}
.y84{bottom:785.035752px;}
.y15d{bottom:785.386140px;}
.y261{bottom:787.861830px;}
.y23c{bottom:787.891134px;}
.y200{bottom:787.896672px;}
.y116{bottom:788.629380px;}
.yb3{bottom:788.633022px;}
.ye6{bottom:788.634816px;}
.y195{bottom:788.663652px;}
.y1c6{bottom:796.186650px;}
.y27{bottom:798.715506px;}
.y13f{bottom:802.306500px;}
.y83{bottom:802.315284px;}
.y260{bottom:803.343666px;}
.y23b{bottom:803.371638px;}
.y1ff{bottom:803.377176px;}
.y15c{bottom:804.466500px;}
.y115{bottom:805.908912px;}
.yb2{bottom:805.912554px;}
.ye5{bottom:805.914348px;}
.y194{bottom:805.943184px;}
.y2{bottom:811.285050px;}
.y1c5{bottom:815.986500px;}
.y26{bottom:815.995038px;}
.y25f{bottom:818.824170px;}
.y23a{bottom:818.852142px;}
.y1fe{bottom:818.857680px;}
.y82{bottom:819.594816px;}
.y13e{bottom:819.946140px;}
.y114{bottom:823.188444px;}
.yb1{bottom:823.192086px;}
.ye4{bottom:823.193880px;}
.y15b{bottom:823.201188px;}
.y193{bottom:823.221240px;}
.y1c4{bottom:833.272260px;}
.y25{bottom:833.274570px;}
.y25e{bottom:834.304674px;}
.y239{bottom:834.333978px;}
.y1fd{bottom:834.339516px;}
.y81{bottom:836.872872px;}
.y13d{bottom:839.026500px;}
.yb0{bottom:840.471618px;}
.ye3{bottom:840.473412px;}
.y113{bottom:840.480720px;}
.y192{bottom:840.500772px;}
.y1{bottom:841.285650px;}
.y25d{bottom:849.786510px;}
.y238{bottom:849.814482px;}
.y1fc{bottom:849.820020px;}
.y24{bottom:850.192482px;}
.y1c3{bottom:850.551792px;}
.y80{bottom:854.152404px;}
.yaf{bottom:857.389530px;}
.ye2{bottom:857.391324px;}
.y112{bottom:857.398632px;}
.y159{bottom:857.405580px;}
.y191{bottom:857.420160px;}
.y25c{bottom:865.626654px;}
.y237{bottom:865.654626px;}
.y1fb{bottom:865.660164px;}
.y23{bottom:867.470538px;}
.y1c2{bottom:867.829848px;}
.y7f{bottom:871.431936px;}
.yae{bottom:874.669062px;}
.ye1{bottom:874.670856px;}
.y111{bottom:874.678164px;}
.y158{bottom:874.685112px;}
.y190{bottom:874.698216px;}
.y25b{bottom:881.107158px;}
.y236{bottom:881.135130px;}
.y1fa{bottom:881.140668px;}
.y22{bottom:884.748594px;}
.y1c1{bottom:885.109380px;}
.y7e{bottom:888.711468px;}
.yad{bottom:891.948594px;}
.ye0{bottom:891.950388px;}
.y110{bottom:891.957696px;}
.y157{bottom:891.964644px;}
.y18f{bottom:891.977748px;}
.y25a{bottom:896.587662px;}
.y235{bottom:896.616966px;}
.y1f9{bottom:896.622504px;}
.y21{bottom:902.026650px;}
.y1c0{bottom:902.388912px;}
.y7d{bottom:905.989524px;}
.yac{bottom:909.226650px;}
.ydf{bottom:909.228444px;}
.y10f{bottom:909.237228px;}
.y156{bottom:909.244176px;}
.y18e{bottom:909.257280px;}
.y259{bottom:912.069498px;}
.y234{bottom:912.097470px;}
.y1f8{bottom:912.103008px;}
.y20{bottom:918.585498px;}
.y1bf{bottom:919.668444px;}
.y7c{bottom:922.908912px;}
.yde{bottom:926.506500px;}
.yab{bottom:926.515104px;}
.y10e{bottom:926.516760px;}
.y155{bottom:926.523708px;}
.y18d{bottom:926.536812px;}
.y258{bottom:927.550002px;}
.y233{bottom:927.577974px;}
.y1f7{bottom:927.583512px;}
.y1f{bottom:934.066002px;}
.y1be{bottom:936.946500px;}
.y7b{bottom:940.188444px;}
.y257{bottom:943.030506px;}
.y232{bottom:943.059810px;}
.y1f6{bottom:943.065348px;}
.yaa{bottom:943.794636px;}
.ydd{bottom:943.796292px;}
.y154{bottom:943.801764px;}
.y18c{bottom:943.814868px;}
.y1e{bottom:949.906146px;}
.y1bd{bottom:954.586500px;}
.y7a{bottom:957.466500px;}
.y256{bottom:958.512342px;}
.y231{bottom:958.540314px;}
.y1f5{bottom:958.545852px;}
.ya9{bottom:961.072692px;}
.ydc{bottom:961.074348px;}
.y153{bottom:961.081296px;}
.y18b{bottom:961.094400px;}
.y1d{bottom:965.386650px;}
.y255{bottom:973.992846px;}
.y230{bottom:974.020818px;}
.y1f4{bottom:974.026356px;}
.y79{bottom:975.466500px;}
.ya8{bottom:978.352224px;}
.ydb{bottom:978.353880px;}
.y152{bottom:978.360828px;}
.y18a{bottom:978.373932px;}
.y1c{bottom:981.588444px;}
.y254{bottom:989.832990px;}
.y22f{bottom:989.860962px;}
.y1f3{bottom:989.866500px;}
.y78{bottom:995.626500px;}
.ya7{bottom:995.631756px;}
.yda{bottom:995.633412px;}
.y151{bottom:995.640360px;}
.y189{bottom:995.653464px;}
.y1b{bottom:998.866500px;}
.y1f2{bottom:1005.309564px;}
.y253{bottom:1005.313494px;}
.y22e{bottom:1005.342798px;}
.ya6{bottom:1012.909812px;}
.y77{bottom:1012.911468px;}
.y10d{bottom:1012.912944px;}
.y150{bottom:1012.918416px;}
.y188{bottom:1012.932996px;}
.y1a{bottom:1016.866500px;}
.y1f1{bottom:1020.790068px;}
.y252{bottom:1020.795330px;}
.y22d{bottom:1020.823302px;}
.ya5{bottom:1030.189344px;}
.y76{bottom:1030.189524px;}
.y10c{bottom:1030.191000px;}
.y14f{bottom:1030.197948px;}
.y187{bottom:1030.212528px;}
.y1f0{bottom:1036.271904px;}
.y251{bottom:1036.275834px;}
.y22c{bottom:1036.303806px;}
.y19{bottom:1040.626650px;}
.ya4{bottom:1047.110208px;}
.y75{bottom:1047.110388px;}
.y14e{bottom:1047.117336px;}
.y186{bottom:1047.130440px;}
.y1ef{bottom:1051.752408px;}
.y250{bottom:1051.756338px;}
.y22b{bottom:1051.785642px;}
.y18{bottom:1061.506650px;}
.y74{bottom:1064.388444px;}
.ya3{bottom:1064.389740px;}
.y14d{bottom:1064.395392px;}
.y185{bottom:1064.409972px;}
.y1ee{bottom:1067.232912px;}
.y24f{bottom:1067.236842px;}
.y22a{bottom:1067.266146px;}
.y73{bottom:1081.666500px;}
.ya2{bottom:1081.669272px;}
.y14c{bottom:1081.674924px;}
.y184{bottom:1081.689504px;}
.y17{bottom:1082.386650px;}
.y1ed{bottom:1082.714748px;}
.y24e{bottom:1082.717346px;}
.y229{bottom:1082.746650px;}
.y71{bottom:1099.306500px;}
.y14{bottom:1106.866770px;}
.y70{bottom:1123.786590px;}
.y13{bottom:1126.666950px;}
.y6f{bottom:1137.106446px;}
.y6e{bottom:1155.826524px;}
.y12{bottom:1160.866950px;}
.y6d{bottom:1175.986884px;}
.y11{bottom:1197.587100px;}
.h18{height:20.685937px;}
.h1c{height:20.981250px;}
.h11{height:34.595859px;}
.h15{height:34.619062px;}
.h24{height:34.642266px;}
.h10{height:34.711875px;}
.h6{height:35.640000px;}
.h9{height:38.789297px;}
.h26{height:38.841328px;}
.h13{height:38.919375px;}
.h1f{height:40.860703px;}
.ha{height:42.406172px;}
.h7{height:42.982734px;}
.h16{height:43.011562px;}
.h25{height:43.040391px;}
.hf{height:45.448891px;}
.h14{height:45.462954px;}
.h23{height:45.477016px;}
.h22{height:45.813516px;}
.h1d{height:46.385156px;}
.h1b{height:47.176172px;}
.h1e{height:49.245766px;}
.h20{height:50.766328px;}
.h1a{height:51.657964px;}
.hb{height:51.714844px;}
.h5{height:52.148438px;}
.h21{height:52.394929px;}
.he{height:52.417969px;}
.h12{height:52.593750px;}
.h8{height:53.568984px;}
.h17{height:58.530152px;}
.hd{height:58.537927px;}
.h19{height:58.564687px;}
.hc{height:60.804844px;}
.h4{height:62.578125px;}
.h2{height:63.624355px;}
.h3{height:73.007812px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:102.327450px;}
.x5{left:108.447600px;}
.xe{left:116.923116px;}
.x8{left:131.095728px;}
.x3{left:161.575500px;}
.x7{left:204.891000px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.xb{left:310.497000px;}
.x6{left:374.247000px;}
.xc{left:429.058500px;}
.x4{left:433.944000px;}
.x9{left:446.922000px;}
.xa{left:473.489972px;}
.xf{left:481.961712px;}
@media print{
.v5{vertical-align:-21.759467pt;}
.v4{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.761515pt;}
.v1{vertical-align:24.863467pt;}
.v2{vertical-align:26.873088pt;}
.ls3b{letter-spacing:-0.019200pt;}
.ls2f{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.058752pt;}
.ls34{letter-spacing:0.139392pt;}
.ls40{letter-spacing:0.164736pt;}
.ls39{letter-spacing:0.190080pt;}
.ls28{letter-spacing:0.194304pt;}
.ls3c{letter-spacing:0.198528pt;}
.ls3f{letter-spacing:0.202752pt;}
.ls2e{letter-spacing:0.206976pt;}
.ls3{letter-spacing:0.207872pt;}
.ls5a{letter-spacing:0.217856pt;}
.ls53{letter-spacing:0.241536pt;}
.ls51{letter-spacing:0.246272pt;}
.ls26{letter-spacing:0.247893pt;}
.ls27{letter-spacing:0.249216pt;}
.ls59{letter-spacing:0.251008pt;}
.ls52{letter-spacing:0.255744pt;}
.ls47{letter-spacing:0.257152pt;}
.ls50{letter-spacing:0.260480pt;}
.ls55{letter-spacing:0.265216pt;}
.ls7{letter-spacing:0.269952pt;}
.ls56{letter-spacing:0.274688pt;}
.ls6{letter-spacing:0.279424pt;}
.ls4f{letter-spacing:0.284160pt;}
.ls4d{letter-spacing:0.288896pt;}
.ls4c{letter-spacing:0.293632pt;}
.ls4e{letter-spacing:0.298368pt;}
.ls45{letter-spacing:0.302933pt;}
.ls54{letter-spacing:0.303104pt;}
.ls24{letter-spacing:0.307840pt;}
.ls4b{letter-spacing:0.309632pt;}
.ls3a{letter-spacing:0.314880pt;}
.ls31{letter-spacing:0.317312pt;}
.ls2a{letter-spacing:0.320128pt;}
.ls58{letter-spacing:0.322048pt;}
.ls3e{letter-spacing:0.325376pt;}
.ls23{letter-spacing:0.331520pt;}
.ls20{letter-spacing:0.335872pt;}
.ls29{letter-spacing:0.341120pt;}
.ls30{letter-spacing:0.345728pt;}
.ls14{letter-spacing:0.346368pt;}
.ls46{letter-spacing:0.350464pt;}
.ls17{letter-spacing:0.351616pt;}
.ls2d{letter-spacing:0.355840pt;}
.ls13{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.ls1b{letter-spacing:0.362112pt;}
.ls10{letter-spacing:0.367360pt;}
.ls9{letter-spacing:0.372608pt;}
.ls4a{letter-spacing:0.374400pt;}
.lsb{letter-spacing:0.377856pt;}
.lsc{letter-spacing:0.383104pt;}
.ls12{letter-spacing:0.388352pt;}
.lsd{letter-spacing:0.393600pt;}
.ls11{letter-spacing:0.398848pt;}
.ls1a{letter-spacing:0.404096pt;}
.lsf{letter-spacing:0.409344pt;}
.lse{letter-spacing:0.414592pt;}
.ls1e{letter-spacing:0.419840pt;}
.ls16{letter-spacing:0.425088pt;}
.ls3d{letter-spacing:0.426240pt;}
.ls19{letter-spacing:0.430336pt;}
.ls21{letter-spacing:0.435584pt;}
.ls18{letter-spacing:0.440832pt;}
.ls2b{letter-spacing:0.446080pt;}
.ls2c{letter-spacing:0.451328pt;}
.ls44{letter-spacing:0.455040pt;}
.lsa{letter-spacing:0.456576pt;}
.ls22{letter-spacing:0.467072pt;}
.ls1c{letter-spacing:0.472320pt;}
.ls15{letter-spacing:0.477568pt;}
.ls1d{letter-spacing:0.482816pt;}
.ls1f{letter-spacing:0.488064pt;}
.ls36{letter-spacing:0.495360pt;}
.ls37{letter-spacing:0.506880pt;}
.ls41{letter-spacing:0.524160pt;}
.ls8{letter-spacing:0.524800pt;}
.ls48{letter-spacing:0.529920pt;}
.ls33{letter-spacing:0.569600pt;}
.ls49{letter-spacing:0.581760pt;}
.ls4{letter-spacing:0.582528pt;}
.ls43{letter-spacing:0.587520pt;}
.ls57{letter-spacing:1.136640pt;}
.ls32{letter-spacing:6.037973pt;}
.ls38{letter-spacing:6.347733pt;}
.ls42{letter-spacing:10.984064pt;}
.ls35{letter-spacing:11.946667pt;}
.ws6{word-spacing:-15.114240pt;}
.ws7{word-spacing:-15.046016pt;}
.ws1a5{word-spacing:-13.469184pt;}
.ws1a6{word-spacing:-13.436032pt;}
.ws201{word-spacing:-13.426560pt;}
.ws2{word-spacing:-11.409067pt;}
.ws5{word-spacing:-9.666432pt;}
.wsb9{word-spacing:-9.607680pt;}
.ws4{word-spacing:-8.896000pt;}
.ws58{word-spacing:-7.472640pt;}
.ws3{word-spacing:-1.158400pt;}
.wsb{word-spacing:-0.356864pt;}
.ws107{word-spacing:-0.224640pt;}
.ws12c{word-spacing:-0.218880pt;}
.wsa9{word-spacing:-0.215168pt;}
.ws15d{word-spacing:-0.207360pt;}
.ws26{word-spacing:-0.188928pt;}
.ws14e{word-spacing:-0.184704pt;}
.ws130{word-spacing:-0.178432pt;}
.ws60{word-spacing:-0.173184pt;}
.ws106{word-spacing:-0.172800pt;}
.ws78{word-spacing:-0.170496pt;}
.wsc1{word-spacing:-0.162688pt;}
.ws8e{word-spacing:-0.157440pt;}
.ws1ac{word-spacing:-0.152192pt;}
.ws143{word-spacing:-0.146944pt;}
.ws1b8{word-spacing:-0.146816pt;}
.ws14d{word-spacing:-0.142080pt;}
.wse{word-spacing:-0.141696pt;}
.ws217{word-spacing:-0.137344pt;}
.ws31{word-spacing:-0.136448pt;}
.ws8{word-spacing:-0.132608pt;}
.ws96{word-spacing:-0.131200pt;}
.ws213{word-spacing:-0.127872pt;}
.ws5a{word-spacing:-0.126720pt;}
.ws1c{word-spacing:-0.125952pt;}
.ws136{word-spacing:-0.120704pt;}
.ws76{word-spacing:-0.115456pt;}
.wsc{word-spacing:-0.113664pt;}
.wsd7{word-spacing:-0.110208pt;}
.ws9{word-spacing:-0.108928pt;}
.ws80{word-spacing:-0.104960pt;}
.wsd{word-spacing:-0.104192pt;}
.wscd{word-spacing:-0.099712pt;}
.ws238{word-spacing:-0.099456pt;}
.ws108{word-spacing:-0.097920pt;}
.ws1e6{word-spacing:-0.094720pt;}
.ws1cc{word-spacing:-0.089984pt;}
.ws105{word-spacing:-0.089216pt;}
.wse2{word-spacing:-0.083968pt;}
.wsa{word-spacing:-0.081664pt;}
.wsdd{word-spacing:-0.078720pt;}
.ws59{word-spacing:-0.076032pt;}
.ws231{word-spacing:-0.075776pt;}
.ws119{word-spacing:-0.073472pt;}
.ws1c0{word-spacing:-0.071040pt;}
.ws0{word-spacing:-0.064000pt;}
.wse9{word-spacing:-0.063360pt;}
.ws1ea{word-spacing:-0.052096pt;}
.ws5b{word-spacing:-0.050688pt;}
.ws1b2{word-spacing:-0.047232pt;}
.ws1ed{word-spacing:-0.037888pt;}
.ws11f{word-spacing:-0.029568pt;}
.ws14f{word-spacing:-0.010496pt;}
.ws61{word-spacing:-0.006400pt;}
.ws1{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.006400pt;}
.ws32{word-spacing:0.012800pt;}
.ws1e5{word-spacing:0.028416pt;}
.ws1b9{word-spacing:0.137344pt;}
.ws162{word-spacing:0.141696pt;}
.ws3a{word-spacing:0.157440pt;}
.ws16a{word-spacing:0.167936pt;}
.ws15c{word-spacing:0.215168pt;}
.ws97{word-spacing:0.262400pt;}
.ws7b{word-spacing:0.283392pt;}
.ws22c{word-spacing:0.322048pt;}
.wsf4{word-spacing:0.325376pt;}
.ws1b{word-spacing:0.351616pt;}
.ws200{word-spacing:0.383616pt;}
.wsd1{word-spacing:0.388352pt;}
.ws8b{word-spacing:0.393600pt;}
.wsd9{word-spacing:0.404096pt;}
.wsd0{word-spacing:0.414592pt;}
.wsd8{word-spacing:0.425088pt;}
.ws142{word-spacing:0.524800pt;}
.ws11c{word-spacing:0.692736pt;}
.ws95{word-spacing:0.729472pt;}
.wsb6{word-spacing:0.760960pt;}
.wsb0{word-spacing:0.766208pt;}
.ws1ee{word-spacing:0.776704pt;}
.ws20d{word-spacing:0.861952pt;}
.ws19f{word-spacing:0.871168pt;}
.ws18f{word-spacing:0.881664pt;}
.ws66{word-spacing:0.949888pt;}
.ws184{word-spacing:0.991872pt;}
.wsed{word-spacing:1.007616pt;}
.ws7f{word-spacing:1.117824pt;}
.ws74{word-spacing:1.128320pt;}
.ws16f{word-spacing:1.138816pt;}
.ws1a7{word-spacing:1.149312pt;}
.ws1a{word-spacing:1.154560pt;}
.ws110{word-spacing:1.165056pt;}
.ws19{word-spacing:1.196544pt;}
.ws185{word-spacing:1.322496pt;}
.ws23d{word-spacing:1.330816pt;}
.ws186{word-spacing:1.332992pt;}
.ws56{word-spacing:1.338240pt;}
.ws6c{word-spacing:1.343488pt;}
.ws152{word-spacing:1.348736pt;}
.ws12a{word-spacing:1.385472pt;}
.ws1dc{word-spacing:1.510784pt;}
.ws21{word-spacing:1.574400pt;}
.ws6b{word-spacing:1.600640pt;}
.ws188{word-spacing:1.632128pt;}
.ws12d{word-spacing:1.663616pt;}
.ws1f4{word-spacing:1.742848pt;}
.ws8d{word-spacing:1.758080pt;}
.ws1fd{word-spacing:1.780736pt;}
.ws172{word-spacing:1.789568pt;}
.ws1a2{word-spacing:1.884032pt;}
.ws123{word-spacing:1.910272pt;}
.ws17{word-spacing:1.983744pt;}
.ws16{word-spacing:2.030976pt;}
.wsfc{word-spacing:2.072960pt;}
.ws114{word-spacing:2.130688pt;}
.ws87{word-spacing:2.177920pt;}
.ws1fb{word-spacing:2.221184pt;}
.ws11d{word-spacing:2.221824pt;}
.ws15{word-spacing:2.277632pt;}
.wsd2{word-spacing:2.398336pt;}
.ws168{word-spacing:2.424576pt;}
.ws171{word-spacing:2.461312pt;}
.ws20b{word-spacing:2.500608pt;}
.ws16d{word-spacing:2.513792pt;}
.wsef{word-spacing:2.550528pt;}
.ws223{word-spacing:2.566912pt;}
.ws222{word-spacing:2.614272pt;}
.ws1d5{word-spacing:2.704256pt;}
.ws57{word-spacing:2.713216pt;}
.ws98{word-spacing:2.723712pt;}
.ws5e{word-spacing:2.770944pt;}
.ws1d0{word-spacing:2.784768pt;}
.wsab{word-spacing:2.791936pt;}
.wsf{word-spacing:2.823424pt;}
.ws173{word-spacing:2.828672pt;}
.ws144{word-spacing:2.833920pt;}
.ws198{word-spacing:2.865408pt;}
.wsd3{word-spacing:2.875904pt;}
.ws7c{word-spacing:2.896896pt;}
.ws18{word-spacing:2.954624pt;}
.ws11e{word-spacing:2.982144pt;}
.ws225{word-spacing:3.068928pt;}
.ws12b{word-spacing:3.081600pt;}
.ws17d{word-spacing:3.159296pt;}
.ws1b6{word-spacing:3.173120pt;}
.wsa4{word-spacing:3.196032pt;}
.ws1cd{word-spacing:3.206272pt;}
.ws6f{word-spacing:3.217024pt;}
.ws127{word-spacing:3.238016pt;}
.ws176{word-spacing:3.253760pt;}
.ws166{word-spacing:3.259008pt;}
.ws145{word-spacing:3.327232pt;}
.wsc6{word-spacing:3.337728pt;}
.ws13{word-spacing:3.342976pt;}
.ws1f0{word-spacing:3.343616pt;}
.ws14{word-spacing:3.358720pt;}
.wsc9{word-spacing:3.379712pt;}
.ws149{word-spacing:3.484672pt;}
.ws1c6{word-spacing:3.495168pt;}
.ws218{word-spacing:3.542528pt;}
.wsdc{word-spacing:3.563392pt;}
.ws24{word-spacing:3.573888pt;}
.ws181{word-spacing:3.668352pt;}
.ws73{word-spacing:3.684096pt;}
.ws1a4{word-spacing:3.736576pt;}
.ws15b{word-spacing:3.768064pt;}
.wsbb{word-spacing:3.773312pt;}
.wscc{word-spacing:3.841536pt;}
.ws43{word-spacing:3.915008pt;}
.ws2c{word-spacing:3.936000pt;}
.wsf5{word-spacing:3.946496pt;}
.wsf1{word-spacing:3.951744pt;}
.ws1e4{word-spacing:3.959296pt;}
.ws39{word-spacing:3.977984pt;}
.wsea{word-spacing:3.993728pt;}
.ws82{word-spacing:3.998976pt;}
.wseb{word-spacing:4.019968pt;}
.ws1a1{word-spacing:4.025216pt;}
.wsc8{word-spacing:4.046208pt;}
.ws124{word-spacing:4.051456pt;}
.ws13d{word-spacing:4.061952pt;}
.ws1cb{word-spacing:4.082432pt;}
.wse3{word-spacing:4.082944pt;}
.ws153{word-spacing:4.093440pt;}
.ws183{word-spacing:4.151168pt;}
.ws109{word-spacing:4.156416pt;}
.ws1b1{word-spacing:4.172160pt;}
.ws1a9{word-spacing:4.271872pt;}
.ws19c{word-spacing:4.324352pt;}
.ws164{word-spacing:4.334848pt;}
.ws221{word-spacing:4.361856pt;}
.ws1a3{word-spacing:4.376832pt;}
.ws196{word-spacing:4.382080pt;}
.wsaf{word-spacing:4.492288pt;}
.ws159{word-spacing:4.497536pt;}
.ws19e{word-spacing:4.508032pt;}
.ws20a{word-spacing:4.537088pt;}
.ws131{word-spacing:4.539520pt;}
.ws29{word-spacing:4.571008pt;}
.ws1af{word-spacing:4.649728pt;}
.ws48{word-spacing:4.660224pt;}
.wsb4{word-spacing:4.702208pt;}
.ws9f{word-spacing:4.759936pt;}
.wsb8{word-spacing:4.817664pt;}
.ws227{word-spacing:4.830720pt;}
.wsc2{word-spacing:4.906880pt;}
.wsd6{word-spacing:4.969856pt;}
.ws22{word-spacing:4.980352pt;}
.ws91{word-spacing:5.064320pt;}
.ws1fa{word-spacing:5.081728pt;}
.ws1b3{word-spacing:5.100672pt;}
.ws12{word-spacing:5.101056pt;}
.ws1f7{word-spacing:5.114880pt;}
.ws135{word-spacing:5.232256pt;}
.ws197{word-spacing:5.263744pt;}
.ws62{word-spacing:5.284736pt;}
.ws1c9{word-spacing:5.361152pt;}
.ws151{word-spacing:5.373952pt;}
.ws7e{word-spacing:5.384448pt;}
.ws190{word-spacing:5.394944pt;}
.wsc5{word-spacing:5.457920pt;}
.ws17b{word-spacing:5.484160pt;}
.ws18a{word-spacing:5.499904pt;}
.ws1b5{word-spacing:5.725824pt;}
.ws206{word-spacing:5.740032pt;}
.ws128{word-spacing:5.799040pt;}
.ws195{word-spacing:5.814784pt;}
.wsf7{word-spacing:5.830528pt;}
.ws28{word-spacing:5.851520pt;}
.ws1da{word-spacing:6.090496pt;}
.ws50{word-spacing:6.103424pt;}
.wsb3{word-spacing:6.150656pt;}
.ws203{word-spacing:6.156800pt;}
.ws7a{word-spacing:6.218880pt;}
.wse5{word-spacing:6.229376pt;}
.ws167{word-spacing:6.250368pt;}
.wsc0{word-spacing:6.281856pt;}
.ws9c{word-spacing:6.323840pt;}
.ws210{word-spacing:6.336768pt;}
.ws1c1{word-spacing:6.436224pt;}
.wsd4{word-spacing:6.512768pt;}
.ws4a{word-spacing:6.560000pt;}
.ws11{word-spacing:6.570496pt;}
.ws99{word-spacing:6.617728pt;}
.ws156{word-spacing:6.643968pt;}
.ws1f1{word-spacing:6.668288pt;}
.ws11b{word-spacing:6.690816pt;}
.ws53{word-spacing:6.696448pt;}
.ws214{word-spacing:6.862464pt;}
.ws10b{word-spacing:6.885376pt;}
.ws182{word-spacing:6.895872pt;}
.wsbc{word-spacing:6.906368pt;}
.ws68{word-spacing:7.016576pt;}
.ws33{word-spacing:7.074304pt;}
.wse1{word-spacing:7.111040pt;}
.wse6{word-spacing:7.117440pt;}
.wsa1{word-spacing:7.137280pt;}
.ws4d{word-spacing:7.158272pt;}
.wse4{word-spacing:7.174016pt;}
.ws4b{word-spacing:7.189760pt;}
.ws19a{word-spacing:7.289472pt;}
.ws15f{word-spacing:7.336704pt;}
.ws93{word-spacing:7.341952pt;}
.ws1f8{word-spacing:7.497088pt;}
.ws1ad{word-spacing:7.541376pt;}
.ws118{word-spacing:7.551872pt;}
.ws175{word-spacing:7.567616pt;}
.wse8{word-spacing:7.615872pt;}
.ws13a{word-spacing:7.635840pt;}
.ws139{word-spacing:7.662080pt;}
.ws69{word-spacing:7.693568pt;}
.ws3d{word-spacing:7.698816pt;}
.ws160{word-spacing:7.751296pt;}
.wsee{word-spacing:7.830016pt;}
.ws20{word-spacing:7.835264pt;}
.wsa7{word-spacing:7.840512pt;}
.wsf2{word-spacing:7.861504pt;}
.ws63{word-spacing:7.866752pt;}
.ws27{word-spacing:7.940224pt;}
.ws2f{word-spacing:7.976960pt;}
.ws229{word-spacing:7.980160pt;}
.ws42{word-spacing:8.029440pt;}
.ws18c{word-spacing:8.071424pt;}
.ws1d2{word-spacing:8.089088pt;}
.ws46{word-spacing:8.118656pt;}
.ws16c{word-spacing:8.160640pt;}
.ws209{word-spacing:8.240640pt;}
.ws83{word-spacing:8.244608pt;}
.ws202{word-spacing:8.254848pt;}
.ws178{word-spacing:8.260352pt;}
.ws10c{word-spacing:8.265600pt;}
.ws1db{word-spacing:8.306944pt;}
.ws199{word-spacing:8.318080pt;}
.ws94{word-spacing:8.333824pt;}
.ws150{word-spacing:8.339072pt;}
.ws17c{word-spacing:8.459776pt;}
.ws21e{word-spacing:8.501120pt;}
.ws1e0{word-spacing:8.539008pt;}
.ws224{word-spacing:8.591104pt;}
.ws5c{word-spacing:8.664448pt;}
.ws9b{word-spacing:8.732672pt;}
.wsda{word-spacing:8.743168pt;}
.wsf8{word-spacing:8.795648pt;}
.ws23{word-spacing:8.827136pt;}
.ws22b{word-spacing:8.827904pt;}
.ws148{word-spacing:8.853376pt;}
.ws237{word-spacing:8.870528pt;}
.ws8a{word-spacing:9.094784pt;}
.ws1bf{word-spacing:9.097856pt;}
.ws67{word-spacing:9.100032pt;}
.ws41{word-spacing:9.110528pt;}
.ws1d7{word-spacing:9.131008pt;}
.ws157{word-spacing:9.189248pt;}
.wsa3{word-spacing:9.225984pt;}
.wse7{word-spacing:9.237888pt;}
.ws90{word-spacing:9.267968pt;}
.ws120{word-spacing:9.309952pt;}
.ws207{word-spacing:9.329920pt;}
.ws15a{word-spacing:9.393920pt;}
.ws14b{word-spacing:9.425408pt;}
.wsc4{word-spacing:9.441152pt;}
.ws81{word-spacing:9.498880pt;}
.wsb7{word-spacing:9.504128pt;}
.ws8c{word-spacing:9.609088pt;}
.ws204{word-spacing:9.614080pt;}
.ws1b0{word-spacing:9.682560pt;}
.ws6d{word-spacing:9.698304pt;}
.ws18b{word-spacing:9.750784pt;}
.ws2b{word-spacing:9.819008pt;}
.ws232{word-spacing:9.869824pt;}
.ws161{word-spacing:9.876736pt;}
.wsad{word-spacing:10.055168pt;}
.ws10d{word-spacing:10.081408pt;}
.ws2a{word-spacing:10.097152pt;}
.ws44{word-spacing:10.123392pt;}
.ws1ec{word-spacing:10.139776pt;}
.ws71{word-spacing:10.233600pt;}
.ws2e{word-spacing:10.244096pt;}
.ws1d3{word-spacing:10.258176pt;}
.ws1c2{word-spacing:10.272384pt;}
.ws165{word-spacing:10.412032pt;}
.wsba{word-spacing:10.448768pt;}
.ws22e{word-spacing:10.457088pt;}
.ws75{word-spacing:10.475008pt;}
.wsdb{word-spacing:10.480256pt;}
.ws16b{word-spacing:10.511744pt;}
.ws115{word-spacing:10.558976pt;}
.ws92{word-spacing:10.564224pt;}
.wsb2{word-spacing:10.579968pt;}
.wsde{word-spacing:10.627200pt;}
.ws20e{word-spacing:10.632320pt;}
.ws233{word-spacing:10.637056pt;}
.ws10{word-spacing:10.700672pt;}
.ws17a{word-spacing:10.747904pt;}
.wsf9{word-spacing:10.826624pt;}
.wsfa{word-spacing:10.847616pt;}
.ws138{word-spacing:10.900096pt;}
.ws113{word-spacing:10.936832pt;}
.ws37{word-spacing:11.031296pt;}
.wsa8{word-spacing:11.131008pt;}
.ws1e1{word-spacing:11.167488pt;}
.ws3e{word-spacing:11.220224pt;}
.wsfd{word-spacing:11.277952pt;}
.ws121{word-spacing:11.288448pt;}
.ws10e{word-spacing:11.293696pt;}
.ws23c{word-spacing:11.333248pt;}
.ws111{word-spacing:11.377664pt;}
.ws211{word-spacing:11.380608pt;}
.wsfe{word-spacing:11.540352pt;}
.ws1d4{word-spacing:11.593728pt;}
.ws3c{word-spacing:11.603328pt;}
.ws51{word-spacing:11.629568pt;}
.ws21c{word-spacing:11.660032pt;}
.ws7d{word-spacing:11.734528pt;}
.ws1e7{word-spacing:11.745280pt;}
.ws17f{word-spacing:11.755520pt;}
.wsd5{word-spacing:11.760768pt;}
.ws13e{word-spacing:11.766016pt;}
.ws77{word-spacing:11.830528pt;}
.ws21b{word-spacing:11.844736pt;}
.ws169{word-spacing:11.907712pt;}
.ws1c8{word-spacing:11.967872pt;}
.wsb5{word-spacing:12.017920pt;}
.ws4e{word-spacing:12.038912pt;}
.ws47{word-spacing:12.044160pt;}
.ws18e{word-spacing:12.206848pt;}
.wsf3{word-spacing:12.233088pt;}
.wsa6{word-spacing:12.275072pt;}
.ws1ce{word-spacing:12.351488pt;}
.ws163{word-spacing:12.359040pt;}
.ws180{word-spacing:12.374784pt;}
.wsdf{word-spacing:12.422016pt;}
.ws215{word-spacing:12.450944pt;}
.ws112{word-spacing:12.563712pt;}
.ws1ff{word-spacing:12.569344pt;}
.ws147{word-spacing:12.579456pt;}
.wsa5{word-spacing:12.605696pt;}
.wsbf{word-spacing:12.673920pt;}
.ws55{word-spacing:12.810368pt;}
.ws192{word-spacing:12.973056pt;}
.ws1a0{word-spacing:12.983552pt;}
.ws13f{word-spacing:13.004544pt;}
.ws6e{word-spacing:13.193472pt;}
.wse0{word-spacing:13.230208pt;}
.wsc7{word-spacing:13.235456pt;}
.ws1dd{word-spacing:13.279744pt;}
.ws36{word-spacing:13.350912pt;}
.ws64{word-spacing:13.429632pt;}
.ws30{word-spacing:13.497856pt;}
.ws116{word-spacing:13.524096pt;}
.wsb1{word-spacing:13.545088pt;}
.ws14c{word-spacing:13.571328pt;}
.ws16e{word-spacing:13.602816pt;}
.ws126{word-spacing:13.707776pt;}
.ws45{word-spacing:13.734016pt;}
.ws219{word-spacing:13.810176pt;}
.ws38{word-spacing:13.870464pt;}
.ws1c5{word-spacing:13.952256pt;}
.ws22f{word-spacing:14.004352pt;}
.ws79{word-spacing:14.106624pt;}
.wsae{word-spacing:14.122368pt;}
.ws34{word-spacing:14.164352pt;}
.ws125{word-spacing:14.211584pt;}
.ws1ba{word-spacing:14.288512pt;}
.ws141{word-spacing:14.337536pt;}
.ws1eb{word-spacing:14.373760pt;}
.ws1e3{word-spacing:14.378496pt;}
.ws1f3{word-spacing:14.520576pt;}
.wsa2{word-spacing:14.668160pt;}
.ws193{word-spacing:14.678656pt;}
.ws1cf{word-spacing:14.724224pt;}
.ws137{word-spacing:14.731136pt;}
.ws1bb{word-spacing:14.809472pt;}
.ws5d{word-spacing:15.030272pt;}
.ws103{word-spacing:15.156224pt;}
.ws11a{word-spacing:15.159936pt;}
.ws132{word-spacing:15.208704pt;}
.ws239{word-spacing:15.216768pt;}
.ws19d{word-spacing:15.240192pt;}
.ws1f{word-spacing:15.318912pt;}
.ws22a{word-spacing:15.330432pt;}
.ws9d{word-spacing:15.360896pt;}
.ws1b7{word-spacing:15.519872pt;}
.ws230{word-spacing:15.576704pt;}
.ws177{word-spacing:15.691520pt;}
.ws189{word-spacing:15.728256pt;}
.ws15e{word-spacing:16.058880pt;}
.ws1e2{word-spacing:16.059776pt;}
.wsc3{word-spacing:16.216320pt;}
.ws12f{word-spacing:16.237312pt;}
.ws194{word-spacing:16.295040pt;}
.wsec{word-spacing:16.525952pt;}
.wsff{word-spacing:16.552192pt;}
.ws191{word-spacing:16.599424pt;}
.ws104{word-spacing:16.678144pt;}
.ws4c{word-spacing:16.693888pt;}
.ws117{word-spacing:16.704384pt;}
.ws8f{word-spacing:16.830336pt;}
.ws3b{word-spacing:16.877568pt;}
.ws1f5{word-spacing:17.016448pt;}
.ws9a{word-spacing:17.035008pt;}
.wsa0{word-spacing:17.176704pt;}
.wsac{word-spacing:17.234432pt;}
.ws12e{word-spacing:17.276416pt;}
.ws1d8{word-spacing:17.357440pt;}
.wsca{word-spacing:17.439104pt;}
.wscb{word-spacing:17.465344pt;}
.wsaa{word-spacing:17.549312pt;}
.ws1a8{word-spacing:17.654272pt;}
.ws13b{word-spacing:17.701504pt;}
.ws1c3{word-spacing:17.703168pt;}
.ws122{word-spacing:17.748736pt;}
.ws170{word-spacing:17.769728pt;}
.ws54{word-spacing:17.948160pt;}
.ws1e8{word-spacing:18.129408pt;}
.ws179{word-spacing:18.137088pt;}
.ws154{word-spacing:18.194816pt;}
.ws72{word-spacing:18.331264pt;}
.ws13c{word-spacing:18.551680pt;}
.ws40{word-spacing:19.065984pt;}
.ws10f{word-spacing:19.170944pt;}
.ws14a{word-spacing:19.480576pt;}
.wsce{word-spacing:19.522560pt;}
.ws85{word-spacing:19.617024pt;}
.ws1e{word-spacing:19.674752pt;}
.ws65{word-spacing:19.821696pt;}
.ws187{word-spacing:20.021120pt;}
.ws2d{word-spacing:20.152320pt;}
.ws146{word-spacing:20.173312pt;}
.ws129{word-spacing:20.178560pt;}
.wsfb{word-spacing:20.189056pt;}
.ws236{word-spacing:20.251136pt;}
.ws1be{word-spacing:20.364800pt;}
.ws21f{word-spacing:20.450048pt;}
.ws101{word-spacing:20.671872pt;}
.ws158{word-spacing:20.692864pt;}
.ws18d{word-spacing:20.866048pt;}
.wsf0{word-spacing:21.133696pt;}
.ws1ae{word-spacing:21.228160pt;}
.wsf6{word-spacing:21.233408pt;}
.ws226{word-spacing:21.288320pt;}
.ws133{word-spacing:21.411840pt;}
.ws23b{word-spacing:22.671232pt;}
.ws6a{word-spacing:22.844544pt;}
.ws1c4{word-spacing:22.964864pt;}
.ws134{word-spacing:23.043968pt;}
.ws1fc{word-spacing:23.140096pt;}
.ws155{word-spacing:23.159424pt;}
.ws17e{word-spacing:23.280128pt;}
.ws4f{word-spacing:23.474304pt;}
.ws20f{word-spacing:23.997312pt;}
.wsbd{word-spacing:24.156544pt;}
.ws1ab{word-spacing:24.565888pt;}
.ws9e{word-spacing:24.639360pt;}
.ws88{word-spacing:25.248128pt;}
.wsbe{word-spacing:25.253376pt;}
.ws35{word-spacing:25.305856pt;}
.ws19b{word-spacing:25.332096pt;}
.ws89{word-spacing:25.888384pt;}
.ws140{word-spacing:25.967104pt;}
.ws70{word-spacing:26.638848pt;}
.ws86{word-spacing:26.985216pt;}
.ws1df{word-spacing:28.316544pt;}
.wscf{word-spacing:28.417920pt;}
.ws174{word-spacing:28.874496pt;}
.ws1ca{word-spacing:29.457920pt;}
.ws102{word-spacing:30.165504pt;}
.ws25{word-spacing:30.296704pt;}
.ws84{word-spacing:36.100992pt;}
.ws208{word-spacing:36.680320pt;}
.ws1f9{word-spacing:37.992192pt;}
.ws49{word-spacing:38.971648pt;}
.ws5f{word-spacing:39.302272pt;}
.ws1aa{word-spacing:39.485952pt;}
.ws234{word-spacing:40.000256pt;}
.ws212{word-spacing:40.383872pt;}
.ws52{word-spacing:44.209152pt;}
.ws10a{word-spacing:47.347456pt;}
.ws1b4{word-spacing:49.486464pt;}
.ws216{word-spacing:51.314560pt;}
.ws23a{word-spacing:54.615552pt;}
.ws21a{word-spacing:54.913920pt;}
.ws1bc{word-spacing:56.263680pt;}
.ws100{word-spacing:56.841088pt;}
.ws228{word-spacing:60.781824pt;}
.ws3f{word-spacing:62.015616pt;}
.ws235{word-spacing:62.240512pt;}
.ws1ef{word-spacing:66.010368pt;}
.ws20c{word-spacing:73.460096pt;}
.ws1d9{word-spacing:101.326720pt;}
.ws1bd{word-spacing:108.762240pt;}
.ws1d6{word-spacing:115.833088pt;}
.ws205{word-spacing:140.460288pt;}
.ws1d1{word-spacing:176.311808pt;}
.ws1de{word-spacing:200.015488pt;}
.ws21d{word-spacing:272.073728pt;}
.ws1fe{word-spacing:288.090880pt;}
.ws1e9{word-spacing:309.516544pt;}
.ws1f2{word-spacing:320.110976pt;}
.ws1f6{word-spacing:728.264192pt;}
.ws22d{word-spacing:797.637120pt;}
.ws1c7{word-spacing:825.375872pt;}
.ws220{word-spacing:858.968320pt;}
._c{margin-left:-20.782080pt;}
._b{margin-left:-17.575552pt;}
._9{margin-left:-15.980800pt;}
._8{margin-left:-9.755733pt;}
._2{margin-left:-8.273067pt;}
._4{margin-left:-7.091200pt;}
._0{margin-left:-5.545792pt;}
._7{margin-left:-4.556800pt;}
._6{margin-left:-2.735808pt;}
._3{margin-left:-1.344000pt;}
._5{width:1.158400pt;}
._a{width:5.909291pt;}
._1{width:11.409067pt;}
.fsa{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs1{font-size:43.530667pt;}
.fs6{font-size:47.360000pt;}
.fs5{font-size:52.480000pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:37.796000pt;}
.y16{bottom:50.441333pt;}
.y15{bottom:68.361333pt;}
.y72{bottom:68.681333pt;}
.y15a{bottom:76.681333pt;}
.y10b{bottom:97.803067pt;}
.y13c{bottom:97.803387pt;}
.y1bc{bottom:100.053563pt;}
.y4e{bottom:105.806715pt;}
.y10a{bottom:110.282875pt;}
.y13b{bottom:110.283195pt;}
.y183{bottom:110.619925pt;}
.y6c{bottom:111.920635pt;}
.ya1{bottom:112.203893pt;}
.yd9{bottom:112.240373pt;}
.y6{bottom:113.023333pt;}
.y1bb{bottom:115.411835pt;}
.y4d{bottom:121.166299pt;}
.y109{bottom:122.441659pt;}
.y13a{bottom:122.443035pt;}
.y182{bottom:125.978197pt;}
.y6b{bottom:127.278907pt;}
.ya0{bottom:127.563477pt;}
.yd8{bottom:127.599957pt;}
.y1ba{bottom:130.451291pt;}
.y139{bottom:134.602875pt;}
.y4c{bottom:136.525883pt;}
.y108{bottom:139.721467pt;}
.y181{bottom:141.336469pt;}
.y6a{bottom:142.637179pt;}
.y9f{bottom:142.923061pt;}
.yd7{bottom:142.959541pt;}
.y1b9{bottom:145.810875pt;}
.y138{bottom:147.081627pt;}
.y228{bottom:148.320885pt;}
.y107{bottom:148.361333pt;}
.y4b{bottom:151.884155pt;}
.y180{bottom:156.694741pt;}
.y69{bottom:157.996763pt;}
.y9e{bottom:158.281333pt;}
.yd6{bottom:158.319125pt;}
.y1b8{bottom:161.170459pt;}
.y227{bottom:162.082517pt;}
.y137{bottom:164.681333pt;}
.y4a{bottom:167.243739pt;}
.y17f{bottom:172.053013pt;}
.y136{bottom:172.681333pt;}
.y68{bottom:173.356347pt;}
.yd5{bottom:173.678709pt;}
.y9d{bottom:173.961333pt;}
.y226{bottom:175.842965pt;}
.y1b7{bottom:176.530043pt;}
.y1ec{bottom:182.253013pt;}
.y49{bottom:182.603323pt;}
.y17e{bottom:187.412597pt;}
.y67{bottom:188.715931pt;}
.yd4{bottom:188.716853pt;}
.y225{bottom:189.603413pt;}
.y1b6{bottom:191.889627pt;}
.y9c{bottom:192.521333pt;}
.y1eb{bottom:196.013461pt;}
.y48{bottom:197.641467pt;}
.y17d{bottom:202.772181pt;}
.y224{bottom:203.683541pt;}
.y106{bottom:204.043195pt;}
.y66{bottom:204.074203pt;}
.yd3{bottom:204.076437pt;}
.y1b5{bottom:207.249211pt;}
.y1ea{bottom:209.773909pt;}
.y9b{bottom:210.451483pt;}
.y47{bottom:213.641467pt;}
.y223{bottom:217.445173pt;}
.y17c{bottom:218.130453pt;}
.y105{bottom:219.401467pt;}
.y65{bottom:219.433787pt;}
.yd2{bottom:219.434709pt;}
.y135{bottom:221.021653pt;}
.y1b4{bottom:222.608795pt;}
.y1e9{bottom:223.535541pt;}
.y9a{bottom:225.811067pt;}
.y222{bottom:231.205621pt;}
.y46{bottom:231.580405pt;}
.y17b{bottom:233.169909pt;}
.y64{bottom:234.471931pt;}
.yd1{bottom:234.792981pt;}
.y104{bottom:235.401467pt;}
.y134{bottom:236.381237pt;}
.y1e8{bottom:237.295989pt;}
.y1b3{bottom:237.968379pt;}
.y99{bottom:241.169339pt;}
.y221{bottom:244.966069pt;}
.y45{bottom:246.938677pt;}
.y17a{bottom:248.529493pt;}
.y63{bottom:249.830203pt;}
.yd0{bottom:250.151253pt;}
.y1e7{bottom:251.056437pt;}
.y133{bottom:251.740821pt;}
.y1b2{bottom:253.327963pt;}
.y103{bottom:253.641467pt;}
.y98{bottom:256.528923pt;}
.y220{bottom:258.727701pt;}
.y44{bottom:262.298261pt;}
.y179{bottom:263.887765pt;}
.y1e6{bottom:264.818069pt;}
.y62{bottom:265.188475pt;}
.ycf{bottom:265.509525pt;}
.y132{bottom:267.100405pt;}
.y1b1{bottom:268.687547pt;}
.y97{bottom:271.568379pt;}
.y102{bottom:271.584763pt;}
.y21f{bottom:272.488149pt;}
.y43{bottom:277.657845pt;}
.y1e5{bottom:278.578517pt;}
.y178{bottom:279.247349pt;}
.y61{bottom:280.546747pt;}
.yce{bottom:280.867797pt;}
.y131{bottom:282.459989pt;}
.y1b0{bottom:284.047131pt;}
.y21e{bottom:286.248597pt;}
.y96{bottom:286.926651pt;}
.y101{bottom:286.944347pt;}
.y1e4{bottom:292.338965pt;}
.y42{bottom:293.017429pt;}
.y177{bottom:294.605621pt;}
.y60{bottom:295.905019pt;}
.ycd{bottom:296.227381pt;}
.y130{bottom:297.819573pt;}
.y1af{bottom:299.085275pt;}
.y21d{bottom:300.010229pt;}
.y95{bottom:302.284923pt;}
.y100{bottom:302.303931pt;}
.y1e3{bottom:306.419093pt;}
.y41{bottom:308.055573pt;}
.y176{bottom:309.963893pt;}
.y5f{bottom:311.263291pt;}
.ycc{bottom:311.586965pt;}
.y12f{bottom:313.179157pt;}
.y21c{bottom:314.090357pt;}
.y1ae{bottom:314.444859pt;}
.y94{bottom:317.643195pt;}
.yff{bottom:317.663515pt;}
.y1e2{bottom:320.180725pt;}
.y40{bottom:323.413845pt;}
.y175{bottom:325.323477pt;}
.y5e{bottom:326.621563pt;}
.ycb{bottom:326.945237pt;}
.y21b{bottom:327.850805pt;}
.y12e{bottom:328.217301pt;}
.y1ad{bottom:329.804443pt;}
.y93{bottom:333.001467pt;}
.yfe{bottom:333.023099pt;}
.y1e1{bottom:333.941173pt;}
.y3f{bottom:338.772117pt;}
.y174{bottom:340.683061pt;}
.y21a{bottom:341.612437pt;}
.y5d{bottom:341.979835pt;}
.yca{bottom:342.304821pt;}
.y12d{bottom:343.576885pt;}
.yf{bottom:344.956000pt;}
.y1ac{bottom:345.162715pt;}
.y1e0{bottom:347.702805pt;}
.y92{bottom:347.721019pt;}
.yfd{bottom:348.382683pt;}
.y3e{bottom:354.131701pt;}
.y219{bottom:355.372885pt;}
.y173{bottom:356.041333pt;}
.y5c{bottom:357.339419pt;}
.yc9{bottom:357.664405pt;}
.y12c{bottom:358.935157pt;}
.y1ab{bottom:360.522299pt;}
.y1df{bottom:361.463253pt;}
.y91{bottom:361.481467pt;}
.yfc{bottom:363.742267pt;}
.ye{bottom:364.156000pt;}
.y218{bottom:369.133333pt;}
.y3d{bottom:369.491285pt;}
.y172{bottom:371.721333pt;}
.y90{bottom:372.681333pt;}
.y5b{bottom:372.699003pt;}
.yc8{bottom:372.702549pt;}
.y12b{bottom:374.293429pt;}
.y1de{bottom:375.223701pt;}
.y1aa{bottom:375.881883pt;}
.yfb{bottom:379.101851pt;}
.y217{bottom:382.894965pt;}
.y278{bottom:382.921467pt;}
.yd{bottom:383.356000pt;}
.y3c{bottom:384.850869pt;}
.y5a{bottom:388.057275pt;}
.yc7{bottom:388.062133pt;}
.y1dd{bottom:388.985333pt;}
.y12a{bottom:389.651701pt;}
.y171{bottom:389.658133pt;}
.y1a9{bottom:391.241467pt;}
.yfa{bottom:394.461435pt;}
.y277{bottom:396.625627pt;}
.y216{bottom:396.655413pt;}
.y3b{bottom:400.209141pt;}
.y1dc{bottom:402.745781pt;}
.y59{bottom:403.096731pt;}
.yc6{bottom:403.420405pt;}
.y129{bottom:405.009973pt;}
.y170{bottom:405.017717pt;}
.y1a8{bottom:406.921467pt;}
.yf9{bottom:409.499579pt;}
.y276{bottom:410.386075pt;}
.y215{bottom:410.415861pt;}
.y3a{bottom:415.568725pt;}
.y1db{bottom:416.825909pt;}
.y58{bottom:418.455003pt;}
.yc5{bottom:418.778677pt;}
.y128{bottom:420.368245pt;}
.y16f{bottom:420.377301pt;}
.y275{bottom:424.466203pt;}
.y214{bottom:424.495989pt;}
.yf8{bottom:424.859163pt;}
.y1a7{bottom:424.885909pt;}
.y1da{bottom:430.586357pt;}
.y39{bottom:430.928309pt;}
.y57{bottom:433.813275pt;}
.yc4{bottom:434.138261pt;}
.y127{bottom:435.726517pt;}
.y16e{bottom:435.736885pt;}
.yc{bottom:436.604000pt;}
.y274{bottom:438.226651pt;}
.y213{bottom:438.257621pt;}
.yf7{bottom:440.218747pt;}
.y1a6{bottom:440.245493pt;}
.y1d9{bottom:444.347989pt;}
.y38{bottom:446.286581pt;}
.y56{bottom:449.172859pt;}
.yc3{bottom:449.496533pt;}
.y126{bottom:451.084789pt;}
.y16d{bottom:451.096469pt;}
.y273{bottom:451.988283pt;}
.y212{bottom:452.018069pt;}
.yf6{bottom:455.578331pt;}
.y1a5{bottom:455.605077pt;}
.yb{bottom:455.804000pt;}
.y1d8{bottom:458.108437pt;}
.y37{bottom:461.646165pt;}
.y55{bottom:464.532443pt;}
.yc2{bottom:464.854805pt;}
.y272{bottom:465.748731pt;}
.y24d{bottom:465.773595pt;}
.y211{bottom:465.778517pt;}
.y125{bottom:466.443061pt;}
.y16c{bottom:466.456053pt;}
.yf5{bottom:470.937915pt;}
.y1a4{bottom:470.964661pt;}
.y1d7{bottom:471.868885pt;}
.ya{bottom:475.004000pt;}
.y36{bottom:476.685621pt;}
.y271{bottom:479.509179pt;}
.y24c{bottom:479.535227pt;}
.y210{bottom:479.540149pt;}
.y54{bottom:479.890715pt;}
.yc1{bottom:480.213077pt;}
.y124{bottom:481.801333pt;}
.y16b{bottom:481.815637pt;}
.y1d6{bottom:485.630517pt;}
.yf4{bottom:486.297499pt;}
.y1a3{bottom:486.324245pt;}
.y35{bottom:492.043893pt;}
.y270{bottom:493.270811pt;}
.y24b{bottom:493.295675pt;}
.y20f{bottom:493.300597pt;}
.y9{bottom:494.204000pt;}
.y53{bottom:495.250299pt;}
.yc0{bottom:495.571349pt;}
.y123{bottom:497.160693pt;}
.y16a{bottom:497.175221pt;}
.y1d5{bottom:499.390965pt;}
.yf3{bottom:501.655771pt;}
.y1a2{bottom:501.683829pt;}
.y26f{bottom:507.031259pt;}
.y24a{bottom:507.056123pt;}
.y20e{bottom:507.061045pt;}
.y34{bottom:507.403477pt;}
.y52{bottom:510.609883pt;}
.ybf{bottom:510.929621pt;}
.y169{bottom:512.213365pt;}
.y1d4{bottom:513.151413pt;}
.y8{bottom:513.404000pt;}
.y122{bottom:514.121013pt;}
.yf2{bottom:517.015355pt;}
.y1a1{bottom:517.043413pt;}
.y26e{bottom:520.791707pt;}
.y249{bottom:520.817755pt;}
.y20d{bottom:520.822677pt;}
.y33{bottom:522.763061pt;}
.y51{bottom:525.969467pt;}
.ybe{bottom:526.287893pt;}
.y1d3{bottom:527.231541pt;}
.y168{bottom:527.572949pt;}
.y14b{bottom:529.169077pt;}
.y8f{bottom:529.182133pt;}
.y121{bottom:531.081333pt;}
.yf1{bottom:532.374939pt;}
.y1a0{bottom:532.402997pt;}
.y7{bottom:532.604000pt;}
.y26d{bottom:534.873019pt;}
.y248{bottom:534.897883pt;}
.y20c{bottom:534.902805pt;}
.y32{bottom:538.121333pt;}
.y1d2{bottom:540.993173pt;}
.ybd{bottom:541.327349pt;}
.y50{bottom:541.329051pt;}
.y167{bottom:542.932533pt;}
.y14a{bottom:544.528661pt;}
.y8e{bottom:544.540405pt;}
.yf0{bottom:547.733211pt;}
.y120{bottom:547.737365pt;}
.y19f{bottom:547.762581pt;}
.y26c{bottom:548.633467pt;}
.y247{bottom:548.658331pt;}
.y20b{bottom:548.663253pt;}
.y31{bottom:554.121333pt;}
.y1d1{bottom:554.753621pt;}
.ybc{bottom:556.685621pt;}
.y4f{bottom:556.688635pt;}
.y166{bottom:558.292117pt;}
.y149{bottom:559.888245pt;}
.y8d{bottom:559.898677pt;}
.y26b{bottom:562.393915pt;}
.y246{bottom:562.419963pt;}
.y20a{bottom:562.423701pt;}
.yef{bottom:563.092795pt;}
.y11f{bottom:563.096949pt;}
.y19e{bottom:563.122165pt;}
.y1d0{bottom:568.515253pt;}
.ybb{bottom:572.043893pt;}
.y30{bottom:572.057147pt;}
.y165{bottom:573.650389pt;}
.y148{bottom:575.247829pt;}
.y8c{bottom:575.256949pt;}
.y26a{bottom:576.155547pt;}
.y245{bottom:576.180411pt;}
.y209{bottom:576.185333pt;}
.yee{bottom:578.132251pt;}
.y11e{bottom:578.136405pt;}
.y19d{bottom:578.160309pt;}
.y1cf{bottom:582.275701pt;}
.y2f{bottom:587.096603pt;}
.yba{bottom:587.403477pt;}
.y164{bottom:589.009973pt;}
.y269{bottom:589.915995pt;}
.y244{bottom:589.940859pt;}
.y208{bottom:589.945781pt;}
.y147{bottom:590.607413pt;}
.y8b{bottom:590.615221pt;}
.yed{bottom:593.490523pt;}
.y11d{bottom:593.494677pt;}
.y19c{bottom:593.519893pt;}
.y1ce{bottom:596.036149pt;}
.y2e{bottom:602.454875pt;}
.yb9{bottom:602.763061pt;}
.y268{bottom:603.676443pt;}
.y243{bottom:603.702491pt;}
.y207{bottom:603.707413pt;}
.y163{bottom:604.368245pt;}
.y146{bottom:605.966997pt;}
.y8a{bottom:605.973493pt;}
.yec{bottom:608.850107pt;}
.y11c{bottom:608.852949pt;}
.y19b{bottom:608.878165pt;}
.y1cd{bottom:609.797781pt;}
.y5{bottom:612.970800pt;}
.y267{bottom:617.438075pt;}
.y242{bottom:617.462939pt;}
.y206{bottom:617.467861pt;}
.y2d{bottom:617.814459pt;}
.yb8{bottom:618.121333pt;}
.y162{bottom:619.726517pt;}
.y145{bottom:621.326581pt;}
.y89{bottom:621.333077pt;}
.y1cc{bottom:623.558229pt;}
.yeb{bottom:624.208379pt;}
.y11b{bottom:624.211221pt;}
.y19a{bottom:624.236437pt;}
.y266{bottom:631.198523pt;}
.y241{bottom:631.223387pt;}
.y205{bottom:631.228309pt;}
.y2c{bottom:633.174043pt;}
.yb7{bottom:634.121467pt;}
.y161{bottom:635.084789pt;}
.y144{bottom:636.686165pt;}
.y88{bottom:636.692661pt;}
.y1cb{bottom:637.638357pt;}
.yea{bottom:639.566651pt;}
.y11a{bottom:639.569493pt;}
.y199{bottom:639.596021pt;}
.y4{bottom:639.638000pt;}
.y265{bottom:644.958971pt;}
.y240{bottom:644.985019pt;}
.y204{bottom:644.989941pt;}
.y2b{bottom:648.532315pt;}
.y160{bottom:650.443061pt;}
.y1ca{bottom:651.398805pt;}
.y143{bottom:651.725621pt;}
.y87{bottom:651.730805pt;}
.yb6{bottom:652.361467pt;}
.ye9{bottom:654.924923pt;}
.y119{bottom:654.927765pt;}
.y198{bottom:654.955605pt;}
.y264{bottom:659.039099pt;}
.y23f{bottom:659.065147pt;}
.y203{bottom:659.070069pt;}
.y2a{bottom:663.891899pt;}
.y1c9{bottom:665.160437pt;}
.y15f{bottom:665.801333pt;}
.y142{bottom:667.083893pt;}
.y86{bottom:667.090389pt;}
.ye8{bottom:670.283195pt;}
.y118{bottom:670.286037pt;}
.yb5{bottom:670.287963pt;}
.y197{bottom:670.315189pt;}
.y263{bottom:672.800731pt;}
.y23e{bottom:672.825595pt;}
.y202{bottom:672.830517pt;}
.y1c8{bottom:678.920885pt;}
.y29{bottom:679.251483pt;}
.y15e{bottom:681.160693pt;}
.y141{bottom:682.443477pt;}
.y85{bottom:682.449973pt;}
.y117{bottom:685.644309pt;}
.yb4{bottom:685.647547pt;}
.ye7{bottom:685.649141pt;}
.y196{bottom:685.674773pt;}
.y262{bottom:686.561179pt;}
.y23d{bottom:686.586043pt;}
.y201{bottom:686.590965pt;}
.y1c7{bottom:692.681333pt;}
.y3{bottom:694.475067pt;}
.y28{bottom:694.609755pt;}
.y140{bottom:697.803061pt;}
.y84{bottom:697.809557pt;}
.y15d{bottom:698.121013pt;}
.y261{bottom:700.321627pt;}
.y23c{bottom:700.347675pt;}
.y200{bottom:700.352597pt;}
.y116{bottom:701.003893pt;}
.yb3{bottom:701.007131pt;}
.ye6{bottom:701.008725pt;}
.y195{bottom:701.034357pt;}
.y1c6{bottom:707.721467pt;}
.y27{bottom:709.969339pt;}
.y13f{bottom:713.161333pt;}
.y83{bottom:713.169141pt;}
.y260{bottom:714.083259pt;}
.y23b{bottom:714.108123pt;}
.y1ff{bottom:714.113045pt;}
.y15c{bottom:715.081333pt;}
.y115{bottom:716.363477pt;}
.yb2{bottom:716.366715pt;}
.ye5{bottom:716.368309pt;}
.y194{bottom:716.393941pt;}
.y2{bottom:721.142267pt;}
.y1c5{bottom:725.321333pt;}
.y26{bottom:725.328923pt;}
.y25f{bottom:727.843707pt;}
.y23a{bottom:727.868571pt;}
.y1fe{bottom:727.873493pt;}
.y82{bottom:728.528725pt;}
.y13e{bottom:728.841013pt;}
.y114{bottom:731.723061pt;}
.yb1{bottom:731.726299pt;}
.ye4{bottom:731.727893pt;}
.y15b{bottom:731.734389pt;}
.y193{bottom:731.752213pt;}
.y1c4{bottom:740.686453pt;}
.y25{bottom:740.688507pt;}
.y25e{bottom:741.604155pt;}
.y239{bottom:741.630203pt;}
.y1fd{bottom:741.635125pt;}
.y81{bottom:743.886997pt;}
.y13d{bottom:745.801333pt;}
.yb0{bottom:747.085883pt;}
.ye3{bottom:747.087477pt;}
.y113{bottom:747.093973pt;}
.y192{bottom:747.111797pt;}
.y1{bottom:747.809467pt;}
.y25d{bottom:755.365787pt;}
.y238{bottom:755.390651pt;}
.y1fc{bottom:755.395573pt;}
.y24{bottom:755.726651pt;}
.y1c3{bottom:756.046037pt;}
.y80{bottom:759.246581pt;}
.yaf{bottom:762.124027pt;}
.ye2{bottom:762.125621pt;}
.y112{bottom:762.132117pt;}
.y159{bottom:762.138293pt;}
.y191{bottom:762.151253pt;}
.y25c{bottom:769.445915pt;}
.y237{bottom:769.470779pt;}
.y1fb{bottom:769.475701pt;}
.y23{bottom:771.084923pt;}
.y1c2{bottom:771.404309pt;}
.y7f{bottom:774.606165pt;}
.yae{bottom:777.483611pt;}
.ye1{bottom:777.485205pt;}
.y111{bottom:777.491701pt;}
.y158{bottom:777.497877pt;}
.y190{bottom:777.509525pt;}
.y25b{bottom:783.206363pt;}
.y236{bottom:783.231227pt;}
.y1fa{bottom:783.236149pt;}
.y22{bottom:786.443195pt;}
.y1c1{bottom:786.763893pt;}
.y7e{bottom:789.965749pt;}
.yad{bottom:792.843195pt;}
.ye0{bottom:792.844789pt;}
.y110{bottom:792.851285pt;}
.y157{bottom:792.857461pt;}
.y18f{bottom:792.869109pt;}
.y25a{bottom:796.966811pt;}
.y235{bottom:796.992859pt;}
.y1f9{bottom:796.997781pt;}
.y21{bottom:801.801467pt;}
.y1c0{bottom:802.123477pt;}
.y7d{bottom:805.324021pt;}
.yac{bottom:808.201467pt;}
.ydf{bottom:808.203061pt;}
.y10f{bottom:808.210869pt;}
.y156{bottom:808.217045pt;}
.y18e{bottom:808.228693pt;}
.y259{bottom:810.728443pt;}
.y234{bottom:810.753307pt;}
.y1f8{bottom:810.758229pt;}
.y20{bottom:816.520443pt;}
.y1bf{bottom:817.483061pt;}
.y7c{bottom:820.363477pt;}
.yde{bottom:823.561333pt;}
.yab{bottom:823.568981pt;}
.y10e{bottom:823.570453pt;}
.y155{bottom:823.576629pt;}
.y18d{bottom:823.588277pt;}
.y258{bottom:824.488891pt;}
.y233{bottom:824.513755pt;}
.y1f7{bottom:824.518677pt;}
.y1f{bottom:830.280891pt;}
.y1be{bottom:832.841333pt;}
.y7b{bottom:835.723061pt;}
.y257{bottom:838.249339pt;}
.y232{bottom:838.275387pt;}
.y1f6{bottom:838.280309pt;}
.yaa{bottom:838.928565pt;}
.ydd{bottom:838.930037pt;}
.y154{bottom:838.934901pt;}
.y18c{bottom:838.946549pt;}
.y1e{bottom:844.361019pt;}
.y1bd{bottom:848.521333pt;}
.y7a{bottom:851.081333pt;}
.y256{bottom:852.010971pt;}
.y231{bottom:852.035835pt;}
.y1f5{bottom:852.040757pt;}
.ya9{bottom:854.286837pt;}
.ydc{bottom:854.288309pt;}
.y153{bottom:854.294485pt;}
.y18b{bottom:854.306133pt;}
.y1d{bottom:858.121467pt;}
.y255{bottom:865.771419pt;}
.y230{bottom:865.796283pt;}
.y1f4{bottom:865.801205pt;}
.y79{bottom:867.081333pt;}
.ya8{bottom:869.646421pt;}
.ydb{bottom:869.647893pt;}
.y152{bottom:869.654069pt;}
.y18a{bottom:869.665717pt;}
.y1c{bottom:872.523061pt;}
.y254{bottom:879.851547pt;}
.y22f{bottom:879.876411pt;}
.y1f3{bottom:879.881333pt;}
.y78{bottom:885.001333pt;}
.ya7{bottom:885.006005pt;}
.yda{bottom:885.007477pt;}
.y151{bottom:885.013653pt;}
.y189{bottom:885.025301pt;}
.y1b{bottom:887.881333pt;}
.y1f2{bottom:893.608501pt;}
.y253{bottom:893.611995pt;}
.y22e{bottom:893.638043pt;}
.ya6{bottom:900.364277pt;}
.y77{bottom:900.365749pt;}
.y10d{bottom:900.367061pt;}
.y150{bottom:900.371925pt;}
.y188{bottom:900.384885pt;}
.y1a{bottom:903.881333pt;}
.y1f1{bottom:907.368949pt;}
.y252{bottom:907.373627pt;}
.y22d{bottom:907.398491pt;}
.ya5{bottom:915.723861pt;}
.y76{bottom:915.724021pt;}
.y10c{bottom:915.725333pt;}
.y14f{bottom:915.731509pt;}
.y187{bottom:915.744469pt;}
.y1f0{bottom:921.130581pt;}
.y251{bottom:921.134075pt;}
.y22c{bottom:921.158939pt;}
.y19{bottom:925.001467pt;}
.ya4{bottom:930.764629pt;}
.y75{bottom:930.764789pt;}
.y14e{bottom:930.770965pt;}
.y186{bottom:930.782613pt;}
.y1ef{bottom:934.891029pt;}
.y250{bottom:934.894523pt;}
.y22b{bottom:934.920571pt;}
.y18{bottom:943.561467pt;}
.y74{bottom:946.123061pt;}
.ya3{bottom:946.124213pt;}
.y14d{bottom:946.129237pt;}
.y185{bottom:946.142197pt;}
.y1ee{bottom:948.651477pt;}
.y24f{bottom:948.654971pt;}
.y22a{bottom:948.681019pt;}
.y73{bottom:961.481333pt;}
.ya2{bottom:961.483797pt;}
.y14c{bottom:961.488821pt;}
.y184{bottom:961.501781pt;}
.y17{bottom:962.121467pt;}
.y1ed{bottom:962.413109pt;}
.y24e{bottom:962.415419pt;}
.y229{bottom:962.441467pt;}
.y71{bottom:977.161333pt;}
.y14{bottom:983.881573pt;}
.y70{bottom:998.921413pt;}
.y13{bottom:1001.481733pt;}
.y6f{bottom:1010.761285pt;}
.y6e{bottom:1027.401355pt;}
.y12{bottom:1031.881733pt;}
.y6d{bottom:1045.321675pt;}
.y11{bottom:1064.521867pt;}
.h18{height:18.387500pt;}
.h1c{height:18.650000pt;}
.h11{height:30.751875pt;}
.h15{height:30.772500pt;}
.h24{height:30.793125pt;}
.h10{height:30.855000pt;}
.h6{height:31.680000pt;}
.h9{height:34.479375pt;}
.h26{height:34.525625pt;}
.h13{height:34.595000pt;}
.h1f{height:36.320625pt;}
.ha{height:37.694375pt;}
.h7{height:38.206875pt;}
.h16{height:38.232500pt;}
.h25{height:38.258125pt;}
.hf{height:40.399015pt;}
.h14{height:40.411515pt;}
.h23{height:40.424015pt;}
.h22{height:40.723125pt;}
.h1d{height:41.231250pt;}
.h1b{height:41.934375pt;}
.h1e{height:43.774015pt;}
.h20{height:45.125625pt;}
.h1a{height:45.918190pt;}
.hb{height:45.968750pt;}
.h5{height:46.354167pt;}
.h21{height:46.573270pt;}
.he{height:46.593750pt;}
.h12{height:46.750000pt;}
.h8{height:47.616875pt;}
.h17{height:52.026801pt;}
.hd{height:52.033713pt;}
.h19{height:52.057500pt;}
.hc{height:54.048750pt;}
.h4{height:55.625000pt;}
.h2{height:56.554982pt;}
.h3{height:64.895833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:90.957733pt;}
.x5{left:96.397867pt;}
.xe{left:103.931659pt;}
.x8{left:116.529536pt;}
.x3{left:143.622667pt;}
.x7{left:182.125333pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.xb{left:275.997333pt;}
.x6{left:332.664000pt;}
.xc{left:381.385333pt;}
.x4{left:385.728000pt;}
.x9{left:397.264000pt;}
.xa{left:420.879975pt;}
.xf{left:428.410411pt;}
}


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