
/* 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_f03f365b2503.woff")format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight: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_81ff676f2c47.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_709a68dbc977.woff")format("woff");}.ff3{font-family:ff3;line-height:0.906000;font-style:normal;font-weight: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_891bd76b241a.woff")format("woff");}.ff4{font-family:ff4;line-height:0.900000;font-style:normal;font-weight: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_02f85cd7494f.woff")format("woff");}.ff5{font-family:ff5;line-height:1.046387;font-style:normal;font-weight: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_7bc0f5842560.woff")format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight: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_72ed020fc780.woff")format("woff");}.ff7{font-family:ff7;line-height:1.154785;font-style:normal;font-weight: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_0f03711b402b.woff")format("woff");}.ff8{font-family:ff8;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_a8646592fc76.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_09c2ad3e1c16.woff")format("woff");}.ffa{font-family:ffa;line-height:0.909180;font-style:normal;font-weight: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_2d5568f8ab1f.woff")format("woff");}.ffb{font-family:ffb;line-height:0.687500;font-style:normal;font-weight: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_cbb36faeff48.woff")format("woff");}.ffc{font-family:ffc;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:ffd;src:url("fonts/font_0012_9677e8f93ada.woff")format("woff");}.ffd{font-family:ffd;line-height:0.666992;font-style:normal;font-weight: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_26b4dc46f2b7.woff")format("woff");}.ffe{font-family:ffe;line-height:0.675781;font-style:normal;font-weight: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_b30353b47d1a.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_681c1fe21f1d.woff")format("woff");}.ff10{font-family:ff10;line-height:0.689453;font-style:normal;font-weight: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_9d922fdb32cc.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_c3b837ee0919.woff")format("woff");}.ff12{font-family:ff12;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_ee3d855d9927.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_d90c98c48656.woff")format("woff");}.ff14{font-family:ff14;line-height:0.675781;font-style:normal;font-weight: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_4d18a3ef2509.woff")format("woff");}.ff15{font-family:ff15;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_64b9c4e1fde4.woff")format("woff");}.ff16{font-family:ff16;line-height:0.690918;font-style:normal;font-weight: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_3aa6a12ab3c7.woff")format("woff");}.ff17{font-family:ff17;line-height:0.905762;font-style:normal;font-weight: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_589cfbc2bab7.woff")format("woff");}.ff18{font-family:ff18;line-height:0.717285;font-style:normal;font-weight: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_30eca8098890.woff")format("woff");}.ff19{font-family:ff19;line-height:0.689453;font-style:normal;font-weight: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_7a490b4f6e6f.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.706055;font-style:normal;font-weight: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_3bc4b2aab16a.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.859863;font-style:normal;font-weight: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_b1e7225c478c.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.699219;font-style:normal;font-weight: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_4d40df18e0be.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.863770;font-style:normal;font-weight: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_a11f11d8b19b.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.698730;font-style:normal;font-weight: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_1689ebab6ae8.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.685059;font-style:normal;font-weight: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_555e8c102fc6.woff")format("woff");}.ff20{font-family:ff20;line-height:1.046387;font-style:normal;font-weight: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_1872cbf661d3.woff")format("woff");}.ff21{font-family:ff21;line-height:0.706055;font-style:normal;font-weight: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_bb988c9f2811.woff")format("woff");}.ff22{font-family:ff22;line-height:0.666992;font-style:normal;font-weight: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_a397707bd274.woff")format("woff");}.ff23{font-family:ff23;line-height:1.046387;font-style:normal;font-weight: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_7012c8dd1625.woff")format("woff");}.ff24{font-family:ff24;line-height:0.893555;font-style:normal;font-weight: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_bfd6cfc25d5b.woff")format("woff");}.ff25{font-family:ff25;line-height:0.966309;font-style:normal;font-weight: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_9ef17ab9614c.woff")format("woff");}.ff26{font-family:ff26;line-height:0.875977;font-style:normal;font-weight: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_b0378d58d306.woff")format("woff");}.ff27{font-family:ff27;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:ff28;src:url("fonts/font_0039_d70eed27d1b0.woff")format("woff");}.ff28{font-family:ff28;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_f6eef88a2073.woff")format("woff");}.ff29{font-family:ff29;line-height:1.046387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_740e5a31a3a3.woff")format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url("fonts/font_0042_2f982d163e74.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0043_1eda8b0ac6ba.woff")format("woff");}.ff2c{font-family:ff2c;line-height:1.046387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url("fonts/font_0044_8b982f859ef4.woff")format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url("fonts/font_0045_b8550a8c95e9.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url("fonts/font_0046_9b1f18ce978a.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.875977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url("fonts/font_0047_222c9e97f5ba.woff")format("woff");}.ff30{font-family:ff30;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url("fonts/font_0048_10d601bd5df6.woff")format("woff");}.ff31{font-family:ff31;line-height:1.046387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url("fonts/font_0049_68b31c168950.woff")format("woff");}.ff32{font-family:ff32;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url("fonts/font_0050_e515d9ac658e.woff")format("woff");}.ff33{font-family:ff33;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:ff34;src:url("fonts/font_0051_4adf8f520c0e.woff")format("woff");}.ff34{font-family:ff34;line-height:0.875977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url("fonts/font_0052_b8550a8c95e9.woff")format("woff");}.ff35{font-family:ff35;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url("fonts/font_0053_0b0a6fcc625e.woff")format("woff");}.ff36{font-family:ff36;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url("fonts/font_0054_a3d94e4b86bf.woff")format("woff");}.ff37{font-family:ff37;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url("fonts/font_0055_361a41f131b7.woff")format("woff");}.ff38{font-family:ff38;line-height:1.046387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url("fonts/font_0056_64aa9c9403c5.woff")format("woff");}.ff39{font-family:ff39;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:ff3a;src:url("fonts/font_0057_621fe106f4df.woff")format("woff");}.ff3a{font-family:ff3a;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url("fonts/font_0058_5683999576f7.woff")format("woff");}.ff3b{font-family:ff3b;line-height:0.683105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url("fonts/font_0059_3eded5161d88.woff")format("woff");}.ff3c{font-family:ff3c;line-height:0.685059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url("fonts/font_0060_08aba1320cd6.woff")format("woff");}.ff3d{font-family:ff3d;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url("fonts/font_0061_1bde58963df4.woff")format("woff");}.ff3e{font-family:ff3e;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url("fonts/font_0062_a6740c0bf5d5.woff")format("woff");}.ff3f{font-family:ff3f;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url("fonts/font_0063_9fc6d5399879.woff")format("woff");}.ff40{font-family:ff40;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:ff41;src:url("fonts/font_0064_06245bca77a0.woff")format("woff");}.ff41{font-family:ff41;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url("fonts/font_0065_5f9e6bc64f39.woff")format("woff");}.ff42{font-family:ff42;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:ff43;src:url("fonts/font_0066_2ace273bc599.woff")format("woff");}.ff43{font-family:ff43;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:ff44;src:url("fonts/font_0067_2c2f466d3c52.woff")format("woff");}.ff44{font-family:ff44;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url("fonts/font_0068_8a0847fc647d.woff")format("woff");}.ff45{font-family:ff45;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:ff46;src:url("fonts/font_0069_74de04d0219a.woff")format("woff");}.ff46{font-family:ff46;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url("fonts/font_0070_80d1f5493784.woff")format("woff");}.ff47{font-family:ff47;line-height:0.666992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url("fonts/font_0071_36b2b6049f35.woff")format("woff");}.ff48{font-family:ff48;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url("fonts/font_0072_7482611847c5.woff")format("woff");}.ff49{font-family:ff49;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url("fonts/font_0073_9c740c25c6a5.woff")format("woff");}.ff4a{font-family:ff4a;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url("fonts/font_0074_4c4052ec1c82.woff")format("woff");}.ff4b{font-family:ff4b;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:ff4c;src:url("fonts/font_0075_5887ecb6a5a6.woff")format("woff");}.ff4c{font-family:ff4c;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url("fonts/font_0076_1cd4a524eb29.woff")format("woff");}.ff4d{font-family:ff4d;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url("fonts/font_0077_905a34ac835f.woff")format("woff");}.ff4e{font-family:ff4e;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url("fonts/font_0078_b315fd303b08.woff")format("woff");}.ff4f{font-family:ff4f;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url("fonts/font_0079_5a0ad3702857.woff")format("woff");}.ff50{font-family:ff50;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url("fonts/font_0080_8d3de4613f42.woff")format("woff");}.ff51{font-family:ff51;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url("fonts/font_0081_9d4953ff68d9.woff")format("woff");}.ff52{font-family:ff52;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:ff53;src:url("fonts/font_0082_1373a183582a.woff")format("woff");}.ff53{font-family:ff53;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url("fonts/font_0083_2df9a9da4917.woff")format("woff");}.ff54{font-family:ff54;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:ff55;src:url("fonts/font_0084_04646a4df5d6.woff")format("woff");}.ff55{font-family:ff55;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:ff56;src:url("fonts/font_0085_338b630fed6d.woff")format("woff");}.ff56{font-family:ff56;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url("fonts/font_0086_10102eec1b84.woff")format("woff");}.ff57{font-family:ff57;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url("fonts/font_0087_156fbf66faf7.woff")format("woff");}.ff58{font-family:ff58;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:ff59;src:url("fonts/font_0088_e3c7ffee0d2d.woff")format("woff");}.ff59{font-family:ff59;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:ff5a;src:url("fonts/font_0089_f989400a299d.woff")format("woff");}.ff5a{font-family:ff5a;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url("fonts/font_0090_c81989f13fa3.woff")format("woff");}.ff5b{font-family:ff5b;line-height:0.889648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url("fonts/font_0091_40125d917864.woff")format("woff");}.ff5c{font-family:ff5c;line-height:0.698730;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url("fonts/font_0092_ac0a85bd4bac.woff")format("woff");}.ff5d{font-family:ff5d;line-height:1.218750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url("fonts/font_0093_a53bced3cf4b.woff")format("woff");}.ff5e{font-family:ff5e;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url("fonts/font_0094_f7fc6429c80d.woff")format("woff");}.ff5f{font-family:ff5f;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url("fonts/font_0095_9b8feaf87c44.woff")format("woff");}.ff60{font-family:ff60;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url("fonts/font_0096_e8073bc18206.woff")format("woff");}.ff61{font-family:ff61;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:ff62;src:url("fonts/font_0097_dd34c98a59ef.woff")format("woff");}.ff62{font-family:ff62;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url("fonts/font_0098_4a5e711acede.woff")format("woff");}.ff63{font-family:ff63;line-height:0.666992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url("fonts/font_0099_c4bd7e96ae29.woff")format("woff");}.ff64{font-family:ff64;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url("fonts/font_0100_9abee6937d36.woff")format("woff");}.ff65{font-family:ff65;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:ff66;src:url("fonts/font_0101_b83f9170436e.woff")format("woff");}.ff66{font-family:ff66;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url("fonts/font_0102_bae56ff22709.woff")format("woff");}.ff67{font-family:ff67;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17{transform:matrix(0.152207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152207,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.158034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158034,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m18{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248696,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,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);}
.m9{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m13{transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.255423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255423,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.255951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255951,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-41.760000px;}
.v9{vertical-align:-38.850356px;}
.v4{vertical-align:-33.119400px;}
.v15{vertical-align:-30.239400px;}
.v13{vertical-align:-27.360000px;}
.v8{vertical-align:-24.023409px;}
.v17{vertical-align:-17.988198px;}
.vd{vertical-align:-14.798721px;}
.v12{vertical-align:-11.520000px;}
.v1{vertical-align:-8.640000px;}
.vf{vertical-align:-5.760000px;}
.v14{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.640000px;}
.v1b{vertical-align:11.520600px;}
.vc{vertical-align:15.242724px;}
.v18{vertical-align:17.988198px;}
.v21{vertical-align:19.914750px;}
.v1d{vertical-align:21.042000px;}
.v11{vertical-align:24.480600px;}
.v10{vertical-align:27.360000px;}
.vb{vertical-align:30.109085px;}
.v2{vertical-align:33.120600px;}
.v1f{vertical-align:35.856000px;}
.v5{vertical-align:41.760600px;}
.v1c{vertical-align:48.174536px;}
.v7{vertical-align:52.551206px;}
.va{vertical-align:54.196353px;}
.v20{vertical-align:58.429125px;}
.ve{vertical-align:61.817441px;}
.v19{vertical-align:64.082955px;}
.v1e{vertical-align:69.138000px;}
.v16{vertical-align:73.769471px;}
.v1a{vertical-align:79.073119px;}
.ls8c{letter-spacing:-2.460000px;}
.ls6f{letter-spacing:-1.800000px;}
.ls86{letter-spacing:-1.656000px;}
.ls31{letter-spacing:-1.368000px;}
.ls3c{letter-spacing:-1.294560px;}
.ls60{letter-spacing:-1.224000px;}
.ls5e{letter-spacing:-0.864000px;}
.ls73{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.665280px;}
.ls2d{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.576000px;}
.ls81{letter-spacing:-0.475200px;}
.ls34{letter-spacing:-0.432000px;}
.ls8b{letter-spacing:-0.427680px;}
.ls48{letter-spacing:-0.413280px;}
.ls1d{letter-spacing:-0.332640px;}
.ls75{letter-spacing:-0.300000px;}
.ls49{letter-spacing:-0.295200px;}
.ls4a{letter-spacing:-0.236160px;}
.lsd{letter-spacing:-0.216000px;}
.ls3d{letter-spacing:-0.190080px;}
.ls5{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010553px;}
.ls32{letter-spacing:0.015840px;}
.ls56{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.042564px;}
.ls4b{letter-spacing:0.059040px;}
.ls7{letter-spacing:0.072000px;}
.ls37{letter-spacing:0.113760px;}
.ls38{letter-spacing:0.116640px;}
.ls3f{letter-spacing:0.125280px;}
.lsb{letter-spacing:0.144000px;}
.ls52{letter-spacing:0.146880px;}
.ls51{letter-spacing:0.185760px;}
.ls50{letter-spacing:0.214560px;}
.ls62{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.250560px;}
.ls19{letter-spacing:0.282490px;}
.ls26{letter-spacing:0.283025px;}
.ls2c{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.295200px;}
.ls4d{letter-spacing:0.324000px;}
.ls7c{letter-spacing:0.360000px;}
.ls4f{letter-spacing:0.368640px;}
.ls58{letter-spacing:0.432000px;}
.ls43{letter-spacing:0.499680px;}
.ls9{letter-spacing:0.504000px;}
.ls44{letter-spacing:0.552960px;}
.lsf{letter-spacing:0.558720px;}
.ls79{letter-spacing:0.565920px;}
.lse{letter-spacing:0.570240px;}
.ls41{letter-spacing:0.573120px;}
.ls40{letter-spacing:0.576000px;}
.ls46{letter-spacing:0.590400px;}
.ls36{letter-spacing:0.636480px;}
.ls2e{letter-spacing:0.648000px;}
.ls39{letter-spacing:0.653760px;}
.ls45{letter-spacing:0.707040px;}
.ls42{letter-spacing:0.708480px;}
.ls4{letter-spacing:0.712800px;}
.ls3{letter-spacing:0.720000px;}
.ls4e{letter-spacing:0.738720px;}
.ls21{letter-spacing:0.763164px;}
.ls9b{letter-spacing:0.792000px;}
.ls55{letter-spacing:1.074240px;}
.ls8{letter-spacing:1.080000px;}
.ls3e{letter-spacing:1.188000px;}
.ls74{letter-spacing:1.200000px;}
.ls2f{letter-spacing:1.296000px;}
.ls7b{letter-spacing:1.440000px;}
.ls53{letter-spacing:1.939680px;}
.ls59{letter-spacing:1.944000px;}
.ls54{letter-spacing:1.992960px;}
.ls23{letter-spacing:2.007381px;}
.ls12{letter-spacing:2.011210px;}
.ls1b{letter-spacing:2.012744px;}
.ls17{letter-spacing:2.016556px;}
.ls30{letter-spacing:2.088000px;}
.ls5b{letter-spacing:2.160000px;}
.ls6e{letter-spacing:2.376000px;}
.ls28{letter-spacing:2.411255px;}
.lsc{letter-spacing:2.520000px;}
.ls6d{letter-spacing:2.538720px;}
.ls24{letter-spacing:2.903546px;}
.ls13{letter-spacing:2.909085px;}
.ls1c{letter-spacing:2.911305px;}
.ls27{letter-spacing:2.916818px;}
.ls70{letter-spacing:2.970000px;}
.ls76{letter-spacing:3.000000px;}
.ls20{letter-spacing:3.011071px;}
.ls1e{letter-spacing:3.347883px;}
.ls57{letter-spacing:3.600000px;}
.ls3a{letter-spacing:3.960000px;}
.ls82{letter-spacing:4.860702px;}
.ls93{letter-spacing:4.868639px;}
.ls96{letter-spacing:4.878720px;}
.ls22{letter-spacing:4.916922px;}
.ls11{letter-spacing:4.926300px;}
.ls1a{letter-spacing:4.930059px;}
.ls16{letter-spacing:4.939395px;}
.ls77{letter-spacing:5.040000px;}
.ls8d{letter-spacing:5.369436px;}
.ls14{letter-spacing:5.389502px;}
.ls88{letter-spacing:5.400000px;}
.ls83{letter-spacing:5.689606px;}
.ls7f{letter-spacing:5.698897px;}
.ls7d{letter-spacing:5.710697px;}
.ls72{letter-spacing:6.000000px;}
.ls4c{letter-spacing:6.480000px;}
.ls15{letter-spacing:7.527271px;}
.ls35{letter-spacing:7.920000px;}
.ls7a{letter-spacing:8.268480px;}
.ls7e{letter-spacing:8.280000px;}
.ls90{letter-spacing:8.368704px;}
.ls18{letter-spacing:8.562271px;}
.ls33{letter-spacing:9.360000px;}
.ls99{letter-spacing:9.764037px;}
.ls97{letter-spacing:9.859268px;}
.ls80{letter-spacing:10.800000px;}
.ls8e{letter-spacing:11.494944px;}
.ls98{letter-spacing:11.741346px;}
.ls8a{letter-spacing:12.575520px;}
.ls5c{letter-spacing:12.600000px;}
.ls6c{letter-spacing:13.680000px;}
.ls89{letter-spacing:14.040000px;}
.ls78{letter-spacing:15.120000px;}
.ls66{letter-spacing:17.447042px;}
.ls63{letter-spacing:17.482990px;}
.ls2b{letter-spacing:17.890060px;}
.ls61{letter-spacing:18.000000px;}
.ls9a{letter-spacing:18.360000px;}
.ls6b{letter-spacing:18.959560px;}
.ls91{letter-spacing:19.009944px;}
.ls5a{letter-spacing:19.440000px;}
.ls87{letter-spacing:20.880000px;}
.ls29{letter-spacing:20.980465px;}
.ls1f{letter-spacing:23.603023px;}
.ls5f{letter-spacing:23.760000px;}
.ls67{letter-spacing:24.532529px;}
.ls5d{letter-spacing:28.080000px;}
.ls68{letter-spacing:30.576938px;}
.ls64{letter-spacing:33.549007px;}
.ls71{letter-spacing:40.590000px;}
.ls2a{letter-spacing:42.744700px;}
.ls94{letter-spacing:50.279161px;}
.ls25{letter-spacing:51.701860px;}
.ls84{letter-spacing:55.833444px;}
.ls10{letter-spacing:66.474273px;}
.ls92{letter-spacing:233.630829px;}
.ls8f{letter-spacing:265.193829px;}
.ls65{letter-spacing:283.527907px;}
.ls85{letter-spacing:338.465079px;}
.ls6a{letter-spacing:353.638974px;}
.ls69{letter-spacing:455.009963px;}
.ls95{letter-spacing:664.760418px;}
.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;}
}
.ws3d{word-spacing:-76.200000px;}
.ws37{word-spacing:-75.000000px;}
.ws3e{word-spacing:-74.700000px;}
.ws36{word-spacing:-61.500000px;}
.ws51{word-spacing:-59.040000px;}
.ws35{word-spacing:-49.500000px;}
.ws38{word-spacing:-40.500000px;}
.ws3a{word-spacing:-36.600000px;}
.ws3b{word-spacing:-30.012000px;}
.ws40{word-spacing:-19.296000px;}
.ws28{word-spacing:-18.720000px;}
.ws34{word-spacing:-18.648000px;}
.ws8{word-spacing:-18.504000px;}
.ws13{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws42{word-spacing:-18.102856px;}
.ws45{word-spacing:-18.065451px;}
.ws4d{word-spacing:-18.036000px;}
.wsc{word-spacing:-18.017556px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.999993px;}
.ws10{word-spacing:-17.983256px;}
.ws2c{word-spacing:-17.974287px;}
.ws3{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.784000px;}
.ws18{word-spacing:-17.568000px;}
.ws6{word-spacing:-17.424000px;}
.ws52{word-spacing:-17.136000px;}
.ws16{word-spacing:-16.632000px;}
.ws4f{word-spacing:-16.344000px;}
.ws1f{word-spacing:-15.468480px;}
.ws22{word-spacing:-15.350400px;}
.ws1e{word-spacing:-15.055200px;}
.ws23{word-spacing:-14.819040px;}
.ws1d{word-spacing:-14.760000px;}
.ws21{word-spacing:-14.523840px;}
.ws20{word-spacing:-14.346720px;}
.ws1b{word-spacing:-13.068000px;}
.ws41{word-spacing:-12.600000px;}
.wsa{word-spacing:-12.592800px;}
.ws5{word-spacing:-11.880000px;}
.ws1a{word-spacing:-11.689920px;}
.ws50{word-spacing:-11.452320px;}
.ws49{word-spacing:-11.404800px;}
.ws4{word-spacing:-11.214720px;}
.ws44{word-spacing:-10.465714px;}
.ws25{word-spacing:-10.458720px;}
.ws47{word-spacing:-10.444089px;}
.ws4e{word-spacing:-10.427063px;}
.wsf{word-spacing:-10.424349px;}
.wsd{word-spacing:-10.416400px;}
.ws14{word-spacing:-10.396570px;}
.ws2e{word-spacing:-10.391385px;}
.ws53{word-spacing:-10.364625px;}
.ws26{word-spacing:-9.720000px;}
.ws2a{word-spacing:-9.288000px;}
.ws17{word-spacing:-8.784000px;}
.ws1c{word-spacing:-7.200000px;}
.ws5f{word-spacing:-3.992465px;}
.ws4c{word-spacing:-3.985956px;}
.ws46{word-spacing:-3.669545px;}
.ws11{word-spacing:-2.769421px;}
.ws43{word-spacing:-2.748240px;}
.ws48{word-spacing:-2.742561px;}
.ws4b{word-spacing:-2.738090px;}
.ws61{word-spacing:-2.023330px;}
.ws27{word-spacing:-0.792000px;}
.ws4a{word-spacing:-0.720000px;}
.ws3c{word-spacing:-0.300000px;}
.ws39{word-spacing:-0.246000px;}
.ws3f{word-spacing:-0.144000px;}
.ws57{word-spacing:-0.072144px;}
.wsb{word-spacing:-0.072000px;}
.ws2f{word-spacing:-0.071953px;}
.ws24{word-spacing:-0.059040px;}
.ws2b{word-spacing:-0.047520px;}
.ws19{word-spacing:-0.041760px;}
.ws59{word-spacing:-0.041708px;}
.ws32{word-spacing:-0.041598px;}
.ws58{word-spacing:-0.030248px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.504000px;}
.wse{word-spacing:0.777976px;}
.ws12{word-spacing:0.779449px;}
.ws29{word-spacing:1.152000px;}
.ws5b{word-spacing:8.945856px;}
.ws5d{word-spacing:13.125000px;}
.ws60{word-spacing:13.643179px;}
.ws56{word-spacing:14.957856px;}
.ws5a{word-spacing:17.939808px;}
.ws54{word-spacing:18.432792px;}
.ws2d{word-spacing:23.617839px;}
.ws31{word-spacing:34.930832px;}
.ws30{word-spacing:48.622099px;}
.ws55{word-spacing:84.471606px;}
.ws5e{word-spacing:191.243132px;}
.ws5c{word-spacing:237.941411px;}
.ws33{word-spacing:546.110641px;}
._111{margin-left:-11580.740719px;}
._d9{margin-left:-11418.223112px;}
._62{margin-left:-11416.334390px;}
._80{margin-left:-10898.484000px;}
._6e{margin-left:-10861.053903px;}
._87{margin-left:-9739.458150px;}
._42{margin-left:-9555.672832px;}
._c3{margin-left:-8464.254683px;}
._e7{margin-left:-8450.399951px;}
._b3{margin-left:-7406.451160px;}
._8c{margin-left:-7177.280428px;}
._10e{margin-left:-7140.501386px;}
._92{margin-left:-6995.738390px;}
._fa{margin-left:-6939.692186px;}
._79{margin-left:-6921.270683px;}
._46{margin-left:-6745.740105px;}
._e1{margin-left:-6697.494182px;}
._b1{margin-left:-6565.920000px;}
._63{margin-left:-6397.310390px;}
._39{margin-left:-6371.364000px;}
._e0{margin-left:-6295.743006px;}
._6c{margin-left:-6207.085580px;}
._7d{margin-left:-6154.278414px;}
._4c{margin-left:-6121.824000px;}
._9b{margin-left:-6036.698390px;}
._85{margin-left:-5959.418390px;}
._c8{margin-left:-5948.980675px;}
._a4{margin-left:-5899.392000px;}
._88{margin-left:-5886.908339px;}
._58{margin-left:-5864.181893px;}
._d2{margin-left:-5862.312000px;}
._aa{margin-left:-5835.768408px;}
._e4{margin-left:-5722.002679px;}
._e5{margin-left:-5693.399119px;}
._d6{margin-left:-5685.648000px;}
._be{margin-left:-5535.204000px;}
._44{margin-left:-5533.327171px;}
._100{margin-left:-5458.755006px;}
._bf{margin-left:-5388.132000px;}
._d5{margin-left:-5347.869826px;}
._7e{margin-left:-5262.830390px;}
._59{margin-left:-5241.459523px;}
._10c{margin-left:-5133.400586px;}
._cd{margin-left:-4663.860558px;}
._c0{margin-left:-4580.832000px;}
._a1{margin-left:-4578.864000px;}
._3d{margin-left:-4552.073180px;}
._103{margin-left:-4455.905406px;}
._56{margin-left:-4443.362186px;}
._7a{margin-left:-4352.888186px;}
._93{margin-left:-4319.472000px;}
._fc{margin-left:-4289.168400px;}
._8b{margin-left:-4229.104663px;}
._51{margin-left:-4222.525503px;}
._db{margin-left:-4172.982683px;}
._9a{margin-left:-4052.472000px;}
._ca{margin-left:-4036.097418px;}
._c2{margin-left:-4020.012000px;}
._ff{margin-left:-3931.945580px;}
._77{margin-left:-3880.263903px;}
._101{margin-left:-3825.731329px;}
._f5{margin-left:-3791.049207px;}
._5b{margin-left:-3758.642186px;}
._95{margin-left:-3747.360000px;}
._108{margin-left:-3705.471386px;}
._da{margin-left:-3671.238820px;}
._b2{margin-left:-3396.560719px;}
._6a{margin-left:-3378.223442px;}
._3b{margin-left:-3281.657396px;}
._f9{margin-left:-3154.249503px;}
._98{margin-left:-3151.968000px;}
._9c{margin-left:-3145.224000px;}
._d8{margin-left:-3129.552000px;}
._106{margin-left:-3091.333503px;}
._f0{margin-left:-3077.508000px;}
._8a{margin-left:-3052.155160px;}
._a5{margin-left:-3034.884000px;}
._4d{margin-left:-3012.060000px;}
._3e{margin-left:-2974.897503px;}
._e8{margin-left:-2885.576994px;}
._a7{margin-left:-2879.337207px;}
._8f{margin-left:-2875.944000px;}
._52{margin-left:-2874.600000px;}
._ba{margin-left:-2873.184000px;}
._ef{margin-left:-2812.893207px;}
._dc{margin-left:-2793.756000px;}
._53{margin-left:-2741.005503px;}
._67{margin-left:-2717.064000px;}
._e3{margin-left:-2704.341980px;}
._c4{margin-left:-2700.876000px;}
._113{margin-left:-2686.793180px;}
._34{margin-left:-2618.748000px;}
._c1{margin-left:-2610.633207px;}
._ab{margin-left:-2606.251503px;}
._8d{margin-left:-2579.472000px;}
._107{margin-left:-2521.800000px;}
._91{margin-left:-2512.944000px;}
._ee{margin-left:-2402.006390px;}
._6f{margin-left:-2371.005006px;}
._ae{margin-left:-2364.552000px;}
._8e{margin-left:-2327.184000px;}
._ec{margin-left:-2250.000000px;}
._84{margin-left:-2244.504000px;}
._102{margin-left:-2204.103826px;}
._fb{margin-left:-2198.425503px;}
._cb{margin-left:-2162.631903px;}
._48{margin-left:-2154.279539px;}
._5d{margin-left:-2085.254703px;}
._dd{margin-left:-2083.836000px;}
._96{margin-left:-2082.441207px;}
._de{margin-left:-2020.356000px;}
._a3{margin-left:-2007.000000px;}
._94{margin-left:-1998.060000px;}
._114{margin-left:-1986.233180px;}
._10d{margin-left:-1918.497903px;}
._45{margin-left:-1877.076000px;}
._65{margin-left:-1805.028000px;}
._eb{margin-left:-1756.848000px;}
._ce{margin-left:-1752.957826px;}
._10b{margin-left:-1743.962263px;}
._82{margin-left:-1721.063113px;}
._89{margin-left:-1676.899580px;}
._86{margin-left:-1671.516000px;}
._49{margin-left:-1641.507903px;}
._c6{margin-left:-1563.127503px;}
._75{margin-left:-1560.031503px;}
._f4{margin-left:-1554.768000px;}
._a2{margin-left:-1544.604000px;}
._a9{margin-left:-1533.860400px;}
._b8{margin-left:-1521.828000px;}
._c7{margin-left:-1479.089192px;}
._50{margin-left:-1467.672000px;}
._3f{margin-left:-1434.504000px;}
._37{margin-left:-1392.576000px;}
._5f{margin-left:-1370.716360px;}
._10f{margin-left:-1311.552820px;}
._ed{margin-left:-1275.000000px;}
._9f{margin-left:-1266.408000px;}
._c5{margin-left:-1246.770000px;}
._af{margin-left:-1224.840000px;}
._e2{margin-left:-1173.670360px;}
._e9{margin-left:-1155.072000px;}
._74{margin-left:-1150.830000px;}
._b7{margin-left:-1065.804000px;}
._99{margin-left:-1055.784000px;}
._110{margin-left:-1034.526820px;}
._ac{margin-left:-987.162000px;}
._5e{margin-left:-985.650000px;}
._55{margin-left:-931.146000px;}
._f7{margin-left:-914.154000px;}
._68{margin-left:-907.688400px;}
._a8{margin-left:-902.130000px;}
._a6{margin-left:-893.904000px;}
._43{margin-left:-825.780000px;}
._c9{margin-left:-823.247180px;}
._b6{margin-left:-795.708000px;}
._4a{margin-left:-750.000000px;}
._78{margin-left:-727.166400px;}
._df{margin-left:-685.404000px;}
._47{margin-left:-675.000000px;}
._d0{margin-left:-648.900000px;}
._7b{margin-left:-633.498000px;}
._9e{margin-left:-628.200000px;}
._4b{margin-left:-600.000000px;}
._ea{margin-left:-585.204000px;}
._b9{margin-left:-563.712000px;}
._6b{margin-left:-559.674000px;}
._3c{margin-left:-506.336994px;}
._f8{margin-left:-484.830000px;}
._d7{margin-left:-482.964000px;}
._109{margin-left:-452.215503px;}
._f6{margin-left:-450.000000px;}
._81{margin-left:-441.282683px;}
._cc{margin-left:-439.734000px;}
._fd{margin-left:-430.411503px;}
._4f{margin-left:-428.484000px;}
._bd{margin-left:-392.796000px;}
._104{margin-left:-387.271503px;}
._cf{margin-left:-385.800000px;}
._fe{margin-left:-381.390000px;}
._6d{margin-left:-362.112000px;}
._10a{margin-left:-336.774000px;}
._90{margin-left:-313.632000px;}
._54{margin-left:-302.304000px;}
._36{margin-left:-300.000000px;}
._112{margin-left:-278.274000px;}
._40{margin-left:-271.500000px;}
._b5{margin-left:-249.288000px;}
._bc{margin-left:-237.142497px;}
._72{margin-left:-224.598000px;}
._83{margin-left:-216.600000px;}
._64{margin-left:-183.300000px;}
._105{margin-left:-178.530000px;}
._bb{margin-left:-166.800000px;}
._3a{margin-left:-165.024000px;}
._b4{margin-left:-156.300000px;}
._4e{margin-left:-154.440000px;}
._5a{margin-left:-150.306000px;}
._69{margin-left:-136.776000px;}
._66{margin-left:-133.200000px;}
._73{margin-left:-128.166000px;}
._57{margin-left:-123.000000px;}
._d3{margin-left:-116.700000px;}
._5c{margin-left:-109.224000px;}
._38{margin-left:-99.900000px;}
._71{margin-left:-81.000000px;}
._35{margin-left:-75.000000px;}
._97{margin-left:-65.934000px;}
._60{margin-left:-61.500000px;}
._70{margin-left:-53.946000px;}
._23{margin-left:-18.017556px;}
._f2{margin-left:-14.616000px;}
._32{margin-left:-13.464000px;}
._f3{margin-left:-12.042720px;}
._a0{margin-left:-9.156000px;}
._24{margin-left:-7.526793px;}
._61{margin-left:-6.432000px;}
._30{margin-left:-5.253610px;}
._25{margin-left:-3.600000px;}
._2{margin-left:-2.304000px;}
._1{margin-left:-1.296000px;}
._0{width:1.080000px;}
._b{width:2.304000px;}
._e{width:3.888000px;}
._6{width:5.881503px;}
._5{width:6.894820px;}
._15{width:8.297180px;}
._13{width:9.446400px;}
._c{width:10.728000px;}
._14{width:11.779200px;}
._10{width:13.032000px;}
._f{width:14.184000px;}
._12{width:15.912000px;}
._11{width:16.920000px;}
._16{width:19.584000px;}
._a{width:20.808000px;}
._20{width:21.816000px;}
._17{width:22.968000px;}
._1a{width:24.336000px;}
._9{width:25.776000px;}
._8{width:27.072000px;}
._d{width:28.080000px;}
._22{width:29.088000px;}
._21{width:30.240000px;}
._2a{width:32.184000px;}
._29{width:33.192000px;}
._31{width:34.488000px;}
._18{width:36.144000px;}
._19{width:38.376000px;}
._27{width:40.320000px;}
._26{width:41.904000px;}
._2b{width:43.848000px;}
._2c{width:44.856000px;}
._9d{width:45.900000px;}
._76{width:47.490820px;}
._2e{width:49.104000px;}
._2d{width:50.112000px;}
._41{width:51.120000px;}
._33{width:54.864000px;}
._1b{width:56.304000px;}
._1c{width:57.384000px;}
._1d{width:59.760000px;}
._1e{width:61.776000px;}
._7c{width:69.420000px;}
._7f{width:80.672994px;}
._e6{width:81.816000px;}
._d4{width:86.220000px;}
._d1{width:87.720000px;}
._ad{width:98.496000px;}
._b0{width:99.528000px;}
._2f{width:100.941120px;}
._f1{width:157.680000px;}
._1f{width:193.680000px;}
._28{width:195.120000px;}
._7{width:2631.718947px;}
._4{width:2655.496938px;}
._3{width:2679.268928px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(84,141,212);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:28.800000px;}
.fs11{font-size:30.159418px;}
.fs8{font-size:30.216944px;}
.fse{font-size:30.240002px;}
.fs2d{font-size:30.247875px;}
.fsb{font-size:30.297267px;}
.fs16{font-size:36.000000px;}
.fs15{font-size:38.880000px;}
.fs2c{font-size:41.458500px;}
.fs19{font-size:41.565540px;}
.fs10{font-size:41.586279px;}
.fs1c{font-size:41.597707px;}
.fs7{font-size:41.665599px;}
.fsd{font-size:41.697394px;}
.fs28{font-size:41.708250px;}
.fs13{font-size:41.760000px;}
.fsa{font-size:41.776355px;}
.fs26{font-size:41.862855px;}
.fs4{font-size:47.520000px;}
.fs3{font-size:48.239981px;}
.fs17{font-size:53.280000px;}
.fs5{font-size:59.040000px;}
.fs29{font-size:70.469820px;}
.fs2b{font-size:71.712000px;}
.fs18{font-size:71.897149px;}
.fsf{font-size:71.933023px;}
.fs1b{font-size:71.952791px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:72.070226px;}
.fsc{font-size:72.125222px;}
.fs27{font-size:72.144000px;}
.fs9{font-size:72.261804px;}
.fs25{font-size:72.411425px;}
.fs2a{font-size:73.748100px;}
.fs1f{font-size:74.215901px;}
.fs20{font-size:74.941950px;}
.fs2e{font-size:94.123169px;}
.fs1a{font-size:107.845724px;}
.fs1e{font-size:107.929187px;}
.fs0{font-size:108.000000px;}
.fs1d{font-size:113.924851px;}
.fs2f{font-size:118.496287px;}
.fs12{font-size:119.520000px;}
.fs24{font-size:162.000000px;}
.fs22{font-size:198.000000px;}
.fs23{font-size:246.000000px;}
.fs21{font-size:300.000000px;}
.yb7{bottom:-0.000143px;}
.y270{bottom:-0.000008px;}
.ybd{bottom:-0.000002px;}
.y0{bottom:0.000000px;}
.y34b{bottom:0.000001px;}
.yce{bottom:0.000007px;}
.yb0{bottom:0.000015px;}
.y42e{bottom:0.000046px;}
.y1{bottom:0.120059px;}
.y276{bottom:3.370171px;}
.y457{bottom:4.125000px;}
.y6d{bottom:4.320000px;}
.y1e{bottom:4.320037px;}
.y308{bottom:4.679850px;}
.y393{bottom:5.040000px;}
.y44d{bottom:5.354438px;}
.y283{bottom:5.433929px;}
.y39d{bottom:5.542312px;}
.y46c{bottom:5.739551px;}
.y1f8{bottom:6.840000px;}
.yd8{bottom:7.513042px;}
.y44f{bottom:8.407406px;}
.y39b{bottom:11.648250px;}
.y46b{bottom:12.702277px;}
.yb3{bottom:13.137817px;}
.y449{bottom:13.714875px;}
.yc7{bottom:13.768431px;}
.y277{bottom:17.506199px;}
.y296{bottom:18.180090px;}
.y281{bottom:18.269258px;}
.y69{bottom:18.360090px;}
.y34c{bottom:18.668572px;}
.y42f{bottom:18.668617px;}
.y284{bottom:19.206143px;}
.y40b{bottom:20.135307px;}
.y34f{bottom:20.135457px;}
.y452{bottom:20.572313px;}
.y275{bottom:21.063610px;}
.y44a{bottom:21.276844px;}
.ybe{bottom:21.599999px;}
.yc8{bottom:21.823431px;}
.y39e{bottom:22.638937px;}
.y1f7{bottom:22.679850px;}
.y1db{bottom:22.680000px;}
.y280{bottom:22.766308px;}
.y44e{bottom:22.826813px;}
.y1dc{bottom:24.119850px;}
.y451{bottom:24.893438px;}
.y450{bottom:24.987639px;}
.y399{bottom:25.551000px;}
.y307{bottom:25.559850px;}
.y392{bottom:25.560150px;}
.yb1{bottom:27.026350px;}
.yc5{bottom:28.473489px;}
.y456{bottom:30.750057px;}
.y455{bottom:33.000000px;}
.y39a{bottom:33.629625px;}
.y282{bottom:33.821554px;}
.y448{bottom:35.884125px;}
.y271{bottom:35.948567px;}
.y6b{bottom:38.880000px;}
.y27a{bottom:38.974423px;}
.y39c{bottom:39.923437px;}
.y44c{bottom:40.111313px;}
.y1da{bottom:41.400000px;}
.y273{bottom:43.063389px;}
.yc6{bottom:45.285959px;}
.y306{bottom:46.079850px;}
.y27e{bottom:46.094751px;}
.y391{bottom:46.440000px;}
.y44b{bottom:47.814188px;}
.yb2{bottom:48.234516px;}
.y298{bottom:52.740090px;}
.y6c{bottom:52.920090px;}
.y1d{bottom:53.220240px;}
.y274{bottom:57.199417px;}
.y1c{bottom:57.539977px;}
.y1f6{bottom:58.320000px;}
.y1d9{bottom:58.680000px;}
.y27c{bottom:58.930080px;}
.y27f{bottom:59.866965px;}
.y272{bottom:60.756828px;}
.y27d{bottom:61.366087px;}
.y27b{bottom:63.427130px;}
.y305{bottom:66.960000px;}
.y390{bottom:66.960150px;}
.y1f5{bottom:75.599850px;}
.y1d8{bottom:75.959850px;}
.y304{bottom:87.479850px;}
.y38f{bottom:87.840000px;}
.y222{bottom:91.440000px;}
.y2c1{bottom:92.159985px;}
.y3b3{bottom:92.160000px;}
.y1d7{bottom:92.879850px;}
.y1c6{bottom:92.880000px;}
.y166{bottom:93.239985px;}
.y48f{bottom:94.320000px;}
.y26d{bottom:95.040000px;}
.y40{bottom:95.159962px;}
.ya6{bottom:96.480000px;}
.y31f{bottom:96.840000px;}
.y315{bottom:97.199985px;}
.y20a{bottom:98.280000px;}
.y3de{bottom:99.719985px;}
.y365{bottom:100.440000px;}
.y1f9{bottom:100.800000px;}
.y238{bottom:101.159985px;}
.y160{bottom:101.520000px;}
.ye3{bottom:102.239985px;}
.y1a{bottom:105.119986px;}
.y5c{bottom:105.419958px;}
.y46f{bottom:105.840000px;}
.y25c{bottom:107.280000px;}
.y87{bottom:108.000000px;}
.y303{bottom:108.360000px;}
.y209{bottom:109.080000px;}
.y1d6{bottom:110.160000px;}
.y165{bottom:110.520000px;}
.y124{bottom:111.239985px;}
.y3ea{bottom:111.960000px;}
.y9b{bottom:112.679985px;}
.y26b{bottom:113.760000px;}
.y48e{bottom:114.840000px;}
.y221{bottom:115.560000px;}
.y356{bottom:115.920000px;}
.y3dd{bottom:117.000000px;}
.ye1{bottom:118.440000px;}
.y3b2{bottom:120.960000px;}
.y237{bottom:121.679985px;}
.y1ea{bottom:122.760000px;}
.yc3{bottom:123.840000px;}
.y193{bottom:124.199985px;}
.y321{bottom:126.000000px;}
.y3f{bottom:126.119950px;}
.y220{bottom:126.360000px;}
.y1d5{bottom:127.439850px;}
.y164{bottom:127.800000px;}
.y32d{bottom:128.159985px;}
.y107{bottom:128.520000px;}
.y302{bottom:128.880000px;}
.y3f6{bottom:129.239985px;}
.y38e{bottom:129.240150px;}
.y1c5{bottom:129.960000px;}
.y123{bottom:131.760060px;}
.y295{bottom:132.120060px;}
.y2c0{bottom:133.560060px;}
.y3dc{bottom:133.920060px;}
.y42c{bottom:134.280060px;}
.y48d{bottom:135.720060px;}
.y3c4{bottom:136.440060px;}
.y5b{bottom:136.559945px;}
.ya5{bottom:137.880060px;}
.y31e{bottom:138.240060px;}
.y314{bottom:138.600060px;}
.y338{bottom:138.960060px;}
.y254{bottom:140.040060px;}
.y3b1{bottom:141.840060px;}
.y364{bottom:142.200060px;}
.y42d{bottom:142.200105px;}
.y236{bottom:142.560060px;}
.y15f{bottom:142.920060px;}
.y1a3{bottom:143.280060px;}
.y9a{bottom:143.640060px;}
.y1e9{bottom:144.000060px;}
.y1d4{bottom:144.719850px;}
.y1f4{bottom:144.720000px;}
.y163{bottom:145.080060px;}
.y41f{bottom:145.440060px;}
.y19{bottom:146.520001px;}
.y3f5{bottom:146.520060px;}
.y208{bottom:146.880060px;}
.y355{bottom:147.240060px;}
.y1c4{bottom:148.320060px;}
.y148{bottom:148.680060px;}
.y86{bottom:149.400060px;}
.y301{bottom:149.760000px;}
.y3db{bottom:151.200060px;}
.y122{bottom:152.640060px;}
.y3e9{bottom:153.360060px;}
.y370{bottom:154.080060px;}
.y26a{bottom:155.160060px;}
.y48c{bottom:156.240060px;}
.y3e{bottom:157.259937px;}
.ye0{bottom:159.840060px;}
.y3cf{bottom:161.640060px;}
.y1f3{bottom:161.999850px;}
.y1d3{bottom:162.000000px;}
.y162{bottom:162.360060px;}
.y1e8{bottom:162.720060px;}
.y235{bottom:163.080060px;}
.y1a2{bottom:163.800060px;}
.y2b9{bottom:164.880060px;}
.yc2{bottom:165.240060px;}
.y192{bottom:165.600060px;}
.y1c3{bottom:167.040060px;}
.y21f{bottom:167.400060px;}
.y5a{bottom:167.519933px;}
.y483{bottom:169.200060px;}
.y32c{bottom:169.560060px;}
.y106{bottom:169.920060px;}
.y300{bottom:170.280000px;}
.y38d{bottom:170.640150px;}
.y253{bottom:171.000060px;}
.yad{bottom:171.360060px;}
.y121{bottom:173.160060px;}
.y294{bottom:173.520060px;}
.y2bf{bottom:174.960060px;}
.y48b{bottom:177.120060px;}
.y354{bottom:178.200060px;}
.y1d2{bottom:179.279850px;}
.ya4{bottom:179.280060px;}
.y31d{bottom:179.640060px;}
.y313{bottom:180.000060px;}
.y1e7{bottom:180.720060px;}
.y3f4{bottom:181.080060px;}
.y32f{bottom:183.600060px;}
.y1a1{bottom:183.960060px;}
.y15e{bottom:184.320060px;}
.y99{bottom:185.040060px;}
.y3da{bottom:185.400060px;}
.y2b8{bottom:185.760060px;}
.yf4{bottom:187.560060px;}
.y18{bottom:187.919941px;}
.y3d{bottom:188.219925px;}
.y46e{bottom:188.640060px;}
.ye5{bottom:189.360060px;}
.y207{bottom:189.720060px;}
.y147{bottom:190.080060px;}
.y85{bottom:190.799910px;}
.y2ff{bottom:191.159850px;}
.y38c{bottom:191.160150px;}
.y19b{bottom:194.040060px;}
.y3e8{bottom:194.759910px;}
.y2be{bottom:195.839910px;}
.y1d1{bottom:196.559850px;}
.y1f2{bottom:196.560000px;}
.y161{bottom:196.920060px;}
.y48a{bottom:197.640060px;}
.y59{bottom:198.659921px;}
.y3f3{bottom:198.720060px;}
.y269{bottom:200.879910px;}
.ydf{bottom:201.240060px;}
.y252{bottom:201.960060px;}
.y1a0{bottom:202.320060px;}
.y3ce{bottom:203.040060px;}
.y36f{bottom:203.759910px;}
.y120{bottom:204.480060px;}
.y3b0{bottom:204.840060px;}
.y2b7{bottom:206.280060px;}
.yc1{bottom:206.640060px;}
.y191{bottom:207.000060px;}
.y21e{bottom:208.799910px;}
.y353{bottom:209.160060px;}
.y32b{bottom:210.960060px;}
.y105{bottom:211.320060px;}
.y2fe{bottom:211.680000px;}
.y38b{bottom:212.040150px;}
.yac{bottom:212.759910px;}
.y1f1{bottom:213.839850px;}
.y1d0{bottom:213.840000px;}
.y41e{bottom:214.200060px;}
.y134{bottom:214.560060px;}
.y3ee{bottom:215.967233px;}
.y2bd{bottom:216.000060px;}
.y1e6{bottom:216.720060px;}
.y293{bottom:217.799910px;}
.y1c2{bottom:218.520060px;}
.y3c{bottom:219.359912px;}
.ya3{bottom:220.680060px;}
.y312{bottom:221.040060px;}
.y42b{bottom:221.400060px;}
.y19f{bottom:222.120060px;}
.y3ae{bottom:224.280060px;}
.y36e{bottom:224.640060px;}
.y26c{bottom:225.000060px;}
.y234{bottom:225.360060px;}
.y15d{bottom:225.719910px;}
.y3af{bottom:225.720060px;}
.y3f8{bottom:226.037937px;}
.y98{bottom:226.440060px;}
.y2b6{bottom:227.160060px;}
.y41d{bottom:228.240060px;}
.y17{bottom:229.319941px;}
.y58{bottom:229.619908px;}
.y46d{bottom:230.040060px;}
.ye2{bottom:230.759910px;}
.y1cf{bottom:231.119850px;}
.y25b{bottom:231.480060px;}
.y206{bottom:231.839910px;}
.y84{bottom:232.200060px;}
.y2fd{bottom:232.559850px;}
.y38a{bottom:232.560150px;}
.yab{bottom:232.920060px;}
.y251{bottom:233.280060px;}
.y489{bottom:235.080060px;}
.y11f{bottom:235.440060px;}
.y146{bottom:235.799910px;}
.y3e7{bottom:236.160060px;}
.y36d{bottom:236.879910px;}
.y352{bottom:240.120060px;}
.yde{bottom:242.640060px;}
.y268{bottom:243.719910px;}
.y3cd{bottom:244.440060px;}
.y233{bottom:245.879910px;}
.y3ad{bottom:246.240060px;}
.y2b5{bottom:247.680060px;}
.yc0{bottom:248.040060px;}
.y190{bottom:248.400060px;}
.y1ce{bottom:249.119850px;}
.yaa{bottom:250.200060px;}
.y3b{bottom:250.319900px;}
.y3f2{bottom:250.560060px;}
.y2e3{bottom:252.360060px;}
.y104{bottom:252.719910px;}
.y2fc{bottom:253.079850px;}
.y1c1{bottom:253.080060px;}
.y389{bottom:253.440000px;}
.y133{bottom:255.960060px;}
.yf3{bottom:256.680060px;}
.y2bc{bottom:257.779741px;}
.y57{bottom:260.579896px;}
.ya2{bottom:262.080060px;}
.y31c{bottom:262.440060px;}
.y42a{bottom:262.799910px;}
.y337{bottom:263.160060px;}
.y292{bottom:263.520060px;}
.y250{bottom:264.240060px;}
.y36c{bottom:266.040060px;}
.y1cd{bottom:266.399850px;}
.y1f0{bottom:266.400000px;}
.y11e{bottom:266.400060px;}
.y232{bottom:266.759910px;}
.y15c{bottom:267.120060px;}
.ya9{bottom:267.480060px;}
.y97{bottom:267.839910px;}
.y2b4{bottom:268.559910px;}
.y2bb{bottom:268.560150px;}
.y1c0{bottom:270.360060px;}
.y16{bottom:270.719941px;}
.y368{bottom:272.879910px;}
.y83{bottom:273.600060px;}
.y2fb{bottom:273.960000px;}
.y388{bottom:273.960150px;}
.y2e2{bottom:274.679910px;}
.y2e4{bottom:276.120060px;}
.y19a{bottom:276.839910px;}
.y205{bottom:277.560060px;}
.y36b{bottom:278.280060px;}
.y145{bottom:278.640060px;}
.y469{bottom:279.000060px;}
.y350{bottom:279.360060px;}
.y3a{bottom:281.279887px;}
.y1ef{bottom:283.319850px;}
.y1cc{bottom:283.680000px;}
.ydd{bottom:284.040060px;}
.ya8{bottom:284.759910px;}
.y267{bottom:285.120060px;}
.y46a{bottom:285.480150px;}
.y1ed{bottom:285.839850px;}
.y3cc{bottom:285.839910px;}
.y351{bottom:285.840150px;}
.y231{bottom:287.280060px;}
.y1bf{bottom:287.640060px;}
.y2b3{bottom:289.080060px;}
.ybf{bottom:289.440060px;}
.y3ac{bottom:290.519910px;}
.y21d{bottom:291.600060px;}
.y56{bottom:291.719883px;}
.y32a{bottom:293.759910px;}
.y103{bottom:294.120060px;}
.y2fa{bottom:294.479850px;}
.y387{bottom:294.840000px;}
.y24f{bottom:295.200060px;}
.y2e1{bottom:296.640060px;}
.y11d{bottom:297.360060px;}
.y1cb{bottom:300.960000px;}
.y1ee{bottom:301.679850px;}
.y3f1{bottom:302.400060px;}
.y1ec{bottom:303.119850px;}
.y1c9{bottom:303.120000px;}
.ya1{bottom:303.480060px;}
.y31b{bottom:303.839910px;}
.y429{bottom:304.200060px;}
.y1be{bottom:304.920060px;}
.y36a{bottom:307.440060px;}
.y363{bottom:307.799910px;}
.y230{bottom:308.160060px;}
.y15b{bottom:308.520060px;}
.y96{bottom:309.240060px;}
.y2b2{bottom:309.960060px;}
.y3ab{bottom:311.399910px;}
.y15{bottom:312.119941px;}
.y39{bottom:312.419875px;}
.y311{bottom:314.280060px;}
.y82{bottom:315.000060px;}
.y2f9{bottom:315.360000px;}
.y2e0{bottom:317.520060px;}
.y199{bottom:318.240060px;}
.y1ca{bottom:318.960000px;}
.y3e6{bottom:318.960060px;}
.ya7{bottom:319.320060px;}
.y369{bottom:319.679910px;}
.y144{bottom:320.040060px;}
.y1c8{bottom:320.399850px;}
.y2c7{bottom:320.759910px;}
.y1bd{bottom:322.200060px;}
.y349{bottom:322.560060px;}
.y55{bottom:322.679871px;}
.y204{bottom:324.719910px;}
.y468{bottom:325.080060px;}
.ydc{bottom:325.440060px;}
.y24e{bottom:326.160060px;}
.y266{bottom:326.520060px;}
.y3cb{bottom:327.240060px;}
.y11c{bottom:328.679910px;}
.y34e{bottom:329.040150px;}
.y2b1{bottom:330.479910px;}
.y34a{bottom:330.480150px;}
.y34d{bottom:330.839910px;}
.y3aa{bottom:331.920060px;}
.y21c{bottom:333.000060px;}
.y329{bottom:335.160060px;}
.y102{bottom:335.520060px;}
.y386{bottom:336.240150px;}
.y2f8{bottom:336.600000px;}
.y3f0{bottom:336.600060px;}
.y18f{bottom:336.960060px;}
.y2df{bottom:338.040060px;}
.y132{bottom:338.759910px;}
.y1bc{bottom:339.480060px;}
.ybb{bottom:340.200060px;}
.y38{bottom:343.379863px;}
.ya0{bottom:344.879910px;}
.ybc{bottom:344.880150px;}
.y31a{bottom:345.240060px;}
.y428{bottom:345.599910px;}
.y291{bottom:346.320060px;}
.y362{bottom:349.200060px;}
.y22f{bottom:349.560060px;}
.y15a{bottom:349.920060px;}
.y95{bottom:350.639910px;}
.y2b0{bottom:351.359910px;}
.y14{bottom:353.519941px;}
.y54{bottom:353.819858px;}
.ye4{bottom:354.960060px;}
.y198{bottom:355.320060px;}
.y367{bottom:355.679910px;}
.y81{bottom:356.400060px;}
.y2f5{bottom:356.400150px;}
.y1bb{bottom:356.759910px;}
.y385{bottom:356.760000px;}
.y2f7{bottom:357.479850px;}
.y24d{bottom:357.480060px;}
.y348{bottom:357.839910px;}
.y2de{bottom:358.920060px;}
.y3c3{bottom:359.640060px;}
.y3e5{bottom:360.360060px;}
.y310{bottom:361.440060px;}
.y2c6{bottom:362.160060px;}
.y11b{bottom:362.520060px;}
.y319{bottom:365.400060px;}
.y413{bottom:366.119910px;}
.y467{bottom:366.480060px;}
.ydb{bottom:366.839910px;}
.y265{bottom:367.920060px;}
.y3ca{bottom:368.640060px;}
.y143{bottom:369.720060px;}
.y22e{bottom:370.080060px;}
.y2af{bottom:371.879910px;}
.y203{bottom:372.240060px;}
.y197{bottom:372.599910px;}
.y1ba{bottom:374.040060px;}
.y21b{bottom:374.400060px;}
.y37{bottom:374.519850px;}
.y371{bottom:375.120000px;}
.y328{bottom:376.560060px;}
.y101{bottom:376.920060px;}
.y384{bottom:377.640150px;}
.y2f6{bottom:377.999850px;}
.y18e{bottom:378.359910px;}
.y411{bottom:378.720060px;}
.y2dd{bottom:379.439910px;}
.y131{bottom:380.160060px;}
.y3c2{bottom:380.519910px;}
.y318{bottom:382.679910px;}
.y53{bottom:384.779846px;}
.yba{bottom:385.920060px;}
.y9f{bottom:386.279910px;}
.y427{bottom:387.000060px;}
.y336{bottom:387.359910px;}
.y290{bottom:387.720060px;}
.y24c{bottom:388.439910px;}
.y347{bottom:389.160060px;}
.y361{bottom:390.599910px;}
.y196{bottom:390.960060px;}
.y445{bottom:391.320060px;}
.y94{bottom:392.040060px;}
.y3a9{bottom:393.119910px;}
.y2ae{bottom:393.480060px;}
.yf2{bottom:394.560060px;}
.y13{bottom:394.919941px;}
.y159{bottom:395.640060px;}
.y366{bottom:397.080060px;}
.y80{bottom:397.800060px;}
.y383{bottom:398.160000px;}
.y410{bottom:399.240060px;}
.y317{bottom:399.960060px;}
.y2dc{bottom:400.320060px;}
.y412{bottom:401.040000px;}
.y3e4{bottom:401.759910px;}
.y2c5{bottom:404.279910px;}
.y36{bottom:405.119838px;}
.y142{bottom:407.160060px;}
.y466{bottom:407.880060px;}
.yda{bottom:408.240060px;}
.y264{bottom:409.320060px;}
.y195{bottom:409.679910px;}
.y22d{bottom:411.480060px;}
.y3a8{bottom:413.640060px;}
.y2ad{bottom:414.000060px;}
.y3c9{bottom:414.359910px;}
.y21a{bottom:415.800060px;}
.y52{bottom:415.919834px;}
.y327{bottom:417.960060px;}
.y100{bottom:418.320060px;}
.y482{bottom:419.039910px;}
.y382{bottom:419.040150px;}
.y202{bottom:419.400060px;}
.y18d{bottom:419.759910px;}
.y346{bottom:420.119910px;}
.y2db{bottom:420.839910px;}
.y130{bottom:421.560060px;}
.y3c1{bottom:421.920060px;}
.y3d9{bottom:425.160060px;}
.y1b9{bottom:425.519910px;}
.yb9{bottom:427.320060px;}
.y9e{bottom:427.679910px;}
.y426{bottom:428.400060px;}
.y28f{bottom:429.119910px;}
.y11a{bottom:430.560060px;}
.y360{bottom:432.000060px;}
.y22c{bottom:432.359910px;}
.y444{bottom:432.720060px;}
.y93{bottom:433.439910px;}
.y316{bottom:434.160060px;}
.y3a7{bottom:434.519910px;}
.y2ac{bottom:434.879910px;}
.y12{bottom:436.319941px;}
.y35{bottom:436.619825px;}
.y158{bottom:438.480060px;}
.y7f{bottom:439.199910px;}
.y381{bottom:439.560150px;}
.y407{bottom:440.640060px;}
.y2da{bottom:441.720060px;}
.y3d8{bottom:442.439910px;}
.y1b8{bottom:442.800060px;}
.y3e3{bottom:443.160060px;}
.y194{bottom:443.880060px;}
.y30f{bottom:445.679910px;}
.y40f{bottom:446.759910px;}
.y51{bottom:446.879821px;}
.y465{bottom:449.279910px;}
.yd9{bottom:449.640060px;}
.y141{bottom:450.000060px;}
.y24b{bottom:450.359910px;}
.y263{bottom:450.720060px;}
.y345{bottom:451.080060px;}
.y22b{bottom:452.880060px;}
.y3a6{bottom:455.039910px;}
.y2ab{bottom:456.119910px;}
.y219{bottom:457.199910px;}
.yff{bottom:459.720060px;}
.y1b7{bottom:460.080060px;}
.y481{bottom:460.439910px;}
.y380{bottom:460.440000px;}
.y18c{bottom:461.160060px;}
.y406{bottom:461.519910px;}
.y2d9{bottom:462.240060px;}
.y12f{bottom:462.960060px;}
.y3c0{bottom:463.320060px;}
.yf1{bottom:463.679910px;}
.y119{bottom:464.400060px;}
.y201{bottom:466.560060px;}
.yb8{bottom:468.720060px;}
.y25a{bottom:469.080060px;}
.y425{bottom:469.800060px;}
.y28e{bottom:470.519910px;}
.y9d{bottom:473.400060px;}
.y22a{bottom:473.759910px;}
.y443{bottom:474.119910px;}
.y92{bottom:474.839910px;}
.y40e{bottom:475.199910px;}
.y3a5{bottom:475.920060px;}
.y2aa{bottom:477.000060px;}
.y1b6{bottom:477.359910px;}
.y11{bottom:477.719941px;}
.y50{bottom:478.019809px;}
.y34{bottom:478.199809px;}
.y157{bottom:479.880060px;}
.y7e{bottom:480.599910px;}
.y37f{bottom:480.960000px;}
.y40d{bottom:481.680150px;}
.y344{bottom:482.039910px;}
.y2d8{bottom:483.119910px;}
.y24a{bottom:484.560060px;}
.y3be{bottom:486.000060px;}
.y18b{bottom:486.720060px;}
.y3bf{bottom:487.439910px;}
.y464{bottom:490.679910px;}
.y30e{bottom:491.400060px;}
.y229{bottom:494.279910px;}
.y1b5{bottom:494.640060px;}
.yf0{bottom:495.359910px;}
.y140{bottom:495.720060px;}
.y262{bottom:496.439910px;}
.y118{bottom:496.800060px;}
.y2c4{bottom:497.160060px;}
.y2a8{bottom:498.240060px;}
.y218{bottom:498.599910px;}
.y1c7{bottom:499.680150px;}
.yd6{bottom:500.400060px;}
.yfe{bottom:501.119910px;}
.y480{bottom:501.839910px;}
.y37e{bottom:501.840000px;}
.y18a{bottom:502.560060px;}
.y405{bottom:502.920060px;}
.y2d7{bottom:503.640060px;}
.y12e{bottom:504.359910px;}
.yd7{bottom:505.080150px;}
.y326{bottom:506.519910px;}
.y40c{bottom:507.959910px;}
.y3bd{bottom:508.320060px;}
.y33{bottom:508.979796px;}
.y200{bottom:509.400060px;}
.y259{bottom:510.480060px;}
.y424{bottom:511.199910px;}
.y3d7{bottom:511.560060px;}
.y189{bottom:511.920060px;}
.y343{bottom:513.359910px;}
.y40a{bottom:514.440150px;}
.y35f{bottom:514.800060px;}
.y228{bottom:515.160060px;}
.y442{bottom:515.519910px;}
.y91{bottom:516.240060px;}
.y249{bottom:516.959910px;}
.y3a4{bottom:517.320060px;}
.y2a7{bottom:519.119910px;}
.y10{bottom:519.119941px;}
.yb5{bottom:519.839910px;}
.y9c{bottom:520.560060px;}
.y156{bottom:521.279910px;}
.y7d{bottom:522.000060px;}
.y37d{bottom:522.360150px;}
.y404{bottom:523.439910px;}
.y2d6{bottom:524.519910px;}
.yb6{bottom:524.520150px;}
.y117{bottom:528.119910px;}
.y3d6{bottom:528.839910px;}
.y3bc{bottom:528.840060px;}
.y1b4{bottom:529.199910px;}
.y463{bottom:532.080060px;}
.y188{bottom:533.519910px;}
.y30d{bottom:534.240060px;}
.y227{bottom:535.679910px;}
.yef{bottom:536.759910px;}
.y3a3{bottom:537.840060px;}
.y2a9{bottom:538.199910px;}
.y13f{bottom:539.279910px;}
.y2a6{bottom:539.639910px;}
.y409{bottom:539.640060px;}
.y4f{bottom:539.759784px;}
.y68{bottom:539.939784px;}
.y217{bottom:540.000060px;}
.y32{bottom:540.119784px;}
.y488{bottom:542.519910px;}
.y187{bottom:542.880060px;}
.y47f{bottom:543.240060px;}
.y37c{bottom:543.240150px;}
.y342{bottom:544.320060px;}
.y2d5{bottom:545.039910px;}
.y12d{bottom:545.759910px;}
.yd5{bottom:546.119910px;}
.y1b3{bottom:546.480060px;}
.y408{bottom:547.560150px;}
.y248{bottom:547.920060px;}
.y1ff{bottom:550.800060px;}
.y3ba{bottom:551.160060px;}
.y258{bottom:551.880060px;}
.y423{bottom:552.599910px;}
.y3bb{bottom:552.600060px;}
.y28d{bottom:553.320060px;}
.y32e{bottom:556.199910px;}
.y441{bottom:556.920060px;}
.y90{bottom:557.640060px;}
.y186{bottom:558.359910px;}
.y3a2{bottom:558.719910px;}
.y116{bottom:559.080060px;}
.y2a5{bottom:560.519910px;}
.yf{bottom:560.519941px;}
.y25d{bottom:561.959910px;}
.y155{bottom:562.679910px;}
.y3d5{bottom:563.039910px;}
.y7c{bottom:563.400060px;}
.y1b2{bottom:563.759910px;}
.y37b{bottom:563.760000px;}
.y403{bottom:564.839910px;}
.y2d4{bottom:565.920060px;}
.y4e{bottom:570.719772px;}
.y31{bottom:571.079772px;}
.y3b9{bottom:573.119910px;}
.y462{bottom:573.480060px;}
.y185{bottom:573.839910px;}
.y341{bottom:575.279910px;}
.y30c{bottom:575.640060px;}
.yaf{bottom:576.000150px;}
.y247{bottom:578.879910px;}
.y3a1{bottom:579.240060px;}
.yfd{bottom:579.959910px;}
.y1b1{bottom:580.679910px;}
.y2a4{bottom:581.039910px;}
.y13e{bottom:581.400060px;}
.y67{bottom:581.699767px;}
.y261{bottom:582.839910px;}
.y487{bottom:583.920060px;}
.y37a{bottom:584.640000px;}
.yb4{bottom:584.640060px;}
.y260{bottom:585.000060px;}
.y2c3{bottom:585.720060px;}
.y2d3{bottom:586.439910px;}
.yae{bottom:586.800060px;}
.y12c{bottom:587.160060px;}
.y184{bottom:589.320060px;}
.y115{bottom:590.039910px;}
.y3e2{bottom:590.759910px;}
.y1fe{bottom:592.199910px;}
.y257{bottom:593.279910px;}
.y226{bottom:593.640060px;}
.y422{bottom:594.000060px;}
.y28c{bottom:594.720060px;}
.y35e{bottom:597.599910px;}
.y1b0{bottom:597.959910px;}
.y440{bottom:598.320060px;}
.y8f{bottom:599.039910px;}
.y3ef{bottom:599.400060px;}
.y3a0{bottom:600.119910px;}
.ye{bottom:601.919941px;}
.y2a3{bottom:601.920060px;}
.yd4{bottom:601.920150px;}
.y30{bottom:602.219759px;}
.y332{bottom:603.359910px;}
.y154{bottom:604.080060px;}
.y2a0{bottom:604.799910px;}
.y7b{bottom:604.800060px;}
.y379{bottom:605.160000px;}
.y340{bottom:606.240060px;}
.y2d2{bottom:607.320060px;}
.y246{bottom:610.560060px;}
.y183{bottom:610.920060px;}
.yd3{bottom:612.000060px;}
.y1fd{bottom:613.439910px;}
.y461{bottom:614.879910px;}
.y1af{bottom:615.240060px;}
.y3ec{bottom:616.320060px;}
.y114{bottom:621.000060px;}
.y30b{bottom:621.359910px;}
.y182{bottom:621.720060px;}
.y2a2{bottom:622.439910px;}
.y216{bottom:622.800060px;}
.y66{bottom:623.099751px;}
.y3b8{bottom:624.240060px;}
.y3e1{bottom:625.320060px;}
.y29f{bottom:625.680060px;}
.y47e{bottom:626.039910px;}
.y378{bottom:626.040150px;}
.y13d{bottom:627.119910px;}
.y2d1{bottom:627.839910px;}
.y12b{bottom:628.560060px;}
.y325{bottom:630.720060px;}
.y1ae{bottom:632.519910px;}
.y1fc{bottom:632.879910px;}
.y2f{bottom:633.179747px;}
.y3c8{bottom:633.240060px;}
.y256{bottom:634.679910px;}
.y3ed{bottom:634.680150px;}
.y28b{bottom:636.119910px;}
.y33f{bottom:637.560060px;}
.y35d{bottom:639.000060px;}
.y43f{bottom:639.720060px;}
.y181{bottom:640.080060px;}
.y8e{bottom:640.439910px;}
.y420{bottom:641.879910px;}
.yd{bottom:643.319941px;}
.y4d{bottom:643.799742px;}
.y245{bottom:644.759910px;}
.y2a1{bottom:644.760060px;}
.y153{bottom:645.480060px;}
.y7a{bottom:646.199910px;}
.y377{bottom:646.560150px;}
.y400{bottom:648.359910px;}
.yfc{bottom:648.720060px;}
.y1eb{bottom:649.440150px;}
.y1ad{bottom:649.800060px;}
.y421{bottom:649.800150px;}
.y113{bottom:651.959910px;}
.y1fb{bottom:652.679910px;}
.y398{bottom:656.100000px;}
.y460{bottom:656.279910px;}
.y180{bottom:658.799910px;}
.y3e0{bottom:659.879910px;}
.y397{bottom:660.600060px;}
.y225{bottom:662.759910px;}
.y39f{bottom:663.479910px;}
.y215{bottom:664.199910px;}
.y2e{bottom:664.319734px;}
.y65{bottom:664.499734px;}
.y486{bottom:666.720060px;}
.y1ac{bottom:667.080060px;}
.y47d{bottom:667.439910px;}
.y376{bottom:667.440000px;}
.y29e{bottom:667.799910px;}
.y30a{bottom:668.519910px;}
.y2d0{bottom:669.240060px;}
.y12a{bottom:669.959910px;}
.y324{bottom:672.119910px;}
.yd2{bottom:672.839910px;}
.y4c{bottom:674.579730px;}
.y17f{bottom:676.080060px;}
.y244{bottom:677.160060px;}
.y28a{bottom:677.519910px;}
.y25f{bottom:679.679910px;}
.y331{bottom:680.400060px;}
.y43e{bottom:681.119910px;}
.y396{bottom:681.479910px;}
.y8d{bottom:681.839910px;}
.y1e5{bottom:682.920060px;}
.y1ab{bottom:684.359910px;}
.yc{bottom:684.719941px;}
.y35c{bottom:684.720060px;}
.yee{bottom:686.160060px;}
.y152{bottom:686.879910px;}
.y79{bottom:687.599910px;}
.y375{bottom:687.960000px;}
.y29d{bottom:688.320060px;}
.y1fa{bottom:688.679910px;}
.y3ff{bottom:689.759910px;}
.y2cf{bottom:690.119910px;}
.y3b7{bottom:690.479910px;}
.y17e{bottom:693.359910px;}
.y3df{bottom:694.439910px;}
.y2d{bottom:695.279722px;}
.y45f{bottom:697.679910px;}
.y33e{bottom:699.480060px;}
.y1aa{bottom:701.640060px;}
.y395{bottom:702.359910px;}
.y335{bottom:704.160060px;}
.y214{bottom:705.599910px;}
.y4b{bottom:705.719718px;}
.y64{bottom:705.899718px;}
.y402{bottom:706.320060px;}
.y29b{bottom:707.760060px;}
.y243{bottom:708.119910px;}
.y47c{bottom:708.839910px;}
.y29c{bottom:709.199910px;}
.y374{bottom:709.560150px;}
.y320{bottom:709.920060px;}
.y3fe{bottom:710.640060px;}
.y129{bottom:711.359910px;}
.y17d{bottom:712.799910px;}
.yd1{bottom:714.240060px;}
.y401{bottom:715.680150px;}
.y41c{bottom:716.759910px;}
.y19e{bottom:717.480060px;}
.yfb{bottom:717.839910px;}
.y112{bottom:718.560060px;}
.y1a9{bottom:718.920060px;}
.y394{bottom:719.639910px;}
.y25e{bottom:721.799910px;}
.y43d{bottom:722.519910px;}
.y8c{bottom:723.240060px;}
.y1e4{bottom:724.320060px;}
.y3b5{bottom:725.220000px;}
.yb{bottom:726.119941px;}
.y2c{bottom:726.419709px;}
.y35b{bottom:727.560060px;}
.y151{bottom:728.279910px;}
.y78{bottom:729.000060px;}
.y29a{bottom:729.719910px;}
.y373{bottom:730.080000px;}
.y17c{bottom:730.080060px;}
.y33d{bottom:730.439910px;}
.y224{bottom:731.519910px;}
.y2ce{bottom:732.240060px;}
.y3b6{bottom:732.600060px;}
.y2cc{bottom:735.119910px;}
.y4a{bottom:736.679705px;}
.y2f4{bottom:736.920060px;}
.y45e{bottom:739.080060px;}
.y242{bottom:739.439910px;}
.y213{bottom:747.000060px;}
.y63{bottom:747.299701px;}
.y17b{bottom:747.359910px;}
.y3fd{bottom:748.439910px;}
.y111{bottom:749.519910px;}
.y47b{bottom:750.239910px;}
.y3b4{bottom:750.599910px;}
.y372{bottom:750.960000px;}
.y299{bottom:751.320060px;}
.y128{bottom:752.759910px;}
.y2f3{bottom:754.199910px;}
.y2cd{bottom:754.559910px;}
.yd0{bottom:755.640060px;}
.y2cb{bottom:756.000060px;}
.y2b{bottom:757.379697px;}
.y1a8{bottom:757.440060px;}
.y41b{bottom:758.160060px;}
.y19d{bottom:758.879910px;}
.y289{bottom:760.320060px;}
.y323{bottom:761.399910px;}
.y33c{bottom:761.759910px;}
.y43c{bottom:763.919910px;}
.y8b{bottom:764.640060px;}
.y1e3{bottom:765.719910px;}
.ya{bottom:767.519941px;}
.y49{bottom:767.819693px;}
.yed{bottom:768.960060px;}
.y150{bottom:769.679910px;}
.y77{bottom:770.399910px;}
.y2f2{bottom:771.480060px;}
.y334{bottom:772.919910px;}
.y2ca{bottom:777.239910px;}
.y45d{bottom:780.480060px;}
.y110{bottom:780.839910px;}
.y17a{bottom:781.919910px;}
.y177{bottom:783.000060px;}
.y178{bottom:784.440060px;}
.yfa{bottom:786.600060px;}
.y212{bottom:788.399910px;}
.y2a{bottom:788.519685px;}
.y62{bottom:788.699685px;}
.y485{bottom:790.919910px;}
.y47a{bottom:791.640060px;}
.y127{bottom:794.160060px;}
.y3fc{bottom:794.879910px;}
.y33b{bottom:795.600060px;}
.ycf{bottom:797.039910px;}
.y2c9{bottom:797.399910px;}
.y48{bottom:798.779680px;}
.y1a7{bottom:798.839910px;}
.y41a{bottom:799.559910px;}
.y179{bottom:800.280060px;}
.y223{bottom:800.640060px;}
.y241{bottom:801.359910px;}
.y3fb{bottom:801.360150px;}
.y176{bottom:801.719910px;}
.y297{bottom:804.239910px;}
.y19c{bottom:804.600060px;}
.y322{bottom:804.960060px;}
.y8a{bottom:806.039910px;}
.y1e2{bottom:807.120060px;}
.y9{bottom:808.919941px;}
.y2f1{bottom:810.000060px;}
.y330{bottom:810.359910px;}
.y14f{bottom:811.079910px;}
.y76{bottom:811.800060px;}
.y2c8{bottom:814.679910px;}
.y175{bottom:819.000060px;}
.y29{bottom:819.479672px;}
.y43b{bottom:819.720000px;}
.y45c{bottom:821.879910px;}
.y3d4{bottom:824.399910px;}
.y211{bottom:829.800060px;}
.y47{bottom:829.919668px;}
.y61{bottom:830.099668px;}
.y33a{bottom:830.879910px;}
.y240{bottom:832.320060px;}
.y479{bottom:833.039910px;}
.y13c{bottom:835.559910px;}
.y173{bottom:837.000060px;}
.y2c2{bottom:837.719910px;}
.y174{bottom:838.440060px;}
.y126{bottom:839.879910px;}
.y419{bottom:840.960060px;}
.y3c7{bottom:841.320060px;}
.y333{bottom:842.039910px;}
.y10f{bottom:842.759910px;}
.y288{bottom:843.120060px;}
.y3d3{bottom:845.280060px;}
.y309{bottom:846.000060px;}
.y89{bottom:847.440060px;}
.ycc{bottom:847.800060px;}
.y1e1{bottom:848.519910px;}
.y8{bottom:850.319941px;}
.y28{bottom:850.619660px;}
.y2f0{bottom:851.399910px;}
.y255{bottom:851.759910px;}
.y14e{bottom:852.480060px;}
.ycd{bottom:852.480150px;}
.y75{bottom:853.199910px;}
.y3fa{bottom:855.000150px;}
.yf9{bottom:855.719910px;}
.y3f9{bottom:856.440150px;}
.y46{bottom:860.879656px;}
.y45b{bottom:863.280060px;}
.y23f{bottom:863.640060px;}
.y439{bottom:865.079910px;}
.y3d2{bottom:865.440060px;}
.y210{bottom:871.199910px;}
.y172{bottom:873.000060px;}
.y10e{bottom:873.719910px;}
.y478{bottom:874.440060px;}
.y13b{bottom:876.960060px;}
.y43a{bottom:879.840150px;}
.y1a6{bottom:881.280060px;}
.y27{bottom:881.579647px;}
.y418{bottom:882.359910px;}
.y3c6{bottom:882.719910px;}
.y287{bottom:884.519910px;}
.y125{bottom:887.399910px;}
.yeb{bottom:888.839910px;}
.y1e0{bottom:889.919910px;}
.y171{bottom:890.280060px;}
.y3eb{bottom:891.000060px;}
.y7{bottom:891.719941px;}
.y45{bottom:892.019643px;}
.ycb{bottom:892.079910px;}
.y88{bottom:893.160060px;}
.y14d{bottom:893.879910px;}
.y74{bottom:894.599910px;}
.y2ef{bottom:896.399910px;}
.y35a{bottom:897.480060px;}
.y3d1{bottom:899.640060px;}
.y45a{bottom:904.679910px;}
.y170{bottom:907.559910px;}
.y3f7{bottom:907.560000px;}
.y438{bottom:911.160060px;}
.y26{bottom:912.359635px;}
.y20f{bottom:912.599910px;}
.y10d{bottom:915.120060px;}
.y477{bottom:915.839910px;}
.y2ee{bottom:917.280060px;}
.y13a{bottom:922.679910px;}
.y44{bottom:922.979631px;}
.y417{bottom:923.759910px;}
.y3c5{bottom:924.120060px;}
.yf8{bottom:924.839910px;}
.y23e{bottom:925.559910px;}
.y286{bottom:925.919910px;}
.y1a5{bottom:928.800060px;}
.yea{bottom:930.239910px;}
.y1df{bottom:931.320060px;}
.y6{bottom:933.119941px;}
.yca{bottom:933.480060px;}
.y3d0{bottom:934.199910px;}
.yec{bottom:934.559910px;}
.y14c{bottom:935.280060px;}
.y73{bottom:936.000060px;}
.y2ed{bottom:937.800060px;}
.y16f{bottom:942.120060px;}
.y25{bottom:943.679623px;}
.y359{bottom:945.000060px;}
.y459{bottom:946.079910px;}
.y1de{bottom:951.480060px;}
.y60{bottom:951.779619px;}
.y437{bottom:952.559910px;}
.y20e{bottom:954.000060px;}
.y43{bottom:954.119618px;}
.y10c{bottom:956.519910px;}
.y2ec{bottom:958.679910px;}
.y475{bottom:962.280060px;}
.y23d{bottom:964.800060px;}
.y416{bottom:965.160060px;}
.y139{bottom:965.519910px;}
.y1dd{bottom:968.399910px;}
.y476{bottom:971.640000px;}
.ye9{bottom:971.640060px;}
.y16e{bottom:972.000060px;}
.y5{bottom:974.519941px;}
.y1a4{bottom:975.960060px;}
.y14b{bottom:976.679910px;}
.y72{bottom:977.399910px;}
.y2eb{bottom:979.199910px;}
.y279{bottom:981.720150px;}
.y5f{bottom:982.739607px;}
.y42{bottom:985.079606px;}
.y24{bottom:985.259606px;}
.y458{bottom:987.480060px;}
.y23c{bottom:987.839910px;}
.y16d{bottom:988.919910px;}
.yc4{bottom:989.280150px;}
.yf7{bottom:993.599910px;}
.y436{bottom:993.960060px;}
.y10b{bottom:997.919910px;}
.yc9{bottom:999.359910px;}
.y20d{bottom:999.719910px;}
.y2ea{bottom:1000.079910px;}
.y285{bottom:1002.239910px;}
.y138{bottom:1006.919910px;}
.y474{bottom:1008.000060px;}
.ye8{bottom:1013.039910px;}
.y414{bottom:1014.120060px;}
.y4{bottom:1015.919941px;}
.y23{bottom:1016.219594px;}
.y2ba{bottom:1017.359910px;}
.y14a{bottom:1018.079910px;}
.y71{bottom:1018.800060px;}
.y2e9{bottom:1020.599910px;}
.y16c{bottom:1024.199910px;}
.y23b{bottom:1027.079910px;}
.y415{bottom:1028.880150px;}
.y358{bottom:1029.239910px;}
.y484{bottom:1039.320060px;}
.y16b{bottom:1041.480060px;}
.y453{bottom:1042.919910px;}
.y433{bottom:1043.280060px;}
.y454{bottom:1043.280150px;}
.y20c{bottom:1046.879910px;}
.y22{bottom:1047.179581px;}
.y10a{bottom:1047.599910px;}
.y473{bottom:1049.399910px;}
.y339{bottom:1049.759910px;}
.y435{bottom:1051.559910px;}
.y137{bottom:1053.000060px;}
.ye7{bottom:1054.439910px;}
.y23a{bottom:1058.039910px;}
.y434{bottom:1058.040150px;}
.y16a{bottom:1058.759910px;}
.y149{bottom:1059.480060px;}
.y70{bottom:1060.199910px;}
.y2e8{bottom:1062.000060px;}
.yf6{bottom:1062.719910px;}
.y3{bottom:1069.199941px;}
.y357{bottom:1070.640060px;}
.y5e{bottom:1075.979570px;}
.y169{bottom:1076.039910px;}
.y21{bottom:1078.319569px;}
.y109{bottom:1080.719910px;}
.y2e7{bottom:1082.879910px;}
.y432{bottom:1089.359910px;}
.y472{bottom:1090.800060px;}
.y26f{bottom:1094.040000px;}
.y20b{bottom:1094.399910px;}
.y136{bottom:1095.839910px;}
.ye6{bottom:1100.160060px;}
.y6f{bottom:1101.599910px;}
.y2e6{bottom:1104.120060px;}
.y5d{bottom:1106.939557px;}
.y20{bottom:1109.279556px;}
.y168{bottom:1111.320060px;}
.y278{bottom:1111.679910px;}
.y239{bottom:1112.039910px;}
.y447{bottom:1117.800150px;}
.y108{bottom:1122.120060px;}
.y446{bottom:1125.000060px;}
.y2e5{bottom:1125.719910px;}
.y2{bottom:1131.479941px;}
.yf5{bottom:1131.839910px;}
.y430{bottom:1138.320060px;}
.y470{bottom:1138.679910px;}
.y1f{bottom:1140.059544px;}
.y41{bottom:1140.419544px;}
.y135{bottom:1141.559910px;}
.y6e{bottom:1143.000060px;}
.y167{bottom:1145.879910px;}
.y471{bottom:1146.600150px;}
.y26e{bottom:1151.280060px;}
.y431{bottom:1153.080150px;}
.y6a{bottom:1174.679910px;}
.y1b{bottom:1193.699523px;}
.h6{height:20.520000px;}
.hb{height:20.880000px;}
.h14{height:28.156831px;}
.h1a{height:28.178317px;}
.h3a{height:28.496867px;}
.h3d{height:28.578112px;}
.h6b{height:28.654057px;}
.h34{height:28.860448px;}
.h1d{height:28.874848px;}
.h22{height:28.951999px;}
.h4d{height:29.006825px;}
.h4a{height:29.066885px;}
.h75{height:29.879970px;}
.h63{height:29.880015px;}
.h29{height:29.900391px;}
.h48{height:31.680000px;}
.h2f{height:32.292422px;}
.h57{height:33.018047px;}
.h66{height:33.119940px;}
.h16{height:33.119985px;}
.h4b{height:33.120000px;}
.h1e{height:33.120030px;}
.h8{height:33.189107px;}
.h18{height:34.559985px;}
.h20{height:34.560015px;}
.h24{height:39.468516px;}
.h27{height:40.561172px;}
.h50{height:41.022422px;}
.h2a{height:44.252578px;}
.h5f{height:46.968410px;}
.h72{height:48.656250px;}
.h25{height:48.761719px;}
.h3{height:48.796875px;}
.h10{height:49.036641px;}
.h61{height:49.153397px;}
.h38{height:49.291878px;}
.h3f{height:49.501426px;}
.h5{height:49.535980px;}
.h69{height:49.563773px;}
.h32{height:49.920775px;}
.h1c{height:49.945683px;}
.h44{height:49.949102px;}
.h7{height:49.967980px;}
.h4{height:49.992188px;}
.h4f{height:50.027344px;}
.h12{height:50.040948px;}
.h53{height:50.092172px;}
.h5a{height:53.367188px;}
.h70{height:54.000000px;}
.h33{height:54.063286px;}
.h5b{height:54.374166px;}
.h65{height:54.374766px;}
.h5c{height:54.374826px;}
.h62{height:54.375366px;}
.h2b{height:54.380991px;}
.h2c{height:54.600469px;}
.h28{height:59.651822px;}
.h26{height:59.652422px;}
.ha{height:59.800781px;}
.h52{height:60.119985px;}
.h67{height:60.120030px;}
.h11{height:61.560015px;}
.h6d{height:63.330922px;}
.h1b{height:64.439940px;}
.h51{height:66.137447px;}
.h58{height:66.138047px;}
.h59{height:66.138647px;}
.hf{height:66.585938px;}
.h55{height:66.789563px;}
.h73{height:66.898623px;}
.h15{height:68.440781px;}
.h6f{height:69.161484px;}
.h54{height:71.134172px;}
.h40{height:71.321381px;}
.h39{height:72.093324px;}
.he{height:72.587916px;}
.hd{height:72.588516px;}
.hc{height:72.589116px;}
.h2{height:73.195313px;}
.h30{height:75.226537px;}
.h3b{height:76.654514px;}
.h71{height:79.730412px;}
.h35{height:81.094929px;}
.h46{height:81.229116px;}
.h31{height:83.879970px;}
.h6e{height:84.074062px;}
.h37{height:91.440030px;}
.h49{height:92.517853px;}
.h3c{height:92.661067px;}
.h74{height:94.749526px;}
.h64{height:95.609252px;}
.h76{height:96.763126px;}
.h4c{height:98.348503px;}
.h23{height:99.269297px;}
.h13{height:102.592154px;}
.h19{height:104.173051px;}
.h17{height:104.370320px;}
.h1f{height:111.763124px;}
.h68{height:114.509812px;}
.h21{height:114.578323px;}
.h36{height:122.356217px;}
.h6a{height:125.218687px;}
.h3e{height:128.505530px;}
.h6c{height:135.363938px;}
.h56{height:135.927562px;}
.h5d{height:208.447266px;}
.h5e{height:232.200000px;}
.h60{height:243.000000px;}
.h45{height:249.169922px;}
.h43{height:275.040000px;}
.h2e{height:317.520000px;}
.h2d{height:334.800000px;}
.h47{height:395.280000px;}
.h4e{height:768.240000px;}
.h42{height:856.440000px;}
.h41{height:892.500000px;}
.h9{height:1226.160000px;}
.h1{height:1262.879941px;}
.h0{height:1263.000000px;}
.w2{width:0.540000px;}
.w4{width:9.000000px;}
.w5{width:18.000000px;}
.w4e{width:26.999955px;}
.w7{width:37.439985px;}
.w57{width:44.999955px;}
.w51{width:51.119940px;}
.w3d{width:51.119985px;}
.w5d{width:51.120000px;}
.we{width:52.200000px;}
.w5c{width:52.559970px;}
.w5b{width:52.559985px;}
.w3c{width:52.560015px;}
.wd{width:53.280000px;}
.w56{width:53.280030px;}
.w61{width:53.999955px;}
.w62{width:54.000000px;}
.w47{width:57.239985px;}
.w23{width:58.319985px;}
.w5f{width:60.120000px;}
.w13{width:60.120030px;}
.w5a{width:61.559970px;}
.w3e{width:61.559985px;}
.w46{width:61.560015px;}
.w11{width:63.000000px;}
.w3f{width:65.160000px;}
.w1c{width:65.519985px;}
.w1b{width:65.520000px;}
.w15{width:68.760045px;}
.w14{width:69.479970px;}
.w6{width:70.560015px;}
.w31{width:71.279985px;}
.w22{width:71.280000px;}
.w32{width:71.280030px;}
.w40{width:71.639985px;}
.w10{width:74.880000px;}
.w16{width:77.760000px;}
.w8{width:80.999970px;}
.w42{width:81.359985px;}
.w12{width:82.439985px;}
.w27{width:83.519985px;}
.w18{width:84.600015px;}
.w19{width:84.959970px;}
.w17{width:84.959985px;}
.w24{width:86.400015px;}
.wc{width:87.480000px;}
.w1a{width:87.840000px;}
.wb{width:89.999970px;}
.wf{width:95.400015px;}
.w53{width:97.199985px;}
.w54{width:97.200000px;}
.w9{width:97.559985px;}
.wa{width:97.560015px;}
.w49{width:100.439985px;}
.w45{width:101.519985px;}
.w21{width:101.520000px;}
.w52{width:101.520015px;}
.w30{width:101.880000px;}
.w43{width:102.959970px;}
.w33{width:105.120000px;}
.w2c{width:106.920000px;}
.w2e{width:106.920045px;}
.w41{width:110.160030px;}
.w58{width:110.879970px;}
.w59{width:113.760000px;}
.w35{width:114.840000px;}
.w34{width:115.200000px;}
.w36{width:117.359985px;}
.w2b{width:125.279985px;}
.w26{width:128.160000px;}
.w3b{width:132.120030px;}
.w28{width:135.000000px;}
.w37{width:135.360030px;}
.w4b{width:142.560060px;}
.w25{width:143.279985px;}
.w39{width:144.360015px;}
.w3a{width:147.959970px;}
.w48{width:148.319985px;}
.w55{width:155.520000px;}
.w44{width:165.600000px;}
.w4c{width:171.000000px;}
.w4d{width:188.280000px;}
.w2a{width:188.640000px;}
.w29{width:197.640000px;}
.w1d{width:222.120000px;}
.w60{width:252.000000px;}
.w2d{width:252.720000px;}
.w4a{width:267.480000px;}
.w1e{width:268.560000px;}
.w38{width:276.120000px;}
.w4f{width:295.920000px;}
.w50{width:310.320000px;}
.w5e{width:343.440000px;}
.w2f{width:439.920000px;}
.w3{width:856.440000px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.w20{width:1226.160000px;}
.w1f{width:1263.000000px;}
.x0{left:0.000000px;}
.x2d{left:2.627234px;}
.x36{left:3.752308px;}
.x46{left:9.360000px;}
.xb7{left:14.560313px;}
.x24{left:18.000000px;}
.x2f{left:22.425315px;}
.xb8{left:25.175250px;}
.x41{left:34.920000px;}
.x2e{left:38.986269px;}
.xb2{left:45.367072px;}
.x3c{left:46.622422px;}
.x37{left:48.498576px;}
.xb0{left:52.772028px;}
.x63{left:54.902885px;}
.x38{left:56.988172px;}
.x62{left:57.997326px;}
.x33{left:60.140625px;}
.xa5{left:61.560000px;}
.x5b{left:63.878256px;}
.x5e{left:65.050765px;}
.x3e{left:66.937500px;}
.x5d{left:68.239987px;}
.x96{left:70.125000px;}
.x60{left:76.095118px;}
.xaf{left:82.532452px;}
.x39{left:84.989767px;}
.x26{left:88.200000px;}
.x61{left:89.598133px;}
.x5c{left:90.658348px;}
.x44{left:93.960000px;}
.x45{left:96.840000px;}
.xd{left:106.200000px;}
.x14{left:107.459217px;}
.x12{left:108.719954px;}
.xba{left:110.519985px;}
.x2{left:112.680000px;}
.x64{left:119.276636px;}
.xa6{left:126.360015px;}
.x65{left:128.184875px;}
.xbd{left:130.320000px;}
.xb1{left:135.304480px;}
.x40{left:141.120000px;}
.x66{left:148.486283px;}
.x9f{left:149.760000px;}
.xa8{left:150.840000px;}
.x15{left:159.478050px;}
.x13{left:160.559947px;}
.x16{left:161.816708px;}
.xbe{left:166.320000px;}
.x1{left:172.440000px;}
.x53{left:173.520000px;}
.x92{left:176.160000px;}
.x98{left:180.000000px;}
.x47{left:183.240000px;}
.x8b{left:185.400000px;}
.x6c{left:197.400000px;}
.xb6{left:198.720000px;}
.x7e{left:200.880000px;}
.x8c{left:202.680000px;}
.x31{left:210.600000px;}
.x32{left:230.040000px;}
.x48{left:235.440000px;}
.x52{left:237.600000px;}
.xb9{left:240.840000px;}
.xbb{left:242.625000px;}
.x57{left:248.040000px;}
.xb4{left:251.440436px;}
.x54{left:257.400000px;}
.xb3{left:258.470457px;}
.xe{left:265.680000px;}
.x6d{left:267.600000px;}
.x1b{left:268.739893px;}
.x1c{left:274.859890px;}
.x2b{left:276.120000px;}
.x35{left:279.720000px;}
.x2c{left:284.760000px;}
.x49{left:286.560000px;}
.x1e{left:291.239884px;}
.x1d{left:293.759882px;}
.x56{left:296.280000px;}
.x1f{left:297.359881px;}
.x9{left:299.880000px;}
.x5f{left:310.320000px;}
.xab{left:311.400000px;}
.x7f{left:315.000000px;}
.x7{left:316.440000px;}
.x8{left:319.680000px;}
.x5{left:321.480000px;}
.xa{left:322.920000px;}
.x6e{left:324.840000px;}
.x20{left:327.599869px;}
.x21{left:333.719867px;}
.x79{left:338.040000px;}
.x55{left:340.920000px;}
.xac{left:344.520000px;}
.x5a{left:345.960000px;}
.x22{left:352.619859px;}
.x34{left:353.880000px;}
.xa9{left:354.960000px;}
.x67{left:356.760000px;}
.xc{left:358.560000px;}
.x3b{left:362.880000px;}
.x43{left:365.040000px;}
.x3f{left:369.360000px;}
.x83{left:371.880000px;}
.x30{left:373.320000px;}
.x3a{left:376.200000px;}
.x3d{left:377.640000px;}
.x17{left:380.879848px;}
.x73{left:384.960000px;}
.x18{left:386.999845px;}
.xa0{left:389.520000px;}
.x3{left:394.200000px;}
.xaa{left:398.520000px;}
.xb{left:402.840000px;}
.x19{left:405.899838px;}
.x7a{left:408.240000px;}
.x4f{left:409.680000px;}
.x1a{left:412.019835px;}
.x6{left:414.360000px;}
.x9b{left:416.160000px;}
.x85{left:423.000000px;}
.xf{left:427.680000px;}
.x80{left:428.760000px;}
.x86{left:440.280000px;}
.x4{left:446.040000px;}
.x87{left:447.840000px;}
.x23{left:451.617039px;}
.x99{left:452.880000px;}
.x4a{left:454.680000px;}
.x50{left:462.600000px;}
.x7b{left:478.440000px;}
.x74{left:509.160000px;}
.x51{left:513.360000px;}
.x84{left:515.160000px;}
.x4b{left:516.600000px;}
.x93{left:520.320000px;}
.x8d{left:526.680000px;}
.x78{left:528.120000px;}
.xad{left:529.200000px;}
.x81{left:542.520000px;}
.xa1{left:543.960000px;}
.x7c{left:548.640000px;}
.x6f{left:552.360000px;}
.x58{left:555.480000px;}
.xae{left:563.760000px;}
.xc1{left:586.440000px;}
.x88{left:590.760000px;}
.xb5{left:594.720000px;}
.xa3{left:596.160000px;}
.x4c{left:597.960000px;}
.xa2{left:605.160000px;}
.x59{left:611.280000px;}
.x7d{left:618.840000px;}
.xbf{left:625.680000px;}
.x8e{left:628.560000px;}
.x28{left:633.600000px;}
.x42{left:638.280000px;}
.xc0{left:641.520000px;}
.x9d{left:653.400000px;}
.x4d{left:657.000000px;}
.x82{left:658.800000px;}
.x10{left:661.319735px;}
.x68{left:664.200000px;}
.xbc{left:673.560000px;}
.x69{left:675.720000px;}
.x29{left:678.960000px;}
.x9e{left:686.520000px;}
.x89{left:691.200000px;}
.x9c{left:694.080000px;}
.x75{left:696.720000px;}
.x25{left:698.040000px;}
.x91{left:703.799985px;}
.xa4{left:705.960000px;}
.x8a{left:724.320000px;}
.x4e{left:725.400000px;}
.xa7{left:733.680000px;}
.x9a{left:759.240000px;}
.x70{left:766.200000px;}
.x2a{left:767.880000px;}
.x27{left:777.240000px;}
.x11{left:785.880000px;}
.x76{left:802.560000px;}
.x8f{left:817.919985px;}
.x71{left:848.640000px;}
.x94{left:886.080000px;}
.x72{left:982.560000px;}
.x6a{left:1002.599985px;}
.x97{left:1027.560000px;}
.x95{left:1036.560000px;}
.x77{left:1054.200000px;}
.x90{left:1138.800000px;}
.x6b{left:1160.040000px;}
@media print{
.v3{vertical-align:-37.120000pt;}
.v9{vertical-align:-34.533650pt;}
.v4{vertical-align:-29.439467pt;}
.v15{vertical-align:-26.879467pt;}
.v13{vertical-align:-24.320000pt;}
.v8{vertical-align:-21.354141pt;}
.v17{vertical-align:-15.989509pt;}
.vd{vertical-align:-13.154419pt;}
.v12{vertical-align:-10.240000pt;}
.v1{vertical-align:-7.680000pt;}
.vf{vertical-align:-5.120000pt;}
.v14{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.680000pt;}
.v1b{vertical-align:10.240533pt;}
.vc{vertical-align:13.549088pt;}
.v18{vertical-align:15.989509pt;}
.v21{vertical-align:17.702000pt;}
.v1d{vertical-align:18.704000pt;}
.v11{vertical-align:21.760533pt;}
.v10{vertical-align:24.320000pt;}
.vb{vertical-align:26.763631pt;}
.v2{vertical-align:29.440533pt;}
.v1f{vertical-align:31.872000pt;}
.v5{vertical-align:37.120533pt;}
.v1c{vertical-align:42.821809pt;}
.v7{vertical-align:46.712183pt;}
.va{vertical-align:48.174536pt;}
.v20{vertical-align:51.937000pt;}
.ve{vertical-align:54.948837pt;}
.v19{vertical-align:56.962626pt;}
.v1e{vertical-align:61.456000pt;}
.v16{vertical-align:65.572863pt;}
.v1a{vertical-align:70.287217pt;}
.ls8c{letter-spacing:-2.186667pt;}
.ls6f{letter-spacing:-1.600000pt;}
.ls86{letter-spacing:-1.472000pt;}
.ls31{letter-spacing:-1.216000pt;}
.ls3c{letter-spacing:-1.150720pt;}
.ls60{letter-spacing:-1.088000pt;}
.ls5e{letter-spacing:-0.768000pt;}
.ls73{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.591360pt;}
.ls2d{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls81{letter-spacing:-0.422400pt;}
.ls34{letter-spacing:-0.384000pt;}
.ls8b{letter-spacing:-0.380160pt;}
.ls48{letter-spacing:-0.367360pt;}
.ls1d{letter-spacing:-0.295680pt;}
.ls75{letter-spacing:-0.266667pt;}
.ls49{letter-spacing:-0.262400pt;}
.ls4a{letter-spacing:-0.209920pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls3d{letter-spacing:-0.168960pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009381pt;}
.ls32{letter-spacing:0.014080pt;}
.ls56{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.037835pt;}
.ls4b{letter-spacing:0.052480pt;}
.ls7{letter-spacing:0.064000pt;}
.ls37{letter-spacing:0.101120pt;}
.ls38{letter-spacing:0.103680pt;}
.ls3f{letter-spacing:0.111360pt;}
.lsb{letter-spacing:0.128000pt;}
.ls52{letter-spacing:0.130560pt;}
.ls51{letter-spacing:0.165120pt;}
.ls50{letter-spacing:0.190720pt;}
.ls62{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.222720pt;}
.ls19{letter-spacing:0.251103pt;}
.ls26{letter-spacing:0.251578pt;}
.ls2c{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.262400pt;}
.ls4d{letter-spacing:0.288000pt;}
.ls7c{letter-spacing:0.320000pt;}
.ls4f{letter-spacing:0.327680pt;}
.ls58{letter-spacing:0.384000pt;}
.ls43{letter-spacing:0.444160pt;}
.ls9{letter-spacing:0.448000pt;}
.ls44{letter-spacing:0.491520pt;}
.lsf{letter-spacing:0.496640pt;}
.ls79{letter-spacing:0.503040pt;}
.lse{letter-spacing:0.506880pt;}
.ls41{letter-spacing:0.509440pt;}
.ls40{letter-spacing:0.512000pt;}
.ls46{letter-spacing:0.524800pt;}
.ls36{letter-spacing:0.565760pt;}
.ls2e{letter-spacing:0.576000pt;}
.ls39{letter-spacing:0.581120pt;}
.ls45{letter-spacing:0.628480pt;}
.ls42{letter-spacing:0.629760pt;}
.ls4{letter-spacing:0.633600pt;}
.ls3{letter-spacing:0.640000pt;}
.ls4e{letter-spacing:0.656640pt;}
.ls21{letter-spacing:0.678368pt;}
.ls9b{letter-spacing:0.704000pt;}
.ls55{letter-spacing:0.954880pt;}
.ls8{letter-spacing:0.960000pt;}
.ls3e{letter-spacing:1.056000pt;}
.ls74{letter-spacing:1.066667pt;}
.ls2f{letter-spacing:1.152000pt;}
.ls7b{letter-spacing:1.280000pt;}
.ls53{letter-spacing:1.724160pt;}
.ls59{letter-spacing:1.728000pt;}
.ls54{letter-spacing:1.771520pt;}
.ls23{letter-spacing:1.784339pt;}
.ls12{letter-spacing:1.787742pt;}
.ls1b{letter-spacing:1.789106pt;}
.ls17{letter-spacing:1.792494pt;}
.ls30{letter-spacing:1.856000pt;}
.ls5b{letter-spacing:1.920000pt;}
.ls6e{letter-spacing:2.112000pt;}
.ls28{letter-spacing:2.143338pt;}
.lsc{letter-spacing:2.240000pt;}
.ls6d{letter-spacing:2.256640pt;}
.ls24{letter-spacing:2.580930pt;}
.ls13{letter-spacing:2.585853pt;}
.ls1c{letter-spacing:2.587826pt;}
.ls27{letter-spacing:2.592727pt;}
.ls70{letter-spacing:2.640000pt;}
.ls76{letter-spacing:2.666667pt;}
.ls20{letter-spacing:2.676508pt;}
.ls1e{letter-spacing:2.975896pt;}
.ls57{letter-spacing:3.200000pt;}
.ls3a{letter-spacing:3.520000pt;}
.ls82{letter-spacing:4.320624pt;}
.ls93{letter-spacing:4.327679pt;}
.ls96{letter-spacing:4.336640pt;}
.ls22{letter-spacing:4.370597pt;}
.ls11{letter-spacing:4.378934pt;}
.ls1a{letter-spacing:4.382275pt;}
.ls16{letter-spacing:4.390574pt;}
.ls77{letter-spacing:4.480000pt;}
.ls8d{letter-spacing:4.772832pt;}
.ls14{letter-spacing:4.790668pt;}
.ls88{letter-spacing:4.800000pt;}
.ls83{letter-spacing:5.057428pt;}
.ls7f{letter-spacing:5.065686pt;}
.ls7d{letter-spacing:5.076175pt;}
.ls72{letter-spacing:5.333333pt;}
.ls4c{letter-spacing:5.760000pt;}
.ls15{letter-spacing:6.690908pt;}
.ls35{letter-spacing:7.040000pt;}
.ls7a{letter-spacing:7.349760pt;}
.ls7e{letter-spacing:7.360000pt;}
.ls90{letter-spacing:7.438848pt;}
.ls18{letter-spacing:7.610908pt;}
.ls33{letter-spacing:8.320000pt;}
.ls99{letter-spacing:8.679144pt;}
.ls97{letter-spacing:8.763794pt;}
.ls80{letter-spacing:9.600000pt;}
.ls8e{letter-spacing:10.217728pt;}
.ls98{letter-spacing:10.436752pt;}
.ls8a{letter-spacing:11.178240pt;}
.ls5c{letter-spacing:11.200000pt;}
.ls6c{letter-spacing:12.160000pt;}
.ls89{letter-spacing:12.480000pt;}
.ls78{letter-spacing:13.440000pt;}
.ls66{letter-spacing:15.508481pt;}
.ls63{letter-spacing:15.540436pt;}
.ls2b{letter-spacing:15.902276pt;}
.ls61{letter-spacing:16.000000pt;}
.ls9a{letter-spacing:16.320000pt;}
.ls6b{letter-spacing:16.852943pt;}
.ls91{letter-spacing:16.897728pt;}
.ls5a{letter-spacing:17.280000pt;}
.ls87{letter-spacing:18.560000pt;}
.ls29{letter-spacing:18.649302pt;}
.ls1f{letter-spacing:20.980465pt;}
.ls5f{letter-spacing:21.120000pt;}
.ls67{letter-spacing:21.806692pt;}
.ls5d{letter-spacing:24.960000pt;}
.ls68{letter-spacing:27.179501pt;}
.ls64{letter-spacing:29.821340pt;}
.ls71{letter-spacing:36.080000pt;}
.ls2a{letter-spacing:37.995289pt;}
.ls94{letter-spacing:44.692587pt;}
.ls25{letter-spacing:45.957209pt;}
.ls84{letter-spacing:49.629728pt;}
.ls10{letter-spacing:59.088243pt;}
.ls92{letter-spacing:207.671848pt;}
.ls8f{letter-spacing:235.727848pt;}
.ls65{letter-spacing:252.024806pt;}
.ls85{letter-spacing:300.857848pt;}
.ls6a{letter-spacing:314.345755pt;}
.ls69{letter-spacing:404.453301pt;}
.ls95{letter-spacing:590.898149pt;}
.ws3d{word-spacing:-67.733333pt;}
.ws37{word-spacing:-66.666667pt;}
.ws3e{word-spacing:-66.400000pt;}
.ws36{word-spacing:-54.666667pt;}
.ws51{word-spacing:-52.480000pt;}
.ws35{word-spacing:-44.000000pt;}
.ws38{word-spacing:-36.000000pt;}
.ws3a{word-spacing:-32.533333pt;}
.ws3b{word-spacing:-26.677333pt;}
.ws40{word-spacing:-17.152000pt;}
.ws28{word-spacing:-16.640000pt;}
.ws34{word-spacing:-16.576000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws13{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws42{word-spacing:-16.091428pt;}
.ws45{word-spacing:-16.058179pt;}
.ws4d{word-spacing:-16.032000pt;}
.wsc{word-spacing:-16.015606pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.999994pt;}
.ws10{word-spacing:-15.985116pt;}
.ws2c{word-spacing:-15.977144pt;}
.ws3{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws18{word-spacing:-15.616000pt;}
.ws6{word-spacing:-15.488000pt;}
.ws52{word-spacing:-15.232000pt;}
.ws16{word-spacing:-14.784000pt;}
.ws4f{word-spacing:-14.528000pt;}
.ws1f{word-spacing:-13.749760pt;}
.ws22{word-spacing:-13.644800pt;}
.ws1e{word-spacing:-13.382400pt;}
.ws23{word-spacing:-13.172480pt;}
.ws1d{word-spacing:-13.120000pt;}
.ws21{word-spacing:-12.910080pt;}
.ws20{word-spacing:-12.752640pt;}
.ws1b{word-spacing:-11.616000pt;}
.ws41{word-spacing:-11.200000pt;}
.wsa{word-spacing:-11.193600pt;}
.ws5{word-spacing:-10.560000pt;}
.ws1a{word-spacing:-10.391040pt;}
.ws50{word-spacing:-10.179840pt;}
.ws49{word-spacing:-10.137600pt;}
.ws4{word-spacing:-9.968640pt;}
.ws44{word-spacing:-9.302857pt;}
.ws25{word-spacing:-9.296640pt;}
.ws47{word-spacing:-9.283634pt;}
.ws4e{word-spacing:-9.268500pt;}
.wsf{word-spacing:-9.266088pt;}
.wsd{word-spacing:-9.259022pt;}
.ws14{word-spacing:-9.241395pt;}
.ws2e{word-spacing:-9.236787pt;}
.ws53{word-spacing:-9.213000pt;}
.ws26{word-spacing:-8.640000pt;}
.ws2a{word-spacing:-8.256000pt;}
.ws17{word-spacing:-7.808000pt;}
.ws1c{word-spacing:-6.400000pt;}
.ws5f{word-spacing:-3.548857pt;}
.ws4c{word-spacing:-3.543072pt;}
.ws46{word-spacing:-3.261818pt;}
.ws11{word-spacing:-2.461708pt;}
.ws43{word-spacing:-2.442880pt;}
.ws48{word-spacing:-2.437832pt;}
.ws4b{word-spacing:-2.433858pt;}
.ws61{word-spacing:-1.798516pt;}
.ws27{word-spacing:-0.704000pt;}
.ws4a{word-spacing:-0.640000pt;}
.ws3c{word-spacing:-0.266667pt;}
.ws39{word-spacing:-0.218667pt;}
.ws3f{word-spacing:-0.128000pt;}
.ws57{word-spacing:-0.064128pt;}
.wsb{word-spacing:-0.064000pt;}
.ws2f{word-spacing:-0.063958pt;}
.ws24{word-spacing:-0.052480pt;}
.ws2b{word-spacing:-0.042240pt;}
.ws19{word-spacing:-0.037120pt;}
.ws59{word-spacing:-0.037074pt;}
.ws32{word-spacing:-0.036976pt;}
.ws58{word-spacing:-0.026887pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.448000pt;}
.wse{word-spacing:0.691534pt;}
.ws12{word-spacing:0.692843pt;}
.ws29{word-spacing:1.024000pt;}
.ws5b{word-spacing:7.951872pt;}
.ws5d{word-spacing:11.666667pt;}
.ws60{word-spacing:12.127270pt;}
.ws56{word-spacing:13.295872pt;}
.ws5a{word-spacing:15.946496pt;}
.ws54{word-spacing:16.384704pt;}
.ws2d{word-spacing:20.993635pt;}
.ws31{word-spacing:31.049628pt;}
.ws30{word-spacing:43.219643pt;}
.ws55{word-spacing:75.085872pt;}
.ws5e{word-spacing:169.993895pt;}
.ws5c{word-spacing:211.503476pt;}
.ws33{word-spacing:485.431681pt;}
._111{margin-left:-10293.991750pt;}
._d9{margin-left:-10149.531655pt;}
._62{margin-left:-10147.852791pt;}
._80{margin-left:-9687.541333pt;}
._6e{margin-left:-9654.270136pt;}
._87{margin-left:-8657.296133pt;}
._42{margin-left:-8493.931407pt;}
._c3{margin-left:-7523.781940pt;}
._e7{margin-left:-7511.466623pt;}
._b3{margin-left:-6583.512142pt;}
._8c{margin-left:-6379.804825pt;}
._10e{margin-left:-6347.112343pt;}
._92{margin-left:-6218.434125pt;}
._fa{margin-left:-6168.615276pt;}
._79{margin-left:-6152.240607pt;}
._46{margin-left:-5996.213427pt;}
._e1{margin-left:-5953.328162pt;}
._b1{margin-left:-5836.373333pt;}
._63{margin-left:-5686.498125pt;}
._39{margin-left:-5663.434667pt;}
._e0{margin-left:-5596.216005pt;}
._6c{margin-left:-5517.409404pt;}
._7d{margin-left:-5470.469701pt;}
._4c{margin-left:-5441.621333pt;}
._9b{margin-left:-5365.954125pt;}
._85{margin-left:-5297.260791pt;}
._c8{margin-left:-5287.982822pt;}
._a4{margin-left:-5243.904000pt;}
._88{margin-left:-5232.807413pt;}
._58{margin-left:-5212.606127pt;}
._d2{margin-left:-5210.944000pt;}
._aa{margin-left:-5187.349696pt;}
._e4{margin-left:-5086.224604pt;}
._e5{margin-left:-5060.799217pt;}
._d6{margin-left:-5053.909333pt;}
._be{margin-left:-4920.181333pt;}
._44{margin-left:-4918.513041pt;}
._100{margin-left:-4852.226672pt;}
._bf{margin-left:-4789.450667pt;}
._d5{margin-left:-4753.662068pt;}
._7e{margin-left:-4678.071458pt;}
._59{margin-left:-4659.075132pt;}
._10c{margin-left:-4563.022743pt;}
._cd{margin-left:-4145.653829pt;}
._c0{margin-left:-4071.850667pt;}
._a1{margin-left:-4070.101333pt;}
._3d{margin-left:-4046.287271pt;}
._103{margin-left:-3960.804805pt;}
._56{margin-left:-3949.655276pt;}
._7a{margin-left:-3869.233943pt;}
._93{margin-left:-3839.530667pt;}
._fc{margin-left:-3812.594133pt;}
._8b{margin-left:-3759.204145pt;}
._51{margin-left:-3753.356003pt;}
._db{margin-left:-3709.317940pt;}
._9a{margin-left:-3602.197333pt;}
._ca{margin-left:-3587.642150pt;}
._c2{margin-left:-3573.344000pt;}
._ff{margin-left:-3495.062738pt;}
._77{margin-left:-3449.123469pt;}
._101{margin-left:-3400.650071pt;}
._f5{margin-left:-3369.821517pt;}
._5b{margin-left:-3341.015276pt;}
._95{margin-left:-3330.986667pt;}
._108{margin-left:-3293.752343pt;}
._da{margin-left:-3263.323396pt;}
._b2{margin-left:-3019.165084pt;}
._6a{margin-left:-3002.865282pt;}
._3b{margin-left:-2917.028797pt;}
._f9{margin-left:-2803.777336pt;}
._98{margin-left:-2801.749333pt;}
._9c{margin-left:-2795.754667pt;}
._d8{margin-left:-2781.824000pt;}
._106{margin-left:-2747.852003pt;}
._f0{margin-left:-2735.562667pt;}
._8a{margin-left:-2713.026809pt;}
._a5{margin-left:-2697.674667pt;}
._4d{margin-left:-2677.386667pt;}
._3e{margin-left:-2644.353336pt;}
._e8{margin-left:-2564.957328pt;}
._a7{margin-left:-2559.410851pt;}
._8f{margin-left:-2556.394667pt;}
._52{margin-left:-2555.200000pt;}
._ba{margin-left:-2553.941333pt;}
._ef{margin-left:-2500.349517pt;}
._dc{margin-left:-2483.338667pt;}
._53{margin-left:-2436.449336pt;}
._67{margin-left:-2415.168000pt;}
._e3{margin-left:-2403.859538pt;}
._c4{margin-left:-2400.778667pt;}
._113{margin-left:-2388.260604pt;}
._34{margin-left:-2327.776000pt;}
._c1{margin-left:-2320.562851pt;}
._ab{margin-left:-2316.668003pt;}
._8d{margin-left:-2292.864000pt;}
._107{margin-left:-2241.600000pt;}
._91{margin-left:-2233.728000pt;}
._ee{margin-left:-2135.116791pt;}
._6f{margin-left:-2107.560005pt;}
._ae{margin-left:-2101.824000pt;}
._8e{margin-left:-2068.608000pt;}
._ec{margin-left:-2000.000000pt;}
._84{margin-left:-1995.114667pt;}
._102{margin-left:-1959.203401pt;}
._fb{margin-left:-1954.156003pt;}
._cb{margin-left:-1922.339469pt;}
._48{margin-left:-1914.915146pt;}
._5d{margin-left:-1853.559736pt;}
._dd{margin-left:-1852.298667pt;}
._96{margin-left:-1851.058851pt;}
._de{margin-left:-1795.872000pt;}
._a3{margin-left:-1784.000000pt;}
._94{margin-left:-1776.053333pt;}
._114{margin-left:-1765.540604pt;}
._10d{margin-left:-1705.331469pt;}
._45{margin-left:-1668.512000pt;}
._65{margin-left:-1604.469333pt;}
._eb{margin-left:-1561.642667pt;}
._ce{margin-left:-1558.184734pt;}
._10b{margin-left:-1550.188678pt;}
._82{margin-left:-1529.833878pt;}
._89{margin-left:-1490.577404pt;}
._86{margin-left:-1485.792000pt;}
._49{margin-left:-1459.118136pt;}
._c6{margin-left:-1389.446669pt;}
._75{margin-left:-1386.694669pt;}
._f4{margin-left:-1382.016000pt;}
._a2{margin-left:-1372.981333pt;}
._a9{margin-left:-1363.431467pt;}
._b8{margin-left:-1352.736000pt;}
._c7{margin-left:-1314.745948pt;}
._50{margin-left:-1304.597333pt;}
._3f{margin-left:-1275.114667pt;}
._37{margin-left:-1237.845333pt;}
._5f{margin-left:-1218.414542pt;}
._10f{margin-left:-1165.824729pt;}
._ed{margin-left:-1133.333333pt;}
._9f{margin-left:-1125.696000pt;}
._c5{margin-left:-1108.240000pt;}
._af{margin-left:-1088.746667pt;}
._e2{margin-left:-1043.262542pt;}
._e9{margin-left:-1026.730667pt;}
._74{margin-left:-1022.960000pt;}
._b7{margin-left:-947.381333pt;}
._99{margin-left:-938.474667pt;}
._110{margin-left:-919.579396pt;}
._ac{margin-left:-877.477333pt;}
._5e{margin-left:-876.133333pt;}
._55{margin-left:-827.685333pt;}
._f7{margin-left:-812.581333pt;}
._68{margin-left:-806.834133pt;}
._a8{margin-left:-801.893333pt;}
._a6{margin-left:-794.581333pt;}
._43{margin-left:-734.026667pt;}
._c9{margin-left:-731.775271pt;}
._b6{margin-left:-707.296000pt;}
._4a{margin-left:-666.666667pt;}
._78{margin-left:-646.370133pt;}
._df{margin-left:-609.248000pt;}
._47{margin-left:-600.000000pt;}
._d0{margin-left:-576.800000pt;}
._7b{margin-left:-563.109333pt;}
._9e{margin-left:-558.400000pt;}
._4b{margin-left:-533.333333pt;}
._ea{margin-left:-520.181333pt;}
._b9{margin-left:-501.077333pt;}
._6b{margin-left:-497.488000pt;}
._3c{margin-left:-450.077328pt;}
._f8{margin-left:-430.960000pt;}
._d7{margin-left:-429.301333pt;}
._109{margin-left:-401.969336pt;}
._f6{margin-left:-400.000000pt;}
._81{margin-left:-392.251274pt;}
._cc{margin-left:-390.874667pt;}
._fd{margin-left:-382.588003pt;}
._4f{margin-left:-380.874667pt;}
._bd{margin-left:-349.152000pt;}
._104{margin-left:-344.241336pt;}
._cf{margin-left:-342.933333pt;}
._fe{margin-left:-339.013333pt;}
._6d{margin-left:-321.877333pt;}
._10a{margin-left:-299.354667pt;}
._90{margin-left:-278.784000pt;}
._54{margin-left:-268.714667pt;}
._36{margin-left:-266.666667pt;}
._112{margin-left:-247.354667pt;}
._40{margin-left:-241.333333pt;}
._b5{margin-left:-221.589333pt;}
._bc{margin-left:-210.793331pt;}
._72{margin-left:-199.642667pt;}
._83{margin-left:-192.533333pt;}
._64{margin-left:-162.933333pt;}
._105{margin-left:-158.693333pt;}
._bb{margin-left:-148.266667pt;}
._3a{margin-left:-146.688000pt;}
._b4{margin-left:-138.933333pt;}
._4e{margin-left:-137.280000pt;}
._5a{margin-left:-133.605333pt;}
._69{margin-left:-121.578667pt;}
._66{margin-left:-118.400000pt;}
._73{margin-left:-113.925333pt;}
._57{margin-left:-109.333333pt;}
._d3{margin-left:-103.733333pt;}
._5c{margin-left:-97.088000pt;}
._38{margin-left:-88.800000pt;}
._71{margin-left:-72.000000pt;}
._35{margin-left:-66.666667pt;}
._97{margin-left:-58.608000pt;}
._60{margin-left:-54.666667pt;}
._70{margin-left:-47.952000pt;}
._23{margin-left:-16.015606pt;}
._f2{margin-left:-12.992000pt;}
._32{margin-left:-11.968000pt;}
._f3{margin-left:-10.704640pt;}
._a0{margin-left:-8.138667pt;}
._24{margin-left:-6.690483pt;}
._61{margin-left:-5.717333pt;}
._30{margin-left:-4.669875pt;}
._25{margin-left:-3.200000pt;}
._2{margin-left:-2.048000pt;}
._1{margin-left:-1.152000pt;}
._0{width:0.960000pt;}
._b{width:2.048000pt;}
._e{width:3.456000pt;}
._6{width:5.228003pt;}
._5{width:6.128729pt;}
._15{width:7.375271pt;}
._13{width:8.396800pt;}
._c{width:9.536000pt;}
._14{width:10.470400pt;}
._10{width:11.584000pt;}
._f{width:12.608000pt;}
._12{width:14.144000pt;}
._11{width:15.040000pt;}
._16{width:17.408000pt;}
._a{width:18.496000pt;}
._20{width:19.392000pt;}
._17{width:20.416000pt;}
._1a{width:21.632000pt;}
._9{width:22.912000pt;}
._8{width:24.064000pt;}
._d{width:24.960000pt;}
._22{width:25.856000pt;}
._21{width:26.880000pt;}
._2a{width:28.608000pt;}
._29{width:29.504000pt;}
._31{width:30.656000pt;}
._18{width:32.128000pt;}
._19{width:34.112000pt;}
._27{width:35.840000pt;}
._26{width:37.248000pt;}
._2b{width:38.976000pt;}
._2c{width:39.872000pt;}
._9d{width:40.800000pt;}
._76{width:42.214062pt;}
._2e{width:43.648000pt;}
._2d{width:44.544000pt;}
._41{width:45.440000pt;}
._33{width:48.768000pt;}
._1b{width:50.048000pt;}
._1c{width:51.008000pt;}
._1d{width:53.120000pt;}
._1e{width:54.912000pt;}
._7c{width:61.706667pt;}
._7f{width:71.709328pt;}
._e6{width:72.725333pt;}
._d4{width:76.640000pt;}
._d1{width:77.973333pt;}
._ad{width:87.552000pt;}
._b0{width:88.469333pt;}
._2f{width:89.725440pt;}
._f1{width:140.160000pt;}
._1f{width:172.160000pt;}
._28{width:173.440000pt;}
._7{width:2339.305731pt;}
._4{width:2360.441722pt;}
._3{width:2381.572381pt;}
.fs14{font-size:25.600000pt;}
.fs11{font-size:26.808372pt;}
.fs8{font-size:26.859505pt;}
.fse{font-size:26.880002pt;}
.fs2d{font-size:26.887000pt;}
.fsb{font-size:26.930904pt;}
.fs16{font-size:32.000000pt;}
.fs15{font-size:34.560000pt;}
.fs2c{font-size:36.852000pt;}
.fs19{font-size:36.947146pt;}
.fs10{font-size:36.965581pt;}
.fs1c{font-size:36.975740pt;}
.fs7{font-size:37.036088pt;}
.fsd{font-size:37.064350pt;}
.fs28{font-size:37.074000pt;}
.fs13{font-size:37.120000pt;}
.fsa{font-size:37.134538pt;}
.fs26{font-size:37.211427pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:42.879983pt;}
.fs17{font-size:47.360000pt;}
.fs5{font-size:52.480000pt;}
.fs29{font-size:62.639840pt;}
.fs2b{font-size:63.744000pt;}
.fs18{font-size:63.908577pt;}
.fsf{font-size:63.940465pt;}
.fs1b{font-size:63.958036pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:64.062423pt;}
.fsc{font-size:64.111309pt;}
.fs27{font-size:64.128000pt;}
.fs9{font-size:64.232714pt;}
.fs25{font-size:64.365711pt;}
.fs2a{font-size:65.553867pt;}
.fs1f{font-size:65.969690pt;}
.fs20{font-size:66.615067pt;}
.fs2e{font-size:83.665039pt;}
.fs1a{font-size:95.862866pt;}
.fs1e{font-size:95.937055pt;}
.fs0{font-size:96.000000pt;}
.fs1d{font-size:101.266534pt;}
.fs2f{font-size:105.330033pt;}
.fs12{font-size:106.240000pt;}
.fs24{font-size:144.000000pt;}
.fs22{font-size:176.000000pt;}
.fs23{font-size:218.666667pt;}
.fs21{font-size:266.666667pt;}
.yb7{bottom:-0.000127pt;}
.y270{bottom:-0.000007pt;}
.ybd{bottom:-0.000002pt;}
.y0{bottom:0.000000pt;}
.y34b{bottom:0.000001pt;}
.yce{bottom:0.000006pt;}
.yb0{bottom:0.000014pt;}
.y42e{bottom:0.000041pt;}
.y1{bottom:0.106719pt;}
.y276{bottom:2.995708pt;}
.y457{bottom:3.666667pt;}
.y6d{bottom:3.840000pt;}
.y1e{bottom:3.840033pt;}
.y308{bottom:4.159867pt;}
.y393{bottom:4.480000pt;}
.y44d{bottom:4.759500pt;}
.y283{bottom:4.830160pt;}
.y39d{bottom:4.926500pt;}
.y46c{bottom:5.101823pt;}
.y1f8{bottom:6.080000pt;}
.yd8{bottom:6.678259pt;}
.y44f{bottom:7.473250pt;}
.y39b{bottom:10.354000pt;}
.y46b{bottom:11.290913pt;}
.yb3{bottom:11.678060pt;}
.y449{bottom:12.191000pt;}
.yc7{bottom:12.238605pt;}
.y277{bottom:15.561066pt;}
.y296{bottom:16.160080pt;}
.y281{bottom:16.239341pt;}
.y69{bottom:16.320080pt;}
.y34c{bottom:16.594286pt;}
.y42f{bottom:16.594326pt;}
.y284{bottom:17.072127pt;}
.y40b{bottom:17.898051pt;}
.y34f{bottom:17.898184pt;}
.y452{bottom:18.286500pt;}
.y275{bottom:18.723209pt;}
.y44a{bottom:18.912750pt;}
.ybe{bottom:19.199999pt;}
.yc8{bottom:19.398605pt;}
.y39e{bottom:20.123500pt;}
.y1f7{bottom:20.159867pt;}
.y1db{bottom:20.160000pt;}
.y280{bottom:20.236718pt;}
.y44e{bottom:20.290500pt;}
.y1dc{bottom:21.439867pt;}
.y451{bottom:22.127500pt;}
.y450{bottom:22.211234pt;}
.y399{bottom:22.712000pt;}
.y307{bottom:22.719867pt;}
.y392{bottom:22.720133pt;}
.yb1{bottom:24.023422pt;}
.yc5{bottom:25.309768pt;}
.y456{bottom:27.333384pt;}
.y455{bottom:29.333333pt;}
.y39a{bottom:29.893000pt;}
.y282{bottom:30.063604pt;}
.y448{bottom:31.897000pt;}
.y271{bottom:31.954282pt;}
.y6b{bottom:34.560000pt;}
.y27a{bottom:34.643932pt;}
.y39c{bottom:35.487500pt;}
.y44c{bottom:35.654500pt;}
.y1da{bottom:36.800000pt;}
.y273{bottom:38.278568pt;}
.yc6{bottom:40.254186pt;}
.y306{bottom:40.959867pt;}
.y27e{bottom:40.973112pt;}
.y391{bottom:41.280000pt;}
.y44b{bottom:42.501500pt;}
.yb2{bottom:42.875125pt;}
.y298{bottom:46.880080pt;}
.y6c{bottom:47.040080pt;}
.y1d{bottom:47.306880pt;}
.y274{bottom:50.843926pt;}
.y1c{bottom:51.146646pt;}
.y1f6{bottom:51.840000pt;}
.y1d9{bottom:52.160000pt;}
.y27c{bottom:52.382293pt;}
.y27f{bottom:53.215080pt;}
.y272{bottom:54.006070pt;}
.y27d{bottom:54.547633pt;}
.y27b{bottom:56.379671pt;}
.y305{bottom:59.520000pt;}
.y390{bottom:59.520133pt;}
.y1f5{bottom:67.199867pt;}
.y1d8{bottom:67.519867pt;}
.y304{bottom:77.759867pt;}
.y38f{bottom:78.080000pt;}
.y222{bottom:81.280000pt;}
.y2c1{bottom:81.919987pt;}
.y3b3{bottom:81.920000pt;}
.y1d7{bottom:82.559867pt;}
.y1c6{bottom:82.560000pt;}
.y166{bottom:82.879987pt;}
.y48f{bottom:83.840000pt;}
.y26d{bottom:84.480000pt;}
.y40{bottom:84.586633pt;}
.ya6{bottom:85.760000pt;}
.y31f{bottom:86.080000pt;}
.y315{bottom:86.399987pt;}
.y20a{bottom:87.360000pt;}
.y3de{bottom:88.639987pt;}
.y365{bottom:89.280000pt;}
.y1f9{bottom:89.600000pt;}
.y238{bottom:89.919987pt;}
.y160{bottom:90.240000pt;}
.ye3{bottom:90.879987pt;}
.y1a{bottom:93.439988pt;}
.y5c{bottom:93.706629pt;}
.y46f{bottom:94.080000pt;}
.y25c{bottom:95.360000pt;}
.y87{bottom:96.000000pt;}
.y303{bottom:96.320000pt;}
.y209{bottom:96.960000pt;}
.y1d6{bottom:97.920000pt;}
.y165{bottom:98.240000pt;}
.y124{bottom:98.879987pt;}
.y3ea{bottom:99.520000pt;}
.y9b{bottom:100.159987pt;}
.y26b{bottom:101.120000pt;}
.y48e{bottom:102.080000pt;}
.y221{bottom:102.720000pt;}
.y356{bottom:103.040000pt;}
.y3dd{bottom:104.000000pt;}
.ye1{bottom:105.280000pt;}
.y3b2{bottom:107.520000pt;}
.y237{bottom:108.159987pt;}
.y1ea{bottom:109.120000pt;}
.yc3{bottom:110.080000pt;}
.y193{bottom:110.399987pt;}
.y321{bottom:112.000000pt;}
.y3f{bottom:112.106622pt;}
.y220{bottom:112.320000pt;}
.y1d5{bottom:113.279867pt;}
.y164{bottom:113.600000pt;}
.y32d{bottom:113.919987pt;}
.y107{bottom:114.240000pt;}
.y302{bottom:114.560000pt;}
.y3f6{bottom:114.879987pt;}
.y38e{bottom:114.880133pt;}
.y1c5{bottom:115.520000pt;}
.y123{bottom:117.120053pt;}
.y295{bottom:117.440053pt;}
.y2c0{bottom:118.720053pt;}
.y3dc{bottom:119.040053pt;}
.y42c{bottom:119.360053pt;}
.y48d{bottom:120.640053pt;}
.y3c4{bottom:121.280053pt;}
.y5b{bottom:121.386618pt;}
.ya5{bottom:122.560053pt;}
.y31e{bottom:122.880053pt;}
.y314{bottom:123.200053pt;}
.y338{bottom:123.520053pt;}
.y254{bottom:124.480053pt;}
.y3b1{bottom:126.080053pt;}
.y364{bottom:126.400053pt;}
.y42d{bottom:126.400093pt;}
.y236{bottom:126.720053pt;}
.y15f{bottom:127.040053pt;}
.y1a3{bottom:127.360053pt;}
.y9a{bottom:127.680053pt;}
.y1e9{bottom:128.000053pt;}
.y1d4{bottom:128.639867pt;}
.y1f4{bottom:128.640000pt;}
.y163{bottom:128.960053pt;}
.y41f{bottom:129.280053pt;}
.y19{bottom:130.240001pt;}
.y3f5{bottom:130.240053pt;}
.y208{bottom:130.560053pt;}
.y355{bottom:130.880053pt;}
.y1c4{bottom:131.840053pt;}
.y148{bottom:132.160053pt;}
.y86{bottom:132.800053pt;}
.y301{bottom:133.120000pt;}
.y3db{bottom:134.400053pt;}
.y122{bottom:135.680053pt;}
.y3e9{bottom:136.320053pt;}
.y370{bottom:136.960053pt;}
.y26a{bottom:137.920053pt;}
.y48c{bottom:138.880053pt;}
.y3e{bottom:139.786611pt;}
.ye0{bottom:142.080053pt;}
.y3cf{bottom:143.680053pt;}
.y1f3{bottom:143.999867pt;}
.y1d3{bottom:144.000000pt;}
.y162{bottom:144.320053pt;}
.y1e8{bottom:144.640053pt;}
.y235{bottom:144.960053pt;}
.y1a2{bottom:145.600053pt;}
.y2b9{bottom:146.560053pt;}
.yc2{bottom:146.880053pt;}
.y192{bottom:147.200053pt;}
.y1c3{bottom:148.480053pt;}
.y21f{bottom:148.800053pt;}
.y5a{bottom:148.906607pt;}
.y483{bottom:150.400053pt;}
.y32c{bottom:150.720053pt;}
.y106{bottom:151.040053pt;}
.y300{bottom:151.360000pt;}
.y38d{bottom:151.680133pt;}
.y253{bottom:152.000053pt;}
.yad{bottom:152.320053pt;}
.y121{bottom:153.920053pt;}
.y294{bottom:154.240053pt;}
.y2bf{bottom:155.520053pt;}
.y48b{bottom:157.440053pt;}
.y354{bottom:158.400053pt;}
.y1d2{bottom:159.359867pt;}
.ya4{bottom:159.360053pt;}
.y31d{bottom:159.680053pt;}
.y313{bottom:160.000053pt;}
.y1e7{bottom:160.640053pt;}
.y3f4{bottom:160.960053pt;}
.y32f{bottom:163.200053pt;}
.y1a1{bottom:163.520053pt;}
.y15e{bottom:163.840053pt;}
.y99{bottom:164.480053pt;}
.y3da{bottom:164.800053pt;}
.y2b8{bottom:165.120053pt;}
.yf4{bottom:166.720053pt;}
.y18{bottom:167.039948pt;}
.y3d{bottom:167.306600pt;}
.y46e{bottom:167.680053pt;}
.ye5{bottom:168.320053pt;}
.y207{bottom:168.640053pt;}
.y147{bottom:168.960053pt;}
.y85{bottom:169.599920pt;}
.y2ff{bottom:169.919867pt;}
.y38c{bottom:169.920133pt;}
.y19b{bottom:172.480053pt;}
.y3e8{bottom:173.119920pt;}
.y2be{bottom:174.079920pt;}
.y1d1{bottom:174.719867pt;}
.y1f2{bottom:174.720000pt;}
.y161{bottom:175.040053pt;}
.y48a{bottom:175.680053pt;}
.y59{bottom:176.586596pt;}
.y3f3{bottom:176.640053pt;}
.y269{bottom:178.559920pt;}
.ydf{bottom:178.880053pt;}
.y252{bottom:179.520053pt;}
.y1a0{bottom:179.840053pt;}
.y3ce{bottom:180.480053pt;}
.y36f{bottom:181.119920pt;}
.y120{bottom:181.760053pt;}
.y3b0{bottom:182.080053pt;}
.y2b7{bottom:183.360053pt;}
.yc1{bottom:183.680053pt;}
.y191{bottom:184.000053pt;}
.y21e{bottom:185.599920pt;}
.y353{bottom:185.920053pt;}
.y32b{bottom:187.520053pt;}
.y105{bottom:187.840053pt;}
.y2fe{bottom:188.160000pt;}
.y38b{bottom:188.480133pt;}
.yac{bottom:189.119920pt;}
.y1f1{bottom:190.079867pt;}
.y1d0{bottom:190.080000pt;}
.y41e{bottom:190.400053pt;}
.y134{bottom:190.720053pt;}
.y3ee{bottom:191.970873pt;}
.y2bd{bottom:192.000053pt;}
.y1e6{bottom:192.640053pt;}
.y293{bottom:193.599920pt;}
.y1c2{bottom:194.240053pt;}
.y3c{bottom:194.986589pt;}
.ya3{bottom:196.160053pt;}
.y312{bottom:196.480053pt;}
.y42b{bottom:196.800053pt;}
.y19f{bottom:197.440053pt;}
.y3ae{bottom:199.360053pt;}
.y36e{bottom:199.680053pt;}
.y26c{bottom:200.000053pt;}
.y234{bottom:200.320053pt;}
.y15d{bottom:200.639920pt;}
.y3af{bottom:200.640053pt;}
.y3f8{bottom:200.922611pt;}
.y98{bottom:201.280053pt;}
.y2b6{bottom:201.920053pt;}
.y41d{bottom:202.880053pt;}
.y17{bottom:203.839948pt;}
.y58{bottom:204.106585pt;}
.y46d{bottom:204.480053pt;}
.ye2{bottom:205.119920pt;}
.y1cf{bottom:205.439867pt;}
.y25b{bottom:205.760053pt;}
.y206{bottom:206.079920pt;}
.y84{bottom:206.400053pt;}
.y2fd{bottom:206.719867pt;}
.y38a{bottom:206.720133pt;}
.yab{bottom:207.040053pt;}
.y251{bottom:207.360053pt;}
.y489{bottom:208.960053pt;}
.y11f{bottom:209.280053pt;}
.y146{bottom:209.599920pt;}
.y3e7{bottom:209.920053pt;}
.y36d{bottom:210.559920pt;}
.y352{bottom:213.440053pt;}
.yde{bottom:215.680053pt;}
.y268{bottom:216.639920pt;}
.y3cd{bottom:217.280053pt;}
.y233{bottom:218.559920pt;}
.y3ad{bottom:218.880053pt;}
.y2b5{bottom:220.160053pt;}
.yc0{bottom:220.480053pt;}
.y190{bottom:220.800053pt;}
.y1ce{bottom:221.439867pt;}
.yaa{bottom:222.400053pt;}
.y3b{bottom:222.506578pt;}
.y3f2{bottom:222.720053pt;}
.y2e3{bottom:224.320053pt;}
.y104{bottom:224.639920pt;}
.y2fc{bottom:224.959867pt;}
.y1c1{bottom:224.960053pt;}
.y389{bottom:225.280000pt;}
.y133{bottom:227.520053pt;}
.yf3{bottom:228.160053pt;}
.y2bc{bottom:229.137548pt;}
.y57{bottom:231.626574pt;}
.ya2{bottom:232.960053pt;}
.y31c{bottom:233.280053pt;}
.y42a{bottom:233.599920pt;}
.y337{bottom:233.920053pt;}
.y292{bottom:234.240053pt;}
.y250{bottom:234.880053pt;}
.y36c{bottom:236.480053pt;}
.y1cd{bottom:236.799867pt;}
.y1f0{bottom:236.800000pt;}
.y11e{bottom:236.800053pt;}
.y232{bottom:237.119920pt;}
.y15c{bottom:237.440053pt;}
.ya9{bottom:237.760053pt;}
.y97{bottom:238.079920pt;}
.y2b4{bottom:238.719920pt;}
.y2bb{bottom:238.720133pt;}
.y1c0{bottom:240.320053pt;}
.y16{bottom:240.639948pt;}
.y368{bottom:242.559920pt;}
.y83{bottom:243.200053pt;}
.y2fb{bottom:243.520000pt;}
.y388{bottom:243.520133pt;}
.y2e2{bottom:244.159920pt;}
.y2e4{bottom:245.440053pt;}
.y19a{bottom:246.079920pt;}
.y205{bottom:246.720053pt;}
.y36b{bottom:247.360053pt;}
.y145{bottom:247.680053pt;}
.y469{bottom:248.000053pt;}
.y350{bottom:248.320053pt;}
.y3a{bottom:250.026567pt;}
.y1ef{bottom:251.839867pt;}
.y1cc{bottom:252.160000pt;}
.ydd{bottom:252.480053pt;}
.ya8{bottom:253.119920pt;}
.y267{bottom:253.440053pt;}
.y46a{bottom:253.760133pt;}
.y1ed{bottom:254.079867pt;}
.y3cc{bottom:254.079920pt;}
.y351{bottom:254.080133pt;}
.y231{bottom:255.360053pt;}
.y1bf{bottom:255.680053pt;}
.y2b3{bottom:256.960053pt;}
.ybf{bottom:257.280053pt;}
.y3ac{bottom:258.239920pt;}
.y21d{bottom:259.200053pt;}
.y56{bottom:259.306563pt;}
.y32a{bottom:261.119920pt;}
.y103{bottom:261.440053pt;}
.y2fa{bottom:261.759867pt;}
.y387{bottom:262.080000pt;}
.y24f{bottom:262.400053pt;}
.y2e1{bottom:263.680053pt;}
.y11d{bottom:264.320053pt;}
.y1cb{bottom:267.520000pt;}
.y1ee{bottom:268.159867pt;}
.y3f1{bottom:268.800053pt;}
.y1ec{bottom:269.439867pt;}
.y1c9{bottom:269.440000pt;}
.ya1{bottom:269.760053pt;}
.y31b{bottom:270.079920pt;}
.y429{bottom:270.400053pt;}
.y1be{bottom:271.040053pt;}
.y36a{bottom:273.280053pt;}
.y363{bottom:273.599920pt;}
.y230{bottom:273.920053pt;}
.y15b{bottom:274.240053pt;}
.y96{bottom:274.880053pt;}
.y2b2{bottom:275.520053pt;}
.y3ab{bottom:276.799920pt;}
.y15{bottom:277.439948pt;}
.y39{bottom:277.706556pt;}
.y311{bottom:279.360053pt;}
.y82{bottom:280.000053pt;}
.y2f9{bottom:280.320000pt;}
.y2e0{bottom:282.240053pt;}
.y199{bottom:282.880053pt;}
.y1ca{bottom:283.520000pt;}
.y3e6{bottom:283.520053pt;}
.ya7{bottom:283.840053pt;}
.y369{bottom:284.159920pt;}
.y144{bottom:284.480053pt;}
.y1c8{bottom:284.799867pt;}
.y2c7{bottom:285.119920pt;}
.y1bd{bottom:286.400053pt;}
.y349{bottom:286.720053pt;}
.y55{bottom:286.826552pt;}
.y204{bottom:288.639920pt;}
.y468{bottom:288.960053pt;}
.ydc{bottom:289.280053pt;}
.y24e{bottom:289.920053pt;}
.y266{bottom:290.240053pt;}
.y3cb{bottom:290.880053pt;}
.y11c{bottom:292.159920pt;}
.y34e{bottom:292.480133pt;}
.y2b1{bottom:293.759920pt;}
.y34a{bottom:293.760133pt;}
.y34d{bottom:294.079920pt;}
.y3aa{bottom:295.040053pt;}
.y21c{bottom:296.000053pt;}
.y329{bottom:297.920053pt;}
.y102{bottom:298.240053pt;}
.y386{bottom:298.880133pt;}
.y2f8{bottom:299.200000pt;}
.y3f0{bottom:299.200053pt;}
.y18f{bottom:299.520053pt;}
.y2df{bottom:300.480053pt;}
.y132{bottom:301.119920pt;}
.y1bc{bottom:301.760053pt;}
.ybb{bottom:302.400053pt;}
.y38{bottom:305.226545pt;}
.ya0{bottom:306.559920pt;}
.ybc{bottom:306.560133pt;}
.y31a{bottom:306.880053pt;}
.y428{bottom:307.199920pt;}
.y291{bottom:307.840053pt;}
.y362{bottom:310.400053pt;}
.y22f{bottom:310.720053pt;}
.y15a{bottom:311.040053pt;}
.y95{bottom:311.679920pt;}
.y2b0{bottom:312.319920pt;}
.y14{bottom:314.239948pt;}
.y54{bottom:314.506541pt;}
.ye4{bottom:315.520053pt;}
.y198{bottom:315.840053pt;}
.y367{bottom:316.159920pt;}
.y81{bottom:316.800053pt;}
.y2f5{bottom:316.800133pt;}
.y1bb{bottom:317.119920pt;}
.y385{bottom:317.120000pt;}
.y2f7{bottom:317.759867pt;}
.y24d{bottom:317.760053pt;}
.y348{bottom:318.079920pt;}
.y2de{bottom:319.040053pt;}
.y3c3{bottom:319.680053pt;}
.y3e5{bottom:320.320053pt;}
.y310{bottom:321.280053pt;}
.y2c6{bottom:321.920053pt;}
.y11b{bottom:322.240053pt;}
.y319{bottom:324.800053pt;}
.y413{bottom:325.439920pt;}
.y467{bottom:325.760053pt;}
.ydb{bottom:326.079920pt;}
.y265{bottom:327.040053pt;}
.y3ca{bottom:327.680053pt;}
.y143{bottom:328.640053pt;}
.y22e{bottom:328.960053pt;}
.y2af{bottom:330.559920pt;}
.y203{bottom:330.880053pt;}
.y197{bottom:331.199920pt;}
.y1ba{bottom:332.480053pt;}
.y21b{bottom:332.800053pt;}
.y37{bottom:332.906534pt;}
.y371{bottom:333.440000pt;}
.y328{bottom:334.720053pt;}
.y101{bottom:335.040053pt;}
.y384{bottom:335.680133pt;}
.y2f6{bottom:335.999867pt;}
.y18e{bottom:336.319920pt;}
.y411{bottom:336.640053pt;}
.y2dd{bottom:337.279920pt;}
.y131{bottom:337.920053pt;}
.y3c2{bottom:338.239920pt;}
.y318{bottom:340.159920pt;}
.y53{bottom:342.026530pt;}
.yba{bottom:343.040053pt;}
.y9f{bottom:343.359920pt;}
.y427{bottom:344.000053pt;}
.y336{bottom:344.319920pt;}
.y290{bottom:344.640053pt;}
.y24c{bottom:345.279920pt;}
.y347{bottom:345.920053pt;}
.y361{bottom:347.199920pt;}
.y196{bottom:347.520053pt;}
.y445{bottom:347.840053pt;}
.y94{bottom:348.480053pt;}
.y3a9{bottom:349.439920pt;}
.y2ae{bottom:349.760053pt;}
.yf2{bottom:350.720053pt;}
.y13{bottom:351.039948pt;}
.y159{bottom:351.680053pt;}
.y366{bottom:352.960053pt;}
.y80{bottom:353.600053pt;}
.y383{bottom:353.920000pt;}
.y410{bottom:354.880053pt;}
.y317{bottom:355.520053pt;}
.y2dc{bottom:355.840053pt;}
.y412{bottom:356.480000pt;}
.y3e4{bottom:357.119920pt;}
.y2c5{bottom:359.359920pt;}
.y36{bottom:360.106523pt;}
.y142{bottom:361.920053pt;}
.y466{bottom:362.560053pt;}
.yda{bottom:362.880053pt;}
.y264{bottom:363.840053pt;}
.y195{bottom:364.159920pt;}
.y22d{bottom:365.760053pt;}
.y3a8{bottom:367.680053pt;}
.y2ad{bottom:368.000053pt;}
.y3c9{bottom:368.319920pt;}
.y21a{bottom:369.600053pt;}
.y52{bottom:369.706519pt;}
.y327{bottom:371.520053pt;}
.y100{bottom:371.840053pt;}
.y482{bottom:372.479920pt;}
.y382{bottom:372.480133pt;}
.y202{bottom:372.800053pt;}
.y18d{bottom:373.119920pt;}
.y346{bottom:373.439920pt;}
.y2db{bottom:374.079920pt;}
.y130{bottom:374.720053pt;}
.y3c1{bottom:375.040053pt;}
.y3d9{bottom:377.920053pt;}
.y1b9{bottom:378.239920pt;}
.yb9{bottom:379.840053pt;}
.y9e{bottom:380.159920pt;}
.y426{bottom:380.800053pt;}
.y28f{bottom:381.439920pt;}
.y11a{bottom:382.720053pt;}
.y360{bottom:384.000053pt;}
.y22c{bottom:384.319920pt;}
.y444{bottom:384.640053pt;}
.y93{bottom:385.279920pt;}
.y316{bottom:385.920053pt;}
.y3a7{bottom:386.239920pt;}
.y2ac{bottom:386.559920pt;}
.y12{bottom:387.839948pt;}
.y35{bottom:388.106511pt;}
.y158{bottom:389.760053pt;}
.y7f{bottom:390.399920pt;}
.y381{bottom:390.720133pt;}
.y407{bottom:391.680053pt;}
.y2da{bottom:392.640053pt;}
.y3d8{bottom:393.279920pt;}
.y1b8{bottom:393.600053pt;}
.y3e3{bottom:393.920053pt;}
.y194{bottom:394.560053pt;}
.y30f{bottom:396.159920pt;}
.y40f{bottom:397.119920pt;}
.y51{bottom:397.226508pt;}
.y465{bottom:399.359920pt;}
.yd9{bottom:399.680053pt;}
.y141{bottom:400.000053pt;}
.y24b{bottom:400.319920pt;}
.y263{bottom:400.640053pt;}
.y345{bottom:400.960053pt;}
.y22b{bottom:402.560053pt;}
.y3a6{bottom:404.479920pt;}
.y2ab{bottom:405.439920pt;}
.y219{bottom:406.399920pt;}
.yff{bottom:408.640053pt;}
.y1b7{bottom:408.960053pt;}
.y481{bottom:409.279920pt;}
.y380{bottom:409.280000pt;}
.y18c{bottom:409.920053pt;}
.y406{bottom:410.239920pt;}
.y2d9{bottom:410.880053pt;}
.y12f{bottom:411.520053pt;}
.y3c0{bottom:411.840053pt;}
.yf1{bottom:412.159920pt;}
.y119{bottom:412.800053pt;}
.y201{bottom:414.720053pt;}
.yb8{bottom:416.640053pt;}
.y25a{bottom:416.960053pt;}
.y425{bottom:417.600053pt;}
.y28e{bottom:418.239920pt;}
.y9d{bottom:420.800053pt;}
.y22a{bottom:421.119920pt;}
.y443{bottom:421.439920pt;}
.y92{bottom:422.079920pt;}
.y40e{bottom:422.399920pt;}
.y3a5{bottom:423.040053pt;}
.y2aa{bottom:424.000053pt;}
.y1b6{bottom:424.319920pt;}
.y11{bottom:424.639948pt;}
.y50{bottom:424.906497pt;}
.y34{bottom:425.066497pt;}
.y157{bottom:426.560053pt;}
.y7e{bottom:427.199920pt;}
.y37f{bottom:427.520000pt;}
.y40d{bottom:428.160133pt;}
.y344{bottom:428.479920pt;}
.y2d8{bottom:429.439920pt;}
.y24a{bottom:430.720053pt;}
.y3be{bottom:432.000053pt;}
.y18b{bottom:432.640053pt;}
.y3bf{bottom:433.279920pt;}
.y464{bottom:436.159920pt;}
.y30e{bottom:436.800053pt;}
.y229{bottom:439.359920pt;}
.y1b5{bottom:439.680053pt;}
.yf0{bottom:440.319920pt;}
.y140{bottom:440.640053pt;}
.y262{bottom:441.279920pt;}
.y118{bottom:441.600053pt;}
.y2c4{bottom:441.920053pt;}
.y2a8{bottom:442.880053pt;}
.y218{bottom:443.199920pt;}
.y1c7{bottom:444.160133pt;}
.yd6{bottom:444.800053pt;}
.yfe{bottom:445.439920pt;}
.y480{bottom:446.079920pt;}
.y37e{bottom:446.080000pt;}
.y18a{bottom:446.720053pt;}
.y405{bottom:447.040053pt;}
.y2d7{bottom:447.680053pt;}
.y12e{bottom:448.319920pt;}
.yd7{bottom:448.960133pt;}
.y326{bottom:450.239920pt;}
.y40c{bottom:451.519920pt;}
.y3bd{bottom:451.840053pt;}
.y33{bottom:452.426486pt;}
.y200{bottom:452.800053pt;}
.y259{bottom:453.760053pt;}
.y424{bottom:454.399920pt;}
.y3d7{bottom:454.720053pt;}
.y189{bottom:455.040053pt;}
.y343{bottom:456.319920pt;}
.y40a{bottom:457.280133pt;}
.y35f{bottom:457.600053pt;}
.y228{bottom:457.920053pt;}
.y442{bottom:458.239920pt;}
.y91{bottom:458.880053pt;}
.y249{bottom:459.519920pt;}
.y3a4{bottom:459.840053pt;}
.y2a7{bottom:461.439920pt;}
.y10{bottom:461.439948pt;}
.yb5{bottom:462.079920pt;}
.y9c{bottom:462.720053pt;}
.y156{bottom:463.359920pt;}
.y7d{bottom:464.000053pt;}
.y37d{bottom:464.320133pt;}
.y404{bottom:465.279920pt;}
.y2d6{bottom:466.239920pt;}
.yb6{bottom:466.240133pt;}
.y117{bottom:469.439920pt;}
.y3d6{bottom:470.079920pt;}
.y3bc{bottom:470.080053pt;}
.y1b4{bottom:470.399920pt;}
.y463{bottom:472.960053pt;}
.y188{bottom:474.239920pt;}
.y30d{bottom:474.880053pt;}
.y227{bottom:476.159920pt;}
.yef{bottom:477.119920pt;}
.y3a3{bottom:478.080053pt;}
.y2a9{bottom:478.399920pt;}
.y13f{bottom:479.359920pt;}
.y2a6{bottom:479.679920pt;}
.y409{bottom:479.680053pt;}
.y4f{bottom:479.786475pt;}
.y68{bottom:479.946475pt;}
.y217{bottom:480.000053pt;}
.y32{bottom:480.106475pt;}
.y488{bottom:482.239920pt;}
.y187{bottom:482.560053pt;}
.y47f{bottom:482.880053pt;}
.y37c{bottom:482.880133pt;}
.y342{bottom:483.840053pt;}
.y2d5{bottom:484.479920pt;}
.y12d{bottom:485.119920pt;}
.yd5{bottom:485.439920pt;}
.y1b3{bottom:485.760053pt;}
.y408{bottom:486.720133pt;}
.y248{bottom:487.040053pt;}
.y1ff{bottom:489.600053pt;}
.y3ba{bottom:489.920053pt;}
.y258{bottom:490.560053pt;}
.y423{bottom:491.199920pt;}
.y3bb{bottom:491.200053pt;}
.y28d{bottom:491.840053pt;}
.y32e{bottom:494.399920pt;}
.y441{bottom:495.040053pt;}
.y90{bottom:495.680053pt;}
.y186{bottom:496.319920pt;}
.y3a2{bottom:496.639920pt;}
.y116{bottom:496.960053pt;}
.y2a5{bottom:498.239920pt;}
.yf{bottom:498.239948pt;}
.y25d{bottom:499.519920pt;}
.y155{bottom:500.159920pt;}
.y3d5{bottom:500.479920pt;}
.y7c{bottom:500.800053pt;}
.y1b2{bottom:501.119920pt;}
.y37b{bottom:501.120000pt;}
.y403{bottom:502.079920pt;}
.y2d4{bottom:503.040053pt;}
.y4e{bottom:507.306464pt;}
.y31{bottom:507.626464pt;}
.y3b9{bottom:509.439920pt;}
.y462{bottom:509.760053pt;}
.y185{bottom:510.079920pt;}
.y341{bottom:511.359920pt;}
.y30c{bottom:511.680053pt;}
.yaf{bottom:512.000133pt;}
.y247{bottom:514.559920pt;}
.y3a1{bottom:514.880053pt;}
.yfd{bottom:515.519920pt;}
.y1b1{bottom:516.159920pt;}
.y2a4{bottom:516.479920pt;}
.y13e{bottom:516.800053pt;}
.y67{bottom:517.066460pt;}
.y261{bottom:518.079920pt;}
.y487{bottom:519.040053pt;}
.y37a{bottom:519.680000pt;}
.yb4{bottom:519.680053pt;}
.y260{bottom:520.000053pt;}
.y2c3{bottom:520.640053pt;}
.y2d3{bottom:521.279920pt;}
.yae{bottom:521.600053pt;}
.y12c{bottom:521.920053pt;}
.y184{bottom:523.840053pt;}
.y115{bottom:524.479920pt;}
.y3e2{bottom:525.119920pt;}
.y1fe{bottom:526.399920pt;}
.y257{bottom:527.359920pt;}
.y226{bottom:527.680053pt;}
.y422{bottom:528.000053pt;}
.y28c{bottom:528.640053pt;}
.y35e{bottom:531.199920pt;}
.y1b0{bottom:531.519920pt;}
.y440{bottom:531.840053pt;}
.y8f{bottom:532.479920pt;}
.y3ef{bottom:532.800053pt;}
.y3a0{bottom:533.439920pt;}
.ye{bottom:535.039948pt;}
.y2a3{bottom:535.040053pt;}
.yd4{bottom:535.040133pt;}
.y30{bottom:535.306453pt;}
.y332{bottom:536.319920pt;}
.y154{bottom:536.960053pt;}
.y2a0{bottom:537.599920pt;}
.y7b{bottom:537.600053pt;}
.y379{bottom:537.920000pt;}
.y340{bottom:538.880053pt;}
.y2d2{bottom:539.840053pt;}
.y246{bottom:542.720053pt;}
.y183{bottom:543.040053pt;}
.yd3{bottom:544.000053pt;}
.y1fd{bottom:545.279920pt;}
.y461{bottom:546.559920pt;}
.y1af{bottom:546.880053pt;}
.y3ec{bottom:547.840053pt;}
.y114{bottom:552.000053pt;}
.y30b{bottom:552.319920pt;}
.y182{bottom:552.640053pt;}
.y2a2{bottom:553.279920pt;}
.y216{bottom:553.600053pt;}
.y66{bottom:553.866445pt;}
.y3b8{bottom:554.880053pt;}
.y3e1{bottom:555.840053pt;}
.y29f{bottom:556.160053pt;}
.y47e{bottom:556.479920pt;}
.y378{bottom:556.480133pt;}
.y13d{bottom:557.439920pt;}
.y2d1{bottom:558.079920pt;}
.y12b{bottom:558.720053pt;}
.y325{bottom:560.640053pt;}
.y1ae{bottom:562.239920pt;}
.y1fc{bottom:562.559920pt;}
.y2f{bottom:562.826442pt;}
.y3c8{bottom:562.880053pt;}
.y256{bottom:564.159920pt;}
.y3ed{bottom:564.160133pt;}
.y28b{bottom:565.439920pt;}
.y33f{bottom:566.720053pt;}
.y35d{bottom:568.000053pt;}
.y43f{bottom:568.640053pt;}
.y181{bottom:568.960053pt;}
.y8e{bottom:569.279920pt;}
.y420{bottom:570.559920pt;}
.yd{bottom:571.839948pt;}
.y4d{bottom:572.266438pt;}
.y245{bottom:573.119920pt;}
.y2a1{bottom:573.120053pt;}
.y153{bottom:573.760053pt;}
.y7a{bottom:574.399920pt;}
.y377{bottom:574.720133pt;}
.y400{bottom:576.319920pt;}
.yfc{bottom:576.640053pt;}
.y1eb{bottom:577.280133pt;}
.y1ad{bottom:577.600053pt;}
.y421{bottom:577.600133pt;}
.y113{bottom:579.519920pt;}
.y1fb{bottom:580.159920pt;}
.y398{bottom:583.200000pt;}
.y460{bottom:583.359920pt;}
.y180{bottom:585.599920pt;}
.y3e0{bottom:586.559920pt;}
.y397{bottom:587.200053pt;}
.y225{bottom:589.119920pt;}
.y39f{bottom:589.759920pt;}
.y215{bottom:590.399920pt;}
.y2e{bottom:590.506430pt;}
.y65{bottom:590.666430pt;}
.y486{bottom:592.640053pt;}
.y1ac{bottom:592.960053pt;}
.y47d{bottom:593.279920pt;}
.y376{bottom:593.280000pt;}
.y29e{bottom:593.599920pt;}
.y30a{bottom:594.239920pt;}
.y2d0{bottom:594.880053pt;}
.y12a{bottom:595.519920pt;}
.y324{bottom:597.439920pt;}
.yd2{bottom:598.079920pt;}
.y4c{bottom:599.626427pt;}
.y17f{bottom:600.960053pt;}
.y244{bottom:601.920053pt;}
.y28a{bottom:602.239920pt;}
.y25f{bottom:604.159920pt;}
.y331{bottom:604.800053pt;}
.y43e{bottom:605.439920pt;}
.y396{bottom:605.759920pt;}
.y8d{bottom:606.079920pt;}
.y1e5{bottom:607.040053pt;}
.y1ab{bottom:608.319920pt;}
.yc{bottom:608.639948pt;}
.y35c{bottom:608.640053pt;}
.yee{bottom:609.920053pt;}
.y152{bottom:610.559920pt;}
.y79{bottom:611.199920pt;}
.y375{bottom:611.520000pt;}
.y29d{bottom:611.840053pt;}
.y1fa{bottom:612.159920pt;}
.y3ff{bottom:613.119920pt;}
.y2cf{bottom:613.439920pt;}
.y3b7{bottom:613.759920pt;}
.y17e{bottom:616.319920pt;}
.y3df{bottom:617.279920pt;}
.y2d{bottom:618.026419pt;}
.y45f{bottom:620.159920pt;}
.y33e{bottom:621.760053pt;}
.y1aa{bottom:623.680053pt;}
.y395{bottom:624.319920pt;}
.y335{bottom:625.920053pt;}
.y214{bottom:627.199920pt;}
.y4b{bottom:627.306416pt;}
.y64{bottom:627.466416pt;}
.y402{bottom:627.840053pt;}
.y29b{bottom:629.120053pt;}
.y243{bottom:629.439920pt;}
.y47c{bottom:630.079920pt;}
.y29c{bottom:630.399920pt;}
.y374{bottom:630.720133pt;}
.y320{bottom:631.040053pt;}
.y3fe{bottom:631.680053pt;}
.y129{bottom:632.319920pt;}
.y17d{bottom:633.599920pt;}
.yd1{bottom:634.880053pt;}
.y401{bottom:636.160133pt;}
.y41c{bottom:637.119920pt;}
.y19e{bottom:637.760053pt;}
.yfb{bottom:638.079920pt;}
.y112{bottom:638.720053pt;}
.y1a9{bottom:639.040053pt;}
.y394{bottom:639.679920pt;}
.y25e{bottom:641.599920pt;}
.y43d{bottom:642.239920pt;}
.y8c{bottom:642.880053pt;}
.y1e4{bottom:643.840053pt;}
.y3b5{bottom:644.640000pt;}
.yb{bottom:645.439948pt;}
.y2c{bottom:645.706408pt;}
.y35b{bottom:646.720053pt;}
.y151{bottom:647.359920pt;}
.y78{bottom:648.000053pt;}
.y29a{bottom:648.639920pt;}
.y373{bottom:648.960000pt;}
.y17c{bottom:648.960053pt;}
.y33d{bottom:649.279920pt;}
.y224{bottom:650.239920pt;}
.y2ce{bottom:650.880053pt;}
.y3b6{bottom:651.200053pt;}
.y2cc{bottom:653.439920pt;}
.y4a{bottom:654.826405pt;}
.y2f4{bottom:655.040053pt;}
.y45e{bottom:656.960053pt;}
.y242{bottom:657.279920pt;}
.y213{bottom:664.000053pt;}
.y63{bottom:664.266401pt;}
.y17b{bottom:664.319920pt;}
.y3fd{bottom:665.279920pt;}
.y111{bottom:666.239920pt;}
.y47b{bottom:666.879920pt;}
.y3b4{bottom:667.199920pt;}
.y372{bottom:667.520000pt;}
.y299{bottom:667.840053pt;}
.y128{bottom:669.119920pt;}
.y2f3{bottom:670.399920pt;}
.y2cd{bottom:670.719920pt;}
.yd0{bottom:671.680053pt;}
.y2cb{bottom:672.000053pt;}
.y2b{bottom:673.226397pt;}
.y1a8{bottom:673.280053pt;}
.y41b{bottom:673.920053pt;}
.y19d{bottom:674.559920pt;}
.y289{bottom:675.840053pt;}
.y323{bottom:676.799920pt;}
.y33c{bottom:677.119920pt;}
.y43c{bottom:679.039920pt;}
.y8b{bottom:679.680053pt;}
.y1e3{bottom:680.639920pt;}
.ya{bottom:682.239948pt;}
.y49{bottom:682.506394pt;}
.yed{bottom:683.520053pt;}
.y150{bottom:684.159920pt;}
.y77{bottom:684.799920pt;}
.y2f2{bottom:685.760053pt;}
.y334{bottom:687.039920pt;}
.y2ca{bottom:690.879920pt;}
.y45d{bottom:693.760053pt;}
.y110{bottom:694.079920pt;}
.y17a{bottom:695.039920pt;}
.y177{bottom:696.000053pt;}
.y178{bottom:697.280053pt;}
.yfa{bottom:699.200053pt;}
.y212{bottom:700.799920pt;}
.y2a{bottom:700.906386pt;}
.y62{bottom:701.066386pt;}
.y485{bottom:703.039920pt;}
.y47a{bottom:703.680053pt;}
.y127{bottom:705.920053pt;}
.y3fc{bottom:706.559920pt;}
.y33b{bottom:707.200053pt;}
.ycf{bottom:708.479920pt;}
.y2c9{bottom:708.799920pt;}
.y48{bottom:710.026383pt;}
.y1a7{bottom:710.079920pt;}
.y41a{bottom:710.719920pt;}
.y179{bottom:711.360053pt;}
.y223{bottom:711.680053pt;}
.y241{bottom:712.319920pt;}
.y3fb{bottom:712.320133pt;}
.y176{bottom:712.639920pt;}
.y297{bottom:714.879920pt;}
.y19c{bottom:715.200053pt;}
.y322{bottom:715.520053pt;}
.y8a{bottom:716.479920pt;}
.y1e2{bottom:717.440053pt;}
.y9{bottom:719.039948pt;}
.y2f1{bottom:720.000053pt;}
.y330{bottom:720.319920pt;}
.y14f{bottom:720.959920pt;}
.y76{bottom:721.600053pt;}
.y2c8{bottom:724.159920pt;}
.y175{bottom:728.000053pt;}
.y29{bottom:728.426375pt;}
.y43b{bottom:728.640000pt;}
.y45c{bottom:730.559920pt;}
.y3d4{bottom:732.799920pt;}
.y211{bottom:737.600053pt;}
.y47{bottom:737.706372pt;}
.y61{bottom:737.866372pt;}
.y33a{bottom:738.559920pt;}
.y240{bottom:739.840053pt;}
.y479{bottom:740.479920pt;}
.y13c{bottom:742.719920pt;}
.y173{bottom:744.000053pt;}
.y2c2{bottom:744.639920pt;}
.y174{bottom:745.280053pt;}
.y126{bottom:746.559920pt;}
.y419{bottom:747.520053pt;}
.y3c7{bottom:747.840053pt;}
.y333{bottom:748.479920pt;}
.y10f{bottom:749.119920pt;}
.y288{bottom:749.440053pt;}
.y3d3{bottom:751.360053pt;}
.y309{bottom:752.000053pt;}
.y89{bottom:753.280053pt;}
.ycc{bottom:753.600053pt;}
.y1e1{bottom:754.239920pt;}
.y8{bottom:755.839948pt;}
.y28{bottom:756.106364pt;}
.y2f0{bottom:756.799920pt;}
.y255{bottom:757.119920pt;}
.y14e{bottom:757.760053pt;}
.ycd{bottom:757.760133pt;}
.y75{bottom:758.399920pt;}
.y3fa{bottom:760.000133pt;}
.yf9{bottom:760.639920pt;}
.y3f9{bottom:761.280133pt;}
.y46{bottom:765.226361pt;}
.y45b{bottom:767.360053pt;}
.y23f{bottom:767.680053pt;}
.y439{bottom:768.959920pt;}
.y3d2{bottom:769.280053pt;}
.y210{bottom:774.399920pt;}
.y172{bottom:776.000053pt;}
.y10e{bottom:776.639920pt;}
.y478{bottom:777.280053pt;}
.y13b{bottom:779.520053pt;}
.y43a{bottom:782.080133pt;}
.y1a6{bottom:783.360053pt;}
.y27{bottom:783.626353pt;}
.y418{bottom:784.319920pt;}
.y3c6{bottom:784.639920pt;}
.y287{bottom:786.239920pt;}
.y125{bottom:788.799920pt;}
.yeb{bottom:790.079920pt;}
.y1e0{bottom:791.039920pt;}
.y171{bottom:791.360053pt;}
.y3eb{bottom:792.000053pt;}
.y7{bottom:792.639948pt;}
.y45{bottom:792.906350pt;}
.ycb{bottom:792.959920pt;}
.y88{bottom:793.920053pt;}
.y14d{bottom:794.559920pt;}
.y74{bottom:795.199920pt;}
.y2ef{bottom:796.799920pt;}
.y35a{bottom:797.760053pt;}
.y3d1{bottom:799.680053pt;}
.y45a{bottom:804.159920pt;}
.y170{bottom:806.719920pt;}
.y3f7{bottom:806.720000pt;}
.y438{bottom:809.920053pt;}
.y26{bottom:810.986342pt;}
.y20f{bottom:811.199920pt;}
.y10d{bottom:813.440053pt;}
.y477{bottom:814.079920pt;}
.y2ee{bottom:815.360053pt;}
.y13a{bottom:820.159920pt;}
.y44{bottom:820.426338pt;}
.y417{bottom:821.119920pt;}
.y3c5{bottom:821.440053pt;}
.yf8{bottom:822.079920pt;}
.y23e{bottom:822.719920pt;}
.y286{bottom:823.039920pt;}
.y1a5{bottom:825.600053pt;}
.yea{bottom:826.879920pt;}
.y1df{bottom:827.840053pt;}
.y6{bottom:829.439948pt;}
.yca{bottom:829.760053pt;}
.y3d0{bottom:830.399920pt;}
.yec{bottom:830.719920pt;}
.y14c{bottom:831.360053pt;}
.y73{bottom:832.000053pt;}
.y2ed{bottom:833.600053pt;}
.y16f{bottom:837.440053pt;}
.y25{bottom:838.826331pt;}
.y359{bottom:840.000053pt;}
.y459{bottom:840.959920pt;}
.y1de{bottom:845.760053pt;}
.y60{bottom:846.026328pt;}
.y437{bottom:846.719920pt;}
.y20e{bottom:848.000053pt;}
.y43{bottom:848.106327pt;}
.y10c{bottom:850.239920pt;}
.y2ec{bottom:852.159920pt;}
.y475{bottom:855.360053pt;}
.y23d{bottom:857.600053pt;}
.y416{bottom:857.920053pt;}
.y139{bottom:858.239920pt;}
.y1dd{bottom:860.799920pt;}
.y476{bottom:863.680000pt;}
.ye9{bottom:863.680053pt;}
.y16e{bottom:864.000053pt;}
.y5{bottom:866.239948pt;}
.y1a4{bottom:867.520053pt;}
.y14b{bottom:868.159920pt;}
.y72{bottom:868.799920pt;}
.y2eb{bottom:870.399920pt;}
.y279{bottom:872.640133pt;}
.y5f{bottom:873.546317pt;}
.y42{bottom:875.626316pt;}
.y24{bottom:875.786316pt;}
.y458{bottom:877.760053pt;}
.y23c{bottom:878.079920pt;}
.y16d{bottom:879.039920pt;}
.yc4{bottom:879.360133pt;}
.yf7{bottom:883.199920pt;}
.y436{bottom:883.520053pt;}
.y10b{bottom:887.039920pt;}
.yc9{bottom:888.319920pt;}
.y20d{bottom:888.639920pt;}
.y2ea{bottom:888.959920pt;}
.y285{bottom:890.879920pt;}
.y138{bottom:895.039920pt;}
.y474{bottom:896.000053pt;}
.ye8{bottom:900.479920pt;}
.y414{bottom:901.440053pt;}
.y4{bottom:903.039948pt;}
.y23{bottom:903.306305pt;}
.y2ba{bottom:904.319920pt;}
.y14a{bottom:904.959920pt;}
.y71{bottom:905.600053pt;}
.y2e9{bottom:907.199920pt;}
.y16c{bottom:910.399920pt;}
.y23b{bottom:912.959920pt;}
.y415{bottom:914.560133pt;}
.y358{bottom:914.879920pt;}
.y484{bottom:923.840053pt;}
.y16b{bottom:925.760053pt;}
.y453{bottom:927.039920pt;}
.y433{bottom:927.360053pt;}
.y454{bottom:927.360133pt;}
.y20c{bottom:930.559920pt;}
.y22{bottom:930.826294pt;}
.y10a{bottom:931.199920pt;}
.y473{bottom:932.799920pt;}
.y339{bottom:933.119920pt;}
.y435{bottom:934.719920pt;}
.y137{bottom:936.000053pt;}
.ye7{bottom:937.279920pt;}
.y23a{bottom:940.479920pt;}
.y434{bottom:940.480133pt;}
.y16a{bottom:941.119920pt;}
.y149{bottom:941.760053pt;}
.y70{bottom:942.399920pt;}
.y2e8{bottom:944.000053pt;}
.yf6{bottom:944.639920pt;}
.y3{bottom:950.399948pt;}
.y357{bottom:951.680053pt;}
.y5e{bottom:956.426284pt;}
.y169{bottom:956.479920pt;}
.y21{bottom:958.506283pt;}
.y109{bottom:960.639920pt;}
.y2e7{bottom:962.559920pt;}
.y432{bottom:968.319920pt;}
.y472{bottom:969.600053pt;}
.y26f{bottom:972.480000pt;}
.y20b{bottom:972.799920pt;}
.y136{bottom:974.079920pt;}
.ye6{bottom:977.920053pt;}
.y6f{bottom:979.199920pt;}
.y2e6{bottom:981.440053pt;}
.y5d{bottom:983.946273pt;}
.y20{bottom:986.026272pt;}
.y168{bottom:987.840053pt;}
.y278{bottom:988.159920pt;}
.y239{bottom:988.479920pt;}
.y447{bottom:993.600133pt;}
.y108{bottom:997.440053pt;}
.y446{bottom:1000.000053pt;}
.y2e5{bottom:1000.639920pt;}
.y2{bottom:1005.759948pt;}
.yf5{bottom:1006.079920pt;}
.y430{bottom:1011.840053pt;}
.y470{bottom:1012.159920pt;}
.y1f{bottom:1013.386261pt;}
.y41{bottom:1013.706261pt;}
.y135{bottom:1014.719920pt;}
.y6e{bottom:1016.000053pt;}
.y167{bottom:1018.559920pt;}
.y471{bottom:1019.200133pt;}
.y26e{bottom:1023.360053pt;}
.y431{bottom:1024.960133pt;}
.y6a{bottom:1044.159920pt;}
.y1b{bottom:1061.066242pt;}
.h6{height:18.240000pt;}
.hb{height:18.560000pt;}
.h14{height:25.028294pt;}
.h1a{height:25.047393pt;}
.h3a{height:25.330548pt;}
.h3d{height:25.402767pt;}
.h6b{height:25.470272pt;}
.h34{height:25.653731pt;}
.h1d{height:25.666531pt;}
.h22{height:25.735110pt;}
.h4d{height:25.783844pt;}
.h4a{height:25.837231pt;}
.h75{height:26.559973pt;}
.h63{height:26.560013pt;}
.h29{height:26.578125pt;}
.h48{height:28.160000pt;}
.h2f{height:28.704375pt;}
.h57{height:29.349375pt;}
.h66{height:29.439947pt;}
.h16{height:29.439987pt;}
.h4b{height:29.440000pt;}
.h1e{height:29.440027pt;}
.h8{height:29.501428pt;}
.h18{height:30.719987pt;}
.h20{height:30.720013pt;}
.h24{height:35.083125pt;}
.h27{height:36.054375pt;}
.h50{height:36.464375pt;}
.h2a{height:39.335625pt;}
.h5f{height:41.749698pt;}
.h72{height:43.250000pt;}
.h25{height:43.343750pt;}
.h3{height:43.375000pt;}
.h10{height:43.588125pt;}
.h61{height:43.691908pt;}
.h38{height:43.815003pt;}
.h3f{height:44.001268pt;}
.h5{height:44.031982pt;}
.h69{height:44.056688pt;}
.h32{height:44.374022pt;}
.h1c{height:44.396162pt;}
.h44{height:44.399202pt;}
.h7{height:44.415982pt;}
.h4{height:44.437500pt;}
.h4f{height:44.468750pt;}
.h12{height:44.480843pt;}
.h53{height:44.526375pt;}
.h5a{height:47.437500pt;}
.h70{height:48.000000pt;}
.h33{height:48.056254pt;}
.h5b{height:48.332592pt;}
.h65{height:48.333125pt;}
.h5c{height:48.333178pt;}
.h62{height:48.333658pt;}
.h2b{height:48.338658pt;}
.h2c{height:48.533750pt;}
.h28{height:53.023842pt;}
.h26{height:53.024375pt;}
.ha{height:53.156250pt;}
.h52{height:53.439987pt;}
.h67{height:53.440027pt;}
.h11{height:54.720013pt;}
.h6d{height:56.294152pt;}
.h1b{height:57.279947pt;}
.h51{height:58.788842pt;}
.h58{height:58.789375pt;}
.h59{height:58.789908pt;}
.hf{height:59.187500pt;}
.h55{height:59.368500pt;}
.h73{height:59.465442pt;}
.h15{height:60.836250pt;}
.h6f{height:61.476875pt;}
.h54{height:63.230375pt;}
.h40{height:63.396783pt;}
.h39{height:64.082955pt;}
.he{height:64.522592pt;}
.hd{height:64.523125pt;}
.hc{height:64.523658pt;}
.h2{height:65.062500pt;}
.h30{height:66.868033pt;}
.h3b{height:68.137346pt;}
.h71{height:70.871477pt;}
.h35{height:72.084382pt;}
.h46{height:72.203658pt;}
.h31{height:74.559973pt;}
.h6e{height:74.732500pt;}
.h37{height:81.280027pt;}
.h49{height:82.238092pt;}
.h3c{height:82.365393pt;}
.h74{height:84.221801pt;}
.h64{height:84.986002pt;}
.h76{height:86.011668pt;}
.h4c{height:87.420891pt;}
.h23{height:88.239375pt;}
.h13{height:91.193026pt;}
.h19{height:92.598267pt;}
.h17{height:92.773618pt;}
.h1f{height:99.344999pt;}
.h68{height:101.786500pt;}
.h21{height:101.847398pt;}
.h36{height:108.761081pt;}
.h6a{height:111.305500pt;}
.h3e{height:114.227138pt;}
.h6c{height:120.323500pt;}
.h56{height:120.824500pt;}
.h5d{height:185.286458pt;}
.h5e{height:206.400000pt;}
.h60{height:216.000000pt;}
.h45{height:221.484375pt;}
.h43{height:244.480000pt;}
.h2e{height:282.240000pt;}
.h2d{height:297.600000pt;}
.h47{height:351.360000pt;}
.h4e{height:682.880000pt;}
.h42{height:761.280000pt;}
.h41{height:793.333333pt;}
.h9{height:1089.920000pt;}
.h1{height:1122.559948pt;}
.h0{height:1122.666667pt;}
.w2{width:0.480000pt;}
.w4{width:8.000000pt;}
.w5{width:16.000000pt;}
.w4e{width:23.999960pt;}
.w7{width:33.279987pt;}
.w57{width:39.999960pt;}
.w51{width:45.439947pt;}
.w3d{width:45.439987pt;}
.w5d{width:45.440000pt;}
.we{width:46.400000pt;}
.w5c{width:46.719973pt;}
.w5b{width:46.719987pt;}
.w3c{width:46.720013pt;}
.wd{width:47.360000pt;}
.w56{width:47.360027pt;}
.w61{width:47.999960pt;}
.w62{width:48.000000pt;}
.w47{width:50.879987pt;}
.w23{width:51.839987pt;}
.w5f{width:53.440000pt;}
.w13{width:53.440027pt;}
.w5a{width:54.719973pt;}
.w3e{width:54.719987pt;}
.w46{width:54.720013pt;}
.w11{width:56.000000pt;}
.w3f{width:57.920000pt;}
.w1c{width:58.239987pt;}
.w1b{width:58.240000pt;}
.w15{width:61.120040pt;}
.w14{width:61.759973pt;}
.w6{width:62.720013pt;}
.w31{width:63.359987pt;}
.w22{width:63.360000pt;}
.w32{width:63.360027pt;}
.w40{width:63.679987pt;}
.w10{width:66.560000pt;}
.w16{width:69.120000pt;}
.w8{width:71.999973pt;}
.w42{width:72.319987pt;}
.w12{width:73.279987pt;}
.w27{width:74.239987pt;}
.w18{width:75.200013pt;}
.w19{width:75.519973pt;}
.w17{width:75.519987pt;}
.w24{width:76.800013pt;}
.wc{width:77.760000pt;}
.w1a{width:78.080000pt;}
.wb{width:79.999973pt;}
.wf{width:84.800013pt;}
.w53{width:86.399987pt;}
.w54{width:86.400000pt;}
.w9{width:86.719987pt;}
.wa{width:86.720013pt;}
.w49{width:89.279987pt;}
.w45{width:90.239987pt;}
.w21{width:90.240000pt;}
.w52{width:90.240013pt;}
.w30{width:90.560000pt;}
.w43{width:91.519973pt;}
.w33{width:93.440000pt;}
.w2c{width:95.040000pt;}
.w2e{width:95.040040pt;}
.w41{width:97.920027pt;}
.w58{width:98.559973pt;}
.w59{width:101.120000pt;}
.w35{width:102.080000pt;}
.w34{width:102.400000pt;}
.w36{width:104.319987pt;}
.w2b{width:111.359987pt;}
.w26{width:113.920000pt;}
.w3b{width:117.440027pt;}
.w28{width:120.000000pt;}
.w37{width:120.320027pt;}
.w4b{width:126.720053pt;}
.w25{width:127.359987pt;}
.w39{width:128.320013pt;}
.w3a{width:131.519973pt;}
.w48{width:131.839987pt;}
.w55{width:138.240000pt;}
.w44{width:147.200000pt;}
.w4c{width:152.000000pt;}
.w4d{width:167.360000pt;}
.w2a{width:167.680000pt;}
.w29{width:175.680000pt;}
.w1d{width:197.440000pt;}
.w60{width:224.000000pt;}
.w2d{width:224.640000pt;}
.w4a{width:237.760000pt;}
.w1e{width:238.720000pt;}
.w38{width:245.440000pt;}
.w4f{width:263.040000pt;}
.w50{width:275.840000pt;}
.w5e{width:305.280000pt;}
.w2f{width:391.040000pt;}
.w3{width:761.280000pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.w20{width:1089.920000pt;}
.w1f{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2d{left:2.335319pt;}
.x36{left:3.335385pt;}
.x46{left:8.320000pt;}
.xb7{left:12.942500pt;}
.x24{left:16.000000pt;}
.x2f{left:19.933613pt;}
.xb8{left:22.378000pt;}
.x41{left:31.040000pt;}
.x2e{left:34.654462pt;}
.xb2{left:40.326286pt;}
.x3c{left:41.442153pt;}
.x37{left:43.109845pt;}
.xb0{left:46.908469pt;}
.x63{left:48.802565pt;}
.x38{left:50.656153pt;}
.x62{left:51.553179pt;}
.x33{left:53.458333pt;}
.xa5{left:54.720000pt;}
.x5b{left:56.780672pt;}
.x5e{left:57.822902pt;}
.x3e{left:59.500000pt;}
.x5d{left:60.657767pt;}
.x96{left:62.333333pt;}
.x60{left:67.640105pt;}
.xaf{left:73.362180pt;}
.x39{left:75.546460pt;}
.x26{left:78.400000pt;}
.x61{left:79.642785pt;}
.x5c{left:80.585198pt;}
.x44{left:83.520000pt;}
.x45{left:86.080000pt;}
.xd{left:94.400000pt;}
.x14{left:95.519304pt;}
.x12{left:96.639959pt;}
.xba{left:98.239987pt;}
.x2{left:100.160000pt;}
.x64{left:106.023676pt;}
.xa6{left:112.320013pt;}
.x65{left:113.942111pt;}
.xbd{left:115.840000pt;}
.xb1{left:120.270649pt;}
.x40{left:125.440000pt;}
.x66{left:131.987808pt;}
.x9f{left:133.120000pt;}
.xa8{left:134.080000pt;}
.x15{left:141.758267pt;}
.x13{left:142.719953pt;}
.x16{left:143.837073pt;}
.xbe{left:147.840000pt;}
.x1{left:153.280000pt;}
.x53{left:154.240000pt;}
.x92{left:156.586667pt;}
.x98{left:160.000000pt;}
.x47{left:162.880000pt;}
.x8b{left:164.800000pt;}
.x6c{left:175.466667pt;}
.xb6{left:176.640000pt;}
.x7e{left:178.560000pt;}
.x8c{left:180.160000pt;}
.x31{left:187.200000pt;}
.x32{left:204.480000pt;}
.x48{left:209.280000pt;}
.x52{left:211.200000pt;}
.xb9{left:214.080000pt;}
.xbb{left:215.666667pt;}
.x57{left:220.480000pt;}
.xb4{left:223.502609pt;}
.x54{left:228.800000pt;}
.xb3{left:229.751517pt;}
.xe{left:236.160000pt;}
.x6d{left:237.866667pt;}
.x1b{left:238.879904pt;}
.x1c{left:244.319902pt;}
.x2b{left:245.440000pt;}
.x35{left:248.640000pt;}
.x2c{left:253.120000pt;}
.x49{left:254.720000pt;}
.x1e{left:258.879896pt;}
.x1d{left:261.119896pt;}
.x56{left:263.360000pt;}
.x1f{left:264.319894pt;}
.x9{left:266.560000pt;}
.x5f{left:275.840000pt;}
.xab{left:276.800000pt;}
.x7f{left:280.000000pt;}
.x7{left:281.280000pt;}
.x8{left:284.160000pt;}
.x5{left:285.760000pt;}
.xa{left:287.040000pt;}
.x6e{left:288.746667pt;}
.x20{left:291.199884pt;}
.x21{left:296.639881pt;}
.x79{left:300.480000pt;}
.x55{left:303.040000pt;}
.xac{left:306.240000pt;}
.x5a{left:307.520000pt;}
.x22{left:313.439875pt;}
.x34{left:314.560000pt;}
.xa9{left:315.520000pt;}
.x67{left:317.120000pt;}
.xc{left:318.720000pt;}
.x3b{left:322.560000pt;}
.x43{left:324.480000pt;}
.x3f{left:328.320000pt;}
.x83{left:330.560000pt;}
.x30{left:331.840000pt;}
.x3a{left:334.400000pt;}
.x3d{left:335.680000pt;}
.x17{left:338.559865pt;}
.x73{left:342.186667pt;}
.x18{left:343.999862pt;}
.xa0{left:346.240000pt;}
.x3{left:350.400000pt;}
.xaa{left:354.240000pt;}
.xb{left:358.080000pt;}
.x19{left:360.799856pt;}
.x7a{left:362.880000pt;}
.x4f{left:364.160000pt;}
.x1a{left:366.239854pt;}
.x6{left:368.320000pt;}
.x9b{left:369.920000pt;}
.x85{left:376.000000pt;}
.xf{left:380.160000pt;}
.x80{left:381.120000pt;}
.x86{left:391.360000pt;}
.x4{left:396.480000pt;}
.x87{left:398.080000pt;}
.x23{left:401.437368pt;}
.x99{left:402.560000pt;}
.x4a{left:404.160000pt;}
.x50{left:411.200000pt;}
.x7b{left:425.280000pt;}
.x74{left:452.586667pt;}
.x51{left:456.320000pt;}
.x84{left:457.920000pt;}
.x4b{left:459.200000pt;}
.x93{left:462.506667pt;}
.x8d{left:468.160000pt;}
.x78{left:469.440000pt;}
.xad{left:470.400000pt;}
.x81{left:482.240000pt;}
.xa1{left:483.520000pt;}
.x7c{left:487.680000pt;}
.x6f{left:490.986667pt;}
.x58{left:493.760000pt;}
.xae{left:501.120000pt;}
.xc1{left:521.280000pt;}
.x88{left:525.120000pt;}
.xb5{left:528.640000pt;}
.xa3{left:529.920000pt;}
.x4c{left:531.520000pt;}
.xa2{left:537.920000pt;}
.x59{left:543.360000pt;}
.x7d{left:550.080000pt;}
.xbf{left:556.160000pt;}
.x8e{left:558.720000pt;}
.x28{left:563.200000pt;}
.x42{left:567.360000pt;}
.xc0{left:570.240000pt;}
.x9d{left:580.800000pt;}
.x4d{left:584.000000pt;}
.x82{left:585.600000pt;}
.x10{left:587.839765pt;}
.x68{left:590.400000pt;}
.xbc{left:598.720000pt;}
.x69{left:600.640000pt;}
.x29{left:603.520000pt;}
.x9e{left:610.240000pt;}
.x89{left:614.400000pt;}
.x9c{left:616.960000pt;}
.x75{left:619.306667pt;}
.x25{left:620.480000pt;}
.x91{left:625.599987pt;}
.xa4{left:627.520000pt;}
.x8a{left:643.840000pt;}
.x4e{left:644.800000pt;}
.xa7{left:652.160000pt;}
.x9a{left:674.880000pt;}
.x70{left:681.066667pt;}
.x2a{left:682.560000pt;}
.x27{left:690.880000pt;}
.x11{left:698.560000pt;}
.x76{left:713.386667pt;}
.x8f{left:727.039987pt;}
.x71{left:754.346667pt;}
.x94{left:787.626667pt;}
.x72{left:873.386667pt;}
.x6a{left:891.199987pt;}
.x97{left:913.386667pt;}
.x95{left:921.386667pt;}
.x77{left:937.066667pt;}
.x90{left:1012.266667pt;}
.x6b{left:1031.146667pt;}
}


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