
/* 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_3f5d5a47c01b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_3bf3859f8b67.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_2f94ac53ea60.woff")format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight: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_f8a3436a22f0.woff")format("woff");}.ff4{font-family:ff4;line-height:1.226000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_e3e795c450c5.woff")format("woff");}.ff5{font-family:ff5;line-height:0.897000;font-style:normal;font-weight: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_7f6c12ee7c33.woff")format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_1ae56354975e.woff")format("woff");}.ff7{font-family:ff7;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_d01e2dc69a1d.woff")format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_35d1095e2a97.woff")format("woff");}.ff9{font-family:ff9;line-height:0.901000;font-style:normal;font-weight: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_2b53d36da820.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_abf916489d3a.woff")format("woff");}.ffb{font-family:ffb;line-height:2.552000;font-style:normal;font-weight: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_ab9b1e9cddc7.woff")format("woff");}.ffc{font-family:ffc;line-height:0.489000;font-style:normal;font-weight: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_879d8992f6af.woff")format("woff");}.ffd{font-family:ffd;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_157ed882907c.woff")format("woff");}.ffe{font-family:ffe;line-height:0.831000;font-style:normal;font-weight: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_1daafafc6772.woff")format("woff");}.fff{font-family:fff;line-height:0.684000;font-style:normal;font-weight: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_428a3cd843fc.woff")format("woff");}.ff10{font-family:ff10;line-height:0.997000;font-style:normal;font-weight: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_13f58c5c9ba9.woff")format("woff");}.ff11{font-family:ff11;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.md{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m28{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-58.458000px;}
.v2{vertical-align:-19.530000px;}
.vc{vertical-align:-14.070000px;}
.v13{vertical-align:-12.216000px;}
.v3{vertical-align:-11.004000px;}
.v1a{vertical-align:-1.862400px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:1.377000px;}
.v16{vertical-align:10.086000px;}
.v1b{vertical-align:14.539200px;}
.v1c{vertical-align:16.396800px;}
.v17{vertical-align:17.577000px;}
.vd{vertical-align:20.340000px;}
.v1{vertical-align:21.702000px;}
.v19{vertical-align:27.948000px;}
.v9{vertical-align:29.214000px;}
.v15{vertical-align:31.302000px;}
.v1d{vertical-align:32.874000px;}
.v5{vertical-align:40.470000px;}
.v11{vertical-align:43.086000px;}
.v14{vertical-align:44.142000px;}
.ve{vertical-align:45.936000px;}
.v10{vertical-align:54.276000px;}
.vb{vertical-align:58.458000px;}
.v1e{vertical-align:65.754000px;}
.v4{vertical-align:73.674000px;}
.vf{vertical-align:76.554000px;}
.v8{vertical-align:82.728000px;}
.v12{vertical-align:88.812000px;}
.v7{vertical-align:105.066000px;}
.v6{vertical-align:114.678000px;}
.ls9{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000500px;}
.ls4f{letter-spacing:0.000583px;}
.ls77{letter-spacing:0.000589px;}
.ls44{letter-spacing:0.000649px;}
.lsb{letter-spacing:0.000747px;}
.ls73{letter-spacing:0.000990px;}
.ls86{letter-spacing:0.001036px;}
.ls30{letter-spacing:0.001150px;}
.ls75{letter-spacing:0.001193px;}
.ls60{letter-spacing:0.001331px;}
.ls6f{letter-spacing:0.001541px;}
.ls69{letter-spacing:0.001673px;}
.ls4a{letter-spacing:0.001790px;}
.lse{letter-spacing:0.002016px;}
.ls79{letter-spacing:0.002338px;}
.ls3{letter-spacing:0.002573px;}
.ls72{letter-spacing:0.002704px;}
.ls11{letter-spacing:0.002725px;}
.ls7c{letter-spacing:0.002818px;}
.ls6e{letter-spacing:0.003167px;}
.ls74{letter-spacing:0.003291px;}
.ls7{letter-spacing:0.003355px;}
.ls45{letter-spacing:0.003494px;}
.ls41{letter-spacing:0.004116px;}
.ls1c{letter-spacing:0.004200px;}
.ls64{letter-spacing:0.004435px;}
.ls37{letter-spacing:0.004766px;}
.ls7e{letter-spacing:0.004800px;}
.ls4{letter-spacing:0.005270px;}
.ls6d{letter-spacing:0.207797px;}
.ls57{letter-spacing:0.297634px;}
.ls87{letter-spacing:0.537859px;}
.ls33{letter-spacing:0.542815px;}
.ls32{letter-spacing:0.567986px;}
.ls10{letter-spacing:0.597167px;}
.ls1b{letter-spacing:0.670741px;}
.ls25{letter-spacing:0.676741px;}
.ls61{letter-spacing:0.720783px;}
.ls39{letter-spacing:0.746100px;}
.ls1a{letter-spacing:0.746555px;}
.ls3d{letter-spacing:0.748093px;}
.ls5c{letter-spacing:1.147200px;}
.ls5f{letter-spacing:1.147829px;}
.lsa{letter-spacing:1.275394px;}
.ls3a{letter-spacing:1.496378px;}
.ls29{letter-spacing:1.671986px;}
.ls6{letter-spacing:1.861130px;}
.ls2a{letter-spacing:2.421986px;}
.lsf{letter-spacing:2.989200px;}
.ls35{letter-spacing:2.991986px;}
.ls0{letter-spacing:2.998354px;}
.ls20{letter-spacing:3.658741px;}
.ls38{letter-spacing:3.729986px;}
.ls3b{letter-spacing:3.735986px;}
.ls50{letter-spacing:3.961258px;}
.ls58{letter-spacing:3.967258px;}
.ls2f{letter-spacing:7.177200px;}
.ls5d{letter-spacing:7.868100px;}
.ls5e{letter-spacing:7.874100px;}
.ls34{letter-spacing:9.961200px;}
.ls54{letter-spacing:10.712100px;}
.ls23{letter-spacing:11.622017px;}
.ls1d{letter-spacing:11.622124px;}
.ls15{letter-spacing:11.625292px;}
.ls40{letter-spacing:11.626200px;}
.ls8{letter-spacing:11.954850px;}
.ls22{letter-spacing:12.339483px;}
.ls24{letter-spacing:12.369292px;}
.ls7f{letter-spacing:12.436114px;}
.ls14{letter-spacing:12.878725px;}
.ls3c{letter-spacing:13.042741px;}
.ls1f{letter-spacing:13.089483px;}
.ls81{letter-spacing:13.112400px;}
.ls80{letter-spacing:13.162165px;}
.ls82{letter-spacing:13.236791px;}
.ls84{letter-spacing:13.400699px;}
.ls78{letter-spacing:13.448400px;}
.ls66{letter-spacing:13.448870px;}
.ls76{letter-spacing:13.454400px;}
.ls6a{letter-spacing:13.477276px;}
.ls7d{letter-spacing:13.496695px;}
.ls65{letter-spacing:13.591021px;}
.ls83{letter-spacing:13.596100px;}
.ls67{letter-spacing:13.628837px;}
.ls7a{letter-spacing:13.678808px;}
.ls7b{letter-spacing:13.803341px;}
.ls2c{letter-spacing:13.982815px;}
.ls88{letter-spacing:13.989859px;}
.ls2b{letter-spacing:14.001986px;}
.ls21{letter-spacing:14.610124px;}
.ls48{letter-spacing:14.611142px;}
.ls17{letter-spacing:14.682761px;}
.ls6c{letter-spacing:14.764573px;}
.lsc{letter-spacing:14.943900px;}
.ls6b{letter-spacing:15.003676px;}
.ls70{letter-spacing:15.183002px;}
.ls1e{letter-spacing:15.361200px;}
.ls5b{letter-spacing:15.375483px;}
.ls4b{letter-spacing:15.690973px;}
.ls2e{letter-spacing:15.825483px;}
.ls5a{letter-spacing:16.158476px;}
.ls89{letter-spacing:16.315106px;}
.ls3f{letter-spacing:16.602124px;}
.ls43{letter-spacing:16.608124px;}
.ls2d{letter-spacing:16.811675px;}
.ls3e{letter-spacing:17.278741px;}
.ls13{letter-spacing:17.319483px;}
.ls53{letter-spacing:17.325483px;}
.ls18{letter-spacing:17.352583px;}
.ls52{letter-spacing:17.649634px;}
.ls85{letter-spacing:17.803341px;}
.ls4c{letter-spacing:17.929142px;}
.ls46{letter-spacing:17.937986px;}
.ls56{letter-spacing:18.103258px;}
.ls62{letter-spacing:18.171782px;}
.ls16{letter-spacing:18.795067px;}
.ls68{letter-spacing:18.889090px;}
.ls71{letter-spacing:18.915259px;}
.ls42{letter-spacing:19.587986px;}
.ls12{letter-spacing:20.338457px;}
.ls47{letter-spacing:20.343986px;}
.ls63{letter-spacing:20.503031px;}
.ls4d{letter-spacing:20.569258px;}
.ls4e{letter-spacing:24.495483px;}
.ls51{letter-spacing:24.902100px;}
.ls28{letter-spacing:24.908100px;}
.ls19{letter-spacing:27.285483px;}
.ls27{letter-spacing:27.896100px;}
.ls31{letter-spacing:28.017100px;}
.ls36{letter-spacing:29.886845px;}
.ls2{letter-spacing:70.236600px;}
.ls5{letter-spacing:72.353510px;}
.ls1{letter-spacing:72.355200px;}
.ls26{letter-spacing:471.967200px;}
.ls55{letter-spacing:856.374973px;}
.ls59{letter-spacing:960.868741px;}
.ls49{letter-spacing:1055.433986px;}
.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;}
}
.ws8f{word-spacing:-60.612458px;}
.ws51{word-spacing:-46.065614px;}
.ws90{word-spacing:-45.088735px;}
.ws9f{word-spacing:-33.773214px;}
.ws8e{word-spacing:-33.175458px;}
.ws92{word-spacing:-31.681068px;}
.ws5c{word-spacing:-24.029791px;}
.wsa{word-spacing:-17.394700px;}
.ws12e{word-spacing:-15.655334px;}
.wse{word-spacing:-14.943900px;}
.ws1{word-spacing:-14.355754px;}
.ws1f{word-spacing:-13.915795px;}
.ws10d{word-spacing:-13.449600px;}
.ws1d{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws106{word-spacing:-3.825638px;}
.wse3{word-spacing:-3.407209px;}
.ws126{word-spacing:-3.389299px;}
.ws37{word-spacing:-3.168107px;}
.ws36{word-spacing:-3.108331px;}
.ws89{word-spacing:-2.988780px;}
.ws9e{word-spacing:-2.809453px;}
.wsa0{word-spacing:-2.630126px;}
.ws105{word-spacing:-2.570351px;}
.wsc{word-spacing:-2.510575px;}
.ws9d{word-spacing:-2.391024px;}
.ws30{word-spacing:-2.331248px;}
.wsfc{word-spacing:-2.271473px;}
.ws2f{word-spacing:-2.151922px;}
.ws21{word-spacing:-2.092146px;}
.ws9c{word-spacing:-2.032370px;}
.ws8d{word-spacing:-1.972595px;}
.ws2e{word-spacing:-1.912819px;}
.ws5{word-spacing:-1.908367px;}
.ws31{word-spacing:-1.853044px;}
.ws3e{word-spacing:-1.793268px;}
.ws8b{word-spacing:-1.733492px;}
.ws34{word-spacing:-1.673717px;}
.ws10e{word-spacing:-1.613952px;}
.ws38{word-spacing:-1.613941px;}
.wsdd{word-spacing:-1.554166px;}
.ws56{word-spacing:-1.434614px;}
.ws53{word-spacing:-1.374839px;}
.ws11c{word-spacing:-1.344960px;}
.ws4{word-spacing:-1.322630px;}
.ws33{word-spacing:-1.315063px;}
.ws9b{word-spacing:-1.255288px;}
.ws39{word-spacing:-1.195512px;}
.ws73{word-spacing:-1.183565px;}
.ws52{word-spacing:-1.135736px;}
.ws118{word-spacing:-1.129766px;}
.wsd{word-spacing:-1.075961px;}
.ws11e{word-spacing:-1.022170px;}
.wsd4{word-spacing:-1.016185px;}
.wsd5{word-spacing:-0.956410px;}
.ws102{word-spacing:-0.896634px;}
.wsab{word-spacing:-0.836858px;}
.ws2c{word-spacing:-0.777083px;}
.ws3a{word-spacing:-0.717307px;}
.ws2a{word-spacing:-0.597756px;}
.ws115{word-spacing:-0.484186px;}
.wsa4{word-spacing:-0.478205px;}
.ws3d{word-spacing:-0.358654px;}
.ws112{word-spacing:-0.322790px;}
.ws7{word-spacing:-0.298878px;}
.ws120{word-spacing:-0.268992px;}
.ws27{word-spacing:-0.239102px;}
.wsd8{word-spacing:-0.215194px;}
.ws13{word-spacing:-0.179327px;}
.ws43{word-spacing:-0.161395px;}
.ws8{word-spacing:-0.119551px;}
.ws74{word-spacing:-0.107597px;}
.ws8c{word-spacing:-0.062287px;}
.ws28{word-spacing:-0.059776px;}
.ws96{word-spacing:-0.058576px;}
.wsc5{word-spacing:-0.053798px;}
.wsb2{word-spacing:-0.048419px;}
.ws1e{word-spacing:-0.047821px;}
.wsc0{word-spacing:-0.045729px;}
.ws6b{word-spacing:-0.045430px;}
.wscc{word-spacing:-0.043039px;}
.wsd9{word-spacing:-0.041843px;}
.wsc8{word-spacing:-0.008026px;}
.wsee{word-spacing:-0.007882px;}
.wsc9{word-spacing:-0.005914px;}
.wsc7{word-spacing:-0.005616px;}
.wsc6{word-spacing:-0.003293px;}
.wsed{word-spacing:-0.002765px;}
.wsef{word-spacing:-0.002074px;}
.ws125{word-spacing:-0.001805px;}
.ws0{word-spacing:0.000000px;}
.wsec{word-spacing:0.001219px;}
.wsb9{word-spacing:0.044216px;}
.wsbb{word-spacing:0.046009px;}
.ws119{word-spacing:0.053798px;}
.ws1b{word-spacing:0.059776px;}
.ws84{word-spacing:0.107597px;}
.wsb{word-spacing:0.119551px;}
.ws7d{word-spacing:0.161395px;}
.ws18{word-spacing:0.179327px;}
.wsa7{word-spacing:0.200069px;}
.ws10b{word-spacing:0.215194px;}
.ws64{word-spacing:0.225293px;}
.ws19{word-spacing:0.239102px;}
.ws12{word-spacing:0.298878px;}
.ws122{word-spacing:0.322790px;}
.ws6{word-spacing:0.358654px;}
.ws117{word-spacing:0.376589px;}
.wsb6{word-spacing:0.418429px;}
.wsa9{word-spacing:0.478205px;}
.ws110{word-spacing:0.484186px;}
.wsa1{word-spacing:0.537980px;}
.wsf8{word-spacing:0.591782px;}
.ws5d{word-spacing:0.597756px;}
.wsf7{word-spacing:0.645581px;}
.ws24{word-spacing:0.657532px;}
.ws29{word-spacing:0.717307px;}
.ws109{word-spacing:0.753178px;}
.ws66{word-spacing:0.836858px;}
.ws2b{word-spacing:0.896634px;}
.wsdb{word-spacing:0.914573px;}
.wsae{word-spacing:0.956410px;}
.ws4e{word-spacing:1.016185px;}
.ws3c{word-spacing:1.075961px;}
.ws93{word-spacing:1.135736px;}
.wsda{word-spacing:1.237363px;}
.ws50{word-spacing:1.255288px;}
.ws11b{word-spacing:1.291162px;}
.ws58{word-spacing:1.374839px;}
.ws104{word-spacing:1.434614px;}
.wsaf{word-spacing:1.494390px;}
.wsf{word-spacing:1.554166px;}
.ws11{word-spacing:1.613941px;}
.wsa8{word-spacing:1.733492px;}
.wsaa{word-spacing:1.793268px;}
.ws6d{word-spacing:1.853044px;}
.wsd7{word-spacing:1.972595px;}
.ws5f{word-spacing:2.029665px;}
.ws61{word-spacing:2.032370px;}
.ws100{word-spacing:2.151922px;}
.wsfb{word-spacing:2.151936px;}
.ws130{word-spacing:2.259533px;}
.wsa5{word-spacing:2.271473px;}
.wsa2{word-spacing:2.331248px;}
.ws91{word-spacing:2.385475px;}
.wsa3{word-spacing:2.391024px;}
.wsfa{word-spacing:2.474726px;}
.ws4f{word-spacing:2.510575px;}
.ws48{word-spacing:2.570351px;}
.ws25{word-spacing:2.749678px;}
.ws41{word-spacing:2.809453px;}
.ws114{word-spacing:2.851315px;}
.wsad{word-spacing:2.869229px;}
.ws103{word-spacing:2.929004px;}
.ws2d{word-spacing:2.988780px;}
.ws23{word-spacing:3.108331px;}
.ws40{word-spacing:3.227882px;}
.ws3f{word-spacing:3.347434px;}
.ws72{word-spacing:3.389299px;}
.ws8a{word-spacing:3.407209px;}
.ws12b{word-spacing:3.443098px;}
.ws9a{word-spacing:3.466985px;}
.ws6f{word-spacing:3.646312px;}
.ws71{word-spacing:3.765888px;}
.wsd6{word-spacing:3.885414px;}
.ws99{word-spacing:3.945190px;}
.wsf9{word-spacing:4.004965px;}
.ws26{word-spacing:4.064741px;}
.ws67{word-spacing:4.244068px;}
.ws94{word-spacing:4.303843px;}
.ws95{word-spacing:4.363619px;}
.ws9{word-spacing:4.782048px;}
.ws12f{word-spacing:5.003251px;}
.ws32{word-spacing:5.080926px;}
.ws4a{word-spacing:5.140702px;}
.ws108{word-spacing:5.218445px;}
.ws16{word-spacing:5.320028px;}
.ws10a{word-spacing:5.370576px;}
.wsb7{word-spacing:5.379804px;}
.ws3{word-spacing:5.379840px;}
.ws121{word-spacing:5.380339px;}
.ws107{word-spacing:5.541235px;}
.ws44{word-spacing:5.559131px;}
.wsb8{word-spacing:5.618906px;}
.ws101{word-spacing:5.678682px;}
.ws1a{word-spacing:5.858009px;}
.wsfd{word-spacing:5.917784px;}
.ws15{word-spacing:5.977560px;}
.ws3b{word-spacing:6.037336px;}
.ws5e{word-spacing:6.097111px;}
.ws17{word-spacing:6.515540px;}
.ws70{word-spacing:6.635092px;}
.ws35{word-spacing:6.933970px;}
.ws22{word-spacing:7.352399px;}
.ws10{word-spacing:7.531726px;}
.ws98{word-spacing:7.770828px;}
.wsdc{word-spacing:8.607686px;}
.wsfe{word-spacing:8.667462px;}
.ws45{word-spacing:9.384769px;}
.wsff{word-spacing:10.879159px;}
.ws1c{word-spacing:11.905145px;}
.ws11d{word-spacing:12.050842px;}
.ws124{word-spacing:13.073011px;}
.ws11f{word-spacing:13.126810px;}
.ws127{word-spacing:13.180608px;}
.ws129{word-spacing:13.234406px;}
.ws128{word-spacing:13.342003px;}
.ws111{word-spacing:13.394995px;}
.ws113{word-spacing:13.395802px;}
.ws57{word-spacing:13.413927px;}
.ws11a{word-spacing:13.449600px;}
.ws54{word-spacing:13.495421px;}
.ws10f{word-spacing:13.503398px;}
.ws68{word-spacing:13.509286px;}
.ws116{word-spacing:13.610995px;}
.ws55{word-spacing:13.748388px;}
.ws4c{word-spacing:13.808164px;}
.ws69{word-spacing:14.107042px;}
.ws46{word-spacing:14.645022px;}
.ws4b{word-spacing:14.880668px;}
.ws49{word-spacing:14.880752px;}
.ws4d{word-spacing:14.881610px;}
.ws47{word-spacing:14.882405px;}
.ws42{word-spacing:14.884124px;}
.ws5b{word-spacing:14.908060px;}
.wsba{word-spacing:14.930022px;}
.wsa6{word-spacing:14.931612px;}
.ws63{word-spacing:15.003676px;}
.ws65{word-spacing:15.123227px;}
.ws12d{word-spacing:15.171149px;}
.ws131{word-spacing:15.655334px;}
.ws6a{word-spacing:15.742627px;}
.ws6c{word-spacing:15.748627px;}
.ws59{word-spacing:16.256847px;}
.ws5a{word-spacing:16.257923px;}
.ws12c{word-spacing:16.838899px;}
.ws60{word-spacing:16.914288px;}
.ws62{word-spacing:16.916495px;}
.ws10c{word-spacing:18.775642px;}
.ws12a{word-spacing:19.044634px;}
.ws14{word-spacing:19.965050px;}
.ws97{word-spacing:20.296354px;}
.wsac{word-spacing:20.861684px;}
.ws123{word-spacing:24.101683px;}
.wsd2{word-spacing:27.080784px;}
.wsf6{word-spacing:64.986384px;}
.wse6{word-spacing:67.434490px;}
.wsd1{word-spacing:69.258326px;}
.wscb{word-spacing:77.469696px;}
.wsb5{word-spacing:80.419185px;}
.wseb{word-spacing:86.300650px;}
.wscf{word-spacing:87.067331px;}
.wsbd{word-spacing:89.422266px;}
.wsd0{word-spacing:97.827011px;}
.wsdf{word-spacing:99.042854px;}
.wsf5{word-spacing:100.770326px;}
.wsc4{word-spacing:102.966152px;}
.wscd{word-spacing:104.021631px;}
.wsb1{word-spacing:108.554412px;}
.wsd3{word-spacing:108.586691px;}
.wsf1{word-spacing:108.758845px;}
.wse2{word-spacing:110.954650px;}
.wsce{word-spacing:119.346371px;}
.wse4{word-spacing:121.079952px;}
.wsf2{word-spacing:129.293631px;}
.wsb4{word-spacing:131.710089px;}
.wsbc{word-spacing:132.814575px;}
.wsf3{word-spacing:133.850419px;}
.wsbf{word-spacing:138.923608px;}
.wse8{word-spacing:140.198630px;}
.wsea{word-spacing:143.290543px;}
.wse5{word-spacing:144.338045px;}
.wsf4{word-spacing:144.610099px;}
.wsca{word-spacing:148.943255px;}
.wsc3{word-spacing:151.407562px;}
.wse1{word-spacing:167.944543px;}
.wsf0{word-spacing:174.215255px;}
.wsc2{word-spacing:175.643706px;}
.wsb3{word-spacing:184.206066px;}
.wsc1{word-spacing:200.987095px;}
.wse9{word-spacing:201.619406px;}
.wse0{word-spacing:226.273406px;}
.wsb0{word-spacing:279.821347px;}
.ws7c{word-spacing:283.047187px;}
.ws6e{word-spacing:288.574618px;}
.wsbe{word-spacing:302.724617px;}
.wse7{word-spacing:307.858608px;}
.wsde{word-spacing:332.512608px;}
.ws88{word-spacing:523.384541px;}
.ws86{word-spacing:541.835069px;}
.ws85{word-spacing:560.425402px;}
.ws78{word-spacing:659.707891px;}
.ws82{word-spacing:666.675245px;}
.ws83{word-spacing:687.924490px;}
.ws87{word-spacing:698.366534px;}
.ws7e{word-spacing:698.583110px;}
.ws81{word-spacing:730.536557px;}
.ws7b{word-spacing:731.528218px;}
.ws79{word-spacing:743.500579px;}
.ws20{word-spacing:753.174450px;}
.ws7a{word-spacing:764.749824px;}
.ws7f{word-spacing:842.082490px;}
.ws80{word-spacing:887.004202px;}
.ws75{word-spacing:893.214835px;}
.ws76{word-spacing:918.907824px;}
.ws77{word-spacing:963.829536px;}
._69{margin-left:-24.532070px;}
._1{margin-left:-11.943245px;}
._0{margin-left:-7.962163px;}
._6{margin-left:-5.971622px;}
._5{margin-left:-4.962854px;}
._4{margin-left:-2.958912px;}
._3{margin-left:-1.936742px;}
._8{width:1.091170px;}
._2{width:2.974319px;}
._1a{width:4.687744px;}
._68{width:5.756429px;}
._18{width:7.172966px;}
._35{width:9.223421px;}
._1b{width:10.460730px;}
._34{width:11.524880px;}
._66{width:12.914574px;}
._19{width:14.041328px;}
._11{width:15.834883px;}
._15{width:17.371324px;}
._7{width:18.829440px;}
._13{width:20.443255px;}
._9{width:21.580471px;}
._f{width:23.133157px;}
._c{width:24.448220px;}
._d{width:26.062162px;}
._17{width:28.167477px;}
._14{width:29.612719px;}
._a{width:30.658381px;}
._6a{width:33.462605px;}
._16{width:34.574220px;}
._10{width:38.398379px;}
._e{width:40.946286px;}
._b{width:44.975174px;}
._65{width:47.461826px;}
._67{width:50.140109px;}
._36{width:54.814225px;}
._45{width:90.639544px;}
._44{width:91.844628px;}
._37{width:93.548814px;}
._53{width:96.083942px;}
._50{width:97.766561px;}
._54{width:101.894170px;}
._3b{width:103.518881px;}
._39{width:105.891391px;}
._3a{width:107.247110px;}
._4c{width:108.588495px;}
._1e{width:110.770906px;}
._46{width:113.288197px;}
._48{width:119.346371px;}
._5e{width:122.557749px;}
._64{width:123.602770px;}
._20{width:124.758490px;}
._4b{width:130.063012px;}
._21{width:132.344064px;}
._5d{width:133.850419px;}
._1f{width:136.863130px;}
._5b{width:138.315517px;}
._38{width:140.655917px;}
._52{width:144.341107px;}
._61{width:145.347372px;}
._43{width:150.727882px;}
._2e{width:152.787456px;}
._57{width:155.186417px;}
._55{width:156.322948px;}
._1d{width:167.958605px;}
._4f{width:170.045983px;}
._4d{width:172.882929px;}
._47{width:175.156942px;}
._49{width:176.803062px;}
._4e{width:179.901850px;}
._4a{width:183.689257px;}
._40{width:187.075866px;}
._5c{width:190.460744px;}
._2b{width:192.275482px;}
._2f{width:195.610982px;}
._51{width:196.988221px;}
._3f{width:198.880173px;}
._63{width:200.425720px;}
._2d{width:203.465549px;}
._42{width:205.413051px;}
._60{width:208.952986px;}
._62{width:210.932767px;}
._27{width:212.665075px;}
._3d{width:214.098865px;}
._31{width:216.915149px;}
._5a{width:218.475302px;}
._5f{width:222.079795px;}
._41{width:223.795964px;}
._3c{width:225.749784px;}
._2c{width:234.507226px;}
._30{width:238.757299px;}
._58{width:240.678840px;}
._29{width:242.092800px;}
._24{width:248.387213px;}
._59{width:261.675418px;}
._32{width:273.511066px;}
._2a{width:275.071219px;}
._25{width:278.137728px;}
._26{width:296.698176px;}
._23{width:302.024218px;}
._56{width:315.043430px;}
._28{width:323.597376px;}
._22{width:334.787443px;}
._33{width:372.876710px;}
._1c{width:718.639027px;}
._3e{width:1936.594884px;}
._12{width:1960.504884px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(75,107,66);}
.fs10{font-size:33.474240px;}
.fse{font-size:35.566380px;}
.fsc{font-size:37.658520px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fsf{font-size:43.038720px;}
.fs3{font-size:45.429600px;}
.fsd{font-size:45.728640px;}
.fs6{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:48.418560px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:124.850580px;}
.y0{bottom:0.000000px;}
.y13{bottom:3.425340px;}
.y12{bottom:14.151273px;}
.y2{bottom:17.984661px;}
.y30{bottom:63.780000px;}
.y1ea{bottom:109.293000px;}
.y18f{bottom:110.806500px;}
.y2f{bottom:112.063500px;}
.y1c1{bottom:112.132500px;}
.y11c{bottom:116.821500px;}
.yc4{bottom:117.669000px;}
.y196{bottom:118.737000px;}
.y24a{bottom:119.239500px;}
.y68{bottom:119.376000px;}
.y14a{bottom:120.645000px;}
.y1ff{bottom:123.121500px;}
.y62{bottom:123.958500px;}
.y1cd{bottom:128.089500px;}
.y1e9{bottom:129.558000px;}
.y18e{bottom:130.039500px;}
.yf6{bottom:131.604000px;}
.y2e{bottom:132.327000px;}
.y1c0{bottom:132.396000px;}
.yc3{bottom:134.464500px;}
.y11b{bottom:138.580500px;}
.y249{bottom:138.606000px;}
.y67{bottom:138.609000px;}
.y195{bottom:139.000500px;}
.y216{bottom:140.890500px;}
.y149{bottom:140.908500px;}
.y1fe{bottom:143.386500px;}
.y61{bottom:144.222000px;}
.y1cc{bottom:147.322500px;}
.y1e8{bottom:149.821500px;}
.yc2{bottom:151.260000px;}
.yf5{bottom:151.867500px;}
.y2d{bottom:152.592000px;}
.y1bf{bottom:152.659500px;}
.y248{bottom:157.974000px;}
.y11a{bottom:158.844000px;}
.y194{bottom:159.264000px;}
.y148{bottom:161.172000px;}
.y1fd{bottom:163.650000px;}
.y60{bottom:164.487000px;}
.y215{bottom:165.055500px;}
.yc1{bottom:168.055500px;}
.y98{bottom:168.432000px;}
.y1e7{bottom:170.085000px;}
.yf4{bottom:172.131000px;}
.y2c{bottom:172.855500px;}
.y247{bottom:177.340500px;}
.y119{bottom:179.109000px;}
.y147{bottom:181.437000px;}
.y169{bottom:182.125500px;}
.y1fc{bottom:183.913500px;}
.y5f{bottom:184.750500px;}
.yc0{bottom:184.851000px;}
.y193{bottom:188.494500px;}
.y97{bottom:188.697000px;}
.y214{bottom:189.219000px;}
.y1e6{bottom:190.350000px;}
.yf3{bottom:192.396000px;}
.y2b{bottom:193.120500px;}
.y1be{bottom:196.284000px;}
.y246{bottom:196.708500px;}
.y118{bottom:200.868000px;}
.ybf{bottom:201.646500px;}
.y146{bottom:201.700500px;}
.y168{bottom:202.389000px;}
.y1fb{bottom:204.178500px;}
.y213{bottom:204.417000px;}
.y5e{bottom:205.015500px;}
.y1bd{bottom:210.541200px;}
.y1e5{bottom:210.613500px;}
.yf2{bottom:212.659500px;}
.y2a{bottom:213.384000px;}
.y245{bottom:216.076500px;}
.y96{bottom:217.927500px;}
.y212{bottom:219.615000px;}
.y192{bottom:220.117500px;}
.y117{bottom:221.131500px;}
.y145{bottom:221.965500px;}
.y167{bottom:222.654000px;}
.y1fa{bottom:224.442000px;}
.y1bc{bottom:224.798400px;}
.ybe{bottom:225.643500px;}
.y5d{bottom:226.773000px;}
.y1e4{bottom:230.878500px;}
.yf1{bottom:232.924500px;}
.y29{bottom:233.647500px;}
.y211{bottom:234.813000px;}
.y244{bottom:235.443000px;}
.y1bb{bottom:239.055600px;}
.y116{bottom:241.395000px;}
.y144{bottom:242.229000px;}
.y166{bottom:242.917500px;}
.y1f9{bottom:244.707000px;}
.y5c{bottom:247.038000px;}
.ybd{bottom:249.642000px;}
.y1e3{bottom:251.142000px;}
.y95{bottom:252.747000px;}
.yf0{bottom:253.188000px;}
.y1ba{bottom:253.312800px;}
.y28{bottom:253.912500px;}
.y243{bottom:254.811000px;}
.y210{bottom:258.978000px;}
.y143{bottom:262.492500px;}
.y165{bottom:263.182500px;}
.y1f8{bottom:264.970500px;}
.y1b9{bottom:267.284400px;}
.y5b{bottom:267.301500px;}
.y1e2{bottom:271.405500px;}
.y94{bottom:273.010500px;}
.y27{bottom:274.176000px;}
.y242{bottom:274.177500px;}
.y115{bottom:276.603000px;}
.ybc{bottom:281.262000px;}
.y1b8{bottom:282.471600px;}
.yee{bottom:282.580500px;}
.y142{bottom:282.757500px;}
.y164{bottom:283.446000px;}
.y1f7{bottom:285.234000px;}
.y5a{bottom:287.566500px;}
.y20f{bottom:289.374000px;}
.y1e1{bottom:291.670500px;}
.yed{bottom:292.714500px;}
.y93{bottom:293.274000px;}
.y241{bottom:293.545500px;}
.y26{bottom:294.441000px;}
.y1b7{bottom:296.728800px;}
.y114{bottom:296.868000px;}
.y140{bottom:303.021000px;}
.y163{bottom:303.709500px;}
.y1f6{bottom:305.499000px;}
.y141{bottom:308.446500px;}
.y59{bottom:309.324000px;}
.y1b6{bottom:310.986000px;}
.y1e0{bottom:311.934000px;}
.yef{bottom:312.102000px;}
.y240{bottom:312.913500px;}
.y92{bottom:313.539000px;}
.y113{bottom:317.131500px;}
.ybb{bottom:318.253500px;}
.yec{bottom:318.577500px;}
.y20e{bottom:322.504500px;}
.y13f{bottom:323.286000px;}
.y25{bottom:323.671500px;}
.y162{bottom:323.974500px;}
.y1b5{bottom:325.243200px;}
.y1f5{bottom:325.762500px;}
.ye9{bottom:326.989500px;}
.yea{bottom:327.099000px;}
.y58{bottom:329.589000px;}
.y1df{bottom:332.199000px;}
.y23f{bottom:332.280000px;}
.y91{bottom:333.802500px;}
.y112{bottom:337.396500px;}
.ye8{bottom:338.034000px;}
.yba{bottom:338.517000px;}
.y1b4{bottom:339.500400px;}
.y20d{bottom:342.769500px;}
.yeb{bottom:343.249500px;}
.y13e{bottom:343.549500px;}
.y161{bottom:344.238000px;}
.y1f4{bottom:346.027500px;}
.y57{bottom:349.852500px;}
.y23e{bottom:351.648000px;}
.y1de{bottom:352.462500px;}
.y1b3{bottom:353.936400px;}
.y90{bottom:354.067500px;}
.ye7{bottom:357.618000px;}
.y111{bottom:357.660000px;}
.yb9{bottom:358.780500px;}
.y20c{bottom:363.033000px;}
.y13d{bottom:363.813000px;}
.y160{bottom:364.503000px;}
.y1f3{bottom:366.291000px;}
.y56{bottom:370.116000px;}
.y23d{bottom:371.014500px;}
.y1dd{bottom:372.726000px;}
.y8f{bottom:374.331000px;}
.ye6{bottom:377.881500px;}
.y110{bottom:377.923500px;}
.yb8{bottom:379.045500px;}
.y1b2{bottom:379.539000px;}
.y20b{bottom:383.298000px;}
.y13c{bottom:384.078000px;}
.y15f{bottom:384.766500px;}
.y1f2{bottom:386.554500px;}
.y55{bottom:390.381000px;}
.y23c{bottom:390.382500px;}
.y1dc{bottom:392.991000px;}
.y8e{bottom:394.594500px;}
.y24{bottom:396.186000px;}
.ye5{bottom:398.145000px;}
.y1b1{bottom:398.772000px;}
.yb7{bottom:399.309000px;}
.y20a{bottom:403.561500px;}
.y13b{bottom:404.341500px;}
.y15e{bottom:405.030000px;}
.y1f1{bottom:406.819500px;}
.y10f{bottom:407.154000px;}
.y23b{bottom:409.750500px;}
.ye4{bottom:410.460000px;}
.y54{bottom:412.138500px;}
.y1db{bottom:413.254500px;}
.y8d{bottom:414.859500px;}
.y23{bottom:416.451000px;}
.ye2{bottom:418.410000px;}
.yb5{bottom:419.574000px;}
.yb6{bottom:419.730000px;}
.y209{bottom:423.825000px;}
.y13a{bottom:424.606500px;}
.y15d{bottom:425.295000px;}
.y1f0{bottom:427.083000px;}
.y23a{bottom:429.117000px;}
.y53{bottom:432.403500px;}
.ye3{bottom:433.024500px;}
.y1da{bottom:433.519500px;}
.y8c{bottom:435.123000px;}
.y1b0{bottom:435.883500px;}
.y10e{bottom:441.973500px;}
.ye1{bottom:443.293500px;}
.y208{bottom:444.090000px;}
.y139{bottom:444.870000px;}
.y15c{bottom:445.558500px;}
.y1ef{bottom:447.348000px;}
.y239{bottom:448.485000px;}
.y52{bottom:452.667000px;}
.y1d9{bottom:453.783000px;}
.y22{bottom:454.647000px;}
.y8b{bottom:455.388000px;}
.y1af{bottom:456.148500px;}
.yb4{bottom:456.724500px;}
.y10d{bottom:462.238500px;}
.ye0{bottom:463.557000px;}
.y207{bottom:464.353500px;}
.y138{bottom:465.133500px;}
.y15b{bottom:465.823500px;}
.y1ee{bottom:467.611500px;}
.y238{bottom:467.851500px;}
.y18d{bottom:471.925500px;}
.y51{bottom:472.932000px;}
.y1d8{bottom:474.046500px;}
.y21{bottom:474.912000px;}
.y8a{bottom:475.651500px;}
.y1ae{bottom:476.412000px;}
.y10c{bottom:482.502000px;}
.ydf{bottom:483.822000px;}
.y206{bottom:484.618500px;}
.y137{bottom:485.398500px;}
.y15a{bottom:486.087000px;}
.y237{bottom:487.219500px;}
.y1ed{bottom:487.875000px;}
.y66{bottom:490.326000px;}
.y18c{bottom:492.190500px;}
.y50{bottom:493.195500px;}
.y1d7{bottom:494.311500px;}
.y20{bottom:495.175500px;}
.y89{bottom:495.915000px;}
.y1ad{bottom:496.677000px;}
.yb3{bottom:501.772500px;}
.y10b{bottom:502.767000px;}
.yde{bottom:504.085500px;}
.y205{bottom:504.882000px;}
.y136{bottom:505.662000px;}
.y159{bottom:506.350500px;}
.y236{bottom:506.587500px;}
.y1ec{bottom:508.140000px;}
.y65{bottom:510.591000px;}
.y18b{bottom:512.454000px;}
.y4f{bottom:513.459000px;}
.y1d6{bottom:514.575000px;}
.y1f{bottom:515.439000px;}
.y88{bottom:516.180000px;}
.y1ac{bottom:516.940500px;}
.yb2{bottom:522.036000px;}
.y268{bottom:522.862500px;}
.y1cb{bottom:522.979500px;}
.y10a{bottom:523.030500px;}
.y204{bottom:525.145500px;}
.y235{bottom:525.954000px;}
.y158{bottom:526.615500px;}
.y1eb{bottom:528.403500px;}
.y18a{bottom:532.719000px;}
.ydd{bottom:533.316000px;}
.y1d5{bottom:534.840000px;}
.y135{bottom:534.892500px;}
.y1e{bottom:535.704000px;}
.y87{bottom:536.443500px;}
.y1ab{bottom:537.204000px;}
.y64{bottom:539.821500px;}
.y267{bottom:542.230500px;}
.yb1{bottom:542.301000px;}
.y1ca{bottom:543.243000px;}
.y109{bottom:543.294000px;}
.y234{bottom:545.322000px;}
.y203{bottom:545.410500px;}
.y157{bottom:546.879000px;}
.y4e{bottom:548.667000px;}
.y189{bottom:552.982500px;}
.y1d4{bottom:555.103500px;}
.y1d{bottom:555.967500px;}
.y86{bottom:556.708500px;}
.y1aa{bottom:557.469000px;}
.y266{bottom:561.597000px;}
.yb0{bottom:562.564500px;}
.y1c9{bottom:563.508000px;}
.y108{bottom:563.559000px;}
.y233{bottom:564.688500px;}
.y202{bottom:565.674000px;}
.y156{bottom:567.144000px;}
.y4d{bottom:568.932000px;}
.y134{bottom:569.712000px;}
.y188{bottom:573.246000px;}
.y63{bottom:574.641000px;}
.y1d3{bottom:575.367000px;}
.y1c{bottom:576.232500px;}
.y84{bottom:576.972000px;}
.ydc{bottom:577.192500px;}
.y1a9{bottom:577.732500px;}
.y85{bottom:582.396000px;}
.yaf{bottom:582.829500px;}
.y1c8{bottom:583.771500px;}
.y107{bottom:583.822500px;}
.y232{bottom:584.056500px;}
.y201{bottom:585.939000px;}
.y155{bottom:587.407500px;}
.y4c{bottom:589.195500px;}
.y265{bottom:593.142000px;}
.y187{bottom:593.511000px;}
.ydb{bottom:593.988000px;}
.y1d2{bottom:595.632000px;}
.y1b{bottom:596.496000px;}
.yae{bottom:603.093000px;}
.y231{bottom:603.424500px;}
.y1c7{bottom:604.035000px;}
.y106{bottom:604.087500px;}
.y83{bottom:606.202500px;}
.y133{bottom:607.039500px;}
.y154{bottom:607.671000px;}
.y4b{bottom:609.460500px;}
.yda{bottom:610.783500px;}
.y264{bottom:612.510000px;}
.y186{bottom:613.774500px;}
.y200{bottom:615.168000px;}
.y1d1{bottom:615.895500px;}
.y1a{bottom:616.759500px;}
.y230{bottom:622.791000px;}
.yad{bottom:623.356500px;}
.y1c6{bottom:624.300000px;}
.y105{bottom:624.351000px;}
.y1a8{bottom:624.630000px;}
.yd9{bottom:627.579000px;}
.y153{bottom:627.936000px;}
.y132{bottom:628.798500px;}
.y4a{bottom:629.724000px;}
.y263{bottom:631.878000px;}
.y185{bottom:634.039500px;}
.y1d0{bottom:636.160500px;}
.y19{bottom:637.024500px;}
.y82{bottom:641.022000px;}
.y1a7{bottom:642.111000px;}
.y22f{bottom:642.159000px;}
.yac{bottom:643.621500px;}
.yd8{bottom:644.374500px;}
.y1c5{bottom:644.563500px;}
.y104{bottom:644.614500px;}
.y131{bottom:649.062000px;}
.y49{bottom:649.987500px;}
.y262{bottom:651.244500px;}
.y184{bottom:654.303000px;}
.y18{bottom:657.288000px;}
.y1a6{bottom:659.592000px;}
.yd7{bottom:661.170000px;}
.y80{bottom:661.285500px;}
.y22e{bottom:661.527000px;}
.yab{bottom:663.885000px;}
.y1c4{bottom:664.828500px;}
.y1cf{bottom:665.389500px;}
.y81{bottom:666.711000px;}
.y130{bottom:669.325500px;}
.y48{bottom:670.252500px;}
.y261{bottom:670.612500px;}
.y103{bottom:673.845000px;}
.y152{bottom:673.961400px;}
.y183{bottom:674.566500px;}
.y1a5{bottom:677.154000px;}
.y17{bottom:677.553000px;}
.yd6{bottom:677.965500px;}
.y22d{bottom:680.893500px;}
.y7f{bottom:681.550500px;}
.yaa{bottom:684.150000px;}
.y151{bottom:689.695650px;}
.y260{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y12f{bottom:691.084500px;}
.yd5{bottom:694.761000px;}
.y182{bottom:694.831500px;}
.y1ce{bottom:697.014000px;}
.y16{bottom:697.816500px;}
.y1c3{bottom:699.828000px;}
.y22c{bottom:700.261500px;}
.y1a3{bottom:700.794000px;}
.y7e{bottom:701.814000px;}
.ya9{bottom:704.413500px;}
.y150{bottom:705.428550px;}
.y1a2{bottom:709.014000px;}
.y25f{bottom:709.347000px;}
.y46{bottom:710.781000px;}
.y102{bottom:710.968500px;}
.y12e{bottom:711.348000px;}
.yd4{bottom:711.556500px;}
.y1a4{bottom:717.232500px;}
.y15{bottom:718.080000px;}
.y1c2{bottom:719.061000px;}
.y22b{bottom:719.628000px;}
.y14f{bottom:721.234350px;}
.y7d{bottom:722.077500px;}
.ya8{bottom:724.677000px;}
.yd3{bottom:728.352000px;}
.y25e{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.y12d{bottom:731.613000px;}
.y14{bottom:738.345000px;}
.y181{bottom:738.454800px;}
.y22a{bottom:738.996000px;}
.y7c{bottom:742.342500px;}
.y14e{bottom:742.831650px;}
.ya7{bottom:744.942000px;}
.yd2{bottom:745.147500px;}
.y25d{bottom:748.081500px;}
.y101{bottom:748.119000px;}
.y1a1{bottom:748.852500px;}
.y44{bottom:751.308000px;}
.y180{bottom:752.712000px;}
.y12c{bottom:753.370500px;}
.y229{bottom:758.364000px;}
.yd1{bottom:761.943000px;}
.y7b{bottom:762.606000px;}
.ya6{bottom:765.205500px;}
.y17f{bottom:766.969200px;}
.y25c{bottom:767.449500px;}
.y100{bottom:768.384000px;}
.y43{bottom:771.573000px;}
.y14d{bottom:772.762500px;}
.y12b{bottom:773.635500px;}
.y11{bottom:773.776555px;}
.y10{bottom:774.543000px;}
.y228{bottom:777.730500px;}
.yd0{bottom:778.738500px;}
.y17e{bottom:781.226400px;}
.y7a{bottom:782.871000px;}
.ya5{bottom:785.470500px;}
.y1a0{bottom:785.964000px;}
.y25b{bottom:786.816000px;}
.yff{bottom:788.647500px;}
.y42{bottom:791.836500px;}
.y14c{bottom:791.995500px;}
.y191{bottom:794.344500px;}
.y17d{bottom:795.483600px;}
.ycf{bottom:795.534000px;}
.y227{bottom:797.098500px;}
.y79{bottom:803.134500px;}
.ya4{bottom:805.734000px;}
.y25a{bottom:806.184000px;}
.y19f{bottom:806.227500px;}
.y12a{bottom:808.843500px;}
.y17c{bottom:809.740800px;}
.y41{bottom:812.101500px;}
.yce{bottom:812.331000px;}
.yf{bottom:813.549000px;}
.y190{bottom:813.577500px;}
.y226{bottom:816.465000px;}
.yfe{bottom:820.813500px;}
.y78{bottom:823.398000px;}
.y17b{bottom:823.712400px;}
.y259{bottom:825.552000px;}
.ya3{bottom:825.997500px;}
.y19e{bottom:826.492500px;}
.y129{bottom:829.107000px;}
.ycd{bottom:829.126500px;}
.yfd{bottom:831.066000px;}
.ye{bottom:831.706500px;}
.y40{bottom:832.365000px;}
.y225{bottom:835.833000px;}
.y17a{bottom:838.899600px;}
.y77{bottom:843.663000px;}
.y258{bottom:844.918500px;}
.ycc{bottom:845.922000px;}
.ya2{bottom:846.262500px;}
.y19d{bottom:846.756000px;}
.y128{bottom:849.372000px;}
.y3f{bottom:852.628500px;}
.y179{bottom:853.156800px;}
.yd{bottom:854.745000px;}
.y224{bottom:855.201000px;}
.ycb{bottom:862.717500px;}
.y76{bottom:863.926500px;}
.y257{bottom:864.286500px;}
.ya1{bottom:866.526000px;}
.y178{bottom:867.414000px;}
.yc{bottom:868.020000px;}
.y127{bottom:869.635500px;}
.y3e{bottom:872.893500px;}
.y223{bottom:874.567500px;}
.yfc{bottom:876.390000px;}
.yca{bottom:879.513000px;}
.y177{bottom:881.671200px;}
.y256{bottom:883.653000px;}
.y75{bottom:884.191500px;}
.ya0{bottom:886.791000px;}
.y126{bottom:889.899000px;}
.yb{bottom:891.060000px;}
.y3d{bottom:893.157000px;}
.y19c{bottom:893.653500px;}
.y222{bottom:893.935500px;}
.y176{bottom:895.928400px;}
.y255{bottom:903.021000px;}
.yc9{bottom:903.510000px;}
.ya{bottom:904.335000px;}
.y74{bottom:904.455000px;}
.yfb{bottom:905.620500px;}
.y125{bottom:910.164000px;}
.y175{bottom:910.185600px;}
.y19b{bottom:911.134500px;}
.y221{bottom:913.302000px;}
.y3c{bottom:913.422000px;}
.y9f{bottom:916.020000px;}
.y254{bottom:922.389000px;}
.y9{bottom:922.491000px;}
.y174{bottom:924.622800px;}
.y73{bottom:924.718500px;}
.y19a{bottom:928.615500px;}
.y124{bottom:930.427500px;}
.y220{bottom:932.670000px;}
.y3b{bottom:933.685500px;}
.yc8{bottom:935.130000px;}
.yfa{bottom:940.440000px;}
.y253{bottom:941.755500px;}
.y72{bottom:944.983500px;}
.y8{bottom:945.531000px;}
.y199{bottom:946.177500px;}
.y173{bottom:950.224500px;}
.y123{bottom:950.692500px;}
.y9e{bottom:950.839500px;}
.y21f{bottom:952.038000px;}
.y3a{bottom:953.949000px;}
.yc7{bottom:954.363000px;}
.yf9{bottom:960.705000px;}
.y252{bottom:961.123500px;}
.y71{bottom:965.247000px;}
.y7{bottom:967.771500px;}
.y172{bottom:969.457500px;}
.y198{bottom:970.176000px;}
.y122{bottom:970.956000px;}
.y9d{bottom:971.104500px;}
.y21e{bottom:971.404500px;}
.yc6{bottom:973.596000px;}
.y39{bottom:974.214000px;}
.y251{bottom:980.490000px;}
.yf8{bottom:980.968500px;}
.y70{bottom:985.512000px;}
.y21d{bottom:990.772500px;}
.y121{bottom:991.219500px;}
.y9c{bottom:991.368000px;}
.yc5{bottom:992.829000px;}
.y38{bottom:994.477500px;}
.y250{bottom:999.858000px;}
.y197{bottom:1001.794500px;}
.y6f{bottom:1005.775500px;}
.y171{bottom:1009.742850px;}
.y21c{bottom:1010.139000px;}
.y6{bottom:1010.451000px;}
.y120{bottom:1011.484500px;}
.y9b{bottom:1011.633000px;}
.y37{bottom:1014.742500px;}
.yf7{bottom:1018.119000px;}
.y24f{bottom:1019.226000px;}
.y170{bottom:1024.602975px;}
.y6e{bottom:1026.039000px;}
.y21b{bottom:1029.507000px;}
.y11f{bottom:1031.748000px;}
.y36{bottom:1035.006000px;}
.y24e{bottom:1038.592500px;}
.y16f{bottom:1039.461825px;}
.y14b{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y9a{bottom:1041.580500px;}
.y6d{bottom:1046.304000px;}
.y21a{bottom:1048.875000px;}
.y99{bottom:1051.831500px;}
.y11e{bottom:1052.013000px;}
.y16e{bottom:1054.389525px;}
.y35{bottom:1055.269500px;}
.y24d{bottom:1057.960500px;}
.y6b{bottom:1066.567500px;}
.y219{bottom:1068.241500px;}
.y4{bottom:1071.244500px;}
.y6c{bottom:1071.993000px;}
.y16c{bottom:1074.483525px;}
.y34{bottom:1075.534500px;}
.y24c{bottom:1077.327000px;}
.y11d{bottom:1081.243500px;}
.y16b{bottom:1081.469250px;}
.y69{bottom:1086.832500px;}
.y218{bottom:1087.609500px;}
.y16d{bottom:1088.456250px;}
.y6a{bottom:1092.256500px;}
.y33{bottom:1095.798000px;}
.y24b{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y217{bottom:1115.943000px;}
.y32{bottom:1116.063000px;}
.y16a{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h1e{height:3.526760px;}
.h9{height:25.508090px;}
.h16{height:28.273859px;}
.h1a{height:28.770113px;}
.h12{height:32.981890px;}
.h2a{height:33.061807px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h24{height:35.006619px;}
.h3a{height:37.927872px;}
.h30{height:38.841498px;}
.h10{height:38.896243px;}
.h19{height:39.434227px;}
.h7{height:39.457760px;}
.h31{height:40.585513px;}
.h32{height:40.699098px;}
.h11{height:42.840113px;}
.h2c{height:43.122108px;}
.hc{height:43.217759px;}
.hf{height:43.397086px;}
.h4{height:43.815515px;}
.h2d{height:44.422608px;}
.h2e{height:44.891808px;}
.h2f{height:44.896908px;}
.he{height:45.094826px;}
.h25{height:45.658702px;}
.h1b{height:46.714950px;}
.h26{height:47.035702px;}
.h27{height:47.532502px;}
.h28{height:47.537902px;}
.h33{height:50.194772px;}
.h34{height:50.200772px;}
.h8{height:50.731891px;}
.h2{height:50.931027px;}
.h35{height:52.267891px;}
.h37{height:52.813891px;}
.h36{height:52.819891px;}
.h6{height:54.547601px;}
.h22{height:54.995897px;}
.h23{height:55.001897px;}
.h18{height:55.744391px;}
.hd{height:56.368391px;}
.h2b{height:61.004707px;}
.h29{height:61.009807px;}
.h13{height:64.536113px;}
.h38{height:71.770243px;}
.h5{height:77.792486px;}
.h14{height:84.285515px;}
.h3{height:84.648693px;}
.h17{height:86.254760px;}
.h1c{height:88.776113px;}
.h20{height:96.886391px;}
.h21{height:99.880391px;}
.h39{height:104.650243px;}
.h1f{height:110.644391px;}
.h1d{height:119.394113px;}
.h15{height:126.554201px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:256.369202px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:29.274117px;}
.x2{left:60.228752px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x38{left:119.385000px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.xdf{left:126.727500px;}
.x36{left:128.940000px;}
.xe5{left:130.767000px;}
.x46{left:133.326000px;}
.x37{left:135.627000px;}
.x5{left:146.170500px;}
.x82{left:149.136000px;}
.xa2{left:152.220000px;}
.x1c{left:153.816000px;}
.x9f{left:155.628000px;}
.x59{left:157.201500px;}
.x78{left:158.217000px;}
.x4b{left:160.083000px;}
.x61{left:162.534000px;}
.x1d{left:168.760500px;}
.xbc{left:171.146100px;}
.x1e{left:172.422000px;}
.x18{left:174.238500px;}
.x67{left:175.965000px;}
.x4c{left:177.352500px;}
.x64{left:179.463000px;}
.x66{left:180.571500px;}
.x19{left:181.711500px;}
.x65{left:183.564000px;}
.x1a{left:185.521500px;}
.x1f{left:187.365000px;}
.x9{left:188.976000px;}
.x62{left:191.874000px;}
.x1b{left:192.993000px;}
.x5f{left:197.319000px;}
.x14{left:199.884000px;}
.x63{left:201.772500px;}
.x11{left:204.955500px;}
.x15{left:207.355500px;}
.xde{left:209.620500px;}
.xa{left:212.344500px;}
.xbb{left:213.480675px;}
.xd5{left:217.222500px;}
.x89{left:219.904500px;}
.xb3{left:221.690400px;}
.xab{left:223.177500px;}
.xcd{left:224.737500px;}
.xdd{left:230.922000px;}
.x60{left:232.474500px;}
.x8a{left:234.910500px;}
.x47{left:239.470500px;}
.x3a{left:241.344000px;}
.x90{left:243.018000px;}
.x39{left:245.544000px;}
.x58{left:249.472500px;}
.x3f{left:251.547000px;}
.x6f{left:253.606500px;}
.xca{left:257.392500px;}
.xb2{left:259.422000px;}
.xee{left:260.590500px;}
.xcc{left:262.273500px;}
.x85{left:263.293500px;}
.xf4{left:266.704500px;}
.xea{left:268.147500px;}
.x98{left:270.460500px;}
.x79{left:271.893000px;}
.x86{left:273.280500px;}
.x3d{left:275.662500px;}
.xa6{left:277.539300px;}
.xef{left:279.274500px;}
.x92{left:281.254500px;}
.x7a{left:283.891500px;}
.x40{left:286.263000px;}
.xa5{left:288.707850px;}
.x3e{left:290.607000px;}
.x41{left:292.492500px;}
.x9b{left:295.191000px;}
.x70{left:296.248500px;}
.xc8{left:297.954000px;}
.xd6{left:299.592000px;}
.x71{left:302.115000px;}
.xa3{left:304.383000px;}
.x91{left:306.943500px;}
.xf0{left:312.901500px;}
.xb4{left:314.780700px;}
.x76{left:316.980000px;}
.x26{left:319.026000px;}
.xac{left:321.745500px;}
.xb{left:324.585000px;}
.x20{left:327.829500px;}
.xc{left:332.056500px;}
.x27{left:333.223500px;}
.x21{left:335.301000px;}
.x56{left:336.757500px;}
.x88{left:338.484000px;}
.x72{left:341.101500px;}
.x7e{left:346.134000px;}
.xed{left:350.358000px;}
.x57{left:351.702000px;}
.x4d{left:353.188500px;}
.x4e{left:362.448000px;}
.x95{left:364.606500px;}
.x3b{left:369.768000px;}
.x80{left:372.276000px;}
.x6d{left:373.891500px;}
.x73{left:376.032000px;}
.x32{left:377.196000px;}
.x33{left:383.622000px;}
.x6e{left:388.897500px;}
.x74{left:390.346500px;}
.x9c{left:394.062000px;}
.x7c{left:395.338500px;}
.xc9{left:396.498000px;}
.x48{left:401.725500px;}
.xad{left:403.812000px;}
.x87{left:405.327000px;}
.x7b{left:410.058000px;}
.x99{left:414.658500px;}
.x16{left:419.454000px;}
.xd2{left:421.114500px;}
.x75{left:422.895000px;}
.x77{left:425.469000px;}
.x17{left:426.927000px;}
.xb5{left:430.546875px;}
.xcb{left:431.652000px;}
.x5b{left:433.549500px;}
.xd4{left:435.295500px;}
.x5a{left:436.924500px;}
.xb6{left:441.029925px;}
.xd8{left:443.017500px;}
.x96{left:446.356500px;}
.x5c{left:448.080000px;}
.xae{left:452.509500px;}
.xf1{left:455.038500px;}
.x28{left:457.074000px;}
.x7f{left:459.096000px;}
.x49{left:460.311000px;}
.xc4{left:461.481000px;}
.x29{left:464.545500px;}
.x2a{left:468.355500px;}
.xf2{left:473.643000px;}
.x93{left:474.933000px;}
.xd9{left:476.919000px;}
.x3c{left:478.662000px;}
.x2b{left:483.300000px;}
.x2c{left:487.111500px;}
.xaf{left:489.945000px;}
.xce{left:495.351000px;}
.x4f{left:496.792500px;}
.xb8{left:499.830375px;}
.x2d{left:502.054500px;}
.xc3{left:506.736000px;}
.xa0{left:508.150500px;}
.xa9{left:513.720000px;}
.xb7{left:516.458925px;}
.x83{left:518.256000px;}
.xe3{left:522.955500px;}
.xeb{left:528.642000px;}
.xaa{left:531.420000px;}
.xdc{left:532.654500px;}
.xa7{left:534.484500px;}
.xec{left:536.113500px;}
.x22{left:540.042000px;}
.xdb{left:542.143500px;}
.xb0{left:543.289500px;}
.xbe{left:546.319500px;}
.x23{left:554.986500px;}
.x24{left:562.330500px;}
.xd3{left:564.006000px;}
.xcf{left:566.286000px;}
.xbd{left:567.798000px;}
.xd0{left:569.394000px;}
.xa1{left:572.076000px;}
.x8b{left:573.285000px;}
.x25{left:577.275000px;}
.xc5{left:581.019000px;}
.xb9{left:582.215775px;}
.xba{left:584.856300px;}
.x7d{left:589.342500px;}
.x8e{left:591.570000px;}
.xc1{left:596.713500px;}
.x42{left:598.833000px;}
.xa8{left:602.152500px;}
.xe7{left:603.330000px;}
.x43{left:605.323500px;}
.xda{left:607.189500px;}
.x81{left:618.156000px;}
.xd{left:620.626500px;}
.xe8{left:622.084500px;}
.xa4{left:623.232000px;}
.x8f{left:625.254000px;}
.xb1{left:626.389500px;}
.xe{left:628.098000px;}
.xe6{left:629.373000px;}
.xf{left:631.909500px;}
.xd1{left:636.577500px;}
.x52{left:638.338500px;}
.x10{left:639.381000px;}
.xe9{left:640.839000px;}
.x8c{left:644.983500px;}
.x2e{left:647.475000px;}
.x53{left:650.977500px;}
.xf7{left:653.926500px;}
.x2f{left:654.948000px;}
.x8d{left:658.522500px;}
.x9a{left:660.492000px;}
.xe0{left:665.877000px;}
.x6a{left:667.783500px;}
.xe4{left:670.290000px;}
.x94{left:671.941500px;}
.xc2{left:674.014500px;}
.xf5{left:675.276000px;}
.xe2{left:676.648500px;}
.xfa{left:678.273000px;}
.xf8{left:680.824500px;}
.x97{left:681.945000px;}
.x84{left:686.911500px;}
.xf6{left:690.220500px;}
.xc6{left:691.725000px;}
.x54{left:695.851500px;}
.xc0{left:697.566000px;}
.x44{left:699.610500px;}
.x7{left:701.339982px;}
.x45{left:706.101000px;}
.xd7{left:707.709000px;}
.x55{left:710.796000px;}
.x9d{left:712.242000px;}
.x34{left:714.469500px;}
.xbf{left:719.431500px;}
.x35{left:721.156500px;}
.x50{left:722.350500px;}
.xc7{left:725.409000px;}
.xf3{left:729.352500px;}
.x6b{left:733.981500px;}
.x51{left:742.101000px;}
.x12{left:743.890500px;}
.xe1{left:745.225500px;}
.xfb{left:747.814500px;}
.xf9{left:749.598000px;}
.x13{left:751.362000px;}
.x5d{left:752.799000px;}
.x30{left:756.496500px;}
.x68{left:758.341500px;}
.x4a{left:760.686000px;}
.x6c{left:763.216500px;}
.x5e{left:767.329500px;}
.x31{left:771.441000px;}
.x69{left:772.539000px;}
.x9e{left:776.167500px;}
@media print{
.va{vertical-align:-51.962667pt;}
.v2{vertical-align:-17.360000pt;}
.vc{vertical-align:-12.506667pt;}
.v13{vertical-align:-10.858667pt;}
.v3{vertical-align:-9.781333pt;}
.v1a{vertical-align:-1.655467pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:1.224000pt;}
.v16{vertical-align:8.965333pt;}
.v1b{vertical-align:12.923733pt;}
.v1c{vertical-align:14.574933pt;}
.v17{vertical-align:15.624000pt;}
.vd{vertical-align:18.080000pt;}
.v1{vertical-align:19.290667pt;}
.v19{vertical-align:24.842667pt;}
.v9{vertical-align:25.968000pt;}
.v15{vertical-align:27.824000pt;}
.v1d{vertical-align:29.221333pt;}
.v5{vertical-align:35.973333pt;}
.v11{vertical-align:38.298667pt;}
.v14{vertical-align:39.237333pt;}
.ve{vertical-align:40.832000pt;}
.v10{vertical-align:48.245333pt;}
.vb{vertical-align:51.962667pt;}
.v1e{vertical-align:58.448000pt;}
.v4{vertical-align:65.488000pt;}
.vf{vertical-align:68.048000pt;}
.v8{vertical-align:73.536000pt;}
.v12{vertical-align:78.944000pt;}
.v7{vertical-align:93.392000pt;}
.v6{vertical-align:101.936000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000444pt;}
.ls4f{letter-spacing:0.000518pt;}
.ls77{letter-spacing:0.000523pt;}
.ls44{letter-spacing:0.000577pt;}
.lsb{letter-spacing:0.000664pt;}
.ls73{letter-spacing:0.000880pt;}
.ls86{letter-spacing:0.000921pt;}
.ls30{letter-spacing:0.001022pt;}
.ls75{letter-spacing:0.001061pt;}
.ls60{letter-spacing:0.001183pt;}
.ls6f{letter-spacing:0.001370pt;}
.ls69{letter-spacing:0.001487pt;}
.ls4a{letter-spacing:0.001591pt;}
.lse{letter-spacing:0.001792pt;}
.ls79{letter-spacing:0.002078pt;}
.ls3{letter-spacing:0.002287pt;}
.ls72{letter-spacing:0.002403pt;}
.ls11{letter-spacing:0.002422pt;}
.ls7c{letter-spacing:0.002505pt;}
.ls6e{letter-spacing:0.002815pt;}
.ls74{letter-spacing:0.002925pt;}
.ls7{letter-spacing:0.002982pt;}
.ls45{letter-spacing:0.003106pt;}
.ls41{letter-spacing:0.003658pt;}
.ls1c{letter-spacing:0.003733pt;}
.ls64{letter-spacing:0.003942pt;}
.ls37{letter-spacing:0.004237pt;}
.ls7e{letter-spacing:0.004267pt;}
.ls4{letter-spacing:0.004685pt;}
.ls6d{letter-spacing:0.184708pt;}
.ls57{letter-spacing:0.264563pt;}
.ls87{letter-spacing:0.478097pt;}
.ls33{letter-spacing:0.482502pt;}
.ls32{letter-spacing:0.504877pt;}
.ls10{letter-spacing:0.530815pt;}
.ls1b{letter-spacing:0.596214pt;}
.ls25{letter-spacing:0.601548pt;}
.ls61{letter-spacing:0.640696pt;}
.ls39{letter-spacing:0.663200pt;}
.ls1a{letter-spacing:0.663604pt;}
.ls3d{letter-spacing:0.664972pt;}
.ls5c{letter-spacing:1.019733pt;}
.ls5f{letter-spacing:1.020292pt;}
.lsa{letter-spacing:1.133683pt;}
.ls3a{letter-spacing:1.330114pt;}
.ls29{letter-spacing:1.486210pt;}
.ls6{letter-spacing:1.654338pt;}
.ls2a{letter-spacing:2.152877pt;}
.lsf{letter-spacing:2.657067pt;}
.ls35{letter-spacing:2.659543pt;}
.ls0{letter-spacing:2.665203pt;}
.ls20{letter-spacing:3.252214pt;}
.ls38{letter-spacing:3.315543pt;}
.ls3b{letter-spacing:3.320877pt;}
.ls50{letter-spacing:3.521118pt;}
.ls58{letter-spacing:3.526451pt;}
.ls2f{letter-spacing:6.379733pt;}
.ls5d{letter-spacing:6.993867pt;}
.ls5e{letter-spacing:6.999200pt;}
.ls34{letter-spacing:8.854400pt;}
.ls54{letter-spacing:9.521867pt;}
.ls23{letter-spacing:10.330682pt;}
.ls1d{letter-spacing:10.330777pt;}
.ls15{letter-spacing:10.333593pt;}
.ls40{letter-spacing:10.334400pt;}
.ls8{letter-spacing:10.626533pt;}
.ls22{letter-spacing:10.968429pt;}
.ls24{letter-spacing:10.994926pt;}
.ls7f{letter-spacing:11.054324pt;}
.ls14{letter-spacing:11.447756pt;}
.ls3c{letter-spacing:11.593548pt;}
.ls1f{letter-spacing:11.635096pt;}
.ls81{letter-spacing:11.655467pt;}
.ls80{letter-spacing:11.699702pt;}
.ls82{letter-spacing:11.766036pt;}
.ls84{letter-spacing:11.911733pt;}
.ls78{letter-spacing:11.954133pt;}
.ls66{letter-spacing:11.954551pt;}
.ls76{letter-spacing:11.959467pt;}
.ls6a{letter-spacing:11.979801pt;}
.ls7d{letter-spacing:11.997062pt;}
.ls65{letter-spacing:12.080907pt;}
.ls83{letter-spacing:12.085423pt;}
.ls67{letter-spacing:12.114522pt;}
.ls7a{letter-spacing:12.158941pt;}
.ls7b{letter-spacing:12.269637pt;}
.ls2c{letter-spacing:12.429169pt;}
.ls88{letter-spacing:12.435430pt;}
.ls2b{letter-spacing:12.446210pt;}
.ls21{letter-spacing:12.986777pt;}
.ls48{letter-spacing:12.987682pt;}
.ls17{letter-spacing:13.051343pt;}
.ls6c{letter-spacing:13.124065pt;}
.lsc{letter-spacing:13.283467pt;}
.ls6b{letter-spacing:13.336601pt;}
.ls70{letter-spacing:13.496002pt;}
.ls1e{letter-spacing:13.654400pt;}
.ls5b{letter-spacing:13.667096pt;}
.ls4b{letter-spacing:13.947532pt;}
.ls2e{letter-spacing:14.067096pt;}
.ls5a{letter-spacing:14.363090pt;}
.ls89{letter-spacing:14.502316pt;}
.ls3f{letter-spacing:14.757443pt;}
.ls43{letter-spacing:14.762777pt;}
.ls2d{letter-spacing:14.943711pt;}
.ls3e{letter-spacing:15.358881pt;}
.ls13{letter-spacing:15.395096pt;}
.ls53{letter-spacing:15.400429pt;}
.ls18{letter-spacing:15.424518pt;}
.ls52{letter-spacing:15.688563pt;}
.ls85{letter-spacing:15.825192pt;}
.ls4c{letter-spacing:15.937015pt;}
.ls46{letter-spacing:15.944877pt;}
.ls56{letter-spacing:16.091785pt;}
.ls62{letter-spacing:16.152695pt;}
.ls16{letter-spacing:16.706726pt;}
.ls68{letter-spacing:16.790302pt;}
.ls71{letter-spacing:16.813563pt;}
.ls42{letter-spacing:17.411543pt;}
.ls12{letter-spacing:18.078628pt;}
.ls47{letter-spacing:18.083543pt;}
.ls63{letter-spacing:18.224916pt;}
.ls4d{letter-spacing:18.283785pt;}
.ls4e{letter-spacing:21.773762pt;}
.ls51{letter-spacing:22.135200pt;}
.ls28{letter-spacing:22.140533pt;}
.ls19{letter-spacing:24.253762pt;}
.ls27{letter-spacing:24.796533pt;}
.ls31{letter-spacing:24.904089pt;}
.ls36{letter-spacing:26.566084pt;}
.ls2{letter-spacing:62.432533pt;}
.ls5{letter-spacing:64.314231pt;}
.ls1{letter-spacing:64.315733pt;}
.ls26{letter-spacing:419.526400pt;}
.ls55{letter-spacing:761.222198pt;}
.ls59{letter-spacing:854.105548pt;}
.ls49{letter-spacing:938.163543pt;}
.ws8f{word-spacing:-53.877741pt;}
.ws51{word-spacing:-40.947213pt;}
.ws90{word-spacing:-40.078876pt;}
.ws9f{word-spacing:-30.020635pt;}
.ws8e{word-spacing:-29.489296pt;}
.ws92{word-spacing:-28.160949pt;}
.ws5c{word-spacing:-21.359814pt;}
.wsa{word-spacing:-15.461955pt;}
.ws12e{word-spacing:-13.915853pt;}
.wse{word-spacing:-13.283467pt;}
.ws1{word-spacing:-12.760670pt;}
.ws1f{word-spacing:-12.369595pt;}
.ws10d{word-spacing:-11.955200pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws106{word-spacing:-3.400567pt;}
.wse3{word-spacing:-3.028630pt;}
.ws126{word-spacing:-3.012710pt;}
.ws37{word-spacing:-2.816095pt;}
.ws36{word-spacing:-2.762961pt;}
.ws89{word-spacing:-2.656693pt;}
.ws9e{word-spacing:-2.497292pt;}
.wsa0{word-spacing:-2.337890pt;}
.ws105{word-spacing:-2.284756pt;}
.wsc{word-spacing:-2.231622pt;}
.ws9d{word-spacing:-2.125355pt;}
.ws30{word-spacing:-2.072221pt;}
.wsfc{word-spacing:-2.019087pt;}
.ws2f{word-spacing:-1.912819pt;}
.ws21{word-spacing:-1.859685pt;}
.ws9c{word-spacing:-1.806551pt;}
.ws8d{word-spacing:-1.753418pt;}
.ws2e{word-spacing:-1.700284pt;}
.ws5{word-spacing:-1.696326pt;}
.ws31{word-spacing:-1.647150pt;}
.ws3e{word-spacing:-1.594016pt;}
.ws8b{word-spacing:-1.540882pt;}
.ws34{word-spacing:-1.487748pt;}
.ws10e{word-spacing:-1.434624pt;}
.ws38{word-spacing:-1.434614pt;}
.wsdd{word-spacing:-1.381481pt;}
.ws56{word-spacing:-1.275213pt;}
.ws53{word-spacing:-1.222079pt;}
.ws11c{word-spacing:-1.195520pt;}
.ws4{word-spacing:-1.175671pt;}
.ws33{word-spacing:-1.168945pt;}
.ws9b{word-spacing:-1.115811pt;}
.ws39{word-spacing:-1.062677pt;}
.ws73{word-spacing:-1.052058pt;}
.ws52{word-spacing:-1.009543pt;}
.ws118{word-spacing:-1.004237pt;}
.wsd{word-spacing:-0.956410pt;}
.ws11e{word-spacing:-0.908595pt;}
.wsd4{word-spacing:-0.903276pt;}
.wsd5{word-spacing:-0.850142pt;}
.ws102{word-spacing:-0.797008pt;}
.wsab{word-spacing:-0.743874pt;}
.ws2c{word-spacing:-0.690740pt;}
.ws3a{word-spacing:-0.637606pt;}
.ws2a{word-spacing:-0.531339pt;}
.ws115{word-spacing:-0.430387pt;}
.wsa4{word-spacing:-0.425071pt;}
.ws3d{word-spacing:-0.318803pt;}
.ws112{word-spacing:-0.286925pt;}
.ws7{word-spacing:-0.265669pt;}
.ws120{word-spacing:-0.239104pt;}
.ws27{word-spacing:-0.212535pt;}
.wsd8{word-spacing:-0.191283pt;}
.ws13{word-spacing:-0.159402pt;}
.ws43{word-spacing:-0.143462pt;}
.ws8{word-spacing:-0.106268pt;}
.ws74{word-spacing:-0.095642pt;}
.ws8c{word-spacing:-0.055366pt;}
.ws28{word-spacing:-0.053134pt;}
.ws96{word-spacing:-0.052067pt;}
.wsc5{word-spacing:-0.047821pt;}
.wsb2{word-spacing:-0.043039pt;}
.ws1e{word-spacing:-0.042507pt;}
.wsc0{word-spacing:-0.040648pt;}
.ws6b{word-spacing:-0.040382pt;}
.wscc{word-spacing:-0.038257pt;}
.wsd9{word-spacing:-0.037194pt;}
.wsc8{word-spacing:-0.007134pt;}
.wsee{word-spacing:-0.007006pt;}
.wsc9{word-spacing:-0.005257pt;}
.wsc7{word-spacing:-0.004992pt;}
.wsc6{word-spacing:-0.002927pt;}
.wsed{word-spacing:-0.002458pt;}
.wsef{word-spacing:-0.001843pt;}
.ws125{word-spacing:-0.001604pt;}
.ws0{word-spacing:0.000000pt;}
.wsec{word-spacing:0.001084pt;}
.wsb9{word-spacing:0.039303pt;}
.wsbb{word-spacing:0.040897pt;}
.ws119{word-spacing:0.047821pt;}
.ws1b{word-spacing:0.053134pt;}
.ws84{word-spacing:0.095642pt;}
.wsb{word-spacing:0.106268pt;}
.ws7d{word-spacing:0.143462pt;}
.ws18{word-spacing:0.159402pt;}
.wsa7{word-spacing:0.177840pt;}
.ws10b{word-spacing:0.191283pt;}
.ws64{word-spacing:0.200261pt;}
.ws19{word-spacing:0.212535pt;}
.ws12{word-spacing:0.265669pt;}
.ws122{word-spacing:0.286925pt;}
.ws6{word-spacing:0.318803pt;}
.ws117{word-spacing:0.334746pt;}
.wsb6{word-spacing:0.371937pt;}
.wsa9{word-spacing:0.425071pt;}
.ws110{word-spacing:0.430387pt;}
.wsa1{word-spacing:0.478205pt;}
.wsf8{word-spacing:0.526029pt;}
.ws5d{word-spacing:0.531339pt;}
.wsf7{word-spacing:0.573850pt;}
.ws24{word-spacing:0.584473pt;}
.ws29{word-spacing:0.637606pt;}
.ws109{word-spacing:0.669491pt;}
.ws66{word-spacing:0.743874pt;}
.ws2b{word-spacing:0.797008pt;}
.wsdb{word-spacing:0.812954pt;}
.wsae{word-spacing:0.850142pt;}
.ws4e{word-spacing:0.903276pt;}
.ws3c{word-spacing:0.956410pt;}
.ws93{word-spacing:1.009543pt;}
.wsda{word-spacing:1.099878pt;}
.ws50{word-spacing:1.115811pt;}
.ws11b{word-spacing:1.147699pt;}
.ws58{word-spacing:1.222079pt;}
.ws104{word-spacing:1.275213pt;}
.wsaf{word-spacing:1.328347pt;}
.wsf{word-spacing:1.381481pt;}
.ws11{word-spacing:1.434614pt;}
.wsa8{word-spacing:1.540882pt;}
.wsaa{word-spacing:1.594016pt;}
.ws6d{word-spacing:1.647150pt;}
.wsd7{word-spacing:1.753418pt;}
.ws5f{word-spacing:1.804147pt;}
.ws61{word-spacing:1.806551pt;}
.ws100{word-spacing:1.912819pt;}
.wsfb{word-spacing:1.912832pt;}
.ws130{word-spacing:2.008474pt;}
.wsa5{word-spacing:2.019087pt;}
.wsa2{word-spacing:2.072221pt;}
.ws91{word-spacing:2.120422pt;}
.wsa3{word-spacing:2.125355pt;}
.wsfa{word-spacing:2.199757pt;}
.ws4f{word-spacing:2.231622pt;}
.ws48{word-spacing:2.284756pt;}
.ws25{word-spacing:2.444158pt;}
.ws41{word-spacing:2.497292pt;}
.ws114{word-spacing:2.534502pt;}
.wsad{word-spacing:2.550426pt;}
.ws103{word-spacing:2.603559pt;}
.ws2d{word-spacing:2.656693pt;}
.ws23{word-spacing:2.762961pt;}
.ws40{word-spacing:2.869229pt;}
.ws3f{word-spacing:2.975497pt;}
.ws72{word-spacing:3.012710pt;}
.ws8a{word-spacing:3.028630pt;}
.ws12b{word-spacing:3.060531pt;}
.ws9a{word-spacing:3.081764pt;}
.ws6f{word-spacing:3.241166pt;}
.ws71{word-spacing:3.347456pt;}
.wsd6{word-spacing:3.453701pt;}
.ws99{word-spacing:3.506835pt;}
.wsf9{word-spacing:3.559969pt;}
.ws26{word-spacing:3.613103pt;}
.ws67{word-spacing:3.772505pt;}
.ws94{word-spacing:3.825638pt;}
.ws95{word-spacing:3.878772pt;}
.ws9{word-spacing:4.250709pt;}
.ws12f{word-spacing:4.447334pt;}
.ws32{word-spacing:4.516379pt;}
.ws4a{word-spacing:4.569513pt;}
.ws108{word-spacing:4.638618pt;}
.ws16{word-spacing:4.728914pt;}
.ws10a{word-spacing:4.773845pt;}
.wsb7{word-spacing:4.782048pt;}
.ws3{word-spacing:4.782080pt;}
.ws121{word-spacing:4.782524pt;}
.ws107{word-spacing:4.925542pt;}
.ws44{word-spacing:4.941450pt;}
.wsb8{word-spacing:4.994583pt;}
.ws101{word-spacing:5.047717pt;}
.ws1a{word-spacing:5.207119pt;}
.wsfd{word-spacing:5.260253pt;}
.ws15{word-spacing:5.313387pt;}
.ws3b{word-spacing:5.366521pt;}
.ws5e{word-spacing:5.419654pt;}
.ws17{word-spacing:5.791591pt;}
.ws70{word-spacing:5.897859pt;}
.ws35{word-spacing:6.163529pt;}
.ws22{word-spacing:6.535466pt;}
.ws10{word-spacing:6.694867pt;}
.ws98{word-spacing:6.907403pt;}
.wsdc{word-spacing:7.651277pt;}
.wsfe{word-spacing:7.704411pt;}
.ws45{word-spacing:8.342017pt;}
.wsff{word-spacing:9.670364pt;}
.ws1c{word-spacing:10.582351pt;}
.ws11d{word-spacing:10.711859pt;}
.ws124{word-spacing:11.620454pt;}
.ws11f{word-spacing:11.668275pt;}
.ws127{word-spacing:11.716096pt;}
.ws129{word-spacing:11.763917pt;}
.ws128{word-spacing:11.859558pt;}
.ws111{word-spacing:11.906662pt;}
.ws113{word-spacing:11.907379pt;}
.ws57{word-spacing:11.923491pt;}
.ws11a{word-spacing:11.955200pt;}
.ws54{word-spacing:11.995930pt;}
.ws10f{word-spacing:12.003021pt;}
.ws68{word-spacing:12.008254pt;}
.ws116{word-spacing:12.098662pt;}
.ws55{word-spacing:12.220789pt;}
.ws4c{word-spacing:12.273923pt;}
.ws69{word-spacing:12.539593pt;}
.ws46{word-spacing:13.017797pt;}
.ws4b{word-spacing:13.227261pt;}
.ws49{word-spacing:13.227335pt;}
.ws4d{word-spacing:13.228098pt;}
.ws47{word-spacing:13.228804pt;}
.ws42{word-spacing:13.230333pt;}
.ws5b{word-spacing:13.251609pt;}
.wsba{word-spacing:13.271131pt;}
.wsa6{word-spacing:13.272544pt;}
.ws63{word-spacing:13.336601pt;}
.ws65{word-spacing:13.442868pt;}
.ws12d{word-spacing:13.485466pt;}
.ws131{word-spacing:13.915853pt;}
.ws6a{word-spacing:13.993446pt;}
.ws6c{word-spacing:13.998780pt;}
.ws59{word-spacing:14.450531pt;}
.ws5a{word-spacing:14.451487pt;}
.ws12c{word-spacing:14.967910pt;}
.ws60{word-spacing:15.034923pt;}
.ws62{word-spacing:15.036884pt;}
.ws10c{word-spacing:16.689459pt;}
.ws12a{word-spacing:16.928563pt;}
.ws14{word-spacing:17.746711pt;}
.ws97{word-spacing:18.041203pt;}
.wsac{word-spacing:18.543719pt;}
.ws123{word-spacing:21.423718pt;}
.wsd2{word-spacing:24.071808pt;}
.wsf6{word-spacing:57.765675pt;}
.wse6{word-spacing:59.941769pt;}
.wsd1{word-spacing:61.562957pt;}
.wscb{word-spacing:68.861952pt;}
.wsb5{word-spacing:71.483720pt;}
.wseb{word-spacing:76.711689pt;}
.wscf{word-spacing:77.393183pt;}
.wsbd{word-spacing:79.486458pt;}
.wsd0{word-spacing:86.957343pt;}
.wsdf{word-spacing:88.038093pt;}
.wsf5{word-spacing:89.573623pt;}
.wsc4{word-spacing:91.525469pt;}
.wscd{word-spacing:92.463672pt;}
.wsb1{word-spacing:96.492810pt;}
.wsd3{word-spacing:96.521503pt;}
.wsf1{word-spacing:96.674529pt;}
.wse2{word-spacing:98.626355pt;}
.wsce{word-spacing:106.085663pt;}
.wse4{word-spacing:107.626624pt;}
.wsf2{word-spacing:114.927672pt;}
.wsb4{word-spacing:117.075635pt;}
.wsbc{word-spacing:118.057400pt;}
.wsf3{word-spacing:118.978150pt;}
.wsbf{word-spacing:123.487652pt;}
.wse8{word-spacing:124.621005pt;}
.wsea{word-spacing:127.369372pt;}
.wse5{word-spacing:128.300484pt;}
.wsf4{word-spacing:128.542310pt;}
.wsca{word-spacing:132.394004pt;}
.wsc3{word-spacing:134.584499pt;}
.wse1{word-spacing:149.284038pt;}
.wsf0{word-spacing:154.858004pt;}
.wsc2{word-spacing:156.127739pt;}
.wsb3{word-spacing:163.738725pt;}
.wsc1{word-spacing:178.655196pt;}
.wse9{word-spacing:179.217250pt;}
.wse0{word-spacing:201.131917pt;}
.wsb0{word-spacing:248.730086pt;}
.ws7c{word-spacing:251.597500pt;}
.ws6e{word-spacing:256.510771pt;}
.wsbe{word-spacing:269.088548pt;}
.wse7{word-spacing:273.652096pt;}
.wsde{word-spacing:295.566763pt;}
.ws88{word-spacing:465.230703pt;}
.ws86{word-spacing:481.631172pt;}
.ws85{word-spacing:498.155913pt;}
.ws78{word-spacing:586.407014pt;}
.ws82{word-spacing:592.600218pt;}
.ws83{word-spacing:611.488435pt;}
.ws87{word-spacing:620.770253pt;}
.ws7e{word-spacing:620.962765pt;}
.ws81{word-spacing:649.365828pt;}
.ws7b{word-spacing:650.247305pt;}
.ws79{word-spacing:660.889404pt;}
.ws20{word-spacing:669.488400pt;}
.ws7a{word-spacing:679.777621pt;}
.ws7f{word-spacing:748.517769pt;}
.ws80{word-spacing:788.448179pt;}
.ws75{word-spacing:793.968742pt;}
.ws76{word-spacing:816.806955pt;}
.ws77{word-spacing:856.737365pt;}
._69{margin-left:-21.806285pt;}
._1{margin-left:-10.616218pt;}
._0{margin-left:-7.077478pt;}
._6{margin-left:-5.308109pt;}
._5{margin-left:-4.411426pt;}
._4{margin-left:-2.630144pt;}
._3{margin-left:-1.721549pt;}
._8{width:0.969929pt;}
._2{width:2.643839pt;}
._1a{width:4.166884pt;}
._68{width:5.116826pt;}
._18{width:6.375970pt;}
._35{width:8.198596pt;}
._1b{width:9.298427pt;}
._34{width:10.244338pt;}
._66{width:11.479621pt;}
._19{width:12.481181pt;}
._11{width:14.075451pt;}
._15{width:15.441177pt;}
._7{width:16.737280pt;}
._13{width:18.171782pt;}
._9{width:19.182641pt;}
._f{width:20.562806pt;}
._c{width:21.731751pt;}
._d{width:23.166366pt;}
._17{width:25.037757pt;}
._14{width:26.322417pt;}
._a{width:27.251894pt;}
._6a{width:29.744538pt;}
._16{width:30.732640pt;}
._10{width:34.131892pt;}
._e{width:36.396699pt;}
._b{width:39.977933pt;}
._65{width:42.188290pt;}
._67{width:44.568986pt;}
._36{width:48.723756pt;}
._45{width:80.568484pt;}
._44{width:81.639670pt;}
._37{width:83.154501pt;}
._53{width:85.407949pt;}
._50{width:86.903610pt;}
._54{width:90.572595pt;}
._3b{width:92.016783pt;}
._39{width:94.125681pt;}
._3a{width:95.330765pt;}
._4c{width:96.523107pt;}
._1e{width:98.463027pt;}
._46{width:100.700620pt;}
._48{width:106.085663pt;}
._5e{width:108.940222pt;}
._64{width:109.869129pt;}
._20{width:110.896435pt;}
._4b{width:115.611566pt;}
._21{width:117.639168pt;}
._5d{width:118.978150pt;}
._1f{width:121.656115pt;}
._5b{width:122.947127pt;}
._38{width:125.027482pt;}
._52{width:128.303206pt;}
._61{width:129.197664pt;}
._43{width:133.980340pt;}
._2e{width:135.811072pt;}
._57{width:137.943482pt;}
._55{width:138.953732pt;}
._1d{width:149.296538pt;}
._4f{width:151.151985pt;}
._4d{width:153.673714pt;}
._47{width:155.695060pt;}
._49{width:157.158277pt;}
._4e{width:159.912755pt;}
._4a{width:163.279340pt;}
._40{width:166.289659pt;}
._5c{width:169.298439pt;}
._2b{width:170.911539pt;}
._2f{width:173.876429pt;}
._51{width:175.100641pt;}
._3f{width:176.782376pt;}
._63{width:178.156196pt;}
._2d{width:180.858266pt;}
._42{width:182.589379pt;}
._60{width:185.735987pt;}
._62{width:187.495793pt;}
._27{width:189.035622pt;}
._3d{width:190.310102pt;}
._31{width:192.813466pt;}
._5a{width:194.200269pt;}
._5f{width:197.404262pt;}
._41{width:198.929746pt;}
._3c{width:200.666474pt;}
._2c{width:208.450867pt;}
._30{width:212.228710pt;}
._58{width:213.936746pt;}
._29{width:215.193600pt;}
._24{width:220.788634pt;}
._59{width:232.600371pt;}
._32{width:243.120947pt;}
._2a{width:244.507750pt;}
._25{width:247.233536pt;}
._26{width:263.731712pt;}
._23{width:268.465971pt;}
._56{width:280.038605pt;}
._28{width:287.642112pt;}
._22{width:297.588838pt;}
._33{width:331.445965pt;}
._1c{width:638.790246pt;}
._3e{width:1721.417675pt;}
._12{width:1742.671008pt;}
.fs10{font-size:29.754880pt;}
.fse{font-size:31.614560pt;}
.fsc{font-size:33.474240pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fsf{font-size:38.256640pt;}
.fs3{font-size:40.381867pt;}
.fsd{font-size:40.647680pt;}
.fs6{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:43.038720pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:110.978294pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:3.044747pt;}
.y12{bottom:12.578910pt;}
.y2{bottom:15.986365pt;}
.y30{bottom:56.693333pt;}
.y1ea{bottom:97.149333pt;}
.y18f{bottom:98.494667pt;}
.y2f{bottom:99.612000pt;}
.y1c1{bottom:99.673333pt;}
.y11c{bottom:103.841333pt;}
.yc4{bottom:104.594667pt;}
.y196{bottom:105.544000pt;}
.y24a{bottom:105.990667pt;}
.y68{bottom:106.112000pt;}
.y14a{bottom:107.240000pt;}
.y1ff{bottom:109.441333pt;}
.y62{bottom:110.185333pt;}
.y1cd{bottom:113.857333pt;}
.y1e9{bottom:115.162667pt;}
.y18e{bottom:115.590667pt;}
.yf6{bottom:116.981333pt;}
.y2e{bottom:117.624000pt;}
.y1c0{bottom:117.685333pt;}
.yc3{bottom:119.524000pt;}
.y11b{bottom:123.182667pt;}
.y249{bottom:123.205333pt;}
.y67{bottom:123.208000pt;}
.y195{bottom:123.556000pt;}
.y216{bottom:125.236000pt;}
.y149{bottom:125.252000pt;}
.y1fe{bottom:127.454667pt;}
.y61{bottom:128.197333pt;}
.y1cc{bottom:130.953333pt;}
.y1e8{bottom:133.174667pt;}
.yc2{bottom:134.453333pt;}
.yf5{bottom:134.993333pt;}
.y2d{bottom:135.637333pt;}
.y1bf{bottom:135.697333pt;}
.y248{bottom:140.421333pt;}
.y11a{bottom:141.194667pt;}
.y194{bottom:141.568000pt;}
.y148{bottom:143.264000pt;}
.y1fd{bottom:145.466667pt;}
.y60{bottom:146.210667pt;}
.y215{bottom:146.716000pt;}
.yc1{bottom:149.382667pt;}
.y98{bottom:149.717333pt;}
.y1e7{bottom:151.186667pt;}
.yf4{bottom:153.005333pt;}
.y2c{bottom:153.649333pt;}
.y247{bottom:157.636000pt;}
.y119{bottom:159.208000pt;}
.y147{bottom:161.277333pt;}
.y169{bottom:161.889333pt;}
.y1fc{bottom:163.478667pt;}
.y5f{bottom:164.222667pt;}
.yc0{bottom:164.312000pt;}
.y193{bottom:167.550667pt;}
.y97{bottom:167.730667pt;}
.y214{bottom:168.194667pt;}
.y1e6{bottom:169.200000pt;}
.yf3{bottom:171.018667pt;}
.y2b{bottom:171.662667pt;}
.y1be{bottom:174.474667pt;}
.y246{bottom:174.852000pt;}
.y118{bottom:178.549333pt;}
.ybf{bottom:179.241333pt;}
.y146{bottom:179.289333pt;}
.y168{bottom:179.901333pt;}
.y1fb{bottom:181.492000pt;}
.y213{bottom:181.704000pt;}
.y5e{bottom:182.236000pt;}
.y1bd{bottom:187.147733pt;}
.y1e5{bottom:187.212000pt;}
.yf2{bottom:189.030667pt;}
.y2a{bottom:189.674667pt;}
.y245{bottom:192.068000pt;}
.y96{bottom:193.713333pt;}
.y212{bottom:195.213333pt;}
.y192{bottom:195.660000pt;}
.y117{bottom:196.561333pt;}
.y145{bottom:197.302667pt;}
.y167{bottom:197.914667pt;}
.y1fa{bottom:199.504000pt;}
.y1bc{bottom:199.820800pt;}
.ybe{bottom:200.572000pt;}
.y5d{bottom:201.576000pt;}
.y1e4{bottom:205.225333pt;}
.yf1{bottom:207.044000pt;}
.y29{bottom:207.686667pt;}
.y211{bottom:208.722667pt;}
.y244{bottom:209.282667pt;}
.y1bb{bottom:212.493867pt;}
.y116{bottom:214.573333pt;}
.y144{bottom:215.314667pt;}
.y166{bottom:215.926667pt;}
.y1f9{bottom:217.517333pt;}
.y5c{bottom:219.589333pt;}
.ybd{bottom:221.904000pt;}
.y1e3{bottom:223.237333pt;}
.y95{bottom:224.664000pt;}
.yf0{bottom:225.056000pt;}
.y1ba{bottom:225.166933pt;}
.y28{bottom:225.700000pt;}
.y243{bottom:226.498667pt;}
.y210{bottom:230.202667pt;}
.y143{bottom:233.326667pt;}
.y165{bottom:233.940000pt;}
.y1f8{bottom:235.529333pt;}
.y1b9{bottom:237.586133pt;}
.y5b{bottom:237.601333pt;}
.y1e2{bottom:241.249333pt;}
.y94{bottom:242.676000pt;}
.y27{bottom:243.712000pt;}
.y242{bottom:243.713333pt;}
.y115{bottom:245.869333pt;}
.ybc{bottom:250.010667pt;}
.y1b8{bottom:251.085867pt;}
.yee{bottom:251.182667pt;}
.y142{bottom:251.340000pt;}
.y164{bottom:251.952000pt;}
.y1f7{bottom:253.541333pt;}
.y5a{bottom:255.614667pt;}
.y20f{bottom:257.221333pt;}
.y1e1{bottom:259.262667pt;}
.yed{bottom:260.190667pt;}
.y93{bottom:260.688000pt;}
.y241{bottom:260.929333pt;}
.y26{bottom:261.725333pt;}
.y1b7{bottom:263.758933pt;}
.y114{bottom:263.882667pt;}
.y140{bottom:269.352000pt;}
.y163{bottom:269.964000pt;}
.y1f6{bottom:271.554667pt;}
.y141{bottom:274.174667pt;}
.y59{bottom:274.954667pt;}
.y1b6{bottom:276.432000pt;}
.y1e0{bottom:277.274667pt;}
.yef{bottom:277.424000pt;}
.y240{bottom:278.145333pt;}
.y92{bottom:278.701333pt;}
.y113{bottom:281.894667pt;}
.ybb{bottom:282.892000pt;}
.yec{bottom:283.180000pt;}
.y20e{bottom:286.670667pt;}
.y13f{bottom:287.365333pt;}
.y25{bottom:287.708000pt;}
.y162{bottom:287.977333pt;}
.y1b5{bottom:289.105067pt;}
.y1f5{bottom:289.566667pt;}
.ye9{bottom:290.657333pt;}
.yea{bottom:290.754667pt;}
.y58{bottom:292.968000pt;}
.y1df{bottom:295.288000pt;}
.y23f{bottom:295.360000pt;}
.y91{bottom:296.713333pt;}
.y112{bottom:299.908000pt;}
.ye8{bottom:300.474667pt;}
.yba{bottom:300.904000pt;}
.y1b4{bottom:301.778133pt;}
.y20d{bottom:304.684000pt;}
.yeb{bottom:305.110667pt;}
.y13e{bottom:305.377333pt;}
.y161{bottom:305.989333pt;}
.y1f4{bottom:307.580000pt;}
.y57{bottom:310.980000pt;}
.y23e{bottom:312.576000pt;}
.y1de{bottom:313.300000pt;}
.y1b3{bottom:314.610133pt;}
.y90{bottom:314.726667pt;}
.ye7{bottom:317.882667pt;}
.y111{bottom:317.920000pt;}
.yb9{bottom:318.916000pt;}
.y20c{bottom:322.696000pt;}
.y13d{bottom:323.389333pt;}
.y160{bottom:324.002667pt;}
.y1f3{bottom:325.592000pt;}
.y56{bottom:328.992000pt;}
.y23d{bottom:329.790667pt;}
.y1dd{bottom:331.312000pt;}
.y8f{bottom:332.738667pt;}
.ye6{bottom:335.894667pt;}
.y110{bottom:335.932000pt;}
.yb8{bottom:336.929333pt;}
.y1b2{bottom:337.368000pt;}
.y20b{bottom:340.709333pt;}
.y13c{bottom:341.402667pt;}
.y15f{bottom:342.014667pt;}
.y1f2{bottom:343.604000pt;}
.y55{bottom:347.005333pt;}
.y23c{bottom:347.006667pt;}
.y1dc{bottom:349.325333pt;}
.y8e{bottom:350.750667pt;}
.y24{bottom:352.165333pt;}
.ye5{bottom:353.906667pt;}
.y1b1{bottom:354.464000pt;}
.yb7{bottom:354.941333pt;}
.y20a{bottom:358.721333pt;}
.y13b{bottom:359.414667pt;}
.y15e{bottom:360.026667pt;}
.y1f1{bottom:361.617333pt;}
.y10f{bottom:361.914667pt;}
.y23b{bottom:364.222667pt;}
.ye4{bottom:364.853333pt;}
.y54{bottom:366.345333pt;}
.y1db{bottom:367.337333pt;}
.y8d{bottom:368.764000pt;}
.y23{bottom:370.178667pt;}
.ye2{bottom:371.920000pt;}
.yb5{bottom:372.954667pt;}
.yb6{bottom:373.093333pt;}
.y209{bottom:376.733333pt;}
.y13a{bottom:377.428000pt;}
.y15d{bottom:378.040000pt;}
.y1f0{bottom:379.629333pt;}
.y23a{bottom:381.437333pt;}
.y53{bottom:384.358667pt;}
.ye3{bottom:384.910667pt;}
.y1da{bottom:385.350667pt;}
.y8c{bottom:386.776000pt;}
.y1b0{bottom:387.452000pt;}
.y10e{bottom:392.865333pt;}
.ye1{bottom:394.038667pt;}
.y208{bottom:394.746667pt;}
.y139{bottom:395.440000pt;}
.y15c{bottom:396.052000pt;}
.y1ef{bottom:397.642667pt;}
.y239{bottom:398.653333pt;}
.y52{bottom:402.370667pt;}
.y1d9{bottom:403.362667pt;}
.y22{bottom:404.130667pt;}
.y8b{bottom:404.789333pt;}
.y1af{bottom:405.465333pt;}
.yb4{bottom:405.977333pt;}
.y10d{bottom:410.878667pt;}
.ye0{bottom:412.050667pt;}
.y207{bottom:412.758667pt;}
.y138{bottom:413.452000pt;}
.y15b{bottom:414.065333pt;}
.y1ee{bottom:415.654667pt;}
.y238{bottom:415.868000pt;}
.y18d{bottom:419.489333pt;}
.y51{bottom:420.384000pt;}
.y1d8{bottom:421.374667pt;}
.y21{bottom:422.144000pt;}
.y8a{bottom:422.801333pt;}
.y1ae{bottom:423.477333pt;}
.y10c{bottom:428.890667pt;}
.ydf{bottom:430.064000pt;}
.y206{bottom:430.772000pt;}
.y137{bottom:431.465333pt;}
.y15a{bottom:432.077333pt;}
.y237{bottom:433.084000pt;}
.y1ed{bottom:433.666667pt;}
.y66{bottom:435.845333pt;}
.y18c{bottom:437.502667pt;}
.y50{bottom:438.396000pt;}
.y1d7{bottom:439.388000pt;}
.y20{bottom:440.156000pt;}
.y89{bottom:440.813333pt;}
.y1ad{bottom:441.490667pt;}
.yb3{bottom:446.020000pt;}
.y10b{bottom:446.904000pt;}
.yde{bottom:448.076000pt;}
.y205{bottom:448.784000pt;}
.y136{bottom:449.477333pt;}
.y159{bottom:450.089333pt;}
.y236{bottom:450.300000pt;}
.y1ec{bottom:451.680000pt;}
.y65{bottom:453.858667pt;}
.y18b{bottom:455.514667pt;}
.y4f{bottom:456.408000pt;}
.y1d6{bottom:457.400000pt;}
.y1f{bottom:458.168000pt;}
.y88{bottom:458.826667pt;}
.y1ac{bottom:459.502667pt;}
.yb2{bottom:464.032000pt;}
.y268{bottom:464.766667pt;}
.y1cb{bottom:464.870667pt;}
.y10a{bottom:464.916000pt;}
.y204{bottom:466.796000pt;}
.y235{bottom:467.514667pt;}
.y158{bottom:468.102667pt;}
.y1eb{bottom:469.692000pt;}
.y18a{bottom:473.528000pt;}
.ydd{bottom:474.058667pt;}
.y1d5{bottom:475.413333pt;}
.y135{bottom:475.460000pt;}
.y1e{bottom:476.181333pt;}
.y87{bottom:476.838667pt;}
.y1ab{bottom:477.514667pt;}
.y64{bottom:479.841333pt;}
.y267{bottom:481.982667pt;}
.yb1{bottom:482.045333pt;}
.y1ca{bottom:482.882667pt;}
.y109{bottom:482.928000pt;}
.y234{bottom:484.730667pt;}
.y203{bottom:484.809333pt;}
.y157{bottom:486.114667pt;}
.y4e{bottom:487.704000pt;}
.y189{bottom:491.540000pt;}
.y1d4{bottom:493.425333pt;}
.y1d{bottom:494.193333pt;}
.y86{bottom:494.852000pt;}
.y1aa{bottom:495.528000pt;}
.y266{bottom:499.197333pt;}
.yb0{bottom:500.057333pt;}
.y1c9{bottom:500.896000pt;}
.y108{bottom:500.941333pt;}
.y233{bottom:501.945333pt;}
.y202{bottom:502.821333pt;}
.y156{bottom:504.128000pt;}
.y4d{bottom:505.717333pt;}
.y134{bottom:506.410667pt;}
.y188{bottom:509.552000pt;}
.y63{bottom:510.792000pt;}
.y1d3{bottom:511.437333pt;}
.y1c{bottom:512.206667pt;}
.y84{bottom:512.864000pt;}
.ydc{bottom:513.060000pt;}
.y1a9{bottom:513.540000pt;}
.y85{bottom:517.685333pt;}
.yaf{bottom:518.070667pt;}
.y1c8{bottom:518.908000pt;}
.y107{bottom:518.953333pt;}
.y232{bottom:519.161333pt;}
.y201{bottom:520.834667pt;}
.y155{bottom:522.140000pt;}
.y4c{bottom:523.729333pt;}
.y265{bottom:527.237333pt;}
.y187{bottom:527.565333pt;}
.ydb{bottom:527.989333pt;}
.y1d2{bottom:529.450667pt;}
.y1b{bottom:530.218667pt;}
.yae{bottom:536.082667pt;}
.y231{bottom:536.377333pt;}
.y1c7{bottom:536.920000pt;}
.y106{bottom:536.966667pt;}
.y83{bottom:538.846667pt;}
.y133{bottom:539.590667pt;}
.y154{bottom:540.152000pt;}
.y4b{bottom:541.742667pt;}
.yda{bottom:542.918667pt;}
.y264{bottom:544.453333pt;}
.y186{bottom:545.577333pt;}
.y200{bottom:546.816000pt;}
.y1d1{bottom:547.462667pt;}
.y1a{bottom:548.230667pt;}
.y230{bottom:553.592000pt;}
.yad{bottom:554.094667pt;}
.y1c6{bottom:554.933333pt;}
.y105{bottom:554.978667pt;}
.y1a8{bottom:555.226667pt;}
.yd9{bottom:557.848000pt;}
.y153{bottom:558.165333pt;}
.y132{bottom:558.932000pt;}
.y4a{bottom:559.754667pt;}
.y263{bottom:561.669333pt;}
.y185{bottom:563.590667pt;}
.y1d0{bottom:565.476000pt;}
.y19{bottom:566.244000pt;}
.y82{bottom:569.797333pt;}
.y1a7{bottom:570.765333pt;}
.y22f{bottom:570.808000pt;}
.yac{bottom:572.108000pt;}
.yd8{bottom:572.777333pt;}
.y1c5{bottom:572.945333pt;}
.y104{bottom:572.990667pt;}
.y131{bottom:576.944000pt;}
.y49{bottom:577.766667pt;}
.y262{bottom:578.884000pt;}
.y184{bottom:581.602667pt;}
.y18{bottom:584.256000pt;}
.y1a6{bottom:586.304000pt;}
.yd7{bottom:587.706667pt;}
.y80{bottom:587.809333pt;}
.y22e{bottom:588.024000pt;}
.yab{bottom:590.120000pt;}
.y1c4{bottom:590.958667pt;}
.y1cf{bottom:591.457333pt;}
.y81{bottom:592.632000pt;}
.y130{bottom:594.956000pt;}
.y48{bottom:595.780000pt;}
.y261{bottom:596.100000pt;}
.y103{bottom:598.973333pt;}
.y152{bottom:599.076800pt;}
.y183{bottom:599.614667pt;}
.y1a5{bottom:601.914667pt;}
.y17{bottom:602.269333pt;}
.yd6{bottom:602.636000pt;}
.y22d{bottom:605.238667pt;}
.y7f{bottom:605.822667pt;}
.yaa{bottom:608.133333pt;}
.y151{bottom:613.062800pt;}
.y260{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y12f{bottom:614.297333pt;}
.yd5{bottom:617.565333pt;}
.y182{bottom:617.628000pt;}
.y1ce{bottom:619.568000pt;}
.y16{bottom:620.281333pt;}
.y1c3{bottom:622.069333pt;}
.y22c{bottom:622.454667pt;}
.y1a3{bottom:622.928000pt;}
.y7e{bottom:623.834667pt;}
.ya9{bottom:626.145333pt;}
.y150{bottom:627.047600pt;}
.y1a2{bottom:630.234667pt;}
.y25f{bottom:630.530667pt;}
.y46{bottom:631.805333pt;}
.y102{bottom:631.972000pt;}
.y12e{bottom:632.309333pt;}
.yd4{bottom:632.494667pt;}
.y1a4{bottom:637.540000pt;}
.y15{bottom:638.293333pt;}
.y1c2{bottom:639.165333pt;}
.y22b{bottom:639.669333pt;}
.y14f{bottom:641.097200pt;}
.y7d{bottom:641.846667pt;}
.ya8{bottom:644.157333pt;}
.yd3{bottom:647.424000pt;}
.y25e{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.y12d{bottom:650.322667pt;}
.y14{bottom:656.306667pt;}
.y181{bottom:656.404267pt;}
.y22a{bottom:656.885333pt;}
.y7c{bottom:659.860000pt;}
.y14e{bottom:660.294800pt;}
.ya7{bottom:662.170667pt;}
.yd2{bottom:662.353333pt;}
.y25d{bottom:664.961333pt;}
.y101{bottom:664.994667pt;}
.y1a1{bottom:665.646667pt;}
.y44{bottom:667.829333pt;}
.y180{bottom:669.077333pt;}
.y12c{bottom:669.662667pt;}
.y229{bottom:674.101333pt;}
.yd1{bottom:677.282667pt;}
.y7b{bottom:677.872000pt;}
.ya6{bottom:680.182667pt;}
.y17f{bottom:681.750400pt;}
.y25c{bottom:682.177333pt;}
.y100{bottom:683.008000pt;}
.y43{bottom:685.842667pt;}
.y14d{bottom:686.900000pt;}
.y12b{bottom:687.676000pt;}
.y11{bottom:687.801382pt;}
.y10{bottom:688.482667pt;}
.y228{bottom:691.316000pt;}
.yd0{bottom:692.212000pt;}
.y17e{bottom:694.423467pt;}
.y7a{bottom:695.885333pt;}
.ya5{bottom:698.196000pt;}
.y1a0{bottom:698.634667pt;}
.y25b{bottom:699.392000pt;}
.yff{bottom:701.020000pt;}
.y42{bottom:703.854667pt;}
.y14c{bottom:703.996000pt;}
.y191{bottom:706.084000pt;}
.y17d{bottom:707.096533pt;}
.ycf{bottom:707.141333pt;}
.y227{bottom:708.532000pt;}
.y79{bottom:713.897333pt;}
.ya4{bottom:716.208000pt;}
.y25a{bottom:716.608000pt;}
.y19f{bottom:716.646667pt;}
.y12a{bottom:718.972000pt;}
.y17c{bottom:719.769600pt;}
.y41{bottom:721.868000pt;}
.yce{bottom:722.072000pt;}
.yf{bottom:723.154667pt;}
.y190{bottom:723.180000pt;}
.y226{bottom:725.746667pt;}
.yfe{bottom:729.612000pt;}
.y78{bottom:731.909333pt;}
.y17b{bottom:732.188800pt;}
.y259{bottom:733.824000pt;}
.ya3{bottom:734.220000pt;}
.y19e{bottom:734.660000pt;}
.y129{bottom:736.984000pt;}
.ycd{bottom:737.001333pt;}
.yfd{bottom:738.725333pt;}
.ye{bottom:739.294667pt;}
.y40{bottom:739.880000pt;}
.y225{bottom:742.962667pt;}
.y17a{bottom:745.688533pt;}
.y77{bottom:749.922667pt;}
.y258{bottom:751.038667pt;}
.ycc{bottom:751.930667pt;}
.ya2{bottom:752.233333pt;}
.y19d{bottom:752.672000pt;}
.y128{bottom:754.997333pt;}
.y3f{bottom:757.892000pt;}
.y179{bottom:758.361600pt;}
.yd{bottom:759.773333pt;}
.y224{bottom:760.178667pt;}
.ycb{bottom:766.860000pt;}
.y76{bottom:767.934667pt;}
.y257{bottom:768.254667pt;}
.ya1{bottom:770.245333pt;}
.y178{bottom:771.034667pt;}
.yc{bottom:771.573333pt;}
.y127{bottom:773.009333pt;}
.y3e{bottom:775.905333pt;}
.y223{bottom:777.393333pt;}
.yfc{bottom:779.013333pt;}
.yca{bottom:781.789333pt;}
.y177{bottom:783.707733pt;}
.y256{bottom:785.469333pt;}
.y75{bottom:785.948000pt;}
.ya0{bottom:788.258667pt;}
.y126{bottom:791.021333pt;}
.yb{bottom:792.053333pt;}
.y3d{bottom:793.917333pt;}
.y19c{bottom:794.358667pt;}
.y222{bottom:794.609333pt;}
.y176{bottom:796.380800pt;}
.y255{bottom:802.685333pt;}
.yc9{bottom:803.120000pt;}
.ya{bottom:803.853333pt;}
.y74{bottom:803.960000pt;}
.yfb{bottom:804.996000pt;}
.y125{bottom:809.034667pt;}
.y175{bottom:809.053867pt;}
.y19b{bottom:809.897333pt;}
.y221{bottom:811.824000pt;}
.y3c{bottom:811.930667pt;}
.y9f{bottom:814.240000pt;}
.y254{bottom:819.901333pt;}
.y9{bottom:819.992000pt;}
.y174{bottom:821.886933pt;}
.y73{bottom:821.972000pt;}
.y19a{bottom:825.436000pt;}
.y124{bottom:827.046667pt;}
.y220{bottom:829.040000pt;}
.y3b{bottom:829.942667pt;}
.yc8{bottom:831.226667pt;}
.yfa{bottom:835.946667pt;}
.y253{bottom:837.116000pt;}
.y72{bottom:839.985333pt;}
.y8{bottom:840.472000pt;}
.y199{bottom:841.046667pt;}
.y173{bottom:844.644000pt;}
.y123{bottom:845.060000pt;}
.y9e{bottom:845.190667pt;}
.y21f{bottom:846.256000pt;}
.y3a{bottom:847.954667pt;}
.yc7{bottom:848.322667pt;}
.yf9{bottom:853.960000pt;}
.y252{bottom:854.332000pt;}
.y71{bottom:857.997333pt;}
.y7{bottom:860.241333pt;}
.y172{bottom:861.740000pt;}
.y198{bottom:862.378667pt;}
.y122{bottom:863.072000pt;}
.y9d{bottom:863.204000pt;}
.y21e{bottom:863.470667pt;}
.yc6{bottom:865.418667pt;}
.y39{bottom:865.968000pt;}
.y251{bottom:871.546667pt;}
.yf8{bottom:871.972000pt;}
.y70{bottom:876.010667pt;}
.y21d{bottom:880.686667pt;}
.y121{bottom:881.084000pt;}
.y9c{bottom:881.216000pt;}
.yc5{bottom:882.514667pt;}
.y38{bottom:883.980000pt;}
.y250{bottom:888.762667pt;}
.y197{bottom:890.484000pt;}
.y6f{bottom:894.022667pt;}
.y171{bottom:897.549200pt;}
.y21c{bottom:897.901333pt;}
.y6{bottom:898.178667pt;}
.y120{bottom:899.097333pt;}
.y9b{bottom:899.229333pt;}
.y37{bottom:901.993333pt;}
.yf7{bottom:904.994667pt;}
.y24f{bottom:905.978667pt;}
.y170{bottom:910.758200pt;}
.y6e{bottom:912.034667pt;}
.y21b{bottom:915.117333pt;}
.y11f{bottom:917.109333pt;}
.y36{bottom:920.005333pt;}
.y24e{bottom:923.193333pt;}
.y16f{bottom:923.966067pt;}
.y14b{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y9a{bottom:925.849333pt;}
.y6d{bottom:930.048000pt;}
.y21a{bottom:932.333333pt;}
.y99{bottom:934.961333pt;}
.y11e{bottom:935.122667pt;}
.y16e{bottom:937.235133pt;}
.y35{bottom:938.017333pt;}
.y24d{bottom:940.409333pt;}
.y6b{bottom:948.060000pt;}
.y219{bottom:949.548000pt;}
.y4{bottom:952.217333pt;}
.y6c{bottom:952.882667pt;}
.y16c{bottom:955.096467pt;}
.y34{bottom:956.030667pt;}
.y24c{bottom:957.624000pt;}
.y11d{bottom:961.105333pt;}
.y16b{bottom:961.306000pt;}
.y69{bottom:966.073333pt;}
.y218{bottom:966.764000pt;}
.y16d{bottom:967.516667pt;}
.y6a{bottom:970.894667pt;}
.y33{bottom:974.042667pt;}
.y24b{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y217{bottom:991.949333pt;}
.y32{bottom:992.056000pt;}
.y16a{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h1e{height:3.134898pt;}
.h9{height:22.673858pt;}
.h16{height:25.132319pt;}
.h1a{height:25.573434pt;}
.h12{height:29.317235pt;}
.h2a{height:29.388273pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h24{height:31.116995pt;}
.h3a{height:33.713664pt;}
.h30{height:34.525776pt;}
.h10{height:34.574438pt;}
.h19{height:35.052646pt;}
.h7{height:35.073565pt;}
.h31{height:36.076012pt;}
.h32{height:36.176976pt;}
.h11{height:38.080100pt;}
.h2c{height:38.330762pt;}
.hc{height:38.415786pt;}
.hf{height:38.575187pt;}
.h4{height:38.947124pt;}
.h2d{height:39.486762pt;}
.h2e{height:39.903829pt;}
.h2f{height:39.908362pt;}
.he{height:40.084290pt;}
.h25{height:40.585513pt;}
.h1b{height:41.524400pt;}
.h26{height:41.809513pt;}
.h27{height:42.251113pt;}
.h28{height:42.255913pt;}
.h33{height:44.617575pt;}
.h34{height:44.622909pt;}
.h8{height:45.095014pt;}
.h2{height:45.272024pt;}
.h35{height:46.460348pt;}
.h37{height:46.945681pt;}
.h36{height:46.951014pt;}
.h6{height:48.486756pt;}
.h22{height:48.885242pt;}
.h23{height:48.890575pt;}
.h18{height:49.550570pt;}
.hd{height:50.105236pt;}
.h2b{height:54.226406pt;}
.h29{height:54.230939pt;}
.h13{height:57.365434pt;}
.h38{height:63.795772pt;}
.h5{height:69.148877pt;}
.h14{height:74.920458pt;}
.h3{height:75.243283pt;}
.h17{height:76.670898pt;}
.h1c{height:78.912100pt;}
.h20{height:86.121236pt;}
.h21{height:88.782570pt;}
.h39{height:93.022438pt;}
.h1f{height:98.350570pt;}
.h1d{height:106.128100pt;}
.h15{height:112.492623pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:227.883735pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:26.021437pt;}
.x2{left:53.536669pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x38{left:106.120000pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.xdf{left:112.646667pt;}
.x36{left:114.613333pt;}
.xe5{left:116.237333pt;}
.x46{left:118.512000pt;}
.x37{left:120.557333pt;}
.x5{left:129.929333pt;}
.x82{left:132.565333pt;}
.xa2{left:135.306667pt;}
.x1c{left:136.725333pt;}
.x9f{left:138.336000pt;}
.x59{left:139.734667pt;}
.x78{left:140.637333pt;}
.x4b{left:142.296000pt;}
.x61{left:144.474667pt;}
.x1d{left:150.009333pt;}
.xbc{left:152.129867pt;}
.x1e{left:153.264000pt;}
.x18{left:154.878667pt;}
.x67{left:156.413333pt;}
.x4c{left:157.646667pt;}
.x64{left:159.522667pt;}
.x66{left:160.508000pt;}
.x19{left:161.521333pt;}
.x65{left:163.168000pt;}
.x1a{left:164.908000pt;}
.x1f{left:166.546667pt;}
.x9{left:167.978667pt;}
.x62{left:170.554667pt;}
.x1b{left:171.549333pt;}
.x5f{left:175.394667pt;}
.x14{left:177.674667pt;}
.x63{left:179.353333pt;}
.x11{left:182.182667pt;}
.x15{left:184.316000pt;}
.xde{left:186.329333pt;}
.xa{left:188.750667pt;}
.xbb{left:189.760600pt;}
.xd5{left:193.086667pt;}
.x89{left:195.470667pt;}
.xb3{left:197.058133pt;}
.xab{left:198.380000pt;}
.xcd{left:199.766667pt;}
.xdd{left:205.264000pt;}
.x60{left:206.644000pt;}
.x8a{left:208.809333pt;}
.x47{left:212.862667pt;}
.x3a{left:214.528000pt;}
.x90{left:216.016000pt;}
.x39{left:218.261333pt;}
.x58{left:221.753333pt;}
.x3f{left:223.597333pt;}
.x6f{left:225.428000pt;}
.xca{left:228.793333pt;}
.xb2{left:230.597333pt;}
.xee{left:231.636000pt;}
.xcc{left:233.132000pt;}
.x85{left:234.038667pt;}
.xf4{left:237.070667pt;}
.xea{left:238.353333pt;}
.x98{left:240.409333pt;}
.x79{left:241.682667pt;}
.x86{left:242.916000pt;}
.x3d{left:245.033333pt;}
.xa6{left:246.701600pt;}
.xef{left:248.244000pt;}
.x92{left:250.004000pt;}
.x7a{left:252.348000pt;}
.x40{left:254.456000pt;}
.xa5{left:256.629200pt;}
.x3e{left:258.317333pt;}
.x41{left:259.993333pt;}
.x9b{left:262.392000pt;}
.x70{left:263.332000pt;}
.xc8{left:264.848000pt;}
.xd6{left:266.304000pt;}
.x71{left:268.546667pt;}
.xa3{left:270.562667pt;}
.x91{left:272.838667pt;}
.xf0{left:278.134667pt;}
.xb4{left:279.805067pt;}
.x76{left:281.760000pt;}
.x26{left:283.578667pt;}
.xac{left:285.996000pt;}
.xb{left:288.520000pt;}
.x20{left:291.404000pt;}
.xc{left:295.161333pt;}
.x27{left:296.198667pt;}
.x21{left:298.045333pt;}
.x56{left:299.340000pt;}
.x88{left:300.874667pt;}
.x72{left:303.201333pt;}
.x7e{left:307.674667pt;}
.xed{left:311.429333pt;}
.x57{left:312.624000pt;}
.x4d{left:313.945333pt;}
.x4e{left:322.176000pt;}
.x95{left:324.094667pt;}
.x3b{left:328.682667pt;}
.x80{left:330.912000pt;}
.x6d{left:332.348000pt;}
.x73{left:334.250667pt;}
.x32{left:335.285333pt;}
.x33{left:340.997333pt;}
.x6e{left:345.686667pt;}
.x74{left:346.974667pt;}
.x9c{left:350.277333pt;}
.x7c{left:351.412000pt;}
.xc9{left:352.442667pt;}
.x48{left:357.089333pt;}
.xad{left:358.944000pt;}
.x87{left:360.290667pt;}
.x7b{left:364.496000pt;}
.x99{left:368.585333pt;}
.x16{left:372.848000pt;}
.xd2{left:374.324000pt;}
.x75{left:375.906667pt;}
.x77{left:378.194667pt;}
.x17{left:379.490667pt;}
.xb5{left:382.708333pt;}
.xcb{left:383.690667pt;}
.x5b{left:385.377333pt;}
.xd4{left:386.929333pt;}
.x5a{left:388.377333pt;}
.xb6{left:392.026600pt;}
.xd8{left:393.793333pt;}
.x96{left:396.761333pt;}
.x5c{left:398.293333pt;}
.xae{left:402.230667pt;}
.xf1{left:404.478667pt;}
.x28{left:406.288000pt;}
.x7f{left:408.085333pt;}
.x49{left:409.165333pt;}
.xc4{left:410.205333pt;}
.x29{left:412.929333pt;}
.x2a{left:416.316000pt;}
.xf2{left:421.016000pt;}
.x93{left:422.162667pt;}
.xd9{left:423.928000pt;}
.x3c{left:425.477333pt;}
.x2b{left:429.600000pt;}
.x2c{left:432.988000pt;}
.xaf{left:435.506667pt;}
.xce{left:440.312000pt;}
.x4f{left:441.593333pt;}
.xb8{left:444.293667pt;}
.x2d{left:446.270667pt;}
.xc3{left:450.432000pt;}
.xa0{left:451.689333pt;}
.xa9{left:456.640000pt;}
.xb7{left:459.074600pt;}
.x83{left:460.672000pt;}
.xe3{left:464.849333pt;}
.xeb{left:469.904000pt;}
.xaa{left:472.373333pt;}
.xdc{left:473.470667pt;}
.xa7{left:475.097333pt;}
.xec{left:476.545333pt;}
.x22{left:480.037333pt;}
.xdb{left:481.905333pt;}
.xb0{left:482.924000pt;}
.xbe{left:485.617333pt;}
.x23{left:493.321333pt;}
.x24{left:499.849333pt;}
.xd3{left:501.338667pt;}
.xcf{left:503.365333pt;}
.xbd{left:504.709333pt;}
.xd0{left:506.128000pt;}
.xa1{left:508.512000pt;}
.x8b{left:509.586667pt;}
.x25{left:513.133333pt;}
.xc5{left:516.461333pt;}
.xb9{left:517.525133pt;}
.xba{left:519.872267pt;}
.x7d{left:523.860000pt;}
.x8e{left:525.840000pt;}
.xc1{left:530.412000pt;}
.x42{left:532.296000pt;}
.xa8{left:535.246667pt;}
.xe7{left:536.293333pt;}
.x43{left:538.065333pt;}
.xda{left:539.724000pt;}
.x81{left:549.472000pt;}
.xd{left:551.668000pt;}
.xe8{left:552.964000pt;}
.xa4{left:553.984000pt;}
.x8f{left:555.781333pt;}
.xb1{left:556.790667pt;}
.xe{left:558.309333pt;}
.xe6{left:559.442667pt;}
.xf{left:561.697333pt;}
.xd1{left:565.846667pt;}
.x52{left:567.412000pt;}
.x10{left:568.338667pt;}
.xe9{left:569.634667pt;}
.x8c{left:573.318667pt;}
.x2e{left:575.533333pt;}
.x53{left:578.646667pt;}
.xf7{left:581.268000pt;}
.x2f{left:582.176000pt;}
.x8d{left:585.353333pt;}
.x9a{left:587.104000pt;}
.xe0{left:591.890667pt;}
.x6a{left:593.585333pt;}
.xe4{left:595.813333pt;}
.x94{left:597.281333pt;}
.xc2{left:599.124000pt;}
.xf5{left:600.245333pt;}
.xe2{left:601.465333pt;}
.xfa{left:602.909333pt;}
.xf8{left:605.177333pt;}
.x97{left:606.173333pt;}
.x84{left:610.588000pt;}
.xf6{left:613.529333pt;}
.xc6{left:614.866667pt;}
.x54{left:618.534667pt;}
.xc0{left:620.058667pt;}
.x44{left:621.876000pt;}
.x7{left:623.413317pt;}
.x45{left:627.645333pt;}
.xd7{left:629.074667pt;}
.x55{left:631.818667pt;}
.x9d{left:633.104000pt;}
.x34{left:635.084000pt;}
.xbf{left:639.494667pt;}
.x35{left:641.028000pt;}
.x50{left:642.089333pt;}
.xc7{left:644.808000pt;}
.xf3{left:648.313333pt;}
.x6b{left:652.428000pt;}
.x51{left:659.645333pt;}
.x12{left:661.236000pt;}
.xe1{left:662.422667pt;}
.xfb{left:664.724000pt;}
.xf9{left:666.309333pt;}
.x13{left:667.877333pt;}
.x5d{left:669.154667pt;}
.x30{left:672.441333pt;}
.x68{left:674.081333pt;}
.x4a{left:676.165333pt;}
.x6c{left:678.414667pt;}
.x5e{left:682.070667pt;}
.x31{left:685.725333pt;}
.x69{left:686.701333pt;}
.x9e{left:689.926667pt;}
}


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