
/* 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_15f18fd15f9b.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_33ad1e89ebe9.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_b29e4e7e8b80.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_abca4d0c7ee0.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_2b96cec9988f.woff")format("woff");}.ff6{font-family:ff6;line-height:0.951172;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_ae8713fa8b30.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_e082f9793819.woff")format("woff");}.ff8{font-family:ff8;line-height:0.961426;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_24c6df6d12b8.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_abca4d0c7ee0.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_6341fcb44ed3.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_478e634540a9.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_8ecc44603d82.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_14dd01fff406.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_abca4d0c7ee0.woff")format("woff");}.ff10{font-family:ff10;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:ff11;src:url("fonts/font_0016_18e6789456bd.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_bafb53294b3b.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_8ecc44603d82.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_713de19e4167.woff")format("woff");}.ff14{font-family:ff14;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:ff15;src:url("fonts/font_0020_efec6867caa9.woff")format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_abca4d0c7ee0.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_5726ae25375b.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_503e628fcb14.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_8ecc44603d82.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_9857b06ba7bf.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.926758;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_abca4d0c7ee0.woff")format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url("fonts/font_0027_678729d69557.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_f1460498ad1a.woff")format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url("fonts/font_0029_8ecc44603d82.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_2f3011283e57.woff")format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url("fonts/font_0031_abca4d0c7ee0.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_d681a602fb93.woff")format("woff");}.ff21{font-family:ff21;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:ff22;src:url("fonts/font_0033_a13a54de8129.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_084c0036f29c.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_493dae5a93cf.woff")format("woff");}.ff24{font-family:ff24;line-height:0.923340;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_0f89614a5da0.woff")format("woff");}.ff25{font-family:ff25;line-height:0.944000;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_abca4d0c7ee0.woff")format("woff");}.ff26{font-family:ff26;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:ff27;src:url("fonts/font_0038_d6c129e09dd4.woff")format("woff");}.ff27{font-family:ff27;line-height:0.951172;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_9b713f7934ca.woff")format("woff");}.ff28{font-family:ff28;line-height:0.740723;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_084c0036f29c.woff")format("woff");}.ff29{font-family:ff29;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;}
.m3{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);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:24.481704px;}
.v1{vertical-align:27.971400px;}
.v3{vertical-align:30.216072px;}
.v2{vertical-align:38.882304px;}
.ls23{letter-spacing:-0.021600px;}
.ls3c{letter-spacing:-0.014400px;}
.ls3b{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls9{letter-spacing:0.018000px;}
.ls18{letter-spacing:0.067822px;}
.ls17{letter-spacing:0.108720px;}
.ls25{letter-spacing:0.128304px;}
.ls45{letter-spacing:0.153504px;}
.ls3a{letter-spacing:0.171216px;}
.ls39{letter-spacing:0.200736px;}
.ls27{letter-spacing:0.204336px;}
.ls1b{letter-spacing:0.209088px;}
.ls46{letter-spacing:0.212544px;}
.ls1a{letter-spacing:0.213840px;}
.ls24{letter-spacing:0.218592px;}
.ls2a{letter-spacing:0.232848px;}
.ls26{letter-spacing:0.237600px;}
.ls19{letter-spacing:0.238717px;}
.ls3{letter-spacing:0.250560px;}
.ls44{letter-spacing:0.265680px;}
.ls29{letter-spacing:0.278880px;}
.ls34{letter-spacing:0.283392px;}
.ls20{letter-spacing:0.295200px;}
.ls4a{letter-spacing:0.312912px;}
.ls51{letter-spacing:0.314352px;}
.ls53{letter-spacing:0.325008px;}
.ls48{letter-spacing:0.335664px;}
.ls32{letter-spacing:0.336528px;}
.ls43{letter-spacing:0.340992px;}
.ls1e{letter-spacing:0.346320px;}
.ls49{letter-spacing:0.348336px;}
.ls38{letter-spacing:0.351648px;}
.ls41{letter-spacing:0.354240px;}
.ls1f{letter-spacing:0.356976px;}
.ls31{letter-spacing:0.366048px;}
.ls4e{letter-spacing:0.367632px;}
.ls2c{letter-spacing:0.371952px;}
.ls1d{letter-spacing:0.372960px;}
.ls21{letter-spacing:0.377856px;}
.ls52{letter-spacing:0.383616px;}
.ls16{letter-spacing:0.383760px;}
.ls54{letter-spacing:0.388944px;}
.ls11{letter-spacing:0.389664px;}
.ls7{letter-spacing:0.395568px;}
.ls4c{letter-spacing:0.399600px;}
.ls30{letter-spacing:0.400320px;}
.ls2d{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.ls14{letter-spacing:0.407376px;}
.ls47{letter-spacing:0.410256px;}
.ls4{letter-spacing:0.412320px;}
.ls13{letter-spacing:0.413280px;}
.lsa{letter-spacing:0.419184px;}
.lsc{letter-spacing:0.425088px;}
.ls28{letter-spacing:0.430992px;}
.lsd{letter-spacing:0.436896px;}
.lse{letter-spacing:0.442800px;}
.ls10{letter-spacing:0.448704px;}
.lsf{letter-spacing:0.454608px;}
.ls8{letter-spacing:0.460512px;}
.ls2e{letter-spacing:0.466416px;}
.ls1c{letter-spacing:0.472320px;}
.ls12{letter-spacing:0.478224px;}
.ls2f{letter-spacing:0.484128px;}
.ls15{letter-spacing:0.490032px;}
.ls5{letter-spacing:0.495936px;}
.ls35{letter-spacing:0.501840px;}
.ls2b{letter-spacing:0.507744px;}
.lsb{letter-spacing:0.513648px;}
.ls36{letter-spacing:0.519552px;}
.ls40{letter-spacing:0.525456px;}
.ls33{letter-spacing:0.537264px;}
.ls3d{letter-spacing:0.549072px;}
.ls42{letter-spacing:0.554976px;}
.ls3f{letter-spacing:0.576720px;}
.ls6{letter-spacing:0.590400px;}
.ls4f{letter-spacing:0.615600px;}
.ls37{letter-spacing:0.622080px;}
.ls3e{letter-spacing:0.678960px;}
.ls50{letter-spacing:1.092240px;}
.ls4d{letter-spacing:198.167760px;}
.ls4b{letter-spacing:205.370640px;}
.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;}
.ws43{word-spacing:-16.920864px;}
.ws44{word-spacing:-16.785072px;}
.wsb1{word-spacing:-16.696512px;}
.ws2{word-spacing:-12.835200px;}
.ws3{word-spacing:-10.008000px;}
.ws42{word-spacing:-8.406720px;}
.wsf7{word-spacing:-0.259200px;}
.ws170{word-spacing:-0.253872px;}
.ws1b7{word-spacing:-0.246240px;}
.ws161{word-spacing:-0.236160px;}
.wsfd{word-spacing:-0.230256px;}
.wsd7{word-spacing:-0.224352px;}
.ws1eb{word-spacing:-0.213120px;}
.ws109{word-spacing:-0.212544px;}
.ws10e{word-spacing:-0.206640px;}
.ws1cc{word-spacing:-0.200736px;}
.ws196{word-spacing:-0.197136px;}
.ws9{word-spacing:-0.188928px;}
.wsa2{word-spacing:-0.183024px;}
.wsc{word-spacing:-0.177120px;}
.ws114{word-spacing:-0.171216px;}
.wsa{word-spacing:-0.170496px;}
.wsba{word-spacing:-0.165312px;}
.ws1f8{word-spacing:-0.165168px;}
.ws74{word-spacing:-0.159408px;}
.ws186{word-spacing:-0.154512px;}
.ws14{word-spacing:-0.153504px;}
.ws6{word-spacing:-0.149184px;}
.wsd4{word-spacing:-0.147600px;}
.wsd{word-spacing:-0.141696px;}
.wsfe{word-spacing:-0.138528px;}
.wsd5{word-spacing:-0.135792px;}
.wsb{word-spacing:-0.129888px;}
.ws110{word-spacing:-0.127872px;}
.ws7d{word-spacing:-0.123984px;}
.ws7{word-spacing:-0.122544px;}
.wsab{word-spacing:-0.118080px;}
.ws26{word-spacing:-0.112176px;}
.ws8{word-spacing:-0.108576px;}
.ws31{word-spacing:-0.106272px;}
.ws11c{word-spacing:-0.100368px;}
.ws158{word-spacing:-0.094464px;}
.ws45{word-spacing:-0.090288px;}
.ws11b{word-spacing:-0.088560px;}
.ws38{word-spacing:-0.085536px;}
.ws29{word-spacing:-0.082656px;}
.ws1f4{word-spacing:-0.079920px;}
.ws56{word-spacing:-0.076752px;}
.ws0{word-spacing:-0.072000px;}
.wsb9{word-spacing:-0.070848px;}
.wsa8{word-spacing:-0.047232px;}
.ws173{word-spacing:-0.035424px;}
.ws1{word-spacing:0.000000px;}
.ws27{word-spacing:0.007200px;}
.ws34{word-spacing:0.009504px;}
.ws7e{word-spacing:0.014400px;}
.wsd8{word-spacing:0.017712px;}
.ws18{word-spacing:0.088560px;}
.ws19{word-spacing:0.112176px;}
.wsa3{word-spacing:0.236160px;}
.ws1b6{word-spacing:0.330624px;}
.wsa4{word-spacing:0.336528px;}
.ws66{word-spacing:0.419184px;}
.ws10{word-spacing:0.525456px;}
.ws128{word-spacing:0.549072px;}
.ws1af{word-spacing:0.608112px;}
.wsd0{word-spacing:0.619920px;}
.ws15{word-spacing:0.661248px;}
.wsc1{word-spacing:0.673056px;}
.wse2{word-spacing:0.702576px;}
.ws16{word-spacing:0.738000px;}
.ws65{word-spacing:0.808848px;}
.ws3d{word-spacing:0.944640px;}
.ws1c4{word-spacing:0.962352px;}
.ws1bd{word-spacing:1.086336px;}
.wsf2{word-spacing:1.092240px;}
.ws4c{word-spacing:1.198512px;}
.ws115{word-spacing:1.251648px;}
.ws2f{word-spacing:1.298880px;}
.ws8d{word-spacing:1.328400px;}
.wsca{word-spacing:1.481904px;}
.ws1cf{word-spacing:1.517328px;}
.ws54{word-spacing:1.529136px;}
.wsaa{word-spacing:1.723968px;}
.wsf6{word-spacing:1.747584px;}
.wsf5{word-spacing:1.788912px;}
.wsee{word-spacing:1.818432px;}
.ws162{word-spacing:1.977840px;}
.ws1c7{word-spacing:2.095920px;}
.wsb4{word-spacing:2.131344px;}
.ws175{word-spacing:2.149056px;}
.ws111{word-spacing:2.196288px;}
.ws189{word-spacing:2.225808px;}
.ws13c{word-spacing:2.243520px;}
.ws1a6{word-spacing:2.290752px;}
.ws122{word-spacing:2.326176px;}
.ws9b{word-spacing:2.349792px;}
.ws13a{word-spacing:2.420640px;}
.ws174{word-spacing:2.467872px;}
.ws1f7{word-spacing:2.568096px;}
.ws19b{word-spacing:2.615472px;}
.ws138{word-spacing:2.680416px;}
.ws151{word-spacing:2.739456px;}
.ws37{word-spacing:2.798928px;}
.ws16f{word-spacing:2.810304px;}
.ws188{word-spacing:2.987424px;}
.wsef{word-spacing:3.093696px;}
.wsc6{word-spacing:3.135024px;}
.ws30{word-spacing:3.152736px;}
.ws113{word-spacing:3.158640px;}
.ws5b{word-spacing:3.164544px;}
.ws5d{word-spacing:3.176352px;}
.ws70{word-spacing:3.194064px;}
.ws5a{word-spacing:3.211776px;}
.wsa5{word-spacing:3.247200px;}
.ws59{word-spacing:3.259008px;}
.ws5c{word-spacing:3.264912px;}
.ws1c0{word-spacing:3.282624px;}
.ws11{word-spacing:3.359376px;}
.ws1e{word-spacing:3.400704px;}
.ws1d{word-spacing:3.459744px;}
.ws18b{word-spacing:3.530592px;}
.ws1ed{word-spacing:3.601728px;}
.ws18a{word-spacing:3.654576px;}
.ws4b{word-spacing:3.684096px;}
.ws1bc{word-spacing:3.766752px;}
.ws1a4{word-spacing:3.778560px;}
.ws116{word-spacing:3.932064px;}
.ws1b4{word-spacing:4.073760px;}
.ws154{word-spacing:4.091472px;}
.ws130{word-spacing:4.168224px;}
.ws1b{word-spacing:4.185936px;}
.ws8c{word-spacing:4.274496px;}
.ws112{word-spacing:4.345344px;}
.ws99{word-spacing:4.410288px;}
.ws150{word-spacing:4.534272px;}
.ws1c5{word-spacing:4.575600px;}
.ws159{word-spacing:4.841280px;}
.ws1b0{word-spacing:4.876704px;}
.ws106{word-spacing:4.900320px;}
.ws13b{word-spacing:4.929840px;}
.ws1ac{word-spacing:4.935744px;}
.wsb8{word-spacing:5.053824px;}
.ws136{word-spacing:5.154192px;}
.ws6c{word-spacing:5.230944px;}
.ws1d6{word-spacing:5.272272px;}
.ws9f{word-spacing:5.354928px;}
.wseb{word-spacing:5.508432px;}
.ws5e{word-spacing:5.591088px;}
.wsb3{word-spacing:5.596992px;}
.ws48{word-spacing:5.638320px;}
.ws4a{word-spacing:5.644224px;}
.ws49{word-spacing:5.685552px;}
.ws125{word-spacing:5.939424px;}
.ws6f{word-spacing:5.951232px;}
.ws17{word-spacing:6.069312px;}
.ws71{word-spacing:6.157872px;}
.wsc0{word-spacing:6.340896px;}
.wsec{word-spacing:6.388128px;}
.wse7{word-spacing:6.399936px;}
.ws101{word-spacing:6.535728px;}
.ws181{word-spacing:6.630192px;}
.ws12b{word-spacing:6.878160px;}
.ws179{word-spacing:6.925392px;}
.ws6a{word-spacing:7.031664px;}
.ws14b{word-spacing:7.064928px;}
.ws103{word-spacing:7.067088px;}
.ws1d9{word-spacing:7.108416px;}
.wsf8{word-spacing:7.120224px;}
.ws3e{word-spacing:7.143840px;}
.ws13{word-spacing:7.155648px;}
.wsc5{word-spacing:7.226496px;}
.ws21{word-spacing:7.261920px;}
.wsf0{word-spacing:7.315056px;}
.ws182{word-spacing:7.397712px;}
.ws92{word-spacing:7.704720px;}
.wsf4{word-spacing:7.734240px;}
.wsf9{word-spacing:7.787376px;}
.ws1a9{word-spacing:7.899552px;}
.wsd1{word-spacing:7.917264px;}
.wsad{word-spacing:7.923168px;}
.wsdf{word-spacing:8.053056px;}
.ws135{word-spacing:8.082576px;}
.ws98{word-spacing:8.088480px;}
.ws20{word-spacing:8.177040px;}
.wsaf{word-spacing:8.301024px;}
.ws155{word-spacing:8.401392px;}
.ws18f{word-spacing:8.413200px;}
.ws1ec{word-spacing:8.705952px;}
.ws1f{word-spacing:8.873712px;}
.wsea{word-spacing:8.891424px;}
.wsb7{word-spacing:8.915040px;}
.ws1a3{word-spacing:9.009504px;}
.ws1ae{word-spacing:9.021312px;}
.ws16e{word-spacing:9.109872px;}
.ws96{word-spacing:9.180720px;}
.ws1f5{word-spacing:9.206784px;}
.ws41{word-spacing:9.340128px;}
.ws6b{word-spacing:9.393264px;}
.ws1d0{word-spacing:9.452304px;}
.wsa1{word-spacing:9.464112px;}
.wsa0{word-spacing:9.499536px;}
.ws24{word-spacing:9.517248px;}
.ws23{word-spacing:9.534960px;}
.ws1e3{word-spacing:9.680976px;}
.ws12{word-spacing:9.800640px;}
.ws16c{word-spacing:9.812448px;}
.ws1bb{word-spacing:9.836064px;}
.ws19f{word-spacing:9.889200px;}
.ws16d{word-spacing:9.901008px;}
.ws13f{word-spacing:9.942336px;}
.ws1d7{word-spacing:9.960048px;}
.ws124{word-spacing:9.965952px;}
.ws15c{word-spacing:10.013184px;}
.ws1ef{word-spacing:10.096560px;}
.ws1f2{word-spacing:10.123200px;}
.ws25{word-spacing:10.184400px;}
.ws12d{word-spacing:10.231632px;}
.wse8{word-spacing:10.420560px;}
.ws1c3{word-spacing:10.538640px;}
.ws33{word-spacing:10.568448px;}
.ws1ba{word-spacing:10.757088px;}
.ws3b{word-spacing:10.762992px;}
.wsf{word-spacing:11.005056px;}
.ws97{word-spacing:11.028672px;}
.ws3f{word-spacing:11.105424px;}
.ws15b{word-spacing:11.134944px;}
.ws82{word-spacing:11.182176px;}
.ws1a{word-spacing:11.211696px;}
.ws52{word-spacing:11.217600px;}
.wscd{word-spacing:11.512800px;}
.ws11f{word-spacing:11.536416px;}
.wsc2{word-spacing:11.595456px;}
.wsbb{word-spacing:11.748960px;}
.ws19e{word-spacing:11.784384px;}
.ws3c{word-spacing:11.914272px;}
.ws140{word-spacing:12.103200px;}
.ws69{word-spacing:12.256704px;}
.ws192{word-spacing:12.327552px;}
.ws16b{word-spacing:12.368880px;}
.ws121{word-spacing:12.380688px;}
.ws117{word-spacing:12.416112px;}
.ws77{word-spacing:12.439728px;}
.wse3{word-spacing:12.469248px;}
.ws100{word-spacing:12.557808px;}
.ws168{word-spacing:12.600720px;}
.ws18e{word-spacing:12.605040px;}
.ws1ca{word-spacing:12.693600px;}
.ws1a1{word-spacing:12.853008px;}
.ws9a{word-spacing:13.018320px;}
.wsc8{word-spacing:13.089168px;}
.ws195{word-spacing:13.112208px;}
.wsc4{word-spacing:13.136400px;}
.ws5f{word-spacing:13.248576px;}
.ws60{word-spacing:13.278096px;}
.ws28{word-spacing:13.284000px;}
.ws79{word-spacing:13.313520px;}
.wse{word-spacing:13.697280px;}
.ws16a{word-spacing:13.726800px;}
.ws1b1{word-spacing:13.768128px;}
.ws1c9{word-spacing:13.797648px;}
.ws1e6{word-spacing:13.858128px;}
.ws1a8{word-spacing:13.892112px;}
.ws14f{word-spacing:14.033808px;}
.ws17c{word-spacing:14.110560px;}
.ws191{word-spacing:14.157792px;}
.ws1be{word-spacing:14.576976px;}
.ws1dc{word-spacing:14.600592px;}
.ws1ad{word-spacing:14.618304px;}
.ws83{word-spacing:14.665536px;}
.ws76{word-spacing:14.836752px;}
.ws1a5{word-spacing:14.860368px;}
.wsbf{word-spacing:14.960736px;}
.ws1ea{word-spacing:15.051600px;}
.ws137{word-spacing:15.078816px;}
.ws1cb{word-spacing:15.273648px;}
.ws118{word-spacing:15.350400px;}
.ws50{word-spacing:15.391728px;}
.ws1b3{word-spacing:15.415344px;}
.wsa6{word-spacing:15.438960px;}
.ws19d{word-spacing:15.592464px;}
.ws4f{word-spacing:15.681024px;}
.ws4e{word-spacing:15.728256px;}
.wsf1{word-spacing:15.858144px;}
.ws193{word-spacing:15.887664px;}
.ws1d2{word-spacing:16.052976px;}
.wsf3{word-spacing:16.507584px;}
.ws108{word-spacing:16.513488px;}
.ws102{word-spacing:16.537104px;}
.ws2d{word-spacing:16.590240px;}
.ws141{word-spacing:16.613856px;}
.ws190{word-spacing:16.991712px;}
.ws91{word-spacing:16.997616px;}
.wsbe{word-spacing:17.286912px;}
.ws1d1{word-spacing:17.475840px;}
.wse9{word-spacing:17.570304px;}
.ws1a7{word-spacing:17.670672px;}
.ws11e{word-spacing:17.883216px;}
.ws58{word-spacing:17.895024px;}
.ws86{word-spacing:17.900928px;}
.ws63{word-spacing:17.906832px;}
.ws120{word-spacing:18.019008px;}
.wsdd{word-spacing:18.048528px;}
.ws1dd{word-spacing:18.178416px;}
.ws15d{word-spacing:18.266976px;}
.ws47{word-spacing:18.367344px;}
.ws75{word-spacing:18.473616px;}
.ws46{word-spacing:18.520848px;}
.ws12e{word-spacing:18.544464px;}
.ws1e4{word-spacing:18.695952px;}
.ws13d{word-spacing:19.064016px;}
.ws93{word-spacing:19.152576px;}
.ws127{word-spacing:19.158480px;}
.wsbd{word-spacing:19.229328px;}
.wsc7{word-spacing:19.247040px;}
.wsa7{word-spacing:19.258848px;}
.ws85{word-spacing:19.288368px;}
.ws153{word-spacing:19.294272px;}
.ws2c{word-spacing:19.359216px;}
.wsc3{word-spacing:19.406448px;}
.ws143{word-spacing:19.837440px;}
.ws80{word-spacing:19.878768px;}
.ws19a{word-spacing:19.884672px;}
.ws142{word-spacing:19.890576px;}
.ws198{word-spacing:19.902384px;}
.ws1b5{word-spacing:20.386512px;}
.ws1f6{word-spacing:20.443536px;}
.ws1c2{word-spacing:20.799792px;}
.ws132{word-spacing:20.900160px;}
.wsb6{word-spacing:20.917872px;}
.ws7a{word-spacing:21.030048px;}
.ws9c{word-spacing:21.077280px;}
.ws14d{word-spacing:21.278016px;}
.ws78{word-spacing:21.283920px;}
.ws12a{word-spacing:21.402000px;}
.ws1a0{word-spacing:22.051440px;}
.ws133{word-spacing:22.122288px;}
.ws104{word-spacing:22.134096px;}
.ws194{word-spacing:22.240368px;}
.wsac{word-spacing:22.305312px;}
.ws12c{word-spacing:23.125968px;}
.ws1aa{word-spacing:23.185008px;}
.ws11a{word-spacing:23.285376px;}
.ws178{word-spacing:23.352624px;}
.ws1c{word-spacing:23.403456px;}
.ws9e{word-spacing:23.852160px;}
.ws7b{word-spacing:23.881680px;}
.ws1e9{word-spacing:24.215760px;}
.wsdc{word-spacing:24.306768px;}
.ws156{word-spacing:24.377616px;}
.ws68{word-spacing:24.566544px;}
.ws1e1{word-spacing:24.590160px;}
.ws1e8{word-spacing:24.881760px;}
.ws88{word-spacing:24.903072px;}
.ws1b8{word-spacing:25.056576px;}
.wsbc{word-spacing:25.168752px;}
.ws57{word-spacing:25.416720px;}
.ws8f{word-spacing:25.517088px;}
.wsb5{word-spacing:25.617456px;}
.ws7f{word-spacing:25.641072px;}
.ws14c{word-spacing:25.739568px;}
.ws18c{word-spacing:25.747344px;}
.ws1e7{word-spacing:25.926048px;}
.ws157{word-spacing:25.953984px;}
.ws62{word-spacing:26.054352px;}
.ws67{word-spacing:26.154720px;}
.wse5{word-spacing:26.467632px;}
.ws15a{word-spacing:26.550288px;}
.ws199{word-spacing:26.579808px;}
.ws1de{word-spacing:26.615232px;}
.ws17e{word-spacing:26.644752px;}
.ws165{word-spacing:26.869104px;}
.ws105{word-spacing:26.998992px;}
.ws187{word-spacing:27.075744px;}
.wsb0{word-spacing:27.087552px;}
.ws1da{word-spacing:27.306000px;}
.ws55{word-spacing:27.713376px;}
.ws1e2{word-spacing:27.778320px;}
.ws14e{word-spacing:27.890496px;}
.ws72{word-spacing:28.244736px;}
.ws64{word-spacing:28.569456px;}
.ws53{word-spacing:28.640304px;}
.ws39{word-spacing:28.705248px;}
.wsa9{word-spacing:28.799712px;}
.ws40{word-spacing:28.905984px;}
.ws22{word-spacing:29.201184px;}
.ws164{word-spacing:29.242512px;}
.ws119{word-spacing:29.336976px;}
.ws1bf{word-spacing:29.933280px;}
.ws126{word-spacing:30.092688px;}
.ws35{word-spacing:30.160944px;}
.ws3a{word-spacing:30.216672px;}
.ws19c{word-spacing:31.598208px;}
.ws6d{word-spacing:31.610016px;}
.wse1{word-spacing:31.710384px;}
.ws8a{word-spacing:31.840272px;}
.ws1ce{word-spacing:32.412960px;}
.ws169{word-spacing:32.703264px;}
.ws9d{word-spacing:33.032880px;}
.ws134{word-spacing:33.150960px;}
.ws1d8{word-spacing:33.245424px;}
.ws1db{word-spacing:33.263136px;}
.ws6e{word-spacing:33.310368px;}
.ws36{word-spacing:34.252416px;}
.ws152{word-spacing:34.325856px;}
.ws12f{word-spacing:34.644672px;}
.ws131{word-spacing:34.686000px;}
.ws2a{word-spacing:34.874928px;}
.wsae{word-spacing:35.217360px;}
.ws18d{word-spacing:35.264592px;}
.ws107{word-spacing:35.429904px;}
.ws61{word-spacing:35.618832px;}
.wse4{word-spacing:35.854992px;}
.ws1b2{word-spacing:35.884512px;}
.wsff{word-spacing:36.551664px;}
.wsb2{word-spacing:36.592992px;}
.ws1f0{word-spacing:36.864432px;}
.wsd2{word-spacing:37.035792px;}
.ws1ee{word-spacing:37.343952px;}
.ws1df{word-spacing:37.431360px;}
.wsed{word-spacing:38.151648px;}
.wsd3{word-spacing:38.600352px;}
.ws11d{word-spacing:38.901456px;}
.ws73{word-spacing:39.090384px;}
.ws1f3{word-spacing:39.208752px;}
.ws51{word-spacing:39.887424px;}
.ws1c6{word-spacing:39.905136px;}
.ws2e{word-spacing:40.590000px;}
.ws1a2{word-spacing:40.802544px;}
.ws90{word-spacing:41.918400px;}
.wsce{word-spacing:44.085168px;}
.ws1cd{word-spacing:44.232768px;}
.ws129{word-spacing:44.274096px;}
.ws32{word-spacing:45.797328px;}
.ws139{word-spacing:46.033488px;}
.ws89{word-spacing:46.476288px;}
.ws4d{word-spacing:46.606176px;}
.ws87{word-spacing:46.665216px;}
.ws197{word-spacing:47.450448px;}
.wsde{word-spacing:47.786976px;}
.ws145{word-spacing:48.318336px;}
.ws160{word-spacing:48.489552px;}
.ws81{word-spacing:50.609088px;}
.wscb{word-spacing:50.656320px;}
.ws1c8{word-spacing:51.288048px;}
.ws84{word-spacing:52.675488px;}
.ws1ab{word-spacing:53.921232px;}
.wscc{word-spacing:54.440784px;}
.ws1c1{word-spacing:55.745568px;}
.wse6{word-spacing:57.091680px;}
.ws94{word-spacing:57.298320px;}
.ws7c{word-spacing:57.463632px;}
.ws172{word-spacing:59.146272px;}
.wscf{word-spacing:61.454736px;}
.ws2b{word-spacing:61.578720px;}
.ws8b{word-spacing:63.302688px;}
.ws17b{word-spacing:64.135152px;}
.ws183{word-spacing:65.050272px;}
.ws13e{word-spacing:65.705616px;}
.ws1f1{word-spacing:66.232368px;}
.wsc9{word-spacing:69.749856px;}
.ws1b9{word-spacing:69.867936px;}
.wsd9{word-spacing:70.251696px;}
.wsda{word-spacing:70.322544px;}
.wsd6{word-spacing:70.334352px;}
.wsdb{word-spacing:71.190432px;}
.ws95{word-spacing:73.103328px;}
.ws8e{word-spacing:75.813264px;}
.ws1e0{word-spacing:78.865632px;}
.ws1e5{word-spacing:82.184400px;}
.ws17f{word-spacing:86.617584px;}
.ws147{word-spacing:115.063056px;}
.ws17d{word-spacing:130.903488px;}
.ws10b{word-spacing:134.487216px;}
.ws15f{word-spacing:138.112272px;}
.ws146{word-spacing:148.432464px;}
.ws180{word-spacing:164.278800px;}
.wse0{word-spacing:166.705344px;}
.ws163{word-spacing:171.481680px;}
.ws10c{word-spacing:184.440960px;}
.wsfb{word-spacing:203.504976px;}
.ws123{word-spacing:226.323936px;}
.wsfc{word-spacing:313.543728px;}
.ws10f{word-spacing:460.878048px;}
.ws10d{word-spacing:461.007936px;}
.ws10a{word-spacing:504.372816px;}
.wsfa{word-spacing:520.207344px;}
.ws184{word-spacing:614.382048px;}
.ws176{word-spacing:676.303200px;}
.ws166{word-spacing:702.221760px;}
.ws185{word-spacing:704.359008px;}
.ws17a{word-spacing:747.729792px;}
.ws148{word-spacing:748.892880px;}
.ws149{word-spacing:765.583488px;}
.ws177{word-spacing:766.286064px;}
.ws167{word-spacing:792.210528px;}
.ws171{word-spacing:809.650944px;}
.ws15e{word-spacing:835.563600px;}
.ws14a{word-spacing:855.560448px;}
.ws144{word-spacing:898.925328px;}
.ws1d3{word-spacing:1064.255040px;}
.ws1d4{word-spacing:1080.927936px;}
.ws1d5{word-spacing:1170.940320px;}
._54{margin-left:-948.135168px;}
._53{margin-left:-946.694592px;}
._55{margin-left:-904.935600px;}
._51{margin-left:-858.075552px;}
._50{margin-left:-856.634976px;}
._52{margin-left:-814.875984px;}
._25{margin-left:-773.890416px;}
._26{margin-left:-764.196048px;}
._2d{margin-left:-741.158640px;}
._4b{margin-left:-739.859760px;}
._4c{margin-left:-698.880096px;}
._2c{margin-left:-687.497184px;}
._24{margin-left:-683.830800px;}
._35{margin-left:-664.453872px;}
._3a{margin-left:-606.854448px;}
._22{margin-left:-600.430896px;}
._2b{margin-left:-597.431664px;}
._34{margin-left:-574.394256px;}
._39{margin-left:-516.794832px;}
._14{margin-left:-421.480656px;}
._13{margin-left:-420.040080px;}
._16{margin-left:-344.775888px;}
._15{margin-left:-343.335312px;}
._e{margin-left:-312.032304px;}
._1e{margin-left:-244.667664px;}
._1d{margin-left:-243.227088px;}
._10{margin-left:-88.619040px;}
._b{margin-left:-70.481952px;}
._4{margin-left:-20.016000px;}
._8{margin-left:-17.978400px;}
._7{margin-left:-11.787384px;}
._2{margin-left:-9.307200px;}
._5{margin-left:-8.107200px;}
._0{margin-left:-6.239016px;}
._6{margin-left:-3.077784px;}
._3{margin-left:-1.512000px;}
._9{width:1.121760px;}
._d{width:6.134256px;}
._c{width:9.080352px;}
._1{width:12.835200px;}
._f{width:21.449232px;}
._3c{width:36.581184px;}
._3b{width:40.371552px;}
._17{width:48.141216px;}
._43{width:58.012704px;}
._1a{width:68.126256px;}
._a{width:70.476048px;}
._3e{width:76.197024px;}
._38{width:91.293552px;}
._36{width:94.210128px;}
._2f{width:102.162816px;}
._27{width:109.046880px;}
._32{width:118.829808px;}
._19{width:133.235568px;}
._18{width:134.670240px;}
._30{width:146.873808px;}
._20{width:148.680432px;}
._37{width:164.520864px;}
._28{width:171.741456px;}
._2a{width:179.133264px;}
._29{width:182.049840px;}
._1c{width:183.271968px;}
._1b{width:184.712544px;}
._3f{width:197.772192px;}
._49{width:203.546304px;}
._21{width:235.947456px;}
._12{width:241.786512px;}
._41{width:256.434336px;}
._40{width:257.874912px;}
._48{width:287.831808px;}
._45{width:289.809648px;}
._44{width:291.250224px;}
._4a{width:297.313632px;}
._42{width:299.633904px;}
._4e{width:324.637344px;}
._46{width:333.009216px;}
._4f{width:366.414048px;}
._11{width:460.452960px;}
._33{width:513.541728px;}
._2e{width:526.973328px;}
._47{width:591.421392px;}
._23{width:602.379216px;}
._1f{width:615.716352px;}
._31{width:659.831040px;}
._4d{width:918.113328px;}
._3d{width:1214.547264px;}
.fc3{color:rgb(64,108,108);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc0{color:rgb(28,28,27);}
.fsa{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs1{font-size:48.972000px;}
.fs6{font-size:53.280000px;}
.fs5{font-size:59.040000px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:42.520500px;}
.y4d{bottom:99.948882px;}
.y1cd{bottom:112.551864px;}
.y4c{bottom:113.628702px;}
.y24f{bottom:113.992872px;}
.y226{bottom:115.786650px;}
.y9b{bottom:115.837044px;}
.y12e{bottom:119.750784px;}
.y160{bottom:121.209510px;}
.yd3{bottom:126.232950px;}
.y6{bottom:127.151250px;}
.y4b{bottom:127.668486px;}
.y198{bottom:128.407710px;}
.y1cc{bottom:129.471252px;}
.y24e{bottom:130.910784px;}
.y9a{bottom:133.116576px;}
.y225{bottom:134.195712px;}
.y104{bottom:134.865672px;}
.y12d{bottom:137.030316px;}
.y15f{bottom:138.127422px;}
.y4a{bottom:141.348306px;}
.yd2{bottom:143.511006px;}
.y197{bottom:145.687242px;}
.y1cb{bottom:146.750784px;}
.y24d{bottom:148.190316px;}
.y99{bottom:150.394632px;}
.y224{bottom:151.473768px;}
.y12c{bottom:154.309848px;}
.y49{bottom:155.028126px;}
.y15e{bottom:155.406954px;}
.yd1{bottom:160.790538px;}
.y103{bottom:161.145852px;}
.y196{bottom:162.966774px;}
.y1ca{bottom:164.030316px;}
.y24c{bottom:165.469848px;}
.y98{bottom:167.674164px;}
.y223{bottom:168.753300px;}
.y12b{bottom:171.589380px;}
.y15d{bottom:172.686486px;}
.y48{bottom:177.346650px;}
.yd0{bottom:178.068594px;}
.y195{bottom:179.886162px;}
.y1c9{bottom:181.309848px;}
.y24b{bottom:182.749380px;}
.y97{bottom:184.953696px;}
.y222{bottom:186.031356px;}
.y102{bottom:187.426032px;}
.y47{bottom:187.426500px;}
.y12a{bottom:188.868912px;}
.y15c{bottom:189.964542px;}
.ycf{bottom:195.346650px;}
.y194{bottom:197.164218px;}
.y1c8{bottom:198.589380px;}
.y24a{bottom:200.028912px;}
.y96{bottom:202.231752px;}
.y221{bottom:203.309412px;}
.y5c{bottom:203.639394px;}
.y129{bottom:206.148444px;}
.y15b{bottom:207.244074px;}
.yce{bottom:212.986650px;}
.y101{bottom:213.706212px;}
.y193{bottom:214.442274px;}
.y1c7{bottom:215.868912px;}
.y249{bottom:217.308444px;}
.y46{bottom:217.311006px;}
.y95{bottom:219.511284px;}
.y5b{bottom:220.558782px;}
.y220{bottom:220.587468px;}
.y128{bottom:223.426500px;}
.y15a{bottom:224.523606px;}
.y192{bottom:231.720330px;}
.y1c6{bottom:233.148444px;}
.ycd{bottom:233.160180px;}
.y248{bottom:234.586500px;}
.y45{bottom:234.590538px;}
.y94{bottom:236.790816px;}
.y5a{bottom:237.836838px;}
.y21f{bottom:237.865524px;}
.y100{bottom:239.986392px;}
.y127{bottom:239.986650px;}
.y159{bottom:241.803138px;}
.y191{bottom:248.998386px;}
.y1c5{bottom:250.426500px;}
.ycc{bottom:250.438236px;}
.y44{bottom:251.868594px;}
.y247{bottom:252.226500px;}
.y93{bottom:253.708728px;}
.y59{bottom:255.116370px;}
.y21e{bottom:255.143580px;}
.y158{bottom:259.081194px;}
.yff{bottom:266.266572px;}
.y190{bottom:266.276442px;}
.y1c4{bottom:266.983656px;}
.ycb{bottom:267.717768px;}
.y126{bottom:268.786650px;}
.y43{bottom:269.152482px;}
.y92{bottom:270.988260px;}
.y58{bottom:272.394426px;}
.y246{bottom:272.413644px;}
.y21d{bottom:272.423112px;}
.y157{bottom:276.360726px;}
.y1fa{bottom:276.724104px;}
.y1c3{bottom:282.465492px;}
.yfe{bottom:283.546104px;}
.y18f{bottom:283.554498px;}
.yca{bottom:284.997300px;}
.y42{bottom:286.432014px;}
.y91{bottom:288.267792px;}
.y57{bottom:289.672482px;}
.y245{bottom:289.691700px;}
.y21c{bottom:289.702644px;}
.y156{bottom:293.638782px;}
.y1c2{bottom:297.945996px;}
.y125{bottom:298.666650px;}
.y18e{bottom:300.832554px;}
.yc9{bottom:302.275356px;}
.y41{bottom:303.351402px;}
.y90{bottom:305.545848px;}
.y56{bottom:306.952014px;}
.y244{bottom:306.971232px;}
.y21b{bottom:306.980700px;}
.yfd{bottom:309.466140px;}
.y155{bottom:310.916838px;}
.y1f9{bottom:312.003456px;}
.y1c1{bottom:313.426500px;}
.y18d{bottom:318.112086px;}
.yc8{bottom:319.554888px;}
.y40{bottom:320.630934px;}
.y8f{bottom:322.825380px;}
.y55{bottom:324.231546px;}
.y243{bottom:324.250764px;}
.y21a{bottom:324.260232px;}
.y154{bottom:327.836226px;}
.y124{bottom:328.546500px;}
.y1f8{bottom:329.281512px;}
.y1c0{bottom:330.346650px;}
.y18c{bottom:335.391618px;}
.yfc{bottom:335.746320px;}
.yc7{bottom:336.474276px;}
.y3f{bottom:337.910466px;}
.y8e{bottom:340.104912px;}
.y219{bottom:341.179620px;}
.y54{bottom:341.511078px;}
.y242{bottom:341.528820px;}
.y153{bottom:345.115758px;}
.y1f7{bottom:346.561044px;}
.y1bf{bottom:348.346650px;}
.y18b{bottom:352.669674px;}
.yc6{bottom:353.752332px;}
.y3e{bottom:355.189998px;}
.y8d{bottom:357.382968px;}
.y123{bottom:358.426500px;}
.y218{bottom:358.457676px;}
.y53{bottom:358.790610px;}
.y241{bottom:358.808352px;}
.yfb{bottom:362.026500px;}
.y152{bottom:362.393814px;}
.y1f6{bottom:363.839100px;}
.y1be{bottom:366.346650px;}
.y18a{bottom:369.949206px;}
.yc5{bottom:371.030388px;}
.y3d{bottom:372.469530px;}
.y8c{bottom:374.662500px;}
.y217{bottom:375.737208px;}
.y52{bottom:376.070142px;}
.y240{bottom:376.087884px;}
.y122{bottom:376.786650px;}
.y151{bottom:379.673346px;}
.y1f5{bottom:381.117156px;}
.y1bd{bottom:384.346650px;}
.y189{bottom:386.868594px;}
.yf{bottom:388.075500px;}
.yc4{bottom:388.308444px;}
.yfa{bottom:388.318236px;}
.y3c{bottom:389.749062px;}
.y8b{bottom:391.942032px;}
.y216{bottom:393.015264px;}
.y51{bottom:393.348198px;}
.y23f{bottom:393.367416px;}
.y121{bottom:396.949062px;}
.y150{bottom:396.952878px;}
.y1f4{bottom:398.396688px;}
.y1bc{bottom:402.347118px;}
.y188{bottom:404.146650px;}
.yc3{bottom:405.586500px;}
.yf9{bottom:405.596292px;}
.y3b{bottom:407.028594px;}
.y8a{bottom:409.221564px;}
.ye{bottom:409.675500px;}
.y50{bottom:410.269062px;}
.y215{bottom:410.293320px;}
.y23e{bottom:410.646948px;}
.y120{bottom:414.228594px;}
.y14f{bottom:414.230934px;}
.y1f3{bottom:415.676220px;}
.y1bb{bottom:419.626650px;}
.y187{bottom:421.428444px;}
.yf8{bottom:422.874348px;}
.yc2{bottom:422.886408px;}
.y3a{bottom:424.306650px;}
.y89{bottom:426.501096px;}
.y4f{bottom:427.548594px;}
.y214{bottom:427.572852px;}
.y23d{bottom:427.926480px;}
.yd{bottom:431.275500px;}
.y11f{bottom:431.506650px;}
.y14e{bottom:431.510466px;}
.y1f2{bottom:432.955752px;}
.y1ba{bottom:437.626968px;}
.y186{bottom:438.706500px;}
.yf7{bottom:440.152404px;}
.yc1{bottom:440.164464px;}
.y39{bottom:441.946650px;}
.y88{bottom:443.780628px;}
.y4e{bottom:444.826650px;}
.y23c{bottom:444.844392px;}
.y213{bottom:444.852384px;}
.y14d{bottom:448.789998px;}
.y11e{bottom:449.146650px;}
.y1f1{bottom:450.233808px;}
.y1b9{bottom:454.906500px;}
.y185{bottom:455.265498px;}
.yf6{bottom:457.431936px;}
.yc0{bottom:457.443996px;}
.y87{bottom:460.698540px;}
.y38{bottom:462.108444px;}
.y23b{bottom:462.123924px;}
.y212{bottom:462.130440px;}
.y14c{bottom:466.069530px;}
.y1f0{bottom:467.513340px;}
.y11d{bottom:468.226500px;}
.y184{bottom:470.746002px;}
.y1b8{bottom:472.906500px;}
.yf5{bottom:474.711468px;}
.ybf{bottom:474.723528px;}
.y86{bottom:477.978072px;}
.y37{bottom:479.386500px;}
.y23a{bottom:479.403456px;}
.y211{bottom:479.409972px;}
.y14b{bottom:483.349062px;}
.y1ef{bottom:484.432728px;}
.y183{bottom:486.586146px;}
.y11c{bottom:489.106500px;}
.y1b7{bottom:490.906968px;}
.yc{bottom:491.179500px;}
.yf4{bottom:491.989524px;}
.ybe{bottom:492.003060px;}
.y85{bottom:495.256128px;}
.y36{bottom:496.677156px;}
.y239{bottom:496.682988px;}
.y210{bottom:496.689504px;}
.y14a{bottom:500.628594px;}
.y1ee{bottom:501.712260px;}
.y182{bottom:502.066650px;}
.y1b6{bottom:508.186500px;}
.yf3{bottom:509.269056px;}
.ybd{bottom:509.281116px;}
.y11b{bottom:509.626500px;}
.y84{bottom:512.534184px;}
.yb{bottom:512.779500px;}
.y35{bottom:513.956688px;}
.y238{bottom:513.961044px;}
.y20f{bottom:513.967560px;}
.y149{bottom:517.906650px;}
.y181{bottom:518.986650px;}
.y1ed{bottom:518.991792px;}
.y1b5{bottom:526.186500px;}
.yf2{bottom:526.188444px;}
.ybc{bottom:526.200504px;}
.y11a{bottom:529.790388px;}
.y83{bottom:529.812240px;}
.y20e{bottom:530.886948px;}
.y34{bottom:531.236220px;}
.y237{bottom:531.240576px;}
.ya{bottom:534.379500px;}
.y148{bottom:534.842052px;}
.y1ec{bottom:536.271324px;}
.y180{bottom:536.986500px;}
.yf1{bottom:543.466500px;}
.ybb{bottom:543.478560px;}
.y1b4{bottom:544.197480px;}
.y119{bottom:547.068444px;}
.y82{bottom:547.091772px;}
.y20d{bottom:548.165004px;}
.y33{bottom:548.515752px;}
.y236{bottom:548.520108px;}
.y147{bottom:552.120108px;}
.y1eb{bottom:553.549380px;}
.y17f{bottom:554.986650px;}
.y9{bottom:555.979500px;}
.yba{bottom:560.756616px;}
.yf0{bottom:561.466500px;}
.y1b3{bottom:562.197300px;}
.y118{bottom:564.346500px;}
.y81{bottom:564.371304px;}
.y20c{bottom:565.443060px;}
.y32{bottom:565.795284px;}
.y235{bottom:565.798164px;}
.y146{bottom:569.399640px;}
.y1ea{bottom:570.828912px;}
.y17e{bottom:572.986650px;}
.y8{bottom:577.579500px;}
.yb9{bottom:578.034672px;}
.y1b2{bottom:579.475356px;}
.yef{bottom:581.626500px;}
.y80{bottom:581.649360px;}
.y117{bottom:581.655264px;}
.y20b{bottom:582.722592px;}
.y31{bottom:583.074816px;}
.y234{bottom:583.077696px;}
.y145{bottom:586.679172px;}
.y1e9{bottom:588.108444px;}
.y17d{bottom:590.988444px;}
.yb8{bottom:595.312728px;}
.y1b1{bottom:596.753412px;}
.yee{bottom:598.923600px;}
.y7f{bottom:598.928892px;}
.y116{bottom:598.934796px;}
.y7{bottom:599.179500px;}
.y20a{bottom:600.002124px;}
.y30{bottom:600.354348px;}
.y233{bottom:600.357228px;}
.y144{bottom:603.958704px;}
.y1e8{bottom:605.386500px;}
.y17c{bottom:608.266500px;}
.yb7{bottom:612.590784px;}
.y1b0{bottom:614.031468px;}
.yed{bottom:616.203132px;}
.y7e{bottom:616.208424px;}
.y115{bottom:616.212852px;}
.y2f{bottom:617.272260px;}
.y209{bottom:617.280180px;}
.y232{bottom:617.636760px;}
.y143{bottom:621.236760px;}
.y1e7{bottom:622.668912px;}
.y17b{bottom:626.267112px;}
.yb6{bottom:629.870316px;}
.y1af{bottom:631.309524px;}
.yec{bottom:633.482664px;}
.y7d{bottom:633.486480px;}
.y114{bottom:633.490908px;}
.y2e{bottom:634.551792px;}
.y208{bottom:634.558236px;}
.y231{bottom:634.916292px;}
.y142{bottom:638.516292px;}
.y1e6{bottom:639.948444px;}
.y17a{bottom:643.186500px;}
.yb5{bottom:647.149848px;}
.y1ae{bottom:648.589056px;}
.yeb{bottom:650.402052px;}
.y7c{bottom:650.405868px;}
.y113{bottom:650.410296px;}
.y2d{bottom:651.831324px;}
.y230{bottom:651.835680px;}
.y207{bottom:651.836292px;}
.y141{bottom:655.794348px;}
.y1e5{bottom:657.226500px;}
.y179{bottom:661.186500px;}
.yb4{bottom:664.427904px;}
.y1ad{bottom:665.868588px;}
.yea{bottom:667.680108px;}
.y7b{bottom:667.685400px;}
.y112{bottom:667.689828px;}
.y2c{bottom:669.110856px;}
.y22f{bottom:669.113736px;}
.y206{bottom:669.114348px;}
.y140{bottom:673.072404px;}
.y1e4{bottom:674.148912px;}
.y178{bottom:679.188444px;}
.y281{bottom:679.906650px;}
.yb3{bottom:681.707436px;}
.y1ac{bottom:682.786500px;}
.ye9{bottom:684.959640px;}
.y7a{bottom:684.964932px;}
.y111{bottom:684.969360px;}
.y2b{bottom:686.390388px;}
.y205{bottom:686.392404px;}
.y22e{bottom:686.393268px;}
.y5{bottom:689.592150px;}
.y13f{bottom:690.351936px;}
.y1e3{bottom:691.428444px;}
.y177{bottom:696.466500px;}
.yb2{bottom:698.986968px;}
.y1ab{bottom:699.703656px;}
.y267{bottom:699.705642px;}
.ye8{bottom:702.237696px;}
.y79{bottom:702.244464px;}
.y110{bottom:702.248892px;}
.y2a{bottom:703.668444px;}
.y22d{bottom:703.671324px;}
.y204{bottom:703.671936px;}
.y13e{bottom:707.631468px;}
.y1e2{bottom:708.706500px;}
.y280{bottom:710.124546px;}
.y176{bottom:714.466500px;}
.y1aa{bottom:715.185492px;}
.y266{bottom:715.186146px;}
.yb1{bottom:716.266500px;}
.ye7{bottom:719.515752px;}
.y78{bottom:719.523996px;}
.y10f{bottom:719.528424px;}
.y4{bottom:719.592750px;}
.y29{bottom:720.946500px;}
.y22c{bottom:720.949380px;}
.y203{bottom:720.951468px;}
.y13d{bottom:724.549380px;}
.y27f{bottom:725.605050px;}
.y1e1{bottom:726.706500px;}
.y1a9{bottom:730.665996px;}
.y265{bottom:730.666650px;}
.y175{bottom:732.487200px;}
.yb0{bottom:733.207344px;}
.ye6{bottom:736.795284px;}
.y77{bottom:736.803528px;}
.y10e{bottom:736.806480px;}
.y202{bottom:737.869380px;}
.y22b{bottom:738.228912px;}
.y28{bottom:738.233340px;}
.y27e{bottom:741.445194px;}
.y13c{bottom:741.828912px;}
.y1a8{bottom:746.146500px;}
.y1e0{bottom:747.226500px;}
.y264{bottom:747.586500px;}
.yaf{bottom:750.486876px;}
.y174{bottom:750.487020px;}
.ye5{bottom:754.074816px;}
.y76{bottom:754.083060px;}
.y10d{bottom:754.086012px;}
.y201{bottom:755.148912px;}
.y22a{bottom:755.508444px;}
.y27{bottom:755.512872px;}
.y27d{bottom:756.927030px;}
.y13b{bottom:759.108444px;}
.y1a7{bottom:763.066650px;}
.y1df{bottom:765.225996px;}
.y173{bottom:767.765076px;}
.yae{bottom:767.766408px;}
.y263{bottom:768.106500px;}
.ye4{bottom:771.352872px;}
.y75{bottom:771.362592px;}
.y10c{bottom:771.365544px;}
.y27c{bottom:772.407534px;}
.y200{bottom:772.428444px;}
.y229{bottom:772.786500px;}
.y26{bottom:772.792404px;}
.y13a{bottom:776.386500px;}
.y1de{bottom:780.706500px;}
.y1a6{bottom:781.066650px;}
.y3{bottom:781.284450px;}
.y172{bottom:785.043132px;}
.yad{bottom:785.045940px;}
.y27b{bottom:787.888038px;}
.ye3{bottom:788.632404px;}
.y74{bottom:788.640648px;}
.y262{bottom:788.642124px;}
.y10b{bottom:788.643600px;}
.y1ff{bottom:789.706500px;}
.y25{bottom:790.071936px;}
.y228{bottom:790.425930px;}
.y139{bottom:792.945996px;}
.y1dd{bottom:797.626500px;}
.y1a5{bottom:799.067118px;}
.y171{bottom:802.321188px;}
.yac{bottom:802.325472px;}
.y27a{bottom:803.369874px;}
.ye2{bottom:805.911936px;}
.y73{bottom:805.920180px;}
.y261{bottom:805.921656px;}
.y10a{bottom:805.923132px;}
.y24{bottom:806.991324px;}
.y1fe{bottom:807.346650px;}
.y138{bottom:808.426500px;}
.y227{bottom:809.146650px;}
.y2{bottom:811.285050px;}
.y1dc{bottom:815.626500px;}
.y1a4{bottom:816.346650px;}
.y279{bottom:818.850378px;}
.y170{bottom:819.599244px;}
.yab{bottom:819.603528px;}
.ye1{bottom:823.189992px;}
.y72{bottom:823.199712px;}
.y260{bottom:823.201188px;}
.y109{bottom:823.202664px;}
.y23{bottom:824.270856px;}
.y1fd{bottom:827.145996px;}
.y137{bottom:827.866500px;}
.y1db{bottom:833.627118px;}
.y278{bottom:834.330882px;}
.y1a3{bottom:834.346968px;}
.y16f{bottom:836.877300px;}
.yaa{bottom:836.883060px;}
.ye0{bottom:840.468048px;}
.y71{bottom:840.479244px;}
.y25f{bottom:840.480720px;}
.y108{bottom:840.482196px;}
.y1{bottom:841.285650px;}
.y22{bottom:841.550388px;}
.y1fc{bottom:842.626500px;}
.y136{bottom:846.946500px;}
.y277{bottom:849.812718px;}
.y1da{bottom:850.906650px;}
.y1a2{bottom:851.626500px;}
.y16e{bottom:854.155356px;}
.ya9{bottom:854.162592px;}
.ydf{bottom:857.387436px;}
.y70{bottom:857.397156px;}
.y25e{bottom:857.398632px;}
.y107{bottom:857.400108px;}
.y1fb{bottom:858.826500px;}
.y21{bottom:858.828444px;}
.y276{bottom:865.652862px;}
.y135{bottom:867.466500px;}
.y1d9{bottom:868.906968px;}
.y1a1{bottom:869.626968px;}
.y16d{bottom:871.433412px;}
.ya8{bottom:871.442124px;}
.yde{bottom:874.666968px;}
.y6f{bottom:874.676688px;}
.y25d{bottom:874.678164px;}
.y106{bottom:874.679640px;}
.y20{bottom:876.108594px;}
.y25b{bottom:876.826500px;}
.y275{bottom:881.133366px;}
.y1d8{bottom:886.186500px;}
.y134{bottom:886.546650px;}
.y1a0{bottom:886.906500px;}
.y16c{bottom:888.711468px;}
.ya7{bottom:888.721656px;}
.ydd{bottom:891.946500px;}
.y6e{bottom:891.956220px;}
.y25c{bottom:891.957696px;}
.y105{bottom:891.959172px;}
.y1f{bottom:893.386650px;}
.y25a{bottom:894.826500px;}
.y274{bottom:896.613870px;}
.y1d7{bottom:904.187112px;}
.y133{bottom:904.548444px;}
.y19f{bottom:904.906650px;}
.y16b{bottom:905.989524px;}
.ya6{bottom:906.001188px;}
.y6d{bottom:909.235752px;}
.ydc{bottom:909.237228px;}
.y1e{bottom:909.945642px;}
.y273{bottom:912.095706px;}
.y259{bottom:912.826500px;}
.y1d6{bottom:921.106500px;}
.y132{bottom:921.826500px;}
.y19e{bottom:922.906650px;}
.y16a{bottom:922.908912px;}
.ya5{bottom:922.920576px;}
.y1d{bottom:925.426146px;}
.y6c{bottom:926.515284px;}
.ydb{bottom:926.516760px;}
.y272{bottom:927.576210px;}
.y258{bottom:930.826500px;}
.y1d5{bottom:939.106500px;}
.y131{bottom:939.828444px;}
.y169{bottom:940.188444px;}
.ya4{bottom:940.198632px;}
.y1c{bottom:940.906650px;}
.y271{bottom:943.056714px;}
.y6b{bottom:943.794816px;}
.yda{bottom:943.796292px;}
.y257{bottom:948.826500px;}
.y130{bottom:957.106500px;}
.y1b{bottom:957.108594px;}
.y168{bottom:957.466500px;}
.ya3{bottom:957.478164px;}
.y270{bottom:958.538550px;}
.y19d{bottom:958.906968px;}
.y6a{bottom:961.072872px;}
.yd9{bottom:961.074348px;}
.y256{bottom:966.826500px;}
.y26f{bottom:974.019054px;}
.y1a{bottom:974.386650px;}
.ya2{bottom:974.756220px;}
.y167{bottom:975.106140px;}
.y1d4{bottom:975.107118px;}
.y19c{bottom:976.186500px;}
.y12f{bottom:977.633592px;}
.y69{bottom:978.352404px;}
.yd8{bottom:978.353880px;}
.y255{bottom:984.826500px;}
.y26e{bottom:989.859198px;}
.ya1{bottom:992.034276px;}
.y19{bottom:992.385924px;}
.y1d3{bottom:992.386650px;}
.y166{bottom:994.186500px;}
.y19b{bottom:994.187112px;}
.y68{bottom:995.631936px;}
.yd7{bottom:995.633412px;}
.y254{bottom:1002.826500px;}
.y26d{bottom:1005.339702px;}
.ya0{bottom:1009.312332px;}
.y1d2{bottom:1010.386968px;}
.y19a{bottom:1011.106500px;}
.y67{bottom:1012.911468px;}
.yd6{bottom:1012.912944px;}
.y165{bottom:1012.930482px;}
.y18{bottom:1016.506500px;}
.y26c{bottom:1020.821538px;}
.y253{bottom:1020.826500px;}
.y9f{bottom:1026.590388px;}
.y1d1{bottom:1027.666500px;}
.y199{bottom:1029.110568px;}
.y66{bottom:1030.189524px;}
.yd5{bottom:1030.191000px;}
.y164{bottom:1030.210014px;}
.y26b{bottom:1036.302042px;}
.y252{bottom:1038.826500px;}
.y17{bottom:1040.266650px;}
.y9e{bottom:1043.868444px;}
.y1d0{bottom:1045.666968px;}
.y65{bottom:1047.108912px;}
.yd4{bottom:1047.110388px;}
.y163{bottom:1047.130878px;}
.y26a{bottom:1051.783878px;}
.y251{bottom:1056.826500px;}
.y9d{bottom:1061.146500px;}
.y16{bottom:1061.146650px;}
.y1cf{bottom:1062.946500px;}
.y64{bottom:1064.388444px;}
.y162{bottom:1064.410410px;}
.y269{bottom:1067.265714px;}
.y250{bottom:1074.833448px;}
.y9c{bottom:1078.786500px;}
.y1ce{bottom:1080.952512px;}
.y63{bottom:1081.666500px;}
.y161{bottom:1081.689942px;}
.y15{bottom:1082.386650px;}
.y268{bottom:1082.746218px;}
.y62{bottom:1099.306500px;}
.y14{bottom:1106.866770px;}
.y61{bottom:1123.786590px;}
.y13{bottom:1126.666950px;}
.y60{bottom:1137.106446px;}
.y5f{bottom:1155.826524px;}
.y12{bottom:1160.866950px;}
.y5e{bottom:1175.986884px;}
.y11{bottom:1197.227100px;}
.y5d{bottom:1197.587100px;}
.h11{height:28.799297px;}
.h15{height:34.619062px;}
.h12{height:35.199141px;}
.h6{height:35.640000px;}
.h1a{height:38.789297px;}
.h9{height:39.465703px;}
.h18{height:42.982734px;}
.h16{height:43.011562px;}
.h1b{height:43.189453px;}
.h13{height:43.723338px;}
.h7{height:43.732266px;}
.hd{height:44.337656px;}
.h14{height:45.462954px;}
.h1d{height:45.814516px;}
.h1c{height:46.385156px;}
.h19{height:47.176172px;}
.he{height:47.979905px;}
.ha{height:47.988281px;}
.h5{height:52.148438px;}
.h17{height:52.417969px;}
.h8{height:54.026016px;}
.hf{height:54.070312px;}
.h10{height:59.015369px;}
.h4{height:62.578125px;}
.hb{height:62.721562px;}
.h2{height:63.624355px;}
.h3{height:73.007812px;}
.hc{height:78.894335px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.447600px;}
.xe{left:117.088104px;}
.x8{left:131.095728px;}
.xd{left:135.222240px;}
.x3{left:161.575500px;}
.x7{left:204.891000px;}
.xf{left:247.408068px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.xc{left:310.497000px;}
.x12{left:323.727600px;}
.x11{left:330.207240px;}
.x6{left:374.247000px;}
.x4{left:433.944000px;}
.x9{left:473.488500px;}
.x13{left:482.127996px;}
.xa{left:500.488968px;}
.xb{left:527.489436px;}
.x14{left:673.286736px;}
.x10{left:702.448572px;}
@media print{
.v4{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.761515pt;}
.v1{vertical-align:24.863467pt;}
.v3{vertical-align:26.858731pt;}
.v2{vertical-align:34.562048pt;}
.ls23{letter-spacing:-0.019200pt;}
.ls3c{letter-spacing:-0.012800pt;}
.ls3b{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls9{letter-spacing:0.016000pt;}
.ls18{letter-spacing:0.060286pt;}
.ls17{letter-spacing:0.096640pt;}
.ls25{letter-spacing:0.114048pt;}
.ls45{letter-spacing:0.136448pt;}
.ls3a{letter-spacing:0.152192pt;}
.ls39{letter-spacing:0.178432pt;}
.ls27{letter-spacing:0.181632pt;}
.ls1b{letter-spacing:0.185856pt;}
.ls46{letter-spacing:0.188928pt;}
.ls1a{letter-spacing:0.190080pt;}
.ls24{letter-spacing:0.194304pt;}
.ls2a{letter-spacing:0.206976pt;}
.ls26{letter-spacing:0.211200pt;}
.ls19{letter-spacing:0.212193pt;}
.ls3{letter-spacing:0.222720pt;}
.ls44{letter-spacing:0.236160pt;}
.ls29{letter-spacing:0.247893pt;}
.ls34{letter-spacing:0.251904pt;}
.ls20{letter-spacing:0.262400pt;}
.ls4a{letter-spacing:0.278144pt;}
.ls51{letter-spacing:0.279424pt;}
.ls53{letter-spacing:0.288896pt;}
.ls48{letter-spacing:0.298368pt;}
.ls32{letter-spacing:0.299136pt;}
.ls43{letter-spacing:0.303104pt;}
.ls1e{letter-spacing:0.307840pt;}
.ls49{letter-spacing:0.309632pt;}
.ls38{letter-spacing:0.312576pt;}
.ls41{letter-spacing:0.314880pt;}
.ls1f{letter-spacing:0.317312pt;}
.ls31{letter-spacing:0.325376pt;}
.ls4e{letter-spacing:0.326784pt;}
.ls2c{letter-spacing:0.330624pt;}
.ls1d{letter-spacing:0.331520pt;}
.ls21{letter-spacing:0.335872pt;}
.ls52{letter-spacing:0.340992pt;}
.ls16{letter-spacing:0.341120pt;}
.ls54{letter-spacing:0.345728pt;}
.ls11{letter-spacing:0.346368pt;}
.ls7{letter-spacing:0.351616pt;}
.ls4c{letter-spacing:0.355200pt;}
.ls30{letter-spacing:0.355840pt;}
.ls2d{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.ls14{letter-spacing:0.362112pt;}
.ls47{letter-spacing:0.364672pt;}
.ls4{letter-spacing:0.366507pt;}
.ls13{letter-spacing:0.367360pt;}
.lsa{letter-spacing:0.372608pt;}
.lsc{letter-spacing:0.377856pt;}
.ls28{letter-spacing:0.383104pt;}
.lsd{letter-spacing:0.388352pt;}
.lse{letter-spacing:0.393600pt;}
.ls10{letter-spacing:0.398848pt;}
.lsf{letter-spacing:0.404096pt;}
.ls8{letter-spacing:0.409344pt;}
.ls2e{letter-spacing:0.414592pt;}
.ls1c{letter-spacing:0.419840pt;}
.ls12{letter-spacing:0.425088pt;}
.ls2f{letter-spacing:0.430336pt;}
.ls15{letter-spacing:0.435584pt;}
.ls5{letter-spacing:0.440832pt;}
.ls35{letter-spacing:0.446080pt;}
.ls2b{letter-spacing:0.451328pt;}
.lsb{letter-spacing:0.456576pt;}
.ls36{letter-spacing:0.461824pt;}
.ls40{letter-spacing:0.467072pt;}
.ls33{letter-spacing:0.477568pt;}
.ls3d{letter-spacing:0.488064pt;}
.ls42{letter-spacing:0.493312pt;}
.ls3f{letter-spacing:0.512640pt;}
.ls6{letter-spacing:0.524800pt;}
.ls4f{letter-spacing:0.547200pt;}
.ls37{letter-spacing:0.552960pt;}
.ls3e{letter-spacing:0.603520pt;}
.ls50{letter-spacing:0.970880pt;}
.ls4d{letter-spacing:176.149120pt;}
.ls4b{letter-spacing:182.551680pt;}
.ws4{word-spacing:-15.114240pt;}
.ws5{word-spacing:-15.046016pt;}
.ws43{word-spacing:-15.040768pt;}
.ws44{word-spacing:-14.920064pt;}
.wsb1{word-spacing:-14.841344pt;}
.ws2{word-spacing:-11.409067pt;}
.ws3{word-spacing:-8.896000pt;}
.ws42{word-spacing:-7.472640pt;}
.wsf7{word-spacing:-0.230400pt;}
.ws170{word-spacing:-0.225664pt;}
.ws1b7{word-spacing:-0.218880pt;}
.ws161{word-spacing:-0.209920pt;}
.wsfd{word-spacing:-0.204672pt;}
.wsd7{word-spacing:-0.199424pt;}
.ws1eb{word-spacing:-0.189440pt;}
.ws109{word-spacing:-0.188928pt;}
.ws10e{word-spacing:-0.183680pt;}
.ws1cc{word-spacing:-0.178432pt;}
.ws196{word-spacing:-0.175232pt;}
.ws9{word-spacing:-0.167936pt;}
.wsa2{word-spacing:-0.162688pt;}
.wsc{word-spacing:-0.157440pt;}
.ws114{word-spacing:-0.152192pt;}
.wsa{word-spacing:-0.151552pt;}
.wsba{word-spacing:-0.146944pt;}
.ws1f8{word-spacing:-0.146816pt;}
.ws74{word-spacing:-0.141696pt;}
.ws186{word-spacing:-0.137344pt;}
.ws14{word-spacing:-0.136448pt;}
.ws6{word-spacing:-0.132608pt;}
.wsd4{word-spacing:-0.131200pt;}
.wsd{word-spacing:-0.125952pt;}
.wsfe{word-spacing:-0.123136pt;}
.wsd5{word-spacing:-0.120704pt;}
.wsb{word-spacing:-0.115456pt;}
.ws110{word-spacing:-0.113664pt;}
.ws7d{word-spacing:-0.110208pt;}
.ws7{word-spacing:-0.108928pt;}
.wsab{word-spacing:-0.104960pt;}
.ws26{word-spacing:-0.099712pt;}
.ws8{word-spacing:-0.096512pt;}
.ws31{word-spacing:-0.094464pt;}
.ws11c{word-spacing:-0.089216pt;}
.ws158{word-spacing:-0.083968pt;}
.ws45{word-spacing:-0.080256pt;}
.ws11b{word-spacing:-0.078720pt;}
.ws38{word-spacing:-0.076032pt;}
.ws29{word-spacing:-0.073472pt;}
.ws1f4{word-spacing:-0.071040pt;}
.ws56{word-spacing:-0.068224pt;}
.ws0{word-spacing:-0.064000pt;}
.wsb9{word-spacing:-0.062976pt;}
.wsa8{word-spacing:-0.041984pt;}
.ws173{word-spacing:-0.031488pt;}
.ws1{word-spacing:0.000000pt;}
.ws27{word-spacing:0.006400pt;}
.ws34{word-spacing:0.008448pt;}
.ws7e{word-spacing:0.012800pt;}
.wsd8{word-spacing:0.015744pt;}
.ws18{word-spacing:0.078720pt;}
.ws19{word-spacing:0.099712pt;}
.wsa3{word-spacing:0.209920pt;}
.ws1b6{word-spacing:0.293888pt;}
.wsa4{word-spacing:0.299136pt;}
.ws66{word-spacing:0.372608pt;}
.ws10{word-spacing:0.467072pt;}
.ws128{word-spacing:0.488064pt;}
.ws1af{word-spacing:0.540544pt;}
.wsd0{word-spacing:0.551040pt;}
.ws15{word-spacing:0.587776pt;}
.wsc1{word-spacing:0.598272pt;}
.wse2{word-spacing:0.624512pt;}
.ws16{word-spacing:0.656000pt;}
.ws65{word-spacing:0.718976pt;}
.ws3d{word-spacing:0.839680pt;}
.ws1c4{word-spacing:0.855424pt;}
.ws1bd{word-spacing:0.965632pt;}
.wsf2{word-spacing:0.970880pt;}
.ws4c{word-spacing:1.065344pt;}
.ws115{word-spacing:1.112576pt;}
.ws2f{word-spacing:1.154560pt;}
.ws8d{word-spacing:1.180800pt;}
.wsca{word-spacing:1.317248pt;}
.ws1cf{word-spacing:1.348736pt;}
.ws54{word-spacing:1.359232pt;}
.wsaa{word-spacing:1.532416pt;}
.wsf6{word-spacing:1.553408pt;}
.wsf5{word-spacing:1.590144pt;}
.wsee{word-spacing:1.616384pt;}
.ws162{word-spacing:1.758080pt;}
.ws1c7{word-spacing:1.863040pt;}
.wsb4{word-spacing:1.894528pt;}
.ws175{word-spacing:1.910272pt;}
.ws111{word-spacing:1.952256pt;}
.ws189{word-spacing:1.978496pt;}
.ws13c{word-spacing:1.994240pt;}
.ws1a6{word-spacing:2.036224pt;}
.ws122{word-spacing:2.067712pt;}
.ws9b{word-spacing:2.088704pt;}
.ws13a{word-spacing:2.151680pt;}
.ws174{word-spacing:2.193664pt;}
.ws1f7{word-spacing:2.282752pt;}
.ws19b{word-spacing:2.324864pt;}
.ws138{word-spacing:2.382592pt;}
.ws151{word-spacing:2.435072pt;}
.ws37{word-spacing:2.487936pt;}
.ws16f{word-spacing:2.498048pt;}
.ws188{word-spacing:2.655488pt;}
.wsef{word-spacing:2.749952pt;}
.wsc6{word-spacing:2.786688pt;}
.ws30{word-spacing:2.802432pt;}
.ws113{word-spacing:2.807680pt;}
.ws5b{word-spacing:2.812928pt;}
.ws5d{word-spacing:2.823424pt;}
.ws70{word-spacing:2.839168pt;}
.ws5a{word-spacing:2.854912pt;}
.wsa5{word-spacing:2.886400pt;}
.ws59{word-spacing:2.896896pt;}
.ws5c{word-spacing:2.902144pt;}
.ws1c0{word-spacing:2.917888pt;}
.ws11{word-spacing:2.986112pt;}
.ws1e{word-spacing:3.022848pt;}
.ws1d{word-spacing:3.075328pt;}
.ws18b{word-spacing:3.138304pt;}
.ws1ed{word-spacing:3.201536pt;}
.ws18a{word-spacing:3.248512pt;}
.ws4b{word-spacing:3.274752pt;}
.ws1bc{word-spacing:3.348224pt;}
.ws1a4{word-spacing:3.358720pt;}
.ws116{word-spacing:3.495168pt;}
.ws1b4{word-spacing:3.621120pt;}
.ws154{word-spacing:3.636864pt;}
.ws130{word-spacing:3.705088pt;}
.ws1b{word-spacing:3.720832pt;}
.ws8c{word-spacing:3.799552pt;}
.ws112{word-spacing:3.862528pt;}
.ws99{word-spacing:3.920256pt;}
.ws150{word-spacing:4.030464pt;}
.ws1c5{word-spacing:4.067200pt;}
.ws159{word-spacing:4.303360pt;}
.ws1b0{word-spacing:4.334848pt;}
.ws106{word-spacing:4.355840pt;}
.ws13b{word-spacing:4.382080pt;}
.ws1ac{word-spacing:4.387328pt;}
.wsb8{word-spacing:4.492288pt;}
.ws136{word-spacing:4.581504pt;}
.ws6c{word-spacing:4.649728pt;}
.ws1d6{word-spacing:4.686464pt;}
.ws9f{word-spacing:4.759936pt;}
.wseb{word-spacing:4.896384pt;}
.ws5e{word-spacing:4.969856pt;}
.wsb3{word-spacing:4.975104pt;}
.ws48{word-spacing:5.011840pt;}
.ws4a{word-spacing:5.017088pt;}
.ws49{word-spacing:5.053824pt;}
.ws125{word-spacing:5.279488pt;}
.ws6f{word-spacing:5.289984pt;}
.ws17{word-spacing:5.394944pt;}
.ws71{word-spacing:5.473664pt;}
.wsc0{word-spacing:5.636352pt;}
.wsec{word-spacing:5.678336pt;}
.wse7{word-spacing:5.688832pt;}
.ws101{word-spacing:5.809536pt;}
.ws181{word-spacing:5.893504pt;}
.ws12b{word-spacing:6.113920pt;}
.ws179{word-spacing:6.155904pt;}
.ws6a{word-spacing:6.250368pt;}
.ws14b{word-spacing:6.279936pt;}
.ws103{word-spacing:6.281856pt;}
.ws1d9{word-spacing:6.318592pt;}
.wsf8{word-spacing:6.329088pt;}
.ws3e{word-spacing:6.350080pt;}
.ws13{word-spacing:6.360576pt;}
.wsc5{word-spacing:6.423552pt;}
.ws21{word-spacing:6.455040pt;}
.wsf0{word-spacing:6.502272pt;}
.ws182{word-spacing:6.575744pt;}
.ws92{word-spacing:6.848640pt;}
.wsf4{word-spacing:6.874880pt;}
.wsf9{word-spacing:6.922112pt;}
.ws1a9{word-spacing:7.021824pt;}
.wsd1{word-spacing:7.037568pt;}
.wsad{word-spacing:7.042816pt;}
.wsdf{word-spacing:7.158272pt;}
.ws135{word-spacing:7.184512pt;}
.ws98{word-spacing:7.189760pt;}
.ws20{word-spacing:7.268480pt;}
.wsaf{word-spacing:7.378688pt;}
.ws155{word-spacing:7.467904pt;}
.ws18f{word-spacing:7.478400pt;}
.ws1ec{word-spacing:7.738624pt;}
.ws1f{word-spacing:7.887744pt;}
.wsea{word-spacing:7.903488pt;}
.wsb7{word-spacing:7.924480pt;}
.ws1a3{word-spacing:8.008448pt;}
.ws1ae{word-spacing:8.018944pt;}
.ws16e{word-spacing:8.097664pt;}
.ws96{word-spacing:8.160640pt;}
.ws1f5{word-spacing:8.183808pt;}
.ws41{word-spacing:8.302336pt;}
.ws6b{word-spacing:8.349568pt;}
.ws1d0{word-spacing:8.402048pt;}
.wsa1{word-spacing:8.412544pt;}
.wsa0{word-spacing:8.444032pt;}
.ws24{word-spacing:8.459776pt;}
.ws23{word-spacing:8.475520pt;}
.ws1e3{word-spacing:8.605312pt;}
.ws12{word-spacing:8.711680pt;}
.ws16c{word-spacing:8.722176pt;}
.ws1bb{word-spacing:8.743168pt;}
.ws19f{word-spacing:8.790400pt;}
.ws16d{word-spacing:8.800896pt;}
.ws13f{word-spacing:8.837632pt;}
.ws1d7{word-spacing:8.853376pt;}
.ws124{word-spacing:8.858624pt;}
.ws15c{word-spacing:8.900608pt;}
.ws1ef{word-spacing:8.974720pt;}
.ws1f2{word-spacing:8.998400pt;}
.ws25{word-spacing:9.052800pt;}
.ws12d{word-spacing:9.094784pt;}
.wse8{word-spacing:9.262720pt;}
.ws1c3{word-spacing:9.367680pt;}
.ws33{word-spacing:9.394176pt;}
.ws1ba{word-spacing:9.561856pt;}
.ws3b{word-spacing:9.567104pt;}
.wsf{word-spacing:9.782272pt;}
.ws97{word-spacing:9.803264pt;}
.ws3f{word-spacing:9.871488pt;}
.ws15b{word-spacing:9.897728pt;}
.ws82{word-spacing:9.939712pt;}
.ws1a{word-spacing:9.965952pt;}
.ws52{word-spacing:9.971200pt;}
.wscd{word-spacing:10.233600pt;}
.ws11f{word-spacing:10.254592pt;}
.wsc2{word-spacing:10.307072pt;}
.wsbb{word-spacing:10.443520pt;}
.ws19e{word-spacing:10.475008pt;}
.ws3c{word-spacing:10.590464pt;}
.ws140{word-spacing:10.758400pt;}
.ws69{word-spacing:10.894848pt;}
.ws192{word-spacing:10.957824pt;}
.ws16b{word-spacing:10.994560pt;}
.ws121{word-spacing:11.005056pt;}
.ws117{word-spacing:11.036544pt;}
.ws77{word-spacing:11.057536pt;}
.wse3{word-spacing:11.083776pt;}
.ws100{word-spacing:11.162496pt;}
.ws168{word-spacing:11.200640pt;}
.ws18e{word-spacing:11.204480pt;}
.ws1ca{word-spacing:11.283200pt;}
.ws1a1{word-spacing:11.424896pt;}
.ws9a{word-spacing:11.571840pt;}
.wsc8{word-spacing:11.634816pt;}
.ws195{word-spacing:11.655296pt;}
.wsc4{word-spacing:11.676800pt;}
.ws5f{word-spacing:11.776512pt;}
.ws60{word-spacing:11.802752pt;}
.ws28{word-spacing:11.808000pt;}
.ws79{word-spacing:11.834240pt;}
.wse{word-spacing:12.175360pt;}
.ws16a{word-spacing:12.201600pt;}
.ws1b1{word-spacing:12.238336pt;}
.ws1c9{word-spacing:12.264576pt;}
.ws1e6{word-spacing:12.318336pt;}
.ws1a8{word-spacing:12.348544pt;}
.ws14f{word-spacing:12.474496pt;}
.ws17c{word-spacing:12.542720pt;}
.ws191{word-spacing:12.584704pt;}
.ws1be{word-spacing:12.957312pt;}
.ws1dc{word-spacing:12.978304pt;}
.ws1ad{word-spacing:12.994048pt;}
.ws83{word-spacing:13.036032pt;}
.ws76{word-spacing:13.188224pt;}
.ws1a5{word-spacing:13.209216pt;}
.wsbf{word-spacing:13.298432pt;}
.ws1ea{word-spacing:13.379200pt;}
.ws137{word-spacing:13.403392pt;}
.ws1cb{word-spacing:13.576576pt;}
.ws118{word-spacing:13.644800pt;}
.ws50{word-spacing:13.681536pt;}
.ws1b3{word-spacing:13.702528pt;}
.wsa6{word-spacing:13.723520pt;}
.ws19d{word-spacing:13.859968pt;}
.ws4f{word-spacing:13.938688pt;}
.ws4e{word-spacing:13.980672pt;}
.wsf1{word-spacing:14.096128pt;}
.ws193{word-spacing:14.122368pt;}
.ws1d2{word-spacing:14.269312pt;}
.wsf3{word-spacing:14.673408pt;}
.ws108{word-spacing:14.678656pt;}
.ws102{word-spacing:14.699648pt;}
.ws2d{word-spacing:14.746880pt;}
.ws141{word-spacing:14.767872pt;}
.ws190{word-spacing:15.103744pt;}
.ws91{word-spacing:15.108992pt;}
.wsbe{word-spacing:15.366144pt;}
.ws1d1{word-spacing:15.534080pt;}
.wse9{word-spacing:15.618048pt;}
.ws1a7{word-spacing:15.707264pt;}
.ws11e{word-spacing:15.896192pt;}
.ws58{word-spacing:15.906688pt;}
.ws86{word-spacing:15.911936pt;}
.ws63{word-spacing:15.917184pt;}
.ws120{word-spacing:16.016896pt;}
.wsdd{word-spacing:16.043136pt;}
.ws1dd{word-spacing:16.158592pt;}
.ws15d{word-spacing:16.237312pt;}
.ws47{word-spacing:16.326528pt;}
.ws75{word-spacing:16.420992pt;}
.ws46{word-spacing:16.462976pt;}
.ws12e{word-spacing:16.483968pt;}
.ws1e4{word-spacing:16.618624pt;}
.ws13d{word-spacing:16.945792pt;}
.ws93{word-spacing:17.024512pt;}
.ws127{word-spacing:17.029760pt;}
.wsbd{word-spacing:17.092736pt;}
.wsc7{word-spacing:17.108480pt;}
.wsa7{word-spacing:17.118976pt;}
.ws85{word-spacing:17.145216pt;}
.ws153{word-spacing:17.150464pt;}
.ws2c{word-spacing:17.208192pt;}
.wsc3{word-spacing:17.250176pt;}
.ws143{word-spacing:17.633280pt;}
.ws80{word-spacing:17.670016pt;}
.ws19a{word-spacing:17.675264pt;}
.ws142{word-spacing:17.680512pt;}
.ws198{word-spacing:17.691008pt;}
.ws1b5{word-spacing:18.121344pt;}
.ws1f6{word-spacing:18.172032pt;}
.ws1c2{word-spacing:18.488704pt;}
.ws132{word-spacing:18.577920pt;}
.wsb6{word-spacing:18.593664pt;}
.ws7a{word-spacing:18.693376pt;}
.ws9c{word-spacing:18.735360pt;}
.ws14d{word-spacing:18.913792pt;}
.ws78{word-spacing:18.919040pt;}
.ws12a{word-spacing:19.024000pt;}
.ws1a0{word-spacing:19.601280pt;}
.ws133{word-spacing:19.664256pt;}
.ws104{word-spacing:19.674752pt;}
.ws194{word-spacing:19.769216pt;}
.wsac{word-spacing:19.826944pt;}
.ws12c{word-spacing:20.556416pt;}
.ws1aa{word-spacing:20.608896pt;}
.ws11a{word-spacing:20.698112pt;}
.ws178{word-spacing:20.757888pt;}
.ws1c{word-spacing:20.803072pt;}
.ws9e{word-spacing:21.201920pt;}
.ws7b{word-spacing:21.228160pt;}
.ws1e9{word-spacing:21.525120pt;}
.wsdc{word-spacing:21.606016pt;}
.ws156{word-spacing:21.668992pt;}
.ws68{word-spacing:21.836928pt;}
.ws1e1{word-spacing:21.857920pt;}
.ws1e8{word-spacing:22.117120pt;}
.ws88{word-spacing:22.136064pt;}
.ws1b8{word-spacing:22.272512pt;}
.wsbc{word-spacing:22.372224pt;}
.ws57{word-spacing:22.592640pt;}
.ws8f{word-spacing:22.681856pt;}
.wsb5{word-spacing:22.771072pt;}
.ws7f{word-spacing:22.792064pt;}
.ws14c{word-spacing:22.879616pt;}
.ws18c{word-spacing:22.886528pt;}
.ws1e7{word-spacing:23.045376pt;}
.ws157{word-spacing:23.070208pt;}
.ws62{word-spacing:23.159424pt;}
.ws67{word-spacing:23.248640pt;}
.wse5{word-spacing:23.526784pt;}
.ws15a{word-spacing:23.600256pt;}
.ws199{word-spacing:23.626496pt;}
.ws1de{word-spacing:23.657984pt;}
.ws17e{word-spacing:23.684224pt;}
.ws165{word-spacing:23.883648pt;}
.ws105{word-spacing:23.999104pt;}
.ws187{word-spacing:24.067328pt;}
.wsb0{word-spacing:24.077824pt;}
.ws1da{word-spacing:24.272000pt;}
.ws55{word-spacing:24.634112pt;}
.ws1e2{word-spacing:24.691840pt;}
.ws14e{word-spacing:24.791552pt;}
.ws72{word-spacing:25.106432pt;}
.ws64{word-spacing:25.395072pt;}
.ws53{word-spacing:25.458048pt;}
.ws39{word-spacing:25.515776pt;}
.wsa9{word-spacing:25.599744pt;}
.ws40{word-spacing:25.694208pt;}
.ws22{word-spacing:25.956608pt;}
.ws164{word-spacing:25.993344pt;}
.ws119{word-spacing:26.077312pt;}
.ws1bf{word-spacing:26.607360pt;}
.ws126{word-spacing:26.749056pt;}
.ws35{word-spacing:26.809728pt;}
.ws3a{word-spacing:26.859264pt;}
.ws19c{word-spacing:28.087296pt;}
.ws6d{word-spacing:28.097792pt;}
.wse1{word-spacing:28.187008pt;}
.ws8a{word-spacing:28.302464pt;}
.ws1ce{word-spacing:28.811520pt;}
.ws169{word-spacing:29.069568pt;}
.ws9d{word-spacing:29.362560pt;}
.ws134{word-spacing:29.467520pt;}
.ws1d8{word-spacing:29.551488pt;}
.ws1db{word-spacing:29.567232pt;}
.ws6e{word-spacing:29.609216pt;}
.ws36{word-spacing:30.446592pt;}
.ws152{word-spacing:30.511872pt;}
.ws12f{word-spacing:30.795264pt;}
.ws131{word-spacing:30.832000pt;}
.ws2a{word-spacing:30.999936pt;}
.wsae{word-spacing:31.304320pt;}
.ws18d{word-spacing:31.346304pt;}
.ws107{word-spacing:31.493248pt;}
.ws61{word-spacing:31.661184pt;}
.wse4{word-spacing:31.871104pt;}
.ws1b2{word-spacing:31.897344pt;}
.wsff{word-spacing:32.490368pt;}
.wsb2{word-spacing:32.527104pt;}
.ws1f0{word-spacing:32.768384pt;}
.wsd2{word-spacing:32.920704pt;}
.ws1ee{word-spacing:33.194624pt;}
.ws1df{word-spacing:33.272320pt;}
.wsed{word-spacing:33.912576pt;}
.wsd3{word-spacing:34.311424pt;}
.ws11d{word-spacing:34.579072pt;}
.ws73{word-spacing:34.747008pt;}
.ws1f3{word-spacing:34.852224pt;}
.ws51{word-spacing:35.455488pt;}
.ws1c6{word-spacing:35.471232pt;}
.ws2e{word-spacing:36.080000pt;}
.ws1a2{word-spacing:36.268928pt;}
.ws90{word-spacing:37.260800pt;}
.wsce{word-spacing:39.186816pt;}
.ws1cd{word-spacing:39.318016pt;}
.ws129{word-spacing:39.354752pt;}
.ws32{word-spacing:40.708736pt;}
.ws139{word-spacing:40.918656pt;}
.ws89{word-spacing:41.312256pt;}
.ws4d{word-spacing:41.427712pt;}
.ws87{word-spacing:41.480192pt;}
.ws197{word-spacing:42.178176pt;}
.wsde{word-spacing:42.477312pt;}
.ws145{word-spacing:42.949632pt;}
.ws160{word-spacing:43.101824pt;}
.ws81{word-spacing:44.985856pt;}
.wscb{word-spacing:45.027840pt;}
.ws1c8{word-spacing:45.589376pt;}
.ws84{word-spacing:46.822656pt;}
.ws1ab{word-spacing:47.929984pt;}
.wscc{word-spacing:48.391808pt;}
.ws1c1{word-spacing:49.551616pt;}
.wse6{word-spacing:50.748160pt;}
.ws94{word-spacing:50.931840pt;}
.ws7c{word-spacing:51.078784pt;}
.ws172{word-spacing:52.574464pt;}
.wscf{word-spacing:54.626432pt;}
.ws2b{word-spacing:54.736640pt;}
.ws8b{word-spacing:56.269056pt;}
.ws17b{word-spacing:57.009024pt;}
.ws183{word-spacing:57.822464pt;}
.ws13e{word-spacing:58.404992pt;}
.ws1f1{word-spacing:58.873216pt;}
.wsc9{word-spacing:61.999872pt;}
.ws1b9{word-spacing:62.104832pt;}
.wsd9{word-spacing:62.445952pt;}
.wsda{word-spacing:62.508928pt;}
.wsd6{word-spacing:62.519424pt;}
.wsdb{word-spacing:63.280384pt;}
.ws95{word-spacing:64.980736pt;}
.ws8e{word-spacing:67.389568pt;}
.ws1e0{word-spacing:70.102784pt;}
.ws1e5{word-spacing:73.052800pt;}
.ws17f{word-spacing:76.993408pt;}
.ws147{word-spacing:102.278272pt;}
.ws17d{word-spacing:116.358656pt;}
.ws10b{word-spacing:119.544192pt;}
.ws15f{word-spacing:122.766464pt;}
.ws146{word-spacing:131.939968pt;}
.ws180{word-spacing:146.025600pt;}
.wse0{word-spacing:148.182528pt;}
.ws163{word-spacing:152.428160pt;}
.ws10c{word-spacing:163.947520pt;}
.wsfb{word-spacing:180.893312pt;}
.ws123{word-spacing:201.176832pt;}
.wsfc{word-spacing:278.705536pt;}
.ws10f{word-spacing:409.669376pt;}
.ws10d{word-spacing:409.784832pt;}
.ws10a{word-spacing:448.331392pt;}
.wsfa{word-spacing:462.406528pt;}
.ws184{word-spacing:546.117376pt;}
.ws176{word-spacing:601.158400pt;}
.ws166{word-spacing:624.197120pt;}
.ws185{word-spacing:626.096896pt;}
.ws17a{word-spacing:664.648704pt;}
.ws148{word-spacing:665.682560pt;}
.ws149{word-spacing:680.518656pt;}
.ws177{word-spacing:681.143168pt;}
.ws167{word-spacing:704.187136pt;}
.ws171{word-spacing:719.689728pt;}
.ws15e{word-spacing:742.723200pt;}
.ws14a{word-spacing:760.498176pt;}
.ws144{word-spacing:799.044736pt;}
.ws1d3{word-spacing:946.004480pt;}
.ws1d4{word-spacing:960.824832pt;}
.ws1d5{word-spacing:1040.835840pt;}
._54{margin-left:-842.786816pt;}
._53{margin-left:-841.506304pt;}
._55{margin-left:-804.387200pt;}
._51{margin-left:-762.733824pt;}
._50{margin-left:-761.453312pt;}
._52{margin-left:-724.334208pt;}
._25{margin-left:-687.902592pt;}
._26{margin-left:-679.285376pt;}
._2d{margin-left:-658.807680pt;}
._4b{margin-left:-657.653120pt;}
._4c{margin-left:-621.226752pt;}
._2c{margin-left:-611.108608pt;}
._24{margin-left:-607.849600pt;}
._35{margin-left:-590.625664pt;}
._3a{margin-left:-539.426176pt;}
._22{margin-left:-533.716352pt;}
._2b{margin-left:-531.050368pt;}
._34{margin-left:-510.572672pt;}
._39{margin-left:-459.373184pt;}
._14{margin-left:-374.649472pt;}
._13{margin-left:-373.368960pt;}
._16{margin-left:-306.467456pt;}
._15{margin-left:-305.186944pt;}
._e{margin-left:-277.362048pt;}
._1e{margin-left:-217.482368pt;}
._1d{margin-left:-216.201856pt;}
._10{margin-left:-78.772480pt;}
._b{margin-left:-62.650624pt;}
._4{margin-left:-17.792000pt;}
._8{margin-left:-15.980800pt;}
._7{margin-left:-10.477675pt;}
._2{margin-left:-8.273067pt;}
._5{margin-left:-7.206400pt;}
._0{margin-left:-5.545792pt;}
._6{margin-left:-2.735808pt;}
._3{margin-left:-1.344000pt;}
._9{width:0.997120pt;}
._d{width:5.452672pt;}
._c{width:8.071424pt;}
._1{width:11.409067pt;}
._f{width:19.065984pt;}
._3c{width:32.516608pt;}
._3b{width:35.885824pt;}
._17{width:42.792192pt;}
._43{width:51.566848pt;}
._1a{width:60.556672pt;}
._a{width:62.645376pt;}
._3e{width:67.730688pt;}
._38{width:81.149824pt;}
._36{width:83.742336pt;}
._2f{width:90.811392pt;}
._27{width:96.930560pt;}
._32{width:105.626496pt;}
._19{width:118.431616pt;}
._18{width:119.706880pt;}
._30{width:130.554496pt;}
._20{width:132.160384pt;}
._37{width:146.240768pt;}
._28{width:152.659072pt;}
._2a{width:159.229568pt;}
._29{width:161.822080pt;}
._1c{width:162.908416pt;}
._1b{width:164.188928pt;}
._3f{width:175.797504pt;}
._49{width:180.930048pt;}
._21{width:209.731072pt;}
._12{width:214.921344pt;}
._41{width:227.941632pt;}
._40{width:229.222144pt;}
._48{width:255.850496pt;}
._45{width:257.608576pt;}
._44{width:258.889088pt;}
._4a{width:264.278784pt;}
._42{width:266.341248pt;}
._4e{width:288.566528pt;}
._46{width:296.008192pt;}
._4f{width:325.701376pt;}
._11{width:409.291520pt;}
._33{width:456.481536pt;}
._2e{width:468.420736pt;}
._47{width:525.707904pt;}
._23{width:535.448192pt;}
._1f{width:547.303424pt;}
._31{width:586.516480pt;}
._4d{width:816.100736pt;}
._3d{width:1079.597568pt;}
.fsa{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs1{font-size:43.530667pt;}
.fs6{font-size:47.360000pt;}
.fs5{font-size:52.480000pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:37.796000pt;}
.y4d{bottom:88.843451pt;}
.y1cd{bottom:100.046101pt;}
.y4c{bottom:101.003291pt;}
.y24f{bottom:101.326997pt;}
.y226{bottom:102.921467pt;}
.y9b{bottom:102.966261pt;}
.y12e{bottom:106.445141pt;}
.y160{bottom:107.741787pt;}
.yd3{bottom:112.207067pt;}
.y6{bottom:113.023333pt;}
.y4b{bottom:113.483099pt;}
.y198{bottom:114.140187pt;}
.y1cc{bottom:115.085557pt;}
.y24e{bottom:116.365141pt;}
.y9a{bottom:118.325845pt;}
.y225{bottom:119.285077pt;}
.y104{bottom:119.880597pt;}
.y12d{bottom:121.804725pt;}
.y15f{bottom:122.779931pt;}
.y4a{bottom:125.642939pt;}
.yd2{bottom:127.565339pt;}
.y197{bottom:129.499771pt;}
.y1cb{bottom:130.445141pt;}
.y24d{bottom:131.724725pt;}
.y99{bottom:133.684117pt;}
.y224{bottom:134.643349pt;}
.y12c{bottom:137.164309pt;}
.y49{bottom:137.802779pt;}
.y15e{bottom:138.139515pt;}
.yd1{bottom:142.924923pt;}
.y103{bottom:143.240757pt;}
.y196{bottom:144.859355pt;}
.y1ca{bottom:145.804725pt;}
.y24c{bottom:147.084309pt;}
.y98{bottom:149.043701pt;}
.y223{bottom:150.002933pt;}
.y12b{bottom:152.523893pt;}
.y15d{bottom:153.499099pt;}
.y48{bottom:157.641467pt;}
.yd0{bottom:158.283195pt;}
.y195{bottom:159.898811pt;}
.y1c9{bottom:161.164309pt;}
.y24b{bottom:162.443893pt;}
.y97{bottom:164.403285pt;}
.y222{bottom:165.361205pt;}
.y102{bottom:166.600917pt;}
.y47{bottom:166.601333pt;}
.y12a{bottom:167.883477pt;}
.y15c{bottom:168.857371pt;}
.ycf{bottom:173.641467pt;}
.y194{bottom:175.257083pt;}
.y1c8{bottom:176.523893pt;}
.y24a{bottom:177.803477pt;}
.y96{bottom:179.761557pt;}
.y221{bottom:180.719477pt;}
.y5c{bottom:181.012795pt;}
.y129{bottom:183.243061pt;}
.y15b{bottom:184.216955pt;}
.yce{bottom:189.321467pt;}
.y101{bottom:189.961077pt;}
.y193{bottom:190.615355pt;}
.y1c7{bottom:191.883477pt;}
.y249{bottom:193.163061pt;}
.y46{bottom:193.165339pt;}
.y95{bottom:195.121141pt;}
.y5b{bottom:196.052251pt;}
.y220{bottom:196.077749pt;}
.y128{bottom:198.601333pt;}
.y15a{bottom:199.576539pt;}
.y192{bottom:205.973627pt;}
.y1c6{bottom:207.243061pt;}
.ycd{bottom:207.253493pt;}
.y248{bottom:208.521333pt;}
.y45{bottom:208.524923pt;}
.y94{bottom:210.480725pt;}
.y5a{bottom:211.410523pt;}
.y21f{bottom:211.436021pt;}
.y100{bottom:213.321237pt;}
.y127{bottom:213.321467pt;}
.y159{bottom:214.936123pt;}
.y191{bottom:221.331899pt;}
.y1c5{bottom:222.601333pt;}
.ycc{bottom:222.611765pt;}
.y44{bottom:223.883195pt;}
.y247{bottom:224.201333pt;}
.y93{bottom:225.518869pt;}
.y59{bottom:226.770107pt;}
.y21e{bottom:226.794293pt;}
.y158{bottom:230.294395pt;}
.yff{bottom:236.681397pt;}
.y190{bottom:236.690171pt;}
.y1c4{bottom:237.318805pt;}
.ycb{bottom:237.971349pt;}
.y126{bottom:238.921467pt;}
.y43{bottom:239.246651pt;}
.y92{bottom:240.878453pt;}
.y58{bottom:242.128379pt;}
.y246{bottom:242.145461pt;}
.y21d{bottom:242.153877pt;}
.y157{bottom:245.653979pt;}
.y1fa{bottom:245.976981pt;}
.y1c3{bottom:251.080437pt;}
.yfe{bottom:252.040981pt;}
.y18f{bottom:252.048443pt;}
.yca{bottom:253.330933pt;}
.y42{bottom:254.606235pt;}
.y91{bottom:256.238037pt;}
.y57{bottom:257.486651pt;}
.y245{bottom:257.503733pt;}
.y21c{bottom:257.513461pt;}
.y156{bottom:261.012251pt;}
.y1c2{bottom:264.840885pt;}
.y125{bottom:265.481467pt;}
.y18e{bottom:267.406715pt;}
.yc9{bottom:268.689205pt;}
.y41{bottom:269.645691pt;}
.y90{bottom:271.596309pt;}
.y56{bottom:272.846235pt;}
.y244{bottom:272.863317pt;}
.y21b{bottom:272.871733pt;}
.yfd{bottom:275.081013pt;}
.y155{bottom:276.370523pt;}
.y1f9{bottom:277.336405pt;}
.y1c1{bottom:278.601333pt;}
.y18d{bottom:282.766299pt;}
.yc8{bottom:284.048789pt;}
.y40{bottom:285.005275pt;}
.y8f{bottom:286.955893pt;}
.y55{bottom:288.205819pt;}
.y243{bottom:288.222901pt;}
.y21a{bottom:288.231317pt;}
.y154{bottom:291.409979pt;}
.y124{bottom:292.041333pt;}
.y1f8{bottom:292.694677pt;}
.y1c0{bottom:293.641467pt;}
.y18c{bottom:298.125883pt;}
.yfc{bottom:298.441173pt;}
.yc7{bottom:299.088245pt;}
.y3f{bottom:300.364859pt;}
.y8e{bottom:302.315477pt;}
.y219{bottom:303.270773pt;}
.y54{bottom:303.565403pt;}
.y242{bottom:303.581173pt;}
.y153{bottom:306.769563pt;}
.y1f7{bottom:308.054261pt;}
.y1bf{bottom:309.641467pt;}
.y18b{bottom:313.484155pt;}
.yc6{bottom:314.446517pt;}
.y3e{bottom:315.724443pt;}
.y8d{bottom:317.673749pt;}
.y123{bottom:318.601333pt;}
.y218{bottom:318.629045pt;}
.y53{bottom:318.924987pt;}
.y241{bottom:318.940757pt;}
.yfb{bottom:321.801333pt;}
.y152{bottom:322.127835pt;}
.y1f6{bottom:323.412533pt;}
.y1be{bottom:325.641467pt;}
.y18a{bottom:328.843739pt;}
.yc5{bottom:329.804789pt;}
.y3d{bottom:331.084027pt;}
.y8c{bottom:333.033333pt;}
.y217{bottom:333.988629pt;}
.y52{bottom:334.284571pt;}
.y240{bottom:334.300341pt;}
.y122{bottom:334.921467pt;}
.y151{bottom:337.487419pt;}
.y1f5{bottom:338.770805pt;}
.y1bd{bottom:341.641467pt;}
.y189{bottom:343.883195pt;}
.yf{bottom:344.956000pt;}
.yc4{bottom:345.163061pt;}
.yfa{bottom:345.171765pt;}
.y3c{bottom:346.443611pt;}
.y8b{bottom:348.392917pt;}
.y216{bottom:349.346901pt;}
.y51{bottom:349.642843pt;}
.y23f{bottom:349.659925pt;}
.y121{bottom:352.843611pt;}
.y150{bottom:352.847003pt;}
.y1f4{bottom:354.130389pt;}
.y1bc{bottom:357.641883pt;}
.y188{bottom:359.241467pt;}
.yc3{bottom:360.521333pt;}
.yf9{bottom:360.530037pt;}
.y3b{bottom:361.803195pt;}
.y8a{bottom:363.752501pt;}
.ye{bottom:364.156000pt;}
.y50{bottom:364.683611pt;}
.y215{bottom:364.705173pt;}
.y23e{bottom:365.019509pt;}
.y120{bottom:368.203195pt;}
.y14f{bottom:368.205275pt;}
.y1f3{bottom:369.489973pt;}
.y1bb{bottom:373.001467pt;}
.y187{bottom:374.603061pt;}
.yf8{bottom:375.888309pt;}
.yc2{bottom:375.899029pt;}
.y3a{bottom:377.161467pt;}
.y89{bottom:379.112085pt;}
.y4f{bottom:380.043195pt;}
.y214{bottom:380.064757pt;}
.y23d{bottom:380.379093pt;}
.yd{bottom:383.356000pt;}
.y11f{bottom:383.561467pt;}
.y14e{bottom:383.564859pt;}
.y1f2{bottom:384.849557pt;}
.y1ba{bottom:389.001749pt;}
.y186{bottom:389.961333pt;}
.yf7{bottom:391.246581pt;}
.yc1{bottom:391.257301pt;}
.y39{bottom:392.841467pt;}
.y88{bottom:394.471669pt;}
.y4e{bottom:395.401467pt;}
.y23c{bottom:395.417237pt;}
.y213{bottom:395.424341pt;}
.y14d{bottom:398.924443pt;}
.y11e{bottom:399.241467pt;}
.y1f1{bottom:400.207829pt;}
.y1b9{bottom:404.361333pt;}
.y185{bottom:404.680443pt;}
.yf6{bottom:406.606165pt;}
.yc0{bottom:406.616885pt;}
.y87{bottom:409.509813pt;}
.y38{bottom:410.763061pt;}
.y23b{bottom:410.776821pt;}
.y212{bottom:410.782613pt;}
.y14c{bottom:414.284027pt;}
.y1f0{bottom:415.567413pt;}
.y11d{bottom:416.201333pt;}
.y184{bottom:418.440891pt;}
.y1b8{bottom:420.361333pt;}
.yf5{bottom:421.965749pt;}
.ybf{bottom:421.976469pt;}
.y86{bottom:424.869397pt;}
.y37{bottom:426.121333pt;}
.y23a{bottom:426.136405pt;}
.y211{bottom:426.142197pt;}
.y14b{bottom:429.643611pt;}
.y1ef{bottom:430.606869pt;}
.y183{bottom:432.521019pt;}
.y11c{bottom:434.761333pt;}
.y1b7{bottom:436.361749pt;}
.yc{bottom:436.604000pt;}
.yf4{bottom:437.324021pt;}
.ybe{bottom:437.336053pt;}
.y85{bottom:440.227669pt;}
.y36{bottom:441.490805pt;}
.y239{bottom:441.495989pt;}
.y210{bottom:441.501781pt;}
.y14a{bottom:445.003195pt;}
.y1ee{bottom:445.966453pt;}
.y182{bottom:446.281467pt;}
.y1b6{bottom:451.721333pt;}
.yf3{bottom:452.683605pt;}
.ybd{bottom:452.694325pt;}
.y11b{bottom:453.001333pt;}
.y84{bottom:455.585941pt;}
.yb{bottom:455.804000pt;}
.y35{bottom:456.850389pt;}
.y238{bottom:456.854261pt;}
.y20f{bottom:456.860053pt;}
.y149{bottom:460.361467pt;}
.y181{bottom:461.321467pt;}
.y1ed{bottom:461.326037pt;}
.y1b5{bottom:467.721333pt;}
.yf2{bottom:467.723061pt;}
.ybc{bottom:467.733781pt;}
.y11a{bottom:470.924789pt;}
.y83{bottom:470.944213pt;}
.y20e{bottom:471.899509pt;}
.y34{bottom:472.209973pt;}
.y237{bottom:472.213845pt;}
.ya{bottom:475.004000pt;}
.y148{bottom:475.415157pt;}
.y1ec{bottom:476.685621pt;}
.y180{bottom:477.321333pt;}
.yf1{bottom:483.081333pt;}
.ybb{bottom:483.092053pt;}
.y1b4{bottom:483.731093pt;}
.y119{bottom:486.283061pt;}
.y82{bottom:486.303797pt;}
.y20d{bottom:487.257781pt;}
.y33{bottom:487.569557pt;}
.y236{bottom:487.573429pt;}
.y147{bottom:490.773429pt;}
.y1eb{bottom:492.043893pt;}
.y17f{bottom:493.321467pt;}
.y9{bottom:494.204000pt;}
.yba{bottom:498.450325pt;}
.yf0{bottom:499.081333pt;}
.y1b3{bottom:499.730933pt;}
.y118{bottom:501.641333pt;}
.y81{bottom:501.663381pt;}
.y20c{bottom:502.616053pt;}
.y32{bottom:502.929141pt;}
.y235{bottom:502.931701pt;}
.y146{bottom:506.133013pt;}
.y1ea{bottom:507.403477pt;}
.y17e{bottom:509.321467pt;}
.y8{bottom:513.404000pt;}
.yb9{bottom:513.808597pt;}
.y1b2{bottom:515.089205pt;}
.yef{bottom:517.001333pt;}
.y80{bottom:517.021653pt;}
.y117{bottom:517.026901pt;}
.y20b{bottom:517.975637pt;}
.y31{bottom:518.288725pt;}
.y234{bottom:518.291285pt;}
.y145{bottom:521.492597pt;}
.y1e9{bottom:522.763061pt;}
.y17d{bottom:525.323061pt;}
.yb8{bottom:529.166869pt;}
.y1b1{bottom:530.447477pt;}
.yee{bottom:532.376533pt;}
.y7f{bottom:532.381237pt;}
.y116{bottom:532.386485pt;}
.y7{bottom:532.604000pt;}
.y20a{bottom:533.335221pt;}
.y30{bottom:533.648309pt;}
.y233{bottom:533.650869pt;}
.y144{bottom:536.852181pt;}
.y1e8{bottom:538.121333pt;}
.y17c{bottom:540.681333pt;}
.yb7{bottom:544.525141pt;}
.y1b0{bottom:545.805749pt;}
.yed{bottom:547.736117pt;}
.y7e{bottom:547.740821pt;}
.y115{bottom:547.744757pt;}
.y2f{bottom:548.686453pt;}
.y209{bottom:548.693493pt;}
.y232{bottom:549.010453pt;}
.y143{bottom:552.210453pt;}
.y1e7{bottom:553.483477pt;}
.y17b{bottom:556.681877pt;}
.yb6{bottom:559.884725pt;}
.y1af{bottom:561.164021pt;}
.yec{bottom:563.095701pt;}
.y7d{bottom:563.099093pt;}
.y114{bottom:563.103029pt;}
.y2e{bottom:564.046037pt;}
.y208{bottom:564.051765pt;}
.y231{bottom:564.370037pt;}
.y142{bottom:567.570037pt;}
.y1e6{bottom:568.843061pt;}
.y17a{bottom:571.721333pt;}
.yb5{bottom:575.244309pt;}
.y1ae{bottom:576.523605pt;}
.yeb{bottom:578.135157pt;}
.y7c{bottom:578.138549pt;}
.y113{bottom:578.142485pt;}
.y2d{bottom:579.405621pt;}
.y230{bottom:579.409493pt;}
.y207{bottom:579.410037pt;}
.y141{bottom:582.928309pt;}
.y1e5{bottom:584.201333pt;}
.y179{bottom:587.721333pt;}
.yb4{bottom:590.602581pt;}
.y1ad{bottom:591.883189pt;}
.yea{bottom:593.493429pt;}
.y7b{bottom:593.498133pt;}
.y112{bottom:593.502069pt;}
.y2c{bottom:594.765205pt;}
.y22f{bottom:594.767765pt;}
.y206{bottom:594.768309pt;}
.y140{bottom:598.286581pt;}
.y1e4{bottom:599.243477pt;}
.y178{bottom:603.723061pt;}
.y281{bottom:604.361467pt;}
.yb3{bottom:605.962165pt;}
.y1ac{bottom:606.921333pt;}
.ye9{bottom:608.853013pt;}
.y7a{bottom:608.857717pt;}
.y111{bottom:608.861653pt;}
.y2b{bottom:610.124789pt;}
.y205{bottom:610.126581pt;}
.y22e{bottom:610.127349pt;}
.y5{bottom:612.970800pt;}
.y13f{bottom:613.646165pt;}
.y1e3{bottom:614.603061pt;}
.y177{bottom:619.081333pt;}
.yb2{bottom:621.321749pt;}
.y1ab{bottom:621.958805pt;}
.y267{bottom:621.960571pt;}
.ye8{bottom:624.211285pt;}
.y79{bottom:624.217301pt;}
.y110{bottom:624.221237pt;}
.y2a{bottom:625.483061pt;}
.y22d{bottom:625.485621pt;}
.y204{bottom:625.486165pt;}
.y13e{bottom:629.005749pt;}
.y1e2{bottom:629.961333pt;}
.y280{bottom:631.221819pt;}
.y176{bottom:635.081333pt;}
.y1aa{bottom:635.720437pt;}
.y266{bottom:635.721019pt;}
.yb1{bottom:636.681333pt;}
.ye7{bottom:639.569557pt;}
.y78{bottom:639.576885pt;}
.y10f{bottom:639.580821pt;}
.y4{bottom:639.638000pt;}
.y29{bottom:640.841333pt;}
.y22c{bottom:640.843893pt;}
.y203{bottom:640.845749pt;}
.y13d{bottom:644.043893pt;}
.y27f{bottom:644.982267pt;}
.y1e1{bottom:645.961333pt;}
.y1a9{bottom:649.480885pt;}
.y265{bottom:649.481467pt;}
.y175{bottom:651.099733pt;}
.yb0{bottom:651.739861pt;}
.ye6{bottom:654.929141pt;}
.y77{bottom:654.936469pt;}
.y10e{bottom:654.939093pt;}
.y202{bottom:655.883893pt;}
.y22b{bottom:656.203477pt;}
.y28{bottom:656.207413pt;}
.y27e{bottom:659.062395pt;}
.y13c{bottom:659.403477pt;}
.y1a8{bottom:663.241333pt;}
.y1e0{bottom:664.201333pt;}
.y264{bottom:664.521333pt;}
.yaf{bottom:667.099445pt;}
.y174{bottom:667.099573pt;}
.ye5{bottom:670.288725pt;}
.y76{bottom:670.296053pt;}
.y10d{bottom:670.298677pt;}
.y201{bottom:671.243477pt;}
.y22a{bottom:671.563061pt;}
.y27{bottom:671.566997pt;}
.y27d{bottom:672.824027pt;}
.y13b{bottom:674.763061pt;}
.y1a7{bottom:678.281467pt;}
.y1df{bottom:680.200885pt;}
.y173{bottom:682.457845pt;}
.yae{bottom:682.459029pt;}
.y263{bottom:682.761333pt;}
.ye4{bottom:685.646997pt;}
.y75{bottom:685.655637pt;}
.y10c{bottom:685.658261pt;}
.y27c{bottom:686.584475pt;}
.y200{bottom:686.603061pt;}
.y229{bottom:686.921333pt;}
.y26{bottom:686.926581pt;}
.y13a{bottom:690.121333pt;}
.y1de{bottom:693.961333pt;}
.y1a6{bottom:694.281467pt;}
.y3{bottom:694.475067pt;}
.y172{bottom:697.816117pt;}
.yad{bottom:697.818613pt;}
.y27b{bottom:700.344923pt;}
.ye3{bottom:701.006581pt;}
.y74{bottom:701.013909pt;}
.y262{bottom:701.015221pt;}
.y10b{bottom:701.016533pt;}
.y1ff{bottom:701.961333pt;}
.y25{bottom:702.286165pt;}
.y228{bottom:702.600827pt;}
.y139{bottom:704.840885pt;}
.y1dd{bottom:709.001333pt;}
.y1a5{bottom:710.281883pt;}
.y171{bottom:713.174389pt;}
.yac{bottom:713.178197pt;}
.y27a{bottom:714.106555pt;}
.ye2{bottom:716.366165pt;}
.y73{bottom:716.373493pt;}
.y261{bottom:716.374805pt;}
.y10a{bottom:716.376117pt;}
.y24{bottom:717.325621pt;}
.y1fe{bottom:717.641467pt;}
.y138{bottom:718.601333pt;}
.y227{bottom:719.241467pt;}
.y2{bottom:721.142267pt;}
.y1dc{bottom:725.001333pt;}
.y1a4{bottom:725.641467pt;}
.y279{bottom:727.867003pt;}
.y170{bottom:728.532661pt;}
.yab{bottom:728.536469pt;}
.ye1{bottom:731.724437pt;}
.y72{bottom:731.733077pt;}
.y260{bottom:731.734389pt;}
.y109{bottom:731.735701pt;}
.y23{bottom:732.685205pt;}
.y1fd{bottom:735.240885pt;}
.y137{bottom:735.881333pt;}
.y1db{bottom:741.001883pt;}
.y278{bottom:741.627451pt;}
.y1a3{bottom:741.641749pt;}
.y16f{bottom:743.890933pt;}
.yaa{bottom:743.896053pt;}
.ye0{bottom:747.082709pt;}
.y71{bottom:747.092661pt;}
.y25f{bottom:747.093973pt;}
.y108{bottom:747.095285pt;}
.y1{bottom:747.809467pt;}
.y22{bottom:748.044789pt;}
.y1fc{bottom:749.001333pt;}
.y136{bottom:752.841333pt;}
.y277{bottom:755.389083pt;}
.y1da{bottom:756.361467pt;}
.y1a2{bottom:757.001333pt;}
.y16e{bottom:759.249205pt;}
.ya9{bottom:759.255637pt;}
.ydf{bottom:762.122165pt;}
.y70{bottom:762.130805pt;}
.y25e{bottom:762.132117pt;}
.y107{bottom:762.133429pt;}
.y1fb{bottom:763.401333pt;}
.y21{bottom:763.403061pt;}
.y276{bottom:769.469211pt;}
.y135{bottom:771.081333pt;}
.y1d9{bottom:772.361749pt;}
.y1a1{bottom:773.001749pt;}
.y16d{bottom:774.607477pt;}
.ya8{bottom:774.615221pt;}
.yde{bottom:777.481749pt;}
.y6f{bottom:777.490389pt;}
.y25d{bottom:777.491701pt;}
.y106{bottom:777.493013pt;}
.y20{bottom:778.763195pt;}
.y25b{bottom:779.401333pt;}
.y275{bottom:783.229659pt;}
.y1d8{bottom:787.721333pt;}
.y134{bottom:788.041467pt;}
.y1a0{bottom:788.361333pt;}
.y16c{bottom:789.965749pt;}
.ya7{bottom:789.974805pt;}
.ydd{bottom:792.841333pt;}
.y6e{bottom:792.849973pt;}
.y25c{bottom:792.851285pt;}
.y105{bottom:792.852597pt;}
.y1f{bottom:794.121467pt;}
.y25a{bottom:795.401333pt;}
.y274{bottom:796.990107pt;}
.y1d7{bottom:803.721877pt;}
.y133{bottom:804.043061pt;}
.y19f{bottom:804.361467pt;}
.y16b{bottom:805.324021pt;}
.ya6{bottom:805.334389pt;}
.y6d{bottom:808.209557pt;}
.ydc{bottom:808.210869pt;}
.y1e{bottom:808.840571pt;}
.y273{bottom:810.751739pt;}
.y259{bottom:811.401333pt;}
.y1d6{bottom:818.761333pt;}
.y132{bottom:819.401333pt;}
.y19e{bottom:820.361467pt;}
.y16a{bottom:820.363477pt;}
.ya5{bottom:820.373845pt;}
.y1d{bottom:822.601019pt;}
.y6c{bottom:823.569141pt;}
.ydb{bottom:823.570453pt;}
.y272{bottom:824.512187pt;}
.y258{bottom:827.401333pt;}
.y1d5{bottom:834.761333pt;}
.y131{bottom:835.403061pt;}
.y169{bottom:835.723061pt;}
.ya4{bottom:835.732117pt;}
.y1c{bottom:836.361467pt;}
.y271{bottom:838.272635pt;}
.y6b{bottom:838.928725pt;}
.yda{bottom:838.930037pt;}
.y257{bottom:843.401333pt;}
.y130{bottom:850.761333pt;}
.y1b{bottom:850.763195pt;}
.y168{bottom:851.081333pt;}
.ya3{bottom:851.091701pt;}
.y270{bottom:852.034267pt;}
.y19d{bottom:852.361749pt;}
.y6a{bottom:854.286997pt;}
.yd9{bottom:854.288309pt;}
.y256{bottom:859.401333pt;}
.y26f{bottom:865.794715pt;}
.y1a{bottom:866.121467pt;}
.ya2{bottom:866.449973pt;}
.y167{bottom:866.761013pt;}
.y1d4{bottom:866.761883pt;}
.y19c{bottom:867.721333pt;}
.y12f{bottom:869.007637pt;}
.y69{bottom:869.646581pt;}
.yd8{bottom:869.647893pt;}
.y255{bottom:875.401333pt;}
.y26e{bottom:879.874843pt;}
.ya1{bottom:881.808245pt;}
.y19{bottom:882.120821pt;}
.y1d3{bottom:882.121467pt;}
.y166{bottom:883.721333pt;}
.y19b{bottom:883.721877pt;}
.y68{bottom:885.006165pt;}
.yd7{bottom:885.007477pt;}
.y254{bottom:891.401333pt;}
.y26d{bottom:893.635291pt;}
.ya0{bottom:897.166517pt;}
.y1d2{bottom:898.121749pt;}
.y19a{bottom:898.761333pt;}
.y67{bottom:900.365749pt;}
.yd6{bottom:900.367061pt;}
.y165{bottom:900.382651pt;}
.y18{bottom:903.561333pt;}
.y26c{bottom:907.396923pt;}
.y253{bottom:907.401333pt;}
.y9f{bottom:912.524789pt;}
.y1d1{bottom:913.481333pt;}
.y199{bottom:914.764949pt;}
.y66{bottom:915.724021pt;}
.yd5{bottom:915.725333pt;}
.y164{bottom:915.742235pt;}
.y26b{bottom:921.157371pt;}
.y252{bottom:923.401333pt;}
.y17{bottom:924.681467pt;}
.y9e{bottom:927.883061pt;}
.y1d0{bottom:929.481749pt;}
.y65{bottom:930.763477pt;}
.yd4{bottom:930.764789pt;}
.y163{bottom:930.783003pt;}
.y26a{bottom:934.919003pt;}
.y251{bottom:939.401333pt;}
.y9d{bottom:943.241333pt;}
.y16{bottom:943.241467pt;}
.y1cf{bottom:944.841333pt;}
.y64{bottom:946.123061pt;}
.y162{bottom:946.142587pt;}
.y269{bottom:948.680635pt;}
.y250{bottom:955.407509pt;}
.y9c{bottom:958.921333pt;}
.y1ce{bottom:960.846677pt;}
.y63{bottom:961.481333pt;}
.y161{bottom:961.502171pt;}
.y15{bottom:962.121467pt;}
.y268{bottom:962.441083pt;}
.y62{bottom:977.161333pt;}
.y14{bottom:983.881573pt;}
.y61{bottom:998.921413pt;}
.y13{bottom:1001.481733pt;}
.y60{bottom:1010.761285pt;}
.y5f{bottom:1027.401355pt;}
.y12{bottom:1031.881733pt;}
.y5e{bottom:1045.321675pt;}
.y11{bottom:1064.201867pt;}
.y5d{bottom:1064.521867pt;}
.h11{height:25.599375pt;}
.h15{height:30.772500pt;}
.h12{height:31.288125pt;}
.h6{height:31.680000pt;}
.h1a{height:34.479375pt;}
.h9{height:35.080625pt;}
.h18{height:38.206875pt;}
.h16{height:38.232500pt;}
.h1b{height:38.390625pt;}
.h13{height:38.865189pt;}
.h7{height:38.873125pt;}
.hd{height:39.411250pt;}
.h14{height:40.411515pt;}
.h1d{height:40.724015pt;}
.h1c{height:41.231250pt;}
.h19{height:41.934375pt;}
.he{height:42.648805pt;}
.ha{height:42.656250pt;}
.h5{height:46.354167pt;}
.h17{height:46.593750pt;}
.h8{height:48.023125pt;}
.hf{height:48.062500pt;}
.h10{height:52.458106pt;}
.h4{height:55.625000pt;}
.hb{height:55.752500pt;}
.h2{height:56.554982pt;}
.h3{height:64.895833pt;}
.hc{height:70.128298pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.397867pt;}
.xe{left:104.078315pt;}
.x8{left:116.529536pt;}
.xd{left:120.197547pt;}
.x3{left:143.622667pt;}
.x7{left:182.125333pt;}
.xf{left:219.918283pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.xc{left:275.997333pt;}
.x12{left:287.757867pt;}
.x11{left:293.517547pt;}
.x6{left:332.664000pt;}
.x4{left:385.728000pt;}
.x9{left:420.878667pt;}
.x13{left:428.558219pt;}
.xa{left:444.879083pt;}
.xb{left:468.879499pt;}
.x14{left:598.477099pt;}
.x10{left:624.398731pt;}
}


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