
/* 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_d821a624a1ab.woff")format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_7faa8814d669.woff")format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_2c3f2f0953e5.woff")format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_4ba4ef9ed5c1.woff")format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_9d92f771cbd9.woff")format("woff");}.ff5{font-family:ff5;line-height:1.349000;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_c8231e858af7.woff")format("woff");}.ff6{font-family:ff6;line-height:0.680000;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_8725c1a7ef47.woff")format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_532a963414e2.woff")format("woff");}.ff8{font-family:ff8;line-height:0.385000;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_f460740db800.woff")format("woff");}.ff9{font-family:ff9;line-height:0.712000;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_613c1874fbec.woff")format("woff");}.ffa{font-family:ffa;line-height:0.952000;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_e41391c5fd5a.woff")format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_16c55f9833b9.woff")format("woff");}.ffc{font-family:ffc;line-height:0.657000;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_c613b87c0986.woff")format("woff");}.ffd{font-family:ffd;line-height:0.711000;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_99b03fb6aed7.woff")format("woff");}.ffe{font-family:ffe;line-height:0.712000;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_227aa81cc9fd.woff")format("woff");}.fff{font-family:fff;line-height:0.450000;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_056fc11032d1.woff")format("woff");}.ff10{font-family:ff10;line-height:0.715000;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_2382f221ab60.woff")format("woff");}.ff11{font-family:ff11;line-height:0.668000;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_2de74be84fed.woff")format("woff");}.ff12{font-family:ff12;line-height:0.969000;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_9602d5218e4b.woff")format("woff");}.ff13{font-family:ff13;line-height:0.712000;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_cd0fae9a1fcd.woff")format("woff");}.ff14{font-family:ff14;line-height:0.712000;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_aeb23fadcef1.woff")format("woff");}.ff15{font-family:ff15;line-height:0.450000;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_cd63d0e37ee5.woff")format("woff");}.ff16{font-family:ff16;line-height:0.638000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_4c22bdc843ba.woff")format("woff");}.ff17{font-family:ff17;line-height:0.214000;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_95deee70c52a.woff")format("woff");}.ff18{font-family:ff18;line-height:0.712000;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_c9726cd93a6b.woff")format("woff");}.ff19{font-family:ff19;line-height:0.712000;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_73d1160e64ba.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.258000;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_685646280def.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.700000;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_89fff40092f7.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.468000;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_bb882c9d8317.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.362000;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_4e2ae6119404.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.879000;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_17e302d8aae2.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.712000;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_ba4d0733b38d.woff")format("woff");}.ff20{font-family:ff20;line-height:1.492000;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_4fe784eeb09c.woff")format("woff");}.ff21{font-family:ff21;line-height:0.942000;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_98eb876c2035.woff")format("woff");}.ff22{font-family:ff22;line-height:1.384000;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_0d99e661e708.woff")format("woff");}.ff23{font-family:ff23;line-height:0.712000;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_cfe049cdd6fc.woff")format("woff");}.ff24{font-family:ff24;line-height:0.712000;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_685646280def.woff")format("woff");}.ff25{font-family:ff25;line-height:0.700000;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_8dc85ff1779f.woff")format("woff");}.ff26{font-family:ff26;line-height:0.712000;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_3d97c31db672.woff")format("woff");}.ff27{font-family:ff27;line-height:0.712000;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_3669387232e1.woff")format("woff");}.ff28{font-family:ff28;line-height:0.111000;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_9666cbe64153.woff")format("woff");}.ff29{font-family:ff29;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_3af991cfc0b2.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.657000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_dd04a6335b95.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0043_5a3d4d03a2b6.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url("fonts/font_0044_c1b84f672fbf.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_3af991cfc0b2.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.657000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url("fonts/font_0046_4749ad1a8b40.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url("fonts/font_0047_73d1160e64ba.woff")format("woff");}.ff30{font-family:ff30;line-height:0.258000;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:ff31;src:url("fonts/font_0048_0871181a4ac8.woff")format("woff");}.ff31{font-family:ff31;line-height:0.712000;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:ff32;src:url("fonts/font_0049_e0cfd67463d5.woff")format("woff");}.ff32{font-family:ff32;line-height:0.712000;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:ff33;src:url("fonts/font_0050_cfd4bd5ab3dd.woff")format("woff");}.ff33{font-family:ff33;line-height:0.712000;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:ff34;src:url("fonts/font_0051_e03c5043f8f7.woff")format("woff");}.ff34{font-family:ff34;line-height:0.109000;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:ff35;src:url("fonts/font_0052_d74304fc038e.woff")format("woff");}.ff35{font-family:ff35;line-height:0.640000;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:ff36;src:url("fonts/font_0053_dbc34471a7cc.woff")format("woff");}.ff36{font-family:ff36;line-height:0.952000;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:ff37;src:url("fonts/font_0054_c92b35f571df.woff")format("woff");}.ff37{font-family:ff37;line-height:0.456000;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:ff38;src:url("fonts/font_0055_02aef500fa54.woff")format("woff");}.ff38{font-family:ff38;line-height:0.712000;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:ff39;src:url("fonts/font_0056_50fa36be41fd.woff")format("woff");}.ff39{font-family:ff39;line-height:0.450000;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:ff3a;src:url("fonts/font_0057_802a83a84d4a.woff")format("woff");}.ff3a{font-family:ff3a;line-height:0.700000;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:ff3b;src:url("fonts/font_0058_d74304fc038e.woff")format("woff");}.ff3b{font-family:ff3b;line-height:0.640000;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:ff3c;src:url("fonts/font_0059_632a8ccc7448.woff")format("woff");}.ff3c{font-family:ff3c;line-height:0.712000;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:ff3d;src:url("fonts/font_0060_cbcd9d797758.woff")format("woff");}.ff3d{font-family:ff3d;line-height:0.712000;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:ff3e;src:url("fonts/font_0061_fddd24b1d2b7.woff")format("woff");}.ff3e{font-family:ff3e;line-height:0.940000;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:ff3f;src:url("fonts/font_0062_d22527707eac.woff")format("woff");}.ff3f{font-family:ff3f;line-height:0.518000;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:ff40;src:url("fonts/font_0063_fcbba8323faa.woff")format("woff");}.ff40{font-family:ff40;line-height:0.685000;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:ff41;src:url("fonts/font_0064_9a0d10dba207.woff")format("woff");}.ff41{font-family:ff41;line-height:0.700000;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:ff42;src:url("fonts/font_0065_a921e98e1271.woff")format("woff");}.ff42{font-family:ff42;line-height:0.711000;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:ff43;src:url("fonts/font_0066_0ce69fe06575.woff")format("woff");}.ff43{font-family:ff43;line-height:0.940000;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:ff44;src:url("fonts/font_0067_a59b1f829ae6.woff")format("woff");}.ff44{font-family:ff44;line-height:0.853000;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:ff45;src:url("fonts/font_0068_8a25c3840a92.woff")format("woff");}.ff45{font-family:ff45;line-height:0.940000;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:ff46;src:url("fonts/font_0069_2e3bb5e7136b.woff")format("woff");}.ff46{font-family:ff46;line-height:0.849000;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:ff47;src:url("fonts/font_0070_2cbb103c90d8.woff")format("woff");}.ff47{font-family:ff47;line-height:0.720000;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:ff48;src:url("fonts/font_0071_2a33aa122566.woff")format("woff");}.ff48{font-family:ff48;line-height:0.712000;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:ff49;src:url("fonts/font_0072_38af462090ba.woff")format("woff");}.ff49{font-family:ff49;line-height:0.817000;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:ff4a;src:url("fonts/font_0073_6fc09703824d.woff")format("woff");}.ff4a{font-family:ff4a;line-height:0.460000;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:ff4b;src:url("fonts/font_0074_941dad09e22c.woff")format("woff");}.ff4b{font-family:ff4b;line-height:0.865000;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:ff4c;src:url("fonts/font_0075_ac402388e95f.woff")format("woff");}.ff4c{font-family:ff4c;line-height:0.964000;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:ff4d;src:url("fonts/font_0076_265e0dc12c55.woff")format("woff");}.ff4d{font-family:ff4d;line-height:0.817000;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:ff4e;src:url("fonts/font_0077_d9d64a4cfc00.woff")format("woff");}.ff4e{font-family:ff4e;line-height:0.783000;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:ff4f;src:url("fonts/font_0078_7b4fe869e3fd.woff")format("woff");}.ff4f{font-family:ff4f;line-height:2.222000;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:ff50;src:url("fonts/font_0079_7ffe0c4a59e5.woff")format("woff");}.ff50{font-family:ff50;line-height:1.190918;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:ff51;src:url("fonts/font_0080_7749f34ecc7f.woff")format("woff");}.ff51{font-family:ff51;line-height:0.724000;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:ff52;src:url("fonts/font_0081_f6cf9829c5ab.woff")format("woff");}.ff52{font-family:ff52;line-height:0.940000;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:ff53;src:url("fonts/font_0082_e450358f355b.woff")format("woff");}.ff53{font-family:ff53;line-height:0.883000;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:ff54;src:url("fonts/font_0083_91406220667a.woff")format("woff");}.ff54{font-family:ff54;line-height:0.818000;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:ff55;src:url("fonts/font_0084_5c8dd996c48e.woff")format("woff");}.ff55{font-family:ff55;line-height:0.724000;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:ff56;src:url("fonts/font_0085_8725c1a7ef47.woff")format("woff");}.ff56{font-family:ff56;line-height:0.700000;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:ff57;src:url("fonts/font_0086_e7ae9b156f91.woff")format("woff");}.ff57{font-family:ff57;line-height:0.636000;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:ff58;src:url("fonts/font_0087_a9ef5f500de2.woff")format("woff");}.ff58{font-family:ff58;line-height:0.712000;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:ff59;src:url("fonts/font_0088_0655dde5d9ed.woff")format("woff");}.ff59{font-family:ff59;line-height:0.724000;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:ff5a;src:url("fonts/font_0089_a51a79e7999e.woff")format("woff");}.ff5a{font-family:ff5a;line-height:0.940000;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:ff5b;src:url("fonts/font_0090_3a3ecf2dd2e7.woff")format("woff");}.ff5b{font-family:ff5b;line-height:0.818000;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:ff5c;src:url("fonts/font_0091_91fb9de12fe1.woff")format("woff");}.ff5c{font-family:ff5c;line-height:1.799000;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:ff5d;src:url("fonts/font_0092_94a2e058841a.woff")format("woff");}.ff5d{font-family:ff5d;line-height:0.817000;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:ff5e;src:url("fonts/font_0093_f89c3c376139.woff")format("woff");}.ff5e{font-family:ff5e;line-height:0.917000;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:ff5f;src:url("fonts/font_0094_d26ad365938e.woff")format("woff");}.ff5f{font-family:ff5f;line-height:0.724000;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:ff60;src:url("fonts/font_0095_aa50ff40a133.woff")format("woff");}.ff60{font-family:ff60;line-height:1.440000;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:ff61;src:url("fonts/font_0096_acf004f66168.woff")format("woff");}.ff61{font-family:ff61;line-height:0.724000;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:ff62;src:url("fonts/font_0097_59144417c068.woff")format("woff");}.ff62{font-family:ff62;line-height:0.708000;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:ff63;src:url("fonts/font_0098_e40388bdfe19.woff")format("woff");}.ff63{font-family:ff63;line-height:0.940000;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:ff64;src:url("fonts/font_0099_ab7ccf5ec50c.woff")format("woff");}.ff64{font-family:ff64;line-height:0.818000;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:ff65;src:url("fonts/font_0100_5e696310999e.woff")format("woff");}.ff65{font-family:ff65;line-height:0.668000;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:ff66;src:url("fonts/font_0101_61ab37e1f1fa.woff")format("woff");}.ff66{font-family:ff66;line-height:0.817000;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:ff67;src:url("fonts/font_0102_724a2bea6ad4.woff")format("woff");}.ff67{font-family:ff67;line-height:0.712000;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:ff68;src:url("fonts/font_0103_6fd7dc9571a8.woff")format("woff");}.ff68{font-family:ff68;line-height:0.712000;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:ff69;src:url("fonts/font_0104_a6e38d3f9cef.woff")format("woff");}.ff69{font-family:ff69;line-height:0.631000;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:ff6a;src:url("fonts/font_0105_a2743283d841.woff")format("woff");}.ff6a{font-family:ff6a;line-height:0.940000;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:ff6b;src:url("fonts/font_0106_f08df542c7e8.woff")format("woff");}.ff6b{font-family:ff6b;line-height:0.712000;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:ff6c;src:url("fonts/font_0107_c6916192a8b9.woff")format("woff");}.ff6c{font-family:ff6c;line-height:0.865000;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:ff6d;src:url("fonts/font_0108_acf004f66168.woff")format("woff");}.ff6d{font-family:ff6d;line-height:0.724000;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:ff6e;src:url("fonts/font_0109_71c442160946.woff")format("woff");}.ff6e{font-family:ff6e;line-height:0.917000;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:ff6f;src:url("fonts/font_0110_804fb8cb631e.woff")format("woff");}.ff6f{font-family:ff6f;line-height:0.724000;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:ff70;src:url("fonts/font_0111_b44e60e08d77.woff")format("woff");}.ff70{font-family:ff70;line-height:0.817000;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:ff71;src:url("fonts/font_0112_6d98303244b2.woff")format("woff");}.ff71{font-family:ff71;line-height:1.800000;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:ff72;src:url("fonts/font_0113_463e54069fb7.woff")format("woff");}.ff72{font-family:ff72;line-height:0.917000;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:ff73;src:url("fonts/font_0114_263f2182b6d9.woff")format("woff");}.ff73{font-family:ff73;line-height:0.712000;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:ff74;src:url("fonts/font_0115_9666cbe64153.woff")format("woff");}.ff74{font-family:ff74;line-height:0.708000;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:ff75;src:url("fonts/font_0116_d3c7a846c81e.woff")format("woff");}.ff75{font-family:ff75;line-height:0.712000;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:ff76;src:url("fonts/font_0117_5cdd3d991f1d.woff")format("woff");}.ff76{font-family:ff76;line-height:0.167000;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:ff77;src:url("fonts/font_0118_ce35403c1e2d.woff")format("woff");}.ff77{font-family:ff77;line-height:0.712000;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:ff78;src:url("fonts/font_0119_5cdd3d991f1d.woff")format("woff");}.ff78{font-family:ff78;line-height:0.167000;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:ff79;src:url("fonts/font_0120_a6da6314fbc6.woff")format("woff");}.ff79{font-family:ff79;line-height:0.712000;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:ff7a;src:url("fonts/font_0121_2485b5853a3c.woff")format("woff");}.ff7a{font-family:ff7a;line-height:0.712000;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:ff7b;src:url("fonts/font_0122_2029ad4af658.woff")format("woff");}.ff7b{font-family:ff7b;line-height:0.712000;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:ff7c;src:url("fonts/font_0123_07979de11615.woff")format("woff");}.ff7c{font-family:ff7c;line-height:0.879000;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:ff7d;src:url("fonts/font_0124_5089212516b7.woff")format("woff");}.ff7d{font-family:ff7d;line-height:1.199000;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:ff7e;src:url("fonts/font_0125_c49e06ea6c71.woff")format("woff");}.ff7e{font-family:ff7e;line-height:0.678000;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:ff7f;src:url("fonts/font_0126_882c767b2642.woff")format("woff");}.ff7f{font-family:ff7f;line-height:0.712000;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:ff80;src:url("fonts/font_0127_0ef64183ce45.woff")format("woff");}.ff80{font-family:ff80;line-height:0.712000;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:ff81;src:url("fonts/font_0128_65b3ab475abd.woff")format("woff");}.ff81{font-family:ff81;line-height:0.879000;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:ff82;src:url("fonts/font_0129_5ba943db2a2d.woff")format("woff");}.ff82{font-family:ff82;line-height:0.817000;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:ff83;src:url("fonts/font_0130_3b31e94ede2c.woff")format("woff");}.ff83{font-family:ff83;line-height:0.818000;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:ff84;src:url("fonts/font_0131_27ceda1de3cc.woff")format("woff");}.ff84{font-family:ff84;line-height:0.817000;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:ff85;src:url("fonts/font_0132_6776525de626.woff")format("woff");}.ff85{font-family:ff85;line-height:0.817000;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:ff86;src:url("fonts/font_0133_81ca380d6f4e.woff")format("woff");}.ff86{font-family:ff86;line-height:0.711000;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:ff87;src:url("fonts/font_0134_ac03491367a8.woff")format("woff");}.ff87{font-family:ff87;line-height:0.711000;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:ff88;src:url("fonts/font_0135_27ceda1de3cc.woff")format("woff");}.ff88{font-family:ff88;line-height:0.817000;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:ff89;src:url("fonts/font_0136_3b8e8dc69dc9.woff")format("woff");}.ff89{font-family:ff89;line-height:0.258000;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:ff8a;src:url("fonts/font_0137_b6ee9bac2985.woff")format("woff");}.ff8a{font-family:ff8a;line-height:0.817000;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:ff8b;src:url("fonts/font_0138_ac03491367a8.woff")format("woff");}.ff8b{font-family:ff8b;line-height:0.711000;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:ff8c;src:url("fonts/font_0139_aa3a665023ea.woff")format("woff");}.ff8c{font-family:ff8c;line-height:0.817000;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:ff8d;src:url("fonts/font_0140_0e3324241cae.woff")format("woff");}.ff8d{font-family:ff8d;line-height:0.817000;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:ff8e;src:url("fonts/font_0141_f32c0f4e9b61.woff")format("woff");}.ff8e{font-family:ff8e;line-height:0.711000;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:ff8f;src:url("fonts/font_0142_dd6bd1642e89.woff")format("woff");}.ff8f{font-family:ff8f;line-height:0.712000;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:ff90;src:url("fonts/font_0143_e8424f8c428f.woff")format("woff");}.ff90{font-family:ff90;line-height:0.711000;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:ff91;src:url("fonts/font_0144_bff8d152a91c.woff")format("woff");}.ff91{font-family:ff91;line-height:0.666000;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:ff92;src:url("fonts/font_0145_790f12b078d6.woff")format("woff");}.ff92{font-family:ff92;line-height:0.853000;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:ff93;src:url("fonts/font_0146_bd33fa90517d.woff")format("woff");}.ff93{font-family:ff93;line-height:0.712000;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:ff94;src:url("fonts/font_0147_14b61b7ef8bc.woff")format("woff");}.ff94{font-family:ff94;line-height:0.453000;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:ff95;src:url("fonts/font_0148_8767fa87cb1e.woff")format("woff");}.ff95{font-family:ff95;line-height:0.817000;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:ff96;src:url("fonts/font_0149_790f12b078d6.woff")format("woff");}.ff96{font-family:ff96;line-height:0.853000;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:ff97;src:url("fonts/font_0150_70928b2d960f.woff")format("woff");}.ff97{font-family:ff97;line-height:0.711000;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:ff98;src:url("fonts/font_0151_9486b19189a6.woff")format("woff");}.ff98{font-family:ff98;line-height:0.666000;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:ff99;src:url("fonts/font_0152_4793803b6979.woff")format("woff");}.ff99{font-family:ff99;line-height:2.399000;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:ff9a;src:url("fonts/font_0153_4bfb65dc4591.woff")format("woff");}.ff9a{font-family:ff9a;line-height:0.700000;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:ff9b;src:url("fonts/font_0154_f32c0f4e9b61.woff")format("woff");}.ff9b{font-family:ff9b;line-height:0.711000;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:ff9c;src:url("fonts/font_0155_105c47d0989b.woff")format("woff");}.ff9c{font-family:ff9c;line-height:0.712000;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:ff9d;src:url("fonts/font_0156_b2338c2d9212.woff")format("woff");}.ff9d{font-family:ff9d;line-height:0.712000;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:ff9e;src:url("fonts/font_0157_b7f12f4862bc.woff")format("woff");}.ff9e{font-family:ff9e;line-height:0.657000;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:ff9f;src:url("fonts/font_0158_b3e985f75697.woff")format("woff");}.ff9f{font-family:ff9f;line-height:0.712000;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:ffa0;src:url("fonts/font_0159_dc03c12b2d30.woff")format("woff");}.ffa0{font-family:ffa0;line-height:0.712000;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:ffa1;src:url("fonts/font_0160_a188dda91cd2.woff")format("woff");}.ffa1{font-family:ffa1;line-height:0.700000;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:ffa2;src:url("fonts/font_0161_979e4e28b463.woff")format("woff");}.ffa2{font-family:ffa2;line-height:0.712000;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:ffa3;src:url("fonts/font_0162_14b61b7ef8bc.woff")format("woff");}.ffa3{font-family:ffa3;line-height:0.453000;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:ffa4;src:url("fonts/font_0163_521cf2d84780.woff")format("woff");}.ffa4{font-family:ffa4;line-height:0.732000;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:ffa5;src:url("fonts/font_0164_9a9ac4034bf8.woff")format("woff");}.ffa5{font-family:ffa5;line-height:0.712000;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:ffa6;src:url("fonts/font_0165_68fdf071c8df.woff")format("woff");}.ffa6{font-family:ffa6;line-height:0.952000;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:ffa7;src:url("fonts/font_0166_263f2182b6d9.woff")format("woff");}.ffa7{font-family:ffa7;line-height:0.712000;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:ffa8;src:url("fonts/font_0167_1d915add9eed.woff")format("woff");}.ffa8{font-family:ffa8;line-height:0.700000;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:ffa9;src:url("fonts/font_0168_46f783747f55.woff")format("woff");}.ffa9{font-family:ffa9;line-height:0.700000;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:ffaa;src:url("fonts/font_0169_9666cbe64153.woff")format("woff");}.ffaa{font-family:ffaa;line-height:0.708000;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:ffab;src:url("fonts/font_0170_dc762f575992.woff")format("woff");}.ffab{font-family:ffab;line-height:0.712000;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:ffac;src:url("fonts/font_0171_ae8d8bf42f99.woff")format("woff");}.ffac{font-family:ffac;line-height:0.712000;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:ffad;src:url("fonts/font_0172_12192621fa23.woff")format("woff");}.ffad{font-family:ffad;line-height:0.952000;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:ffae;src:url("fonts/font_0173_a60928ac61f9.woff")format("woff");}.ffae{font-family:ffae;line-height:0.908203;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:ffaf;src:url("fonts/font_0174_e19b0df3939f.woff")format("woff");}.ffaf{font-family:ffaf;line-height:0.817000;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:ffb0;src:url("fonts/font_0175_4c15615a40fb.woff")format("woff");}.ffb0{font-family:ffb0;line-height:0.818000;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:ffb1;src:url("fonts/font_0176_cf0e1a044d7b.woff")format("woff");}.ffb1{font-family:ffb1;line-height:0.712000;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:ffb2;src:url("fonts/font_0177_cba2be051839.woff")format("woff");}.ffb2{font-family:ffb2;line-height:0.853000;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:ffb3;src:url("fonts/font_0178_a188dda91cd2.woff")format("woff");}.ffb3{font-family:ffb3;line-height:0.700000;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v17{vertical-align:-59.927254px;}
.v18{vertical-align:-43.716094px;}
.v1b{vertical-align:-41.254166px;}
.v1a{vertical-align:-33.154175px;}
.v22{vertical-align:-27.322998px;}
.v1f{vertical-align:-19.603271px;}
.v5{vertical-align:-17.849995px;}
.v26{vertical-align:-15.550781px;}
.v24{vertical-align:-13.509300px;}
.v7{vertical-align:-9.503357px;}
.v4{vertical-align:-8.099991px;}
.v9{vertical-align:-6.156601px;}
.v6{vertical-align:-3.600586px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:4.117696px;}
.ve{vertical-align:6.862724px;}
.v1c{vertical-align:8.100037px;}
.v11{vertical-align:11.704631px;}
.v1e{vertical-align:12.796692px;}
.vb{vertical-align:14.534830px;}
.v15{vertical-align:15.897873px;}
.v3{vertical-align:18.768110px;}
.v14{vertical-align:19.872528px;}
.v2{vertical-align:21.000000px;}
.va{vertical-align:22.302612px;}
.vf{vertical-align:26.245789px;}
.v1d{vertical-align:27.703308px;}
.v19{vertical-align:30.260831px;}
.v13{vertical-align:31.372925px;}
.vc{vertical-align:37.880077px;}
.v20{vertical-align:40.473862px;}
.v10{vertical-align:42.876526px;}
.v8{vertical-align:44.634726px;}
.v25{vertical-align:45.877582px;}
.v16{vertical-align:59.927254px;}
.v23{vertical-align:61.453125px;}
.v21{vertical-align:85.588989px;}
.vd{vertical-align:111.888611px;}
.v27{vertical-align:113.316110px;}
.ls76{letter-spacing:-2.161488px;}
.lsdc{letter-spacing:-1.530000px;}
.ls6f{letter-spacing:-1.458000px;}
.ls73{letter-spacing:-1.134000px;}
.ls6c{letter-spacing:-1.080000px;}
.ls78{letter-spacing:-0.972000px;}
.ls96{letter-spacing:-0.918000px;}
.ls6d{letter-spacing:-0.756000px;}
.ls70{letter-spacing:-0.702000px;}
.lsc6{letter-spacing:-0.648000px;}
.lseb{letter-spacing:-0.630000px;}
.ls1d{letter-spacing:-0.594000px;}
.ls71{letter-spacing:-0.540000px;}
.lse0{letter-spacing:-0.495000px;}
.lsc9{letter-spacing:-0.486000px;}
.lsc7{letter-spacing:-0.432000px;}
.ls32{letter-spacing:-0.378000px;}
.lse9{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.324000px;}
.lsea{letter-spacing:-0.315000px;}
.ls15{letter-spacing:-0.270000px;}
.lsec{letter-spacing:-0.225000px;}
.ls30{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.210600px;}
.lsd1{letter-spacing:-0.210000px;}
.ls72{letter-spacing:-0.175500px;}
.ls20{letter-spacing:-0.162000px;}
.lsde{letter-spacing:-0.135000px;}
.ls18{letter-spacing:-0.108000px;}
.lse3{letter-spacing:-0.090000px;}
.ls1c{letter-spacing:-0.054000px;}
.ls77{letter-spacing:-0.032423px;}
.lsd2{letter-spacing:-0.031982px;}
.ls14{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000267px;}
.lsc1{letter-spacing:0.000673px;}
.lscb{letter-spacing:0.000911px;}
.lsb0{letter-spacing:0.000919px;}
.lsb3{letter-spacing:0.000944px;}
.ls91{letter-spacing:0.000949px;}
.lsb6{letter-spacing:0.001031px;}
.lsac{letter-spacing:0.001102px;}
.lsb5{letter-spacing:0.001550px;}
.lsb2{letter-spacing:0.003198px;}
.lsb8{letter-spacing:0.003656px;}
.lsae{letter-spacing:0.003747px;}
.ls7b{letter-spacing:0.008655px;}
.ls27{letter-spacing:0.010486px;}
.lsca{letter-spacing:0.011218px;}
.ls5{letter-spacing:0.013219px;}
.ls4{letter-spacing:0.013223px;}
.ls2{letter-spacing:0.013772px;}
.ls3{letter-spacing:0.013956px;}
.ls13{letter-spacing:0.018023px;}
.lscf{letter-spacing:0.020057px;}
.ls4f{letter-spacing:0.020929px;}
.ls7e{letter-spacing:0.022076px;}
.ls81{letter-spacing:0.022626px;}
.lsce{letter-spacing:0.022914px;}
.ls99{letter-spacing:0.024457px;}
.ls3c{letter-spacing:0.024461px;}
.ls49{letter-spacing:0.024640px;}
.ls47{letter-spacing:0.025006px;}
.ls46{letter-spacing:0.025098px;}
.ls3f{letter-spacing:0.025189px;}
.ls1{letter-spacing:0.027607px;}
.ls4a{letter-spacing:0.031323px;}
.lsd3{letter-spacing:0.031982px;}
.ls74{letter-spacing:0.041068px;}
.lscd{letter-spacing:0.042082px;}
.lsdf{letter-spacing:0.045000px;}
.ls6e{letter-spacing:0.054000px;}
.ls80{letter-spacing:0.054037px;}
.ls12{letter-spacing:0.105300px;}
.ls17{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.125981px;}
.lse2{letter-spacing:0.135000px;}
.ls22{letter-spacing:0.140400px;}
.ls3b{letter-spacing:0.145784px;}
.ls11{letter-spacing:0.157950px;}
.ls8{letter-spacing:0.158836px;}
.lsf{letter-spacing:0.159016px;}
.lse{letter-spacing:0.159019px;}
.lsc{letter-spacing:0.159568px;}
.ls1b{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.175500px;}
.lsd7{letter-spacing:0.180000px;}
.ls43{letter-spacing:0.189000px;}
.lsa1{letter-spacing:0.194367px;}
.ls62{letter-spacing:0.194537px;}
.lsd5{letter-spacing:0.202500px;}
.ls1f{letter-spacing:0.210600px;}
.ls6{letter-spacing:0.216000px;}
.lsdb{letter-spacing:0.225000px;}
.lsa9{letter-spacing:0.242979px;}
.lscc{letter-spacing:0.243000px;}
.lsd4{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.282000px;}
.lse8{letter-spacing:0.291600px;}
.lsd{letter-spacing:0.298179px;}
.lse4{letter-spacing:0.315000px;}
.ls10{letter-spacing:0.324000px;}
.ls5a{letter-spacing:0.324223px;}
.ls45{letter-spacing:0.324606px;}
.ls50{letter-spacing:0.329400px;}
.lsd6{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.378000px;}
.lsbe{letter-spacing:0.394192px;}
.ls3d{letter-spacing:0.399600px;}
.lsdd{letter-spacing:0.405000px;}
.ls23{letter-spacing:0.432000px;}
.lse1{letter-spacing:0.450000px;}
.ls2c{letter-spacing:0.456300px;}
.ls3e{letter-spacing:0.458993px;}
.ls19{letter-spacing:0.486000px;}
.ls1a{letter-spacing:0.540000px;}
.ls4d{letter-spacing:0.540372px;}
.ls42{letter-spacing:0.567100px;}
.ls40{letter-spacing:0.583200px;}
.ls21{letter-spacing:0.594000px;}
.ls31{letter-spacing:0.648000px;}
.ls25{letter-spacing:0.702000px;}
.lsaf{letter-spacing:0.739228px;}
.ls1e{letter-spacing:0.756000px;}
.lse7{letter-spacing:0.810000px;}
.ls2e{letter-spacing:0.864000px;}
.ls65{letter-spacing:0.896305px;}
.ls84{letter-spacing:0.903500px;}
.ls83{letter-spacing:0.944569px;}
.ls79{letter-spacing:0.977350px;}
.ls67{letter-spacing:1.062733px;}
.ls5f{letter-spacing:1.071734px;}
.ls87{letter-spacing:1.134781px;}
.lse5{letter-spacing:1.251000px;}
.lsb9{letter-spacing:1.560600px;}
.lsc8{letter-spacing:1.566000px;}
.ls75{letter-spacing:1.567079px;}
.lsc0{letter-spacing:1.584274px;}
.lsbb{letter-spacing:1.601660px;}
.lse6{letter-spacing:1.601938px;}
.ls69{letter-spacing:1.718408px;}
.ls61{letter-spacing:1.848100px;}
.ls63{letter-spacing:1.912945px;}
.ls36{letter-spacing:2.086584px;}
.ls7f{letter-spacing:2.087130px;}
.lsa5{letter-spacing:2.089193px;}
.ls54{letter-spacing:2.089514px;}
.ls82{letter-spacing:2.089697px;}
.lsa7{letter-spacing:2.092306px;}
.ls8c{letter-spacing:2.107451px;}
.ls86{letter-spacing:2.114313px;}
.lsc2{letter-spacing:2.138040px;}
.ls8f{letter-spacing:2.161488px;}
.ls52{letter-spacing:2.299819px;}
.ls57{letter-spacing:2.863972px;}
.ls4b{letter-spacing:2.972046px;}
.lsc3{letter-spacing:2.989255px;}
.ls0{letter-spacing:3.000000px;}
.ls66{letter-spacing:3.010154px;}
.ls8b{letter-spacing:3.022006px;}
.ls56{letter-spacing:3.026083px;}
.lsda{letter-spacing:3.237402px;}
.ls58{letter-spacing:3.350306px;}
.lsa3{letter-spacing:3.806927px;}
.ls55{letter-spacing:3.907766px;}
.ls89{letter-spacing:3.907768px;}
.lsa8{letter-spacing:3.910330px;}
.ls3a{letter-spacing:4.036271px;}
.lsa2{letter-spacing:4.037004px;}
.ls38{letter-spacing:4.050422px;}
.ls97{letter-spacing:4.374000px;}
.ls90{letter-spacing:4.488680px;}
.ls7a{letter-spacing:4.512375px;}
.ls51{letter-spacing:4.514751px;}
.ls88{letter-spacing:4.533554px;}
.ls2a{letter-spacing:4.539125px;}
.ls95{letter-spacing:4.863348px;}
.lsa0{letter-spacing:4.917385px;}
.lsbd{letter-spacing:5.289505px;}
.ls5c{letter-spacing:5.537266px;}
.ls68{letter-spacing:7.173165px;}
.lsc4{letter-spacing:7.429689px;}
.ls92{letter-spacing:8.970175px;}
.ls35{letter-spacing:9.024212px;}
.ls33{letter-spacing:9.348435px;}
.ls9f{letter-spacing:11.913434px;}
.ls24{letter-spacing:11.996258px;}
.ls9e{letter-spacing:12.020317px;}
.ls2b{letter-spacing:12.050295px;}
.ls44{letter-spacing:12.320481px;}
.ls5e{letter-spacing:12.968928px;}
.ls41{letter-spacing:13.887560px;}
.ls60{letter-spacing:14.893440px;}
.lsd9{letter-spacing:14.956518px;}
.lsd8{letter-spacing:14.956701px;}
.ls26{letter-spacing:14.968304px;}
.ls8a{letter-spacing:15.009921px;}
.lsad{letter-spacing:15.009985px;}
.lsb1{letter-spacing:15.010534px;}
.ls28{letter-spacing:15.022341px;}
.lsb4{letter-spacing:15.056347px;}
.ls93{letter-spacing:15.076379px;}
.lsb7{letter-spacing:15.325786px;}
.ls5d{letter-spacing:15.346565px;}
.ls85{letter-spacing:15.844778px;}
.ls39{letter-spacing:15.898794px;}
.ls7c{letter-spacing:16.157123px;}
.ls94{letter-spacing:16.859606px;}
.ls7d{letter-spacing:17.075755px;}
.ls53{letter-spacing:17.600740px;}
.lsa6{letter-spacing:17.730581px;}
.lsa4{letter-spacing:17.733694px;}
.ls4c{letter-spacing:17.832276px;}
.ls29{letter-spacing:17.940350px;}
.lsbf{letter-spacing:17.979342px;}
.lsba{letter-spacing:17.983859px;}
.lsaa{letter-spacing:18.047552px;}
.ls48{letter-spacing:18.372648px;}
.lsab{letter-spacing:18.400678px;}
.ls4e{letter-spacing:18.426685px;}
.lsbc{letter-spacing:18.452308px;}
.ls98{letter-spacing:18.865652px;}
.ls9b{letter-spacing:18.865743px;}
.ls9a{letter-spacing:18.919668px;}
.ls9c{letter-spacing:18.919757px;}
.ls9d{letter-spacing:18.919763px;}
.ls37{letter-spacing:18.922049px;}
.ls8e{letter-spacing:19.021094px;}
.ls8d{letter-spacing:19.183206px;}
.ls5b{letter-spacing:19.352318px;}
.lsc5{letter-spacing:19.831652px;}
.lsd0{letter-spacing:23.992516px;}
.ls64{letter-spacing:24.160627px;}
.ls6a{letter-spacing:62.391950px;}
.ls59{letter-spacing:93.808577px;}
.ls34{letter-spacing:1103.810717px;}
.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;}
}
.ws28{word-spacing:-1103.855197px;}
.ws74{word-spacing:-19.885689px;}
.ws83{word-spacing:-19.831652px;}
.ws60{word-spacing:-16.913643px;}
.ws5f{word-spacing:-15.130416px;}
.ws77{word-spacing:-15.076379px;}
.ws69{word-spacing:-15.022341px;}
.ws1{word-spacing:-15.000000px;}
.ws9a{word-spacing:-13.860000px;}
.ws2a{word-spacing:-12.960000px;}
.ws48{word-spacing:-12.690000px;}
.ws49{word-spacing:-12.528000px;}
.ws91{word-spacing:-12.501000px;}
.ws5a{word-spacing:-12.420000px;}
.ws45{word-spacing:-12.366000px;}
.ws54{word-spacing:-12.258000px;}
.ws92{word-spacing:-12.150000px;}
.ws61{word-spacing:-12.104333px;}
.ws5d{word-spacing:-11.988000px;}
.ws4a{word-spacing:-11.934000px;}
.ws29{word-spacing:-11.718000px;}
.ws18{word-spacing:-11.664000px;}
.ws44{word-spacing:-11.178000px;}
.ws47{word-spacing:-10.800000px;}
.ws9d{word-spacing:-10.530000px;}
.ws9c{word-spacing:-10.440000px;}
.wsae{word-spacing:-10.417500px;}
.ws70{word-spacing:-10.260000px;}
.ws7{word-spacing:-10.200000px;}
.ws8a{word-spacing:-10.044000px;}
.ws40{word-spacing:-9.990000px;}
.wsad{word-spacing:-9.675000px;}
.ws0{word-spacing:-9.600000px;}
.ws26{word-spacing:-9.402473px;}
.ws9b{word-spacing:-9.225000px;}
.ws66{word-spacing:-9.078249px;}
.ws55{word-spacing:-9.024212px;}
.ws1e{word-spacing:-8.424000px;}
.ws4{word-spacing:-8.178300px;}
.ws2{word-spacing:-8.143200px;}
.ws3{word-spacing:-8.073000px;}
.ws43{word-spacing:-7.967700px;}
.ws4b{word-spacing:-7.792200px;}
.ws1f{word-spacing:-7.757100px;}
.ws6{word-spacing:-6.630000px;}
.wsb0{word-spacing:-6.075000px;}
.wsb3{word-spacing:-6.030000px;}
.ws62{word-spacing:-4.917385px;}
.ws84{word-spacing:-4.863348px;}
.ws52{word-spacing:-1.621116px;}
.ws12{word-spacing:-1.242000px;}
.wsc{word-spacing:-1.188000px;}
.ws15{word-spacing:-1.134000px;}
.ws99{word-spacing:-1.080000px;}
.wsab{word-spacing:-1.035000px;}
.ws1b{word-spacing:-1.026000px;}
.wsa7{word-spacing:-0.990000px;}
.ws56{word-spacing:-0.972000px;}
.wsd{word-spacing:-0.864000px;}
.wse{word-spacing:-0.810000px;}
.ws57{word-spacing:-0.756000px;}
.ws3a{word-spacing:-0.702000px;}
.ws11{word-spacing:-0.648000px;}
.ws59{word-spacing:-0.594000px;}
.ws14{word-spacing:-0.540000px;}
.wsac{word-spacing:-0.450000px;}
.wsa{word-spacing:-0.432000px;}
.ws89{word-spacing:-0.378000px;}
.ws10{word-spacing:-0.324000px;}
.wsb5{word-spacing:-0.315000px;}
.ws2d{word-spacing:-0.282000px;}
.ws17{word-spacing:-0.270000px;}
.wsa0{word-spacing:-0.264000px;}
.wsa8{word-spacing:-0.225000px;}
.ws9{word-spacing:-0.216000px;}
.wsa1{word-spacing:-0.180000px;}
.ws5b{word-spacing:-0.162000px;}
.ws1c{word-spacing:-0.140400px;}
.wsa2{word-spacing:-0.135000px;}
.ws36{word-spacing:-0.108000px;}
.ws16{word-spacing:-0.105300px;}
.ws4e{word-spacing:-0.082136px;}
.ws96{word-spacing:-0.063964px;}
.ws5{word-spacing:-0.054037px;}
.ws7e{word-spacing:-0.053451px;}
.ws95{word-spacing:-0.042082px;}
.ws20{word-spacing:-0.041068px;}
.ws4d{word-spacing:-0.032423px;}
.ws8{word-spacing:0.000000px;}
.wsaf{word-spacing:0.045000px;}
.ws30{word-spacing:0.108000px;}
.ws19{word-spacing:0.162000px;}
.ws34{word-spacing:0.216000px;}
.wsa4{word-spacing:0.225000px;}
.ws41{word-spacing:0.270000px;}
.wsa9{word-spacing:0.315000px;}
.ws5c{word-spacing:0.378000px;}
.wsf{word-spacing:0.432000px;}
.ws6c{word-spacing:0.486000px;}
.ws68{word-spacing:0.540000px;}
.wsb6{word-spacing:0.585000px;}
.ws58{word-spacing:0.594000px;}
.wsb7{word-spacing:0.630000px;}
.ws6f{word-spacing:0.648000px;}
.ws5e{word-spacing:0.702000px;}
.wsb4{word-spacing:0.720000px;}
.ws8b{word-spacing:0.756000px;}
.ws8d{word-spacing:0.810000px;}
.ws6e{word-spacing:0.864000px;}
.ws2e{word-spacing:0.918000px;}
.wsaa{word-spacing:0.945000px;}
.wsa5{word-spacing:0.990000px;}
.wsa6{word-spacing:1.035000px;}
.ws2c{word-spacing:1.080000px;}
.ws33{word-spacing:1.134000px;}
.ws13{word-spacing:1.188000px;}
.wsa3{word-spacing:1.215000px;}
.wsb{word-spacing:1.242000px;}
.wsb2{word-spacing:1.305000px;}
.ws85{word-spacing:1.350000px;}
.ws3e{word-spacing:1.404000px;}
.wsbc{word-spacing:1.458000px;}
.wsb1{word-spacing:1.530000px;}
.ws35{word-spacing:1.566000px;}
.ws2b{word-spacing:1.620000px;}
.ws38{word-spacing:1.674000px;}
.ws1a{word-spacing:1.836000px;}
.ws39{word-spacing:1.890000px;}
.ws32{word-spacing:1.998000px;}
.ws37{word-spacing:2.052000px;}
.ws6d{word-spacing:2.376000px;}
.ws2f{word-spacing:2.430000px;}
.wsb8{word-spacing:3.024000px;}
.wsb9{word-spacing:3.132000px;}
.ws88{word-spacing:4.698000px;}
.ws6b{word-spacing:5.076000px;}
.ws86{word-spacing:5.508000px;}
.ws87{word-spacing:5.670000px;}
.ws3c{word-spacing:5.724000px;}
.ws8c{word-spacing:5.832000px;}
.ws3b{word-spacing:6.102000px;}
.wsbd{word-spacing:6.264000px;}
.ws31{word-spacing:6.696000px;}
.ws80{word-spacing:6.723007px;}
.ws81{word-spacing:6.775816px;}
.ws7c{word-spacing:6.796787px;}
.ws71{word-spacing:6.850176px;}
.ws72{word-spacing:6.903565px;}
.ws3d{word-spacing:6.912000px;}
.ws7b{word-spacing:6.956953px;}
.ws6a{word-spacing:7.344000px;}
.wsba{word-spacing:8.154000px;}
.wsbb{word-spacing:8.532000px;}
.ws78{word-spacing:8.916138px;}
.ws97{word-spacing:8.943156px;}
.ws27{word-spacing:8.948560px;}
.ws9f{word-spacing:8.953964px;}
.ws8f{word-spacing:9.240361px;}
.ws21{word-spacing:9.267380px;}
.ws53{word-spacing:9.645640px;}
.ws1d{word-spacing:9.792000px;}
.ws76{word-spacing:10.699365px;}
.ws75{word-spacing:10.753403px;}
.ws79{word-spacing:11.437493px;}
.ws22{word-spacing:11.942221px;}
.ws24{word-spacing:11.969240px;}
.ws9e{word-spacing:14.914267px;}
.ws25{word-spacing:14.968304px;}
.ws65{word-spacing:14.984515px;}
.ws63{word-spacing:15.017716px;}
.ws3f{word-spacing:15.282000px;}
.ws7d{word-spacing:16.139802px;}
.ws50{word-spacing:17.896048px;}
.ws46{word-spacing:17.896140px;}
.ws8e{word-spacing:17.915965px;}
.ws90{word-spacing:17.918528px;}
.ws73{word-spacing:17.935585px;}
.ws42{word-spacing:17.937581px;}
.ws4f{word-spacing:17.951987px;}
.ws64{word-spacing:17.952078px;}
.ws51{word-spacing:17.972111px;}
.ws4c{word-spacing:18.000615px;}
.ws23{word-spacing:18.185496px;}
.ws82{word-spacing:19.980000px;}
.ws98{word-spacing:27.169693px;}
.ws7a{word-spacing:27.312557px;}
.ws67{word-spacing:39.387503px;}
.ws94{word-spacing:87.444000px;}
.ws7f{word-spacing:107.404437px;}
.ws93{word-spacing:358.889984px;}
._12{margin-left:-1103.766249px;}
._1d{margin-left:-42.652365px;}
._19{margin-left:-39.717341px;}
._1b{margin-left:-29.970000px;}
._1a{margin-left:-27.723640px;}
._18{margin-left:-22.803698px;}
._13{margin-left:-20.952007px;}
._17{margin-left:-18.164400px;}
._7{margin-left:-14.185800px;}
._4{margin-left:-11.702401px;}
._6{margin-left:-10.660133px;}
._10{margin-left:-8.690400px;}
._16{margin-left:-6.717874px;}
._5{margin-left:-4.676265px;}
._2{margin-left:-3.254468px;}
._0{margin-left:-1.876800px;}
._3{width:1.212600px;}
._8{width:2.347200px;}
._15{width:3.796537px;}
._11{width:6.084000px;}
._b{width:7.272775px;}
._a{width:8.980925px;}
._14{width:9.990000px;}
._d{width:11.444400px;}
._9{width:12.989400px;}
._c{width:14.337068px;}
._36{width:16.290000px;}
._1f{width:17.962814px;}
._20{width:27.303693px;}
._1e{width:32.079418px;}
._e{width:35.207350px;}
._f{width:47.081211px;}
._1c{width:48.653281px;}
._33{width:54.688189px;}
._2e{width:74.473784px;}
._21{width:76.435806px;}
._29{width:85.218000px;}
._25{width:95.802000px;}
._2a{width:105.377995px;}
._22{width:114.155995px;}
._26{width:115.961995px;}
._23{width:118.565995px;}
._2c{width:123.858000px;}
._2f{width:125.538000px;}
._27{width:144.017995px;}
._2d{width:145.697995px;}
._30{width:163.380000px;}
._24{width:181.566000px;}
._35{width:200.914784px;}
._1{width:320.980800px;}
._2b{width:348.851988px;}
._34{width:395.093994px;}
._28{width:401.562000px;}
._32{width:434.321995px;}
._31{width:436.128000px;}
.fc5{color:transparent;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs13{font-size:31.981799px;}
.fse{font-size:32.422800px;}
.fs9{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fs10{font-size:40.622400px;}
.fs7{font-size:41.068199px;}
.fs11{font-size:42.000000px;}
.fs12{font-size:42.082200px;}
.fsd{font-size:44.479800px;}
.fs14{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fsf{font-size:53.450998px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:54.037199px;}
.fsb{font-size:56.399998px;}
.fs1{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs8{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y196{bottom:-0.066693px;}
.yd2{bottom:-0.000298px;}
.y0{bottom:0.000000px;}
.y14c{bottom:0.043625px;}
.ya3{bottom:0.043808px;}
.y122{bottom:0.044849px;}
.y1b9{bottom:0.044861px;}
.y1ac{bottom:0.045135px;}
.ydb{bottom:0.045158px;}
.yad{bottom:0.045319px;}
.y81{bottom:0.045605px;}
.y105{bottom:0.075256px;}
.yd6{bottom:0.150902px;}
.y163{bottom:0.163789px;}
.yf7{bottom:0.176260px;}
.y140{bottom:0.184502px;}
.y84{bottom:0.194103px;}
.y63{bottom:0.194115px;}
.y127{bottom:0.194697px;}
.y1a7{bottom:0.194870px;}
.ya6{bottom:0.195007px;}
.y21a{bottom:0.195099px;}
.y235{bottom:0.195145px;}
.y1fa{bottom:0.195282px;}
.y6a{bottom:0.195602px;}
.y211{bottom:0.494991px;}
.y167{bottom:0.596238px;}
.y13d{bottom:0.751053px;}
.y228{bottom:1.545593px;}
.y225{bottom:1.694092px;}
.y22d{bottom:1.694366px;}
.y220{bottom:1.695374px;}
.y182{bottom:1.733783px;}
.y17a{bottom:1.963870px;}
.y17d{bottom:1.963962px;}
.y31{bottom:1.993801px;}
.y1a4{bottom:1.994980px;}
.y20d{bottom:1.995004px;}
.y186{bottom:1.995026px;}
.y36{bottom:1.995300px;}
.y11b{bottom:2.144554px;}
.y9b{bottom:2.144852px;}
.y92{bottom:2.144897px;}
.yb5{bottom:2.144989px;}
.y20a{bottom:2.145000px;}
.y205{bottom:2.145012px;}
.y150{bottom:2.145035px;}
.y1fc{bottom:2.145172px;}
.y26d{bottom:2.145355px;}
.y79{bottom:2.145448px;}
.y18d{bottom:2.413605px;}
.y15a{bottom:2.413788px;}
.yeb{bottom:2.444996px;}
.y1d7{bottom:2.445442px;}
.y26f{bottom:2.445465px;}
.y173{bottom:2.483692px;}
.y116{bottom:2.520237px;}
.yc7{bottom:2.594994px;}
.y202{bottom:2.595154px;}
.y72{bottom:2.595590px;}
.y8b{bottom:2.745449px;}
.y15e{bottom:2.846237px;}
.y18f{bottom:2.966858px;}
.y1f1{bottom:3.145935px;}
.y1ce{bottom:3.194962px;}
.y10f{bottom:3.199200px;}
.y3d{bottom:3.199350px;}
.y169{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y6d{bottom:3.495438px;}
.y183{bottom:3.570282px;}
.y195{bottom:3.794861px;}
.y21d{bottom:3.794952px;}
.y161{bottom:3.795319px;}
.yf9{bottom:3.809967px;}
.yf6{bottom:3.810150px;}
.y1c6{bottom:4.094833px;}
.y174{bottom:4.320190px;}
.ye4{bottom:4.544849px;}
.yba{bottom:4.544861px;}
.y1b3{bottom:4.695007px;}
.y5c{bottom:4.843941px;}
.y238{bottom:4.844994px;}
.y60{bottom:4.993950px;}
.y177{bottom:5.594788px;}
.y17f{bottom:5.595245px;}
.y158{bottom:6.045273px;}
.y16c{bottom:6.344971px;}
.y16f{bottom:6.345154px;}
.y115{bottom:6.494705px;}
.y189{bottom:6.855103px;}
.y137{bottom:7.178249px;}
.y108{bottom:7.439987px;}
.y12c{bottom:8.684692px;}
.y133{bottom:8.684853px;}
.ye6{bottom:9.445656px;}
.y191{bottom:10.218918px;}
.y190{bottom:10.224559px;}
.y165{bottom:10.302293px;}
.y179{bottom:10.495789px;}
.y17c{bottom:10.495880px;}
.y180{bottom:10.496063px;}
.y181{bottom:10.563446px;}
.y16d{bottom:11.245789px;}
.y171{bottom:11.245972px;}
.y172{bottom:11.313355px;}
.y118{bottom:11.462837px;}
.y15c{bottom:12.552292px;}
.y1f3{bottom:12.626862px;}
.y1ee{bottom:12.626999px;}
.y192{bottom:14.374512px;}
.yfc{bottom:15.734985px;}
.y149{bottom:17.100002px;}
.y136{bottom:17.114696px;}
.y131{bottom:19.619545px;}
.y146{bottom:20.482620px;}
.y142{bottom:20.482768px;}
.y1f5{bottom:22.000946px;}
.y130{bottom:23.669540px;}
.y107{bottom:25.197618px;}
.y106{bottom:26.913300px;}
.y3c{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y110{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y144{bottom:28.048050px;}
.y104{bottom:28.559830px;}
.y145{bottom:28.588200px;}
.y141{bottom:28.588348px;}
.y13c{bottom:29.938499px;}
.yff{bottom:30.151474px;}
.y103{bottom:32.609848px;}
.y13b{bottom:34.001850px;}
.y13e{bottom:34.334573px;}
.y3b{bottom:68.037600px;}
.y8a{bottom:70.606499px;}
.y8c{bottom:73.360949px;}
.y3a{bottom:83.037600px;}
.y135{bottom:84.396000px;}
.y89{bottom:88.365454px;}
.y138{bottom:91.574249px;}
.y13a{bottom:91.910550px;}
.y26a{bottom:92.437482px;}
.y148{bottom:97.875158px;}
.y134{bottom:100.038448px;}
.y143{bottom:101.495853px;}
.y39{bottom:102.494099px;}
.y1ea{bottom:102.731998px;}
.y88{bottom:103.363954px;}
.y1eb{bottom:104.730297px;}
.y1e9{bottom:104.731797px;}
.y269{bottom:105.183732px;}
.yf3{bottom:109.170000px;}
.y147{bottom:109.784397px;}
.y139{bottom:110.987400px;}
.y215{bottom:112.813650px;}
.y13f{bottom:117.196198px;}
.y1e7{bottom:117.731998px;}
.y268{bottom:117.929982px;}
.y87{bottom:118.362454px;}
.y1e8{bottom:119.730297px;}
.y1e6{bottom:119.748309px;}
.yf2{bottom:124.168500px;}
.y214{bottom:127.812150px;}
.y8e{bottom:130.148529px;}
.y267{bottom:130.676232px;}
.y86{bottom:133.360954px;}
.yee{bottom:134.630997px;}
.y1e5{bottom:134.746809px;}
.yf1{bottom:139.167000px;}
.yed{bottom:139.168500px;}
.yef{bottom:139.175846px;}
.y129{bottom:140.497205px;}
.yf0{bottom:142.537502px;}
.y213{bottom:142.810650px;}
.y266{bottom:143.422482px;}
.y35{bottom:148.070995px;}
.y1e4{bottom:149.745309px;}
.y37{bottom:150.069454px;}
.y34{bottom:150.072454px;}
.yea{bottom:151.709999px;}
.yec{bottom:154.167000px;}
.ye9{bottom:154.168500px;}
.y126{bottom:155.307003px;}
.y128{bottom:155.495705px;}
.y125{bottom:155.498705px;}
.y265{bottom:156.168732px;}
.y210{bottom:157.323006px;}
.y212{bottom:157.809150px;}
.y20f{bottom:157.812150px;}
.ye3{bottom:164.630997px;}
.y1e3{bottom:164.743809px;}
.y33{bottom:165.070954px;}
.y85{bottom:166.362454px;}
.y264{bottom:168.914982px;}
.ye8{bottom:169.167000px;}
.ye2{bottom:169.170000px;}
.ye5{bottom:169.175846px;}
.y124{bottom:170.497205px;}
.ye7{bottom:172.537502px;}
.y20e{bottom:172.810650px;}
.y30{bottom:178.072495px;}
.y1e2{bottom:179.742309px;}
.y32{bottom:180.069454px;}
.y2f{bottom:180.072305px;}
.y83{bottom:181.172997px;}
.y80{bottom:181.316998px;}
.y82{bottom:181.360954px;}
.y7f{bottom:181.366954px;}
.y263{bottom:181.661232px;}
.ye1{bottom:184.168500px;}
.y121{bottom:185.452503px;}
.y123{bottom:185.495705px;}
.y120{bottom:185.497205px;}
.y209{bottom:185.675995px;}
.y20c{bottom:185.811000px;}
.y20b{bottom:187.809150px;}
.y208{bottom:187.813650px;}
.y262{bottom:194.407482px;}
.yde{bottom:194.630997px;}
.y1e1{bottom:194.740809px;}
.y2e{bottom:195.070805px;}
.y7e{bottom:196.365454px;}
.ye0{bottom:197.034004px;}
.ydf{bottom:199.167000px;}
.ydd{bottom:199.168500px;}
.y11f{bottom:200.497205px;}
.y207{bottom:202.812150px;}
.y261{bottom:207.153732px;}
.y1e0{bottom:209.739309px;}
.y2d{bottom:210.073805px;}
.y7d{bottom:211.363954px;}
.yda{bottom:214.123489px;}
.ydc{bottom:214.167000px;}
.yd9{bottom:214.170000px;}
.y11e{bottom:215.495705px;}
.y206{bottom:217.810650px;}
.y260{bottom:219.899982px;}
.y1df{bottom:224.737809px;}
.y2c{bottom:225.072305px;}
.y7c{bottom:226.362454px;}
.yd8{bottom:229.168500px;}
.y201{bottom:230.216995px;}
.y204{bottom:230.675995px;}
.y25f{bottom:232.646232px;}
.y203{bottom:232.809150px;}
.y200{bottom:232.812150px;}
.y7b{bottom:238.768500px;}
.y78{bottom:239.227500px;}
.yd7{bottom:239.630997px;}
.y1de{bottom:239.736309px;}
.y2b{bottom:240.070805px;}
.y7a{bottom:241.360954px;}
.y77{bottom:241.363954px;}
.yd3{bottom:241.575005px;}
.yd4{bottom:244.167000px;}
.y25e{bottom:245.392482px;}
.y1ff{bottom:247.810650px;}
.y11d{bottom:248.498705px;}
.yd5{bottom:248.946007px;}
.y1dd{bottom:254.734809px;}
.y2a{bottom:255.076805px;}
.y76{bottom:256.362454px;}
.y25d{bottom:258.138732px;}
.ycf{bottom:258.977989px;}
.yd0{bottom:259.167000px;}
.yce{bottom:259.170000px;}
.y1fe{bottom:262.809150px;}
.y11c{bottom:263.497205px;}
.yd1{bottom:264.070496px;}
.y1dc{bottom:269.733309px;}
.y29{bottom:270.075305px;}
.y25c{bottom:270.884982px;}
.y74{bottom:271.171509px;}
.y75{bottom:271.360954px;}
.y73{bottom:271.362454px;}
.y114{bottom:271.989006px;}
.ycd{bottom:274.168500px;}
.y11a{bottom:276.363007px;}
.y117{bottom:278.483711px;}
.y119{bottom:278.495705px;}
.y113{bottom:278.497205px;}
.y25b{bottom:283.631232px;}
.y71{bottom:283.768500px;}
.yca{bottom:284.630997px;}
.y1db{bottom:284.731809px;}
.y28{bottom:285.073805px;}
.y6f{bottom:286.171509px;}
.y70{bottom:286.360954px;}
.y6e{bottom:286.362454px;}
.ycc{bottom:288.977989px;}
.ycb{bottom:289.167000px;}
.yc9{bottom:289.168500px;}
.y112{bottom:293.495705px;}
.y25a{bottom:296.377482px;}
.y6c{bottom:297.877510px;}
.y1da{bottom:299.730309px;}
.y27{bottom:300.072305px;}
.y69{bottom:301.171509px;}
.y6b{bottom:301.360954px;}
.y68{bottom:301.362454px;}
.yc6{bottom:301.575005px;}
.yc8{bottom:304.167000px;}
.yc5{bottom:304.168500px;}
.y2a6{bottom:305.162244px;}
.y259{bottom:309.123732px;}
.y1d9{bottom:314.730309px;}
.y26{bottom:315.070805px;}
.y12b{bottom:315.996002px;}
.y66{bottom:316.172997px;}
.y237{bottom:316.188011px;}
.y67{bottom:316.360954px;}
.y65{bottom:316.363954px;}
.yc3{bottom:318.977989px;}
.yc4{bottom:319.167000px;}
.yc2{bottom:319.168500px;}
.y234{bottom:320.832000px;}
.y236{bottom:321.021011px;}
.y12e{bottom:321.036079px;}
.y258{bottom:321.869982px;}
.y12a{bottom:323.246701px;}
.y12f{bottom:324.680695px;}
.y132{bottom:324.680855px;}
.y25{bottom:330.072305px;}
.y12d{bottom:330.255890px;}
.y64{bottom:331.362454px;}
.yc0{bottom:332.034004px;}
.yc1{bottom:334.167000px;}
.ybf{bottom:334.168500px;}
.y257{bottom:334.616232px;}
.y2a5{bottom:335.159243px;}
.y233{bottom:336.025511px;}
.y5f{bottom:341.367004px;}
.y24{bottom:345.070805px;}
.y1d6{bottom:345.273010px;}
.y62{bottom:346.172997px;}
.y61{bottom:346.360954px;}
.y5e{bottom:346.362454px;}
.ybd{bottom:347.034004px;}
.y256{bottom:347.362482px;}
.y1d8{bottom:347.730309px;}
.ybe{bottom:349.167000px;}
.ybc{bottom:349.170000px;}
.y2a4{bottom:350.157743px;}
.y232{bottom:351.024011px;}
.y5b{bottom:356.529007px;}
.y23{bottom:360.073805px;}
.y255{bottom:360.108732px;}
.y5d{bottom:361.360954px;}
.y5a{bottom:361.366931px;}
.y1d5{bottom:362.734510px;}
.ybb{bottom:364.168500px;}
.y2a3{bottom:365.156243px;}
.y231{bottom:366.022511px;}
.y254{bottom:372.854982px;}
.yb9{bottom:374.630997px;}
.y22{bottom:375.072305px;}
.y59{bottom:376.365431px;}
.yb8{bottom:379.167000px;}
.y1ec{bottom:379.914297px;}
.y2a2{bottom:380.154743px;}
.y230{bottom:381.021011px;}
.y253{bottom:385.601232px;}
.y21{bottom:390.070805px;}
.y58{bottom:391.363931px;}
.y1ed{bottom:392.730011px;}
.y160{bottom:394.144500px;}
.y2a1{bottom:395.153243px;}
.y1f6{bottom:395.875946px;}
.y162{bottom:397.939819px;}
.y164{bottom:397.939957px;}
.y168{bottom:397.951950px;}
.y252{bottom:398.347482px;}
.yfb{bottom:401.667023px;}
.y166{bottom:402.908249px;}
.y1ef{bottom:403.353882px;}
.y20{bottom:405.070805px;}
.y100{bottom:405.250214px;}
.y1f2{bottom:405.356873px;}
.y57{bottom:406.362431px;}
.y157{bottom:406.903519px;}
.y109{bottom:407.392502px;}
.yfe{bottom:407.802017px;}
.y2a0{bottom:410.151743px;}
.y159{bottom:410.923782px;}
.y251{bottom:411.093732px;}
.y15b{bottom:412.948929px;}
.y15f{bottom:412.951950px;}
.y156{bottom:412.956450px;}
.y1f4{bottom:414.730957px;}
.y1f0{bottom:414.731232px;}
.yfa{bottom:415.434906px;}
.y101{bottom:417.400223px;}
.yfd{bottom:417.402008px;}
.y15d{bottom:417.917267px;}
.y102{bottom:419.021988px;}
.y1f{bottom:420.072305px;}
.y56{bottom:421.360931px;}
.y250{bottom:423.839982px;}
.y29f{bottom:425.150243px;}
.y155{bottom:427.954950px;}
.y1e{bottom:435.070805px;}
.y55{bottom:436.360931px;}
.y24f{bottom:436.586232px;}
.y1d1{bottom:436.593018px;}
.y1d4{bottom:439.589996px;}
.y1d3{bottom:439.684479px;}
.y1d2{bottom:439.779007px;}
.y1d0{bottom:439.780507px;}
.y29e{bottom:440.148743px;}
.y154{bottom:442.953450px;}
.y24e{bottom:449.332482px;}
.y1d{bottom:450.072305px;}
.y1cd{bottom:451.593018px;}
.yb4{bottom:451.884018px;}
.yb7{bottom:453.973480px;}
.yb6{bottom:454.017014px;}
.yb3{bottom:454.018514px;}
.y1cf{bottom:454.779007px;}
.y1cc{bottom:454.780507px;}
.y153{bottom:457.951950px;}
.y24d{bottom:462.078732px;}
.y29d{bottom:462.641243px;}
.y1c{bottom:465.070805px;}
.y1c9{bottom:465.675018px;}
.y1cb{bottom:467.781006px;}
.yb1{bottom:468.973480px;}
.yb2{bottom:469.017014px;}
.y54{bottom:469.362431px;}
.y1ca{bottom:469.779007px;}
.y1c8{bottom:469.780507px;}
.y24c{bottom:474.824982px;}
.y29c{bottom:477.639743px;}
.y1b{bottom:480.070805px;}
.y1c5{bottom:480.675018px;}
.yb0{bottom:484.020014px;}
.y1c7{bottom:484.779007px;}
.y1c4{bottom:484.780507px;}
.y53{bottom:485.261078px;}
.y24b{bottom:487.574982px;}
.y1a{bottom:495.070805px;}
.y1c3{bottom:497.646011px;}
.yaf{bottom:499.018514px;}
.y52{bottom:499.365431px;}
.y1c1{bottom:499.589996px;}
.y1c2{bottom:499.779007px;}
.y1c0{bottom:499.780507px;}
.y29b{bottom:500.144243px;}
.y19{bottom:510.073805px;}
.yac{bottom:513.973480px;}
.yae{bottom:514.017014px;}
.yab{bottom:514.020014px;}
.y51{bottom:514.363931px;}
.y1be{bottom:514.684479px;}
.y1bf{bottom:514.779007px;}
.y1bd{bottom:514.782007px;}
.y29a{bottom:522.648743px;}
.y18{bottom:525.072305px;}
.yaa{bottom:529.018514px;}
.y50{bottom:529.362431px;}
.y1bc{bottom:529.780507px;}
.y24a{bottom:537.074982px;}
.y299{bottom:537.648743px;}
.y17{bottom:540.070805px;}
.ya8{bottom:543.974991px;}
.ya9{bottom:544.017014px;}
.ya7{bottom:544.018514px;}
.y1bb{bottom:544.589996px;}
.y1b8{bottom:544.684479px;}
.y1ba{bottom:544.779007px;}
.y1b7{bottom:544.782007px;}
.y4f{bottom:545.261078px;}
.y16{bottom:555.102269px;}
.ya5{bottom:558.828003px;}
.ya2{bottom:558.974991px;}
.ya1{bottom:559.012486px;}
.ya4{bottom:559.017014px;}
.y4e{bottom:559.365431px;}
.y1b6{bottom:559.780507px;}
.y249{bottom:567.076482px;}
.y298{bottom:567.648743px;}
.y1b2{bottom:570.080978px;}
.y15{bottom:570.100769px;}
.y4d{bottom:574.363931px;}
.y1b4{bottom:574.775986px;}
.y1b5{bottom:574.779007px;}
.y1b1{bottom:574.780507px;}
.yf5{bottom:581.517014px;}
.y248{bottom:582.074982px;}
.y297{bottom:582.648743px;}
.yf4{bottom:584.640016px;}
.y14{bottom:585.099269px;}
.yf8{bottom:585.326981px;}
.y4c{bottom:589.362431px;}
.y1af{bottom:589.589996px;}
.y1b0{bottom:589.779007px;}
.y1ae{bottom:589.780507px;}
.y247{bottom:597.074982px;}
.y13{bottom:600.097769px;}
.y1ab{bottom:604.735519px;}
.y1ad{bottom:604.779007px;}
.y1aa{bottom:604.782007px;}
.y4b{bottom:605.261078px;}
.y9f{bottom:610.433990px;}
.ya0{bottom:612.566986px;}
.y9e{bottom:612.568486px;}
.y296{bottom:614.115738px;}
.y12{bottom:615.096269px;}
.y4a{bottom:619.363931px;}
.y1a9{bottom:619.780507px;}
.y246{bottom:627.092982px;}
.y9d{bottom:627.569986px;}
.y295{bottom:629.115738px;}
.y49{bottom:634.362431px;}
.y1a6{bottom:634.589996px;}
.y1a8{bottom:634.779007px;}
.y1a5{bottom:634.780507px;}
.y245{bottom:642.091482px;}
.y9c{bottom:642.568486px;}
.y1a3{bottom:647.781006px;}
.y1a2{bottom:649.779007px;}
.y48{bottom:650.261078px;}
.y9a{bottom:655.433990px;}
.y244{bottom:657.089982px;}
.y99{bottom:657.566986px;}
.y294{bottom:659.120238px;}
.y11{bottom:660.240269px;}
.y243{bottom:672.088482px;}
.y293{bottom:674.118738px;}
.y10{bottom:676.737269px;}
.y1a0{bottom:680.646011px;}
.y1a1{bottom:682.779007px;}
.y19f{bottom:682.782007px;}
.y47{bottom:683.116931px;}
.y242{bottom:687.086982px;}
.y292{bottom:689.117238px;}
.yf{bottom:693.234269px;}
.y19e{bottom:697.780507px;}
.y46{bottom:698.115431px;}
.y241{bottom:702.085482px;}
.y291{bottom:704.115738px;}
.y152{bottom:707.552983px;}
.ye{bottom:709.731269px;}
.y19c{bottom:710.646011px;}
.y19d{bottom:712.779007px;}
.y45{bottom:713.113931px;}
.y240{bottom:717.083982px;}
.y290{bottom:719.115738px;}
.y14f{bottom:720.418488px;}
.y10e{bottom:721.537677px;}
.y151{bottom:722.551483px;}
.y14e{bottom:722.554483px;}
.yd{bottom:726.228269px;}
.y19b{bottom:727.782007px;}
.y44{bottom:728.112431px;}
.y23f{bottom:732.082482px;}
.y10d{bottom:736.536177px;}
.y14d{bottom:737.552983px;}
.yc{bottom:742.725269px;}
.y19a{bottom:742.780507px;}
.y43{bottom:743.115431px;}
.y23e{bottom:747.080982px;}
.y28f{bottom:749.117238px;}
.y10c{bottom:751.534677px;}
.y14b{bottom:752.509506px;}
.y14a{bottom:752.551483px;}
.y198{bottom:757.589996px;}
.y197{bottom:757.772961px;}
.y199{bottom:757.779007px;}
.y42{bottom:758.113931px;}
.yb{bottom:759.222269px;}
.y23d{bottom:762.079482px;}
.y28e{bottom:764.115738px;}
.y10b{bottom:766.533177px;}
.y188{bottom:771.921021px;}
.y41{bottom:773.112431px;}
.y194{bottom:774.972015px;}
.ya{bottom:775.719269px;}
.y18b{bottom:776.751160px;}
.y23c{bottom:777.077982px;}
.y187{bottom:778.775961px;}
.y18a{bottom:778.776123px;}
.y193{bottom:778.778961px;}
.y28d{bottom:779.115784px;}
.y10a{bottom:781.531677px;}
.y18e{bottom:784.945496px;}
.y18c{bottom:785.282959px;}
.y40{bottom:788.112431px;}
.y23b{bottom:792.076482px;}
.y176{bottom:797.190033px;}
.y185{bottom:800.781006px;}
.y175{bottom:802.772961px;}
.y184{bottom:802.778961px;}
.y178{bottom:802.784821px;}
.y17b{bottom:802.785187px;}
.y17e{bottom:802.785278px;}
.y3f{bottom:803.110931px;}
.y9{bottom:805.719269px;}
.y23a{bottom:807.074982px;}
.y28c{bottom:809.198284px;}
.y16b{bottom:817.433990px;}
.y16e{bottom:820.147522px;}
.y28b{bottom:821.944534px;}
.y239{bottom:822.074982px;}
.y8{bottom:823.719269px;}
.y16a{bottom:823.778961px;}
.y170{bottom:823.779144px;}
.y28a{bottom:834.690784px;}
.y289{bottom:847.437034px;}
.y97{bottom:856.276477px;}
.y7{bottom:856.707269px;}
.y288{bottom:860.183284px;}
.y96{bottom:871.274977px;}
.y287{bottom:872.929534px;}
.y1fd{bottom:879.760838px;}
.y286{bottom:885.675784px;}
.y95{bottom:886.273477px;}
.y1fb{bottom:892.625977px;}
.y275{bottom:893.818937px;}
.y1f9{bottom:894.570007px;}
.y1f8{bottom:894.664490px;}
.y1f7{bottom:894.759338px;}
.y216{bottom:896.717102px;}
.y285{bottom:898.422034px;}
.y94{bottom:901.271977px;}
.y6{bottom:901.713269px;}
.y274{bottom:908.817437px;}
.y284{bottom:911.168284px;}
.y91{bottom:914.137482px;}
.y93{bottom:916.270477px;}
.y90{bottom:916.271977px;}
.y273{bottom:923.815937px;}
.y283{bottom:923.914534px;}
.y22f{bottom:928.395908px;}
.y8f{bottom:931.270477px;}
.y282{bottom:936.660784px;}
.y272{bottom:938.814437px;}
.y22c{bottom:944.230499px;}
.y22e{bottom:945.930908px;}
.y5{bottom:946.719269px;}
.y281{bottom:949.407034px;}
.y271{bottom:953.812937px;}
.y38{bottom:954.366760px;}
.y8d{bottom:958.093506px;}
.y22a{bottom:961.924530px;}
.y280{bottom:962.153284px;}
.y22b{bottom:963.464264px;}
.y270{bottom:968.811437px;}
.y27f{bottom:974.899534px;}
.y227{bottom:979.457977px;}
.y229{bottom:980.997711px;}
.y26e{bottom:981.352478px;}
.y26c{bottom:981.676483px;}
.y26b{bottom:983.809937px;}
.y27e{bottom:987.645784px;}
.y224{bottom:996.831024px;}
.y223{bottom:998.527778px;}
.y226{bottom:998.531067px;}
.y27d{bottom:1000.392034px;}
.y27c{bottom:1013.138284px;}
.y222{bottom:1016.062778px;}
.y27b{bottom:1025.884534px;}
.y21f{bottom:1031.896545px;}
.y221{bottom:1033.597778px;}
.y27a{bottom:1038.630784px;}
.y21c{bottom:1047.324005px;}
.y21e{bottom:1051.131317px;}
.y279{bottom:1051.377034px;}
.y278{bottom:1064.123284px;}
.y219{bottom:1068.475525px;}
.y218{bottom:1068.663486px;}
.y21b{bottom:1068.664673px;}
.y277{bottom:1076.869534px;}
.y217{bottom:1086.198486px;}
.y276{bottom:1089.615784px;}
.y98{bottom:1140.640320px;}
.y111{bottom:1140.746521px;}
.y3e{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h54{height:0.000000px;}
.h61{height:2.161488px;}
.h3c{height:6.150000px;}
.h94{height:6.450000px;}
.h3f{height:6.598500px;}
.h41{height:6.750000px;}
.h91{height:7.201500px;}
.h39{height:8.100000px;}
.h2c{height:8.250000px;}
.h95{height:8.550000px;}
.h25{height:8.700000px;}
.h23{height:8.701500px;}
.h1f{height:8.850000px;}
.h30{height:8.998500px;}
.h36{height:9.000000px;}
.h8c{height:9.148500px;}
.h1e{height:9.150000px;}
.h8e{height:9.298500px;}
.h20{height:9.300000px;}
.h93{height:10.050000px;}
.h7e{height:10.198500px;}
.h5c{height:10.200000px;}
.h46{height:10.348500px;}
.h3b{height:10.650000px;}
.h2f{height:10.950000px;}
.hf{height:11.100000px;}
.h11{height:11.101500px;}
.h2d{height:11.250000px;}
.h8d{height:11.251500px;}
.h84{height:11.550000px;}
.h34{height:11.698500px;}
.h73{height:11.700000px;}
.h32{height:11.848500px;}
.h5b{height:11.850000px;}
.h7f{height:12.000000px;}
.h83{height:12.300000px;}
.h1b{height:12.750000px;}
.h1d{height:12.900000px;}
.h82{height:13.198500px;}
.h21{height:13.200000px;}
.h38{height:13.500000px;}
.h47{height:13.650000px;}
.h27{height:14.550000px;}
.h7c{height:15.301500px;}
.h48{height:16.050000px;}
.h43{height:16.200000px;}
.h80{height:16.349999px;}
.h6d{height:16.950000px;}
.h71{height:17.250000px;}
.h6f{height:18.000000px;}
.h57{height:18.150000px;}
.h6a{height:19.200000px;}
.h45{height:22.695960px;}
.h65{height:23.085034px;}
.h3d{height:24.046554px;}
.h5e{height:24.300000px;}
.h24{height:24.316740px;}
.h3a{height:24.370777px;}
.h75{height:24.449999px;}
.h79{height:26.262079px;}
.h52{height:26.813656px;}
.h87{height:28.435680px;}
.h40{height:28.747739px;}
.h4f{height:29.240558px;}
.h92{height:29.457540px;}
.h96{height:30.004609px;}
.h64{height:30.226195px;}
.h13{height:30.684673px;}
.h88{height:31.161932px;}
.h53{height:31.345571px;}
.h85{height:32.048999px;}
.h66{height:32.422319px;}
.h2a{height:32.648173px;}
.h2{height:34.523438px;}
.h98{height:35.411133px;}
.h31{height:35.502440px;}
.h5a{height:35.772626px;}
.h10{height:36.096849px;}
.h8a{height:36.132875px;}
.h81{height:36.312998px;}
.h4c{height:36.529147px;}
.h44{height:37.015481px;}
.h4b{height:37.349999px;}
.h86{height:37.415699px;}
.h1c{height:37.826039px;}
.h22{height:38.474486px;}
.h74{height:38.528523px;}
.h8{height:38.838867px;}
.h4a{height:39.770202px;}
.h5d{height:39.771378px;}
.h63{height:41.099999px;}
.h90{height:41.538000px;}
.h14{height:41.668744px;}
.h76{height:42.635350px;}
.h8f{height:43.008000px;}
.h68{height:43.308462px;}
.h9b{height:44.505000px;}
.h50{height:44.688764px;}
.h7a{height:44.845538px;}
.h9a{height:45.090000px;}
.h3{height:45.679688px;}
.h62{height:45.877582px;}
.h99{height:46.080000px;}
.h19{height:47.469727px;}
.h7b{height:48.039070px;}
.h33{height:48.350828px;}
.h97{height:48.350919px;}
.h35{height:48.351011px;}
.h3e{height:48.351560px;}
.h72{height:48.351743px;}
.h6c{height:48.569318px;}
.h6e{height:48.569501px;}
.h7d{height:48.620176px;}
.h7{height:49.050293px;}
.h58{height:49.113086px;}
.h6{height:49.183594px;}
.h15{height:49.373529px;}
.h18{height:49.805414px;}
.h9c{height:50.439000px;}
.h49{height:51.050352px;}
.h60{height:51.541339px;}
.h67{height:51.595355px;}
.h59{height:51.670499px;}
.h70{height:52.352529px;}
.h9{height:53.406000px;}
.ha{height:53.482010px;}
.he{height:53.583863px;}
.h1a{height:53.589955px;}
.hb{height:53.595863px;}
.h17{height:53.596046px;}
.hd{height:53.601863px;}
.h42{height:53.601909px;}
.h2e{height:53.602046px;}
.hc{height:53.607863px;}
.h16{height:53.608413px;}
.h37{height:53.613863px;}
.h26{height:54.108000px;}
.h2b{height:55.296000px;}
.h6b{height:56.451048px;}
.h4{height:57.099609px;}
.h5f{height:62.088742px;}
.h78{height:63.614613px;}
.h56{height:69.847411px;}
.h28{height:73.706739px;}
.h4d{height:75.706116px;}
.h51{height:77.277117px;}
.h12{height:77.677734px;}
.h55{height:79.058550px;}
.h77{height:87.750477px;}
.h69{height:89.444346px;}
.h4e{height:111.888611px;}
.h5{height:112.201172px;}
.h8b{height:115.429971px;}
.h89{height:115.454150px;}
.h29{height:139.701004px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w22{width:5.400000px;}
.w21{width:5.685000px;}
.w3c{width:6.510000px;}
.w1c{width:6.661500px;}
.w1f{width:7.093500px;}
.w1e{width:7.095000px;}
.wa{width:7.185000px;}
.w19{width:7.890000px;}
.w59{width:8.010000px;}
.w3d{width:8.160000px;}
.w16{width:8.161500px;}
.w5a{width:8.460000px;}
.w58{width:8.580000px;}
.w23{width:8.728500px;}
.w14{width:8.730000px;}
.w1d{width:9.270000px;}
.w2{width:10.110000px;}
.w36{width:10.290000px;}
.w37{width:10.860000px;}
.w3a{width:11.040000px;}
.w40{width:11.220000px;}
.w55{width:11.805000px;}
.w3f{width:14.788500px;}
.w41{width:14.789999px;}
.w46{width:15.058499px;}
.w5{width:15.151500px;}
.w47{width:15.630000px;}
.w57{width:18.255000px;}
.w5b{width:18.270000px;}
.w42{width:18.433499px;}
.w4f{width:18.435000px;}
.w3b{width:18.480000px;}
.wd{width:18.703500px;}
.w56{width:19.170000px;}
.w52{width:21.661500px;}
.w53{width:21.990000px;}
.w8{width:22.605000px;}
.w39{width:23.010000px;}
.w11{width:23.458500px;}
.w31{width:23.460000px;}
.w3{width:24.643500px;}
.w24{width:25.905000px;}
.wb{width:25.980000px;}
.w17{width:27.675000px;}
.w1a{width:27.913499px;}
.w25{width:27.915000px;}
.we{width:29.430000px;}
.w2e{width:31.454999px;}
.w4{width:33.931500px;}
.w54{width:35.505000px;}
.w4d{width:36.030000px;}
.w27{width:41.594999px;}
.w1b{width:42.390000px;}
.w7{width:47.939999px;}
.w20{width:48.435000px;}
.w5e{width:52.605000px;}
.w5d{width:54.181498px;}
.w18{width:54.885000px;}
.w13{width:55.425000px;}
.w15{width:57.105000px;}
.wc{width:63.524998px;}
.w2d{width:64.425000px;}
.w51{width:66.330002px;}
.w12{width:66.510000px;}
.w9{width:66.645000px;}
.w6{width:69.254997px;}
.w5c{width:70.921497px;}
.w50{width:74.310000px;}
.w44{width:83.189999px;}
.w28{width:93.149998px;}
.w2a{width:94.965002px;}
.w48{width:106.711498px;}
.w49{width:107.294998px;}
.w4a{width:111.390003px;}
.w4b{width:111.450005px;}
.w43{width:113.971504px;}
.w4c{width:131.730000px;}
.w26{width:135.569996px;}
.w32{width:142.620003px;}
.w45{width:145.500000px;}
.w33{width:147.134995px;}
.w38{width:172.484997px;}
.w29{width:187.680004px;}
.w2c{width:189.480000px;}
.w5f{width:213.134995px;}
.wf{width:245.940010px;}
.w3e{width:255.735008px;}
.w35{width:261.511505px;}
.w34{width:273.016502px;}
.w30{width:329.504997px;}
.w2f{width:339.900009px;}
.w2b{width:359.519989px;}
.w10{width:540.000000px;}
.w4e{width:566.652008px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x13{left:-1.025391px;}
.x0{left:0.000000px;}
.x19{left:1.913544px;}
.xc{left:7.228350px;}
.x98{left:9.018768px;}
.xce{left:11.768555px;}
.xd4{left:18.490814px;}
.x27{left:21.574196px;}
.x83{left:24.344261px;}
.xeb{left:26.583298px;}
.x85{left:35.481743px;}
.x9c{left:38.151329px;}
.x9b{left:42.053123px;}
.x5f{left:50.093857px;}
.x75{left:58.854721px;}
.x64{left:60.510727px;}
.x3{left:61.653603px;}
.xcf{left:63.743546px;}
.xaf{left:65.928909px;}
.x57{left:73.474777px;}
.xc0{left:76.093803px;}
.xec{left:78.582001px;}
.x9e{left:79.906975px;}
.x58{left:84.882294px;}
.x78{left:89.544727px;}
.x77{left:90.674103px;}
.x87{left:97.217262px;}
.x5a{left:103.903610px;}
.xb4{left:105.280952px;}
.xc1{left:107.197792px;}
.xac{left:112.814667px;}
.xaa{left:113.948364px;}
.xb1{left:124.532112px;}
.x67{left:127.479927px;}
.xa0{left:128.844475px;}
.x8a{left:131.034737px;}
.xb6{left:133.779762px;}
.xc3{left:137.626647px;}
.xb{left:141.395702px;}
.x7a{left:145.012207px;}
.xd0{left:146.660568px;}
.x8c{left:150.245247px;}
.xd1{left:157.798050px;}
.xb8{left:162.521233px;}
.xc5{left:166.354500px;}
.xee{left:171.162323px;}
.xda{left:184.485741px;}
.x7c{left:185.647064px;}
.xef{left:187.066635px;}
.xa2{left:195.912758px;}
.x8f{left:207.120461px;}
.x91{left:218.257942px;}
.x6f{left:219.576759px;}
.x6e{left:225.800102px;}
.xba{left:228.468452px;}
.x6d{left:230.322304px;}
.x5{left:233.858253px;}
.xbd{left:239.182503px;}
.x4b{left:240.441444px;}
.x35{left:242.638641px;}
.xd6{left:244.959595px;}
.x102{left:246.580811px;}
.xe9{left:249.232498px;}
.x6{left:251.858982px;}
.xd{left:253.629890px;}
.x101{left:256.825790px;}
.xc7{left:258.033302px;}
.xea{left:259.604850px;}
.xae{left:266.549240px;}
.xbe{left:270.631508px;}
.x94{left:280.033974px;}
.x2f{left:282.467995px;}
.xdd{left:284.788490px;}
.x30{left:291.230392px;}
.x1a{left:296.274010px;}
.xde{left:299.639259px;}
.xbf{left:300.668999px;}
.x34{left:301.721992px;}
.x5d{left:303.895500px;}
.x100{left:305.787003px;}
.x1e{left:307.019989px;}
.x4c{left:310.080002px;}
.x17{left:311.425507px;}
.xa6{left:314.245491px;}
.x4d{left:315.402740px;}
.xb0{left:319.091240px;}
.x4e{left:321.570007px;}
.x38{left:327.075005px;}
.x36{left:329.342995px;}
.x4f{left:330.763344px;}
.x1f{left:333.171295px;}
.x52{left:334.793999px;}
.xa7{left:337.637260px;}
.xf1{left:339.697952px;}
.xed{left:341.208160px;}
.x5e{left:344.228691px;}
.x43{left:347.280006px;}
.xd9{left:348.378754px;}
.x72{left:351.053123px;}
.x65{left:352.799995px;}
.x71{left:354.765770px;}
.x44{left:356.610741px;}
.x18{left:359.395958px;}
.x53{left:360.728989px;}
.x1b{left:363.111145px;}
.xc2{left:364.564796px;}
.xb2{left:365.625893px;}
.x5b{left:367.195496px;}
.xa5{left:368.675995px;}
.x20{left:370.448547px;}
.xd7{left:371.726097px;}
.x21{left:373.886993px;}
.x99{left:375.906600px;}
.x22{left:381.139206px;}
.x54{left:386.654984px;}
.x84{left:391.448090px;}
.x9a{left:393.659409px;}
.x60{left:397.178421px;}
.xc4{left:398.624680px;}
.xb3{left:402.522446px;}
.x3f{left:403.640991px;}
.x5c{left:408.820358px;}
.xf6{left:412.635315px;}
.x55{left:414.599533px;}
.x66{left:420.447600px;}
.x86{left:428.708542px;}
.xf4{left:431.116653px;}
.xff{left:434.914490px;}
.x9d{left:437.236954px;}
.xcc{left:439.222504px;}
.xd5{left:441.133347px;}
.x50{left:442.751999px;}
.xcd{left:444.079330px;}
.x40{left:446.143478px;}
.x51{left:451.542297px;}
.xc6{left:453.570007px;}
.x10{left:455.757019px;}
.x9f{left:458.418594px;}
.x33{left:463.425613px;}
.xf7{left:466.036331px;}
.x74{left:467.636078px;}
.x88{left:469.869919px;}
.x23{left:472.224014px;}
.x68{left:474.285919px;}
.x89{left:476.257980px;}
.x45{left:478.402039px;}
.x26{left:479.798080px;}
.x63{left:485.076004px;}
.x69{left:487.070389px;}
.x11{left:489.632080px;}
.x1c{left:491.703003px;}
.xe3{left:493.636505px;}
.xd8{left:494.978850px;}
.x76{left:496.822815px;}
.xb5{left:497.939987px;}
.x1d{left:499.080002px;}
.xc8{left:500.738250px;}
.xa1{left:502.846802px;}
.xfb{left:504.080566px;}
.x8b{left:506.211594px;}
.x28{left:509.105988px;}
.xf0{left:510.905228px;}
.xfc{left:517.712997px;}
.x6a{left:522.688174px;}
.xb7{left:526.681961px;}
.xfd{left:528.865219px;}
.xe8{left:530.892746px;}
.x29{left:532.497299px;}
.x103{left:537.152710px;}
.x8d{left:542.270096px;}
.x79{left:545.747543px;}
.x6b{left:548.198090px;}
.x8e{left:550.415516px;}
.x2b{left:551.503510px;}
.x3b{left:554.894989px;}
.x6c{left:557.098148px;}
.xdf{left:563.802750px;}
.x7b{left:567.185715px;}
.xa3{left:568.227585px;}
.x61{left:570.183014px;}
.x90{left:574.224289px;}
.xb9{left:579.709808px;}
.xc9{left:580.791000px;}
.x3c{left:582.919189px;}
.xe1{left:584.667435px;}
.x4{left:586.814117px;}
.xca{left:591.126617px;}
.x9{left:596.685013px;}
.xe7{left:598.295380px;}
.xe4{left:600.276169px;}
.xf2{left:602.323929px;}
.x7d{left:604.963943px;}
.xa{left:606.855743px;}
.x92{left:609.608414px;}
.xd2{left:611.768692px;}
.xbb{left:613.824280px;}
.xe0{left:616.570496px;}
.x2c{left:618.000320px;}
.x93{left:620.340454px;}
.x31{left:621.571518px;}
.xe2{left:625.428131px;}
.xcb{left:628.039215px;}
.x7e{left:635.896500px;}
.xf3{left:639.019638px;}
.xbc{left:645.180908px;}
.xe{left:647.505020px;}
.x95{left:652.686584px;}
.xf5{left:655.591507px;}
.xa4{left:657.503082px;}
.x96{left:659.075288px;}
.x37{left:663.676483px;}
.xa8{left:667.308014px;}
.xf{left:672.070816px;}
.xa9{left:674.242035px;}
.x32{left:678.706970px;}
.x56{left:680.283005px;}
.x70{left:681.797642px;}
.x97{left:689.069229px;}
.x81{left:693.384018px;}
.x24{left:696.781494px;}
.xdb{left:697.822495px;}
.x15{left:700.348480px;}
.x73{left:703.609818px;}
.x3d{left:704.989517px;}
.x3e{left:712.988983px;}
.xe5{left:719.869492px;}
.x82{left:724.839020px;}
.x25{left:726.272690px;}
.x46{left:728.544022px;}
.xf8{left:730.438202px;}
.x47{left:735.699600px;}
.xdc{left:738.106522px;}
.xfe{left:740.941498px;}
.x7{left:743.298019px;}
.xfa{left:747.036758px;}
.x48{left:750.048019px;}
.x8{left:753.365570px;}
.x62{left:757.996490px;}
.x2d{left:760.146011px;}
.x12{left:762.357010px;}
.x39{left:768.022522px;}
.x16{left:769.644470px;}
.xd3{left:773.540955px;}
.x3a{left:775.938171px;}
.x14{left:777.451630px;}
.x59{left:780.447144px;}
.xf9{left:785.161377px;}
.x41{left:787.273499px;}
.xab{left:788.492889px;}
.x7f{left:792.715485px;}
.x42{left:793.977905px;}
.x2a{left:797.390808px;}
.x2{left:798.901611px;}
.x80{left:801.446136px;}
.xad{left:809.860016px;}
.x49{left:812.890503px;}
.x2e{left:815.601929px;}
.x4a{left:818.636536px;}
.x1{left:825.001190px;}
.xe6{left:831.259827px;}
@media print{
.v17{vertical-align:-53.268670pt;}
.v18{vertical-align:-38.858750pt;}
.v1b{vertical-align:-36.670369pt;}
.v1a{vertical-align:-29.470378pt;}
.v22{vertical-align:-24.287109pt;}
.v1f{vertical-align:-17.425130pt;}
.v5{vertical-align:-15.866662pt;}
.v26{vertical-align:-13.822917pt;}
.v24{vertical-align:-12.008266pt;}
.v7{vertical-align:-8.447428pt;}
.v4{vertical-align:-7.199992pt;}
.v9{vertical-align:-5.472534pt;}
.v6{vertical-align:-3.200521pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:3.660174pt;}
.ve{vertical-align:6.100199pt;}
.v1c{vertical-align:7.200033pt;}
.v11{vertical-align:10.404116pt;}
.v1e{vertical-align:11.374837pt;}
.vb{vertical-align:12.919849pt;}
.v15{vertical-align:14.131443pt;}
.v3{vertical-align:16.682764pt;}
.v14{vertical-align:17.664469pt;}
.v2{vertical-align:18.666667pt;}
.va{vertical-align:19.824544pt;}
.vf{vertical-align:23.329590pt;}
.v1d{vertical-align:24.625163pt;}
.v19{vertical-align:26.898517pt;}
.v13{vertical-align:27.887044pt;}
.vc{vertical-align:33.671179pt;}
.v20{vertical-align:35.976766pt;}
.v10{vertical-align:38.112467pt;}
.v8{vertical-align:39.675312pt;}
.v25{vertical-align:40.780073pt;}
.v16{vertical-align:53.268670pt;}
.v23{vertical-align:54.625000pt;}
.v21{vertical-align:76.079102pt;}
.vd{vertical-align:99.456543pt;}
.v27{vertical-align:100.725431pt;}
.ls76{letter-spacing:-1.921323pt;}
.lsdc{letter-spacing:-1.360000pt;}
.ls6f{letter-spacing:-1.296000pt;}
.ls73{letter-spacing:-1.008000pt;}
.ls6c{letter-spacing:-0.960000pt;}
.ls78{letter-spacing:-0.864000pt;}
.ls96{letter-spacing:-0.816000pt;}
.ls6d{letter-spacing:-0.672000pt;}
.ls70{letter-spacing:-0.624000pt;}
.lsc6{letter-spacing:-0.576000pt;}
.lseb{letter-spacing:-0.560000pt;}
.ls1d{letter-spacing:-0.528000pt;}
.ls71{letter-spacing:-0.480000pt;}
.lse0{letter-spacing:-0.440000pt;}
.lsc9{letter-spacing:-0.432000pt;}
.lsc7{letter-spacing:-0.384000pt;}
.ls32{letter-spacing:-0.336000pt;}
.lse9{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.288000pt;}
.lsea{letter-spacing:-0.280000pt;}
.ls15{letter-spacing:-0.240000pt;}
.lsec{letter-spacing:-0.200000pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.187200pt;}
.lsd1{letter-spacing:-0.186667pt;}
.ls72{letter-spacing:-0.156000pt;}
.ls20{letter-spacing:-0.144000pt;}
.lsde{letter-spacing:-0.120000pt;}
.ls18{letter-spacing:-0.096000pt;}
.lse3{letter-spacing:-0.080000pt;}
.ls1c{letter-spacing:-0.048000pt;}
.ls77{letter-spacing:-0.028820pt;}
.lsd2{letter-spacing:-0.028428pt;}
.ls14{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000237pt;}
.lsc1{letter-spacing:0.000598pt;}
.lscb{letter-spacing:0.000810pt;}
.lsb0{letter-spacing:0.000817pt;}
.lsb3{letter-spacing:0.000839pt;}
.ls91{letter-spacing:0.000844pt;}
.lsb6{letter-spacing:0.000917pt;}
.lsac{letter-spacing:0.000979pt;}
.lsb5{letter-spacing:0.001378pt;}
.lsb2{letter-spacing:0.002843pt;}
.lsb8{letter-spacing:0.003250pt;}
.lsae{letter-spacing:0.003331pt;}
.ls7b{letter-spacing:0.007693pt;}
.ls27{letter-spacing:0.009321pt;}
.lsca{letter-spacing:0.009972pt;}
.ls5{letter-spacing:0.011750pt;}
.ls4{letter-spacing:0.011754pt;}
.ls2{letter-spacing:0.012242pt;}
.ls3{letter-spacing:0.012405pt;}
.ls13{letter-spacing:0.016020pt;}
.lscf{letter-spacing:0.017829pt;}
.ls4f{letter-spacing:0.018604pt;}
.ls7e{letter-spacing:0.019623pt;}
.ls81{letter-spacing:0.020112pt;}
.lsce{letter-spacing:0.020368pt;}
.ls99{letter-spacing:0.021739pt;}
.ls3c{letter-spacing:0.021743pt;}
.ls49{letter-spacing:0.021902pt;}
.ls47{letter-spacing:0.022228pt;}
.ls46{letter-spacing:0.022309pt;}
.ls3f{letter-spacing:0.022390pt;}
.ls1{letter-spacing:0.024540pt;}
.ls4a{letter-spacing:0.027842pt;}
.lsd3{letter-spacing:0.028428pt;}
.ls74{letter-spacing:0.036505pt;}
.lscd{letter-spacing:0.037406pt;}
.lsdf{letter-spacing:0.040000pt;}
.ls6e{letter-spacing:0.048000pt;}
.ls80{letter-spacing:0.048033pt;}
.ls12{letter-spacing:0.093600pt;}
.ls17{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.111983pt;}
.lse2{letter-spacing:0.120000pt;}
.ls22{letter-spacing:0.124800pt;}
.ls3b{letter-spacing:0.129586pt;}
.ls11{letter-spacing:0.140400pt;}
.ls8{letter-spacing:0.141187pt;}
.lsf{letter-spacing:0.141347pt;}
.lse{letter-spacing:0.141350pt;}
.lsc{letter-spacing:0.141839pt;}
.ls1b{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.156000pt;}
.lsd7{letter-spacing:0.160000pt;}
.ls43{letter-spacing:0.168000pt;}
.lsa1{letter-spacing:0.172771pt;}
.ls62{letter-spacing:0.172922pt;}
.lsd5{letter-spacing:0.180000pt;}
.ls1f{letter-spacing:0.187200pt;}
.ls6{letter-spacing:0.192000pt;}
.lsdb{letter-spacing:0.200000pt;}
.lsa9{letter-spacing:0.215982pt;}
.lscc{letter-spacing:0.216000pt;}
.lsd4{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.250667pt;}
.lse8{letter-spacing:0.259200pt;}
.lsd{letter-spacing:0.265048pt;}
.lse4{letter-spacing:0.280000pt;}
.ls10{letter-spacing:0.288000pt;}
.ls5a{letter-spacing:0.288198pt;}
.ls45{letter-spacing:0.288539pt;}
.ls50{letter-spacing:0.292800pt;}
.lsd6{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.336000pt;}
.lsbe{letter-spacing:0.350393pt;}
.ls3d{letter-spacing:0.355200pt;}
.lsdd{letter-spacing:0.360000pt;}
.ls23{letter-spacing:0.384000pt;}
.lse1{letter-spacing:0.400000pt;}
.ls2c{letter-spacing:0.405600pt;}
.ls3e{letter-spacing:0.407994pt;}
.ls19{letter-spacing:0.432000pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls4d{letter-spacing:0.480331pt;}
.ls42{letter-spacing:0.504089pt;}
.ls40{letter-spacing:0.518400pt;}
.ls21{letter-spacing:0.528000pt;}
.ls31{letter-spacing:0.576000pt;}
.ls25{letter-spacing:0.624000pt;}
.lsaf{letter-spacing:0.657091pt;}
.ls1e{letter-spacing:0.672000pt;}
.lse7{letter-spacing:0.720000pt;}
.ls2e{letter-spacing:0.768000pt;}
.ls65{letter-spacing:0.796716pt;}
.ls84{letter-spacing:0.803111pt;}
.ls83{letter-spacing:0.839617pt;}
.ls79{letter-spacing:0.868755pt;}
.ls67{letter-spacing:0.944651pt;}
.ls5f{letter-spacing:0.952652pt;}
.ls87{letter-spacing:1.008694pt;}
.lse5{letter-spacing:1.112000pt;}
.lsb9{letter-spacing:1.387200pt;}
.lsc8{letter-spacing:1.392000pt;}
.ls75{letter-spacing:1.392959pt;}
.lsc0{letter-spacing:1.408243pt;}
.lsbb{letter-spacing:1.423698pt;}
.lse6{letter-spacing:1.423945pt;}
.ls69{letter-spacing:1.527474pt;}
.ls61{letter-spacing:1.642755pt;}
.ls63{letter-spacing:1.700396pt;}
.ls36{letter-spacing:1.854741pt;}
.ls7f{letter-spacing:1.855226pt;}
.lsa5{letter-spacing:1.857061pt;}
.ls54{letter-spacing:1.857346pt;}
.ls82{letter-spacing:1.857508pt;}
.lsa7{letter-spacing:1.859827pt;}
.ls8c{letter-spacing:1.873290pt;}
.ls86{letter-spacing:1.879390pt;}
.lsc2{letter-spacing:1.900480pt;}
.ls8f{letter-spacing:1.921323pt;}
.ls52{letter-spacing:2.044284pt;}
.ls57{letter-spacing:2.545752pt;}
.ls4b{letter-spacing:2.641819pt;}
.lsc3{letter-spacing:2.657116pt;}
.ls0{letter-spacing:2.666667pt;}
.ls66{letter-spacing:2.675693pt;}
.ls8b{letter-spacing:2.686227pt;}
.ls56{letter-spacing:2.689852pt;}
.lsda{letter-spacing:2.877690pt;}
.ls58{letter-spacing:2.978050pt;}
.lsa3{letter-spacing:3.383935pt;}
.ls55{letter-spacing:3.473570pt;}
.ls89{letter-spacing:3.473572pt;}
.lsa8{letter-spacing:3.475849pt;}
.ls3a{letter-spacing:3.587797pt;}
.lsa2{letter-spacing:3.588448pt;}
.ls38{letter-spacing:3.600375pt;}
.ls97{letter-spacing:3.888000pt;}
.ls90{letter-spacing:3.989938pt;}
.ls7a{letter-spacing:4.011000pt;}
.ls51{letter-spacing:4.013112pt;}
.ls88{letter-spacing:4.029826pt;}
.ls2a{letter-spacing:4.034778pt;}
.ls95{letter-spacing:4.322976pt;}
.lsa0{letter-spacing:4.371009pt;}
.lsbd{letter-spacing:4.701782pt;}
.ls5c{letter-spacing:4.922014pt;}
.ls68{letter-spacing:6.376146pt;}
.lsc4{letter-spacing:6.604168pt;}
.ls92{letter-spacing:7.973489pt;}
.ls35{letter-spacing:8.021522pt;}
.ls33{letter-spacing:8.309720pt;}
.ls9f{letter-spacing:10.589719pt;}
.ls24{letter-spacing:10.663341pt;}
.ls9e{letter-spacing:10.684726pt;}
.ls2b{letter-spacing:10.711374pt;}
.ls44{letter-spacing:10.951539pt;}
.ls5e{letter-spacing:11.527936pt;}
.ls41{letter-spacing:12.344498pt;}
.ls60{letter-spacing:13.238614pt;}
.lsd9{letter-spacing:13.294682pt;}
.lsd8{letter-spacing:13.294845pt;}
.ls26{letter-spacing:13.305159pt;}
.ls8a{letter-spacing:13.342152pt;}
.lsad{letter-spacing:13.342208pt;}
.lsb1{letter-spacing:13.342697pt;}
.ls28{letter-spacing:13.353192pt;}
.lsb4{letter-spacing:13.383419pt;}
.ls93{letter-spacing:13.401225pt;}
.lsb7{letter-spacing:13.622921pt;}
.ls5d{letter-spacing:13.641391pt;}
.ls85{letter-spacing:14.084247pt;}
.ls39{letter-spacing:14.132262pt;}
.ls7c{letter-spacing:14.361887pt;}
.ls94{letter-spacing:14.986317pt;}
.ls7d{letter-spacing:15.178449pt;}
.ls53{letter-spacing:15.645102pt;}
.lsa6{letter-spacing:15.760517pt;}
.lsa4{letter-spacing:15.763284pt;}
.ls4c{letter-spacing:15.850912pt;}
.ls29{letter-spacing:15.946978pt;}
.lsbf{letter-spacing:15.981637pt;}
.lsba{letter-spacing:15.985653pt;}
.lsaa{letter-spacing:16.042269pt;}
.ls48{letter-spacing:16.331242pt;}
.lsab{letter-spacing:16.356158pt;}
.ls4e{letter-spacing:16.379275pt;}
.lsbc{letter-spacing:16.402051pt;}
.ls98{letter-spacing:16.769469pt;}
.ls9b{letter-spacing:16.769550pt;}
.ls9a{letter-spacing:16.817483pt;}
.ls9c{letter-spacing:16.817562pt;}
.ls9d{letter-spacing:16.817567pt;}
.ls37{letter-spacing:16.819599pt;}
.ls8e{letter-spacing:16.907639pt;}
.ls8d{letter-spacing:17.051738pt;}
.ls5b{letter-spacing:17.202060pt;}
.lsc5{letter-spacing:17.628135pt;}
.lsd0{letter-spacing:21.326681pt;}
.ls64{letter-spacing:21.476113pt;}
.ls6a{letter-spacing:55.459511pt;}
.ls59{letter-spacing:83.385402pt;}
.ls34{letter-spacing:981.165082pt;}
.ws28{word-spacing:-981.204619pt;}
.ws74{word-spacing:-17.676168pt;}
.ws83{word-spacing:-17.628135pt;}
.ws60{word-spacing:-15.034350pt;}
.ws5f{word-spacing:-13.449258pt;}
.ws77{word-spacing:-13.401225pt;}
.ws69{word-spacing:-13.353192pt;}
.ws1{word-spacing:-13.333333pt;}
.ws9a{word-spacing:-12.320000pt;}
.ws2a{word-spacing:-11.520000pt;}
.ws48{word-spacing:-11.280000pt;}
.ws49{word-spacing:-11.136000pt;}
.ws91{word-spacing:-11.112000pt;}
.ws5a{word-spacing:-11.040000pt;}
.ws45{word-spacing:-10.992000pt;}
.ws54{word-spacing:-10.896000pt;}
.ws92{word-spacing:-10.800000pt;}
.ws61{word-spacing:-10.759407pt;}
.ws5d{word-spacing:-10.656000pt;}
.ws4a{word-spacing:-10.608000pt;}
.ws29{word-spacing:-10.416000pt;}
.ws18{word-spacing:-10.368000pt;}
.ws44{word-spacing:-9.936000pt;}
.ws47{word-spacing:-9.600000pt;}
.ws9d{word-spacing:-9.360000pt;}
.ws9c{word-spacing:-9.280000pt;}
.wsae{word-spacing:-9.260000pt;}
.ws70{word-spacing:-9.120000pt;}
.ws7{word-spacing:-9.066667pt;}
.ws8a{word-spacing:-8.928000pt;}
.ws40{word-spacing:-8.880000pt;}
.wsad{word-spacing:-8.600000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws26{word-spacing:-8.357753pt;}
.ws9b{word-spacing:-8.200000pt;}
.ws66{word-spacing:-8.069555pt;}
.ws55{word-spacing:-8.021522pt;}
.ws1e{word-spacing:-7.488000pt;}
.ws4{word-spacing:-7.269600pt;}
.ws2{word-spacing:-7.238400pt;}
.ws3{word-spacing:-7.176000pt;}
.ws43{word-spacing:-7.082400pt;}
.ws4b{word-spacing:-6.926400pt;}
.ws1f{word-spacing:-6.895200pt;}
.ws6{word-spacing:-5.893333pt;}
.wsb0{word-spacing:-5.400000pt;}
.wsb3{word-spacing:-5.360000pt;}
.ws62{word-spacing:-4.371009pt;}
.ws84{word-spacing:-4.322976pt;}
.ws52{word-spacing:-1.440992pt;}
.ws12{word-spacing:-1.104000pt;}
.wsc{word-spacing:-1.056000pt;}
.ws15{word-spacing:-1.008000pt;}
.ws99{word-spacing:-0.960000pt;}
.wsab{word-spacing:-0.920000pt;}
.ws1b{word-spacing:-0.912000pt;}
.wsa7{word-spacing:-0.880000pt;}
.ws56{word-spacing:-0.864000pt;}
.wsd{word-spacing:-0.768000pt;}
.wse{word-spacing:-0.720000pt;}
.ws57{word-spacing:-0.672000pt;}
.ws3a{word-spacing:-0.624000pt;}
.ws11{word-spacing:-0.576000pt;}
.ws59{word-spacing:-0.528000pt;}
.ws14{word-spacing:-0.480000pt;}
.wsac{word-spacing:-0.400000pt;}
.wsa{word-spacing:-0.384000pt;}
.ws89{word-spacing:-0.336000pt;}
.ws10{word-spacing:-0.288000pt;}
.wsb5{word-spacing:-0.280000pt;}
.ws2d{word-spacing:-0.250667pt;}
.ws17{word-spacing:-0.240000pt;}
.wsa0{word-spacing:-0.234667pt;}
.wsa8{word-spacing:-0.200000pt;}
.ws9{word-spacing:-0.192000pt;}
.wsa1{word-spacing:-0.160000pt;}
.ws5b{word-spacing:-0.144000pt;}
.ws1c{word-spacing:-0.124800pt;}
.wsa2{word-spacing:-0.120000pt;}
.ws36{word-spacing:-0.096000pt;}
.ws16{word-spacing:-0.093600pt;}
.ws4e{word-spacing:-0.073010pt;}
.ws96{word-spacing:-0.056857pt;}
.ws5{word-spacing:-0.048033pt;}
.ws7e{word-spacing:-0.047512pt;}
.ws95{word-spacing:-0.037406pt;}
.ws20{word-spacing:-0.036505pt;}
.ws4d{word-spacing:-0.028820pt;}
.ws8{word-spacing:0.000000pt;}
.wsaf{word-spacing:0.040000pt;}
.ws30{word-spacing:0.096000pt;}
.ws19{word-spacing:0.144000pt;}
.ws34{word-spacing:0.192000pt;}
.wsa4{word-spacing:0.200000pt;}
.ws41{word-spacing:0.240000pt;}
.wsa9{word-spacing:0.280000pt;}
.ws5c{word-spacing:0.336000pt;}
.wsf{word-spacing:0.384000pt;}
.ws6c{word-spacing:0.432000pt;}
.ws68{word-spacing:0.480000pt;}
.wsb6{word-spacing:0.520000pt;}
.ws58{word-spacing:0.528000pt;}
.wsb7{word-spacing:0.560000pt;}
.ws6f{word-spacing:0.576000pt;}
.ws5e{word-spacing:0.624000pt;}
.wsb4{word-spacing:0.640000pt;}
.ws8b{word-spacing:0.672000pt;}
.ws8d{word-spacing:0.720000pt;}
.ws6e{word-spacing:0.768000pt;}
.ws2e{word-spacing:0.816000pt;}
.wsaa{word-spacing:0.840000pt;}
.wsa5{word-spacing:0.880000pt;}
.wsa6{word-spacing:0.920000pt;}
.ws2c{word-spacing:0.960000pt;}
.ws33{word-spacing:1.008000pt;}
.ws13{word-spacing:1.056000pt;}
.wsa3{word-spacing:1.080000pt;}
.wsb{word-spacing:1.104000pt;}
.wsb2{word-spacing:1.160000pt;}
.ws85{word-spacing:1.200000pt;}
.ws3e{word-spacing:1.248000pt;}
.wsbc{word-spacing:1.296000pt;}
.wsb1{word-spacing:1.360000pt;}
.ws35{word-spacing:1.392000pt;}
.ws2b{word-spacing:1.440000pt;}
.ws38{word-spacing:1.488000pt;}
.ws1a{word-spacing:1.632000pt;}
.ws39{word-spacing:1.680000pt;}
.ws32{word-spacing:1.776000pt;}
.ws37{word-spacing:1.824000pt;}
.ws6d{word-spacing:2.112000pt;}
.ws2f{word-spacing:2.160000pt;}
.wsb8{word-spacing:2.688000pt;}
.wsb9{word-spacing:2.784000pt;}
.ws88{word-spacing:4.176000pt;}
.ws6b{word-spacing:4.512000pt;}
.ws86{word-spacing:4.896000pt;}
.ws87{word-spacing:5.040000pt;}
.ws3c{word-spacing:5.088000pt;}
.ws8c{word-spacing:5.184000pt;}
.ws3b{word-spacing:5.424000pt;}
.wsbd{word-spacing:5.568000pt;}
.ws31{word-spacing:5.952000pt;}
.ws80{word-spacing:5.976006pt;}
.ws81{word-spacing:6.022948pt;}
.ws7c{word-spacing:6.041588pt;}
.ws71{word-spacing:6.089045pt;}
.ws72{word-spacing:6.136502pt;}
.ws3d{word-spacing:6.144000pt;}
.ws7b{word-spacing:6.183958pt;}
.ws6a{word-spacing:6.528000pt;}
.wsba{word-spacing:7.248000pt;}
.wsbb{word-spacing:7.584000pt;}
.ws78{word-spacing:7.925456pt;}
.ws97{word-spacing:7.949472pt;}
.ws27{word-spacing:7.954276pt;}
.ws9f{word-spacing:7.959079pt;}
.ws8f{word-spacing:8.213654pt;}
.ws21{word-spacing:8.237671pt;}
.ws53{word-spacing:8.573902pt;}
.ws1d{word-spacing:8.704000pt;}
.ws76{word-spacing:9.510547pt;}
.ws75{word-spacing:9.558580pt;}
.ws79{word-spacing:10.166661pt;}
.ws22{word-spacing:10.615308pt;}
.ws24{word-spacing:10.639324pt;}
.ws9e{word-spacing:13.257126pt;}
.ws25{word-spacing:13.305159pt;}
.ws65{word-spacing:13.319569pt;}
.ws63{word-spacing:13.349081pt;}
.ws3f{word-spacing:13.584000pt;}
.ws7d{word-spacing:14.346491pt;}
.ws50{word-spacing:15.907598pt;}
.ws46{word-spacing:15.907680pt;}
.ws8e{word-spacing:15.925302pt;}
.ws90{word-spacing:15.927581pt;}
.ws73{word-spacing:15.942742pt;}
.ws42{word-spacing:15.944516pt;}
.ws4f{word-spacing:15.957321pt;}
.ws64{word-spacing:15.957403pt;}
.ws51{word-spacing:15.975210pt;}
.ws4c{word-spacing:16.000546pt;}
.ws23{word-spacing:16.164885pt;}
.ws82{word-spacing:17.760000pt;}
.ws98{word-spacing:24.150838pt;}
.ws7a{word-spacing:24.277829pt;}
.ws67{word-spacing:35.011114pt;}
.ws94{word-spacing:77.728000pt;}
.ws7f{word-spacing:95.470611pt;}
.ws93{word-spacing:319.013319pt;}
._12{margin-left:-981.125554pt;}
._1d{margin-left:-37.913214pt;}
._19{margin-left:-35.304303pt;}
._1b{margin-left:-26.640000pt;}
._1a{margin-left:-24.643236pt;}
._18{margin-left:-20.269954pt;}
._13{margin-left:-18.624006pt;}
._17{margin-left:-16.146134pt;}
._7{margin-left:-12.609600pt;}
._4{margin-left:-10.402134pt;}
._6{margin-left:-9.475673pt;}
._10{margin-left:-7.724800pt;}
._16{margin-left:-5.971443pt;}
._5{margin-left:-4.156680pt;}
._2{margin-left:-2.892860pt;}
._0{margin-left:-1.668267pt;}
._3{width:1.077867pt;}
._8{width:2.086400pt;}
._15{width:3.374699pt;}
._11{width:5.408000pt;}
._b{width:6.464689pt;}
._a{width:7.983045pt;}
._14{width:8.880000pt;}
._d{width:10.172800pt;}
._9{width:11.546133pt;}
._c{width:12.744060pt;}
._36{width:14.480000pt;}
._1f{width:15.966945pt;}
._20{width:24.269949pt;}
._1e{width:28.515038pt;}
._e{width:31.295422pt;}
._f{width:41.849966pt;}
._1c{width:43.247361pt;}
._33{width:48.611723pt;}
._2e{width:66.198919pt;}
._21{width:67.942939pt;}
._29{width:75.749333pt;}
._25{width:85.157333pt;}
._2a{width:93.669329pt;}
._22{width:101.471996pt;}
._26{width:103.077329pt;}
._23{width:105.391996pt;}
._2c{width:110.096000pt;}
._2f{width:111.589333pt;}
._27{width:128.015996pt;}
._2d{width:129.509329pt;}
._30{width:145.226667pt;}
._24{width:161.392000pt;}
._35{width:178.590919pt;}
._1{width:285.316267pt;}
._2b{width:310.090656pt;}
._34{width:351.194661pt;}
._28{width:356.944000pt;}
._32{width:386.063995pt;}
._31{width:387.669333pt;}
.fs13{font-size:28.428266pt;}
.fse{font-size:28.820267pt;}
.fs9{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fs10{font-size:36.108800pt;}
.fs7{font-size:36.505066pt;}
.fs11{font-size:37.333333pt;}
.fs12{font-size:37.406400pt;}
.fsd{font-size:39.537600pt;}
.fs14{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fsf{font-size:47.511998pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:48.033066pt;}
.fsb{font-size:50.133331pt;}
.fs1{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs8{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y196{bottom:-0.059283pt;}
.yd2{bottom:-0.000264pt;}
.y0{bottom:0.000000pt;}
.y14c{bottom:0.038778pt;}
.ya3{bottom:0.038940pt;}
.y122{bottom:0.039866pt;}
.y1b9{bottom:0.039876pt;}
.y1ac{bottom:0.040120pt;}
.ydb{bottom:0.040141pt;}
.yad{bottom:0.040283pt;}
.y81{bottom:0.040538pt;}
.y105{bottom:0.066895pt;}
.yd6{bottom:0.134135pt;}
.y163{bottom:0.145590pt;}
.yf7{bottom:0.156675pt;}
.y140{bottom:0.164001pt;}
.y84{bottom:0.172536pt;}
.y63{bottom:0.172546pt;}
.y127{bottom:0.173064pt;}
.y1a7{bottom:0.173218pt;}
.ya6{bottom:0.173340pt;}
.y21a{bottom:0.173421pt;}
.y235{bottom:0.173463pt;}
.y1fa{bottom:0.173584pt;}
.y6a{bottom:0.173869pt;}
.y211{bottom:0.439992pt;}
.y167{bottom:0.529989pt;}
.y13d{bottom:0.667602pt;}
.y228{bottom:1.373861pt;}
.y225{bottom:1.505859pt;}
.y22d{bottom:1.506104pt;}
.y220{bottom:1.506999pt;}
.y182{bottom:1.541141pt;}
.y17a{bottom:1.745662pt;}
.y17d{bottom:1.745744pt;}
.y31{bottom:1.772268pt;}
.y1a4{bottom:1.773315pt;}
.y20d{bottom:1.773337pt;}
.y186{bottom:1.773356pt;}
.y36{bottom:1.773600pt;}
.y11b{bottom:1.906270pt;}
.y9b{bottom:1.906535pt;}
.y92{bottom:1.906576pt;}
.yb5{bottom:1.906657pt;}
.y20a{bottom:1.906667pt;}
.y205{bottom:1.906677pt;}
.y150{bottom:1.906698pt;}
.y1fc{bottom:1.906820pt;}
.y26d{bottom:1.906982pt;}
.y79{bottom:1.907065pt;}
.y18d{bottom:2.145426pt;}
.y15a{bottom:2.145589pt;}
.yeb{bottom:2.173330pt;}
.y1d7{bottom:2.173726pt;}
.y26f{bottom:2.173747pt;}
.y173{bottom:2.207726pt;}
.y116{bottom:2.240211pt;}
.yc7{bottom:2.306661pt;}
.y202{bottom:2.306803pt;}
.y72{bottom:2.307191pt;}
.y8b{bottom:2.440399pt;}
.y15e{bottom:2.529989pt;}
.y18f{bottom:2.637207pt;}
.y1f1{bottom:2.796387pt;}
.y1ce{bottom:2.839966pt;}
.y10f{bottom:2.843733pt;}
.y3d{bottom:2.843867pt;}
.y169{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y6d{bottom:3.107056pt;}
.y183{bottom:3.173584pt;}
.y195{bottom:3.373210pt;}
.y21d{bottom:3.373291pt;}
.y161{bottom:3.373617pt;}
.yf9{bottom:3.386637pt;}
.yf6{bottom:3.386800pt;}
.y1c6{bottom:3.639852pt;}
.y174{bottom:3.840169pt;}
.ye4{bottom:4.039866pt;}
.yba{bottom:4.039876pt;}
.y1b3{bottom:4.173340pt;}
.y5c{bottom:4.305725pt;}
.y238{bottom:4.306661pt;}
.y60{bottom:4.439067pt;}
.y177{bottom:4.973145pt;}
.y17f{bottom:4.973551pt;}
.y158{bottom:5.373576pt;}
.y16c{bottom:5.639974pt;}
.y16f{bottom:5.640137pt;}
.y115{bottom:5.773071pt;}
.y189{bottom:6.093424pt;}
.y137{bottom:6.380666pt;}
.y108{bottom:6.613322pt;}
.y12c{bottom:7.719727pt;}
.y133{bottom:7.719869pt;}
.ye6{bottom:8.396139pt;}
.y191{bottom:9.083483pt;}
.y190{bottom:9.088497pt;}
.y165{bottom:9.157593pt;}
.y179{bottom:9.329590pt;}
.y17c{bottom:9.329671pt;}
.y180{bottom:9.329834pt;}
.y181{bottom:9.389730pt;}
.y16d{bottom:9.996257pt;}
.y171{bottom:9.996419pt;}
.y172{bottom:10.056315pt;}
.y118{bottom:10.189189pt;}
.y15c{bottom:11.157593pt;}
.y1f3{bottom:11.223877pt;}
.y1ee{bottom:11.223999pt;}
.y192{bottom:12.777344pt;}
.yfc{bottom:13.986654pt;}
.y149{bottom:15.200002pt;}
.y136{bottom:15.213063pt;}
.y131{bottom:17.439596pt;}
.y146{bottom:18.206773pt;}
.y142{bottom:18.206905pt;}
.y1f5{bottom:19.556396pt;}
.y130{bottom:21.039591pt;}
.y107{bottom:22.397883pt;}
.y106{bottom:23.922933pt;}
.y3c{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y110{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y144{bottom:24.931600pt;}
.y104{bottom:25.386515pt;}
.y145{bottom:25.411733pt;}
.y141{bottom:25.411865pt;}
.y13c{bottom:26.611999pt;}
.yff{bottom:26.801310pt;}
.y103{bottom:28.986532pt;}
.y13b{bottom:30.223867pt;}
.y13e{bottom:30.519620pt;}
.y3b{bottom:60.477867pt;}
.y8a{bottom:62.761332pt;}
.y8c{bottom:65.209732pt;}
.y3a{bottom:73.811200pt;}
.y135{bottom:75.018667pt;}
.y89{bottom:78.547070pt;}
.y138{bottom:81.399333pt;}
.y13a{bottom:81.698267pt;}
.y26a{bottom:82.166650pt;}
.y148{bottom:87.000140pt;}
.y134{bottom:88.923065pt;}
.y143{bottom:90.218536pt;}
.y39{bottom:91.105865pt;}
.y1ea{bottom:91.317332pt;}
.y88{bottom:91.879070pt;}
.y1eb{bottom:93.093597pt;}
.y1e9{bottom:93.094931pt;}
.y269{bottom:93.496650pt;}
.yf3{bottom:97.040000pt;}
.y147{bottom:97.586131pt;}
.y139{bottom:98.655467pt;}
.y215{bottom:100.278800pt;}
.y13f{bottom:104.174398pt;}
.y1e7{bottom:104.650665pt;}
.y268{bottom:104.826650pt;}
.y87{bottom:105.211070pt;}
.y1e8{bottom:106.426931pt;}
.y1e6{bottom:106.442941pt;}
.yf2{bottom:110.372000pt;}
.y214{bottom:113.610800pt;}
.y8e{bottom:115.687581pt;}
.y267{bottom:116.156650pt;}
.y86{bottom:118.543070pt;}
.yee{bottom:119.671997pt;}
.y1e5{bottom:119.774941pt;}
.yf1{bottom:123.704000pt;}
.yed{bottom:123.705333pt;}
.yef{bottom:123.711863pt;}
.y129{bottom:124.886404pt;}
.yf0{bottom:126.700002pt;}
.y213{bottom:126.942800pt;}
.y266{bottom:127.486650pt;}
.y35{bottom:131.618663pt;}
.y1e4{bottom:133.106941pt;}
.y37{bottom:133.395070pt;}
.y34{bottom:133.397737pt;}
.yea{bottom:134.853333pt;}
.yec{bottom:137.037333pt;}
.ye9{bottom:137.038667pt;}
.y126{bottom:138.050669pt;}
.y128{bottom:138.218404pt;}
.y125{bottom:138.221071pt;}
.y265{bottom:138.816650pt;}
.y210{bottom:139.842672pt;}
.y212{bottom:140.274800pt;}
.y20f{bottom:140.277467pt;}
.ye3{bottom:146.338664pt;}
.y1e3{bottom:146.438941pt;}
.y33{bottom:146.729737pt;}
.y85{bottom:147.877737pt;}
.y264{bottom:150.146650pt;}
.ye8{bottom:150.370667pt;}
.ye2{bottom:150.373333pt;}
.ye5{bottom:150.378530pt;}
.y124{bottom:151.553071pt;}
.ye7{bottom:153.366669pt;}
.y20e{bottom:153.609467pt;}
.y30{bottom:158.286662pt;}
.y1e2{bottom:159.770941pt;}
.y32{bottom:160.061737pt;}
.y2f{bottom:160.064271pt;}
.y83{bottom:161.042664pt;}
.y80{bottom:161.170664pt;}
.y82{bottom:161.209737pt;}
.y7f{bottom:161.215070pt;}
.y263{bottom:161.476650pt;}
.ye1{bottom:163.705333pt;}
.y121{bottom:164.846670pt;}
.y123{bottom:164.885071pt;}
.y120{bottom:164.886404pt;}
.y209{bottom:165.045329pt;}
.y20c{bottom:165.165333pt;}
.y20b{bottom:166.941467pt;}
.y208{bottom:166.945467pt;}
.y262{bottom:172.806650pt;}
.yde{bottom:173.005330pt;}
.y1e1{bottom:173.102941pt;}
.y2e{bottom:173.396271pt;}
.y7e{bottom:174.547070pt;}
.ye0{bottom:175.141337pt;}
.ydf{bottom:177.037333pt;}
.ydd{bottom:177.038667pt;}
.y11f{bottom:178.219737pt;}
.y207{bottom:180.277467pt;}
.y261{bottom:184.136650pt;}
.y1e0{bottom:186.434941pt;}
.y2d{bottom:186.732271pt;}
.y7d{bottom:187.879070pt;}
.yda{bottom:190.331991pt;}
.ydc{bottom:190.370667pt;}
.yd9{bottom:190.373333pt;}
.y11e{bottom:191.551737pt;}
.y206{bottom:193.609467pt;}
.y260{bottom:195.466650pt;}
.y1df{bottom:199.766941pt;}
.y2c{bottom:200.064271pt;}
.y7c{bottom:201.211070pt;}
.yd8{bottom:203.705333pt;}
.y201{bottom:204.637329pt;}
.y204{bottom:205.045329pt;}
.y25f{bottom:206.796650pt;}
.y203{bottom:206.941467pt;}
.y200{bottom:206.944133pt;}
.y7b{bottom:212.238667pt;}
.y78{bottom:212.646667pt;}
.yd7{bottom:213.005330pt;}
.y1de{bottom:213.098941pt;}
.y2b{bottom:213.396271pt;}
.y7a{bottom:214.543070pt;}
.y77{bottom:214.545737pt;}
.yd3{bottom:214.733337pt;}
.yd4{bottom:217.037333pt;}
.y25e{bottom:218.126650pt;}
.y1ff{bottom:220.276133pt;}
.y11d{bottom:220.887737pt;}
.yd5{bottom:221.285339pt;}
.y1dd{bottom:226.430941pt;}
.y2a{bottom:226.734938pt;}
.y76{bottom:227.877737pt;}
.y25d{bottom:229.456650pt;}
.ycf{bottom:230.202657pt;}
.yd0{bottom:230.370667pt;}
.yce{bottom:230.373333pt;}
.y1fe{bottom:233.608133pt;}
.y11c{bottom:234.219737pt;}
.yd1{bottom:234.729329pt;}
.y1dc{bottom:239.762941pt;}
.y29{bottom:240.066938pt;}
.y25c{bottom:240.786650pt;}
.y74{bottom:241.041341pt;}
.y75{bottom:241.209737pt;}
.y73{bottom:241.211070pt;}
.y114{bottom:241.768005pt;}
.ycd{bottom:243.705333pt;}
.y11a{bottom:245.656006pt;}
.y117{bottom:247.541077pt;}
.y119{bottom:247.551737pt;}
.y113{bottom:247.553071pt;}
.y25b{bottom:252.116650pt;}
.y71{bottom:252.238667pt;}
.yca{bottom:253.005330pt;}
.y1db{bottom:253.094941pt;}
.y28{bottom:253.398938pt;}
.y6f{bottom:254.374674pt;}
.y70{bottom:254.543070pt;}
.y6e{bottom:254.544404pt;}
.ycc{bottom:256.869324pt;}
.ycb{bottom:257.037333pt;}
.yc9{bottom:257.038667pt;}
.y112{bottom:260.885071pt;}
.y25a{bottom:263.446650pt;}
.y6c{bottom:264.780009pt;}
.y1da{bottom:266.426941pt;}
.y27{bottom:266.730938pt;}
.y69{bottom:267.708008pt;}
.y6b{bottom:267.876404pt;}
.y68{bottom:267.877737pt;}
.yc6{bottom:268.066671pt;}
.yc8{bottom:270.370667pt;}
.yc5{bottom:270.372000pt;}
.y2a6{bottom:271.255328pt;}
.y259{bottom:274.776650pt;}
.y1d9{bottom:279.760274pt;}
.y26{bottom:280.062938pt;}
.y12b{bottom:280.885335pt;}
.y66{bottom:281.042664pt;}
.y237{bottom:281.056010pt;}
.y67{bottom:281.209737pt;}
.y65{bottom:281.212404pt;}
.yc3{bottom:283.535990pt;}
.yc4{bottom:283.704000pt;}
.yc2{bottom:283.705333pt;}
.y234{bottom:285.184000pt;}
.y236{bottom:285.352010pt;}
.y12e{bottom:285.365404pt;}
.y258{bottom:286.106650pt;}
.y12a{bottom:287.330401pt;}
.y12f{bottom:288.605062pt;}
.y132{bottom:288.605204pt;}
.y25{bottom:293.397605pt;}
.y12d{bottom:293.560791pt;}
.y64{bottom:294.544404pt;}
.yc0{bottom:295.141337pt;}
.yc1{bottom:297.037333pt;}
.ybf{bottom:297.038667pt;}
.y257{bottom:297.436650pt;}
.y2a5{bottom:297.919327pt;}
.y233{bottom:298.689343pt;}
.y5f{bottom:303.437337pt;}
.y24{bottom:306.729605pt;}
.y1d6{bottom:306.909342pt;}
.y62{bottom:307.709330pt;}
.y61{bottom:307.876404pt;}
.y5e{bottom:307.877737pt;}
.ybd{bottom:308.474670pt;}
.y256{bottom:308.766650pt;}
.y1d8{bottom:309.093608pt;}
.ybe{bottom:310.370667pt;}
.ybc{bottom:310.373333pt;}
.y2a4{bottom:311.251327pt;}
.y232{bottom:312.021343pt;}
.y5b{bottom:316.914673pt;}
.y23{bottom:320.065605pt;}
.y255{bottom:320.096650pt;}
.y5d{bottom:321.209737pt;}
.y5a{bottom:321.215050pt;}
.y1d5{bottom:322.430676pt;}
.ybb{bottom:323.705333pt;}
.y2a3{bottom:324.583327pt;}
.y231{bottom:325.353343pt;}
.y254{bottom:331.426650pt;}
.yb9{bottom:333.005330pt;}
.y22{bottom:333.397605pt;}
.y59{bottom:334.547050pt;}
.yb8{bottom:337.037333pt;}
.y1ec{bottom:337.701597pt;}
.y2a2{bottom:337.915327pt;}
.y230{bottom:338.685343pt;}
.y253{bottom:342.756650pt;}
.y21{bottom:346.729605pt;}
.y58{bottom:347.879050pt;}
.y1ed{bottom:349.093343pt;}
.y160{bottom:350.350667pt;}
.y2a1{bottom:351.247327pt;}
.y1f6{bottom:351.889730pt;}
.y162{bottom:353.724284pt;}
.y164{bottom:353.724406pt;}
.y168{bottom:353.735067pt;}
.y252{bottom:354.086650pt;}
.yfb{bottom:357.037354pt;}
.y166{bottom:358.140666pt;}
.y1ef{bottom:358.536784pt;}
.y20{bottom:360.062938pt;}
.y100{bottom:360.222412pt;}
.y1f2{bottom:360.317220pt;}
.y57{bottom:361.211050pt;}
.y157{bottom:361.692017pt;}
.y109{bottom:362.126668pt;}
.yfe{bottom:362.490682pt;}
.y2a0{bottom:364.579327pt;}
.y159{bottom:365.265584pt;}
.y251{bottom:365.416650pt;}
.y15b{bottom:367.065715pt;}
.y15f{bottom:367.068400pt;}
.y156{bottom:367.072400pt;}
.y1f4{bottom:368.649740pt;}
.y1f0{bottom:368.649984pt;}
.yfa{bottom:369.275472pt;}
.y101{bottom:371.022420pt;}
.yfd{bottom:371.024007pt;}
.y15d{bottom:371.482015pt;}
.y102{bottom:372.463989pt;}
.y1f{bottom:373.397605pt;}
.y56{bottom:374.543050pt;}
.y250{bottom:376.746650pt;}
.y29f{bottom:377.911327pt;}
.y155{bottom:380.404400pt;}
.y1e{bottom:386.729605pt;}
.y55{bottom:387.876383pt;}
.y24f{bottom:388.076650pt;}
.y1d1{bottom:388.082682pt;}
.y1d4{bottom:390.746663pt;}
.y1d3{bottom:390.830648pt;}
.y1d2{bottom:390.914673pt;}
.y1d0{bottom:390.916006pt;}
.y29e{bottom:391.243327pt;}
.y154{bottom:393.736400pt;}
.y24e{bottom:399.406650pt;}
.y1d{bottom:400.064271pt;}
.y1cd{bottom:401.416016pt;}
.yb4{bottom:401.674683pt;}
.yb7{bottom:403.531982pt;}
.yb6{bottom:403.570679pt;}
.yb3{bottom:403.572012pt;}
.y1cf{bottom:404.248006pt;}
.y1cc{bottom:404.249340pt;}
.y153{bottom:407.068400pt;}
.y24d{bottom:410.736650pt;}
.y29d{bottom:411.236660pt;}
.y1c{bottom:413.396271pt;}
.y1c9{bottom:413.933350pt;}
.y1cb{bottom:415.805339pt;}
.yb1{bottom:416.865316pt;}
.yb2{bottom:416.904012pt;}
.y54{bottom:417.211050pt;}
.y1ca{bottom:417.581340pt;}
.y1c8{bottom:417.582673pt;}
.y24c{bottom:422.066650pt;}
.y29c{bottom:424.568660pt;}
.y1b{bottom:426.729605pt;}
.y1c5{bottom:427.266683pt;}
.yb0{bottom:430.240012pt;}
.y1c7{bottom:430.914673pt;}
.y1c4{bottom:430.916006pt;}
.y53{bottom:431.343180pt;}
.y24b{bottom:433.399984pt;}
.y1a{bottom:440.062938pt;}
.y1c3{bottom:442.352010pt;}
.yaf{bottom:443.572012pt;}
.y52{bottom:443.880383pt;}
.y1c1{bottom:444.079997pt;}
.y1c2{bottom:444.248006pt;}
.y1c0{bottom:444.249340pt;}
.y29b{bottom:444.572660pt;}
.y19{bottom:453.398938pt;}
.yac{bottom:456.865316pt;}
.yae{bottom:456.904012pt;}
.yab{bottom:456.906679pt;}
.y51{bottom:457.212383pt;}
.y1be{bottom:457.497314pt;}
.y1bf{bottom:457.581340pt;}
.y1bd{bottom:457.584006pt;}
.y29a{bottom:464.576660pt;}
.y18{bottom:466.730938pt;}
.yaa{bottom:470.238679pt;}
.y50{bottom:470.544383pt;}
.y1bc{bottom:470.916006pt;}
.y24a{bottom:477.399984pt;}
.y299{bottom:477.909993pt;}
.y17{bottom:480.062938pt;}
.ya8{bottom:483.533325pt;}
.ya9{bottom:483.570679pt;}
.ya7{bottom:483.572012pt;}
.y1bb{bottom:484.079997pt;}
.y1b8{bottom:484.163981pt;}
.y1ba{bottom:484.248006pt;}
.y1b7{bottom:484.250673pt;}
.y4f{bottom:484.676514pt;}
.y16{bottom:493.424239pt;}
.ya5{bottom:496.736003pt;}
.ya2{bottom:496.866659pt;}
.ya1{bottom:496.899988pt;}
.ya4{bottom:496.904012pt;}
.y4e{bottom:497.213717pt;}
.y1b6{bottom:497.582673pt;}
.y249{bottom:504.067984pt;}
.y298{bottom:504.576660pt;}
.y1b2{bottom:506.738647pt;}
.y15{bottom:506.756239pt;}
.y4d{bottom:510.545717pt;}
.y1b4{bottom:510.911987pt;}
.y1b5{bottom:510.914673pt;}
.y1b1{bottom:510.916006pt;}
.yf5{bottom:516.904012pt;}
.y248{bottom:517.399984pt;}
.y297{bottom:517.909993pt;}
.yf4{bottom:519.680014pt;}
.y14{bottom:520.088239pt;}
.yf8{bottom:520.290649pt;}
.y4c{bottom:523.877717pt;}
.y1af{bottom:524.079997pt;}
.y1b0{bottom:524.248006pt;}
.y1ae{bottom:524.249340pt;}
.y247{bottom:530.733317pt;}
.y13{bottom:533.420239pt;}
.y1ab{bottom:537.542684pt;}
.y1ad{bottom:537.581340pt;}
.y1aa{bottom:537.584006pt;}
.y4b{bottom:538.009847pt;}
.y9f{bottom:542.607992pt;}
.ya0{bottom:544.503988pt;}
.y9e{bottom:544.505321pt;}
.y296{bottom:545.880656pt;}
.y12{bottom:546.752239pt;}
.y4a{bottom:550.545717pt;}
.y1a9{bottom:550.916006pt;}
.y246{bottom:557.415984pt;}
.y9d{bottom:557.839988pt;}
.y295{bottom:559.213989pt;}
.y49{bottom:563.877717pt;}
.y1a6{bottom:564.079997pt;}
.y1a8{bottom:564.248006pt;}
.y1a5{bottom:564.249340pt;}
.y245{bottom:570.747984pt;}
.y9c{bottom:571.171988pt;}
.y1a3{bottom:575.805339pt;}
.y1a2{bottom:577.581340pt;}
.y48{bottom:578.009847pt;}
.y9a{bottom:582.607992pt;}
.y244{bottom:584.079984pt;}
.y99{bottom:584.503988pt;}
.y294{bottom:585.884656pt;}
.y11{bottom:586.880239pt;}
.y243{bottom:597.411984pt;}
.y293{bottom:599.216656pt;}
.y10{bottom:601.544239pt;}
.y1a0{bottom:605.018677pt;}
.y1a1{bottom:606.914673pt;}
.y19f{bottom:606.917340pt;}
.y47{bottom:607.215050pt;}
.y242{bottom:610.743984pt;}
.y292{bottom:612.548656pt;}
.yf{bottom:616.208239pt;}
.y19e{bottom:620.249340pt;}
.y46{bottom:620.547050pt;}
.y241{bottom:624.075984pt;}
.y291{bottom:625.880656pt;}
.y152{bottom:628.935985pt;}
.ye{bottom:630.872239pt;}
.y19c{bottom:631.685343pt;}
.y19d{bottom:633.581340pt;}
.y45{bottom:633.879050pt;}
.y240{bottom:637.407984pt;}
.y290{bottom:639.213989pt;}
.y14f{bottom:640.371989pt;}
.y10e{bottom:641.366824pt;}
.y151{bottom:642.267985pt;}
.y14e{bottom:642.270652pt;}
.yd{bottom:645.536239pt;}
.y19b{bottom:646.917340pt;}
.y44{bottom:647.211050pt;}
.y23f{bottom:650.739984pt;}
.y10d{bottom:654.698824pt;}
.y14d{bottom:655.602652pt;}
.yc{bottom:660.200239pt;}
.y19a{bottom:660.249340pt;}
.y43{bottom:660.547050pt;}
.y23e{bottom:664.071984pt;}
.y28f{bottom:665.881989pt;}
.y10c{bottom:668.030824pt;}
.y14b{bottom:668.897339pt;}
.y14a{bottom:668.934652pt;}
.y198{bottom:673.413330pt;}
.y197{bottom:673.575965pt;}
.y199{bottom:673.581340pt;}
.y42{bottom:673.879050pt;}
.yb{bottom:674.864239pt;}
.y23d{bottom:677.403984pt;}
.y28e{bottom:679.213989pt;}
.y10b{bottom:681.362824pt;}
.y188{bottom:686.152018pt;}
.y41{bottom:687.211050pt;}
.y194{bottom:688.864014pt;}
.ya{bottom:689.528239pt;}
.y18b{bottom:690.445475pt;}
.y23c{bottom:690.735984pt;}
.y187{bottom:692.245299pt;}
.y18a{bottom:692.245443pt;}
.y193{bottom:692.247965pt;}
.y28d{bottom:692.547363pt;}
.y10a{bottom:694.694824pt;}
.y18e{bottom:697.729329pt;}
.y18c{bottom:698.029297pt;}
.y40{bottom:700.544383pt;}
.y23b{bottom:704.067984pt;}
.y176{bottom:708.613363pt;}
.y185{bottom:711.805339pt;}
.y175{bottom:713.575965pt;}
.y184{bottom:713.581299pt;}
.y178{bottom:713.586507pt;}
.y17b{bottom:713.586833pt;}
.y17e{bottom:713.586914pt;}
.y3f{bottom:713.876383pt;}
.y9{bottom:716.194906pt;}
.y23a{bottom:717.399984pt;}
.y28c{bottom:719.287363pt;}
.y16b{bottom:726.607992pt;}
.y16e{bottom:729.020020pt;}
.y28b{bottom:730.617363pt;}
.y239{bottom:730.733317pt;}
.y8{bottom:732.194906pt;}
.y16a{bottom:732.247965pt;}
.y170{bottom:732.248128pt;}
.y28a{bottom:741.947363pt;}
.y289{bottom:753.277363pt;}
.y97{bottom:761.134646pt;}
.y7{bottom:761.517572pt;}
.y288{bottom:764.607363pt;}
.y96{bottom:774.466646pt;}
.y287{bottom:775.937363pt;}
.y1fd{bottom:782.009634pt;}
.y286{bottom:787.267363pt;}
.y95{bottom:787.798646pt;}
.y1fb{bottom:793.445313pt;}
.y275{bottom:794.505721pt;}
.y1f9{bottom:795.173340pt;}
.y1f8{bottom:795.257324pt;}
.y1f7{bottom:795.341634pt;}
.y216{bottom:797.081868pt;}
.y285{bottom:798.597363pt;}
.y94{bottom:801.130646pt;}
.y6{bottom:801.522906pt;}
.y274{bottom:807.837721pt;}
.y284{bottom:809.927363pt;}
.y91{bottom:812.566650pt;}
.y93{bottom:814.462646pt;}
.y90{bottom:814.463980pt;}
.y273{bottom:821.169721pt;}
.y283{bottom:821.257363pt;}
.y22f{bottom:825.240807pt;}
.y8f{bottom:827.795980pt;}
.y282{bottom:832.587363pt;}
.y272{bottom:834.501721pt;}
.y22c{bottom:839.315999pt;}
.y22e{bottom:840.827474pt;}
.y5{bottom:841.528239pt;}
.y281{bottom:843.917363pt;}
.y271{bottom:847.833721pt;}
.y38{bottom:848.326009pt;}
.y8d{bottom:851.638672pt;}
.y22a{bottom:855.044027pt;}
.y280{bottom:855.247363pt;}
.y22b{bottom:856.412679pt;}
.y270{bottom:861.165721pt;}
.y27f{bottom:866.577363pt;}
.y227{bottom:870.629313pt;}
.y229{bottom:871.997965pt;}
.y26e{bottom:872.313314pt;}
.y26c{bottom:872.601318pt;}
.y26b{bottom:874.497721pt;}
.y27e{bottom:877.907363pt;}
.y224{bottom:886.072021pt;}
.y223{bottom:887.580247pt;}
.y226{bottom:887.583171pt;}
.y27d{bottom:889.237363pt;}
.y27c{bottom:900.567363pt;}
.y222{bottom:903.166914pt;}
.y27b{bottom:911.897363pt;}
.y21f{bottom:917.241374pt;}
.y221{bottom:918.753581pt;}
.y27a{bottom:923.227363pt;}
.y21c{bottom:930.954671pt;}
.y21e{bottom:934.338949pt;}
.y279{bottom:934.557363pt;}
.y278{bottom:945.887363pt;}
.y219{bottom:949.756022pt;}
.y218{bottom:949.923099pt;}
.y21b{bottom:949.924154pt;}
.y277{bottom:957.217363pt;}
.y217{bottom:965.509766pt;}
.y276{bottom:968.547363pt;}
.y98{bottom:1013.902507pt;}
.y111{bottom:1013.996908pt;}
.y3e{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h54{height:0.000000pt;}
.h61{height:1.921323pt;}
.h3c{height:5.466667pt;}
.h94{height:5.733333pt;}
.h3f{height:5.865333pt;}
.h41{height:6.000000pt;}
.h91{height:6.401333pt;}
.h39{height:7.200000pt;}
.h2c{height:7.333333pt;}
.h95{height:7.600000pt;}
.h25{height:7.733333pt;}
.h23{height:7.734667pt;}
.h1f{height:7.866667pt;}
.h30{height:7.998667pt;}
.h36{height:8.000000pt;}
.h8c{height:8.132000pt;}
.h1e{height:8.133333pt;}
.h8e{height:8.265333pt;}
.h20{height:8.266666pt;}
.h93{height:8.933333pt;}
.h7e{height:9.065333pt;}
.h5c{height:9.066667pt;}
.h46{height:9.198667pt;}
.h3b{height:9.466667pt;}
.h2f{height:9.733333pt;}
.hf{height:9.866667pt;}
.h11{height:9.868000pt;}
.h2d{height:10.000000pt;}
.h8d{height:10.001333pt;}
.h84{height:10.266666pt;}
.h34{height:10.398666pt;}
.h73{height:10.400000pt;}
.h32{height:10.532000pt;}
.h5b{height:10.533333pt;}
.h7f{height:10.666667pt;}
.h83{height:10.933333pt;}
.h1b{height:11.333333pt;}
.h1d{height:11.466667pt;}
.h82{height:11.732000pt;}
.h21{height:11.733333pt;}
.h38{height:12.000000pt;}
.h47{height:12.133333pt;}
.h27{height:12.933333pt;}
.h7c{height:13.601333pt;}
.h48{height:14.266666pt;}
.h43{height:14.400000pt;}
.h80{height:14.533333pt;}
.h6d{height:15.066667pt;}
.h71{height:15.333333pt;}
.h6f{height:16.000000pt;}
.h57{height:16.133333pt;}
.h6a{height:17.066667pt;}
.h45{height:20.174187pt;}
.h65{height:20.520030pt;}
.h3d{height:21.374714pt;}
.h5e{height:21.600000pt;}
.h24{height:21.614880pt;}
.h3a{height:21.662913pt;}
.h75{height:21.733332pt;}
.h79{height:23.344070pt;}
.h52{height:23.834361pt;}
.h87{height:25.276160pt;}
.h40{height:25.553546pt;}
.h4f{height:25.991607pt;}
.h92{height:26.184480pt;}
.h96{height:26.670763pt;}
.h64{height:26.867729pt;}
.h13{height:27.275265pt;}
.h88{height:27.699495pt;}
.h53{height:27.862729pt;}
.h85{height:28.487999pt;}
.h66{height:28.819839pt;}
.h2a{height:29.020598pt;}
.h2{height:30.687500pt;}
.h98{height:31.476562pt;}
.h31{height:31.557724pt;}
.h5a{height:31.797890pt;}
.h10{height:32.086088pt;}
.h8a{height:32.118111pt;}
.h81{height:32.278220pt;}
.h4c{height:32.470352pt;}
.h44{height:32.902650pt;}
.h4b{height:33.199999pt;}
.h86{height:33.258399pt;}
.h1c{height:33.623146pt;}
.h22{height:34.199543pt;}
.h74{height:34.247576pt;}
.h8{height:34.523438pt;}
.h4a{height:35.351291pt;}
.h5d{height:35.352336pt;}
.h63{height:36.533333pt;}
.h90{height:36.922667pt;}
.h14{height:37.038883pt;}
.h76{height:37.898089pt;}
.h8f{height:38.229333pt;}
.h68{height:38.496410pt;}
.h9b{height:39.560000pt;}
.h50{height:39.723345pt;}
.h7a{height:39.862701pt;}
.h9a{height:40.080000pt;}
.h3{height:40.604167pt;}
.h62{height:40.780073pt;}
.h99{height:40.960000pt;}
.h19{height:42.195312pt;}
.h7b{height:42.701395pt;}
.h33{height:42.978514pt;}
.h97{height:42.978595pt;}
.h35{height:42.978676pt;}
.h3e{height:42.979165pt;}
.h72{height:42.979327pt;}
.h6c{height:43.172727pt;}
.h6e{height:43.172890pt;}
.h7d{height:43.217934pt;}
.h7{height:43.600260pt;}
.h58{height:43.656076pt;}
.h6{height:43.718750pt;}
.h15{height:43.887581pt;}
.h18{height:44.271479pt;}
.h9c{height:44.834667pt;}
.h49{height:45.378090pt;}
.h60{height:45.814524pt;}
.h67{height:45.862538pt;}
.h59{height:45.929333pt;}
.h70{height:46.535581pt;}
.h9{height:47.472000pt;}
.ha{height:47.539564pt;}
.he{height:47.630101pt;}
.h1a{height:47.635515pt;}
.hb{height:47.640767pt;}
.h17{height:47.640930pt;}
.hd{height:47.646101pt;}
.h42{height:47.646141pt;}
.h2e{height:47.646264pt;}
.hc{height:47.651434pt;}
.h16{height:47.651922pt;}
.h37{height:47.656767pt;}
.h26{height:48.096000pt;}
.h2b{height:49.152000pt;}
.h6b{height:50.178709pt;}
.h4{height:50.755208pt;}
.h5f{height:55.189993pt;}
.h78{height:56.546323pt;}
.h56{height:62.086587pt;}
.h28{height:65.517102pt;}
.h4d{height:67.294325pt;}
.h51{height:68.690770pt;}
.h12{height:69.046875pt;}
.h55{height:70.274266pt;}
.h77{height:78.000424pt;}
.h69{height:79.506085pt;}
.h4e{height:99.456543pt;}
.h5{height:99.734375pt;}
.h8b{height:102.604419pt;}
.h89{height:102.625911pt;}
.h29{height:124.178670pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w22{width:4.800000pt;}
.w21{width:5.053333pt;}
.w3c{width:5.786667pt;}
.w1c{width:5.921333pt;}
.w1f{width:6.305333pt;}
.w1e{width:6.306667pt;}
.wa{width:6.386667pt;}
.w19{width:7.013333pt;}
.w59{width:7.120000pt;}
.w3d{width:7.253333pt;}
.w16{width:7.254667pt;}
.w5a{width:7.520000pt;}
.w58{width:7.626666pt;}
.w23{width:7.758666pt;}
.w14{width:7.760000pt;}
.w1d{width:8.240000pt;}
.w2{width:8.986666pt;}
.w36{width:9.146667pt;}
.w37{width:9.653333pt;}
.w3a{width:9.813333pt;}
.w40{width:9.973333pt;}
.w55{width:10.493333pt;}
.w3f{width:13.145333pt;}
.w41{width:13.146666pt;}
.w46{width:13.385333pt;}
.w5{width:13.468000pt;}
.w47{width:13.893333pt;}
.w57{width:16.226667pt;}
.w5b{width:16.240000pt;}
.w42{width:16.385333pt;}
.w4f{width:16.386667pt;}
.w3b{width:16.426666pt;}
.wd{width:16.625333pt;}
.w56{width:17.040000pt;}
.w52{width:19.254667pt;}
.w53{width:19.546666pt;}
.w8{width:20.093333pt;}
.w39{width:20.453333pt;}
.w11{width:20.852000pt;}
.w31{width:20.853333pt;}
.w3{width:21.905333pt;}
.w24{width:23.026667pt;}
.wb{width:23.093333pt;}
.w17{width:24.600000pt;}
.w1a{width:24.811999pt;}
.w25{width:24.813333pt;}
.we{width:26.160000pt;}
.w2e{width:27.959999pt;}
.w4{width:30.161333pt;}
.w54{width:31.560000pt;}
.w4d{width:32.026667pt;}
.w27{width:36.973333pt;}
.w1b{width:37.680000pt;}
.w7{width:42.613332pt;}
.w20{width:43.053333pt;}
.w5e{width:46.760000pt;}
.w5d{width:48.161331pt;}
.w18{width:48.786667pt;}
.w13{width:49.266667pt;}
.w15{width:50.760000pt;}
.wc{width:56.466665pt;}
.w2d{width:57.266667pt;}
.w51{width:58.960002pt;}
.w12{width:59.120000pt;}
.w9{width:59.240000pt;}
.w6{width:61.559998pt;}
.w5c{width:63.041331pt;}
.w50{width:66.053333pt;}
.w44{width:73.946665pt;}
.w28{width:82.799998pt;}
.w2a{width:84.413335pt;}
.w48{width:94.854665pt;}
.w49{width:95.373332pt;}
.w4a{width:99.013336pt;}
.w4b{width:99.066671pt;}
.w43{width:101.308004pt;}
.w4c{width:117.093333pt;}
.w26{width:120.506663pt;}
.w32{width:126.773336pt;}
.w45{width:129.333333pt;}
.w33{width:130.786662pt;}
.w38{width:153.319997pt;}
.w29{width:166.826670pt;}
.w2c{width:168.426666pt;}
.w5f{width:189.453328pt;}
.wf{width:218.613342pt;}
.w3e{width:227.320007pt;}
.w35{width:232.454671pt;}
.w34{width:242.681335pt;}
.w30{width:292.893331pt;}
.w2f{width:302.133341pt;}
.w2b{width:319.573324pt;}
.w10{width:480.000000pt;}
.w4e{width:503.690674pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x13{left:-0.911458pt;}
.x0{left:0.000000pt;}
.x19{left:1.700928pt;}
.xc{left:6.425200pt;}
.x98{left:8.016683pt;}
.xce{left:10.460938pt;}
.xd4{left:16.436279pt;}
.x27{left:19.177063pt;}
.x83{left:21.639343pt;}
.xeb{left:23.629598pt;}
.x85{left:31.539327pt;}
.x9c{left:33.912292pt;}
.x9b{left:37.380554pt;}
.x5f{left:44.527873pt;}
.x75{left:52.315308pt;}
.x64{left:53.787313pt;}
.x3{left:54.803202pt;}
.xcf{left:56.660929pt;}
.xaf{left:58.603475pt;}
.x57{left:65.310913pt;}
.xc0{left:67.638936pt;}
.xec{left:69.850667pt;}
.x9e{left:71.028422pt;}
.x58{left:75.450928pt;}
.x78{left:79.595313pt;}
.x77{left:80.599202pt;}
.x87{left:86.415344pt;}
.x5a{left:92.358765pt;}
.xb4{left:93.583069pt;}
.xc1{left:95.286926pt;}
.xac{left:100.279704pt;}
.xaa{left:101.287435pt;}
.xb1{left:110.695211pt;}
.x67{left:113.315491pt;}
.xa0{left:114.528422pt;}
.x8a{left:116.475321pt;}
.xb6{left:118.915344pt;}
.xc3{left:122.334798pt;}
.xb{left:125.685069pt;}
.x7a{left:128.899740pt;}
.xd0{left:130.364950pt;}
.x8c{left:133.551331pt;}
.xd1{left:140.264933pt;}
.xb8{left:144.463318pt;}
.xc5{left:147.870667pt;}
.xee{left:152.144287pt;}
.xda{left:163.987325pt;}
.x7c{left:165.019613pt;}
.xef{left:166.281453pt;}
.xa2{left:174.144674pt;}
.x8f{left:184.107076pt;}
.x91{left:194.007060pt;}
.x6f{left:195.179342pt;}
.x6e{left:200.711202pt;}
.xba{left:203.083069pt;}
.x6d{left:204.730937pt;}
.x5{left:207.874003pt;}
.xbd{left:212.606669pt;}
.x4b{left:213.725728pt;}
.x35{left:215.678792pt;}
.xd6{left:217.741862pt;}
.x102{left:219.182943pt;}
.xe9{left:221.539998pt;}
.x6{left:223.874650pt;}
.xd{left:225.448792pt;}
.x101{left:228.289591pt;}
.xc7{left:229.362935pt;}
.xea{left:230.759867pt;}
.xae{left:236.932658pt;}
.xbe{left:240.561340pt;}
.x94{left:248.919088pt;}
.x2f{left:251.082662pt;}
.xdd{left:253.145325pt;}
.x30{left:258.871460pt;}
.x1a{left:263.354675pt;}
.xde{left:266.346008pt;}
.xbf{left:267.261332pt;}
.x34{left:268.197327pt;}
.x5d{left:270.129333pt;}
.x100{left:271.810669pt;}
.x1e{left:272.906657pt;}
.x4c{left:275.626668pt;}
.x17{left:276.822673pt;}
.xa6{left:279.329325pt;}
.x4d{left:280.357992pt;}
.xb0{left:283.636658pt;}
.x4e{left:285.840007pt;}
.x38{left:290.733337pt;}
.x36{left:292.749329pt;}
.x4f{left:294.011861pt;}
.x1f{left:296.152262pt;}
.x52{left:297.594666pt;}
.xa7{left:300.122009pt;}
.xf1{left:301.953735pt;}
.xed{left:303.296143pt;}
.x5e{left:305.981059pt;}
.x43{left:308.693339pt;}
.xd9{left:309.670003pt;}
.x72{left:312.047221pt;}
.x65{left:313.599996pt;}
.x71{left:315.347351pt;}
.x44{left:316.987325pt;}
.x18{left:319.463074pt;}
.x53{left:320.647990pt;}
.x1b{left:322.765462pt;}
.xc2{left:324.057597pt;}
.xb2{left:325.000793pt;}
.x5b{left:326.395996pt;}
.xa5{left:327.711995pt;}
.x20{left:329.287598pt;}
.xd7{left:330.423197pt;}
.x21{left:332.343994pt;}
.x99{left:334.139200pt;}
.x22{left:338.790405pt;}
.x54{left:343.693319pt;}
.x84{left:347.953857pt;}
.x9a{left:349.919474pt;}
.x60{left:353.047485pt;}
.xc4{left:354.333049pt;}
.xb3{left:357.797729pt;}
.x3f{left:358.791992pt;}
.x5c{left:363.395874pt;}
.xf6{left:366.786947pt;}
.x55{left:368.532918pt;}
.x66{left:373.731200pt;}
.x86{left:381.074259pt;}
.xf4{left:383.214803pt;}
.xff{left:386.590658pt;}
.x9d{left:388.655070pt;}
.xcc{left:390.420003pt;}
.xd5{left:392.118530pt;}
.x50{left:393.557332pt;}
.xcd{left:394.737183pt;}
.x40{left:396.571981pt;}
.x51{left:401.370931pt;}
.xc6{left:403.173340pt;}
.x10{left:405.117350pt;}
.x9f{left:407.483195pt;}
.x33{left:411.933879pt;}
.xf7{left:414.254517pt;}
.x74{left:415.676514pt;}
.x88{left:417.662150pt;}
.x23{left:419.754679pt;}
.x68{left:421.587484pt;}
.x89{left:423.340427pt;}
.x45{left:425.246257pt;}
.x26{left:426.487183pt;}
.x63{left:431.178670pt;}
.x69{left:432.951457pt;}
.x11{left:435.228516pt;}
.x1c{left:437.069336pt;}
.xe3{left:438.788005pt;}
.xd8{left:439.981200pt;}
.x76{left:441.620280pt;}
.xb5{left:442.613322pt;}
.x1d{left:443.626668pt;}
.xc8{left:445.100667pt;}
.xa1{left:446.974935pt;}
.xfb{left:448.071615pt;}
.x8b{left:449.965861pt;}
.x28{left:452.538656pt;}
.xf0{left:454.137980pt;}
.xfc{left:460.189331pt;}
.x6a{left:464.611711pt;}
.xb7{left:468.161743pt;}
.xfd{left:470.102417pt;}
.xe8{left:471.904663pt;}
.x29{left:473.330933pt;}
.x103{left:477.469076pt;}
.x8d{left:482.017863pt;}
.x79{left:485.108927pt;}
.x6b{left:487.287191pt;}
.x8e{left:489.258236pt;}
.x2b{left:490.225342pt;}
.x3b{left:493.239990pt;}
.x6c{left:495.198354pt;}
.xdf{left:501.158000pt;}
.x7b{left:504.165080pt;}
.xa3{left:505.091187pt;}
.x61{left:506.829346pt;}
.x90{left:510.421590pt;}
.xb9{left:515.297607pt;}
.xc9{left:516.258667pt;}
.x3c{left:518.150391pt;}
.xe1{left:519.704386pt;}
.x4{left:521.612549pt;}
.xca{left:525.445882pt;}
.x9{left:530.386678pt;}
.xe7{left:531.818115pt;}
.xe4{left:533.578817pt;}
.xf2{left:535.399048pt;}
.x7d{left:537.745728pt;}
.xa{left:539.427327pt;}
.x92{left:541.874146pt;}
.xd2{left:543.794393pt;}
.xbb{left:545.621582pt;}
.xe0{left:548.062663pt;}
.x2c{left:549.333618pt;}
.x93{left:551.413737pt;}
.x31{left:552.508016pt;}
.xe2{left:555.936117pt;}
.xcb{left:558.257080pt;}
.x7e{left:565.241333pt;}
.xf3{left:568.017456pt;}
.xbc{left:573.494141pt;}
.xe{left:575.560018pt;}
.x95{left:580.165853pt;}
.xf5{left:582.748006pt;}
.xa4{left:584.447184pt;}
.x96{left:585.844700pt;}
.x37{left:589.934652pt;}
.xa8{left:593.162679pt;}
.xf{left:597.396281pt;}
.xa9{left:599.326253pt;}
.x32{left:603.295085pt;}
.x56{left:604.696004pt;}
.x70{left:606.042348pt;}
.x97{left:612.505981pt;}
.x81{left:616.341349pt;}
.x24{left:619.361328pt;}
.xdb{left:620.286662pt;}
.x15{left:622.531982pt;}
.x73{left:625.430949pt;}
.x3d{left:626.657349pt;}
.x3e{left:633.767985pt;}
.xe5{left:639.883993pt;}
.x82{left:644.301351pt;}
.x25{left:645.575724pt;}
.x46{left:647.594686pt;}
.xf8{left:649.278402pt;}
.x47{left:653.955200pt;}
.xdc{left:656.094686pt;}
.xfe{left:658.614665pt;}
.x7{left:660.709351pt;}
.xfa{left:664.032674pt;}
.x48{left:666.709351pt;}
.x8{left:669.658285pt;}
.x62{left:673.774658pt;}
.x2d{left:675.685343pt;}
.x12{left:677.650675pt;}
.x39{left:682.686686pt;}
.x16{left:684.128418pt;}
.xd3{left:687.591960pt;}
.x3a{left:689.722819pt;}
.x14{left:691.068115pt;}
.x59{left:693.730794pt;}
.xf9{left:697.921224pt;}
.x41{left:699.798665pt;}
.xab{left:700.882568pt;}
.x7f{left:704.635986pt;}
.x42{left:705.758138pt;}
.x2a{left:708.791829pt;}
.x2{left:710.134766pt;}
.x80{left:712.396566pt;}
.xad{left:719.875570pt;}
.x49{left:722.569336pt;}
.x2e{left:724.979492pt;}
.x4a{left:727.676921pt;}
.x1{left:733.334391pt;}
.xe6{left:738.897624pt;}
}


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