
/* 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_cbaf768c9c19.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_19c4c385e2eb.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_50b59a6b290d.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_cf9578db24a9.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_567064ba11e1.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_ba7c1facab76.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_20fa61f8460f.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_8d10f41ee6a9.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_d611ca560900.woff")format("woff");}.ffc{font-family:ffc;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:ffd;src:url("fonts/font_0012_b72ad93dab23.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_567064ba11e1.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_73011e4e6169.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_35e733bd18b3.woff")format("woff");}.ff10{font-family:ff10;line-height:0.673000;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_8d10f41ee6a9.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_5e820e4057ea.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_ef1c94443a13.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_567064ba11e1.woff")format("woff");}.ff14{font-family:ff14;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:ff15;src:url("fonts/font_0020_db21af2bd4d5.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_8d10f41ee6a9.woff")format("woff");}.ff16{font-family:ff16;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:ff17;src:url("fonts/font_0022_e9b70ee0d85f.woff")format("woff");}.ff17{font-family:ff17;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:ff18;src:url("fonts/font_0023_e6ea4037fc6d.woff")format("woff");}.ff18{font-family:ff18;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:ff19;src:url("fonts/font_0024_567064ba11e1.woff")format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_9f30bbf09919.woff")format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url("fonts/font_0026_74eae7b81d35.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.727539;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_d1e9b5cd6cae.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_95a71505cc9a.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.727539;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_c389f3c4eac3.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.727539;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_006562fe9cb0.woff")format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url("fonts/font_0031_8d10f41ee6a9.woff")format("woff");}.ff20{font-family:ff20;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:ff21;src:url("fonts/font_0032_aa771e61dfe8.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_21e7d95b78ed.woff")format("woff");}.ff22{font-family:ff22;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:ff23;src:url("fonts/font_0034_567064ba11e1.woff")format("woff");}.ff23{font-family:ff23;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:ff24;src:url("fonts/font_0035_9421beede175.woff")format("woff");}.ff24{font-family:ff24;line-height:0.740234;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_808d75e8cc6d.woff")format("woff");}.ff25{font-family:ff25;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_121d77d0c637.woff")format("woff");}.ff26{font-family:ff26;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_8d10f41ee6a9.woff")format("woff");}.ff27{font-family:ff27;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:ff28;src:url("fonts/font_0039_af00956ddafc.woff")format("woff");}.ff28{font-family:ff28;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:ff29;src:url("fonts/font_0040_456a3878d9b1.woff")format("woff");}.ff29{font-family:ff29;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:ff2a;src:url("fonts/font_0041_567064ba11e1.woff")format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url("fonts/font_0042_2834910e22f7.woff")format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url("fonts/font_0043_121d77d0c637.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url("fonts/font_0044_8d10f41ee6a9.woff")format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url("fonts/font_0045_40a91f2953dc.woff")format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url("fonts/font_0046_e38ef11325b8.woff")format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url("fonts/font_0047_567064ba11e1.woff")format("woff");}.ff30{font-family:ff30;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;}
.m4{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);}
.m3{transform:matrix(0.247496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247496,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,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);}
.v3{vertical-align:-8.657424px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.481704px;}
.v1{vertical-align:27.971400px;}
.ls4d{letter-spacing:-0.014400px;}
.ls5a{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls1e{letter-spacing:0.014400px;}
.ls36{letter-spacing:0.042768px;}
.ls2d{letter-spacing:0.050544px;}
.ls33{letter-spacing:0.213840px;}
.ls34{letter-spacing:0.223344px;}
.ls48{letter-spacing:0.224352px;}
.ls32{letter-spacing:0.232848px;}
.ls3{letter-spacing:0.233856px;}
.ls1d{letter-spacing:0.258912px;}
.ls23{letter-spacing:0.266112px;}
.ls49{letter-spacing:0.271584px;}
.ls57{letter-spacing:0.277488px;}
.ls22{letter-spacing:0.278880px;}
.ls4b{letter-spacing:0.283392px;}
.ls6{letter-spacing:0.287712px;}
.ls56{letter-spacing:0.289296px;}
.ls5b{letter-spacing:0.298368px;}
.ls58{letter-spacing:0.301104px;}
.ls50{letter-spacing:0.303696px;}
.ls45{letter-spacing:0.307008px;}
.ls51{letter-spacing:0.309024px;}
.ls52{letter-spacing:0.314352px;}
.ls59{letter-spacing:0.319680px;}
.ls5{letter-spacing:0.325008px;}
.ls4f{letter-spacing:0.330336px;}
.ls46{letter-spacing:0.330624px;}
.ls41{letter-spacing:0.335664px;}
.ls44{letter-spacing:0.336528px;}
.ls43{letter-spacing:0.340992px;}
.ls37{letter-spacing:0.343440px;}
.ls1c{letter-spacing:0.346320px;}
.ls42{letter-spacing:0.351648px;}
.ls35{letter-spacing:0.356976px;}
.ls2f{letter-spacing:0.360144px;}
.ls20{letter-spacing:0.362304px;}
.ls3a{letter-spacing:0.367632px;}
.ls2a{letter-spacing:0.371952px;}
.ls1b{letter-spacing:0.372960px;}
.ls2c{letter-spacing:0.377856px;}
.ls3e{letter-spacing:0.378288px;}
.ls2e{letter-spacing:0.383760px;}
.ls40{letter-spacing:0.388944px;}
.lsa{letter-spacing:0.389664px;}
.ls3d{letter-spacing:0.394272px;}
.ls10{letter-spacing:0.395568px;}
.ls31{letter-spacing:0.400320px;}
.lsd{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.ls18{letter-spacing:0.407376px;}
.ls8{letter-spacing:0.413280px;}
.ls15{letter-spacing:0.419184px;}
.lsc{letter-spacing:0.425088px;}
.lsb{letter-spacing:0.430992px;}
.ls11{letter-spacing:0.436896px;}
.lse{letter-spacing:0.442800px;}
.ls21{letter-spacing:0.448704px;}
.lsf{letter-spacing:0.454608px;}
.ls16{letter-spacing:0.460512px;}
.ls27{letter-spacing:0.466416px;}
.ls13{letter-spacing:0.472320px;}
.ls1a{letter-spacing:0.478224px;}
.ls47{letter-spacing:0.479520px;}
.ls29{letter-spacing:0.484128px;}
.ls28{letter-spacing:0.490032px;}
.ls3b{letter-spacing:0.490176px;}
.ls12{letter-spacing:0.495936px;}
.ls17{letter-spacing:0.501840px;}
.ls1f{letter-spacing:0.505440px;}
.ls30{letter-spacing:0.507744px;}
.ls9{letter-spacing:0.513648px;}
.ls54{letter-spacing:0.519552px;}
.ls53{letter-spacing:0.524880px;}
.ls4a{letter-spacing:0.531360px;}
.ls24{letter-spacing:0.537840px;}
.ls55{letter-spacing:0.543168px;}
.ls4{letter-spacing:0.560880px;}
.ls19{letter-spacing:0.583200px;}
.ls7{letter-spacing:0.590400px;}
.ls4e{letter-spacing:0.596160px;}
.ls39{letter-spacing:0.602640px;}
.ls38{letter-spacing:0.609120px;}
.ls25{letter-spacing:0.628560px;}
.ls14{letter-spacing:30.807072px;}
.ls26{letter-spacing:63.987552px;}
.ls2b{letter-spacing:65.103408px;}
.ls3f{letter-spacing:87.123456px;}
.ls3c{letter-spacing:131.068800px;}
.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;}
}
.ws4{word-spacing:-17.003520px;}
.ws5{word-spacing:-16.926768px;}
.wsdc{word-spacing:-16.914960px;}
.wsda{word-spacing:-16.879536px;}
.ws12e{word-spacing:-16.873632px;}
.wsdd{word-spacing:-16.861824px;}
.wsdb{word-spacing:-16.855920px;}
.ws41{word-spacing:-16.826400px;}
.ws12d{word-spacing:-16.820496px;}
.ws177{word-spacing:-15.115536px;}
.ws2{word-spacing:-12.835200px;}
.ws42{word-spacing:-10.859184px;}
.ws3{word-spacing:-10.008000px;}
.ws40{word-spacing:-8.406720px;}
.wsd7{word-spacing:-0.543456px;}
.wsd8{word-spacing:-0.431568px;}
.wsd9{word-spacing:-0.410256px;}
.ws11e{word-spacing:-0.356976px;}
.ws9{word-spacing:-0.312912px;}
.wsb5{word-spacing:-0.278640px;}
.wsff{word-spacing:-0.259200px;}
.ws124{word-spacing:-0.252720px;}
.wsc1{word-spacing:-0.239760px;}
.ws5f{word-spacing:-0.218448px;}
.wscb{word-spacing:-0.194400px;}
.wsb4{word-spacing:-0.188928px;}
.ws14a{word-spacing:-0.187920px;}
.ws5a{word-spacing:-0.183024px;}
.ws6e{word-spacing:-0.177120px;}
.ws31{word-spacing:-0.174960px;}
.ws112{word-spacing:-0.171216px;}
.wse9{word-spacing:-0.170496px;}
.ws13d{word-spacing:-0.165312px;}
.ws12a{word-spacing:-0.165168px;}
.wsf1{word-spacing:-0.162000px;}
.wsca{word-spacing:-0.159408px;}
.wsd6{word-spacing:-0.153504px;}
.ws6{word-spacing:-0.149184px;}
.ws143{word-spacing:-0.147600px;}
.ws6d{word-spacing:-0.143856px;}
.ws1b{word-spacing:-0.141696px;}
.wsa{word-spacing:-0.138528px;}
.ws114{word-spacing:-0.136080px;}
.wsb{word-spacing:-0.135792px;}
.ws128{word-spacing:-0.133200px;}
.ws83{word-spacing:-0.129888px;}
.ws7{word-spacing:-0.127872px;}
.ws37{word-spacing:-0.123984px;}
.ws44{word-spacing:-0.123552px;}
.ws129{word-spacing:-0.122544px;}
.wsfe{word-spacing:-0.118080px;}
.ws19a{word-spacing:-0.117216px;}
.wsba{word-spacing:-0.112176px;}
.ws125{word-spacing:-0.106560px;}
.ws50{word-spacing:-0.106272px;}
.ws126{word-spacing:-0.101232px;}
.wsa1{word-spacing:-0.094464px;}
.ws1a4{word-spacing:-0.090576px;}
.wsbf{word-spacing:-0.088560px;}
.ws43{word-spacing:-0.085536px;}
.ws127{word-spacing:-0.079920px;}
.ws8{word-spacing:-0.075168px;}
.ws0{word-spacing:-0.072000px;}
.ws113{word-spacing:-0.070848px;}
.ws1a2{word-spacing:-0.069264px;}
.ws45{word-spacing:-0.066528px;}
.ws84{word-spacing:-0.032400px;}
.ws1{word-spacing:0.000000px;}
.ws63{word-spacing:0.007200px;}
.wsaa{word-spacing:0.014400px;}
.wsf0{word-spacing:0.029520px;}
.ws11a{word-spacing:0.123984px;}
.ws131{word-spacing:0.141696px;}
.wse3{word-spacing:0.147600px;}
.ws62{word-spacing:0.153504px;}
.ws1a0{word-spacing:0.229104px;}
.ws70{word-spacing:0.277488px;}
.ws6f{word-spacing:0.312912px;}
.wsab{word-spacing:0.318816px;}
.wsa4{word-spacing:0.413280px;}
.ws167{word-spacing:0.454608px;}
.wsc0{word-spacing:0.643536px;}
.wsc6{word-spacing:0.714384px;}
.ws171{word-spacing:0.738000px;}
.wsfa{word-spacing:0.856080px;}
.ws5c{word-spacing:0.956448px;}
.ws4a{word-spacing:1.080432px;}
.ws8a{word-spacing:1.098144px;}
.wsa6{word-spacing:1.145376px;}
.ws154{word-spacing:1.263456px;}
.ws153{word-spacing:1.281168px;}
.wsce{word-spacing:1.292976px;}
.ws10{word-spacing:1.322496px;}
.ws142{word-spacing:1.411056px;}
.ws115{word-spacing:1.487808px;}
.wsd1{word-spacing:1.535040px;}
.ws3b{word-spacing:1.576368px;}
.ws140{word-spacing:1.664928px;}
.wsd{word-spacing:1.700352px;}
.ws150{word-spacing:1.718064px;}
.ws8b{word-spacing:1.753488px;}
.ws17e{word-spacing:1.771200px;}
.ws1a1{word-spacing:1.800864px;}
.ws18e{word-spacing:1.895184px;}
.ws173{word-spacing:1.901088px;}
.ws2b{word-spacing:1.918800px;}
.ws39{word-spacing:1.966032px;}
.ws110{word-spacing:2.060496px;}
.wsea{word-spacing:2.107728px;}
.ws20{word-spacing:2.202192px;}
.ws6a{word-spacing:2.219904px;}
.wsaf{word-spacing:2.237616px;}
.ws12{word-spacing:2.255328px;}
.ws137{word-spacing:2.278944px;}
.ws2f{word-spacing:2.337984px;}
.wsf3{word-spacing:2.585952px;}
.ws119{word-spacing:2.633184px;}
.ws23{word-spacing:2.668608px;}
.wsc8{word-spacing:2.674512px;}
.ws47{word-spacing:2.680416px;}
.wsef{word-spacing:2.721744px;}
.ws100{word-spacing:2.751264px;}
.wse8{word-spacing:2.791872px;}
.ws32{word-spacing:3.116880px;}
.ws19{word-spacing:3.123216px;}
.ws101{word-spacing:3.158640px;}
.ws170{word-spacing:3.170448px;}
.wse6{word-spacing:3.188160px;}
.wsb8{word-spacing:3.217680px;}
.ws148{word-spacing:3.223584px;}
.wsa2{word-spacing:3.235392px;}
.wsa8{word-spacing:3.247200px;}
.ws49{word-spacing:3.282624px;}
.ws74{word-spacing:3.377088px;}
.ws73{word-spacing:3.424320px;}
.wse2{word-spacing:3.695904px;}
.ws9b{word-spacing:3.707712px;}
.ws144{word-spacing:3.731328px;}
.ws1ba{word-spacing:3.878784px;}
.ws17{word-spacing:4.008816px;}
.ws4e{word-spacing:4.215456px;}
.ws15c{word-spacing:4.327632px;}
.ws191{word-spacing:4.352976px;}
.ws1b6{word-spacing:4.491504px;}
.ws18a{word-spacing:4.557888px;}
.wsfd{word-spacing:4.693680px;}
.ws61{word-spacing:4.723200px;}
.wsa5{word-spacing:4.829472px;}
.ws1bb{word-spacing:5.061600px;}
.ws2e{word-spacing:5.071536px;}
.ws4d{word-spacing:5.154192px;}
.ws102{word-spacing:5.183712px;}
.ws155{word-spacing:5.236848px;}
.ws89{word-spacing:5.343120px;}
.wsf4{word-spacing:5.349024px;}
.ws166{word-spacing:5.413968px;}
.wsbe{word-spacing:5.425776px;}
.ws97{word-spacing:5.437584px;}
.ws14{word-spacing:5.520240px;}
.ws1b7{word-spacing:5.599728px;}
.ws12c{word-spacing:5.732928px;}
.ws16{word-spacing:5.744592px;}
.wsf9{word-spacing:5.833152px;}
.ws109{word-spacing:5.939424px;}
.ws181{word-spacing:6.016176px;}
.ws94{word-spacing:6.039792px;}
.ws1a8{word-spacing:6.095232px;}
.ws194{word-spacing:6.100560px;}
.wsc{word-spacing:6.175584px;}
.ws38{word-spacing:6.181488px;}
.ws80{word-spacing:6.252336px;}
.ws120{word-spacing:6.382224px;}
.ws106{word-spacing:6.441264px;}
.ws16e{word-spacing:6.518016px;}
.ws1aa{word-spacing:6.558768px;}
.ws46{word-spacing:6.659712px;}
.ws18{word-spacing:6.706944px;}
.ws13e{word-spacing:6.783696px;}
.wscd{word-spacing:6.789600px;}
.ws190{word-spacing:6.894432px;}
.ws13f{word-spacing:6.919488px;}
.ws186{word-spacing:6.984432px;}
.ws10b{word-spacing:6.996240px;}
.ws184{word-spacing:7.108416px;}
.ws9c{word-spacing:7.173360px;}
.wse7{word-spacing:7.285536px;}
.ws145{word-spacing:7.362288px;}
.ws13{word-spacing:7.421328px;}
.ws2d{word-spacing:7.444944px;}
.wsf{word-spacing:7.521696px;}
.wse{word-spacing:7.533504px;}
.ws1b1{word-spacing:7.581744px;}
.ws8c{word-spacing:7.681104px;}
.wscf{word-spacing:7.716528px;}
.ws193{word-spacing:7.768224px;}
.ws85{word-spacing:7.799184px;}
.ws19d{word-spacing:7.842816px;}
.ws180{word-spacing:7.976304px;}
.ws35{word-spacing:7.988112px;}
.ws199{word-spacing:8.029296px;}
.ws118{word-spacing:8.165232px;}
.ws10e{word-spacing:8.194752px;}
.ws14e{word-spacing:8.206560px;}
.wsd2{word-spacing:8.218368px;}
.wsd3{word-spacing:8.224272px;}
.ws11b{word-spacing:8.383680px;}
.ws15{word-spacing:8.389584px;}
.ws4f{word-spacing:8.466336px;}
.wsb2{word-spacing:8.619840px;}
.ws1f{word-spacing:8.661168px;}
.wsd0{word-spacing:8.838288px;}
.ws1af{word-spacing:9.068256px;}
.ws11{word-spacing:9.103968px;}
.ws8d{word-spacing:9.257472px;}
.ws4c{word-spacing:9.286992px;}
.ws17b{word-spacing:9.340128px;}
.ws1e{word-spacing:9.428688px;}
.ws6c{word-spacing:9.547776px;}
.ws1b5{word-spacing:9.574416px;}
.wsf7{word-spacing:9.771120px;}
.ws17c{word-spacing:9.830160px;}
.ws17f{word-spacing:9.859680px;}
.ws116{word-spacing:9.918720px;}
.wsad{word-spacing:9.936432px;}
.ws1ac{word-spacing:10.027296px;}
.ws1ae{word-spacing:10.091232px;}
.ws11c{word-spacing:10.166688px;}
.ws1b3{word-spacing:10.203120px;}
.wsee{word-spacing:10.467792px;}
.ws90{word-spacing:10.715760px;}
.ws176{word-spacing:10.739376px;}
.wsc3{word-spacing:10.757088px;}
.ws8f{word-spacing:10.869264px;}
.ws66{word-spacing:10.993248px;}
.ws16c{word-spacing:11.064096px;}
.ws1b8{word-spacing:11.279376px;}
.ws189{word-spacing:11.335680px;}
.ws54{word-spacing:11.430144px;}
.ws135{word-spacing:11.459664px;}
.ws9a{word-spacing:11.813904px;}
.ws18f{word-spacing:11.831616px;}
.ws15d{word-spacing:11.861136px;}
.ws79{word-spacing:11.872944px;}
.ws7a{word-spacing:11.943792px;}
.ws7c{word-spacing:12.050064px;}
.ws12b{word-spacing:12.270384px;}
.wsb1{word-spacing:12.563712px;}
.wsa0{word-spacing:12.587328px;}
.wsb0{word-spacing:12.758544px;}
.ws141{word-spacing:12.770352px;}
.ws78{word-spacing:12.817584px;}
.ws1c{word-spacing:12.841200px;}
.ws77{word-spacing:12.882528px;}
.ws117{word-spacing:12.924000px;}
.ws123{word-spacing:13.130496px;}
.ws19f{word-spacing:13.309344px;}
.ws5e{word-spacing:13.514256px;}
.ws30{word-spacing:13.731120px;}
.ws1a{word-spacing:13.738608px;}
.ws3c{word-spacing:13.762224px;}
.wse4{word-spacing:13.880304px;}
.wse5{word-spacing:14.116464px;}
.ws69{word-spacing:14.405760px;}
.ws197{word-spacing:14.486832px;}
.ws51{word-spacing:14.606496px;}
.ws48{word-spacing:14.624208px;}
.wsc7{word-spacing:14.630112px;}
.ws24{word-spacing:14.760000px;}
.ws174{word-spacing:15.126048px;}
.ws3f{word-spacing:15.190992px;}
.ws132{word-spacing:15.261840px;}
.ws133{word-spacing:15.368112px;}
.ws134{word-spacing:15.385824px;}
.ws182{word-spacing:15.686928px;}
.ws2c{word-spacing:15.864048px;}
.ws76{word-spacing:15.964416px;}
.ws13a{word-spacing:15.970320px;}
.ws16b{word-spacing:16.011648px;}
.ws12f{word-spacing:16.106112px;}
.ws15f{word-spacing:16.176960px;}
.ws19e{word-spacing:16.298352px;}
.ws138{word-spacing:16.466256px;}
.wsc2{word-spacing:16.525296px;}
.ws6b{word-spacing:16.543008px;}
.wsa9{word-spacing:16.554816px;}
.ws96{word-spacing:16.560720px;}
.ws17a{word-spacing:16.584336px;}
.ws147{word-spacing:16.613856px;}
.ws19c{word-spacing:16.655328px;}
.ws10a{word-spacing:16.867728px;}
.ws25{word-spacing:17.021232px;}
.ws169{word-spacing:17.204256px;}
.ws130{word-spacing:17.416800px;}
.wscc{word-spacing:17.540784px;}
.wsed{word-spacing:17.593920px;}
.ws10c{word-spacing:17.605728px;}
.ws98{word-spacing:17.717904px;}
.ws1bd{word-spacing:17.747568px;}
.ws9e{word-spacing:17.883216px;}
.ws136{word-spacing:18.184320px;}
.wsc9{word-spacing:18.609408px;}
.wsf8{word-spacing:18.680256px;}
.ws82{word-spacing:19.004976px;}
.ws146{word-spacing:19.046304px;}
.ws81{word-spacing:19.081728px;}
.ws1b0{word-spacing:19.095552px;}
.ws108{word-spacing:19.205712px;}
.ws149{word-spacing:19.418256px;}
.ws179{word-spacing:19.430064px;}
.ws192{word-spacing:19.473840px;}
.ws1a7{word-spacing:19.612368px;}
.ws10f{word-spacing:19.872864px;}
.ws162{word-spacing:19.884672px;}
.ws18c{word-spacing:19.902384px;}
.ws160{word-spacing:19.943712px;}
.wsc5{word-spacing:19.967328px;}
.ws198{word-spacing:20.230416px;}
.ws1be{word-spacing:20.576736px;}
.ws29{word-spacing:20.604960px;}
.ws105{word-spacing:20.699424px;}
.ws11d{word-spacing:20.723040px;}
.ws104{word-spacing:20.758464px;}
.ws67{word-spacing:20.894256px;}
.wsfc{word-spacing:20.917872px;}
.ws7f{word-spacing:21.148128px;}
.ws71{word-spacing:21.289824px;}
.ws14c{word-spacing:21.525984px;}
.ws14d{word-spacing:21.827088px;}
.ws122{word-spacing:22.033728px;}
.ws16d{word-spacing:22.529664px;}
.wsbd{word-spacing:22.659552px;}
.ws188{word-spacing:22.665456px;}
.wsac{word-spacing:22.700880px;}
.wsb6{word-spacing:22.730400px;}
.wsb7{word-spacing:22.736304px;}
.ws1a3{word-spacing:22.921056px;}
.ws87{word-spacing:23.663232px;}
.ws3a{word-spacing:23.822640px;}
.ws19b{word-spacing:23.826816px;}
.ws36{word-spacing:24.123744px;}
.ws1b9{word-spacing:24.151824px;}
.ws152{word-spacing:24.324480px;}
.ws5b{word-spacing:24.714144px;}
.ws103{word-spacing:24.849936px;}
.ws93{word-spacing:24.873552px;}
.wsfb{word-spacing:25.109712px;}
.ws17d{word-spacing:25.357680px;}
.ws2a{word-spacing:25.369488px;}
.ws107{word-spacing:25.576128px;}
.ws99{word-spacing:25.605648px;}
.ws9f{word-spacing:25.953984px;}
.ws1d{word-spacing:25.983504px;}
.wsae{word-spacing:25.989408px;}
.ws14b{word-spacing:26.024832px;}
.ws163{word-spacing:26.573904px;}
.ws16a{word-spacing:27.176112px;}
.ws158{word-spacing:27.258768px;}
.ws185{word-spacing:27.359136px;}
.ws18b{word-spacing:28.061712px;}
.ws121{word-spacing:28.079424px;}
.ws178{word-spacing:28.581264px;}
.wsf6{word-spacing:28.705248px;}
.ws1a9{word-spacing:29.229408px;}
.ws1ad{word-spacing:29.495808px;}
.wsc4{word-spacing:29.927376px;}
.ws60{word-spacing:30.134016px;}
.ws21{word-spacing:30.364272px;}
.ws95{word-spacing:30.387888px;}
.ws22{word-spacing:30.435120px;}
.ws28{word-spacing:30.464640px;}
.ws3e{word-spacing:31.007808px;}
.wsd5{word-spacing:31.562784px;}
.wsa7{word-spacing:31.875696px;}
.ws3d{word-spacing:32.418864px;}
.ws7b{word-spacing:32.483808px;}
.ws15a{word-spacing:32.531040px;}
.ws88{word-spacing:33.168672px;}
.ws159{word-spacing:33.292656px;}
.ws196{word-spacing:33.470496px;}
.ws195{word-spacing:33.486480px;}
.ws65{word-spacing:33.829920px;}
.ws14f{word-spacing:33.871248px;}
.wsf5{word-spacing:34.774560px;}
.ws183{word-spacing:34.880832px;}
.ws11f{word-spacing:35.099280px;}
.ws27{word-spacing:35.565696px;}
.ws68{word-spacing:36.516240px;}
.ws187{word-spacing:36.699264px;}
.ws13c{word-spacing:37.065312px;}
.ws156{word-spacing:37.248336px;}
.ws1ab{word-spacing:37.684944px;}
.ws175{word-spacing:37.915488px;}
.ws172{word-spacing:38.240208px;}
.wsb9{word-spacing:38.795184px;}
.ws16f{word-spacing:38.836512px;}
.ws57{word-spacing:39.143520px;}
.ws1bc{word-spacing:39.219408px;}
.ws165{word-spacing:39.285216px;}
.wseb{word-spacing:39.934656px;}
.ws157{word-spacing:41.652720px;}
.ws13b{word-spacing:42.485184px;}
.ws91{word-spacing:42.526512px;}
.ws161{word-spacing:42.638688px;}
.ws33{word-spacing:43.878528px;}
.ws86{word-spacing:44.356752px;}
.ws139{word-spacing:44.793648px;}
.ws7d{word-spacing:44.870400px;}
.ws7e{word-spacing:44.917632px;}
.ws18d{word-spacing:45.738288px;}
.ws168{word-spacing:46.553040px;}
.ws151{word-spacing:46.612080px;}
.ws92{word-spacing:47.249712px;}
.ws34{word-spacing:48.802464px;}
.ws75{word-spacing:50.119056px;}
.ws1b4{word-spacing:50.205744px;}
.ws64{word-spacing:52.480656px;}
.wsd4{word-spacing:53.897616px;}
.ws56{word-spacing:57.150720px;}
.ws53{word-spacing:57.676176px;}
.ws52{word-spacing:57.782448px;}
.ws26{word-spacing:58.071744px;}
.ws15b{word-spacing:58.266576px;}
.wsbb{word-spacing:58.307904px;}
.wsbc{word-spacing:58.319712px;}
.ws58{word-spacing:58.520448px;}
.ws15e{word-spacing:59.236704px;}
.ws10d{word-spacing:59.931504px;}
.wsec{word-spacing:61.584624px;}
.ws72{word-spacing:63.733680px;}
.wsa3{word-spacing:64.601568px;}
.ws111{word-spacing:65.741040px;}
.wsb3{word-spacing:65.764656px;}
.ws8e{word-spacing:66.437712px;}
.ws9d{word-spacing:67.783824px;}
.wsf2{word-spacing:68.084928px;}
.ws55{word-spacing:73.481184px;}
.ws1a5{word-spacing:74.677248px;}
.ws164{word-spacing:76.645728px;}
.ws4b{word-spacing:80.867088px;}
.ws5d{word-spacing:82.065600px;}
.ws1b2{word-spacing:86.627952px;}
.ws59{word-spacing:90.366624px;}
.ws1a6{word-spacing:103.288608px;}
.wsdf{word-spacing:112.564656px;}
.wse0{word-spacing:127.610928px;}
.wse1{word-spacing:166.606560px;}
.wsde{word-spacing:181.642176px;}
._b{margin-left:-181.743408px;}
._13{margin-left:-166.713120px;}
._11{margin-left:-127.717488px;}
._f{margin-left:-112.687200px;}
._c{margin-left:-106.698528px;}
._14{margin-left:-91.668240px;}
._12{margin-left:-52.811136px;}
._1e{margin-left:-46.753776px;}
._10{margin-left:-37.642320px;}
._4{margin-left:-20.016000px;}
._9{margin-left:-17.978400px;}
._8{margin-left:-10.975200px;}
._2{margin-left:-9.307200px;}
._5{margin-left:-7.992000px;}
._0{margin-left:-6.239016px;}
._7{margin-left:-5.126400px;}
._6{margin-left:-3.077784px;}
._3{margin-left:-1.512000px;}
._a{width:1.209456px;}
._1{width:12.835200px;}
._d{width:49.694256px;}
._e{width:75.076848px;}
._1d{width:127.562976px;}
._1c{width:145.614240px;}
._1a{width:289.411632px;}
._19{width:307.452240px;}
._15{width:484.848000px;}
._1b{width:511.882272px;}
._18{width:532.879920px;}
._16{width:610.972416px;}
._17{width:613.854864px;}
.fc3{color:rgb(64,108,108);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc4{color:rgb(217,32,35);}
.fc0{color:rgb(28,28,27);}
.fsa{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fsb{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;}
.fs9{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;}
.y15{bottom:56.746500px;}
.ycd{bottom:113.645298px;}
.y11d{bottom:115.072950px;}
.y1a7{bottom:117.612534px;}
.y5d{bottom:117.958632px;}
.y169{bottom:120.105750px;}
.yb6{bottom:122.276688px;}
.y154{bottom:122.631792px;}
.y104{bottom:126.240330px;}
.y6{bottom:127.151250px;}
.y1c9{bottom:128.419230px;}
.ycc{bottom:130.564686px;}
.y11c{bottom:132.351006px;}
.y1a6{bottom:134.890590px;}
.y5c{bottom:135.236688px;}
.y4a{bottom:139.186140px;}
.yb5{bottom:139.556220px;}
.y153{bottom:139.911324px;}
.y103{bottom:143.518386px;}
.y171{bottom:143.866326px;}
.y1c8{bottom:145.697286px;}
.ycb{bottom:147.842742px;}
.y11b{bottom:149.630538px;}
.y1a5{bottom:152.168646px;}
.y5b{bottom:152.516220px;}
.yb4{bottom:156.835752px;}
.y168{bottom:157.185930px;}
.y152{bottom:157.189380px;}
.y49{bottom:158.266500px;}
.y102{bottom:160.796442px;}
.y1c7{bottom:162.975342px;}
.y170{bottom:163.666506px;}
.yca{bottom:165.122274px;}
.y11a{bottom:166.908594px;}
.y1a4{bottom:169.448178px;}
.y5a{bottom:169.795752px;}
.yb3{bottom:174.115284px;}
.y151{bottom:174.468912px;}
.y48{bottom:176.986650px;}
.y101{bottom:178.074498px;}
.y16f{bottom:179.506650px;}
.y1c6{bottom:180.253398px;}
.yc9{bottom:182.400330px;}
.y119{bottom:184.186650px;}
.y1a3{bottom:186.727710px;}
.y59{bottom:187.073808px;}
.yb2{bottom:191.394816px;}
.y150{bottom:191.748444px;}
.y167{bottom:193.906470px;}
.y47{bottom:194.293464px;}
.y100{bottom:195.352554px;}
.y16e{bottom:196.426500px;}
.y1c5{bottom:197.532930px;}
.yc8{bottom:199.678386px;}
.y118{bottom:200.745492px;}
.y1a2{bottom:204.005766px;}
.y58{bottom:204.353340px;}
.yb1{bottom:208.314204px;}
.y14f{bottom:209.026500px;}
.y46{bottom:211.571520px;}
.yff{bottom:212.271942px;}
.y1c4{bottom:214.810986px;}
.y117{bottom:216.225996px;}
.yc7{bottom:216.956442px;}
.y22b{bottom:220.906650px;}
.y1a1{bottom:220.925154px;}
.y57{bottom:221.632872px;}
.yb0{bottom:225.592260px;}
.y14e{bottom:226.666500px;}
.y45{bottom:228.851052px;}
.yfe{bottom:229.551474px;}
.y166{bottom:230.986650px;}
.y116{bottom:231.706500px;}
.y1c3{bottom:232.089042px;}
.yc6{bottom:234.234498px;}
.y1a0{bottom:238.204686px;}
.y56{bottom:238.912404px;}
.y22a{bottom:242.146650px;}
.yaf{bottom:242.871792px;}
.y8f{bottom:244.315614px;}
.y115{bottom:244.666650px;}
.y44{bottom:245.768964px;}
.yfd{bottom:246.829530px;}
.y14d{bottom:247.546500px;}
.y1c2{bottom:249.008430px;}
.yc5{bottom:251.512554px;}
.y19f{bottom:255.482742px;}
.y55{bottom:256.191936px;}
.yae{bottom:260.151324px;}
.y229{bottom:261.891708px;}
.y43{bottom:263.047020px;}
.yfc{bottom:264.109062px;}
.y1c1{bottom:266.287962px;}
.y165{bottom:267.346650px;}
.y14c{bottom:267.709380px;}
.yc4{bottom:268.792086px;}
.y19e{bottom:272.762274px;}
.y54{bottom:273.111324px;}
.y228{bottom:277.372212px;}
.yad{bottom:277.429380px;}
.y8e{bottom:279.594966px;}
.y42{bottom:280.325076px;}
.yfb{bottom:281.388594px;}
.y1f4{bottom:282.095484px;}
.y1c0{bottom:283.566018px;}
.y164{bottom:284.266500px;}
.y14b{bottom:284.988912px;}
.yc3{bottom:286.071618px;}
.y19d{bottom:290.041806px;}
.y53{bottom:290.389380px;}
.y227{bottom:292.852716px;}
.yac{bottom:294.708912px;}
.y8d{bottom:296.873022px;}
.y1f3{bottom:297.577320px;}
.y41{bottom:297.603132px;}
.yfa{bottom:298.666650px;}
.y1bf{bottom:300.845550px;}
.y14a{bottom:302.268444px;}
.yc2{bottom:303.349674px;}
.y19c{bottom:307.319862px;}
.y52{bottom:307.668912px;}
.y226{bottom:308.334552px;}
.yab{bottom:311.988444px;}
.y1f2{bottom:313.057824px;}
.y8c{bottom:314.151078px;}
.y40{bottom:314.881188px;}
.yf9{bottom:316.305780px;}
.y1be{bottom:318.123606px;}
.y149{bottom:319.546500px;}
.yc1{bottom:320.629206px;}
.y225{bottom:323.815056px;}
.y19b{bottom:324.597918px;}
.y51{bottom:324.948444px;}
.y1f1{bottom:328.538328px;}
.yaa{bottom:329.266500px;}
.y8b{bottom:331.430610px;}
.y3f{bottom:332.159244px;}
.yf8{bottom:335.026500px;}
.y1bd{bottom:335.401662px;}
.y148{bottom:336.826650px;}
.yc0{bottom:337.548594px;}
.y224{bottom:339.295560px;}
.y19a{bottom:341.875974px;}
.y50{bottom:342.226500px;}
.y1f0{bottom:344.020164px;}
.ya9{bottom:346.906500px;}
.y8a{bottom:348.710142px;}
.y3e{bottom:349.437300px;}
.y1bc{bottom:352.681194px;}
.yf7{bottom:353.753346px;}
.y223{bottom:354.777396px;}
.ybf{bottom:354.826650px;}
.y147{bottom:355.546500px;}
.y199{bottom:359.154030px;}
.y1ef{bottom:359.860308px;}
.ya8{bottom:365.266500px;}
.y89{bottom:365.988198px;}
.y3d{bottom:366.715356px;}
.y1bb{bottom:369.960726px;}
.y222{bottom:370.257900px;}
.yf6{bottom:371.032878px;}
.y146{bottom:372.832872px;}
.y1ee{bottom:375.340812px;}
.y198{bottom:376.433562px;}
.y4f{bottom:376.786506px;}
.y88{bottom:383.267730px;}
.y3c{bottom:383.993412px;}
.y221{bottom:386.098044px;}
.y1ba{bottom:387.240258px;}
.yf{bottom:388.075500px;}
.yf5{bottom:388.310934px;}
.ybe{bottom:389.746500px;}
.y145{bottom:390.110928px;}
.y1ed{bottom:390.822648px;}
.y4e{bottom:392.626650px;}
.y197{bottom:393.713094px;}
.y87{bottom:400.187118px;}
.ya7{bottom:400.548594px;}
.y3b{bottom:401.271468px;}
.y220{bottom:401.579880px;}
.y1b9{bottom:404.518314px;}
.yf4{bottom:405.590466px;}
.y1ec{bottom:406.303152px;}
.ybd{bottom:406.669488px;}
.y144{bottom:407.390460px;}
.ye{bottom:409.675500px;}
.y4d{bottom:409.906500px;}
.y196{bottom:410.631006px;}
.ya5{bottom:415.666650px;}
.y21f{bottom:417.060384px;}
.y86{bottom:417.466650px;}
.ya6{bottom:417.826650px;}
.ya4{bottom:417.831006px;}
.y3a{bottom:418.549524px;}
.y1eb{bottom:421.783656px;}
.y1b8{bottom:421.797846px;}
.yf3{bottom:422.869998px;}
.y143{bottom:424.669992px;}
.y195{bottom:427.910538px;}
.yd{bottom:431.275500px;}
.y21e{bottom:432.540888px;}
.ya3{bottom:435.110538px;}
.y85{bottom:435.466650px;}
.y39{bottom:435.468912px;}
.y1ea{bottom:437.265492px;}
.y1b7{bottom:439.077378px;}
.yf2{bottom:440.148054px;}
.y142{bottom:441.949524px;}
.y194{bottom:445.188594px;}
.y21d{bottom:448.022724px;}
.ya2{bottom:452.388594px;}
.y1e9{bottom:452.745996px;}
.y38{bottom:452.748444px;}
.y84{bottom:455.659404px;}
.y1b6{bottom:455.995290px;}
.yf1{bottom:457.427586px;}
.y141{bottom:459.229056px;}
.y193{bottom:462.466650px;}
.y21c{bottom:463.503228px;}
.y1e8{bottom:468.226500px;}
.ya1{bottom:469.666650px;}
.y37{bottom:470.026500px;}
.y83{bottom:472.938936px;}
.y1b5{bottom:473.274822px;}
.yf0{bottom:474.707118px;}
.y140{bottom:476.508588px;}
.y21b{bottom:478.983732px;}
.y192{bottom:480.106650px;}
.y1e7{bottom:485.146650px;}
.y36{bottom:488.026500px;}
.y82{bottom:490.216992px;}
.y1b4{bottom:490.554354px;}
.yc{bottom:491.179500px;}
.yef{bottom:491.986650px;}
.y13f{bottom:493.426500px;}
.y21a{bottom:494.465568px;}
.y191{bottom:498.844218px;}
.y1e6{bottom:505.666650px;}
.ya0{bottom:506.031684px;}
.y81{bottom:507.495048px;}
.y1b3{bottom:507.833886px;}
.y35{bottom:508.189674px;}
.yee{bottom:509.266500px;}
.y219{bottom:510.305712px;}
.y13e{bottom:511.066650px;}
.yb{bottom:512.779500px;}
.y190{bottom:516.122274px;}
.y9f{bottom:523.309740px;}
.y80{bottom:524.414436px;}
.y1b2{bottom:525.113418px;}
.y34{bottom:525.469206px;}
.y218{bottom:525.786216px;}
.y1e5{bottom:526.197918px;}
.yed{bottom:527.996220px;}
.y13d{bottom:529.786500px;}
.y18f{bottom:533.400330px;}
.ya{bottom:534.379500px;}
.y9e{bottom:540.589272px;}
.y217{bottom:541.266720px;}
.y1b1{bottom:542.392950px;}
.y33{bottom:542.748738px;}
.y1e4{bottom:543.477450px;}
.yec{bottom:545.275752px;}
.y13c{bottom:547.075902px;}
.y18e{bottom:550.678386px;}
.y9{bottom:555.979500px;}
.y216{bottom:556.748556px;}
.y9d{bottom:557.508660px;}
.y32{bottom:559.666650px;}
.y1b0{bottom:559.671006px;}
.y4c{bottom:560.024880px;}
.y1e3{bottom:560.755506px;}
.y7f{bottom:560.774220px;}
.yeb{bottom:562.555284px;}
.y13b{bottom:564.353958px;}
.y18d{bottom:567.597774px;}
.y215{bottom:572.229060px;}
.y1af{bottom:576.950538px;}
.y8{bottom:577.579500px;}
.y31{bottom:577.666650px;}
.y1e2{bottom:578.035038px;}
.y7e{bottom:578.052276px;}
.y4b{bottom:579.106860px;}
.yea{bottom:579.834816px;}
.y13a{bottom:581.633490px;}
.y18c{bottom:584.875830px;}
.y214{bottom:587.709564px;}
.y9c{bottom:593.868444px;}
.y1ae{bottom:594.228594px;}
.y1e1{bottom:595.314570px;}
.y7d{bottom:595.330332px;}
.ye9{bottom:597.114348px;}
.y30{bottom:597.842304px;}
.y139{bottom:598.913022px;}
.y7{bottom:599.179500px;}
.y18b{bottom:602.153886px;}
.y213{bottom:603.191400px;}
.y9b{bottom:611.151006px;}
.y1ad{bottom:611.506650px;}
.y1e0{bottom:612.232482px;}
.y7c{bottom:612.608388px;}
.y16d{bottom:613.305996px;}
.ye8{bottom:614.393880px;}
.y2f{bottom:615.121836px;}
.y138{bottom:616.191078px;}
.y212{bottom:618.671904px;}
.y18a{bottom:619.433418px;}
.y9a{bottom:628.430538px;}
.y16c{bottom:628.786500px;}
.y1ac{bottom:629.146500px;}
.y1df{bottom:629.510538px;}
.y7b{bottom:629.886444px;}
.ye7{bottom:631.673412px;}
.y2e{bottom:632.401368px;}
.y137{bottom:633.470610px;}
.y211{bottom:634.512048px;}
.y189{bottom:636.712950px;}
.y99{bottom:645.708594px;}
.y16b{bottom:646.066650px;}
.y1de{bottom:646.788594px;}
.y1ab{bottom:648.945816px;}
.ye6{bottom:648.951468px;}
.y2d{bottom:649.680900px;}
.y210{bottom:649.993884px;}
.y136{bottom:650.389998px;}
.y188{bottom:653.991006px;}
.y98{bottom:662.986650px;}
.y1dd{bottom:664.066650px;}
.y20f{bottom:665.474388px;}
.y7a{bottom:665.886084px;}
.ye5{bottom:666.229524px;}
.y2c{bottom:666.960432px;}
.y135{bottom:667.668054px;}
.y1aa{bottom:668.745996px;}
.y187{bottom:671.270538px;}
.y20e{bottom:680.954892px;}
.y1dc{bottom:682.066650px;}
.ye4{bottom:683.148912px;}
.y79{bottom:683.165616px;}
.y2b{bottom:683.878344px;}
.y1a9{bottom:684.226500px;}
.y134{bottom:684.947586px;}
.y186{bottom:688.548594px;}
.y5{bottom:689.592150px;}
.y20d{bottom:696.436728px;}
.y163{bottom:696.826650px;}
.y97{bottom:699.351150px;}
.ye3{bottom:700.428444px;}
.y78{bottom:700.445148px;}
.y2a{bottom:701.157876px;}
.y1a8{bottom:701.532894px;}
.y133{bottom:702.227118px;}
.y1db{bottom:702.586650px;}
.y185{bottom:705.826650px;}
.y20c{bottom:711.917232px;}
.y96{bottom:716.270538px;}
.ye2{bottom:717.706500px;}
.y77{bottom:717.723204px;}
.y29{bottom:718.435932px;}
.y132{bottom:719.506650px;}
.y4{bottom:719.592750px;}
.y162{bottom:720.586650px;}
.y184{bottom:723.111936px;}
.y1da{bottom:723.127956px;}
.y20b{bottom:727.397736px;}
.y95{bottom:733.548594px;}
.y76{bottom:735.002736px;}
.ye1{bottom:735.346500px;}
.y28{bottom:735.715464px;}
.y131{bottom:737.146500px;}
.y183{bottom:740.391468px;}
.y1d9{bottom:740.407488px;}
.y20a{bottom:742.879572px;}
.y161{bottom:742.906650px;}
.y94{bottom:750.826650px;}
.y75{bottom:752.280792px;}
.y27{bottom:752.994996px;}
.ye0{bottom:754.075752px;}
.y130{bottom:755.866500px;}
.y182{bottom:757.669524px;}
.y1d8{bottom:757.687020px;}
.y209{bottom:758.719716px;}
.y160{bottom:765.226500px;}
.y74{bottom:769.558848px;}
.y26{bottom:770.274528px;}
.ydf{bottom:771.355284px;}
.y12f{bottom:773.159640px;}
.y208{bottom:774.200220px;}
.y181{bottom:774.588912px;}
.y1d7{bottom:774.604932px;}
.y3{bottom:781.284450px;}
.y114{bottom:783.592404px;}
.y73{bottom:786.838380px;}
.y93{bottom:787.186650px;}
.y25{bottom:787.552584px;}
.yde{bottom:788.634816px;}
.y207{bottom:789.680724px;}
.y12e{bottom:790.439172px;}
.y180{bottom:791.868444px;}
.y1d6{bottom:791.884464px;}
.y113{bottom:800.871936px;}
.y24{bottom:804.832116px;}
.y206{bottom:805.162560px;}
.ydd{bottom:805.914348px;}
.y12d{bottom:807.357084px;}
.y17f{bottom:809.146500px;}
.y1d5{bottom:809.163996px;}
.y15f{bottom:809.506500px;}
.y2{bottom:811.285050px;}
.y112{bottom:818.151468px;}
.y205{bottom:820.643064px;}
.y92{bottom:821.746506px;}
.y23{bottom:822.111648px;}
.ydc{bottom:823.193880px;}
.y72{bottom:823.198164px;}
.y12c{bottom:824.636616px;}
.y17e{bottom:826.426500px;}
.y1d4{bottom:826.442052px;}
.y15e{bottom:831.826500px;}
.y111{bottom:835.429524px;}
.y204{bottom:836.123568px;}
.y91{bottom:837.586650px;}
.y22{bottom:839.389704px;}
.ydb{bottom:840.473412px;}
.y71{bottom:840.477696px;}
.y1{bottom:841.285650px;}
.y12b{bottom:841.916148px;}
.y17d{bottom:843.718632px;}
.y1d3{bottom:843.721584px;}
.y203{bottom:851.605404px;}
.y110{bottom:852.348912px;}
.y15d{bottom:854.146500px;}
.y90{bottom:854.517630px;}
.y21{bottom:856.669236px;}
.yda{bottom:857.391324px;}
.y70{bottom:857.395608px;}
.y12a{bottom:859.194204px;}
.y17c{bottom:860.998164px;}
.y1d2{bottom:861.001116px;}
.y202{bottom:867.085908px;}
.y10f{bottom:869.628444px;}
.y20{bottom:873.588624px;}
.yd9{bottom:874.670856px;}
.y6f{bottom:874.675140px;}
.y15c{bottom:876.466500px;}
.y129{bottom:876.473736px;}
.y17b{bottom:878.277696px;}
.y1d1{bottom:878.280648px;}
.y201{bottom:882.566412px;}
.y10e{bottom:886.906500px;}
.yd8{bottom:891.950388px;}
.y6e{bottom:891.954672px;}
.y128{bottom:893.751792px;}
.y17a{bottom:895.557228px;}
.y1d0{bottom:895.560180px;}
.y200{bottom:898.406556px;}
.y15b{bottom:898.786500px;}
.y10d{bottom:903.465852px;}
.y1f{bottom:908.866500px;}
.yd7{bottom:909.228444px;}
.y6d{bottom:909.232728px;}
.y127{bottom:911.029848px;}
.y179{bottom:912.836760px;}
.y1cf{bottom:912.839712px;}
.y1ff{bottom:913.888392px;}
.y10c{bottom:919.305996px;}
.y1e{bottom:925.426356px;}
.yd6{bottom:926.506500px;}
.y6c{bottom:926.512260px;}
.y15a{bottom:927.946500px;}
.y126{bottom:928.309380px;}
.y1fe{bottom:929.368896px;}
.y178{bottom:930.116292px;}
.y1ce{bottom:930.117768px;}
.y10b{bottom:934.786500px;}
.y1d{bottom:941.266500px;}
.y6b{bottom:943.791792px;}
.yd5{bottom:944.506500px;}
.y1fd{bottom:944.849400px;}
.y125{bottom:945.588912px;}
.y177{bottom:947.394348px;}
.y1cd{bottom:947.395824px;}
.y10a{bottom:954.226650px;}
.y1c{bottom:957.468774px;}
.y1fc{bottom:960.331236px;}
.y6a{bottom:961.069848px;}
.y124{bottom:962.868444px;}
.ybc{bottom:963.589380px;}
.yd4{bottom:964.306500px;}
.y159{bottom:964.312260px;}
.y176{bottom:964.313736px;}
.y1cc{bottom:964.315212px;}
.y1b{bottom:974.386686px;}
.y1fb{bottom:975.811740px;}
.y109{bottom:976.186500px;}
.y69{bottom:978.349380px;}
.y123{bottom:980.146500px;}
.ybb{bottom:980.868912px;}
.y158{bottom:981.591792px;}
.y175{bottom:981.593268px;}
.yd3{bottom:981.608574px;}
.y1fa{bottom:991.292244px;}
.y1a{bottom:992.745924px;}
.y68{bottom:995.628912px;}
.y122{bottom:997.426500px;}
.yba{bottom:998.148444px;}
.y108{bottom:998.506500px;}
.y157{bottom:998.869848px;}
.y1cb{bottom:998.871324px;}
.y174{bottom:998.872800px;}
.yd2{bottom:998.888106px;}
.y1f9{bottom:1006.774080px;}
.y67{bottom:1012.908444px;}
.yb9{bottom:1015.426500px;}
.y121{bottom:1016.146500px;}
.y156{bottom:1016.149380px;}
.y1ca{bottom:1016.150856px;}
.y173{bottom:1016.152332px;}
.yd1{bottom:1016.166162px;}
.y19{bottom:1016.866500px;}
.y107{bottom:1020.826500px;}
.y1f8{bottom:1022.614224px;}
.y66{bottom:1030.186500px;}
.y155{bottom:1033.428912px;}
.y172{bottom:1033.430388px;}
.y120{bottom:1033.434246px;}
.yd0{bottom:1033.445694px;}
.y1f7{bottom:1038.094728px;}
.y18{bottom:1040.626650px;}
.y106{bottom:1043.146500px;}
.y65{bottom:1047.466140px;}
.yb8{bottom:1050.708444px;}
.y11f{bottom:1050.713778px;}
.ycf{bottom:1050.725226px;}
.y1f6{bottom:1053.575232px;}
.y17{bottom:1061.506650px;}
.y105{bottom:1065.466500px;}
.y16a{bottom:1066.545390px;}
.y64{bottom:1066.546500px;}
.yb7{bottom:1067.986500px;}
.y11e{bottom:1067.993310px;}
.yce{bottom:1068.004758px;}
.y1f5{bottom:1069.057068px;}
.y16{bottom:1082.386650px;}
.y63{bottom:1085.626500px;}
.y14{bottom:1106.866770px;}
.y62{bottom:1110.106770px;}
.y61{bottom:1123.426626px;}
.y13{bottom:1126.666950px;}
.y60{bottom:1137.106446px;}
.y5f{bottom:1155.826524px;}
.y12{bottom:1160.866950px;}
.y5e{bottom:1175.986884px;}
.y11{bottom:1197.587100px;}
.h12{height:28.324688px;}
.h14{height:34.595859px;}
.h11{height:34.619062px;}
.h6{height:35.640000px;}
.hf{height:38.789297px;}
.h9{height:38.815312px;}
.hc{height:42.982734px;}
.h7{height:43.011562px;}
.h13{height:45.448891px;}
.h10{height:45.462954px;}
.he{height:47.176172px;}
.h15{height:47.207813px;}
.ha{height:47.988281px;}
.h5{height:52.148438px;}
.hd{height:52.417969px;}
.h8{height:53.586563px;}
.hb{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;}
.x5{left:108.447600px;}
.x15{left:116.923116px;}
.x8{left:131.095728px;}
.xc{left:135.448068px;}
.x3{left:161.575500px;}
.x7{left:204.891000px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.xb{left:310.497000px;}
.x6{left:374.247000px;}
.x12{left:407.284464px;}
.x13{left:421.197000px;}
.x4{left:433.944000px;}
.x9{left:473.487060px;}
.x16{left:481.963044px;}
.xe{left:500.488500px;}
.xf{left:527.487554px;}
.x10{left:727.954500px;}
.x11{left:741.898500px;}
.xd{left:765.987888px;}
.x14{left:768.237000px;}
.xa{left:786.237000px;}
@media print{
.v3{vertical-align:-7.695488pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.761515pt;}
.v1{vertical-align:24.863467pt;}
.ls4d{letter-spacing:-0.012800pt;}
.ls5a{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls1e{letter-spacing:0.012800pt;}
.ls36{letter-spacing:0.038016pt;}
.ls2d{letter-spacing:0.044928pt;}
.ls33{letter-spacing:0.190080pt;}
.ls34{letter-spacing:0.198528pt;}
.ls48{letter-spacing:0.199424pt;}
.ls32{letter-spacing:0.206976pt;}
.ls3{letter-spacing:0.207872pt;}
.ls1d{letter-spacing:0.230144pt;}
.ls23{letter-spacing:0.236544pt;}
.ls49{letter-spacing:0.241408pt;}
.ls57{letter-spacing:0.246656pt;}
.ls22{letter-spacing:0.247893pt;}
.ls4b{letter-spacing:0.251904pt;}
.ls6{letter-spacing:0.255744pt;}
.ls56{letter-spacing:0.257152pt;}
.ls5b{letter-spacing:0.265216pt;}
.ls58{letter-spacing:0.267648pt;}
.ls50{letter-spacing:0.269952pt;}
.ls45{letter-spacing:0.272896pt;}
.ls51{letter-spacing:0.274688pt;}
.ls52{letter-spacing:0.279424pt;}
.ls59{letter-spacing:0.284160pt;}
.ls5{letter-spacing:0.288896pt;}
.ls4f{letter-spacing:0.293632pt;}
.ls46{letter-spacing:0.293888pt;}
.ls41{letter-spacing:0.298368pt;}
.ls44{letter-spacing:0.299136pt;}
.ls43{letter-spacing:0.303104pt;}
.ls37{letter-spacing:0.305280pt;}
.ls1c{letter-spacing:0.307840pt;}
.ls42{letter-spacing:0.312576pt;}
.ls35{letter-spacing:0.317312pt;}
.ls2f{letter-spacing:0.320128pt;}
.ls20{letter-spacing:0.322048pt;}
.ls3a{letter-spacing:0.326784pt;}
.ls2a{letter-spacing:0.330624pt;}
.ls1b{letter-spacing:0.331520pt;}
.ls2c{letter-spacing:0.335872pt;}
.ls3e{letter-spacing:0.336256pt;}
.ls2e{letter-spacing:0.341120pt;}
.ls40{letter-spacing:0.345728pt;}
.lsa{letter-spacing:0.346368pt;}
.ls3d{letter-spacing:0.350464pt;}
.ls10{letter-spacing:0.351616pt;}
.ls31{letter-spacing:0.355840pt;}
.lsd{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.ls18{letter-spacing:0.362112pt;}
.ls8{letter-spacing:0.367360pt;}
.ls15{letter-spacing:0.372608pt;}
.lsc{letter-spacing:0.377856pt;}
.lsb{letter-spacing:0.383104pt;}
.ls11{letter-spacing:0.388352pt;}
.lse{letter-spacing:0.393600pt;}
.ls21{letter-spacing:0.398848pt;}
.lsf{letter-spacing:0.404096pt;}
.ls16{letter-spacing:0.409344pt;}
.ls27{letter-spacing:0.414592pt;}
.ls13{letter-spacing:0.419840pt;}
.ls1a{letter-spacing:0.425088pt;}
.ls47{letter-spacing:0.426240pt;}
.ls29{letter-spacing:0.430336pt;}
.ls28{letter-spacing:0.435584pt;}
.ls3b{letter-spacing:0.435712pt;}
.ls12{letter-spacing:0.440832pt;}
.ls17{letter-spacing:0.446080pt;}
.ls1f{letter-spacing:0.449280pt;}
.ls30{letter-spacing:0.451328pt;}
.ls9{letter-spacing:0.456576pt;}
.ls54{letter-spacing:0.461824pt;}
.ls53{letter-spacing:0.466560pt;}
.ls4a{letter-spacing:0.472320pt;}
.ls24{letter-spacing:0.478080pt;}
.ls55{letter-spacing:0.482816pt;}
.ls4{letter-spacing:0.498560pt;}
.ls19{letter-spacing:0.518400pt;}
.ls7{letter-spacing:0.524800pt;}
.ls4e{letter-spacing:0.529920pt;}
.ls39{letter-spacing:0.535680pt;}
.ls38{letter-spacing:0.541440pt;}
.ls25{letter-spacing:0.558720pt;}
.ls14{letter-spacing:27.384064pt;}
.ls26{letter-spacing:56.877824pt;}
.ls2b{letter-spacing:57.869696pt;}
.ls3f{letter-spacing:77.443072pt;}
.ls3c{letter-spacing:116.505600pt;}
.ws4{word-spacing:-15.114240pt;}
.ws5{word-spacing:-15.046016pt;}
.wsdc{word-spacing:-15.035520pt;}
.wsda{word-spacing:-15.004032pt;}
.ws12e{word-spacing:-14.998784pt;}
.wsdd{word-spacing:-14.988288pt;}
.wsdb{word-spacing:-14.983040pt;}
.ws41{word-spacing:-14.956800pt;}
.ws12d{word-spacing:-14.951552pt;}
.ws177{word-spacing:-13.436032pt;}
.ws2{word-spacing:-11.409067pt;}
.ws42{word-spacing:-9.652608pt;}
.ws3{word-spacing:-8.896000pt;}
.ws40{word-spacing:-7.472640pt;}
.wsd7{word-spacing:-0.483072pt;}
.wsd8{word-spacing:-0.383616pt;}
.wsd9{word-spacing:-0.364672pt;}
.ws11e{word-spacing:-0.317312pt;}
.ws9{word-spacing:-0.278144pt;}
.wsb5{word-spacing:-0.247680pt;}
.wsff{word-spacing:-0.230400pt;}
.ws124{word-spacing:-0.224640pt;}
.wsc1{word-spacing:-0.213120pt;}
.ws5f{word-spacing:-0.194176pt;}
.wscb{word-spacing:-0.172800pt;}
.wsb4{word-spacing:-0.167936pt;}
.ws14a{word-spacing:-0.167040pt;}
.ws5a{word-spacing:-0.162688pt;}
.ws6e{word-spacing:-0.157440pt;}
.ws31{word-spacing:-0.155520pt;}
.ws112{word-spacing:-0.152192pt;}
.wse9{word-spacing:-0.151552pt;}
.ws13d{word-spacing:-0.146944pt;}
.ws12a{word-spacing:-0.146816pt;}
.wsf1{word-spacing:-0.144000pt;}
.wsca{word-spacing:-0.141696pt;}
.wsd6{word-spacing:-0.136448pt;}
.ws6{word-spacing:-0.132608pt;}
.ws143{word-spacing:-0.131200pt;}
.ws6d{word-spacing:-0.127872pt;}
.ws1b{word-spacing:-0.125952pt;}
.wsa{word-spacing:-0.123136pt;}
.ws114{word-spacing:-0.120960pt;}
.wsb{word-spacing:-0.120704pt;}
.ws128{word-spacing:-0.118400pt;}
.ws83{word-spacing:-0.115456pt;}
.ws7{word-spacing:-0.113664pt;}
.ws37{word-spacing:-0.110208pt;}
.ws44{word-spacing:-0.109824pt;}
.ws129{word-spacing:-0.108928pt;}
.wsfe{word-spacing:-0.104960pt;}
.ws19a{word-spacing:-0.104192pt;}
.wsba{word-spacing:-0.099712pt;}
.ws125{word-spacing:-0.094720pt;}
.ws50{word-spacing:-0.094464pt;}
.ws126{word-spacing:-0.089984pt;}
.wsa1{word-spacing:-0.083968pt;}
.ws1a4{word-spacing:-0.080512pt;}
.wsbf{word-spacing:-0.078720pt;}
.ws43{word-spacing:-0.076032pt;}
.ws127{word-spacing:-0.071040pt;}
.ws8{word-spacing:-0.066816pt;}
.ws0{word-spacing:-0.064000pt;}
.ws113{word-spacing:-0.062976pt;}
.ws1a2{word-spacing:-0.061568pt;}
.ws45{word-spacing:-0.059136pt;}
.ws84{word-spacing:-0.028800pt;}
.ws1{word-spacing:0.000000pt;}
.ws63{word-spacing:0.006400pt;}
.wsaa{word-spacing:0.012800pt;}
.wsf0{word-spacing:0.026240pt;}
.ws11a{word-spacing:0.110208pt;}
.ws131{word-spacing:0.125952pt;}
.wse3{word-spacing:0.131200pt;}
.ws62{word-spacing:0.136448pt;}
.ws1a0{word-spacing:0.203648pt;}
.ws70{word-spacing:0.246656pt;}
.ws6f{word-spacing:0.278144pt;}
.wsab{word-spacing:0.283392pt;}
.wsa4{word-spacing:0.367360pt;}
.ws167{word-spacing:0.404096pt;}
.wsc0{word-spacing:0.572032pt;}
.wsc6{word-spacing:0.635008pt;}
.ws171{word-spacing:0.656000pt;}
.wsfa{word-spacing:0.760960pt;}
.ws5c{word-spacing:0.850176pt;}
.ws4a{word-spacing:0.960384pt;}
.ws8a{word-spacing:0.976128pt;}
.wsa6{word-spacing:1.018112pt;}
.ws154{word-spacing:1.123072pt;}
.ws153{word-spacing:1.138816pt;}
.wsce{word-spacing:1.149312pt;}
.ws10{word-spacing:1.175552pt;}
.ws142{word-spacing:1.254272pt;}
.ws115{word-spacing:1.322496pt;}
.wsd1{word-spacing:1.364480pt;}
.ws3b{word-spacing:1.401216pt;}
.ws140{word-spacing:1.479936pt;}
.wsd{word-spacing:1.511424pt;}
.ws150{word-spacing:1.527168pt;}
.ws8b{word-spacing:1.558656pt;}
.ws17e{word-spacing:1.574400pt;}
.ws1a1{word-spacing:1.600768pt;}
.ws18e{word-spacing:1.684608pt;}
.ws173{word-spacing:1.689856pt;}
.ws2b{word-spacing:1.705600pt;}
.ws39{word-spacing:1.747584pt;}
.ws110{word-spacing:1.831552pt;}
.wsea{word-spacing:1.873536pt;}
.ws20{word-spacing:1.957504pt;}
.ws6a{word-spacing:1.973248pt;}
.wsaf{word-spacing:1.988992pt;}
.ws12{word-spacing:2.004736pt;}
.ws137{word-spacing:2.025728pt;}
.ws2f{word-spacing:2.078208pt;}
.wsf3{word-spacing:2.298624pt;}
.ws119{word-spacing:2.340608pt;}
.ws23{word-spacing:2.372096pt;}
.wsc8{word-spacing:2.377344pt;}
.ws47{word-spacing:2.382592pt;}
.wsef{word-spacing:2.419328pt;}
.ws100{word-spacing:2.445568pt;}
.wse8{word-spacing:2.481664pt;}
.ws32{word-spacing:2.770560pt;}
.ws19{word-spacing:2.776192pt;}
.ws101{word-spacing:2.807680pt;}
.ws170{word-spacing:2.818176pt;}
.wse6{word-spacing:2.833920pt;}
.wsb8{word-spacing:2.860160pt;}
.ws148{word-spacing:2.865408pt;}
.wsa2{word-spacing:2.875904pt;}
.wsa8{word-spacing:2.886400pt;}
.ws49{word-spacing:2.917888pt;}
.ws74{word-spacing:3.001856pt;}
.ws73{word-spacing:3.043840pt;}
.wse2{word-spacing:3.285248pt;}
.ws9b{word-spacing:3.295744pt;}
.ws144{word-spacing:3.316736pt;}
.ws1ba{word-spacing:3.447808pt;}
.ws17{word-spacing:3.563392pt;}
.ws4e{word-spacing:3.747072pt;}
.ws15c{word-spacing:3.846784pt;}
.ws191{word-spacing:3.869312pt;}
.ws1b6{word-spacing:3.992448pt;}
.ws18a{word-spacing:4.051456pt;}
.wsfd{word-spacing:4.172160pt;}
.ws61{word-spacing:4.198400pt;}
.wsa5{word-spacing:4.292864pt;}
.ws1bb{word-spacing:4.499200pt;}
.ws2e{word-spacing:4.508032pt;}
.ws4d{word-spacing:4.581504pt;}
.ws102{word-spacing:4.607744pt;}
.ws155{word-spacing:4.654976pt;}
.ws89{word-spacing:4.749440pt;}
.wsf4{word-spacing:4.754688pt;}
.ws166{word-spacing:4.812416pt;}
.wsbe{word-spacing:4.822912pt;}
.ws97{word-spacing:4.833408pt;}
.ws14{word-spacing:4.906880pt;}
.ws1b7{word-spacing:4.977536pt;}
.ws12c{word-spacing:5.095936pt;}
.ws16{word-spacing:5.106304pt;}
.wsf9{word-spacing:5.185024pt;}
.ws109{word-spacing:5.279488pt;}
.ws181{word-spacing:5.347712pt;}
.ws94{word-spacing:5.368704pt;}
.ws1a8{word-spacing:5.417984pt;}
.ws194{word-spacing:5.422720pt;}
.wsc{word-spacing:5.489408pt;}
.ws38{word-spacing:5.494656pt;}
.ws80{word-spacing:5.557632pt;}
.ws120{word-spacing:5.673088pt;}
.ws106{word-spacing:5.725568pt;}
.ws16e{word-spacing:5.793792pt;}
.ws1aa{word-spacing:5.830016pt;}
.ws46{word-spacing:5.919744pt;}
.ws18{word-spacing:5.961728pt;}
.ws13e{word-spacing:6.029952pt;}
.wscd{word-spacing:6.035200pt;}
.ws190{word-spacing:6.128384pt;}
.ws13f{word-spacing:6.150656pt;}
.ws186{word-spacing:6.208384pt;}
.ws10b{word-spacing:6.218880pt;}
.ws184{word-spacing:6.318592pt;}
.ws9c{word-spacing:6.376320pt;}
.wse7{word-spacing:6.476032pt;}
.ws145{word-spacing:6.544256pt;}
.ws13{word-spacing:6.596736pt;}
.ws2d{word-spacing:6.617728pt;}
.wsf{word-spacing:6.685952pt;}
.wse{word-spacing:6.696448pt;}
.ws1b1{word-spacing:6.739328pt;}
.ws8c{word-spacing:6.827648pt;}
.wscf{word-spacing:6.859136pt;}
.ws193{word-spacing:6.905088pt;}
.ws85{word-spacing:6.932608pt;}
.ws19d{word-spacing:6.971392pt;}
.ws180{word-spacing:7.090048pt;}
.ws35{word-spacing:7.100544pt;}
.ws199{word-spacing:7.137152pt;}
.ws118{word-spacing:7.257984pt;}
.ws10e{word-spacing:7.284224pt;}
.ws14e{word-spacing:7.294720pt;}
.wsd2{word-spacing:7.305216pt;}
.wsd3{word-spacing:7.310464pt;}
.ws11b{word-spacing:7.452160pt;}
.ws15{word-spacing:7.457408pt;}
.ws4f{word-spacing:7.525632pt;}
.wsb2{word-spacing:7.662080pt;}
.ws1f{word-spacing:7.698816pt;}
.wsd0{word-spacing:7.856256pt;}
.ws1af{word-spacing:8.060672pt;}
.ws11{word-spacing:8.092416pt;}
.ws8d{word-spacing:8.228864pt;}
.ws4c{word-spacing:8.255104pt;}
.ws17b{word-spacing:8.302336pt;}
.ws1e{word-spacing:8.381056pt;}
.ws6c{word-spacing:8.486912pt;}
.ws1b5{word-spacing:8.510592pt;}
.wsf7{word-spacing:8.685440pt;}
.ws17c{word-spacing:8.737920pt;}
.ws17f{word-spacing:8.764160pt;}
.ws116{word-spacing:8.816640pt;}
.wsad{word-spacing:8.832384pt;}
.ws1ac{word-spacing:8.913152pt;}
.ws1ae{word-spacing:8.969984pt;}
.ws11c{word-spacing:9.037056pt;}
.ws1b3{word-spacing:9.069440pt;}
.wsee{word-spacing:9.304704pt;}
.ws90{word-spacing:9.525120pt;}
.ws176{word-spacing:9.546112pt;}
.wsc3{word-spacing:9.561856pt;}
.ws8f{word-spacing:9.661568pt;}
.ws66{word-spacing:9.771776pt;}
.ws16c{word-spacing:9.834752pt;}
.ws1b8{word-spacing:10.026112pt;}
.ws189{word-spacing:10.076160pt;}
.ws54{word-spacing:10.160128pt;}
.ws135{word-spacing:10.186368pt;}
.ws9a{word-spacing:10.501248pt;}
.ws18f{word-spacing:10.516992pt;}
.ws15d{word-spacing:10.543232pt;}
.ws79{word-spacing:10.553728pt;}
.ws7a{word-spacing:10.616704pt;}
.ws7c{word-spacing:10.711168pt;}
.ws12b{word-spacing:10.907008pt;}
.wsb1{word-spacing:11.167744pt;}
.wsa0{word-spacing:11.188736pt;}
.wsb0{word-spacing:11.340928pt;}
.ws141{word-spacing:11.351424pt;}
.ws78{word-spacing:11.393408pt;}
.ws1c{word-spacing:11.414400pt;}
.ws77{word-spacing:11.451136pt;}
.ws117{word-spacing:11.488000pt;}
.ws123{word-spacing:11.671552pt;}
.ws19f{word-spacing:11.830528pt;}
.ws5e{word-spacing:12.012672pt;}
.ws30{word-spacing:12.205440pt;}
.ws1a{word-spacing:12.212096pt;}
.ws3c{word-spacing:12.233088pt;}
.wse4{word-spacing:12.338048pt;}
.wse5{word-spacing:12.547968pt;}
.ws69{word-spacing:12.805120pt;}
.ws197{word-spacing:12.877184pt;}
.ws51{word-spacing:12.983552pt;}
.ws48{word-spacing:12.999296pt;}
.wsc7{word-spacing:13.004544pt;}
.ws24{word-spacing:13.120000pt;}
.ws174{word-spacing:13.445376pt;}
.ws3f{word-spacing:13.503104pt;}
.ws132{word-spacing:13.566080pt;}
.ws133{word-spacing:13.660544pt;}
.ws134{word-spacing:13.676288pt;}
.ws182{word-spacing:13.943936pt;}
.ws2c{word-spacing:14.101376pt;}
.ws76{word-spacing:14.190592pt;}
.ws13a{word-spacing:14.195840pt;}
.ws16b{word-spacing:14.232576pt;}
.ws12f{word-spacing:14.316544pt;}
.ws15f{word-spacing:14.379520pt;}
.ws19e{word-spacing:14.487424pt;}
.ws138{word-spacing:14.636672pt;}
.wsc2{word-spacing:14.689152pt;}
.ws6b{word-spacing:14.704896pt;}
.wsa9{word-spacing:14.715392pt;}
.ws96{word-spacing:14.720640pt;}
.ws17a{word-spacing:14.741632pt;}
.ws147{word-spacing:14.767872pt;}
.ws19c{word-spacing:14.804736pt;}
.ws10a{word-spacing:14.993536pt;}
.ws25{word-spacing:15.129984pt;}
.ws169{word-spacing:15.292672pt;}
.ws130{word-spacing:15.481600pt;}
.wscc{word-spacing:15.591808pt;}
.wsed{word-spacing:15.639040pt;}
.ws10c{word-spacing:15.649536pt;}
.ws98{word-spacing:15.749248pt;}
.ws1bd{word-spacing:15.775616pt;}
.ws9e{word-spacing:15.896192pt;}
.ws136{word-spacing:16.163840pt;}
.wsc9{word-spacing:16.541696pt;}
.wsf8{word-spacing:16.604672pt;}
.ws82{word-spacing:16.893312pt;}
.ws146{word-spacing:16.930048pt;}
.ws81{word-spacing:16.961536pt;}
.ws1b0{word-spacing:16.973824pt;}
.ws108{word-spacing:17.071744pt;}
.ws149{word-spacing:17.260672pt;}
.ws179{word-spacing:17.271168pt;}
.ws192{word-spacing:17.310080pt;}
.ws1a7{word-spacing:17.433216pt;}
.ws10f{word-spacing:17.664768pt;}
.ws162{word-spacing:17.675264pt;}
.ws18c{word-spacing:17.691008pt;}
.ws160{word-spacing:17.727744pt;}
.wsc5{word-spacing:17.748736pt;}
.ws198{word-spacing:17.982592pt;}
.ws1be{word-spacing:18.290432pt;}
.ws29{word-spacing:18.315520pt;}
.ws105{word-spacing:18.399488pt;}
.ws11d{word-spacing:18.420480pt;}
.ws104{word-spacing:18.451968pt;}
.ws67{word-spacing:18.572672pt;}
.wsfc{word-spacing:18.593664pt;}
.ws7f{word-spacing:18.798336pt;}
.ws71{word-spacing:18.924288pt;}
.ws14c{word-spacing:19.134208pt;}
.ws14d{word-spacing:19.401856pt;}
.ws122{word-spacing:19.585536pt;}
.ws16d{word-spacing:20.026368pt;}
.wsbd{word-spacing:20.141824pt;}
.ws188{word-spacing:20.147072pt;}
.wsac{word-spacing:20.178560pt;}
.wsb6{word-spacing:20.204800pt;}
.wsb7{word-spacing:20.210048pt;}
.ws1a3{word-spacing:20.374272pt;}
.ws87{word-spacing:21.033984pt;}
.ws3a{word-spacing:21.175680pt;}
.ws19b{word-spacing:21.179392pt;}
.ws36{word-spacing:21.443328pt;}
.ws1b9{word-spacing:21.468288pt;}
.ws152{word-spacing:21.621760pt;}
.ws5b{word-spacing:21.968128pt;}
.ws103{word-spacing:22.088832pt;}
.ws93{word-spacing:22.109824pt;}
.wsfb{word-spacing:22.319744pt;}
.ws17d{word-spacing:22.540160pt;}
.ws2a{word-spacing:22.550656pt;}
.ws107{word-spacing:22.734336pt;}
.ws99{word-spacing:22.760576pt;}
.ws9f{word-spacing:23.070208pt;}
.ws1d{word-spacing:23.096448pt;}
.wsae{word-spacing:23.101696pt;}
.ws14b{word-spacing:23.133184pt;}
.ws163{word-spacing:23.621248pt;}
.ws16a{word-spacing:24.156544pt;}
.ws158{word-spacing:24.230016pt;}
.ws185{word-spacing:24.319232pt;}
.ws18b{word-spacing:24.943744pt;}
.ws121{word-spacing:24.959488pt;}
.ws178{word-spacing:25.405568pt;}
.wsf6{word-spacing:25.515776pt;}
.ws1a9{word-spacing:25.981696pt;}
.ws1ad{word-spacing:26.218496pt;}
.wsc4{word-spacing:26.602112pt;}
.ws60{word-spacing:26.785792pt;}
.ws21{word-spacing:26.990464pt;}
.ws95{word-spacing:27.011456pt;}
.ws22{word-spacing:27.053440pt;}
.ws28{word-spacing:27.079680pt;}
.ws3e{word-spacing:27.562496pt;}
.wsd5{word-spacing:28.055808pt;}
.wsa7{word-spacing:28.333952pt;}
.ws3d{word-spacing:28.816768pt;}
.ws7b{word-spacing:28.874496pt;}
.ws15a{word-spacing:28.916480pt;}
.ws88{word-spacing:29.483264pt;}
.ws159{word-spacing:29.593472pt;}
.ws196{word-spacing:29.751552pt;}
.ws195{word-spacing:29.765760pt;}
.ws65{word-spacing:30.071040pt;}
.ws14f{word-spacing:30.107776pt;}
.wsf5{word-spacing:30.910720pt;}
.ws183{word-spacing:31.005184pt;}
.ws11f{word-spacing:31.199360pt;}
.ws27{word-spacing:31.613952pt;}
.ws68{word-spacing:32.458880pt;}
.ws187{word-spacing:32.621568pt;}
.ws13c{word-spacing:32.946944pt;}
.ws156{word-spacing:33.109632pt;}
.ws1ab{word-spacing:33.497728pt;}
.ws175{word-spacing:33.702656pt;}
.ws172{word-spacing:33.991296pt;}
.wsb9{word-spacing:34.484608pt;}
.ws16f{word-spacing:34.521344pt;}
.ws57{word-spacing:34.794240pt;}
.ws1bc{word-spacing:34.861696pt;}
.ws165{word-spacing:34.920192pt;}
.wseb{word-spacing:35.497472pt;}
.ws157{word-spacing:37.024640pt;}
.ws13b{word-spacing:37.764608pt;}
.ws91{word-spacing:37.801344pt;}
.ws161{word-spacing:37.901056pt;}
.ws33{word-spacing:39.003136pt;}
.ws86{word-spacing:39.428224pt;}
.ws139{word-spacing:39.816576pt;}
.ws7d{word-spacing:39.884800pt;}
.ws7e{word-spacing:39.926784pt;}
.ws18d{word-spacing:40.656256pt;}
.ws168{word-spacing:41.380480pt;}
.ws151{word-spacing:41.432960pt;}
.ws92{word-spacing:41.999744pt;}
.ws34{word-spacing:43.379968pt;}
.ws75{word-spacing:44.550272pt;}
.ws1b4{word-spacing:44.627328pt;}
.ws64{word-spacing:46.649472pt;}
.wsd4{word-spacing:47.908992pt;}
.ws56{word-spacing:50.800640pt;}
.ws53{word-spacing:51.267712pt;}
.ws52{word-spacing:51.362176pt;}
.ws26{word-spacing:51.619328pt;}
.ws15b{word-spacing:51.792512pt;}
.wsbb{word-spacing:51.829248pt;}
.wsbc{word-spacing:51.839744pt;}
.ws58{word-spacing:52.018176pt;}
.ws15e{word-spacing:52.654848pt;}
.ws10d{word-spacing:53.272448pt;}
.wsec{word-spacing:54.741888pt;}
.ws72{word-spacing:56.652160pt;}
.wsa3{word-spacing:57.423616pt;}
.ws111{word-spacing:58.436480pt;}
.wsb3{word-spacing:58.457472pt;}
.ws8e{word-spacing:59.055744pt;}
.ws9d{word-spacing:60.252288pt;}
.wsf2{word-spacing:60.519936pt;}
.ws55{word-spacing:65.316608pt;}
.ws1a5{word-spacing:66.379776pt;}
.ws164{word-spacing:68.129536pt;}
.ws4b{word-spacing:71.881856pt;}
.ws5d{word-spacing:72.947200pt;}
.ws1b2{word-spacing:77.002624pt;}
.ws59{word-spacing:80.325888pt;}
.ws1a6{word-spacing:91.812096pt;}
.wsdf{word-spacing:100.057472pt;}
.wse0{word-spacing:113.431936pt;}
.wse1{word-spacing:148.094720pt;}
.wsde{word-spacing:161.459712pt;}
._b{margin-left:-161.549696pt;}
._13{margin-left:-148.189440pt;}
._11{margin-left:-113.526656pt;}
._f{margin-left:-100.166400pt;}
._c{margin-left:-94.843136pt;}
._14{margin-left:-81.482880pt;}
._12{margin-left:-46.943232pt;}
._1e{margin-left:-41.558912pt;}
._10{margin-left:-33.459840pt;}
._4{margin-left:-17.792000pt;}
._9{margin-left:-15.980800pt;}
._8{margin-left:-9.755733pt;}
._2{margin-left:-8.273067pt;}
._5{margin-left:-7.104000pt;}
._0{margin-left:-5.545792pt;}
._7{margin-left:-4.556800pt;}
._6{margin-left:-2.735808pt;}
._3{margin-left:-1.344000pt;}
._a{width:1.075072pt;}
._1{width:11.409067pt;}
._d{width:44.172672pt;}
._e{width:66.734976pt;}
._1d{width:113.389312pt;}
._1c{width:129.434880pt;}
._1a{width:257.254784pt;}
._19{width:273.290880pt;}
._15{width:430.976000pt;}
._1b{width:455.006464pt;}
._18{width:473.671040pt;}
._16{width:543.086592pt;}
._17{width:545.648768pt;}
.fsa{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fsb{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;}
.fs9{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;}
.y15{bottom:50.441333pt;}
.ycd{bottom:101.018043pt;}
.y11d{bottom:102.287067pt;}
.y1a7{bottom:104.544475pt;}
.y5d{bottom:104.852117pt;}
.y169{bottom:106.760667pt;}
.yb6{bottom:108.690389pt;}
.y154{bottom:109.006037pt;}
.y104{bottom:112.213627pt;}
.y6{bottom:113.023333pt;}
.y1c9{bottom:114.150427pt;}
.ycc{bottom:116.057499pt;}
.y11c{bottom:117.645339pt;}
.y1a6{bottom:119.902747pt;}
.y5c{bottom:120.210389pt;}
.y4a{bottom:123.721013pt;}
.yb5{bottom:124.049973pt;}
.y153{bottom:124.365621pt;}
.y103{bottom:127.571899pt;}
.y171{bottom:127.881179pt;}
.y1c8{bottom:129.508699pt;}
.ycb{bottom:131.415771pt;}
.y11b{bottom:133.004923pt;}
.y1a5{bottom:135.261019pt;}
.y5b{bottom:135.569973pt;}
.yb4{bottom:139.409557pt;}
.y168{bottom:139.720827pt;}
.y152{bottom:139.723893pt;}
.y49{bottom:140.681333pt;}
.y102{bottom:142.930171pt;}
.y1c7{bottom:144.866971pt;}
.y170{bottom:145.481339pt;}
.yca{bottom:146.775355pt;}
.y11a{bottom:148.363195pt;}
.y1a4{bottom:150.620603pt;}
.y5a{bottom:150.929557pt;}
.yb3{bottom:154.769141pt;}
.y151{bottom:155.083477pt;}
.y48{bottom:157.321467pt;}
.y101{bottom:158.288443pt;}
.y16f{bottom:159.561467pt;}
.y1c6{bottom:160.225243pt;}
.yc9{bottom:162.133627pt;}
.y119{bottom:163.721467pt;}
.y1a3{bottom:165.980187pt;}
.y59{bottom:166.287829pt;}
.yb2{bottom:170.128725pt;}
.y150{bottom:170.443061pt;}
.y167{bottom:172.361307pt;}
.y47{bottom:172.705301pt;}
.y100{bottom:173.646715pt;}
.y16e{bottom:174.601333pt;}
.y1c5{bottom:175.584827pt;}
.yc8{bottom:177.491899pt;}
.y118{bottom:178.440437pt;}
.y1a2{bottom:181.338459pt;}
.y58{bottom:181.647413pt;}
.yb1{bottom:185.168181pt;}
.y14f{bottom:185.801333pt;}
.y46{bottom:188.063573pt;}
.yff{bottom:188.686171pt;}
.y1c4{bottom:190.943099pt;}
.y117{bottom:192.200885pt;}
.yc7{bottom:192.850171pt;}
.y22b{bottom:196.361467pt;}
.y1a1{bottom:196.377915pt;}
.y57{bottom:197.006997pt;}
.yb0{bottom:200.526453pt;}
.y14e{bottom:201.481333pt;}
.y45{bottom:203.423157pt;}
.yfe{bottom:204.045755pt;}
.y166{bottom:205.321467pt;}
.y116{bottom:205.961333pt;}
.y1c3{bottom:206.301371pt;}
.yc6{bottom:208.208443pt;}
.y1a0{bottom:211.737499pt;}
.y56{bottom:212.366581pt;}
.y22a{bottom:215.241467pt;}
.yaf{bottom:215.886037pt;}
.y8f{bottom:217.169435pt;}
.y115{bottom:217.481467pt;}
.y44{bottom:218.461301pt;}
.yfd{bottom:219.404027pt;}
.y14d{bottom:220.041333pt;}
.y1c2{bottom:221.340827pt;}
.yc5{bottom:223.566715pt;}
.y19f{bottom:227.095771pt;}
.y55{bottom:227.726165pt;}
.yae{bottom:231.245621pt;}
.y229{bottom:232.792629pt;}
.y43{bottom:233.819573pt;}
.yfc{bottom:234.763611pt;}
.y1c1{bottom:236.700411pt;}
.y165{bottom:237.641467pt;}
.y14c{bottom:237.963893pt;}
.yc4{bottom:238.926299pt;}
.y19e{bottom:242.455355pt;}
.y54{bottom:242.765621pt;}
.y228{bottom:246.553077pt;}
.yad{bottom:246.603893pt;}
.y8e{bottom:248.528859pt;}
.y42{bottom:249.177845pt;}
.yfb{bottom:250.123195pt;}
.y1f4{bottom:250.751541pt;}
.y1c0{bottom:252.058683pt;}
.y164{bottom:252.681333pt;}
.y14b{bottom:253.323477pt;}
.yc3{bottom:254.285883pt;}
.y19d{bottom:257.814939pt;}
.y53{bottom:258.123893pt;}
.y227{bottom:260.313525pt;}
.yac{bottom:261.963477pt;}
.y8d{bottom:263.887131pt;}
.y1f3{bottom:264.513173pt;}
.y41{bottom:264.536117pt;}
.yfa{bottom:265.481467pt;}
.y1bf{bottom:267.418267pt;}
.y14a{bottom:268.683061pt;}
.yc2{bottom:269.644155pt;}
.y19c{bottom:273.173211pt;}
.y52{bottom:273.483477pt;}
.y226{bottom:274.075157pt;}
.yab{bottom:277.323061pt;}
.y1f2{bottom:278.273621pt;}
.y8c{bottom:279.245403pt;}
.y40{bottom:279.894389pt;}
.yf9{bottom:281.160693pt;}
.y1be{bottom:282.776539pt;}
.y149{bottom:284.041333pt;}
.yc1{bottom:285.003739pt;}
.y225{bottom:287.835605pt;}
.y19b{bottom:288.531483pt;}
.y51{bottom:288.843061pt;}
.y1f1{bottom:292.034069pt;}
.yaa{bottom:292.681333pt;}
.y8b{bottom:294.604987pt;}
.y3f{bottom:295.252661pt;}
.yf8{bottom:297.801333pt;}
.y1bd{bottom:298.134811pt;}
.y148{bottom:299.401467pt;}
.yc0{bottom:300.043195pt;}
.y224{bottom:301.596053pt;}
.y19a{bottom:303.889755pt;}
.y50{bottom:304.201333pt;}
.y1f0{bottom:305.795701pt;}
.ya9{bottom:308.361333pt;}
.y8a{bottom:309.964571pt;}
.y3e{bottom:310.610933pt;}
.y1bc{bottom:313.494395pt;}
.yf7{bottom:314.447419pt;}
.y223{bottom:315.357685pt;}
.ybf{bottom:315.401467pt;}
.y147{bottom:316.041333pt;}
.y199{bottom:319.248027pt;}
.y1ef{bottom:319.875829pt;}
.ya8{bottom:324.681333pt;}
.y89{bottom:325.322843pt;}
.y3d{bottom:325.969205pt;}
.y1bb{bottom:328.853979pt;}
.y222{bottom:329.118133pt;}
.yf6{bottom:329.807003pt;}
.y146{bottom:331.406997pt;}
.y1ee{bottom:333.636277pt;}
.y198{bottom:334.607611pt;}
.y4f{bottom:334.921339pt;}
.y88{bottom:340.682427pt;}
.y3c{bottom:341.327477pt;}
.y221{bottom:343.198261pt;}
.y1ba{bottom:344.213563pt;}
.yf{bottom:344.956000pt;}
.yf5{bottom:345.165275pt;}
.ybe{bottom:346.441333pt;}
.y145{bottom:346.765269pt;}
.y1ed{bottom:347.397909pt;}
.y4e{bottom:349.001467pt;}
.y197{bottom:349.967195pt;}
.y87{bottom:355.721883pt;}
.ya7{bottom:356.043195pt;}
.y3b{bottom:356.685749pt;}
.y220{bottom:356.959893pt;}
.y1b9{bottom:359.571835pt;}
.yf4{bottom:360.524859pt;}
.y1ec{bottom:361.158357pt;}
.ybd{bottom:361.483989pt;}
.y144{bottom:362.124853pt;}
.ye{bottom:364.156000pt;}
.y4d{bottom:364.361333pt;}
.y196{bottom:365.005339pt;}
.ya5{bottom:369.481467pt;}
.y21f{bottom:370.720341pt;}
.y86{bottom:371.081467pt;}
.ya6{bottom:371.401467pt;}
.ya4{bottom:371.405339pt;}
.y3a{bottom:372.044021pt;}
.y1eb{bottom:374.918805pt;}
.y1b8{bottom:374.931419pt;}
.yf3{bottom:375.884443pt;}
.y143{bottom:377.484437pt;}
.y195{bottom:380.364923pt;}
.yd{bottom:383.356000pt;}
.y21e{bottom:384.480789pt;}
.ya3{bottom:386.764923pt;}
.y85{bottom:387.081467pt;}
.y39{bottom:387.083477pt;}
.y1ea{bottom:388.680437pt;}
.y1b7{bottom:390.291003pt;}
.yf2{bottom:391.242715pt;}
.y142{bottom:392.844021pt;}
.y194{bottom:395.723195pt;}
.y21d{bottom:398.242421pt;}
.ya2{bottom:402.123195pt;}
.y1e9{bottom:402.440885pt;}
.y38{bottom:402.443061pt;}
.y84{bottom:405.030581pt;}
.y1b6{bottom:405.329147pt;}
.yf1{bottom:406.602299pt;}
.y141{bottom:408.203605pt;}
.y193{bottom:411.081467pt;}
.y21c{bottom:412.002869pt;}
.y1e8{bottom:416.201333pt;}
.ya1{bottom:417.481467pt;}
.y37{bottom:417.801333pt;}
.y83{bottom:420.390165pt;}
.y1b5{bottom:420.688731pt;}
.yf0{bottom:421.961883pt;}
.y140{bottom:423.563189pt;}
.y21b{bottom:425.763317pt;}
.y192{bottom:426.761467pt;}
.y1e7{bottom:431.241467pt;}
.y36{bottom:433.801333pt;}
.y82{bottom:435.748437pt;}
.y1b4{bottom:436.048315pt;}
.yc{bottom:436.604000pt;}
.yef{bottom:437.321467pt;}
.y13f{bottom:438.601333pt;}
.y21a{bottom:439.524949pt;}
.y191{bottom:443.417083pt;}
.y1e6{bottom:449.481467pt;}
.ya0{bottom:449.805941pt;}
.y81{bottom:451.106709pt;}
.y1b3{bottom:451.407899pt;}
.y35{bottom:451.724155pt;}
.yee{bottom:452.681333pt;}
.y219{bottom:453.605077pt;}
.y13e{bottom:454.281467pt;}
.yb{bottom:455.804000pt;}
.y190{bottom:458.775355pt;}
.y9f{bottom:465.164213pt;}
.y80{bottom:466.146165pt;}
.y1b2{bottom:466.767483pt;}
.y34{bottom:467.083739pt;}
.y218{bottom:467.365525pt;}
.y1e5{bottom:467.731483pt;}
.yed{bottom:469.329973pt;}
.y13d{bottom:470.921333pt;}
.y18f{bottom:474.133627pt;}
.ya{bottom:475.004000pt;}
.y9e{bottom:480.523797pt;}
.y217{bottom:481.125973pt;}
.y1b1{bottom:482.127067pt;}
.y33{bottom:482.443323pt;}
.y1e4{bottom:483.091067pt;}
.yec{bottom:484.689557pt;}
.y13c{bottom:486.289691pt;}
.y18e{bottom:489.491899pt;}
.y9{bottom:494.204000pt;}
.y216{bottom:494.887605pt;}
.y9d{bottom:495.563253pt;}
.y32{bottom:497.481467pt;}
.y1b0{bottom:497.485339pt;}
.y4c{bottom:497.799893pt;}
.y1e3{bottom:498.449339pt;}
.y7f{bottom:498.465973pt;}
.yeb{bottom:500.049141pt;}
.y13b{bottom:501.647963pt;}
.y18d{bottom:504.531355pt;}
.y215{bottom:508.648053pt;}
.y1af{bottom:512.844923pt;}
.y8{bottom:513.404000pt;}
.y31{bottom:513.481467pt;}
.y1e2{bottom:513.808923pt;}
.y7e{bottom:513.824245pt;}
.y4b{bottom:514.761653pt;}
.yea{bottom:515.408725pt;}
.y13a{bottom:517.007547pt;}
.y18c{bottom:519.889627pt;}
.y214{bottom:522.408501pt;}
.y9c{bottom:527.883061pt;}
.y1ae{bottom:528.203195pt;}
.y1e1{bottom:529.168507pt;}
.y7d{bottom:529.182517pt;}
.ye9{bottom:530.768309pt;}
.y30{bottom:531.415381pt;}
.y139{bottom:532.367131pt;}
.y7{bottom:532.604000pt;}
.y18b{bottom:535.247899pt;}
.y213{bottom:536.170133pt;}
.y9b{bottom:543.245339pt;}
.y1ad{bottom:543.561467pt;}
.y1e0{bottom:544.206651pt;}
.y7c{bottom:544.540789pt;}
.y16d{bottom:545.160885pt;}
.ye8{bottom:546.127893pt;}
.y2f{bottom:546.774965pt;}
.y138{bottom:547.725403pt;}
.y212{bottom:549.930581pt;}
.y18a{bottom:550.607483pt;}
.y9a{bottom:558.604923pt;}
.y16c{bottom:558.921333pt;}
.y1ac{bottom:559.241333pt;}
.y1df{bottom:559.564923pt;}
.y7b{bottom:559.899061pt;}
.ye7{bottom:561.487477pt;}
.y2e{bottom:562.134549pt;}
.y137{bottom:563.084987pt;}
.y211{bottom:564.010709pt;}
.y189{bottom:565.967067pt;}
.y99{bottom:573.963195pt;}
.y16b{bottom:574.281467pt;}
.y1de{bottom:574.923195pt;}
.y1ab{bottom:576.840725pt;}
.ye6{bottom:576.845749pt;}
.y2d{bottom:577.494133pt;}
.y210{bottom:577.772341pt;}
.y136{bottom:578.124443pt;}
.y188{bottom:581.325339pt;}
.y98{bottom:589.321467pt;}
.y1dd{bottom:590.281467pt;}
.y20f{bottom:591.532789pt;}
.y7a{bottom:591.898741pt;}
.ye5{bottom:592.204021pt;}
.y2c{bottom:592.853717pt;}
.y135{bottom:593.482715pt;}
.y1aa{bottom:594.440885pt;}
.y187{bottom:596.684923pt;}
.y20e{bottom:605.293237pt;}
.y1dc{bottom:606.281467pt;}
.ye4{bottom:607.243477pt;}
.y79{bottom:607.258325pt;}
.y2b{bottom:607.891861pt;}
.y1a9{bottom:608.201333pt;}
.y134{bottom:608.842299pt;}
.y186{bottom:612.043195pt;}
.y5{bottom:612.970800pt;}
.y20d{bottom:619.054869pt;}
.y163{bottom:619.401467pt;}
.y97{bottom:621.645467pt;}
.ye3{bottom:622.603061pt;}
.y78{bottom:622.617909pt;}
.y2a{bottom:623.251445pt;}
.y1a8{bottom:623.584795pt;}
.y133{bottom:624.201883pt;}
.y1db{bottom:624.521467pt;}
.y185{bottom:627.401467pt;}
.y20c{bottom:632.815317pt;}
.y96{bottom:636.684923pt;}
.ye2{bottom:637.961333pt;}
.y77{bottom:637.976181pt;}
.y29{bottom:638.609717pt;}
.y132{bottom:639.561467pt;}
.y4{bottom:639.638000pt;}
.y162{bottom:640.521467pt;}
.y184{bottom:642.766165pt;}
.y1da{bottom:642.780405pt;}
.y20b{bottom:646.575765pt;}
.y95{bottom:652.043195pt;}
.y76{bottom:653.335765pt;}
.ye1{bottom:653.641333pt;}
.y28{bottom:653.969301pt;}
.y131{bottom:655.241333pt;}
.y183{bottom:658.125749pt;}
.y1d9{bottom:658.139989pt;}
.y20a{bottom:660.337397pt;}
.y161{bottom:660.361467pt;}
.y94{bottom:667.401467pt;}
.y75{bottom:668.694037pt;}
.y27{bottom:669.328885pt;}
.ye0{bottom:670.289557pt;}
.y130{bottom:671.881333pt;}
.y182{bottom:673.484021pt;}
.y1d8{bottom:673.499573pt;}
.y209{bottom:674.417525pt;}
.y160{bottom:680.201333pt;}
.y74{bottom:684.052309pt;}
.y26{bottom:684.688469pt;}
.ydf{bottom:685.649141pt;}
.y12f{bottom:687.253013pt;}
.y208{bottom:688.177973pt;}
.y181{bottom:688.523477pt;}
.y1d7{bottom:688.537717pt;}
.y3{bottom:694.475067pt;}
.y114{bottom:696.526581pt;}
.y73{bottom:699.411893pt;}
.y93{bottom:699.721467pt;}
.y25{bottom:700.046741pt;}
.yde{bottom:701.008725pt;}
.y207{bottom:701.938421pt;}
.y12e{bottom:702.612597pt;}
.y180{bottom:703.883061pt;}
.y1d6{bottom:703.897301pt;}
.y113{bottom:711.886165pt;}
.y24{bottom:715.406325pt;}
.y206{bottom:715.700053pt;}
.ydd{bottom:716.368309pt;}
.y12d{bottom:717.650741pt;}
.y17f{bottom:719.241333pt;}
.y1d5{bottom:719.256885pt;}
.y15f{bottom:719.561333pt;}
.y2{bottom:721.142267pt;}
.y112{bottom:727.245749pt;}
.y205{bottom:729.460501pt;}
.y92{bottom:730.441339pt;}
.y23{bottom:730.765909pt;}
.ydc{bottom:731.727893pt;}
.y72{bottom:731.731701pt;}
.y12c{bottom:733.010325pt;}
.y17e{bottom:734.601333pt;}
.y1d4{bottom:734.615157pt;}
.y15e{bottom:739.401333pt;}
.y111{bottom:742.604021pt;}
.y204{bottom:743.220949pt;}
.y91{bottom:744.521467pt;}
.y22{bottom:746.124181pt;}
.ydb{bottom:747.087477pt;}
.y71{bottom:747.091285pt;}
.y1{bottom:747.809467pt;}
.y12b{bottom:748.369909pt;}
.y17d{bottom:749.972117pt;}
.y1d3{bottom:749.974741pt;}
.y203{bottom:756.982581pt;}
.y110{bottom:757.643477pt;}
.y15d{bottom:759.241333pt;}
.y90{bottom:759.571227pt;}
.y21{bottom:761.483765pt;}
.yda{bottom:762.125621pt;}
.y70{bottom:762.129429pt;}
.y12a{bottom:763.728181pt;}
.y17c{bottom:765.331701pt;}
.y1d2{bottom:765.334325pt;}
.y202{bottom:770.743029pt;}
.y10f{bottom:773.003061pt;}
.y20{bottom:776.523221pt;}
.yd9{bottom:777.485205pt;}
.y6f{bottom:777.489013pt;}
.y15c{bottom:779.081333pt;}
.y129{bottom:779.087765pt;}
.y17b{bottom:780.691285pt;}
.y1d1{bottom:780.693909pt;}
.y201{bottom:784.503477pt;}
.y10e{bottom:788.361333pt;}
.yd8{bottom:792.844789pt;}
.y6e{bottom:792.848597pt;}
.y128{bottom:794.446037pt;}
.y17a{bottom:796.050869pt;}
.y1d0{bottom:796.053493pt;}
.y200{bottom:798.583605pt;}
.y15b{bottom:798.921333pt;}
.y10d{bottom:803.080757pt;}
.y1f{bottom:807.881333pt;}
.yd7{bottom:808.203061pt;}
.y6d{bottom:808.206869pt;}
.y127{bottom:809.804309pt;}
.y179{bottom:811.410453pt;}
.y1cf{bottom:811.413077pt;}
.y1ff{bottom:812.345237pt;}
.y10c{bottom:817.160885pt;}
.y1e{bottom:822.601205pt;}
.yd6{bottom:823.561333pt;}
.y6c{bottom:823.566453pt;}
.y15a{bottom:824.841333pt;}
.y126{bottom:825.163893pt;}
.y1fe{bottom:826.105685pt;}
.y178{bottom:826.770037pt;}
.y1ce{bottom:826.771349pt;}
.y10b{bottom:830.921333pt;}
.y1d{bottom:836.681333pt;}
.y6b{bottom:838.926037pt;}
.yd5{bottom:839.561333pt;}
.y1fd{bottom:839.866133pt;}
.y125{bottom:840.523477pt;}
.y177{bottom:842.128309pt;}
.y1cd{bottom:842.129621pt;}
.y10a{bottom:848.201467pt;}
.y1c{bottom:851.083355pt;}
.y1fc{bottom:853.627765pt;}
.y6a{bottom:854.284309pt;}
.y124{bottom:855.883061pt;}
.ybc{bottom:856.523893pt;}
.yd4{bottom:857.161333pt;}
.y159{bottom:857.166453pt;}
.y176{bottom:857.167765pt;}
.y1cc{bottom:857.169077pt;}
.y1b{bottom:866.121499pt;}
.y1fb{bottom:867.388213pt;}
.y109{bottom:867.721333pt;}
.y69{bottom:869.643893pt;}
.y123{bottom:871.241333pt;}
.ybb{bottom:871.883477pt;}
.y158{bottom:872.526037pt;}
.y175{bottom:872.527349pt;}
.yd3{bottom:872.540955pt;}
.y1fa{bottom:881.148661pt;}
.y1a{bottom:882.440821pt;}
.y68{bottom:885.003477pt;}
.y122{bottom:886.601333pt;}
.yba{bottom:887.243061pt;}
.y108{bottom:887.561333pt;}
.y157{bottom:887.884309pt;}
.y1cb{bottom:887.885621pt;}
.y174{bottom:887.886933pt;}
.yd2{bottom:887.900539pt;}
.y1f9{bottom:894.910293pt;}
.y67{bottom:900.363061pt;}
.yb9{bottom:902.601333pt;}
.y121{bottom:903.241333pt;}
.y156{bottom:903.243893pt;}
.y1ca{bottom:903.245205pt;}
.y173{bottom:903.246517pt;}
.yd1{bottom:903.258811pt;}
.y19{bottom:903.881333pt;}
.y107{bottom:907.401333pt;}
.y1f8{bottom:908.990421pt;}
.y66{bottom:915.721333pt;}
.y155{bottom:918.603477pt;}
.y172{bottom:918.604789pt;}
.y120{bottom:918.608219pt;}
.yd0{bottom:918.618395pt;}
.y1f7{bottom:922.750869pt;}
.y18{bottom:925.001467pt;}
.y106{bottom:927.241333pt;}
.y65{bottom:931.081013pt;}
.yb8{bottom:933.963061pt;}
.y11f{bottom:933.967803pt;}
.ycf{bottom:933.977979pt;}
.y1f6{bottom:936.511317pt;}
.y17{bottom:943.561467pt;}
.y105{bottom:947.081333pt;}
.y16a{bottom:948.040347pt;}
.y64{bottom:948.041333pt;}
.yb7{bottom:949.321333pt;}
.y11e{bottom:949.327387pt;}
.yce{bottom:949.337563pt;}
.y1f5{bottom:950.272949pt;}
.y16{bottom:962.121467pt;}
.y63{bottom:965.001333pt;}
.y14{bottom:983.881573pt;}
.y62{bottom:986.761573pt;}
.y61{bottom:998.601445pt;}
.y13{bottom:1001.481733pt;}
.y60{bottom:1010.761285pt;}
.y5f{bottom:1027.401355pt;}
.y12{bottom:1031.881733pt;}
.y5e{bottom:1045.321675pt;}
.y11{bottom:1064.521867pt;}
.h12{height:25.177500pt;}
.h14{height:30.751875pt;}
.h11{height:30.772500pt;}
.h6{height:31.680000pt;}
.hf{height:34.479375pt;}
.h9{height:34.502500pt;}
.hc{height:38.206875pt;}
.h7{height:38.232500pt;}
.h13{height:40.399015pt;}
.h10{height:40.411515pt;}
.he{height:41.934375pt;}
.h15{height:41.962500pt;}
.ha{height:42.656250pt;}
.h5{height:46.354167pt;}
.hd{height:46.593750pt;}
.h8{height:47.632500pt;}
.hb{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;}
.x5{left:96.397867pt;}
.x15{left:103.931659pt;}
.x8{left:116.529536pt;}
.xc{left:120.398283pt;}
.x3{left:143.622667pt;}
.x7{left:182.125333pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.xb{left:275.997333pt;}
.x6{left:332.664000pt;}
.x12{left:362.030635pt;}
.x13{left:374.397333pt;}
.x4{left:385.728000pt;}
.x9{left:420.877387pt;}
.x16{left:428.411595pt;}
.xe{left:444.878667pt;}
.xf{left:468.877826pt;}
.x10{left:647.070667pt;}
.x11{left:659.465333pt;}
.xd{left:680.878123pt;}
.x14{left:682.877333pt;}
.xa{left:698.877333pt;}
}


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