
/* 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_21561167639f.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight: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_314a2d2f1398.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight: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_6f685e304542.woff")format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_20e76fb7f3ea.woff")format("woff");}.ff7{font-family:ff7;line-height:1.226000;font-style:normal;font-weight: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_6056bb30f785.woff")format("woff");}.ff8{font-family:ff8;line-height:0.677000;font-style:normal;font-weight: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_03a551add276.woff")format("woff");}.ff9{font-family:ff9;line-height:0.894000;font-style:normal;font-weight: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_c2d438028cbe.woff")format("woff");}.ffa{font-family:ffa;line-height:1.014160;font-style:normal;font-weight: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_4419d3e3104e.woff")format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight: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_20ac36485916.woff")format("woff");}.ffc{font-family:ffc;line-height:1.215332;font-style:normal;font-weight: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_fb50b61a8e0c.woff")format("woff");}.ffd{font-family:ffd;line-height:1.215332;font-style:normal;font-weight: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_f2bd582a4689.woff")format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight: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_ef0b6e236b0b.woff")format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight: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_2c478371426e.woff")format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight: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_8e783c617798.woff")format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight: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_c2d438028cbe.woff")format("woff");}.ff12{font-family:ff12;line-height:1.014160;font-style:normal;font-weight: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_f6023be8555e.woff")format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight: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_12b184f32334.woff")format("woff");}.ff14{font-family:ff14;line-height:1.215332;font-style:normal;font-weight: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_d8fcb4f6ae25.woff")format("woff");}.ff15{font-family:ff15;line-height:1.215332;font-style:normal;font-weight: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_9aa98196b879.woff")format("woff");}.ff16{font-family:ff16;line-height:0.708008;font-style:normal;font-weight: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_3b06c16ddb66.woff")format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight: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_1455bae499a4.woff")format("woff");}.ff18{font-family:ff18;line-height:0.910156;font-style:normal;font-weight: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_dfd5275e485a.woff")format("woff");}.ff19{font-family:ff19;line-height:0.941406;font-style:normal;font-weight: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_5dd1e1490e80.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight: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_c2d438028cbe.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.014160;font-style:normal;font-weight: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_f6023be8555e.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight: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_be172c6229a4.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.215332;font-style:normal;font-weight: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_f0d03ad7be99.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.215332;font-style:normal;font-weight: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_437ddc02a912.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight: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_1455bae499a4.woff")format("woff");}.ff20{font-family:ff20;line-height:0.910156;font-style:normal;font-weight: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_dfd5275e485a.woff")format("woff");}.ff21{font-family:ff21;line-height:0.941406;font-style:normal;font-weight: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_4dc9b7883f2b.woff")format("woff");}.ff22{font-family:ff22;line-height:1.432129;font-style:normal;font-weight: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_c2d438028cbe.woff")format("woff");}.ff23{font-family:ff23;line-height:1.014160;font-style:normal;font-weight: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_3bb965624277.woff")format("woff");}.ff24{font-family:ff24;line-height:1.000000;font-style:normal;font-weight: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_135471e10b33.woff")format("woff");}.ff25{font-family:ff25;line-height:1.215332;font-style:normal;font-weight: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_0ceac4b2c743.woff")format("woff");}.ff26{font-family:ff26;line-height:1.215332;font-style:normal;font-weight: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_cecb184d9889.woff")format("woff");}.ff27{font-family:ff27;line-height:1.432129;font-style:normal;font-weight: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_4318397f9f86.woff")format("woff");}.ff28{font-family:ff28;line-height:0.488000;font-style:normal;font-weight: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_b84bb01997b6.woff")format("woff");}.ff29{font-family:ff29;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2c{transform:matrix(0.000000,-0.248638,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248638,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248638,0.250000,0.000000,0,0);}
.m34{transform:matrix(0.000000,-0.249396,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249396,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249396,0.250000,0.000000,0,0);}
.m3e{transform:matrix(0.000000,-0.249504,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249504,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249504,0.250000,0.000000,0,0);}
.m3a{transform:matrix(0.000000,-0.249544,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249544,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249544,0.250000,0.000000,0,0);}
.m40{transform:matrix(0.000000,-0.249578,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249578,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249578,0.250000,0.000000,0,0);}
.m38{transform:matrix(0.000000,-0.249607,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249607,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249607,0.250000,0.000000,0,0);}
.m31{transform:matrix(0.000000,-0.249652,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249652,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249652,0.250000,0.000000,0,0);}
.m43{transform:matrix(0.000000,-0.249673,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249673,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249673,0.250000,0.000000,0,0);}
.m36{transform:matrix(0.000000,-0.249698,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249698,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249698,0.250000,0.000000,0,0);}
.m3c{transform:matrix(0.000000,-0.251317,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251317,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251317,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.248879,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248879,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248879,0.250000,0.000000,0,0);}
.m28{transform:matrix(0.000000,-0.249267,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249267,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249267,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250328,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251126,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251369,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.vf{vertical-align:-29.478194px;}
.ve{vertical-align:-22.250004px;}
.v10{vertical-align:-19.947956px;}
.v2{vertical-align:-17.358000px;}
.v7{vertical-align:-14.296077px;}
.v8{vertical-align:-12.591040px;}
.v9{vertical-align:-11.541787px;}
.v3{vertical-align:-10.488000px;}
.v4{vertical-align:-9.443280px;}
.v5{vertical-align:-7.869400px;}
.vb{vertical-align:-5.441583px;}
.vc{vertical-align:-3.174257px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:3.707247px;}
.v12{vertical-align:7.875530px;}
.v11{vertical-align:9.526851px;}
.va{vertical-align:10.883165px;}
.v13{vertical-align:13.796470px;}
.v14{vertical-align:18.619451px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:30.865536px;}
.ls7a{letter-spacing:-5.387866px;}
.ls7b{letter-spacing:-5.289006px;}
.ls7e{letter-spacing:-1.730049px;}
.ls7f{letter-spacing:-1.660847px;}
.ls76{letter-spacing:-1.102288px;}
.ls77{letter-spacing:-1.028143px;}
.ls78{letter-spacing:-0.978713px;}
.ls79{letter-spacing:-0.904568px;}
.ls7d{letter-spacing:-0.687076px;}
.ls3c{letter-spacing:-0.656910px;}
.ls3f{letter-spacing:-0.558090px;}
.ls6c{letter-spacing:-0.503820px;}
.ls70{letter-spacing:-0.499243px;}
.ls37{letter-spacing:-0.486000px;}
.ls75{letter-spacing:-0.375173px;}
.ls47{letter-spacing:-0.300799px;}
.ls49{letter-spacing:-0.256460px;}
.ls39{letter-spacing:-0.243000px;}
.ls1c{letter-spacing:-0.222529px;}
.ls46{letter-spacing:-0.220183px;}
.ls43{letter-spacing:-0.217159px;}
.ls1e{letter-spacing:-0.196298px;}
.ls19{letter-spacing:-0.191052px;}
.ls15{letter-spacing:-0.184494px;}
.ls1b{letter-spacing:-0.175313px;}
.ls3b{letter-spacing:-0.170910px;}
.ls42{letter-spacing:-0.152163px;}
.ls48{letter-spacing:-0.127978px;}
.ls36{letter-spacing:-0.121500px;}
.ls4d{letter-spacing:-0.120924px;}
.ls83{letter-spacing:-0.117000px;}
.ls12{letter-spacing:-0.112500px;}
.ls1f{letter-spacing:-0.111046px;}
.ls1d{letter-spacing:-0.104925px;}
.ls7c{letter-spacing:-0.100837px;}
.ls3e{letter-spacing:-0.093960px;}
.ls71{letter-spacing:-0.083537px;}
.ls16{letter-spacing:-0.083503px;}
.ls3d{letter-spacing:-0.071928px;}
.ls14{letter-spacing:-0.071262px;}
.ls4c{letter-spacing:-0.060462px;}
.ls99{letter-spacing:-0.052363px;}
.ls8d{letter-spacing:-0.052165px;}
.ls93{letter-spacing:-0.051967px;}
.ls9e{letter-spacing:-0.051926px;}
.ls88{letter-spacing:-0.047983px;}
.ls96{letter-spacing:-0.041142px;}
.ls85{letter-spacing:-0.041112px;}
.ls86{letter-spacing:-0.041019px;}
.ls84{letter-spacing:-0.040987px;}
.ls87{letter-spacing:-0.040955px;}
.ls90{letter-spacing:-0.040831px;}
.ls9c{letter-spacing:-0.040799px;}
.ls4b{letter-spacing:-0.028117px;}
.ls40{letter-spacing:-0.028074px;}
.ls6f{letter-spacing:-0.027635px;}
.ls6e{letter-spacing:-0.024300px;}
.ls9b{letter-spacing:-0.020571px;}
.ls8f{letter-spacing:-0.020493px;}
.ls95{letter-spacing:-0.020415px;}
.lsa0{letter-spacing:-0.020400px;}
.ls6b{letter-spacing:-0.017982px;}
.ls4a{letter-spacing:-0.014212px;}
.ls17{letter-spacing:-0.012066px;}
.ls18{letter-spacing:-0.011017px;}
.ls97{letter-spacing:-0.002044px;}
.ls98{letter-spacing:-0.002040px;}
.ls89{letter-spacing:-0.002036px;}
.ls8a{letter-spacing:-0.002034px;}
.ls8c{letter-spacing:-0.002032px;}
.ls91{letter-spacing:-0.002028px;}
.ls9d{letter-spacing:-0.002026px;}
.ls92{letter-spacing:-0.002025px;}
.ls8b{letter-spacing:-0.002023px;}
.ls8{letter-spacing:0.000000px;}
.lsa3{letter-spacing:0.001125px;}
.lsaa{letter-spacing:0.001155px;}
.lsb4{letter-spacing:0.002053px;}
.lsa9{letter-spacing:0.002573px;}
.lsa4{letter-spacing:0.003489px;}
.lsb7{letter-spacing:0.003646px;}
.lsa2{letter-spacing:0.004217px;}
.lsad{letter-spacing:0.004376px;}
.lsae{letter-spacing:0.004800px;}
.ls10{letter-spacing:0.004934px;}
.ls28{letter-spacing:0.008465px;}
.lsd{letter-spacing:0.011017px;}
.ls41{letter-spacing:0.023258px;}
.lse{letter-spacing:0.044069px;}
.ls20{letter-spacing:0.044156px;}
.ls9f{letter-spacing:0.060861px;}
.ls94{letter-spacing:0.060909px;}
.ls8e{letter-spacing:0.061141px;}
.ls9a{letter-spacing:0.061373px;}
.ls6a{letter-spacing:0.071928px;}
.ls59{letter-spacing:0.086502px;}
.lsa1{letter-spacing:0.095965px;}
.ls2c{letter-spacing:0.101818px;}
.lsc{letter-spacing:0.104925px;}
.ls2e{letter-spacing:0.120924px;}
.ls6d{letter-spacing:0.121500px;}
.ls45{letter-spacing:0.130497px;}
.lsb{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.157388px;}
.ls81{letter-spacing:0.163800px;}
.ls22{letter-spacing:0.170100px;}
.ls25{letter-spacing:0.181386px;}
.ls82{letter-spacing:0.187200px;}
.ls38{letter-spacing:0.188730px;}
.ls52{letter-spacing:0.189054px;}
.ls23{letter-spacing:0.194400px;}
.ls2a{letter-spacing:0.195897px;}
.ls44{letter-spacing:0.204563px;}
.ls24{letter-spacing:0.208574px;}
.lsa{letter-spacing:0.225000px;}
.ls80{letter-spacing:0.234000px;}
.ls58{letter-spacing:0.237758px;}
.ls2f{letter-spacing:0.241848px;}
.ls21{letter-spacing:0.243000px;}
.ls13{letter-spacing:0.254881px;}
.ls29{letter-spacing:0.261196px;}
.ls5b{letter-spacing:0.316846px;}
.ls51{letter-spacing:0.356400px;}
.ls57{letter-spacing:0.440421px;}
.ls66{letter-spacing:0.541011px;}
.ls33{letter-spacing:0.648088px;}
.ls3a{letter-spacing:0.674730px;}
.ls72{letter-spacing:0.756278px;}
.ls73{letter-spacing:0.879853px;}
.ls53{letter-spacing:1.131946px;}
.ls54{letter-spacing:1.255521px;}
.ls9{letter-spacing:1.275394px;}
.ls74{letter-spacing:1.571873px;}
.ls67{letter-spacing:1.686056px;}
.ls5e{letter-spacing:1.719915px;}
.ls65{letter-spacing:1.754764px;}
.ls69{letter-spacing:1.772682px;}
.ls63{letter-spacing:1.791836px;}
.ls68{letter-spacing:1.835087px;}
.ls61{letter-spacing:1.853624px;}
.ls3{letter-spacing:1.861130px;}
.lsf{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.989200px;}
.lsa6{letter-spacing:3.553200px;}
.ls35{letter-spacing:3.559200px;}
.lsa5{letter-spacing:3.733200px;}
.ls32{letter-spacing:5.925279px;}
.ls27{letter-spacing:10.061365px;}
.ls26{letter-spacing:10.162135px;}
.ls5f{letter-spacing:10.622993px;}
.ls55{letter-spacing:11.038204px;}
.ls56{letter-spacing:11.137064px;}
.ls7{letter-spacing:11.954850px;}
.lsac{letter-spacing:13.127951px;}
.lsb6{letter-spacing:13.235385px;}
.lsab{letter-spacing:13.448400px;}
.lsa8{letter-spacing:13.454400px;}
.lsb2{letter-spacing:13.471612px;}
.lsb1{letter-spacing:13.547391px;}
.lsaf{letter-spacing:13.583566px;}
.lsb3{letter-spacing:13.712150px;}
.lsa7{letter-spacing:13.819580px;}
.ls34{letter-spacing:14.944362px;}
.ls50{letter-spacing:15.183002px;}
.ls4f{letter-spacing:15.663483px;}
.ls4e{letter-spacing:15.688200px;}
.ls11{letter-spacing:16.434600px;}
.ls6{letter-spacing:16.440600px;}
.lsb5{letter-spacing:16.491576px;}
.ls30{letter-spacing:17.381624px;}
.ls2{letter-spacing:17.935200px;}
.ls31{letter-spacing:17.986245px;}
.ls5d{letter-spacing:17.988057px;}
.ls5a{letter-spacing:18.037487px;}
.ls5c{letter-spacing:18.136347px;}
.lsb0{letter-spacing:20.826871px;}
.ls0{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls2b{letter-spacing:117.456763px;}
.ls2d{letter-spacing:117.557533px;}
.ls60{letter-spacing:122.544039px;}
.ls62{letter-spacing:122.633260px;}
.ls64{letter-spacing:122.642899px;}
.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;}
}
.ws58{word-spacing:-75.150000px;}
.ws5a{word-spacing:-67.500000px;}
.ws90{word-spacing:-35.309825px;}
.wsab{word-spacing:-34.712684px;}
.ws76{word-spacing:-20.533500px;}
.ws7b{word-spacing:-20.479230px;}
.ws73{word-spacing:-20.290500px;}
.ws9d{word-spacing:-20.272518px;}
.ws7c{word-spacing:-20.218572px;}
.ws7d{word-spacing:-20.196540px;}
.ws79{word-spacing:-20.119590px;}
.ws78{word-spacing:-20.047500px;}
.ws9e{word-spacing:-19.786680px;}
.ws7e{word-spacing:-19.732410px;}
.ws7a{word-spacing:-19.633590px;}
.wsce{word-spacing:-19.539000px;}
.ws74{word-spacing:-18.225000px;}
.ws9f{word-spacing:-18.200700px;}
.wsa2{word-spacing:-17.779710px;}
.wscc{word-spacing:-17.550000px;}
.wsac{word-spacing:-17.404042px;}
.wsa9{word-spacing:-17.280467px;}
.ws8f{word-spacing:-17.050292px;}
.wsa8{word-spacing:-16.964610px;}
.ws5b{word-spacing:-16.875000px;}
.wsa7{word-spacing:-16.841035px;}
.ws81{word-spacing:-16.808444px;}
.ws91{word-spacing:-16.747982px;}
.wsa3{word-spacing:-16.524189px;}
.ws72{word-spacing:-16.402500px;}
.wscb{word-spacing:-15.795000px;}
.ws89{word-spacing:-15.463769px;}
.ws57{word-spacing:-15.187500px;}
.ws70{word-spacing:-14.943900px;}
.ws86{word-spacing:-14.900746px;}
.ws84{word-spacing:-14.830127px;}
.wsb9{word-spacing:-14.806497px;}
.ws69{word-spacing:-14.584621px;}
.ws1f{word-spacing:-13.449600px;}
.ws68{word-spacing:-13.417852px;}
.wsd2{word-spacing:-13.339156px;}
.ws6c{word-spacing:-13.306806px;}
.ws77{word-spacing:-12.150000px;}
.ws2f{word-spacing:-11.955150px;}
.wscf{word-spacing:-11.700000px;}
.wsaa{word-spacing:-11.371115px;}
.ws2{word-spacing:-11.357400px;}
.ws92{word-spacing:-11.261658px;}
.ws59{word-spacing:-11.250000px;}
.ws75{word-spacing:-11.178000px;}
.ws5d{word-spacing:-10.938466px;}
.wscd{word-spacing:-10.764000px;}
.ws7{word-spacing:-10.460700px;}
.ws5c{word-spacing:-10.350000px;}
.ws65{word-spacing:-10.063389px;}
.ws6a{word-spacing:-9.575399px;}
.ws82{word-spacing:-9.565355px;}
.wsa4{word-spacing:-9.226349px;}
.ws5e{word-spacing:-9.188312px;}
.ws66{word-spacing:-9.177294px;}
.ws95{word-spacing:-8.525146px;}
.wsba{word-spacing:-8.279271px;}
.wsbd{word-spacing:-8.244917px;}
.ws61{word-spacing:-8.167388px;}
.ws85{word-spacing:-7.264110px;}
.wsb4{word-spacing:-7.248657px;}
.ws88{word-spacing:-7.223661px;}
.wsb0{word-spacing:-7.214303px;}
.ws87{word-spacing:-7.093163px;}
.ws83{word-spacing:-6.555293px;}
.wsd4{word-spacing:-6.518435px;}
.wsd7{word-spacing:-6.503564px;}
.wsda{word-spacing:-6.501530px;}
.wsd1{word-spacing:-6.498508px;}
.wsd9{word-spacing:-6.493452px;}
.wse5{word-spacing:-6.470831px;}
.wsdc{word-spacing:-6.446343px;}
.wse1{word-spacing:-6.421856px;}
.wse9{word-spacing:-6.416841px;}
.wsb5{word-spacing:-6.309734px;}
.wsb1{word-spacing:-6.269943px;}
.wsa5{word-spacing:-6.218042px;}
.wsae{word-spacing:-6.186160px;}
.wsb3{word-spacing:-6.146368px;}
.ws5f{word-spacing:-6.125541px;}
.ws67{word-spacing:-5.941047px;}
.wse6{word-spacing:-4.493430px;}
.wsdd{word-spacing:-4.476426px;}
.wse2{word-spacing:-4.459422px;}
.wsea{word-spacing:-4.455939px;}
.wse7{word-spacing:-4.432057px;}
.wsde{word-spacing:-4.415285px;}
.wse3{word-spacing:-4.398513px;}
.wseb{word-spacing:-4.395077px;}
.wsec{word-spacing:-4.393054px;}
.wsb2{word-spacing:-4.156813px;}
.wsaf{word-spacing:-4.122459px;}
.wsad{word-spacing:-2.952328px;}
.ws4c{word-spacing:-2.929004px;}
.wsa6{word-spacing:-2.768696px;}
.wsf0{word-spacing:-2.749678px;}
.wsbb{word-spacing:-2.681575px;}
.wsbc{word-spacing:-2.616946px;}
.ws27{word-spacing:-2.570351px;}
.ws42{word-spacing:-2.510575px;}
.ws56{word-spacing:-2.450800px;}
.ws4f{word-spacing:-2.092146px;}
.wsc1{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.ws116{word-spacing:-1.882944px;}
.ws93{word-spacing:-1.874323px;}
.ws10d{word-spacing:-1.775347px;}
.wsc4{word-spacing:-1.494390px;}
.ws55{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.ws102{word-spacing:-1.135736px;}
.ws51{word-spacing:-1.016185px;}
.ws114{word-spacing:-0.914573px;}
.ws100{word-spacing:-0.896634px;}
.ws9a{word-spacing:-0.717307px;}
.ws31{word-spacing:-0.597756px;}
.ws32{word-spacing:-0.537980px;}
.ws10b{word-spacing:-0.484186px;}
.ws49{word-spacing:-0.418429px;}
.ws3d{word-spacing:-0.358654px;}
.ws103{word-spacing:-0.322790px;}
.ws2b{word-spacing:-0.298878px;}
.ws1b{word-spacing:-0.268992px;}
.ws25{word-spacing:-0.239102px;}
.ws16{word-spacing:-0.215194px;}
.ws26{word-spacing:-0.179327px;}
.ws97{word-spacing:-0.161395px;}
.ws29{word-spacing:-0.119551px;}
.ws96{word-spacing:-0.107597px;}
.ws28{word-spacing:-0.059776px;}
.ws17{word-spacing:-0.053798px;}
.ws30{word-spacing:-0.047821px;}
.ws8{word-spacing:-0.041843px;}
.ws1{word-spacing:-0.004340px;}
.ws0{word-spacing:0.000000px;}
.ws63{word-spacing:0.047304px;}
.wsbe{word-spacing:0.053798px;}
.ws2d{word-spacing:0.059776px;}
.ws1a{word-spacing:0.107597px;}
.ws2c{word-spacing:0.119551px;}
.ws18{word-spacing:0.161395px;}
.ws3c{word-spacing:0.179327px;}
.ws9{word-spacing:0.209214px;}
.ws1d{word-spacing:0.215194px;}
.ws36{word-spacing:0.239102px;}
.ws11c{word-spacing:0.268992px;}
.wsb{word-spacing:0.292900px;}
.ws45{word-spacing:0.298878px;}
.ws19{word-spacing:0.322790px;}
.ws44{word-spacing:0.358654px;}
.wsc8{word-spacing:0.418429px;}
.ws43{word-spacing:0.478205px;}
.ws10a{word-spacing:0.484186px;}
.wsf6{word-spacing:0.537980px;}
.ws3e{word-spacing:0.597756px;}
.ws8e{word-spacing:0.604620px;}
.ws1c{word-spacing:0.645581px;}
.ws9c{word-spacing:0.657532px;}
.ws107{word-spacing:0.699379px;}
.ws46{word-spacing:0.836858px;}
.wsee{word-spacing:0.860774px;}
.wsed{word-spacing:1.129766px;}
.ws23{word-spacing:1.135736px;}
.ws24{word-spacing:1.195512px;}
.wsfc{word-spacing:1.255288px;}
.ws9b{word-spacing:1.374839px;}
.ws15{word-spacing:1.506355px;}
.wsc6{word-spacing:1.554166px;}
.ws6e{word-spacing:1.560154px;}
.ws33{word-spacing:1.673717px;}
.ws6f{word-spacing:1.721549px;}
.wsff{word-spacing:1.733492px;}
.wsbf{word-spacing:1.793268px;}
.ws6d{word-spacing:1.829146px;}
.wsc0{word-spacing:1.853044px;}
.ws41{word-spacing:1.912819px;}
.wsf8{word-spacing:1.972595px;}
.wsa{word-spacing:2.008454px;}
.wsc5{word-spacing:2.032370px;}
.ws3b{word-spacing:2.151922px;}
.wsf1{word-spacing:2.271473px;}
.ws12a{word-spacing:2.367130px;}
.ws52{word-spacing:2.510575px;}
.wsf7{word-spacing:2.570351px;}
.ws110{word-spacing:2.582323px;}
.ws101{word-spacing:2.630126px;}
.ws99{word-spacing:2.689902px;}
.ws3f{word-spacing:2.749678px;}
.ws48{word-spacing:2.809453px;}
.ws21{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.ws113{word-spacing:2.905114px;}
.ws4e{word-spacing:3.108331px;}
.ws2a{word-spacing:3.168107px;}
.ws121{word-spacing:3.174106px;}
.ws1e{word-spacing:3.219667px;}
.ws105{word-spacing:3.222576px;}
.ws111{word-spacing:3.224054px;}
.ws10e{word-spacing:3.227434px;}
.wsfb{word-spacing:3.227882px;}
.ws115{word-spacing:3.227904px;}
.wsca{word-spacing:3.287658px;}
.ws14{word-spacing:3.443098px;}
.ws94{word-spacing:3.460847px;}
.ws54{word-spacing:3.466985px;}
.ws20{word-spacing:3.586536px;}
.ws104{word-spacing:3.604493px;}
.ws35{word-spacing:3.646312px;}
.ws34{word-spacing:3.706087px;}
.ws112{word-spacing:3.712090px;}
.ws71{word-spacing:3.825638px;}
.ws3a{word-spacing:3.945190px;}
.ws4b{word-spacing:4.064741px;}
.wsc3{word-spacing:4.244068px;}
.wsef{word-spacing:4.363619px;}
.ws127{word-spacing:4.465267px;}
.ws4d{word-spacing:4.662497px;}
.wsf4{word-spacing:4.722272px;}
.wsf2{word-spacing:4.782048px;}
.ws120{word-spacing:4.949453px;}
.wsf5{word-spacing:5.080926px;}
.ws47{word-spacing:5.379804px;}
.wsc2{word-spacing:5.439580px;}
.ws4a{word-spacing:5.559131px;}
.ws98{word-spacing:5.678682px;}
.ws6b{word-spacing:5.702954px;}
.wsf9{word-spacing:5.858009px;}
.ws118{word-spacing:5.864026px;}
.wsfa{word-spacing:6.037336px;}
.ws11{word-spacing:6.067206px;}
.ws12{word-spacing:6.150892px;}
.wsfd{word-spacing:6.754643px;}
.wsfe{word-spacing:6.814418px;}
.ws50{word-spacing:6.874194px;}
.ws126{word-spacing:7.101389px;}
.ws39{word-spacing:7.113296px;}
.ws11d{word-spacing:7.155187px;}
.wsc7{word-spacing:7.232848px;}
.wsf3{word-spacing:7.292623px;}
.ws11a{word-spacing:7.370381px;}
.ws22{word-spacing:7.770828px;}
.ws40{word-spacing:7.890379px;}
.ws37{word-spacing:7.950155px;}
.ws38{word-spacing:8.009930px;}
.ws53{word-spacing:8.428360px;}
.wsc9{word-spacing:8.488135px;}
.wsf{word-spacing:8.661460px;}
.ws6{word-spacing:10.415902px;}
.ws2e{word-spacing:11.903773px;}
.ws124{word-spacing:13.073011px;}
.ws129{word-spacing:13.180608px;}
.ws123{word-spacing:13.385722px;}
.ws122{word-spacing:13.394736px;}
.ws106{word-spacing:13.395024px;}
.ws125{word-spacing:13.395187px;}
.ws109{word-spacing:13.395802px;}
.ws117{word-spacing:13.503398px;}
.ws64{word-spacing:15.446233px;}
.ws5{word-spacing:15.483541px;}
.wsc{word-spacing:16.142252px;}
.wsd{word-spacing:16.151321px;}
.ws12c{word-spacing:16.408512px;}
.ws128{word-spacing:16.615373px;}
.ws11f{word-spacing:16.618445px;}
.ws10f{word-spacing:16.620634px;}
.ws108{word-spacing:16.623706px;}
.ws10c{word-spacing:16.731302px;}
.ws11b{word-spacing:16.785101px;}
.ws11e{word-spacing:16.946496px;}
.wse{word-spacing:17.699504px;}
.ws119{word-spacing:19.259827px;}
.wse8{word-spacing:24.181205px;}
.wse0{word-spacing:24.200105px;}
.ws12b{word-spacing:24.209280px;}
.wse4{word-spacing:24.384660px;}
.ws10{word-spacing:27.448877px;}
.wsd8{word-spacing:34.178776px;}
.wsd0{word-spacing:34.205388px;}
.wsd5{word-spacing:34.232001px;}
.wsd3{word-spacing:34.310275px;}
.ws62{word-spacing:42.973220px;}
.wsdf{word-spacing:79.289139px;}
.wsdb{word-spacing:93.913762px;}
.wsa0{word-spacing:111.318279px;}
.ws7f{word-spacing:113.085255px;}
.ws8a{word-spacing:113.261626px;}
.ws60{word-spacing:135.601830px;}
.wsd6{word-spacing:143.594776px;}
.wsb6{word-spacing:353.741063px;}
.wsb8{word-spacing:355.817121px;}
.ws8b{word-spacing:358.630528px;}
.ws8d{word-spacing:360.696314px;}
.ws8c{word-spacing:385.747748px;}
.wsb7{word-spacing:396.518245px;}
.wsa1{word-spacing:1107.097035px;}
.ws80{word-spacing:1122.759733px;}
._27{margin-left:-764.088897px;}
._2b{margin-left:-758.008814px;}
._2a{margin-left:-554.596622px;}
._23{margin-left:-19.043948px;}
._22{margin-left:-14.676431px;}
._21{margin-left:-13.574715px;}
._1e{margin-left:-11.122248px;}
._1f{margin-left:-10.036927px;}
._20{margin-left:-8.962928px;}
._17{margin-left:-7.285056px;}
._9{margin-left:-6.197119px;}
._0{margin-left:-4.419054px;}
._6{margin-left:-2.990120px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._1{width:2.990120px;}
._1d{width:4.809600px;}
._26{width:5.828605px;}
._1c{width:6.838650px;}
._1b{width:8.642250px;}
._25{width:9.942384px;}
._a{width:11.094379px;}
._4{width:12.218832px;}
._7{width:13.420622px;}
._10{width:14.828586px;}
._b{width:15.870528px;}
._d{width:17.118194px;}
._e{width:18.291334px;}
._2e{width:19.427070px;}
._c{width:20.658586px;}
._18{width:21.690976px;}
._13{width:23.551586px;}
._16{width:24.747098px;}
._5{width:25.943736px;}
._f{width:28.453186px;}
._14{width:30.067127px;}
._2d{width:31.270206px;}
._8{width:32.637384px;}
._36{width:33.731597px;}
._35{width:34.786180px;}
._29{width:36.044687px;}
._15{width:40.348530px;}
._19{width:44.353495px;}
._33{width:88.767360px;}
._31{width:253.360248px;}
._30{width:258.518154px;}
._32{width:280.932659px;}
._28{width:412.804506px;}
._2c{width:415.200244px;}
._11{width:902.279081px;}
._34{width:2526.453000px;}
._12{width:2550.363000px;}
._1a{width:2673.273230px;}
._2f{width:2780.247806px;}
._24{width:2887.222382px;}
.fcf{color:rgb(47,137,203);}
.fc0{color:rgb(103,50,33);}
.fce{color:rgb(6,115,194);}
.fc3{color:rgb(8,117,183);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(64,64,64);}
.fc7{color:rgb(0,176,80);}
.fcd{color:rgb(255,153,0);}
.fca{color:rgb(89,89,89);}
.fc6{color:rgb(0,102,255);}
.fc2{color:rgb(12,11,11);}
.fc8{color:rgb(255,0,0);}
.fcb{color:rgb(255,255,255);}
.fc9{color:rgb(78,188,227);}
.fc4{color:transparent;}
.fcc{color:rgb(112,48,160);}
.fs3a{font-size:14.828988px;}
.fs3b{font-size:14.952563px;}
.fs61{font-size:15.809631px;}
.fs5b{font-size:15.821988px;}
.fs57{font-size:15.882319px;}
.fs5e{font-size:15.942650px;}
.fs29{font-size:16.929368px;}
.fs40{font-size:18.536235px;}
.fs41{font-size:18.659810px;}
.fs2f{font-size:19.952470px;}
.fs14{font-size:22.034320px;}
.fs37{font-size:22.367057px;}
.fs5f{font-size:23.268945px;}
.fs58{font-size:23.287132px;}
.fs52{font-size:23.357741px;}
.fs48{font-size:23.375928px;}
.fs4f{font-size:23.394115px;}
.fs4c{font-size:23.447607px;}
.fs5c{font-size:23.464725px;}
.fs28{font-size:23.580191px;}
.fs27{font-size:25.394052px;}
.fs2a{font-size:25.514976px;}
.fs39{font-size:25.950729px;}
.fs38{font-size:26.074304px;}
.fs12{font-size:26.231334px;}
.fs32{font-size:27.914034px;}
.fs33{font-size:28.066913px;}
.fs22{font-size:28.357119px;}
.fs2d{font-size:28.401346px;}
.fs23{font-size:28.484833px;}
.fs15{font-size:29.379094px;}
.fs56{font-size:29.594434px;}
.fs60{font-size:29.629886px;}
.fs42{font-size:29.657976px;}
.fs59{font-size:29.664294px;}
.fs53{font-size:29.750837px;}
.fs49{font-size:29.768562px;}
.fs3f{font-size:29.781551px;}
.fs50{font-size:29.786288px;}
.fs5d{font-size:29.840085px;}
.fs55{font-size:29.872830px;}
.fs4d{font-size:29.890556px;}
.fs2e{font-size:30.231015px;}
.fs1c{font-size:32.002227px;}
.fs13{font-size:33.051480px;}
.fs35{font-size:33.488798px;}
.fs1b{font-size:35.149987px;}
.fs24{font-size:35.188901px;}
.fs7{font-size:35.865600px;}
.fs16{font-size:36.199240px;}
.fs3d{font-size:37.072470px;}
.fs3e{font-size:37.196045px;}
.fs62{font-size:37.435655px;}
.fs5a{font-size:37.464915px;}
.fs54{font-size:37.578513px;}
.fs4a{font-size:37.607773px;}
.fs51{font-size:37.637033px;}
.fs4e{font-size:37.723092px;}
.fs11{font-size:39.347000px;}
.fs19{font-size:39.451926px;}
.fs26{font-size:40.509560px;}
.fs34{font-size:40.903292px;}
.fs10{font-size:41.400000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs46{font-size:43.056000px;}
.fsa{font-size:43.600200px;}
.fs20{font-size:44.712000px;}
.fse{font-size:45.000000px;}
.fs3{font-size:45.429600px;}
.fs47{font-size:46.800000px;}
.fs4{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs4b{font-size:47.982576px;}
.fs17{font-size:48.265654px;}
.fs18{font-size:48.370579px;}
.fs21{font-size:48.600000px;}
.fs1a{font-size:52.462667px;}
.fs9{font-size:53.798400px;}
.fs2b{font-size:55.625067px;}
.fs3c{font-size:55.732280px;}
.fs2c{font-size:55.745991px;}
.fs30{font-size:56.058000px;}
.fs36{font-size:59.439527px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:59.850000px;}
.fs25{font-size:60.462029px;}
.fs43{font-size:62.244000px;}
.fs31{font-size:62.286600px;}
.fs1d{font-size:64.638000px;}
.fsf{font-size:67.500000px;}
.fs45{font-size:70.200000px;}
.fs1f{font-size:72.900000px;}
.fsd{font-size:75.150000px;}
.fs44{font-size:78.156000px;}
.fs1e{font-size:81.162000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y21e{bottom:-962.170950px;}
.y11e{bottom:-859.725900px;}
.y240{bottom:-849.499950px;}
.y23f{bottom:-824.461950px;}
.y23e{bottom:-799.423950px;}
.y23d{bottom:-774.502950px;}
.y141{bottom:-763.254900px;}
.y23c{bottom:-749.464950px;}
.y140{bottom:-737.253900px;}
.y23b{bottom:-724.387950px;}
.y13f{bottom:-711.374400px;}
.y23a{bottom:-699.466950px;}
.y13e{bottom:-685.373400px;}
.y239{bottom:-674.428950px;}
.y13d{bottom:-659.372400px;}
.y238{bottom:-649.507950px;}
.y13c{bottom:-633.492900px;}
.y237{bottom:-624.469950px;}
.y19c{bottom:-608.710950px;}
.y13b{bottom:-607.451400px;}
.y236{bottom:-599.431950px;}
.y13a{bottom:-581.450400px;}
.y235{bottom:-574.510950px;}
.y139{bottom:-555.570900px;}
.y234{bottom:-549.472950px;}
.y138{bottom:-529.569900px;}
.y233{bottom:-524.551950px;}
.y1bf{bottom:-506.650950px;}
.y137{bottom:-503.690400px;}
.y232{bottom:-499.513950px;}
.y1be{bottom:-480.771450px;}
.y136{bottom:-477.689400px;}
.y231{bottom:-474.475950px;}
.y1bd{bottom:-454.770450px;}
.y135{bottom:-451.688400px;}
.y230{bottom:-449.554950px;}
.y1bc{bottom:-428.890950px;}
.y134{bottom:-425.808900px;}
.y22f{bottom:-424.516950px;}
.y1bb{bottom:-402.889950px;}
.y133{bottom:-399.807900px;}
.y22e{bottom:-399.595950px;}
.y1ba{bottom:-376.888950px;}
.y22d{bottom:-374.557950px;}
.y132{bottom:-373.928400px;}
.y1b9{bottom:-350.968950px;}
.y22c{bottom:-349.519950px;}
.y131{bottom:-347.927400px;}
.y1b8{bottom:-324.967950px;}
.y22b{bottom:-324.598950px;}
.y130{bottom:-321.926400px;}
.y22a{bottom:-299.560950px;}
.y1b7{bottom:-299.088450px;}
.y12f{bottom:-296.046900px;}
.y229{bottom:-274.522950px;}
.y1b6{bottom:-273.087450px;}
.y12e{bottom:-270.045900px;}
.ybc{bottom:-262.621875px;}
.y228{bottom:-249.601950px;}
.y1b5{bottom:-247.086450px;}
.y12d{bottom:-244.166400px;}
.y227{bottom:-224.563950px;}
.y1b4{bottom:-221.206950px;}
.y12c{bottom:-218.165400px;}
.y226{bottom:-199.642950px;}
.y1b3{bottom:-195.205950px;}
.y12b{bottom:-192.164400px;}
.ye2{bottom:-183.196875px;}
.y225{bottom:-174.565950px;}
.y1b2{bottom:-169.326450px;}
.y12a{bottom:-166.284900px;}
.ye1{bottom:-161.596875px;}
.y224{bottom:-149.527950px;}
.y1b1{bottom:-143.325450px;}
.ye0{bottom:-139.996875px;}
.y223{bottom:-124.606950px;}
.ydf{bottom:-118.284375px;}
.y129{bottom:-116.591400px;}
.y222{bottom:-99.568950px;}
.yde{bottom:-96.684375px;}
.y1b0{bottom:-93.753450px;}
.y128{bottom:-93.141900px;}
.ydd{bottom:-75.084375px;}
.y1af{bottom:-70.182450px;}
.y127{bottom:-69.813900px;}
.ydc{bottom:-53.484375px;}
.y221{bottom:-51.832950px;}
.y1ae{bottom:-46.854450px;}
.y126{bottom:-46.445400px;}
.ydb{bottom:-31.621875px;}
.y220{bottom:-29.251950px;}
.y1ad{bottom:-16.600950px;}
.y125{bottom:-16.070400px;}
.yda{bottom:-3.609375px;}
.y21f{bottom:-0.001950px;}
.y0{bottom:0.000000px;}
.y1c3{bottom:2.052100px;}
.y145{bottom:2.084674px;}
.y164{bottom:2.087925px;}
.ya{bottom:3.425340px;}
.yf2{bottom:6.210784px;}
.y106{bottom:6.420635px;}
.y29c{bottom:7.681854px;}
.y287{bottom:7.687858px;}
.y266{bottom:7.711168px;}
.y244{bottom:7.717173px;}
.y25f{bottom:7.723177px;}
.y252{bottom:7.740836px;}
.y291{bottom:7.746487px;}
.y1cd{bottom:8.985910px;}
.y16a{bottom:10.512355px;}
.y1c1{bottom:13.675195px;}
.y143{bottom:13.892264px;}
.y162{bottom:13.913931px;}
.y9{bottom:14.151273px;}
.y2{bottom:15.760437px;}
.y29a{bottom:17.578152px;}
.y285{bottom:17.591891px;}
.y264{bottom:17.645232px;}
.y242{bottom:17.658971px;}
.y25d{bottom:17.672710px;}
.y250{bottom:17.713120px;}
.y28f{bottom:17.726051px;}
.ye4{bottom:21.634590px;}
.y1cc{bottom:26.626227px;}
.y169{bottom:28.650964px;}
.y1c2{bottom:29.917568px;}
.y144{bottom:30.392455px;}
.y163{bottom:30.439856px;}
.y55{bottom:31.890000px;}
.ye3{bottom:39.340740px;}
.y27c{bottom:41.991043px;}
.y24d{bottom:45.228831px;}
.y25b{bottom:45.813468px;}
.y26e{bottom:46.463746px;}
.y27b{bottom:49.381915px;}
.y24c{bottom:52.598379px;}
.y25a{bottom:53.205614px;}
.y26d{bottom:53.826714px;}
.y1e7{bottom:56.284203px;}
.y29b{bottom:56.657570px;}
.y286{bottom:56.701854px;}
.y265{bottom:56.873781px;}
.y243{bottom:56.918065px;}
.y25e{bottom:56.962349px;}
.y251{bottom:57.092596px;}
.y290{bottom:57.134275px;}
.y296{bottom:58.281840px;}
.yf3{bottom:59.617561px;}
.y107{bottom:59.670023px;}
.y15a{bottom:60.907457px;}
.y26c{bottom:62.554982px;}
.y27a{bottom:62.795655px;}
.y1db{bottom:65.490533px;}
.y295{bottom:65.678533px;}
.y24b{bottom:66.637570px;}
.y156{bottom:67.195508px;}
.y259{bottom:67.893072px;}
.y26b{bottom:69.917527px;}
.y279{bottom:70.186527px;}
.y24a{bottom:74.006272px;}
.y101{bottom:74.071026px;}
.y261{bottom:74.095632px;}
.y28d{bottom:75.180384px;}
.y258{bottom:75.284369px;}
.yf0{bottom:76.694159px;}
.y273{bottom:78.831830px;}
.y278{bottom:80.636614px;}
.y26a{bottom:81.596821px;}
.y28c{bottom:82.521938px;}
.y249{bottom:83.344703px;}
.y27e{bottom:85.093934px;}
.y255{bottom:85.256652px;}
.y247{bottom:86.075733px;}
.y277{bottom:88.028760px;}
.y268{bottom:88.738515px;}
.y269{bottom:88.960636px;}
.y248{bottom:90.712981px;}
.yf5{bottom:91.357474px;}
.y271{bottom:91.895889px;}
.y29d{bottom:92.290565px;}
.y29e{bottom:92.448619px;}
.y254{bottom:92.648798px;}
.y18b{bottom:93.028500px;}
.y276{bottom:93.317723px;}
.y246{bottom:93.445282px;}
.y11a{bottom:96.073500px;}
.y267{bottom:96.101484px;}
.y294{bottom:97.370447px;}
.y283{bottom:97.923748px;}
.yee{bottom:99.620344px;}
.y298{bottom:100.558977px;}
.y275{bottom:100.708595px;}
.y257{bottom:101.027130px;}
.y1f7{bottom:101.116500px;}
.y22{bottom:102.823500px;}
.y28b{bottom:102.931080px;}
.y282{bottom:103.323567px;}
.y1f6{bottom:103.846500px;}
.y29f{bottom:104.273178px;}
.y2ea{bottom:105.799500px;}
.y1d9{bottom:106.795444px;}
.y149{bottom:107.886453px;}
.y297{bottom:107.956520px;}
.y54{bottom:107.976000px;}
.y256{bottom:108.419276px;}
.y272{bottom:108.585087px;}
.y262{bottom:108.998238px;}
.yf4{bottom:109.085484px;}
.y154{bottom:109.246849px;}
.y9b{bottom:109.366500px;}
.y2a1{bottom:109.711084px;}
.y28a{bottom:110.271369px;}
.y281{bottom:110.691846px;}
.y1c7{bottom:110.749841px;}
.y2c6{bottom:111.339000px;}
.y18a{bottom:111.856500px;}
.y118{bottom:112.173000px;}
.y308{bottom:113.017500px;}
.yec{bottom:114.233383px;}
.y117{bottom:114.903000px;}
.y1df{bottom:116.162421px;}
.y1e8{bottom:116.347784px;}
.y2a0{bottom:117.046062px;}
.ye5{bottom:117.064181px;}
.y1eb{bottom:119.523659px;}
.y168{bottom:119.737011px;}
.y119{bottom:120.327000px;}
.y21{bottom:120.711000px;}
.y343{bottom:120.817500px;}
.y15b{bottom:122.432610px;}
.y1f5{bottom:122.674500px;}
.y289{bottom:122.770781px;}
.y16e{bottom:122.848286px;}
.y280{bottom:123.238920px;}
.y293{bottom:123.707059px;}
.y2a2{bottom:124.065774px;}
.y53{bottom:124.075500px;}
.y288{bottom:124.162745px;}
.y26f{bottom:124.539221px;}
.y2e9{bottom:124.627500px;}
.y245{bottom:124.636192px;}
.y260{bottom:124.733162px;}
.y253{bottom:125.018371px;}
.y1da{bottom:125.924838px;}
.y292{bottom:126.735355px;}
.y52{bottom:126.805500px;}
.y102{bottom:127.294401px;}
.y2c5{bottom:127.438500px;}
.ye8{bottom:127.666012px;}
.y9a{bottom:128.196000px;}
.y155{bottom:128.718142px;}
.y2a4{bottom:129.912845px;}
.yf1{bottom:129.917535px;}
.y2c3{bottom:130.168500px;}
.y307{bottom:130.278000px;}
.y189{bottom:130.686000px;}
.ye7{bottom:133.196452px;}
.y116{bottom:133.731000px;}
.y2c4{bottom:135.594000px;}
.y108{bottom:137.994600px;}
.y342{bottom:138.078000px;}
.y20{bottom:138.600000px;}
.y1e6{bottom:140.902116px;}
.ye9{bottom:140.912835px;}
.y1f4{bottom:141.504000px;}
.ye6{bottom:143.033202px;}
.yf8{bottom:143.295515px;}
.y2e8{bottom:143.457000px;}
.y51{bottom:145.635000px;}
.y99{bottom:147.025500px;}
.y306{bottom:147.537000px;}
.y2c2{bottom:148.998000px;}
.y188{bottom:149.515500px;}
.y1d8{bottom:149.737722px;}
.y158{bottom:152.386507px;}
.y153{bottom:152.928146px;}
.y341{bottom:155.338500px;}
.y1f{bottom:156.487500px;}
.y1cf{bottom:157.770090px;}
.yed{bottom:158.750142px;}
.yf7{bottom:159.711958px;}
.y1f3{bottom:160.333500px;}
.yeb{bottom:161.187470px;}
.y2e7{bottom:162.286500px;}
.y50{bottom:164.464500px;}
.y305{bottom:164.797500px;}
.y98{bottom:165.855000px;}
.y115{bottom:167.298000px;}
.y2c1{bottom:167.827500px;}
.y187{bottom:168.345000px;}
.yea{bottom:171.942317px;}
.y340{bottom:172.599000px;}
.y1e{bottom:174.375000px;}
.yf6{bottom:177.418108px;}
.y1f2{bottom:179.163000px;}
.y304{bottom:179.436000px;}
.y2e6{bottom:181.116000px;}
.y303{bottom:182.058000px;}
.y4f{bottom:183.294000px;}
.y97{bottom:184.684500px;}
.y148{bottom:185.665816px;}
.y114{bottom:186.531000px;}
.y2c0{bottom:186.657000px;}
.y186{bottom:187.174500px;}
.y33f{bottom:189.858000px;}
.y1d6{bottom:191.073526px;}
.y1d{bottom:192.264000px;}
.y109{bottom:192.457406px;}
.y1cb{bottom:193.977536px;}
.y151{bottom:194.987045px;}
.yf9{bottom:196.490474px;}
.y2e5{bottom:197.215500px;}
.y4e{bottom:199.393500px;}
.y2e3{bottom:199.945500px;}
.y1de{bottom:200.835943px;}
.y4d{bottom:202.123500px;}
.y112{bottom:203.140500px;}
.y96{bottom:203.514000px;}
.y1ea{bottom:203.801741px;}
.y302{bottom:203.802000px;}
.y2e4{bottom:205.371000px;}
.y2bf{bottom:205.486500px;}
.yef{bottom:205.747948px;}
.y111{bottom:205.762500px;}
.y167{bottom:205.895403px;}
.y185{bottom:206.004000px;}
.y33e{bottom:207.118500px;}
.y16d{bottom:208.616194px;}
.y1c{bottom:210.151500px;}
.y1d7{bottom:210.202921px;}
.y113{bottom:210.645000px;}
.y1f1{bottom:212.730000px;}
.y159{bottom:213.730274px;}
.y152{bottom:214.448261px;}
.y2e2{bottom:216.045000px;}
.y2e1{bottom:218.775000px;}
.y1e2{bottom:219.223889px;}
.y4c{bottom:220.953000px;}
.yfc{bottom:221.803711px;}
.y95{bottom:222.343500px;}
.y10b{bottom:222.514143px;}
.y2be{bottom:224.316000px;}
.y33d{bottom:224.379000px;}
.y184{bottom:224.833500px;}
.y110{bottom:224.995500px;}
.y1b{bottom:228.039000px;}
.y1ef{bottom:231.961500px;}
.y1d5{bottom:232.285756px;}
.y2e0{bottom:234.874500px;}
.y1f0{bottom:236.844000px;}
.y10a{bottom:236.941376px;}
.y4b{bottom:237.052500px;}
.y301{bottom:237.426000px;}
.y2df{bottom:237.604500px;}
.y94{bottom:238.443000px;}
.y150{bottom:238.607880px;}
.yfb{bottom:239.542650px;}
.y4a{bottom:239.782500px;}
.y93{bottom:241.173000px;}
.y33c{bottom:241.639500px;}
.y15c{bottom:242.172621px;}
.y2bd{bottom:243.145500px;}
.y183{bottom:243.663000px;}
.y10e{bottom:244.228500px;}
.y1ee{bottom:248.572500px;}
.y10f{bottom:249.111000px;}
.y1ed{bottom:251.194500px;}
.y33b{bottom:256.278000px;}
.y2de{bottom:256.434000px;}
.y21a{bottom:257.331000px;}
.y49{bottom:258.612000px;}
.y33a{bottom:258.900000px;}
.yfa{bottom:258.997556px;}
.y10c{bottom:259.478463px;}
.y92{bottom:260.002500px;}
.y2bc{bottom:261.975000px;}
.y182{bottom:262.492500px;}
.y10d{bottom:263.461500px;}
.y300{bottom:263.965500px;}
.y105{bottom:269.129408px;}
.y1d3{bottom:273.621560px;}
.y199{bottom:273.624000px;}
.y2a5{bottom:273.650649px;}
.y48{bottom:274.711500px;}
.y2dd{bottom:275.263500px;}
.y1ce{bottom:276.130131px;}
.y219{bottom:276.160500px;}
.y47{bottom:277.441500px;}
.y91{bottom:278.832000px;}
.y14e{bottom:280.654183px;}
.y2bb{bottom:280.804500px;}
.y1e3{bottom:280.912479px;}
.y181{bottom:281.322000px;}
.y104{bottom:283.556642px;}
.y1e1{bottom:283.878277px;}
.y1dd{bottom:285.521823px;}
.yb9{bottom:285.891000px;}
.y1ec{bottom:287.993321px;}
.y2ff{bottom:290.506500px;}
.y166{bottom:292.078988px;}
.y218{bottom:292.260000px;}
.y1d4{bottom:292.750955px;}
.y100{bottom:292.868765px;}
.y339{bottom:293.421000px;}
.y46{bottom:293.541000px;}
.y2dc{bottom:294.093000px;}
.y217{bottom:294.990000px;}
.y45{bottom:296.271000px;}
.y90{bottom:297.661500px;}
.y103{bottom:298.005735px;}
.y2ba{bottom:299.634000px;}
.y14f{bottom:300.127995px;}
.y180{bottom:300.151500px;}
.y1e4{bottom:303.155962px;}
.y15d{bottom:303.478599px;}
.y1a{bottom:307.299000px;}
.yff{bottom:308.607565px;}
.y2db{bottom:310.192500px;}
.y338{bottom:310.681500px;}
.y44{bottom:312.370500px;}
.y2da{bottom:312.922500px;}
.y216{bottom:313.819500px;}
.y1d2{bottom:314.154128px;}
.y43{bottom:315.100500px;}
.y8f{bottom:316.491000px;}
.y2fe{bottom:317.047500px;}
.y2b9{bottom:318.463500px;}
.y157{bottom:318.783051px;}
.y17f{bottom:318.981000px;}
.y14d{bottom:320.231620px;}
.y1c6{bottom:323.217850px;}
.yfe{bottom:324.346366px;}
.y19{bottom:325.186500px;}
.y337{bottom:327.940500px;}
.y2d9{bottom:331.752000px;}
.y215{bottom:332.649000px;}
.y42{bottom:333.930000px;}
.y2fd{bottom:334.621500px;}
.y8e{bottom:335.320500px;}
.y2b8{bottom:337.293000px;}
.y17e{bottom:337.810500px;}
.yfd{bottom:340.085166px;}
.y18{bottom:343.074000px;}
.y336{bottom:345.201000px;}
.y14a{bottom:348.648774px;}
.y214{bottom:348.748500px;}
.y41{bottom:350.029500px;}
.y2d8{bottom:350.581500px;}
.y213{bottom:351.478500px;}
.y2fc{bottom:352.195500px;}
.y1c8{bottom:352.647709px;}
.y40{bottom:352.759500px;}
.y8d{bottom:354.150000px;}
.y1d0{bottom:355.489932px;}
.y2b7{bottom:356.122500px;}
.y17d{bottom:356.640000px;}
.y17{bottom:360.963000px;}
.y14b{bottom:362.277923px;}
.y335{bottom:362.461500px;}
.y1e5{bottom:364.671547px;}
.y1dc{bottom:365.808436px;}
.y212{bottom:367.578000px;}
.y1e9{bottom:368.527084px;}
.y2d7{bottom:369.411000px;}
.y211{bottom:370.308000px;}
.y17c{bottom:372.739500px;}
.y8c{bottom:372.979500px;}
.y165{bottom:373.740516px;}
.y1d1{bottom:374.582254px;}
.y2b6{bottom:374.952000px;}
.y17b{bottom:375.469500px;}
.y3f{bottom:376.071000px;}
.y16c{bottom:376.851791px;}
.y2fb{bottom:378.736500px;}
.y334{bottom:379.722000px;}
.y15e{bottom:380.152011px;}
.y14c{bottom:381.713946px;}
.yd9{bottom:385.753125px;}
.y2d6{bottom:388.240500px;}
.y210{bottom:389.137500px;}
.y1c9{bottom:390.066189px;}
.y8b{bottom:391.809000px;}
.y2b5{bottom:393.781500px;}
.y17a{bottom:394.299000px;}
.y2fa{bottom:396.310500px;}
.y333{bottom:396.982500px;}
.y146{bottom:398.403986px;}
.y16{bottom:399.024000px;}
.y2d5{bottom:407.070000px;}
.y1e0{bottom:407.329603px;}
.y1c5{bottom:407.557720px;}
.y20f{bottom:407.967000px;}
.y1ca{bottom:409.158512px;}
.yd8{bottom:409.715625px;}
.y8a{bottom:410.638500px;}
.y2b4{bottom:412.611000px;}
.y179{bottom:413.128500px;}
.y2f9{bottom:413.884500px;}
.y332{bottom:414.243000px;}
.y16b{bottom:416.026148px;}
.y2a3{bottom:416.128910px;}
.y15{bottom:416.913000px;}
.y147{bottom:418.394244px;}
.y2d4{bottom:425.899500px;}
.y89{bottom:426.738000px;}
.y20e{bottom:426.796500px;}
.y88{bottom:429.468000px;}
.y2b3{bottom:431.440500px;}
.y2f8{bottom:431.458500px;}
.y331{bottom:431.503500px;}
.y178{bottom:431.958000px;}
.yd7{bottom:433.790625px;}
.y14{bottom:434.800500px;}
.y24e{bottom:445.208350px;}
.y20d{bottom:445.626000px;}
.y87{bottom:448.297500px;}
.y330{bottom:448.764000px;}
.y2f7{bottom:449.032500px;}
.y2d3{bottom:449.212500px;}
.y2b2{bottom:450.270000px;}
.y3e{bottom:451.221000px;}
.yd6{bottom:457.865625px;}
.y1ac{bottom:459.355050px;}
.y86{bottom:464.397000px;}
.y20c{bottom:464.454000px;}
.y177{bottom:465.523500px;}
.y32f{bottom:466.024500px;}
.y2b1{bottom:466.369500px;}
.y2f6{bottom:466.606500px;}
.y85{bottom:467.127000px;}
.y124{bottom:467.864100px;}
.y2b0{bottom:469.099500px;}
.y13{bottom:470.622000px;}
.yd5{bottom:481.828125px;}
.y176{bottom:482.133000px;}
.y2d2{bottom:482.836500px;}
.y20b{bottom:483.283500px;}
.y174{bottom:484.756500px;}
.y2af{bottom:485.199000px;}
.y1ab{bottom:485.234550px;}
.y84{bottom:485.956500px;}
.y2ae{bottom:487.929000px;}
.y3d{bottom:488.611500px;}
.y175{bottom:489.639000px;}
.y1c4{bottom:490.970778px;}
.y123{bottom:493.743600px;}
.y32e{bottom:500.544000px;}
.y173{bottom:501.366000px;}
.y2d1{bottom:501.666000px;}
.y83{bottom:502.056000px;}
.y20a{bottom:502.113000px;}
.y171{bottom:503.989500px;}
.y82{bottom:504.786000px;}
.yd4{bottom:505.940625px;}
.y12{bottom:506.442000px;}
.y2ad{bottom:506.758500px;}
.y3c{bottom:508.068000px;}
.y172{bottom:508.872000px;}
.y1aa{bottom:511.235550px;}
.y21d{bottom:512.146050px;}
.y32d{bottom:517.804500px;}
.y122{bottom:519.744600px;}
.y2d0{bottom:520.495500px;}
.y209{bottom:520.942500px;}
.y16f{bottom:523.222500px;}
.y81{bottom:523.615500px;}
.y11{bottom:524.329500px;}
.y21c{bottom:524.899050px;}
.y2ac{bottom:525.588000px;}
.y3b{bottom:527.526000px;}
.y170{bottom:528.103500px;}
.yd3{bottom:529.903125px;}
.y32c{bottom:535.065000px;}
.y1a9{bottom:537.115050px;}
.y2cf{bottom:539.323500px;}
.y80{bottom:539.715000px;}
.y208{bottom:539.772000px;}
.y10{bottom:542.218500px;}
.y7f{bottom:542.445000px;}
.y2aa{bottom:544.417500px;}
.y11b{bottom:545.652000px;}
.y121{bottom:545.786100px;}
.y3a{bottom:546.982500px;}
.y2ab{bottom:549.841500px;}
.y32b{bottom:552.325500px;}
.yd2{bottom:553.978125px;}
.y2ce{bottom:558.153000px;}
.y207{bottom:558.601500px;}
.yf{bottom:560.106000px;}
.y7e{bottom:561.274500px;}
.y1a8{bottom:563.116050px;}
.y2a9{bottom:563.247000px;}
.y39{bottom:566.439000px;}
.y32a{bottom:569.586000px;}
.y120{bottom:571.665600px;}
.y1c0{bottom:572.530212px;}
.y2cd{bottom:576.982500px;}
.y206{bottom:577.431000px;}
.ye{bottom:577.993500px;}
.yd1{bottom:578.053125px;}
.y7d{bottom:580.104000px;}
.y2a8{bottom:582.075000px;}
.y37{bottom:583.273500px;}
.y36{bottom:585.897000px;}
.y329{bottom:586.846500px;}
.y1a7{bottom:589.117050px;}
.y38{bottom:590.779500px;}
.y205{bottom:593.530500px;}
.y2cc{bottom:595.812000px;}
.yd{bottom:595.882500px;}
.y203{bottom:596.260500px;}
.y161{bottom:596.639295px;}
.y11f{bottom:597.666600px;}
.y7c{bottom:598.932000px;}
.y204{bottom:601.686000px;}
.yd0{bottom:602.015625px;}
.y328{bottom:604.107000px;}
.y35{bottom:605.353500px;}
.yc{bottom:613.770000px;}
.y2cb{bottom:614.641500px;}
.y1a6{bottom:614.996550px;}
.y7b{bottom:615.033000px;}
.y202{bottom:615.090000px;}
.y2a7{bottom:615.642000px;}
.y7a{bottom:617.761500px;}
.y327{bottom:621.366000px;}
.y34{bottom:624.811500px;}
.ycf{bottom:626.090625px;}
.yb{bottom:631.657500px;}
.y2ca{bottom:633.471000px;}
.y79{bottom:633.861000px;}
.y201{bottom:633.919500px;}
.y2a6{bottom:634.875000px;}
.y78{bottom:636.591000px;}
.y326{bottom:638.626500px;}
.y1a5{bottom:640.997550px;}
.y33{bottom:644.268000px;}
.yce{bottom:650.053125px;}
.y2c9{bottom:652.300500px;}
.y200{bottom:652.749000px;}
.y325{bottom:653.265000px;}
.y8{bottom:654.028555px;}
.y77{bottom:655.420500px;}
.y324{bottom:655.887000px;}
.y21b{bottom:657.303000px;}
.y270{bottom:658.101332px;}
.y2f5{bottom:658.174500px;}
.y25c{bottom:658.581169px;}
.y27d{bottom:658.821071px;}
.y32{bottom:663.724500px;}
.y1a4{bottom:666.998550px;}
.y2f4{bottom:669.337500px;}
.y346{bottom:670.525500px;}
.yb8{bottom:671.130000px;}
.y11d{bottom:671.295600px;}
.y1ff{bottom:671.578500px;}
.y323{bottom:673.147500px;}
.ycd{bottom:674.128125px;}
.y76{bottom:674.250000px;}
.y160{bottom:682.192556px;}
.y31{bottom:683.182500px;}
.y11c{bottom:684.539100px;}
.yb6{bottom:687.229500px;}
.y1fe{bottom:687.678000px;}
.yb5{bottom:689.959500px;}
.y1fd{bottom:690.408000px;}
.y1a3{bottom:692.878050px;}
.y75{bottom:693.079500px;}
.yb7{bottom:695.385000px;}
.ycc{bottom:698.203125px;}
.y30{bottom:702.639000px;}
.yb3{bottom:706.059000px;}
.y322{bottom:707.668500px;}
.yb2{bottom:708.789000px;}
.y1fc{bottom:709.237500px;}
.y74{bottom:711.909000px;}
.yb4{bottom:714.214500px;}
.y1a2{bottom:718.879050px;}
.y2f{bottom:722.095500px;}
.y321{bottom:724.929000px;}
.y1fb{bottom:725.337000px;}
.yb1{bottom:727.618500px;}
.ycb{bottom:727.903125px;}
.y198{bottom:728.067000px;}
.y73{bottom:730.738500px;}
.y2e{bottom:741.553500px;}
.y320{bottom:742.189500px;}
.y196{bottom:744.166500px;}
.y1a1{bottom:744.758550px;}
.yaf{bottom:746.448000px;}
.y195{bottom:746.896500px;}
.y72{bottom:749.568000px;}
.y2c8{bottom:750.931500px;}
.yb0{bottom:751.873500px;}
.y197{bottom:752.320500px;}
.y31f{bottom:759.450000px;}
.y2d{bottom:761.010000px;}
.yae{bottom:765.277500px;}
.y194{bottom:765.726000px;}
.y15f{bottom:767.897483px;}
.y71{bottom:768.397500px;}
.y1a0{bottom:770.759550px;}
.yca{bottom:774.365625px;}
.y31e{bottom:776.709000px;}
.y2c{bottom:780.468000px;}
.yac{bottom:784.107000px;}
.y193{bottom:784.555500px;}
.y70{bottom:787.227000px;}
.yad{bottom:789.531000px;}
.y31d{bottom:793.969500px;}
.y19f{bottom:796.801050px;}
.y2b{bottom:797.302500px;}
.yc9{bottom:798.328125px;}
.y2a{bottom:799.924500px;}
.y263{bottom:801.929559px;}
.y24f{bottom:801.932978px;}
.y241{bottom:802.410077px;}
.y274{bottom:802.532761px;}
.yab{bottom:802.936500px;}
.y192{bottom:803.385000px;}
.y6f{bottom:806.056500px;}
.y31c{bottom:811.230000px;}
.y29{bottom:816.759000px;}
.y28{bottom:819.381000px;}
.y1fa{bottom:819.484500px;}
.yaa{bottom:821.766000px;}
.y191{bottom:822.214500px;}
.yc8{bottom:822.403125px;}
.y19e{bottom:822.680550px;}
.y6e{bottom:824.886000px;}
.y345{bottom:825.868500px;}
.y31b{bottom:828.490500px;}
.ya9{bottom:840.595500px;}
.y190{bottom:841.044000px;}
.y6d{bottom:843.715500px;}
.y31a{bottom:845.751000px;}
.yc7{bottom:846.478125px;}
.y19d{bottom:848.681550px;}
.y142{bottom:851.486238px;}
.y27{bottom:857.967000px;}
.ya8{bottom:859.425000px;}
.y18f{bottom:859.873500px;}
.y6c{bottom:862.545000px;}
.y319{bottom:863.011500px;}
.yc6{bottom:870.440625px;}
.y26{bottom:874.107000px;}
.y6b{bottom:878.644500px;}
.y18e{bottom:878.703000px;}
.y318{bottom:880.272000px;}
.y6a{bottom:881.374500px;}
.ya7{bottom:882.738000px;}
.yc5{bottom:894.515625px;}
.y25{bottom:894.586500px;}
.y69{bottom:897.474000px;}
.y18d{bottom:897.532500px;}
.y68{bottom:900.204000px;}
.y24{bottom:906.385500px;}
.y2f2{bottom:913.632000px;}
.y344{bottom:914.791500px;}
.y317{bottom:914.793000px;}
.y67{bottom:916.303500px;}
.ya6{bottom:916.362000px;}
.yc4{bottom:918.590625px;}
.y66{bottom:919.033500px;}
.y2f3{bottom:921.786000px;}
.y19b{bottom:922.310550px;}
.y23{bottom:926.865000px;}
.y316{bottom:932.052000px;}
.y65{bottom:935.133000px;}
.ya5{bottom:935.191500px;}
.y19a{bottom:935.554050px;}
.y64{bottom:937.863000px;}
.y2f1{bottom:940.615500px;}
.yc3{bottom:942.553125px;}
.y28e{bottom:944.082011px;}
.y284{bottom:944.675036px;}
.y299{bottom:944.794300px;}
.y27f{bottom:944.918327px;}
.y315{bottom:946.690500px;}
.y314{bottom:947.295000px;}
.y313{bottom:949.312500px;}
.y2f0{bottom:951.291000px;}
.y63{bottom:953.962500px;}
.ya4{bottom:954.021000px;}
.y62{bottom:956.692500px;}
.y18c{bottom:959.445000px;}
.y312{bottom:966.573000px;}
.yc2{bottom:966.628125px;}
.y7{bottom:967.057500px;}
.y1f9{bottom:970.120500px;}
.ya3{bottom:972.849000px;}
.y61{bottom:975.522000px;}
.y311{bottom:983.833500px;}
.y2ef{bottom:988.950000px;}
.yc1{bottom:990.590625px;}
.ya2{bottom:991.678500px;}
.y60{bottom:994.351500px;}
.y310{bottom:998.472000px;}
.y30f{bottom:1001.094000px;}
.y2c7{bottom:1007.778000px;}
.y5f{bottom:1010.451000px;}
.ya1{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y5e{bottom:1013.181000px;}
.yc0{bottom:1014.665625px;}
.y30e{bottom:1018.354500px;}
.y1f8{bottom:1026.607500px;}
.y5d{bottom:1029.280500px;}
.ya0{bottom:1029.337500px;}
.y5c{bottom:1032.010500px;}
.y2ee{bottom:1034.763000px;}
.y30d{bottom:1035.615000px;}
.ybf{bottom:1038.778125px;}
.y5{bottom:1041.199500px;}
.y9f{bottom:1048.167000px;}
.y5b{bottom:1050.840000px;}
.y30c{bottom:1052.875500px;}
.y2ed{bottom:1053.592500px;}
.ybe{bottom:1062.740625px;}
.y9e{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y5a{bottom:1069.669500px;}
.y30b{bottom:1070.134500px;}
.y2ec{bottom:1072.422000px;}
.y9d{bottom:1085.826000px;}
.ybd{bottom:1086.815625px;}
.y30a{bottom:1087.395000px;}
.y59{bottom:1088.499000px;}
.y2eb{bottom:1091.251500px;}
.y3{bottom:1097.688000px;}
.y309{bottom:1102.033500px;}
.y58{bottom:1104.598500px;}
.y9c{bottom:1104.655500px;}
.y57{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.ybb{bottom:1154.990625px;}
.yba{bottom:1167.253125px;}
.y56{bottom:1173.397500px;}
.h6e{height:21.261053px;}
.h69{height:24.268782px;}
.h60{height:24.287751px;}
.h58{height:24.361394px;}
.h4a{height:24.380363px;}
.h54{height:24.399331px;}
.h50{height:24.455122px;}
.h65{height:24.472975px;}
.h7{height:25.508090px;}
.h6b{height:25.972201px;}
.h63{height:25.992501px;}
.h5d{height:26.091613px;}
.h67{height:26.190726px;}
.h2f{height:26.485203px;}
.h30{height:26.611323px;}
.h41{height:27.065800px;}
.h40{height:27.194684px;}
.hf{height:29.037733px;}
.h3a{height:29.113465px;}
.h3b{height:29.272913px;}
.h29{height:29.575589px;}
.h34{height:29.621716px;}
.h2a{height:29.708790px;}
.h1e{height:30.641477px;}
.h5c{height:30.866070px;}
.h6a{height:30.903045px;}
.h44{height:30.932342px;}
.h61{height:30.938932px;}
.h59{height:31.029193px;}
.h4b{height:31.047680px;}
.h43{height:31.061227px;}
.h55{height:31.066167px;}
.h5b{height:31.156429px;}
.h51{height:31.174916px;}
.h14{height:31.526842px;}
.h35{height:31.530004px;}
.h5e{height:32.255893px;}
.h9{height:33.112997px;}
.hb{height:33.821261px;}
.h8{height:34.199443px;}
.h1c{height:34.471661px;}
.h3e{height:34.927770px;}
.h66{height:35.247137px;}
.h2c{height:36.700924px;}
.h36{height:37.334628px;}
.h6f{height:37.389888px;}
.h1f{height:37.754677px;}
.hd{height:38.734848px;}
.h6c{height:39.044219px;}
.h62{height:39.074736px;}
.h5a{height:39.193215px;}
.h4c{height:39.223732px;}
.h56{height:39.254250px;}
.h52{height:39.344006px;}
.ha{height:39.457760px;}
.h1b{height:41.037692px;}
.h22{height:41.147126px;}
.h37{height:41.482876px;}
.h13{height:41.544042px;}
.h2e{height:42.250205px;}
.h3d{height:42.660856px;}
.h12{height:42.840113px;}
.h10{height:43.038432px;}
.h4{height:43.815515px;}
.hc{height:45.094826px;}
.h4e{height:50.044327px;}
.h20{height:50.339569px;}
.h21{height:50.449003px;}
.he{height:50.731891px;}
.h2{height:50.930649px;}
.h6d{height:52.402876px;}
.h6{height:54.411312px;}
.h23{height:54.716922px;}
.h18{height:54.858032px;}
.h16{height:55.904810px;}
.h11{height:56.368391px;}
.h31{height:58.015207px;}
.h42{height:58.127027px;}
.h46{height:58.141002px;}
.h32{height:58.141327px;}
.h25{height:60.377194px;}
.h1d{height:61.507012px;}
.h3f{height:61.993570px;}
.h19{height:63.050537px;}
.h2d{height:63.060007px;}
.h48{height:65.572559px;}
.h27{height:68.094580px;}
.h17{height:70.196265px;}
.h47{height:73.004115px;}
.h26{height:75.811966px;}
.h5{height:77.469696px;}
.h39{height:96.987041px;}
.h28{height:98.526534px;}
.h33{height:98.680199px;}
.h3{height:102.503837px;}
.h68{height:155.651318px;}
.h5f{height:155.772977px;}
.h57{height:156.245298px;}
.h49{height:156.366956px;}
.h53{height:156.488615px;}
.h4f{height:156.846434px;}
.h64{height:156.960936px;}
.h1a{height:357.922473px;}
.h15{height:365.491875px;}
.h3c{height:429.264148px;}
.h38{height:430.800525px;}
.h2b{height:437.767286px;}
.h24{height:441.215100px;}
.h4d{height:460.662738px;}
.h45{height:462.296250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w9{width:165.917903px;}
.w7{width:168.388444px;}
.w11{width:188.656528px;}
.wb{width:189.856083px;}
.w2{width:190.325662px;}
.w12{width:203.855405px;}
.wf{width:204.450132px;}
.we{width:204.693756px;}
.w10{width:205.288483px;}
.wd{width:205.410295px;}
.w5{width:723.127500px;}
.w4{width:724.633125px;}
.wc{width:730.015650px;}
.wa{width:730.136550px;}
.w8{width:761.138775px;}
.w6{width:772.697475px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb7{left:-271.536300px;}
.xea{left:-268.504875px;}
.x108{left:-264.416100px;}
.x97{left:-242.956875px;}
.x10a{left:-10.136100px;}
.xb9{left:-7.476300px;}
.xeb{left:-4.444875px;}
.x0{left:0.000000px;}
.x98{left:1.543125px;}
.xa6{left:5.119147px;}
.xcb{left:6.405284px;}
.x121{left:7.485222px;}
.xf2{left:8.722717px;}
.x120{left:13.842863px;}
.x9d{left:22.261727px;}
.xee{left:24.041338px;}
.xbb{left:26.179270px;}
.xa2{left:27.669647px;}
.x3{left:29.274117px;}
.xa3{left:31.213671px;}
.xb8{left:35.534700px;}
.x9e{left:38.564242px;}
.x116{left:39.640814px;}
.x99{left:41.368125px;}
.xc8{left:43.722522px;}
.x10f{left:46.051756px;}
.x11c{left:48.031034px;}
.x1{left:54.000000px;}
.x2{left:58.056971px;}
.xb6{left:60.106500px;}
.x10e{left:61.380202px;}
.xc7{left:66.875552px;}
.x10c{left:70.257674px;}
.xc9{left:72.474651px;}
.x11d{left:74.901049px;}
.xef{left:76.871758px;}
.xbc{left:78.016389px;}
.x114{left:79.911068px;}
.x107{left:81.388500px;}
.x112{left:82.828926px;}
.x96{left:84.141000px;}
.x9b{left:85.646625px;}
.xf5{left:87.631013px;}
.x11e{left:91.520170px;}
.x113{left:93.770138px;}
.x10b{left:94.939021px;}
.x119{left:96.159246px;}
.x11a{left:99.703447px;}
.x9f{left:101.621633px;}
.xc6{left:103.738809px;}
.xf7{left:123.477000px;}
.xd9{left:127.525500px;}
.xf8{left:129.805500px;}
.xda{left:133.854000px;}
.xa0{left:137.932575px;}
.x11f{left:141.064387px;}
.xce{left:143.097000px;}
.xca{left:144.692939px;}
.x11b{left:146.041302px;}
.x115{left:151.960639px;}
.xa1{left:154.077578px;}
.x153{left:163.123500px;}
.x154{left:171.979500px;}
.xdb{left:173.449500px;}
.xbe{left:176.976032px;}
.xbd{left:178.703682px;}
.xf4{left:180.551640px;}
.x122{left:183.701830px;}
.x123{left:185.671099px;}
.xa5{left:190.611662px;}
.x155{left:196.264500px;}
.xf9{left:198.870000px;}
.xfa{left:205.594500px;}
.x156{left:206.782500px;}
.xf0{left:209.170204px;}
.xd0{left:212.332500px;}
.xcc{left:214.845614px;}
.x157{left:216.117000px;}
.xd1{left:219.057000px;}
.xa4{left:226.106603px;}
.x126{left:244.482000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.xdc{left:253.716000px;}
.xfb{left:255.994500px;}
.xdd{left:261.934500px;}
.x118{left:263.122021px;}
.xfc{left:264.211500px;}
.xa9{left:266.534739px;}
.x13b{left:268.690500px;}
.x5{left:271.221000px;}
.x1f{left:273.595500px;}
.x12f{left:277.839000px;}
.x3f{left:279.217500px;}
.x117{left:280.405944px;}
.x14{left:282.786000px;}
.xaa{left:285.436206px;}
.x10{left:290.068500px;}
.xbf{left:292.804239px;}
.xe8{left:297.117000px;}
.x11{left:299.413500px;}
.x8c{left:302.190000px;}
.xa8{left:308.198909px;}
.x101{left:309.456000px;}
.x7{left:311.328000px;}
.xd2{left:312.397500px;}
.xe6{left:315.154500px;}
.xc{left:316.374000px;}
.x2f{left:318.141000px;}
.x8d{left:320.944500px;}
.x9c{left:322.900050px;}
.x2a{left:324.676500px;}
.xd{left:326.164500px;}
.x2b{left:328.471500px;}
.x92{left:330.141000px;}
.x8{left:331.837500px;}
.x24{left:333.799500px;}
.x2c{left:335.944500px;}
.x12{left:337.342500px;}
.x25{left:340.225500px;}
.x9{left:342.120000px;}
.x13{left:343.671000px;}
.x38{left:345.946500px;}
.x67{left:346.962000px;}
.x127{left:350.184000px;}
.x30{left:351.195000px;}
.x39{left:352.372500px;}
.x4a{left:353.947500px;}
.xfe{left:356.004000px;}
.x31{left:357.621000px;}
.x133{left:358.692000px;}
.x68{left:361.906500px;}
.x124{left:363.655051px;}
.x50{left:365.274000px;}
.x32{left:369.507000px;}
.x51{left:371.700000px;}
.x33{left:375.933000px;}
.x103{left:377.068500px;}
.x142{left:382.540500px;}
.x52{left:383.563500px;}
.x88{left:387.418500px;}
.x148{left:392.052000px;}
.x53{left:393.717000px;}
.xa7{left:395.432239px;}
.xac{left:400.288866px;}
.x89{left:402.363000px;}
.xfd{left:403.998000px;}
.xab{left:405.670533px;}
.x138{left:406.969500px;}
.xc2{left:408.998153px;}
.x135{left:412.350000px;}
.xc0{left:414.862074px;}
.xc1{left:416.980652px;}
.xd3{left:419.916000px;}
.x139{left:421.912500px;}
.x134{left:425.647500px;}
.x93{left:427.192500px;}
.xf1{left:431.437335px;}
.x26{left:437.886000px;}
.x129{left:439.408500px;}
.x10d{left:441.495828px;}
.x111{left:442.815338px;}
.x27{left:444.312000px;}
.x3a{left:445.641000px;}
.xe9{left:447.745500px;}
.x110{left:449.353249px;}
.x3b{left:455.481000px;}
.x77{left:456.810000px;}
.x152{left:457.954500px;}
.x28{left:462.018000px;}
.x78{left:463.236000px;}
.x5c{left:464.850000px;}
.x70{left:467.505000px;}
.xe3{left:469.984500px;}
.x29{left:471.478500px;}
.x54{left:473.584500px;}
.x65{left:476.487000px;}
.x3c{left:478.189500px;}
.x94{left:480.208500px;}
.xc5{left:481.294626px;}
.x66{left:482.913000px;}
.x3d{left:484.615500px;}
.xe4{left:486.001500px;}
.x95{left:487.015500px;}
.x55{left:488.529000px;}
.x20{left:489.672000px;}
.xd4{left:491.478000px;}
.x7f{left:492.918000px;}
.x21{left:496.098000px;}
.xde{left:497.769000px;}
.x102{left:500.818500px;}
.x3e{left:502.669500px;}
.xc3{left:503.905402px;}
.x140{left:506.313000px;}
.x80{left:507.862500px;}
.x136{left:509.595000px;}
.xad{left:511.313104px;}
.xdf{left:512.713500px;}
.x91{left:514.051500px;}
.xe5{left:515.643000px;}
.x7a{left:518.112000px;}
.x61{left:520.516500px;}
.x141{left:525.064500px;}
.x62{left:526.941000px;}
.xc4{left:528.546482px;}
.xa{left:530.008500px;}
.xaf{left:531.680309px;}
.xb1{left:532.783500px;}
.x71{left:534.957000px;}
.xb{left:535.986000px;}
.xd5{left:540.069000px;}
.x72{left:541.383000px;}
.x125{left:542.798573px;}
.x81{left:545.749500px;}
.x2d{left:548.826000px;}
.x106{left:550.651500px;}
.x40{left:553.156500px;}
.x7d{left:556.992000px;}
.x2e{left:558.973500px;}
.x82{left:560.694000px;}
.x41{left:562.249500px;}
.x6f{left:565.266000px;}
.x63{left:569.007000px;}
.x7e{left:571.936500px;}
.x64{left:576.478500px;}
.x6c{left:580.321500px;}
.x4b{left:581.604000px;}
.x42{left:584.728500px;}
.x6d{left:586.747500px;}
.x4c{left:588.030000px;}
.x43{left:591.154500px;}
.x14b{left:597.519000px;}
.x8e{left:598.908000px;}
.x4d{left:600.012000px;}
.x44{left:602.665500px;}
.xb4{left:604.536000px;}
.x8f{left:605.713500px;}
.x83{left:606.747000px;}
.x45{left:609.091500px;}
.x4e{left:611.182500px;}
.x14c{left:613.809000px;}
.x84{left:616.111500px;}
.xf3{left:617.662150px;}
.x56{left:619.266000px;}
.x15{left:621.835500px;}
.x73{left:623.343000px;}
.xd6{left:624.577500px;}
.xff{left:626.464500px;}
.x57{left:627.883500px;}
.x74{left:629.769000px;}
.xae{left:631.569308px;}
.x16{left:632.806500px;}
.x85{left:635.932500px;}
.xf6{left:637.344000px;}
.x7b{left:639.055500px;}
.x6e{left:642.478500px;}
.x34{left:644.875500px;}
.xed{left:647.877043px;}
.xcd{left:650.238610px;}
.x58{left:651.280500px;}
.x35{left:652.348500px;}
.x8a{left:654.666000px;}
.x59{left:657.706500px;}
.x36{left:659.970000px;}
.x146{left:661.441500px;}
.xb5{left:662.940000px;}
.x143{left:664.591500px;}
.x37{left:667.441500px;}
.x5a{left:668.514000px;}
.x8b{left:669.610500px;}
.x147{left:670.671000px;}
.x5d{left:671.788500px;}
.x5b{left:674.940000px;}
.x130{left:677.638500px;}
.x79{left:678.639000px;}
.x5e{left:680.404500px;}
.x12e{left:682.543500px;}
.x75{left:687.274500px;}
.x131{left:688.446000px;}
.x104{left:690.016500px;}
.x14d{left:691.255500px;}
.x144{left:692.418000px;}
.x76{left:694.747500px;}
.x150{left:696.589500px;}
.x132{left:698.808000px;}
.x128{left:701.827500px;}
.x5f{left:703.321500px;}
.xb2{left:707.365500px;}
.x46{left:709.510500px;}
.x69{left:710.656500px;}
.xb3{left:713.694000px;}
.x47{left:715.936500px;}
.x60{left:720.331500px;}
.x1b{left:725.442000px;}
.x48{left:727.447500px;}
.x6a{left:729.411000px;}
.x14e{left:730.950000px;}
.x9a{left:732.868125px;}
.x49{left:733.872000px;}
.x1c{left:735.972000px;}
.xb0{left:738.177000px;}
.x4f{left:740.437500px;}
.x159{left:742.524000px;}
.x6b{left:744.355500px;}
.x109{left:745.878900px;}
.xe{left:747.018000px;}
.x7c{left:749.749500px;}
.x137{left:750.982500px;}
.xf{left:752.995500px;}
.x13f{left:754.617000px;}
.x100{left:755.734500px;}
.xd7{left:759.201000px;}
.xe0{left:761.113500px;}
.x105{left:763.195500px;}
.xec{left:766.675125px;}
.xd8{left:768.532500px;}
.x13c{left:769.768500px;}
.x14f{left:770.944500px;}
.x149{left:774.433500px;}
.x12a{left:777.402000px;}
.xba{left:779.195700px;}
.x14a{left:783.963000px;}
.xe1{left:785.641500px;}
.x13d{left:788.523000px;}
.xcf{left:791.131500px;}
.x12b{left:792.346500px;}
.x12c{left:796.158000px;}
.x22{left:797.874000px;}
.xe2{left:799.267500px;}
.x13a{left:801.289500px;}
.x13e{left:803.467500px;}
.x23{left:808.047000px;}
.x1d{left:810.076500px;}
.x12d{left:811.101000px;}
.x17{left:813.886500px;}
.x151{left:815.904000px;}
.x1e{left:817.548000px;}
.x86{left:819.093000px;}
.x18{left:821.359500px;}
.x19{left:825.169500px;}
.x90{left:828.339000px;}
.xe7{left:830.631000px;}
.x1a{left:832.642500px;}
.x87{left:834.036000px;}
.x145{left:835.519500px;}
.x158{left:837.249000px;}
@media print{
.vf{vertical-align:-26.202839pt;}
.ve{vertical-align:-19.777781pt;}
.v10{vertical-align:-17.731516pt;}
.v2{vertical-align:-15.429333pt;}
.v7{vertical-align:-12.707624pt;}
.v8{vertical-align:-11.192036pt;}
.v9{vertical-align:-10.259366pt;}
.v3{vertical-align:-9.322667pt;}
.v4{vertical-align:-8.394027pt;}
.v5{vertical-align:-6.995022pt;}
.vb{vertical-align:-4.836962pt;}
.vc{vertical-align:-2.821561pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:3.295331pt;}
.v12{vertical-align:7.000471pt;}
.v11{vertical-align:8.468312pt;}
.va{vertical-align:9.673925pt;}
.v13{vertical-align:12.263529pt;}
.v14{vertical-align:16.550623pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:27.436032pt;}
.ls7a{letter-spacing:-4.789214pt;}
.ls7b{letter-spacing:-4.701338pt;}
.ls7e{letter-spacing:-1.537821pt;}
.ls7f{letter-spacing:-1.476308pt;}
.ls76{letter-spacing:-0.979812pt;}
.ls77{letter-spacing:-0.913905pt;}
.ls78{letter-spacing:-0.869967pt;}
.ls79{letter-spacing:-0.804061pt;}
.ls7d{letter-spacing:-0.610735pt;}
.ls3c{letter-spacing:-0.583920pt;}
.ls3f{letter-spacing:-0.496080pt;}
.ls6c{letter-spacing:-0.447840pt;}
.ls70{letter-spacing:-0.443771pt;}
.ls37{letter-spacing:-0.432000pt;}
.ls75{letter-spacing:-0.333487pt;}
.ls47{letter-spacing:-0.267377pt;}
.ls49{letter-spacing:-0.227964pt;}
.ls39{letter-spacing:-0.216000pt;}
.ls1c{letter-spacing:-0.197804pt;}
.ls46{letter-spacing:-0.195718pt;}
.ls43{letter-spacing:-0.193031pt;}
.ls1e{letter-spacing:-0.174487pt;}
.ls19{letter-spacing:-0.169824pt;}
.ls15{letter-spacing:-0.163994pt;}
.ls1b{letter-spacing:-0.155834pt;}
.ls3b{letter-spacing:-0.151920pt;}
.ls42{letter-spacing:-0.135256pt;}
.ls48{letter-spacing:-0.113758pt;}
.ls36{letter-spacing:-0.108000pt;}
.ls4d{letter-spacing:-0.107488pt;}
.ls83{letter-spacing:-0.104000pt;}
.ls12{letter-spacing:-0.100000pt;}
.ls1f{letter-spacing:-0.098708pt;}
.ls1d{letter-spacing:-0.093267pt;}
.ls7c{letter-spacing:-0.089633pt;}
.ls3e{letter-spacing:-0.083520pt;}
.ls71{letter-spacing:-0.074255pt;}
.ls16{letter-spacing:-0.074225pt;}
.ls3d{letter-spacing:-0.063936pt;}
.ls14{letter-spacing:-0.063344pt;}
.ls4c{letter-spacing:-0.053744pt;}
.ls99{letter-spacing:-0.046545pt;}
.ls8d{letter-spacing:-0.046369pt;}
.ls93{letter-spacing:-0.046193pt;}
.ls9e{letter-spacing:-0.046156pt;}
.ls88{letter-spacing:-0.042651pt;}
.ls96{letter-spacing:-0.036571pt;}
.ls85{letter-spacing:-0.036544pt;}
.ls86{letter-spacing:-0.036461pt;}
.ls84{letter-spacing:-0.036433pt;}
.ls87{letter-spacing:-0.036404pt;}
.ls90{letter-spacing:-0.036294pt;}
.ls9c{letter-spacing:-0.036266pt;}
.ls4b{letter-spacing:-0.024993pt;}
.ls40{letter-spacing:-0.024954pt;}
.ls6f{letter-spacing:-0.024564pt;}
.ls6e{letter-spacing:-0.021600pt;}
.ls9b{letter-spacing:-0.018285pt;}
.ls8f{letter-spacing:-0.018216pt;}
.ls95{letter-spacing:-0.018147pt;}
.lsa0{letter-spacing:-0.018133pt;}
.ls6b{letter-spacing:-0.015984pt;}
.ls4a{letter-spacing:-0.012633pt;}
.ls17{letter-spacing:-0.010726pt;}
.ls18{letter-spacing:-0.009793pt;}
.ls97{letter-spacing:-0.001817pt;}
.ls98{letter-spacing:-0.001813pt;}
.ls89{letter-spacing:-0.001810pt;}
.ls8a{letter-spacing:-0.001808pt;}
.ls8c{letter-spacing:-0.001807pt;}
.ls91{letter-spacing:-0.001803pt;}
.ls9d{letter-spacing:-0.001801pt;}
.ls92{letter-spacing:-0.001800pt;}
.ls8b{letter-spacing:-0.001799pt;}
.ls8{letter-spacing:0.000000pt;}
.lsa3{letter-spacing:0.001000pt;}
.lsaa{letter-spacing:0.001026pt;}
.lsb4{letter-spacing:0.001825pt;}
.lsa9{letter-spacing:0.002287pt;}
.lsa4{letter-spacing:0.003101pt;}
.lsb7{letter-spacing:0.003241pt;}
.lsa2{letter-spacing:0.003748pt;}
.lsad{letter-spacing:0.003890pt;}
.lsae{letter-spacing:0.004267pt;}
.ls10{letter-spacing:0.004386pt;}
.ls28{letter-spacing:0.007524pt;}
.lsd{letter-spacing:0.009793pt;}
.ls41{letter-spacing:0.020674pt;}
.lse{letter-spacing:0.039172pt;}
.ls20{letter-spacing:0.039250pt;}
.ls9f{letter-spacing:0.054099pt;}
.ls94{letter-spacing:0.054141pt;}
.ls8e{letter-spacing:0.054348pt;}
.ls9a{letter-spacing:0.054554pt;}
.ls6a{letter-spacing:0.063936pt;}
.ls59{letter-spacing:0.076891pt;}
.lsa1{letter-spacing:0.085302pt;}
.ls2c{letter-spacing:0.090505pt;}
.lsc{letter-spacing:0.093267pt;}
.ls2e{letter-spacing:0.107488pt;}
.ls6d{letter-spacing:0.108000pt;}
.ls45{letter-spacing:0.115998pt;}
.lsb{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.139900pt;}
.ls81{letter-spacing:0.145600pt;}
.ls22{letter-spacing:0.151200pt;}
.ls25{letter-spacing:0.161232pt;}
.ls82{letter-spacing:0.166400pt;}
.ls38{letter-spacing:0.167760pt;}
.ls52{letter-spacing:0.168048pt;}
.ls23{letter-spacing:0.172800pt;}
.ls2a{letter-spacing:0.174131pt;}
.ls44{letter-spacing:0.181834pt;}
.ls24{letter-spacing:0.185399pt;}
.lsa{letter-spacing:0.200000pt;}
.ls80{letter-spacing:0.208000pt;}
.ls58{letter-spacing:0.211341pt;}
.ls2f{letter-spacing:0.214976pt;}
.ls21{letter-spacing:0.216000pt;}
.ls13{letter-spacing:0.226561pt;}
.ls29{letter-spacing:0.232174pt;}
.ls5b{letter-spacing:0.281641pt;}
.ls51{letter-spacing:0.316800pt;}
.ls57{letter-spacing:0.391485pt;}
.ls66{letter-spacing:0.480899pt;}
.ls33{letter-spacing:0.576078pt;}
.ls3a{letter-spacing:0.599760pt;}
.ls72{letter-spacing:0.672247pt;}
.ls73{letter-spacing:0.782092pt;}
.ls53{letter-spacing:1.006174pt;}
.ls54{letter-spacing:1.116019pt;}
.ls9{letter-spacing:1.133683pt;}
.ls74{letter-spacing:1.397220pt;}
.ls67{letter-spacing:1.498716pt;}
.ls5e{letter-spacing:1.528814pt;}
.ls65{letter-spacing:1.559790pt;}
.ls69{letter-spacing:1.575717pt;}
.ls63{letter-spacing:1.592743pt;}
.ls68{letter-spacing:1.631189pt;}
.ls61{letter-spacing:1.647665pt;}
.ls3{letter-spacing:1.654338pt;}
.lsf{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.657067pt;}
.lsa6{letter-spacing:3.158400pt;}
.ls35{letter-spacing:3.163733pt;}
.lsa5{letter-spacing:3.318400pt;}
.ls32{letter-spacing:5.266915pt;}
.ls27{letter-spacing:8.943436pt;}
.ls26{letter-spacing:9.033009pt;}
.ls5f{letter-spacing:9.442660pt;}
.ls55{letter-spacing:9.811737pt;}
.ls56{letter-spacing:9.899613pt;}
.ls7{letter-spacing:10.626533pt;}
.lsac{letter-spacing:11.669290pt;}
.lsb6{letter-spacing:11.764787pt;}
.lsab{letter-spacing:11.954133pt;}
.lsa8{letter-spacing:11.959467pt;}
.lsb2{letter-spacing:11.974766pt;}
.lsb1{letter-spacing:12.042125pt;}
.lsaf{letter-spacing:12.074281pt;}
.lsb3{letter-spacing:12.188578pt;}
.lsa7{letter-spacing:12.284071pt;}
.ls34{letter-spacing:13.283878pt;}
.ls50{letter-spacing:13.496002pt;}
.ls4f{letter-spacing:13.923096pt;}
.ls4e{letter-spacing:13.945067pt;}
.ls11{letter-spacing:14.608533pt;}
.ls6{letter-spacing:14.613867pt;}
.lsb5{letter-spacing:14.659179pt;}
.ls30{letter-spacing:15.450333pt;}
.ls2{letter-spacing:15.942400pt;}
.ls31{letter-spacing:15.987773pt;}
.ls5d{letter-spacing:15.989384pt;}
.ls5a{letter-spacing:16.033322pt;}
.ls5c{letter-spacing:16.121197pt;}
.lsb0{letter-spacing:18.512774pt;}
.ls0{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls2b{letter-spacing:104.406012pt;}
.ls2d{letter-spacing:104.495585pt;}
.ls60{letter-spacing:108.928035pt;}
.ls62{letter-spacing:109.007343pt;}
.ls64{letter-spacing:109.015910pt;}
.ws58{word-spacing:-66.800000pt;}
.ws5a{word-spacing:-60.000000pt;}
.ws90{word-spacing:-31.386511pt;}
.wsab{word-spacing:-30.855719pt;}
.ws76{word-spacing:-18.252000pt;}
.ws7b{word-spacing:-18.203760pt;}
.ws73{word-spacing:-18.036000pt;}
.ws9d{word-spacing:-18.020016pt;}
.ws7c{word-spacing:-17.972064pt;}
.ws7d{word-spacing:-17.952480pt;}
.ws79{word-spacing:-17.884080pt;}
.ws78{word-spacing:-17.820000pt;}
.ws9e{word-spacing:-17.588160pt;}
.ws7e{word-spacing:-17.539920pt;}
.ws7a{word-spacing:-17.452080pt;}
.wsce{word-spacing:-17.368000pt;}
.ws74{word-spacing:-16.200000pt;}
.ws9f{word-spacing:-16.178400pt;}
.wsa2{word-spacing:-15.804186pt;}
.wscc{word-spacing:-15.600000pt;}
.wsac{word-spacing:-15.470259pt;}
.wsa9{word-spacing:-15.360415pt;}
.ws8f{word-spacing:-15.155815pt;}
.wsa8{word-spacing:-15.079653pt;}
.ws5b{word-spacing:-15.000000pt;}
.wsa7{word-spacing:-14.969809pt;}
.ws81{word-spacing:-14.940839pt;}
.ws91{word-spacing:-14.887095pt;}
.wsa3{word-spacing:-14.688168pt;}
.ws72{word-spacing:-14.580000pt;}
.wscb{word-spacing:-14.040000pt;}
.ws89{word-spacing:-13.745572pt;}
.ws57{word-spacing:-13.500000pt;}
.ws70{word-spacing:-13.283467pt;}
.ws86{word-spacing:-13.245108pt;}
.ws84{word-spacing:-13.182335pt;}
.wsb9{word-spacing:-13.161331pt;}
.ws69{word-spacing:-12.964108pt;}
.ws1f{word-spacing:-11.955200pt;}
.ws68{word-spacing:-11.926979pt;}
.wsd2{word-spacing:-11.857028pt;}
.ws6c{word-spacing:-11.828272pt;}
.ws77{word-spacing:-10.800000pt;}
.ws2f{word-spacing:-10.626800pt;}
.wscf{word-spacing:-10.400000pt;}
.wsaa{word-spacing:-10.107658pt;}
.ws2{word-spacing:-10.095467pt;}
.ws92{word-spacing:-10.010362pt;}
.ws59{word-spacing:-10.000000pt;}
.ws75{word-spacing:-9.936000pt;}
.ws5d{word-spacing:-9.723081pt;}
.wscd{word-spacing:-9.568000pt;}
.ws7{word-spacing:-9.298400pt;}
.ws5c{word-spacing:-9.200000pt;}
.ws65{word-spacing:-8.945235pt;}
.ws6a{word-spacing:-8.511465pt;}
.ws82{word-spacing:-8.502538pt;}
.wsa4{word-spacing:-8.201199pt;}
.ws5e{word-spacing:-8.167388pt;}
.ws66{word-spacing:-8.157595pt;}
.ws95{word-spacing:-7.577908pt;}
.wsba{word-spacing:-7.359352pt;}
.wsbd{word-spacing:-7.328815pt;}
.ws61{word-spacing:-7.259900pt;}
.ws85{word-spacing:-6.456986pt;}
.wsb4{word-spacing:-6.443250pt;}
.ws88{word-spacing:-6.421032pt;}
.wsb0{word-spacing:-6.412714pt;}
.ws87{word-spacing:-6.305034pt;}
.ws83{word-spacing:-5.826927pt;}
.wsd4{word-spacing:-5.794164pt;}
.wsd7{word-spacing:-5.780946pt;}
.wsda{word-spacing:-5.779138pt;}
.wsd1{word-spacing:-5.776452pt;}
.wsd9{word-spacing:-5.771957pt;}
.wse5{word-spacing:-5.751849pt;}
.wsdc{word-spacing:-5.730083pt;}
.wse1{word-spacing:-5.708316pt;}
.wse9{word-spacing:-5.703858pt;}
.wsb5{word-spacing:-5.608653pt;}
.wsb1{word-spacing:-5.573283pt;}
.wsa5{word-spacing:-5.527148pt;}
.wsae{word-spacing:-5.498808pt;}
.wsb3{word-spacing:-5.463439pt;}
.ws5f{word-spacing:-5.444925pt;}
.ws67{word-spacing:-5.280931pt;}
.wse6{word-spacing:-3.994160pt;}
.wsdd{word-spacing:-3.979045pt;}
.wse2{word-spacing:-3.963930pt;}
.wsea{word-spacing:-3.960835pt;}
.wse7{word-spacing:-3.939606pt;}
.wsde{word-spacing:-3.924697pt;}
.wse3{word-spacing:-3.909789pt;}
.wseb{word-spacing:-3.906735pt;}
.wsec{word-spacing:-3.904937pt;}
.wsb2{word-spacing:-3.694944pt;}
.wsaf{word-spacing:-3.664408pt;}
.wsad{word-spacing:-2.624292pt;}
.ws4c{word-spacing:-2.603559pt;}
.wsa6{word-spacing:-2.461063pt;}
.wsf0{word-spacing:-2.444158pt;}
.wsbb{word-spacing:-2.383623pt;}
.wsbc{word-spacing:-2.326174pt;}
.ws27{word-spacing:-2.284756pt;}
.ws42{word-spacing:-2.231622pt;}
.ws56{word-spacing:-2.178489pt;}
.ws4f{word-spacing:-1.859685pt;}
.wsc1{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.ws116{word-spacing:-1.673728pt;}
.ws93{word-spacing:-1.666065pt;}
.ws10d{word-spacing:-1.578086pt;}
.wsc4{word-spacing:-1.328347pt;}
.ws55{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.ws102{word-spacing:-1.009543pt;}
.ws51{word-spacing:-0.903276pt;}
.ws114{word-spacing:-0.812954pt;}
.ws100{word-spacing:-0.797008pt;}
.ws9a{word-spacing:-0.637606pt;}
.ws31{word-spacing:-0.531339pt;}
.ws32{word-spacing:-0.478205pt;}
.ws10b{word-spacing:-0.430387pt;}
.ws49{word-spacing:-0.371937pt;}
.ws3d{word-spacing:-0.318803pt;}
.ws103{word-spacing:-0.286925pt;}
.ws2b{word-spacing:-0.265669pt;}
.ws1b{word-spacing:-0.239104pt;}
.ws25{word-spacing:-0.212535pt;}
.ws16{word-spacing:-0.191283pt;}
.ws26{word-spacing:-0.159402pt;}
.ws97{word-spacing:-0.143462pt;}
.ws29{word-spacing:-0.106268pt;}
.ws96{word-spacing:-0.095642pt;}
.ws28{word-spacing:-0.053134pt;}
.ws17{word-spacing:-0.047821pt;}
.ws30{word-spacing:-0.042507pt;}
.ws8{word-spacing:-0.037194pt;}
.ws1{word-spacing:-0.003858pt;}
.ws0{word-spacing:0.000000pt;}
.ws63{word-spacing:0.042048pt;}
.wsbe{word-spacing:0.047821pt;}
.ws2d{word-spacing:0.053134pt;}
.ws1a{word-spacing:0.095642pt;}
.ws2c{word-spacing:0.106268pt;}
.ws18{word-spacing:0.143462pt;}
.ws3c{word-spacing:0.159402pt;}
.ws9{word-spacing:0.185968pt;}
.ws1d{word-spacing:0.191283pt;}
.ws36{word-spacing:0.212535pt;}
.ws11c{word-spacing:0.239104pt;}
.wsb{word-spacing:0.260355pt;}
.ws45{word-spacing:0.265669pt;}
.ws19{word-spacing:0.286925pt;}
.ws44{word-spacing:0.318803pt;}
.wsc8{word-spacing:0.371937pt;}
.ws43{word-spacing:0.425071pt;}
.ws10a{word-spacing:0.430387pt;}
.wsf6{word-spacing:0.478205pt;}
.ws3e{word-spacing:0.531339pt;}
.ws8e{word-spacing:0.537440pt;}
.ws1c{word-spacing:0.573850pt;}
.ws9c{word-spacing:0.584473pt;}
.ws107{word-spacing:0.621670pt;}
.ws46{word-spacing:0.743874pt;}
.wsee{word-spacing:0.765133pt;}
.wsed{word-spacing:1.004237pt;}
.ws23{word-spacing:1.009543pt;}
.ws24{word-spacing:1.062677pt;}
.wsfc{word-spacing:1.115811pt;}
.ws9b{word-spacing:1.222079pt;}
.ws15{word-spacing:1.338982pt;}
.wsc6{word-spacing:1.381481pt;}
.ws6e{word-spacing:1.386803pt;}
.ws33{word-spacing:1.487748pt;}
.ws6f{word-spacing:1.530266pt;}
.wsff{word-spacing:1.540882pt;}
.wsbf{word-spacing:1.594016pt;}
.ws6d{word-spacing:1.625907pt;}
.wsc0{word-spacing:1.647150pt;}
.ws41{word-spacing:1.700284pt;}
.wsf8{word-spacing:1.753418pt;}
.wsa{word-spacing:1.785293pt;}
.wsc5{word-spacing:1.806551pt;}
.ws3b{word-spacing:1.912819pt;}
.wsf1{word-spacing:2.019087pt;}
.ws12a{word-spacing:2.104115pt;}
.ws52{word-spacing:2.231622pt;}
.wsf7{word-spacing:2.284756pt;}
.ws110{word-spacing:2.295398pt;}
.ws101{word-spacing:2.337890pt;}
.ws99{word-spacing:2.391024pt;}
.ws3f{word-spacing:2.444158pt;}
.ws48{word-spacing:2.497292pt;}
.ws21{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.ws113{word-spacing:2.582323pt;}
.ws4e{word-spacing:2.762961pt;}
.ws2a{word-spacing:2.816095pt;}
.ws121{word-spacing:2.821427pt;}
.ws1e{word-spacing:2.861926pt;}
.ws105{word-spacing:2.864512pt;}
.ws111{word-spacing:2.865826pt;}
.ws10e{word-spacing:2.868830pt;}
.wsfb{word-spacing:2.869229pt;}
.ws115{word-spacing:2.869248pt;}
.wsca{word-spacing:2.922363pt;}
.ws14{word-spacing:3.060531pt;}
.ws94{word-spacing:3.076308pt;}
.ws54{word-spacing:3.081764pt;}
.ws20{word-spacing:3.188032pt;}
.ws104{word-spacing:3.203994pt;}
.ws35{word-spacing:3.241166pt;}
.ws34{word-spacing:3.294300pt;}
.ws112{word-spacing:3.299635pt;}
.ws71{word-spacing:3.400567pt;}
.ws3a{word-spacing:3.506835pt;}
.ws4b{word-spacing:3.613103pt;}
.wsc3{word-spacing:3.772505pt;}
.wsef{word-spacing:3.878772pt;}
.ws127{word-spacing:3.969126pt;}
.ws4d{word-spacing:4.144442pt;}
.wsf4{word-spacing:4.197575pt;}
.wsf2{word-spacing:4.250709pt;}
.ws120{word-spacing:4.399514pt;}
.wsf5{word-spacing:4.516379pt;}
.ws47{word-spacing:4.782048pt;}
.wsc2{word-spacing:4.835182pt;}
.ws4a{word-spacing:4.941450pt;}
.ws98{word-spacing:5.047717pt;}
.ws6b{word-spacing:5.069293pt;}
.wsf9{word-spacing:5.207119pt;}
.ws118{word-spacing:5.212467pt;}
.wsfa{word-spacing:5.366521pt;}
.ws11{word-spacing:5.393072pt;}
.ws12{word-spacing:5.467459pt;}
.wsfd{word-spacing:6.004127pt;}
.wsfe{word-spacing:6.057261pt;}
.ws50{word-spacing:6.110395pt;}
.ws126{word-spacing:6.312346pt;}
.ws39{word-spacing:6.322930pt;}
.ws11d{word-spacing:6.360166pt;}
.wsc7{word-spacing:6.429198pt;}
.wsf3{word-spacing:6.482332pt;}
.ws11a{word-spacing:6.551450pt;}
.ws22{word-spacing:6.907403pt;}
.ws40{word-spacing:7.013670pt;}
.ws37{word-spacing:7.066804pt;}
.ws38{word-spacing:7.119938pt;}
.ws53{word-spacing:7.491875pt;}
.wsc9{word-spacing:7.545009pt;}
.wsf{word-spacing:7.699075pt;}
.ws6{word-spacing:9.258579pt;}
.ws2e{word-spacing:10.581132pt;}
.ws124{word-spacing:11.620454pt;}
.ws129{word-spacing:11.716096pt;}
.ws123{word-spacing:11.898419pt;}
.ws122{word-spacing:11.906432pt;}
.ws106{word-spacing:11.906688pt;}
.ws125{word-spacing:11.906833pt;}
.ws109{word-spacing:11.907379pt;}
.ws117{word-spacing:12.003021pt;}
.ws64{word-spacing:13.729985pt;}
.ws5{word-spacing:13.763148pt;}
.wsc{word-spacing:14.348669pt;}
.wsd{word-spacing:14.356730pt;}
.ws12c{word-spacing:14.585344pt;}
.ws128{word-spacing:14.769220pt;}
.ws11f{word-spacing:14.771951pt;}
.ws10f{word-spacing:14.773897pt;}
.ws108{word-spacing:14.776627pt;}
.ws10c{word-spacing:14.872269pt;}
.ws11b{word-spacing:14.920090pt;}
.ws11e{word-spacing:15.063552pt;}
.wse{word-spacing:15.732893pt;}
.ws119{word-spacing:17.119846pt;}
.wse8{word-spacing:21.494404pt;}
.wse0{word-spacing:21.511204pt;}
.ws12b{word-spacing:21.519360pt;}
.wse4{word-spacing:21.675254pt;}
.ws10{word-spacing:24.399002pt;}
.wsd8{word-spacing:30.381134pt;}
.wsd0{word-spacing:30.404790pt;}
.wsd5{word-spacing:30.428446pt;}
.wsd3{word-spacing:30.498022pt;}
.ws62{word-spacing:38.198418pt;}
.wsdf{word-spacing:70.479235pt;}
.wsdb{word-spacing:83.478900pt;}
.wsa0{word-spacing:98.949581pt;}
.ws7f{word-spacing:100.520226pt;}
.ws8a{word-spacing:100.677001pt;}
.ws60{word-spacing:120.534960pt;}
.wsd6{word-spacing:127.639801pt;}
.wsb6{word-spacing:314.436501pt;}
.wsb8{word-spacing:316.281886pt;}
.ws8b{word-spacing:318.782691pt;}
.ws8d{word-spacing:320.618945pt;}
.ws8c{word-spacing:342.886887pt;}
.wsb7{word-spacing:352.460662pt;}
.wsa1{word-spacing:984.086253pt;}
.ws80{word-spacing:998.008651pt;}
._27{margin-left:-679.190131pt;}
._2b{margin-left:-673.785612pt;}
._2a{margin-left:-492.974775pt;}
._23{margin-left:-16.927954pt;}
._22{margin-left:-13.045717pt;}
._21{margin-left:-12.066413pt;}
._1e{margin-left:-9.886443pt;}
._1f{margin-left:-8.921713pt;}
._20{margin-left:-7.967047pt;}
._17{margin-left:-6.475605pt;}
._9{margin-left:-5.508550pt;}
._0{margin-left:-3.928048pt;}
._6{margin-left:-2.657885pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._1{width:2.657885pt;}
._1d{width:4.275200pt;}
._26{width:5.180982pt;}
._1c{width:6.078800pt;}
._1b{width:7.682000pt;}
._25{width:8.837675pt;}
._a{width:9.861670pt;}
._4{width:10.861184pt;}
._7{width:11.929442pt;}
._10{width:13.180965pt;}
._b{width:14.107136pt;}
._d{width:15.216173pt;}
._e{width:16.258963pt;}
._2e{width:17.268507pt;}
._c{width:18.363187pt;}
._18{width:19.280867pt;}
._13{width:20.934743pt;}
._16{width:21.997421pt;}
._5{width:23.061099pt;}
._f{width:25.291721pt;}
._14{width:26.726335pt;}
._2d{width:27.795739pt;}
._8{width:29.011008pt;}
._36{width:29.983642pt;}
._35{width:30.921049pt;}
._29{width:32.039722pt;}
._15{width:35.865360pt;}
._19{width:39.425329pt;}
._33{width:78.904320pt;}
._31{width:225.209110pt;}
._30{width:229.793914pt;}
._32{width:249.717919pt;}
._28{width:366.937339pt;}
._2c{width:369.066883pt;}
._11{width:802.025850pt;}
._34{width:2245.736000pt;}
._12{width:2266.989333pt;}
._1a{width:2376.242871pt;}
._2f{width:2471.331383pt;}
._24{width:2566.419895pt;}
.fs3a{font-size:13.181323pt;}
.fs3b{font-size:13.291167pt;}
.fs61{font-size:14.053005pt;}
.fs5b{font-size:14.063989pt;}
.fs57{font-size:14.117617pt;}
.fs5e{font-size:14.171244pt;}
.fs29{font-size:15.048327pt;}
.fs40{font-size:16.476653pt;}
.fs41{font-size:16.586498pt;}
.fs2f{font-size:17.735529pt;}
.fs14{font-size:19.586062pt;}
.fs37{font-size:19.881829pt;}
.fs5f{font-size:20.683506pt;}
.fs58{font-size:20.699673pt;}
.fs52{font-size:20.762436pt;}
.fs48{font-size:20.778603pt;}
.fs4f{font-size:20.794769pt;}
.fs4c{font-size:20.842318pt;}
.fs5c{font-size:20.857533pt;}
.fs28{font-size:20.960170pt;}
.fs27{font-size:22.572491pt;}
.fs2a{font-size:22.679979pt;}
.fs39{font-size:23.067315pt;}
.fs38{font-size:23.177159pt;}
.fs12{font-size:23.316741pt;}
.fs32{font-size:24.812475pt;}
.fs33{font-size:24.948367pt;}
.fs22{font-size:25.206328pt;}
.fs2d{font-size:25.245640pt;}
.fs23{font-size:25.319851pt;}
.fs15{font-size:26.114750pt;}
.fs56{font-size:26.306164pt;}
.fs60{font-size:26.337676pt;}
.fs42{font-size:26.362646pt;}
.fs59{font-size:26.368261pt;}
.fs53{font-size:26.445188pt;}
.fs49{font-size:26.460944pt;}
.fs3f{font-size:26.472490pt;}
.fs50{font-size:26.476700pt;}
.fs5d{font-size:26.524520pt;}
.fs55{font-size:26.553627pt;}
.fs4d{font-size:26.569383pt;}
.fs2e{font-size:26.872013pt;}
.fs1c{font-size:28.446424pt;}
.fs13{font-size:29.379094pt;}
.fs35{font-size:29.767821pt;}
.fs1b{font-size:31.244433pt;}
.fs24{font-size:31.279023pt;}
.fs7{font-size:31.880533pt;}
.fs16{font-size:32.177103pt;}
.fs3d{font-size:32.953307pt;}
.fs3e{font-size:33.063151pt;}
.fs62{font-size:33.276138pt;}
.fs5a{font-size:33.302147pt;}
.fs54{font-size:33.403123pt;}
.fs4a{font-size:33.429132pt;}
.fs51{font-size:33.455141pt;}
.fs4e{font-size:33.531638pt;}
.fs11{font-size:34.975112pt;}
.fs19{font-size:35.068378pt;}
.fs26{font-size:36.008498pt;}
.fs34{font-size:36.358482pt;}
.fs10{font-size:36.800000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs46{font-size:38.272000pt;}
.fsa{font-size:38.755733pt;}
.fs20{font-size:39.744000pt;}
.fse{font-size:40.000000pt;}
.fs3{font-size:40.381867pt;}
.fs47{font-size:41.600000pt;}
.fs4{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs4b{font-size:42.651179pt;}
.fs17{font-size:42.902803pt;}
.fs18{font-size:42.996070pt;}
.fs21{font-size:43.200000pt;}
.fs1a{font-size:46.633482pt;}
.fs9{font-size:47.820800pt;}
.fs2b{font-size:49.444504pt;}
.fs3c{font-size:49.539805pt;}
.fs2c{font-size:49.551992pt;}
.fs30{font-size:49.829333pt;}
.fs36{font-size:52.835135pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.200000pt;}
.fs25{font-size:53.744026pt;}
.fs43{font-size:55.328000pt;}
.fs31{font-size:55.365867pt;}
.fs1d{font-size:57.456000pt;}
.fsf{font-size:60.000000pt;}
.fs45{font-size:62.400000pt;}
.fs1f{font-size:64.800000pt;}
.fsd{font-size:66.800000pt;}
.fs44{font-size:69.472000pt;}
.fs1e{font-size:72.144000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y21e{bottom:-855.263067pt;}
.y11e{bottom:-764.200800pt;}
.y240{bottom:-755.111067pt;}
.y23f{bottom:-732.855067pt;}
.y23e{bottom:-710.599067pt;}
.y23d{bottom:-688.447067pt;}
.y141{bottom:-678.448800pt;}
.y23c{bottom:-666.191067pt;}
.y140{bottom:-655.336800pt;}
.y23b{bottom:-643.900400pt;}
.y13f{bottom:-632.332800pt;}
.y23a{bottom:-621.748400pt;}
.y13e{bottom:-609.220800pt;}
.y239{bottom:-599.492400pt;}
.y13d{bottom:-586.108800pt;}
.y238{bottom:-577.340400pt;}
.y13c{bottom:-563.104800pt;}
.y237{bottom:-555.084400pt;}
.y19c{bottom:-541.076400pt;}
.y13b{bottom:-539.956800pt;}
.y236{bottom:-532.828400pt;}
.y13a{bottom:-516.844800pt;}
.y235{bottom:-510.676400pt;}
.y139{bottom:-493.840800pt;}
.y234{bottom:-488.420400pt;}
.y138{bottom:-470.728800pt;}
.y233{bottom:-466.268400pt;}
.y1bf{bottom:-450.356400pt;}
.y137{bottom:-447.724800pt;}
.y232{bottom:-444.012400pt;}
.y1be{bottom:-427.352400pt;}
.y136{bottom:-424.612800pt;}
.y231{bottom:-421.756400pt;}
.y1bd{bottom:-404.240400pt;}
.y135{bottom:-401.500800pt;}
.y230{bottom:-399.604400pt;}
.y1bc{bottom:-381.236400pt;}
.y134{bottom:-378.496800pt;}
.y22f{bottom:-377.348400pt;}
.y1bb{bottom:-358.124400pt;}
.y133{bottom:-355.384800pt;}
.y22e{bottom:-355.196400pt;}
.y1ba{bottom:-335.012400pt;}
.y22d{bottom:-332.940400pt;}
.y132{bottom:-332.380800pt;}
.y1b9{bottom:-311.972400pt;}
.y22c{bottom:-310.684400pt;}
.y131{bottom:-309.268800pt;}
.y1b8{bottom:-288.860400pt;}
.y22b{bottom:-288.532400pt;}
.y130{bottom:-286.156800pt;}
.y22a{bottom:-266.276400pt;}
.y1b7{bottom:-265.856400pt;}
.y12f{bottom:-263.152800pt;}
.y229{bottom:-244.020400pt;}
.y1b6{bottom:-242.744400pt;}
.y12e{bottom:-240.040800pt;}
.ybc{bottom:-233.441667pt;}
.y228{bottom:-221.868400pt;}
.y1b5{bottom:-219.632400pt;}
.y12d{bottom:-217.036800pt;}
.y227{bottom:-199.612400pt;}
.y1b4{bottom:-196.628400pt;}
.y12c{bottom:-193.924800pt;}
.y226{bottom:-177.460400pt;}
.y1b3{bottom:-173.516400pt;}
.y12b{bottom:-170.812800pt;}
.ye2{bottom:-162.841667pt;}
.y225{bottom:-155.169733pt;}
.y1b2{bottom:-150.512400pt;}
.y12a{bottom:-147.808800pt;}
.ye1{bottom:-143.641667pt;}
.y224{bottom:-132.913733pt;}
.y1b1{bottom:-127.400400pt;}
.ye0{bottom:-124.441667pt;}
.y223{bottom:-110.761733pt;}
.ydf{bottom:-105.141667pt;}
.y129{bottom:-103.636800pt;}
.y222{bottom:-88.505733pt;}
.yde{bottom:-85.941667pt;}
.y1b0{bottom:-83.336400pt;}
.y128{bottom:-82.792800pt;}
.ydd{bottom:-66.741667pt;}
.y1af{bottom:-62.384400pt;}
.y127{bottom:-62.056800pt;}
.ydc{bottom:-47.541667pt;}
.y221{bottom:-46.073733pt;}
.y1ae{bottom:-41.648400pt;}
.y126{bottom:-41.284800pt;}
.ydb{bottom:-28.108333pt;}
.y220{bottom:-26.001733pt;}
.y1ad{bottom:-14.756400pt;}
.y125{bottom:-14.284800pt;}
.yda{bottom:-3.208333pt;}
.y21f{bottom:-0.001733pt;}
.y0{bottom:0.000000pt;}
.y1c3{bottom:1.824089pt;}
.y145{bottom:1.853043pt;}
.y164{bottom:1.855933pt;}
.ya{bottom:3.044747pt;}
.yf2{bottom:5.520697pt;}
.y106{bottom:5.707231pt;}
.y29c{bottom:6.828314pt;}
.y287{bottom:6.833652pt;}
.y266{bottom:6.854372pt;}
.y244{bottom:6.859709pt;}
.y25f{bottom:6.865046pt;}
.y252{bottom:6.880743pt;}
.y291{bottom:6.885767pt;}
.y1cd{bottom:7.987475pt;}
.y16a{bottom:9.344316pt;}
.y1c1{bottom:12.155729pt;}
.y143{bottom:12.348679pt;}
.y162{bottom:12.367939pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:14.009278pt;}
.y29a{bottom:15.625024pt;}
.y285{bottom:15.637236pt;}
.y264{bottom:15.684650pt;}
.y242{bottom:15.696863pt;}
.y25d{bottom:15.709076pt;}
.y250{bottom:15.744995pt;}
.y28f{bottom:15.756490pt;}
.ye4{bottom:19.230746pt;}
.y1cc{bottom:23.667757pt;}
.y169{bottom:25.467523pt;}
.y1c2{bottom:26.593394pt;}
.y144{bottom:27.015516pt;}
.y163{bottom:27.057650pt;}
.y55{bottom:28.346667pt;}
.ye3{bottom:34.969546pt;}
.y27c{bottom:37.325371pt;}
.y24d{bottom:40.203405pt;}
.y25b{bottom:40.723083pt;}
.y26e{bottom:41.301107pt;}
.y27b{bottom:43.895035pt;}
.y24c{bottom:46.754115pt;}
.y25a{bottom:47.293879pt;}
.y26d{bottom:47.845968pt;}
.y1e7{bottom:50.030403pt;}
.y29b{bottom:50.362285pt;}
.y286{bottom:50.401648pt;}
.y265{bottom:50.554472pt;}
.y243{bottom:50.593836pt;}
.y25e{bottom:50.633199pt;}
.y251{bottom:50.748975pt;}
.y290{bottom:50.786023pt;}
.y296{bottom:51.806080pt;}
.yf3{bottom:52.993387pt;}
.y107{bottom:53.040021pt;}
.y15a{bottom:54.139961pt;}
.y26c{bottom:55.604428pt;}
.y27a{bottom:55.818360pt;}
.y1db{bottom:58.213807pt;}
.y295{bottom:58.380918pt;}
.y24b{bottom:59.233396pt;}
.y156{bottom:59.729340pt;}
.y259{bottom:60.349397pt;}
.y26b{bottom:62.148913pt;}
.y279{bottom:62.388024pt;}
.y24a{bottom:65.783353pt;}
.y101{bottom:65.840912pt;}
.y261{bottom:65.862784pt;}
.y28d{bottom:66.827008pt;}
.y258{bottom:66.919439pt;}
.yf0{bottom:68.172586pt;}
.y273{bottom:70.072738pt;}
.y278{bottom:71.676990pt;}
.y26a{bottom:72.530508pt;}
.y28c{bottom:73.352834pt;}
.y249{bottom:74.084180pt;}
.y27e{bottom:75.639052pt;}
.y255{bottom:75.783691pt;}
.y247{bottom:76.511763pt;}
.y277{bottom:78.247787pt;}
.y268{bottom:78.878680pt;}
.y269{bottom:79.076121pt;}
.y248{bottom:80.633761pt;}
.yf5{bottom:81.206644pt;}
.y271{bottom:81.685235pt;}
.y29d{bottom:82.036058pt;}
.y29e{bottom:82.176551pt;}
.y254{bottom:82.354487pt;}
.y18b{bottom:82.692000pt;}
.y276{bottom:82.949087pt;}
.y246{bottom:83.062473pt;}
.y11a{bottom:85.398667pt;}
.y267{bottom:85.423541pt;}
.y294{bottom:86.551508pt;}
.y283{bottom:87.043332pt;}
.yee{bottom:88.551417pt;}
.y298{bottom:89.385757pt;}
.y275{bottom:89.518751pt;}
.y257{bottom:89.801893pt;}
.y1f7{bottom:89.881333pt;}
.y22{bottom:91.398667pt;}
.y28b{bottom:91.494293pt;}
.y282{bottom:91.843171pt;}
.y1f6{bottom:92.308000pt;}
.y29f{bottom:92.687270pt;}
.y2ea{bottom:94.044000pt;}
.y1d9{bottom:94.929283pt;}
.y149{bottom:95.899070pt;}
.y297{bottom:95.961351pt;}
.y54{bottom:95.978667pt;}
.y256{bottom:96.372690pt;}
.y272{bottom:96.520077pt;}
.y262{bottom:96.887323pt;}
.yf4{bottom:96.964875pt;}
.y154{bottom:97.108310pt;}
.y9b{bottom:97.214667pt;}
.y2a1{bottom:97.520964pt;}
.y28a{bottom:98.018994pt;}
.y281{bottom:98.392752pt;}
.y1c7{bottom:98.444303pt;}
.y2c6{bottom:98.968000pt;}
.y18a{bottom:99.428000pt;}
.y118{bottom:99.709333pt;}
.y308{bottom:100.460000pt;}
.yec{bottom:101.540785pt;}
.y117{bottom:102.136000pt;}
.y1df{bottom:103.255486pt;}
.y1e8{bottom:103.420252pt;}
.y2a0{bottom:104.040944pt;}
.ye5{bottom:104.057050pt;}
.y1eb{bottom:106.243252pt;}
.y168{bottom:106.432899pt;}
.y119{bottom:106.957333pt;}
.y21{bottom:107.298667pt;}
.y343{bottom:107.393333pt;}
.y15b{bottom:108.828987pt;}
.y1f5{bottom:109.044000pt;}
.y289{bottom:109.129583pt;}
.y16e{bottom:109.198477pt;}
.y280{bottom:109.545707pt;}
.y293{bottom:109.961830pt;}
.y2a2{bottom:110.280688pt;}
.y53{bottom:110.289333pt;}
.y288{bottom:110.366885pt;}
.y26f{bottom:110.701529pt;}
.y2e9{bottom:110.780000pt;}
.y245{bottom:110.787726pt;}
.y260{bottom:110.873922pt;}
.y253{bottom:111.127441pt;}
.y1da{bottom:111.933190pt;}
.y292{bottom:112.653649pt;}
.y52{bottom:112.716000pt;}
.y102{bottom:113.150579pt;}
.y2c5{bottom:113.278667pt;}
.ye8{bottom:113.480900pt;}
.y9a{bottom:113.952000pt;}
.y155{bottom:114.416126pt;}
.y2a4{bottom:115.478084pt;}
.yf1{bottom:115.482253pt;}
.y2c3{bottom:115.705333pt;}
.y307{bottom:115.802667pt;}
.y189{bottom:116.165333pt;}
.ye7{bottom:118.396846pt;}
.y116{bottom:118.872000pt;}
.y2c4{bottom:120.528000pt;}
.y108{bottom:122.661866pt;}
.y342{bottom:122.736000pt;}
.y20{bottom:123.200000pt;}
.y1e6{bottom:125.246326pt;}
.ye9{bottom:125.255854pt;}
.y1f4{bottom:125.781333pt;}
.ye6{bottom:127.140624pt;}
.yf8{bottom:127.373791pt;}
.y2e8{bottom:127.517333pt;}
.y51{bottom:129.453333pt;}
.y99{bottom:130.689333pt;}
.y306{bottom:131.144000pt;}
.y2c2{bottom:132.442667pt;}
.y188{bottom:132.902667pt;}
.y1d8{bottom:133.100197pt;}
.y158{bottom:135.454673pt;}
.y153{bottom:135.936130pt;}
.y341{bottom:138.078667pt;}
.y1f{bottom:139.100000pt;}
.y1cf{bottom:140.240080pt;}
.yed{bottom:141.111238pt;}
.yf7{bottom:141.966185pt;}
.y1f3{bottom:142.518667pt;}
.yeb{bottom:143.277752pt;}
.y2e7{bottom:144.254667pt;}
.y50{bottom:146.190667pt;}
.y305{bottom:146.486667pt;}
.y98{bottom:147.426667pt;}
.y115{bottom:148.709333pt;}
.y2c1{bottom:149.180000pt;}
.y187{bottom:149.640000pt;}
.yea{bottom:152.837615pt;}
.y340{bottom:153.421333pt;}
.y1e{bottom:155.000000pt;}
.yf6{bottom:157.704985pt;}
.y1f2{bottom:159.256000pt;}
.y304{bottom:159.498667pt;}
.y2e6{bottom:160.992000pt;}
.y303{bottom:161.829333pt;}
.y4f{bottom:162.928000pt;}
.y97{bottom:164.164000pt;}
.y148{bottom:165.036281pt;}
.y114{bottom:165.805333pt;}
.y2c0{bottom:165.917333pt;}
.y186{bottom:166.377333pt;}
.y33f{bottom:168.762667pt;}
.y1d6{bottom:169.843134pt;}
.y1d{bottom:170.901333pt;}
.y109{bottom:171.073250pt;}
.y1cb{bottom:172.424477pt;}
.y151{bottom:173.321818pt;}
.yf9{bottom:174.658199pt;}
.y2e5{bottom:175.302667pt;}
.y4e{bottom:177.238667pt;}
.y2e3{bottom:177.729333pt;}
.y1de{bottom:178.520839pt;}
.y4d{bottom:179.665333pt;}
.y112{bottom:180.569333pt;}
.y96{bottom:180.901333pt;}
.y1ea{bottom:181.157103pt;}
.y302{bottom:181.157333pt;}
.y2e4{bottom:182.552000pt;}
.y2bf{bottom:182.654667pt;}
.yef{bottom:182.887065pt;}
.y111{bottom:182.900000pt;}
.y167{bottom:183.018136pt;}
.y185{bottom:183.114667pt;}
.y33e{bottom:184.105333pt;}
.y16d{bottom:185.436617pt;}
.y1c{bottom:186.801333pt;}
.y1d7{bottom:186.847041pt;}
.y113{bottom:187.240000pt;}
.y1f1{bottom:189.093333pt;}
.y159{bottom:189.982466pt;}
.y152{bottom:190.620677pt;}
.y2e2{bottom:192.040000pt;}
.y2e1{bottom:194.466667pt;}
.y1e2{bottom:194.865679pt;}
.y4c{bottom:196.402667pt;}
.yfc{bottom:197.158854pt;}
.y95{bottom:197.638667pt;}
.y10b{bottom:197.790349pt;}
.y2be{bottom:199.392000pt;}
.y33d{bottom:199.448000pt;}
.y184{bottom:199.852000pt;}
.y110{bottom:199.996000pt;}
.y1b{bottom:202.701333pt;}
.y1ef{bottom:206.188000pt;}
.y1d5{bottom:206.476227pt;}
.y2e0{bottom:208.777333pt;}
.y1f0{bottom:210.528000pt;}
.y10a{bottom:210.614556pt;}
.y4b{bottom:210.713333pt;}
.y301{bottom:211.045333pt;}
.y2df{bottom:211.204000pt;}
.y94{bottom:211.949333pt;}
.y150{bottom:212.095894pt;}
.yfb{bottom:212.926800pt;}
.y4a{bottom:213.140000pt;}
.y93{bottom:214.376000pt;}
.y33c{bottom:214.790667pt;}
.y15c{bottom:215.264552pt;}
.y2bd{bottom:216.129333pt;}
.y183{bottom:216.589333pt;}
.y10e{bottom:217.092000pt;}
.y1ee{bottom:220.953333pt;}
.y10f{bottom:221.432000pt;}
.y1ed{bottom:223.284000pt;}
.y33b{bottom:227.802667pt;}
.y2de{bottom:227.941333pt;}
.y21a{bottom:228.738667pt;}
.y49{bottom:229.877333pt;}
.y33a{bottom:230.133333pt;}
.yfa{bottom:230.220050pt;}
.y10c{bottom:230.647523pt;}
.y92{bottom:231.113333pt;}
.y2bc{bottom:232.866667pt;}
.y182{bottom:233.326667pt;}
.y10d{bottom:234.188000pt;}
.y300{bottom:234.636000pt;}
.y105{bottom:239.226141pt;}
.y1d3{bottom:243.219165pt;}
.y199{bottom:243.221333pt;}
.y2a5{bottom:243.245021pt;}
.y48{bottom:244.188000pt;}
.y2dd{bottom:244.678667pt;}
.y1ce{bottom:245.449005pt;}
.y219{bottom:245.476000pt;}
.y47{bottom:246.614667pt;}
.y91{bottom:247.850667pt;}
.y14e{bottom:249.470385pt;}
.y2bb{bottom:249.604000pt;}
.y1e3{bottom:249.699982pt;}
.y181{bottom:250.064000pt;}
.y104{bottom:252.050348pt;}
.y1e1{bottom:252.336246pt;}
.y1dd{bottom:253.797176pt;}
.yb9{bottom:254.125333pt;}
.y1ec{bottom:255.994063pt;}
.y2ff{bottom:258.228000pt;}
.y166{bottom:259.625767pt;}
.y218{bottom:259.786667pt;}
.y1d4{bottom:260.223071pt;}
.y100{bottom:260.327791pt;}
.y339{bottom:260.818667pt;}
.y46{bottom:260.925333pt;}
.y2dc{bottom:261.416000pt;}
.y217{bottom:262.213333pt;}
.y45{bottom:263.352000pt;}
.y90{bottom:264.588000pt;}
.y103{bottom:264.893986pt;}
.y2ba{bottom:266.341333pt;}
.y14f{bottom:266.780440pt;}
.y180{bottom:266.801333pt;}
.y1e4{bottom:269.471966pt;}
.y15d{bottom:269.758755pt;}
.y1a{bottom:273.154667pt;}
.yff{bottom:274.317836pt;}
.y2db{bottom:275.726667pt;}
.y338{bottom:276.161333pt;}
.y44{bottom:277.662667pt;}
.y2da{bottom:278.153333pt;}
.y216{bottom:278.950667pt;}
.y1d2{bottom:279.248114pt;}
.y43{bottom:280.089333pt;}
.y8f{bottom:281.325333pt;}
.y2fe{bottom:281.820000pt;}
.y2b9{bottom:283.078667pt;}
.y157{bottom:283.362712pt;}
.y17f{bottom:283.538667pt;}
.y14d{bottom:284.650329pt;}
.y1c6{bottom:287.304755pt;}
.yfe{bottom:288.307881pt;}
.y19{bottom:289.054667pt;}
.y337{bottom:291.502667pt;}
.y2d9{bottom:294.890667pt;}
.y215{bottom:295.688000pt;}
.y42{bottom:296.826667pt;}
.y2fd{bottom:297.441333pt;}
.y8e{bottom:298.062667pt;}
.y2b8{bottom:299.816000pt;}
.y17e{bottom:300.276000pt;}
.yfd{bottom:302.297925pt;}
.y18{bottom:304.954667pt;}
.y336{bottom:306.845333pt;}
.y14a{bottom:309.910021pt;}
.y214{bottom:309.998667pt;}
.y41{bottom:311.137333pt;}
.y2d8{bottom:311.628000pt;}
.y213{bottom:312.425333pt;}
.y2fc{bottom:313.062667pt;}
.y1c8{bottom:313.464631pt;}
.y40{bottom:313.564000pt;}
.y8d{bottom:314.800000pt;}
.y1d0{bottom:315.991051pt;}
.y2b7{bottom:316.553333pt;}
.y17d{bottom:317.013333pt;}
.y17{bottom:320.856000pt;}
.y14b{bottom:322.024821pt;}
.y335{bottom:322.188000pt;}
.y1e5{bottom:324.152486pt;}
.y1dc{bottom:325.163055pt;}
.y212{bottom:326.736000pt;}
.y1e9{bottom:327.579630pt;}
.y2d7{bottom:328.365333pt;}
.y211{bottom:329.162667pt;}
.y17c{bottom:331.324000pt;}
.y8c{bottom:331.537333pt;}
.y165{bottom:332.213792pt;}
.y1d1{bottom:332.962004pt;}
.y2b6{bottom:333.290667pt;}
.y17b{bottom:333.750667pt;}
.y3f{bottom:334.285333pt;}
.y16c{bottom:334.979370pt;}
.y2fb{bottom:336.654667pt;}
.y334{bottom:337.530667pt;}
.y15e{bottom:337.912898pt;}
.y14c{bottom:339.301286pt;}
.yd9{bottom:342.891667pt;}
.y2d6{bottom:345.102667pt;}
.y210{bottom:345.900000pt;}
.y1c9{bottom:346.725502pt;}
.y8b{bottom:348.274667pt;}
.y2b5{bottom:350.028000pt;}
.y17a{bottom:350.488000pt;}
.y2fa{bottom:352.276000pt;}
.y333{bottom:352.873333pt;}
.y146{bottom:354.136876pt;}
.y16{bottom:354.688000pt;}
.y2d5{bottom:361.840000pt;}
.y1e0{bottom:362.070758pt;}
.y1c5{bottom:362.273528pt;}
.y20f{bottom:362.637333pt;}
.y1ca{bottom:363.696455pt;}
.yd8{bottom:364.191667pt;}
.y8a{bottom:365.012000pt;}
.y2b4{bottom:366.765333pt;}
.y179{bottom:367.225333pt;}
.y2f9{bottom:367.897333pt;}
.y332{bottom:368.216000pt;}
.y16b{bottom:369.801020pt;}
.y2a3{bottom:369.892364pt;}
.y15{bottom:370.589333pt;}
.y147{bottom:371.905995pt;}
.y2d4{bottom:378.577333pt;}
.y89{bottom:379.322667pt;}
.y20e{bottom:379.374667pt;}
.y88{bottom:381.749333pt;}
.y2b3{bottom:383.502667pt;}
.y2f8{bottom:383.518667pt;}
.y331{bottom:383.558667pt;}
.y178{bottom:383.962667pt;}
.yd7{bottom:385.591667pt;}
.y14{bottom:386.489333pt;}
.y24e{bottom:395.740755pt;}
.y20d{bottom:396.112000pt;}
.y87{bottom:398.486667pt;}
.y330{bottom:398.901333pt;}
.y2f7{bottom:399.140000pt;}
.y2d3{bottom:399.300000pt;}
.y2b2{bottom:400.240000pt;}
.y3e{bottom:401.085333pt;}
.yd6{bottom:406.991667pt;}
.y1ac{bottom:408.315600pt;}
.y86{bottom:412.797333pt;}
.y20c{bottom:412.848000pt;}
.y177{bottom:413.798667pt;}
.y32f{bottom:414.244000pt;}
.y2b1{bottom:414.550667pt;}
.y2f6{bottom:414.761333pt;}
.y85{bottom:415.224000pt;}
.y124{bottom:415.879200pt;}
.y2b0{bottom:416.977333pt;}
.y13{bottom:418.330667pt;}
.yd5{bottom:428.291667pt;}
.y176{bottom:428.562667pt;}
.y2d2{bottom:429.188000pt;}
.y20b{bottom:429.585333pt;}
.y174{bottom:430.894667pt;}
.y2af{bottom:431.288000pt;}
.y1ab{bottom:431.319600pt;}
.y84{bottom:431.961333pt;}
.y2ae{bottom:433.714667pt;}
.y3d{bottom:434.321333pt;}
.y175{bottom:435.234667pt;}
.y1c4{bottom:436.418469pt;}
.y123{bottom:438.883200pt;}
.y32e{bottom:444.928000pt;}
.y173{bottom:445.658667pt;}
.y2d1{bottom:445.925333pt;}
.y83{bottom:446.272000pt;}
.y20a{bottom:446.322667pt;}
.y171{bottom:447.990667pt;}
.y82{bottom:448.698667pt;}
.yd4{bottom:449.725000pt;}
.y12{bottom:450.170667pt;}
.y2ad{bottom:450.452000pt;}
.y3c{bottom:451.616000pt;}
.y172{bottom:452.330667pt;}
.y1aa{bottom:454.431600pt;}
.y21d{bottom:455.240933pt;}
.y32d{bottom:460.270667pt;}
.y122{bottom:461.995200pt;}
.y2d0{bottom:462.662667pt;}
.y209{bottom:463.060000pt;}
.y16f{bottom:465.086667pt;}
.y81{bottom:465.436000pt;}
.y11{bottom:466.070667pt;}
.y21c{bottom:466.576933pt;}
.y2ac{bottom:467.189333pt;}
.y3b{bottom:468.912000pt;}
.y170{bottom:469.425333pt;}
.yd3{bottom:471.025000pt;}
.y32c{bottom:475.613333pt;}
.y1a9{bottom:477.435600pt;}
.y2cf{bottom:479.398667pt;}
.y80{bottom:479.746667pt;}
.y208{bottom:479.797333pt;}
.y10{bottom:481.972000pt;}
.y7f{bottom:482.173333pt;}
.y2aa{bottom:483.926667pt;}
.y11b{bottom:485.024000pt;}
.y121{bottom:485.143200pt;}
.y3a{bottom:486.206667pt;}
.y2ab{bottom:488.748000pt;}
.y32b{bottom:490.956000pt;}
.yd2{bottom:492.425000pt;}
.y2ce{bottom:496.136000pt;}
.y207{bottom:496.534667pt;}
.yf{bottom:497.872000pt;}
.y7e{bottom:498.910667pt;}
.y1a8{bottom:500.547600pt;}
.y2a9{bottom:500.664000pt;}
.y39{bottom:503.501333pt;}
.y32a{bottom:506.298667pt;}
.y120{bottom:508.147200pt;}
.y1c0{bottom:508.915744pt;}
.y2cd{bottom:512.873333pt;}
.y206{bottom:513.272000pt;}
.ye{bottom:513.772000pt;}
.yd1{bottom:513.825000pt;}
.y7d{bottom:515.648000pt;}
.y2a8{bottom:517.400000pt;}
.y37{bottom:518.465333pt;}
.y36{bottom:520.797333pt;}
.y329{bottom:521.641333pt;}
.y1a7{bottom:523.659600pt;}
.y38{bottom:525.137333pt;}
.y205{bottom:527.582667pt;}
.y2cc{bottom:529.610667pt;}
.yd{bottom:529.673333pt;}
.y203{bottom:530.009333pt;}
.y161{bottom:530.346040pt;}
.y11f{bottom:531.259200pt;}
.y7c{bottom:532.384000pt;}
.y204{bottom:534.832000pt;}
.yd0{bottom:535.125000pt;}
.y328{bottom:536.984000pt;}
.y35{bottom:538.092000pt;}
.yc{bottom:545.573333pt;}
.y2cb{bottom:546.348000pt;}
.y1a6{bottom:546.663600pt;}
.y7b{bottom:546.696000pt;}
.y202{bottom:546.746667pt;}
.y2a7{bottom:547.237333pt;}
.y7a{bottom:549.121333pt;}
.y327{bottom:552.325333pt;}
.y34{bottom:555.388000pt;}
.ycf{bottom:556.525000pt;}
.yb{bottom:561.473333pt;}
.y2ca{bottom:563.085333pt;}
.y79{bottom:563.432000pt;}
.y201{bottom:563.484000pt;}
.y2a6{bottom:564.333333pt;}
.y78{bottom:565.858667pt;}
.y326{bottom:567.668000pt;}
.y1a5{bottom:569.775600pt;}
.y33{bottom:572.682667pt;}
.yce{bottom:577.825000pt;}
.y2c9{bottom:579.822667pt;}
.y200{bottom:580.221333pt;}
.y325{bottom:580.680000pt;}
.y8{bottom:581.358715pt;}
.y77{bottom:582.596000pt;}
.y324{bottom:583.010667pt;}
.y21b{bottom:584.269333pt;}
.y270{bottom:584.978962pt;}
.y2f5{bottom:585.044000pt;}
.y25c{bottom:585.405483pt;}
.y27d{bottom:585.618730pt;}
.y32{bottom:589.977333pt;}
.y1a4{bottom:592.887600pt;}
.y2f4{bottom:594.966667pt;}
.y346{bottom:596.022667pt;}
.yb8{bottom:596.560000pt;}
.y11d{bottom:596.707200pt;}
.y1ff{bottom:596.958667pt;}
.y323{bottom:598.353333pt;}
.ycd{bottom:599.225000pt;}
.y76{bottom:599.333333pt;}
.y160{bottom:606.393383pt;}
.y31{bottom:607.273333pt;}
.y11c{bottom:608.479200pt;}
.yb6{bottom:610.870667pt;}
.y1fe{bottom:611.269333pt;}
.yb5{bottom:613.297333pt;}
.y1fd{bottom:613.696000pt;}
.y1a3{bottom:615.891600pt;}
.y75{bottom:616.070667pt;}
.yb7{bottom:618.120000pt;}
.ycc{bottom:620.625000pt;}
.y30{bottom:624.568000pt;}
.yb3{bottom:627.608000pt;}
.y322{bottom:629.038667pt;}
.yb2{bottom:630.034667pt;}
.y1fc{bottom:630.433333pt;}
.y74{bottom:632.808000pt;}
.yb4{bottom:634.857333pt;}
.y1a2{bottom:639.003600pt;}
.y2f{bottom:641.862667pt;}
.y321{bottom:644.381333pt;}
.y1fb{bottom:644.744000pt;}
.yb1{bottom:646.772000pt;}
.ycb{bottom:647.025000pt;}
.y198{bottom:647.170667pt;}
.y73{bottom:649.545333pt;}
.y2e{bottom:659.158667pt;}
.y320{bottom:659.724000pt;}
.y196{bottom:661.481333pt;}
.y1a1{bottom:662.007600pt;}
.yaf{bottom:663.509333pt;}
.y195{bottom:663.908000pt;}
.y72{bottom:666.282667pt;}
.y2c8{bottom:667.494667pt;}
.yb0{bottom:668.332000pt;}
.y197{bottom:668.729333pt;}
.y31f{bottom:675.066667pt;}
.y2d{bottom:676.453333pt;}
.yae{bottom:680.246667pt;}
.y194{bottom:680.645333pt;}
.y15f{bottom:682.575540pt;}
.y71{bottom:683.020000pt;}
.y1a0{bottom:685.119600pt;}
.yca{bottom:688.325000pt;}
.y31e{bottom:690.408000pt;}
.y2c{bottom:693.749333pt;}
.yac{bottom:696.984000pt;}
.y193{bottom:697.382667pt;}
.y70{bottom:699.757333pt;}
.yad{bottom:701.805333pt;}
.y31d{bottom:705.750667pt;}
.y19f{bottom:708.267600pt;}
.y2b{bottom:708.713333pt;}
.yc9{bottom:709.625000pt;}
.y2a{bottom:711.044000pt;}
.y263{bottom:712.826275pt;}
.y24f{bottom:712.829314pt;}
.y241{bottom:713.253402pt;}
.y274{bottom:713.362454pt;}
.yab{bottom:713.721333pt;}
.y192{bottom:714.120000pt;}
.y6f{bottom:716.494667pt;}
.y31c{bottom:721.093333pt;}
.y29{bottom:726.008000pt;}
.y28{bottom:728.338667pt;}
.y1fa{bottom:728.430667pt;}
.yaa{bottom:730.458667pt;}
.y191{bottom:730.857333pt;}
.yc8{bottom:731.025000pt;}
.y19e{bottom:731.271600pt;}
.y6e{bottom:733.232000pt;}
.y345{bottom:734.105333pt;}
.y31b{bottom:736.436000pt;}
.ya9{bottom:747.196000pt;}
.y190{bottom:747.594667pt;}
.y6d{bottom:749.969333pt;}
.y31a{bottom:751.778667pt;}
.yc7{bottom:752.425000pt;}
.y19d{bottom:754.383600pt;}
.y142{bottom:756.876656pt;}
.y27{bottom:762.637333pt;}
.ya8{bottom:763.933333pt;}
.y18f{bottom:764.332000pt;}
.y6c{bottom:766.706667pt;}
.y319{bottom:767.121333pt;}
.yc6{bottom:773.725000pt;}
.y26{bottom:776.984000pt;}
.y6b{bottom:781.017333pt;}
.y18e{bottom:781.069333pt;}
.y318{bottom:782.464000pt;}
.y6a{bottom:783.444000pt;}
.ya7{bottom:784.656000pt;}
.yc5{bottom:795.125000pt;}
.y25{bottom:795.188000pt;}
.y69{bottom:797.754667pt;}
.y18d{bottom:797.806667pt;}
.y68{bottom:800.181333pt;}
.y24{bottom:805.676000pt;}
.y2f2{bottom:812.117333pt;}
.y344{bottom:813.148000pt;}
.y317{bottom:813.149333pt;}
.y67{bottom:814.492000pt;}
.ya6{bottom:814.544000pt;}
.yc4{bottom:816.525000pt;}
.y66{bottom:816.918667pt;}
.y2f3{bottom:819.365333pt;}
.y19b{bottom:819.831600pt;}
.y23{bottom:823.880000pt;}
.y316{bottom:828.490667pt;}
.y65{bottom:831.229333pt;}
.ya5{bottom:831.281333pt;}
.y19a{bottom:831.603600pt;}
.y64{bottom:833.656000pt;}
.y2f1{bottom:836.102667pt;}
.yc3{bottom:837.825000pt;}
.y28e{bottom:839.184009pt;}
.y284{bottom:839.711143pt;}
.y299{bottom:839.817156pt;}
.y27f{bottom:839.927402pt;}
.y315{bottom:841.502667pt;}
.y314{bottom:842.040000pt;}
.y313{bottom:843.833333pt;}
.y2f0{bottom:845.592000pt;}
.y63{bottom:847.966667pt;}
.ya4{bottom:848.018667pt;}
.y62{bottom:850.393333pt;}
.y18c{bottom:852.840000pt;}
.y312{bottom:859.176000pt;}
.yc2{bottom:859.225000pt;}
.y7{bottom:859.606667pt;}
.y1f9{bottom:862.329333pt;}
.ya3{bottom:864.754667pt;}
.y61{bottom:867.130667pt;}
.y311{bottom:874.518667pt;}
.y2ef{bottom:879.066667pt;}
.yc1{bottom:880.525000pt;}
.ya2{bottom:881.492000pt;}
.y60{bottom:883.868000pt;}
.y310{bottom:887.530667pt;}
.y30f{bottom:889.861333pt;}
.y2c7{bottom:895.802667pt;}
.y5f{bottom:898.178667pt;}
.ya1{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y5e{bottom:900.605333pt;}
.yc0{bottom:901.925000pt;}
.y30e{bottom:905.204000pt;}
.y1f8{bottom:912.540000pt;}
.y5d{bottom:914.916000pt;}
.ya0{bottom:914.966667pt;}
.y5c{bottom:917.342667pt;}
.y2ee{bottom:919.789333pt;}
.y30d{bottom:920.546667pt;}
.ybf{bottom:923.358333pt;}
.y5{bottom:925.510667pt;}
.y9f{bottom:931.704000pt;}
.y5b{bottom:934.080000pt;}
.y30c{bottom:935.889333pt;}
.y2ed{bottom:936.526667pt;}
.ybe{bottom:944.658333pt;}
.y9e{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y5a{bottom:950.817333pt;}
.y30b{bottom:951.230667pt;}
.y2ec{bottom:953.264000pt;}
.y9d{bottom:965.178667pt;}
.ybd{bottom:966.058333pt;}
.y30a{bottom:966.573333pt;}
.y59{bottom:967.554667pt;}
.y2eb{bottom:970.001333pt;}
.y3{bottom:975.722667pt;}
.y309{bottom:979.585333pt;}
.y58{bottom:981.865333pt;}
.y9c{bottom:981.916000pt;}
.y57{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.ybb{bottom:1026.658333pt;}
.yba{bottom:1037.558333pt;}
.y56{bottom:1043.020000pt;}
.h6e{height:18.898714pt;}
.h69{height:21.572251pt;}
.h60{height:21.589112pt;}
.h58{height:21.654572pt;}
.h4a{height:21.671433pt;}
.h54{height:21.688295pt;}
.h50{height:21.737886pt;}
.h65{height:21.753755pt;}
.h7{height:22.673858pt;}
.h6b{height:23.086401pt;}
.h63{height:23.104445pt;}
.h5d{height:23.192545pt;}
.h67{height:23.280645pt;}
.h2f{height:23.542403pt;}
.h30{height:23.654509pt;}
.h41{height:24.058489pt;}
.h40{height:24.173053pt;}
.hf{height:25.811318pt;}
.h3a{height:25.878636pt;}
.h3b{height:26.020367pt;}
.h29{height:26.289412pt;}
.h34{height:26.330414pt;}
.h2a{height:26.407814pt;}
.h1e{height:27.236868pt;}
.h5c{height:27.436507pt;}
.h6a{height:27.469373pt;}
.h44{height:27.495415pt;}
.h61{height:27.501273pt;}
.h59{height:27.581505pt;}
.h4b{height:27.597938pt;}
.h43{height:27.609980pt;}
.h55{height:27.614371pt;}
.h5b{height:27.694603pt;}
.h51{height:27.711036pt;}
.h14{height:28.023859pt;}
.h35{height:28.026670pt;}
.h5e{height:28.671905pt;}
.h9{height:29.433775pt;}
.hb{height:30.063343pt;}
.h8{height:30.399505pt;}
.h1c{height:30.641477pt;}
.h3e{height:31.046907pt;}
.h66{height:31.330788pt;}
.h2c{height:32.623044pt;}
.h36{height:33.186336pt;}
.h6f{height:33.235456pt;}
.h1f{height:33.559712pt;}
.hd{height:34.430976pt;}
.h6c{height:34.705972pt;}
.h62{height:34.733099pt;}
.h5a{height:34.838413pt;}
.h4c{height:34.865540pt;}
.h56{height:34.892666pt;}
.h52{height:34.972450pt;}
.ha{height:35.073565pt;}
.h1b{height:36.477948pt;}
.h22{height:36.575223pt;}
.h37{height:36.873667pt;}
.h13{height:36.928037pt;}
.h2e{height:37.555738pt;}
.h3d{height:37.920761pt;}
.h12{height:38.080100pt;}
.h10{height:38.256384pt;}
.h4{height:38.947124pt;}
.hc{height:40.084290pt;}
.h4e{height:44.483846pt;}
.h20{height:44.746283pt;}
.h21{height:44.843558pt;}
.he{height:45.095014pt;}
.h2{height:45.271688pt;}
.h6d{height:46.580334pt;}
.h6{height:48.365611pt;}
.h23{height:48.637264pt;}
.h18{height:48.762695pt;}
.h16{height:49.693164pt;}
.h11{height:50.105236pt;}
.h31{height:51.569073pt;}
.h42{height:51.668468pt;}
.h46{height:51.680891pt;}
.h32{height:51.681179pt;}
.h25{height:53.668617pt;}
.h1d{height:54.672900pt;}
.h3f{height:55.105395pt;}
.h19{height:56.044922pt;}
.h2d{height:56.053340pt;}
.h48{height:58.286719pt;}
.h27{height:60.528516pt;}
.h17{height:62.396680pt;}
.h47{height:64.892547pt;}
.h26{height:67.388414pt;}
.h5{height:68.861952pt;}
.h39{height:86.210703pt;}
.h28{height:87.579142pt;}
.h33{height:87.715733pt;}
.h3{height:91.114522pt;}
.h68{height:138.356727pt;}
.h5f{height:138.464868pt;}
.h57{height:138.884709pt;}
.h49{height:138.992850pt;}
.h53{height:139.100991pt;}
.h4f{height:139.419052pt;}
.h64{height:139.520832pt;}
.h1a{height:318.153309pt;}
.h15{height:324.881667pt;}
.h3c{height:381.568132pt;}
.h38{height:382.933800pt;}
.h2b{height:389.126477pt;}
.h24{height:392.191200pt;}
.h4d{height:409.477989pt;}
.h45{height:410.930000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w9{width:147.482580pt;}
.w7{width:149.678616pt;}
.w11{width:167.694691pt;}
.wb{width:168.760962pt;}
.w2{width:169.178366pt;}
.w12{width:181.204804pt;}
.wf{width:181.733451pt;}
.we{width:181.950005pt;}
.w10{width:182.478652pt;}
.wd{width:182.586929pt;}
.w5{width:642.780000pt;}
.w4{width:644.118333pt;}
.wc{width:648.902800pt;}
.wa{width:649.010267pt;}
.w8{width:676.567800pt;}
.w6{width:686.842200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb7{left:-241.365600pt;}
.xea{left:-238.671000pt;}
.x108{left:-235.036533pt;}
.x97{left:-215.961667pt;}
.x10a{left:-9.009867pt;}
.xb9{left:-6.645600pt;}
.xeb{left:-3.951000pt;}
.x0{left:0.000000pt;}
.x98{left:1.371667pt;}
.xa6{left:4.550353pt;}
.xcb{left:5.693586pt;}
.x121{left:6.653531pt;}
.xf2{left:7.753526pt;}
.x120{left:12.304767pt;}
.x9d{left:19.788202pt;}
.xee{left:21.370078pt;}
.xbb{left:23.270462pt;}
.xa2{left:24.595241pt;}
.x3{left:26.021437pt;}
.xa3{left:27.745486pt;}
.xb8{left:31.586400pt;}
.x9e{left:34.279326pt;}
.x116{left:35.236279pt;}
.x99{left:36.771667pt;}
.xc8{left:38.864464pt;}
.x10f{left:40.934894pt;}
.x11c{left:42.694253pt;}
.x1{left:48.000000pt;}
.x2{left:51.606197pt;}
.xb6{left:53.428000pt;}
.x10e{left:54.560180pt;}
.xc7{left:59.444936pt;}
.x10c{left:62.451266pt;}
.xc9{left:64.421912pt;}
.x11d{left:66.578710pt;}
.xef{left:68.330451pt;}
.xbc{left:69.347901pt;}
.x114{left:71.032060pt;}
.x107{left:72.345333pt;}
.x112{left:73.625712pt;}
.x96{left:74.792000pt;}
.x9b{left:76.130333pt;}
.xf5{left:77.894234pt;}
.x11e{left:81.351262pt;}
.x113{left:83.351234pt;}
.x10b{left:84.390241pt;}
.x119{left:85.474886pt;}
.x11a{left:88.625286pt;}
.x9f{left:90.330341pt;}
.xc6{left:92.212275pt;}
.xf7{left:109.757333pt;}
.xd9{left:113.356000pt;}
.xf8{left:115.382667pt;}
.xda{left:118.981333pt;}
.xa0{left:122.606734pt;}
.x11f{left:125.390566pt;}
.xce{left:127.197333pt;}
.xca{left:128.615946pt;}
.x11b{left:129.814491pt;}
.x115{left:135.076124pt;}
.xa1{left:136.957847pt;}
.x153{left:144.998667pt;}
.x154{left:152.870667pt;}
.xdb{left:154.177333pt;}
.xbe{left:157.312029pt;}
.xbd{left:158.847718pt;}
.xf4{left:160.490347pt;}
.x122{left:163.290516pt;}
.x123{left:165.040977pt;}
.xa5{left:169.432588pt;}
.x155{left:174.457333pt;}
.xf9{left:176.773333pt;}
.xfa{left:182.750667pt;}
.x156{left:183.806667pt;}
.xf0{left:185.929070pt;}
.xd0{left:188.740000pt;}
.xcc{left:190.973879pt;}
.x157{left:192.104000pt;}
.xd1{left:194.717333pt;}
.xa4{left:200.983647pt;}
.x126{left:217.317333pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.xdc{left:225.525333pt;}
.xfb{left:227.550667pt;}
.xdd{left:232.830667pt;}
.x118{left:233.886241pt;}
.xfc{left:234.854667pt;}
.xa9{left:236.919768pt;}
.x13b{left:238.836000pt;}
.x5{left:241.085333pt;}
.x1f{left:243.196000pt;}
.x12f{left:246.968000pt;}
.x3f{left:248.193333pt;}
.x117{left:249.249728pt;}
.x14{left:251.365333pt;}
.xaa{left:253.721072pt;}
.x10{left:257.838667pt;}
.xbf{left:260.270435pt;}
.xe8{left:264.104000pt;}
.x11{left:266.145333pt;}
.x8c{left:268.613333pt;}
.xa8{left:273.954586pt;}
.x101{left:275.072000pt;}
.x7{left:276.736000pt;}
.xd2{left:277.686667pt;}
.xe6{left:280.137333pt;}
.xc{left:281.221333pt;}
.x2f{left:282.792000pt;}
.x8d{left:285.284000pt;}
.x9c{left:287.022266pt;}
.x2a{left:288.601333pt;}
.xd{left:289.924000pt;}
.x2b{left:291.974667pt;}
.x92{left:293.458667pt;}
.x8{left:294.966667pt;}
.x24{left:296.710667pt;}
.x2c{left:298.617333pt;}
.x12{left:299.860000pt;}
.x25{left:302.422667pt;}
.x9{left:304.106667pt;}
.x13{left:305.485333pt;}
.x38{left:307.508000pt;}
.x67{left:308.410667pt;}
.x127{left:311.274667pt;}
.x30{left:312.173333pt;}
.x39{left:313.220000pt;}
.x4a{left:314.620000pt;}
.xfe{left:316.448000pt;}
.x31{left:317.885333pt;}
.x133{left:318.837333pt;}
.x68{left:321.694667pt;}
.x124{left:323.248934pt;}
.x50{left:324.688000pt;}
.x32{left:328.450667pt;}
.x51{left:330.400000pt;}
.x33{left:334.162667pt;}
.x103{left:335.172000pt;}
.x142{left:340.036000pt;}
.x52{left:340.945333pt;}
.x88{left:344.372000pt;}
.x148{left:348.490667pt;}
.x53{left:349.970667pt;}
.xa7{left:351.495323pt;}
.xac{left:355.812325pt;}
.x89{left:357.656000pt;}
.xfd{left:359.109333pt;}
.xab{left:360.596029pt;}
.x138{left:361.750667pt;}
.xc2{left:363.553914pt;}
.x135{left:366.533333pt;}
.xc0{left:368.766288pt;}
.xc1{left:370.649469pt;}
.xd3{left:373.258667pt;}
.x139{left:375.033333pt;}
.x134{left:378.353333pt;}
.x93{left:379.726667pt;}
.xf1{left:383.499853pt;}
.x26{left:389.232000pt;}
.x129{left:390.585333pt;}
.x10d{left:392.440736pt;}
.x111{left:393.613634pt;}
.x27{left:394.944000pt;}
.x3a{left:396.125333pt;}
.xe9{left:397.996000pt;}
.x110{left:399.425111pt;}
.x3b{left:404.872000pt;}
.x77{left:406.053333pt;}
.x152{left:407.070667pt;}
.x28{left:410.682667pt;}
.x78{left:411.765333pt;}
.x5c{left:413.200000pt;}
.x70{left:415.560000pt;}
.xe3{left:417.764000pt;}
.x29{left:419.092000pt;}
.x54{left:420.964000pt;}
.x65{left:423.544000pt;}
.x3c{left:425.057333pt;}
.x94{left:426.852000pt;}
.xc5{left:427.817446pt;}
.x66{left:429.256000pt;}
.x3d{left:430.769333pt;}
.xe4{left:432.001333pt;}
.x95{left:432.902667pt;}
.x55{left:434.248000pt;}
.x20{left:435.264000pt;}
.xd4{left:436.869333pt;}
.x7f{left:438.149333pt;}
.x21{left:440.976000pt;}
.xde{left:442.461333pt;}
.x102{left:445.172000pt;}
.x3e{left:446.817333pt;}
.xc3{left:447.915913pt;}
.x140{left:450.056000pt;}
.x80{left:451.433333pt;}
.x136{left:452.973333pt;}
.xad{left:454.500536pt;}
.xdf{left:455.745333pt;}
.x91{left:456.934667pt;}
.xe5{left:458.349333pt;}
.x7a{left:460.544000pt;}
.x61{left:462.681333pt;}
.x141{left:466.724000pt;}
.x62{left:468.392000pt;}
.xc4{left:469.819095pt;}
.xa{left:471.118667pt;}
.xaf{left:472.604719pt;}
.xb1{left:473.585333pt;}
.x71{left:475.517333pt;}
.xb{left:476.432000pt;}
.xd5{left:480.061333pt;}
.x72{left:481.229333pt;}
.x125{left:482.487620pt;}
.x81{left:485.110667pt;}
.x2d{left:487.845333pt;}
.x106{left:489.468000pt;}
.x40{left:491.694667pt;}
.x7d{left:495.104000pt;}
.x2e{left:496.865333pt;}
.x82{left:498.394667pt;}
.x41{left:499.777333pt;}
.x6f{left:502.458667pt;}
.x63{left:505.784000pt;}
.x7e{left:508.388000pt;}
.x64{left:512.425333pt;}
.x6c{left:515.841333pt;}
.x4b{left:516.981333pt;}
.x42{left:519.758667pt;}
.x6d{left:521.553333pt;}
.x4c{left:522.693333pt;}
.x43{left:525.470667pt;}
.x14b{left:531.128000pt;}
.x8e{left:532.362667pt;}
.x4d{left:533.344000pt;}
.x44{left:535.702667pt;}
.xb4{left:537.365333pt;}
.x8f{left:538.412000pt;}
.x83{left:539.330667pt;}
.x45{left:541.414667pt;}
.x4e{left:543.273333pt;}
.x14c{left:545.608000pt;}
.x84{left:547.654667pt;}
.xf3{left:549.033022pt;}
.x56{left:550.458667pt;}
.x15{left:552.742667pt;}
.x73{left:554.082667pt;}
.xd6{left:555.180000pt;}
.xff{left:556.857333pt;}
.x57{left:558.118667pt;}
.x74{left:559.794667pt;}
.xae{left:561.394940pt;}
.x16{left:562.494667pt;}
.x85{left:565.273333pt;}
.xf6{left:566.528000pt;}
.x7b{left:568.049333pt;}
.x6e{left:571.092000pt;}
.x34{left:573.222667pt;}
.xed{left:575.890705pt;}
.xcd{left:577.989875pt;}
.x58{left:578.916000pt;}
.x35{left:579.865333pt;}
.x8a{left:581.925333pt;}
.x59{left:584.628000pt;}
.x36{left:586.640000pt;}
.x146{left:587.948000pt;}
.xb5{left:589.280000pt;}
.x143{left:590.748000pt;}
.x37{left:593.281333pt;}
.x5a{left:594.234667pt;}
.x8b{left:595.209333pt;}
.x147{left:596.152000pt;}
.x5d{left:597.145333pt;}
.x5b{left:599.946667pt;}
.x130{left:602.345333pt;}
.x79{left:603.234667pt;}
.x5e{left:604.804000pt;}
.x12e{left:606.705333pt;}
.x75{left:610.910667pt;}
.x131{left:611.952000pt;}
.x104{left:613.348000pt;}
.x14d{left:614.449333pt;}
.x144{left:615.482667pt;}
.x76{left:617.553333pt;}
.x150{left:619.190667pt;}
.x132{left:621.162667pt;}
.x128{left:623.846667pt;}
.x5f{left:625.174667pt;}
.xb2{left:628.769333pt;}
.x46{left:630.676000pt;}
.x69{left:631.694667pt;}
.xb3{left:634.394667pt;}
.x47{left:636.388000pt;}
.x60{left:640.294667pt;}
.x1b{left:644.837333pt;}
.x48{left:646.620000pt;}
.x6a{left:648.365333pt;}
.x14e{left:649.733333pt;}
.x9a{left:651.438333pt;}
.x49{left:652.330667pt;}
.x1c{left:654.197333pt;}
.xb0{left:656.157333pt;}
.x4f{left:658.166667pt;}
.x159{left:660.021333pt;}
.x6b{left:661.649333pt;}
.x109{left:663.003467pt;}
.xe{left:664.016000pt;}
.x7c{left:666.444000pt;}
.x137{left:667.540000pt;}
.xf{left:669.329333pt;}
.x13f{left:670.770667pt;}
.x100{left:671.764000pt;}
.xd7{left:674.845333pt;}
.xe0{left:676.545333pt;}
.x105{left:678.396000pt;}
.xec{left:681.489000pt;}
.xd8{left:683.140000pt;}
.x13c{left:684.238667pt;}
.x14f{left:685.284000pt;}
.x149{left:688.385333pt;}
.x12a{left:691.024000pt;}
.xba{left:692.618400pt;}
.x14a{left:696.856000pt;}
.xe1{left:698.348000pt;}
.x13d{left:700.909333pt;}
.xcf{left:703.228000pt;}
.x12b{left:704.308000pt;}
.x12c{left:707.696000pt;}
.x22{left:709.221333pt;}
.xe2{left:710.460000pt;}
.x13a{left:712.257333pt;}
.x13e{left:714.193333pt;}
.x23{left:718.264000pt;}
.x1d{left:720.068000pt;}
.x12d{left:720.978667pt;}
.x17{left:723.454667pt;}
.x151{left:725.248000pt;}
.x1e{left:726.709333pt;}
.x86{left:728.082667pt;}
.x18{left:730.097333pt;}
.x19{left:733.484000pt;}
.x90{left:736.301333pt;}
.xe7{left:738.338667pt;}
.x1a{left:740.126667pt;}
.x87{left:741.365333pt;}
.x145{left:742.684000pt;}
.x158{left:744.221333pt;}
}


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