
/* 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_5b3c852c453c.woff")format("woff");}.ff1{font-family:ff1;line-height:1.575000;font-style:normal;font-weight: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_98dc9cf1595c.woff")format("woff");}.ff2{font-family:ff2;line-height:1.575000;font-style:normal;font-weight: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_41ad3dcc679e.woff")format("woff");}.ff3{font-family:ff3;line-height:0.945000;font-style:normal;font-weight: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_9279740b7bed.woff")format("woff");}.ff4{font-family:ff4;line-height:0.713000;font-style:normal;font-weight: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_2f8af8970eb4.woff")format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_fe7b681701a1.woff")format("woff");}.ff6{font-family:ff6;line-height:0.773000;font-style:normal;font-weight: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_847ec3e39d5c.woff")format("woff");}.ff7{font-family:ff7;line-height:1.237029;font-style:normal;font-weight: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_b92a9f553ad7.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_3eb34ba3a31e.woff")format("woff");}.ff9{font-family:ff9;line-height:0.895000;font-style:normal;font-weight: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_f1da3aa0a287.woff")format("woff");}.ffa{font-family:ffa;line-height:0.872000;font-style:normal;font-weight: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_057010e59bda.woff")format("woff");}.ffb{font-family:ffb;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffc{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffd;src:url("fonts/font_0011_77ad94cc5107.woff")format("woff");}.ffd{font-family:ffd;line-height:0.919000;font-style:normal;font-weight: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_0012_e5ec7c466bcf.woff")format("woff");}.ffe{font-family:ffe;line-height:0.696000;font-style:normal;font-weight: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_0013_c8fffa6af509.woff")format("woff");}.fff{font-family:fff;line-height:0.919000;font-style:normal;font-weight: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_0014_d2c94afd5dfc.woff")format("woff");}.ff10{font-family:ff10;line-height:0.628000;font-style:normal;font-weight: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_0015_b304039960fb.woff")format("woff");}.ff11{font-family:ff11;line-height:0.871000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0016_07b436b938a6.woff")format("woff");}.ff12{font-family:ff12;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0017_d6b3f7481c6e.woff")format("woff");}.ff13{font-family:ff13;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0018_95e05ad61311.woff")format("woff");}.ff14{font-family:ff14;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0019_b304039960fb.woff")format("woff");}.ff15{font-family:ff15;line-height:0.871000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0020_7200975089b8.woff")format("woff");}.ff16{font-family:ff16;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:ff17;src:url("fonts/font_0021_340849a4f3bb.woff")format("woff");}.ff17{font-family:ff17;line-height:0.871000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0022_6ca2bc6e4f93.woff")format("woff");}.ff18{font-family:ff18;line-height:0.872000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0023_3aae5706b72d.woff")format("woff");}.ff19{font-family:ff19;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0024_984d7174cec7.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0025_cbfe2b312507.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0026_d367d5dfe360.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0027_b304039960fb.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.871000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0028_51a91e7b1fcb.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.628000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0029_5fa3c9a7c069.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0030_99da7d0b4b02.woff")format("woff");}.ff20{font-family:ff20;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0031_2d6b78124d73.woff")format("woff");}.ff21{font-family:ff21;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0032_a838829aff55.woff")format("woff");}.ff22{font-family:ff22;line-height:0.749000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0033_671743d954cd.woff")format("woff");}.ff23{font-family:ff23;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0034_44ebc3154148.woff")format("woff");}.ff24{font-family:ff24;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:ff25;src:url("fonts/font_0035_7865a4a15298.woff")format("woff");}.ff25{font-family:ff25;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0036_7d5be01718d3.woff")format("woff");}.ff26{font-family:ff26;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0037_d7fe0a125f0c.woff")format("woff");}.ff27{font-family:ff27;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0038_44ebc3154148.woff")format("woff");}.ff28{font-family:ff28;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:ff29;src:url("fonts/font_0039_0c8bffe607c5.woff")format("woff");}.ff29{font-family:ff29;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0040_83e8ee273e20.woff")format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url("fonts/font_0041_f84cf1726e55.woff")format("woff");}.ff2b{font-family:ff2b;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0042_83e8ee273e20.woff")format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url("fonts/font_0043_b0b65610ef11.woff")format("woff");}.ff2d{font-family:ff2d;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0044_ab9a4e47db6b.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.vb{vertical-align:-9.414000px;}
.v5{vertical-align:-7.451678px;}
.v4{vertical-align:-4.855236px;}
.v3{vertical-align:-3.399104px;}
.v8{vertical-align:-1.522334px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.252998px;}
.v7{vertical-align:2.365473px;}
.v6{vertical-align:4.258631px;}
.v2{vertical-align:10.761579px;}
.vc{vertical-align:12.654593px;}
.va{vertical-align:15.184800px;}
.vd{vertical-align:16.878000px;}
.v1{vertical-align:21.690000px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000017px;}
.ls3{letter-spacing:0.000538px;}
.ls25{letter-spacing:0.000600px;}
.ls12{letter-spacing:0.001960px;}
.ls1a{letter-spacing:0.003381px;}
.ls24{letter-spacing:0.004200px;}
.ls33{letter-spacing:0.007667px;}
.ls31{letter-spacing:0.009424px;}
.ls5{letter-spacing:0.009621px;}
.ls39{letter-spacing:0.011318px;}
.ls35{letter-spacing:0.011322px;}
.ls32{letter-spacing:1.229622px;}
.ls3a{letter-spacing:1.234425px;}
.ls36{letter-spacing:1.234882px;}
.ls6{letter-spacing:1.255278px;}
.ls1d{letter-spacing:1.942078px;}
.ls1e{letter-spacing:1.945981px;}
.ls3d{letter-spacing:2.449834px;}
.ls2f{letter-spacing:2.689679px;}
.ls1{letter-spacing:2.964877px;}
.ls30{letter-spacing:2.983492px;}
.lse{letter-spacing:2.987108px;}
.lsf{letter-spacing:2.987675px;}
.ls4{letter-spacing:2.988600px;}
.lsd{letter-spacing:2.988780px;}
.ls3e{letter-spacing:2.989200px;}
.ls34{letter-spacing:2.994600px;}
.ls2a{letter-spacing:15.654538px;}
.ls23{letter-spacing:16.062538px;}
.ls28{letter-spacing:16.896538px;}
.ls22{letter-spacing:17.448538px;}
.ls3b{letter-spacing:17.466538px;}
.ls14{letter-spacing:19.748100px;}
.ls3c{letter-spacing:20.292538px;}
.ls37{letter-spacing:20.802538px;}
.ls27{letter-spacing:20.954383px;}
.ls26{letter-spacing:22.122538px;}
.ls29{letter-spacing:22.604383px;}
.ls2{letter-spacing:22.746538px;}
.ls2b{letter-spacing:22.806538px;}
.lsb{letter-spacing:22.956600px;}
.lsc{letter-spacing:24.408538px;}
.ls11{letter-spacing:24.728100px;}
.ls38{letter-spacing:25.590538px;}
.ls9{letter-spacing:27.690600px;}
.ls2d{letter-spacing:30.744305px;}
.lsa{letter-spacing:31.020600px;}
.ls2e{letter-spacing:31.706450px;}
.ls15{letter-spacing:32.364538px;}
.ls13{letter-spacing:33.366538px;}
.ls8{letter-spacing:35.863409px;}
.ls7{letter-spacing:35.869409px;}
.ls1c{letter-spacing:72.432212px;}
.ls17{letter-spacing:72.596155px;}
.ls18{letter-spacing:83.802874px;}
.ls16{letter-spacing:96.360176px;}
.ls1b{letter-spacing:100.888144px;}
.ls19{letter-spacing:101.559532px;}
.ls21{letter-spacing:105.848026px;}
.ls1f{letter-spacing:156.949057px;}
.ls20{letter-spacing:206.034564px;}
.ls10{letter-spacing:357.279061px;}
.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;}
}
.ws2a{word-spacing:-14.943900px;}
.ws1c{word-spacing:-14.920027px;}
.ws5e{word-spacing:-11.955150px;}
.ws117{word-spacing:-10.759635px;}
.ws93{word-spacing:-10.315628px;}
.ws37{word-spacing:-8.214444px;}
.ws13d{word-spacing:-7.949187px;}
.ws94{word-spacing:-1.195512px;}
.ws6a{word-spacing:-1.016185px;}
.ws1c6{word-spacing:-0.956412px;}
.ws144{word-spacing:-0.956410px;}
.ws16f{word-spacing:-0.896634px;}
.wsfa{word-spacing:-0.777083px;}
.ws178{word-spacing:-0.717307px;}
.ws55{word-spacing:-0.657532px;}
.ws115{word-spacing:-0.597756px;}
.ws182{word-spacing:-0.537980px;}
.ws3a{word-spacing:-0.478205px;}
.ws8d{word-spacing:-0.418429px;}
.ws60{word-spacing:-0.298878px;}
.ws7b{word-spacing:-0.239102px;}
.wse5{word-spacing:-0.179327px;}
.ws78{word-spacing:-0.119551px;}
.ws12{word-spacing:-0.107597px;}
.ws2b{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws1a9{word-spacing:-0.047821px;}
.ws12c{word-spacing:-0.045430px;}
.ws118{word-spacing:-0.043039px;}
.wsf4{word-spacing:-0.041843px;}
.wsd8{word-spacing:-0.031111px;}
.wsd9{word-spacing:-0.027222px;}
.ws11f{word-spacing:-0.013052px;}
.ws0{word-spacing:0.000000px;}
.ws13e{word-spacing:0.028402px;}
.ws13a{word-spacing:0.028750px;}
.ws14f{word-spacing:0.028761px;}
.ws36{word-spacing:0.029350px;}
.ws1d{word-spacing:0.059776px;}
.ws137{word-spacing:0.179327px;}
.ws42{word-spacing:0.298878px;}
.wsf2{word-spacing:0.358654px;}
.ws11a{word-spacing:0.418429px;}
.ws6e{word-spacing:0.478205px;}
.ws53{word-spacing:0.537980px;}
.ws7d{word-spacing:0.657532px;}
.ws10b{word-spacing:0.717307px;}
.ws2f{word-spacing:0.777083px;}
.ws41{word-spacing:0.836858px;}
.ws15e{word-spacing:1.075961px;}
.wse8{word-spacing:1.104798px;}
.wsea{word-spacing:1.135736px;}
.wse2{word-spacing:1.195512px;}
.ws1af{word-spacing:1.195515px;}
.ws1ad{word-spacing:1.206043px;}
.ws112{word-spacing:1.255288px;}
.ws6c{word-spacing:1.315063px;}
.ws19{word-spacing:1.344960px;}
.ws156{word-spacing:1.351330px;}
.ws158{word-spacing:1.358270px;}
.ws15a{word-spacing:1.374839px;}
.ws187{word-spacing:1.374869px;}
.ws189{word-spacing:1.386797px;}
.wse6{word-spacing:1.434614px;}
.wse{word-spacing:1.452557px;}
.ws3f{word-spacing:1.494390px;}
.ws17b{word-spacing:1.554166px;}
.ws1cc{word-spacing:1.625900px;}
.ws1ca{word-spacing:1.646005px;}
.ws180{word-spacing:1.733492px;}
.ws50{word-spacing:1.898773px;}
.ws52{word-spacing:1.912819px;}
.ws103{word-spacing:1.926880px;}
.ws86{word-spacing:1.972595px;}
.ws79{word-spacing:2.032370px;}
.ws90{word-spacing:2.058931px;}
.ws6b{word-spacing:2.092146px;}
.ws18f{word-spacing:2.104106px;}
.ws4f{word-spacing:2.151922px;}
.ws11{word-spacing:2.151936px;}
.ws197{word-spacing:2.199748px;}
.ws121{word-spacing:2.211697px;}
.ws195{word-spacing:2.221361px;}
.ws87{word-spacing:2.271473px;}
.ws17f{word-spacing:2.331248px;}
.ws15d{word-spacing:2.391024px;}
.ws19f{word-spacing:2.436543px;}
.ws1a0{word-spacing:2.438851px;}
.wsfe{word-spacing:2.450800px;}
.ws5d{word-spacing:2.510575px;}
.wsf5{word-spacing:2.570351px;}
.ws2d{word-spacing:2.630126px;}
.ws129{word-spacing:2.689902px;}
.ws5b{word-spacing:2.809453px;}
.ws25{word-spacing:2.869229px;}
.ws138{word-spacing:2.929004px;}
.ws2c{word-spacing:3.048556px;}
.ws166{word-spacing:3.108331px;}
.ws12b{word-spacing:3.134640px;}
.ws6d{word-spacing:3.168107px;}
.ws68{word-spacing:3.287658px;}
.wsb9{word-spacing:3.347434px;}
.ws70{word-spacing:3.407209px;}
.ws10d{word-spacing:3.466985px;}
.ws7a{word-spacing:3.526760px;}
.ws82{word-spacing:3.586536px;}
.ws1c7{word-spacing:3.630529px;}
.ws1c9{word-spacing:3.634366px;}
.ws81{word-spacing:3.646312px;}
.ws175{word-spacing:3.706087px;}
.ws10f{word-spacing:3.765863px;}
.ws12d{word-spacing:3.816084px;}
.ws122{word-spacing:3.825638px;}
.wsb7{word-spacing:3.885414px;}
.ws14c{word-spacing:3.945190px;}
.ws5a{word-spacing:4.004965px;}
.ws9e{word-spacing:4.124516px;}
.ws9c{word-spacing:4.128317px;}
.ws1c2{word-spacing:4.194043px;}
.ws1c4{word-spacing:4.208213px;}
.ws8b{word-spacing:4.244068px;}
.ws7{word-spacing:4.250074px;}
.ws12f{word-spacing:4.270380px;}
.wsb4{word-spacing:4.423394px;}
.ws43{word-spacing:4.483170px;}
.ws33{word-spacing:4.495136px;}
.ws126{word-spacing:4.542946px;}
.ws123{word-spacing:4.542957px;}
.ws17a{word-spacing:4.662497px;}
.ws8e{word-spacing:4.722272px;}
.ws18c{word-spacing:4.722488px;}
.ws18e{word-spacing:4.734239px;}
.ws1c1{word-spacing:4.779277px;}
.ws1b0{word-spacing:4.780046px;}
.ws1b4{word-spacing:4.780453px;}
.ws1bb{word-spacing:4.780892px;}
.ws18a{word-spacing:4.781086px;}
.ws1c5{word-spacing:4.781759px;}
.ws19e{word-spacing:4.781872px;}
.ws63{word-spacing:4.782048px;}
.ws34{word-spacing:4.782060px;}
.ws69{word-spacing:4.841824px;}
.ws194{word-spacing:4.877701px;}
.ws191{word-spacing:4.901296px;}
.ws10c{word-spacing:4.901599px;}
.ws193{word-spacing:4.925522px;}
.wscb{word-spacing:4.961375px;}
.ws65{word-spacing:5.021150px;}
.ws18{word-spacing:5.057050px;}
.ws17{word-spacing:5.110848px;}
.ws170{word-spacing:5.200477px;}
.ws1f{word-spacing:5.260253px;}
.ws174{word-spacing:5.320028px;}
.wsbd{word-spacing:5.379804px;}
.ws75{word-spacing:5.439580px;}
.ws38{word-spacing:5.499355px;}
.ws124{word-spacing:5.559131px;}
.ws6f{word-spacing:5.618906px;}
.ws47{word-spacing:5.678682px;}
.ws16e{word-spacing:5.738458px;}
.wsc5{word-spacing:5.798233px;}
.wsa7{word-spacing:5.858009px;}
.wsa5{word-spacing:5.868666px;}
.ws141{word-spacing:5.910702px;}
.ws85{word-spacing:5.930585px;}
.ws84{word-spacing:5.947165px;}
.ws101{word-spacing:5.955358px;}
.ws17e{word-spacing:5.961520px;}
.wsb{word-spacing:5.971622px;}
.ws3{word-spacing:5.977560px;}
.wsd5{word-spacing:5.982334px;}
.wse1{word-spacing:6.037336px;}
.wsdf{word-spacing:6.056134px;}
.ws40{word-spacing:6.097111px;}
.ws66{word-spacing:6.216662px;}
.ws130{word-spacing:6.336214px;}
.ws4b{word-spacing:6.395989px;}
.ws14d{word-spacing:6.455765px;}
.ws110{word-spacing:6.515540px;}
.ws30{word-spacing:6.575316px;}
.ws2{word-spacing:6.575340px;}
.ws28{word-spacing:6.635092px;}
.ws143{word-spacing:6.694867px;}
.ws1a{word-spacing:6.724800px;}
.ws32{word-spacing:6.754643px;}
.wsca{word-spacing:6.933970px;}
.wsd1{word-spacing:6.993745px;}
.ws64{word-spacing:7.053521px;}
.ws113{word-spacing:7.075579px;}
.wseb{word-spacing:7.113296px;}
.wsc9{word-spacing:7.173072px;}
.wsc7{word-spacing:7.232848px;}
.wsc2{word-spacing:7.471950px;}
.ws14{word-spacing:7.585574px;}
.ws109{word-spacing:7.591501px;}
.ws2e{word-spacing:7.651277px;}
.ws39{word-spacing:7.711052px;}
.ws1b8{word-spacing:7.819622px;}
.ws29{word-spacing:7.830604px;}
.ws1ba{word-spacing:7.842578px;}
.ws88{word-spacing:7.890379px;}
.ws147{word-spacing:7.904134px;}
.ws80{word-spacing:7.950155px;}
.ws3c{word-spacing:8.069706px;}
.wsa2{word-spacing:8.129482px;}
.ws10e{word-spacing:8.249033px;}
.ws77{word-spacing:8.308808px;}
.ws1a4{word-spacing:8.353963px;}
.wsf7{word-spacing:8.368584px;}
.ws1a6{word-spacing:8.368605px;}
.ws22{word-spacing:8.428360px;}
.ws58{word-spacing:8.488135px;}
.ws172{word-spacing:8.711750px;}
.ws4a{word-spacing:8.727238px;}
.ws15b{word-spacing:8.787013px;}
.wsb5{word-spacing:8.846789px;}
.ws171{word-spacing:8.966340px;}
.wsfc{word-spacing:9.026116px;}
.ws89{word-spacing:9.085891px;}
.ws154{word-spacing:9.145667px;}
.ws127{word-spacing:9.205442px;}
.ws114{word-spacing:9.265218px;}
.ws13{word-spacing:9.307123px;}
.ws26{word-spacing:9.324994px;}
.ws76{word-spacing:9.444545px;}
.ws23{word-spacing:9.504320px;}
.ws45{word-spacing:9.564096px;}
.ws163{word-spacing:9.623872px;}
.ws165{word-spacing:9.683647px;}
.ws62{word-spacing:9.743423px;}
.ws96{word-spacing:9.786900px;}
.ws46{word-spacing:9.803198px;}
.ws8c{word-spacing:9.862974px;}
.ws57{word-spacing:9.922750px;}
.ws164{word-spacing:9.982525px;}
.ws1a7{word-spacing:9.994505px;}
.wsee{word-spacing:10.042301px;}
.ws168{word-spacing:10.102076px;}
.ws15c{word-spacing:10.221628px;}
.ws167{word-spacing:10.341179px;}
.ws16{word-spacing:10.383091px;}
.ws4e{word-spacing:10.400954px;}
.wsda{word-spacing:10.453121px;}
.ws8f{word-spacing:10.460730px;}
.wsd6{word-spacing:10.580281px;}
.ws6{word-spacing:10.598285px;}
.ws140{word-spacing:10.640057px;}
.ws5{word-spacing:10.652083px;}
.ws24{word-spacing:10.699832px;}
.ws149{word-spacing:10.759608px;}
.ws9f{word-spacing:10.823380px;}
.ws16a{word-spacing:10.938935px;}
.wsdd{word-spacing:10.982059px;}
.ws15f{word-spacing:11.058486px;}
.ws186{word-spacing:11.118262px;}
.wsdb{word-spacing:11.131573px;}
.ws1b1{word-spacing:11.322309px;}
.ws1b3{word-spacing:11.333482px;}
.ws27{word-spacing:11.357364px;}
.ws9{word-spacing:11.405261px;}
.ws49{word-spacing:11.417140px;}
.ws155{word-spacing:11.476915px;}
.ws1a1{word-spacing:11.563963px;}
.ws1a3{word-spacing:11.572585px;}
.ws184{word-spacing:11.596466px;}
.ws59{word-spacing:11.656242px;}
.ws148{word-spacing:11.775793px;}
.ws131{word-spacing:11.835569px;}
.wscd{word-spacing:11.848556px;}
.wscf{word-spacing:11.851837px;}
.ws3b{word-spacing:11.895344px;}
.ws83{word-spacing:11.955120px;}
.wsf0{word-spacing:12.074671px;}
.ws14a{word-spacing:12.194222px;}
.ws1e{word-spacing:12.373549px;}
.wsaa{word-spacing:12.404683px;}
.wsf8{word-spacing:12.433325px;}
.ws19b{word-spacing:12.460355px;}
.ws19d{word-spacing:12.481177px;}
.wsc{word-spacing:12.535027px;}
.ws9b{word-spacing:12.552876px;}
.wsfb{word-spacing:12.612652px;}
.wsff{word-spacing:12.672427px;}
.ws1c0{word-spacing:12.720280px;}
.ws160{word-spacing:12.732203px;}
.ws1be{word-spacing:12.741957px;}
.wsfd{word-spacing:12.791978px;}
.ws4c{word-spacing:12.851754px;}
.ws3e{word-spacing:12.911530px;}
.wsa{word-spacing:13.019213px;}
.ws31{word-spacing:13.090856px;}
.ws1ae{word-spacing:13.102844px;}
.ws71{word-spacing:13.210408px;}
.ws7f{word-spacing:13.270183px;}
.ws188{word-spacing:13.294127px;}
.wsf9{word-spacing:13.329959px;}
.ws183{word-spacing:13.509286px;}
.ws1cb{word-spacing:13.581050px;}
.ws54{word-spacing:13.688612px;}
.ws12a{word-spacing:13.867939px;}
.wsed{word-spacing:13.927715px;}
.ws190{word-spacing:13.963615px;}
.ws44{word-spacing:13.987490px;}
.ws4d{word-spacing:14.047266px;}
.wsbc{word-spacing:14.107042px;}
.ws15{word-spacing:14.148979px;}
.ws196{word-spacing:14.154898px;}
.ws74{word-spacing:14.166817px;}
.ws61{word-spacing:14.286368px;}
.ws153{word-spacing:14.346144px;}
.ws1{word-spacing:14.346180px;}
.ws67{word-spacing:14.405920px;}
.ws176{word-spacing:14.465695px;}
.ws181{word-spacing:14.525471px;}
.ws11e{word-spacing:14.585246px;}
.ws8a{word-spacing:14.645022px;}
.ws72{word-spacing:14.764573px;}
.ws1b5{word-spacing:14.847576px;}
.ws1b7{word-spacing:14.872207px;}
.ws5c{word-spacing:15.003676px;}
.ws161{word-spacing:15.183002px;}
.ws7c{word-spacing:15.242778px;}
.wsf1{word-spacing:15.251177px;}
.ws19a{word-spacing:15.398233px;}
.ws198{word-spacing:15.405016px;}
.ws11d{word-spacing:15.422105px;}
.wsd7{word-spacing:15.541656px;}
.ws1c8{word-spacing:15.541695px;}
.ws142{word-spacing:15.780758px;}
.wsf6{word-spacing:15.840534px;}
.wsd{word-spacing:15.870528px;}
.ws99{word-spacing:15.900310px;}
.wse9{word-spacing:15.988134px;}
.wse3{word-spacing:16.079636px;}
.ws1c3{word-spacing:16.115542px;}
.ws128{word-spacing:16.139412px;}
.ws169{word-spacing:16.318739px;}
.ws1ac{word-spacing:16.402466px;}
.ws1aa{word-spacing:16.416829px;}
.ws11b{word-spacing:16.498066px;}
.wsf{word-spacing:16.623706px;}
.ws18d{word-spacing:16.641569px;}
.ws18b{word-spacing:16.689389px;}
.ws159{word-spacing:16.719533px;}
.ws192{word-spacing:16.785031px;}
.ws1bc{word-spacing:16.796263px;}
.ws51{word-spacing:16.796944px;}
.ws102{word-spacing:16.807276px;}
.ws125{word-spacing:17.036046px;}
.ws10{word-spacing:17.269286px;}
.ws162{word-spacing:17.275148px;}
.wse4{word-spacing:17.385295px;}
.wsd3{word-spacing:17.394700px;}
.wse7{word-spacing:17.454475px;}
.ws73{word-spacing:17.693578px;}
.ws1b{word-spacing:17.932680px;}
.wsaf{word-spacing:18.026683px;}
.ws98{word-spacing:18.052231px;}
.wsba{word-spacing:18.112007px;}
.wsa8{word-spacing:18.171782px;}
.wsf3{word-spacing:18.185177px;}
.ws11c{word-spacing:18.351109px;}
.wsb2{word-spacing:18.410885px;}
.ws108{word-spacing:18.421033px;}
.ws157{word-spacing:18.634783px;}
.wsb8{word-spacing:18.716456px;}
.ws14b{word-spacing:18.889090px;}
.ws9d{word-spacing:19.008641px;}
.ws111{word-spacing:19.068416px;}
.ws16b{word-spacing:19.128192px;}
.ws20{word-spacing:19.427070px;}
.ws179{word-spacing:19.546621px;}
.ws48{word-spacing:19.606397px;}
.wsbe{word-spacing:19.666172px;}
.ws1b9{word-spacing:19.749908px;}
.wscc{word-spacing:19.845499px;}
.wsc3{word-spacing:20.204153px;}
.ws1a5{word-spacing:20.275934px;}
.ws3d{word-spacing:20.383480px;}
.ws56{word-spacing:20.562806px;}
.ws21{word-spacing:20.622582px;}
.wsc6{word-spacing:20.658742px;}
.wsde{word-spacing:20.742133px;}
.wsa4{word-spacing:20.801909px;}
.ws104{word-spacing:20.852278px;}
.ws17d{word-spacing:20.860099px;}
.ws5f{word-spacing:20.861684px;}
.wse0{word-spacing:20.921460px;}
.wsc0{word-spacing:21.160562px;}
.ws185{word-spacing:21.220338px;}
.wsbf{word-spacing:21.299705px;}
.ws95{word-spacing:21.698543px;}
.wsc4{word-spacing:21.877870px;}
.ws1a8{word-spacing:21.901835px;}
.ws100{word-spacing:22.058278px;}
.wsc8{word-spacing:22.062127px;}
.wsa6{word-spacing:22.385705px;}
.ws10a{word-spacing:22.475626px;}
.wsa3{word-spacing:22.986389px;}
.ws1b2{word-spacing:23.240812px;}
.ws152{word-spacing:23.312484px;}
.wsae{word-spacing:23.368840px;}
.wsac{word-spacing:23.370824px;}
.wsad{word-spacing:23.372260px;}
.ws8{word-spacing:23.456102px;}
.ws1a2{word-spacing:23.479915px;}
.ws173{word-spacing:23.611362px;}
.wsb6{word-spacing:23.730913px;}
.ws19c{word-spacing:24.388506px;}
.wsd4{word-spacing:24.425774px;}
.ws17c{word-spacing:24.443574px;}
.ws1bf{word-spacing:24.675430px;}
.ws97{word-spacing:24.687323px;}
.wsef{word-spacing:24.947177px;}
.wsce{word-spacing:26.741630px;}
.wsd0{word-spacing:26.779469px;}
.ws1b6{word-spacing:26.779536px;}
.ws199{word-spacing:27.305563px;}
.wsab{word-spacing:27.317449px;}
.ws146{word-spacing:27.389024px;}
.ws139{word-spacing:28.175090px;}
.ws14e{word-spacing:28.185526px;}
.ws1ab{word-spacing:28.309795px;}
.ws1bd{word-spacing:28.692360px;}
.wsec{word-spacing:28.811839px;}
.ws177{word-spacing:29.290044px;}
.ws151{word-spacing:29.768558px;}
.ws120{word-spacing:29.828024px;}
.ws106{word-spacing:30.388808px;}
.ws9a{word-spacing:30.394309px;}
.ws35{word-spacing:30.788343px;}
.ws136{word-spacing:32.220682px;}
.ws132{word-spacing:32.222122px;}
.ws135{word-spacing:32.224042px;}
.ws134{word-spacing:32.225962px;}
.ws133{word-spacing:32.226922px;}
.wsd2{word-spacing:32.278824px;}
.wsb0{word-spacing:32.936356px;}
.wsa9{word-spacing:33.055907px;}
.wsb3{word-spacing:33.295009px;}
.wsbb{word-spacing:34.311194px;}
.wsb1{word-spacing:34.913705px;}
.wsc1{word-spacing:36.044687px;}
.ws145{word-spacing:39.076682px;}
.ws105{word-spacing:40.415162px;}
.ws13c{word-spacing:45.343127px;}
.ws119{word-spacing:66.967968px;}
.wsdc{word-spacing:69.145124px;}
.ws16c{word-spacing:81.697644px;}
.ws7e{word-spacing:84.860024px;}
.ws92{word-spacing:121.622600px;}
.ws13f{word-spacing:130.571776px;}
.ws12e{word-spacing:131.745753px;}
.ws13b{word-spacing:131.968970px;}
.ws91{word-spacing:138.669292px;}
.ws16d{word-spacing:156.754436px;}
.ws150{word-spacing:158.421404px;}
.ws107{word-spacing:287.677228px;}
.ws116{word-spacing:423.284041px;}
.wsa0{word-spacing:553.859705px;}
.wsa1{word-spacing:608.383520px;}
._0{margin-left:-1452.062400px;}
._1{margin-left:-13.198486px;}
._1d{margin-left:-8.069706px;}
._1c{margin-left:-6.635092px;}
._5{margin-left:-5.361919px;}
._3{margin-left:-3.586545px;}
._7{margin-left:-2.582341px;}
._2{margin-left:-1.434618px;}
._12{width:1.050175px;}
._8{width:2.988780px;}
._1b{width:4.056015px;}
._6{width:13.879987px;}
._1a{width:15.362333px;}
._3e{width:16.809216px;}
._10{width:18.838430px;}
._17{width:20.706338px;}
._18{width:21.997421px;}
._4{width:23.025715px;}
._9{width:26.301268px;}
._13{width:29.887800px;}
._11{width:30.975751px;}
._20{width:32.278828px;}
._19{width:39.479890px;}
._3f{width:41.477197px;}
._43{width:60.282706px;}
._4a{width:62.885747px;}
._f{width:64.550366px;}
._e{width:66.938158px;}
._27{width:68.144355px;}
._2d{width:70.415559px;}
._41{width:71.704876px;}
._48{width:73.314467px;}
._c{width:75.226410px;}
._31{width:76.849687px;}
._4b{width:79.419883px;}
._46{width:80.907883px;}
._40{width:83.105002px;}
._49{width:84.604155px;}
._47{width:86.336988px;}
._b{width:87.533145px;}
._3a{width:89.450823px;}
._42{width:92.692623px;}
._16{width:94.873022px;}
._d{width:96.652082px;}
._a{width:98.209240px;}
._45{width:99.573859px;}
._29{width:100.989934px;}
._15{width:104.908677px;}
._2e{width:109.258116px;}
._44{width:110.586894px;}
._36{width:112.937911px;}
._14{width:115.717960px;}
._2b{width:119.116058px;}
._24{width:120.433790px;}
._1f{width:122.956130px;}
._34{width:127.293655px;}
._3b{width:128.410266px;}
._35{width:129.792281px;}
._3c{width:132.336337px;}
._39{width:134.092011px;}
._1e{width:142.328452px;}
._2c{width:143.875448px;}
._37{width:155.914284px;}
._2f{width:161.456692px;}
._2a{width:164.046177px;}
._3d{width:166.197191px;}
._32{width:167.256015px;}
._28{width:179.673675px;}
._38{width:201.207566px;}
._25{width:202.388460px;}
._23{width:219.515682px;}
._22{width:225.103245px;}
._30{width:245.501396px;}
._33{width:288.705678px;}
._26{width:297.790831px;}
._21{width:308.603069px;}
.fc5{color:rgb(176,0,64);}
.fc4{color:transparent;}
.fc2{color:rgb(1,2,2);}
.fc1{color:rgb(95,95,96);}
.fc6{color:rgb(102,102,102);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(81,81,81);}
.fs1e{font-size:19.131616px;}
.fs1c{font-size:19.365938px;}
.fs15{font-size:19.444106px;}
.fsb{font-size:19.770022px;}
.fs12{font-size:23.333083px;}
.fs23{font-size:24.207422px;}
.fs21{font-size:24.216389px;}
.fse{font-size:26.217395px;}
.fs14{font-size:27.221670px;}
.fs1d{font-size:28.697425px;}
.fs1b{font-size:29.048907px;}
.fs1f{font-size:29.059666px;}
.fsa{font-size:29.655034px;}
.fs1{font-size:30.378000px;}
.fsf{font-size:30.661134px;}
.fs11{font-size:31.110648px;}
.fsc{font-size:31.523040px;}
.fs19{font-size:32.279040px;}
.fs24{font-size:34.436895px;}
.fs22{font-size:34.858673px;}
.fs20{font-size:34.871585px;}
.fsd{font-size:34.956380px;}
.fs16{font-size:34.999625px;}
.fs25{font-size:35.865600px;}
.fs10{font-size:38.326321px;}
.fs13{font-size:38.888212px;}
.fs9{font-size:41.842800px;}
.fs18{font-size:43.038540px;}
.fs1a{font-size:45.429570px;}
.fs8{font-size:47.820600px;}
.fs0{font-size:48.000000px;}
.fs17{font-size:52.184230px;}
.fs7{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs5{font-size:65.753400px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:143.461800px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y158{bottom:0.525437px;}
.yd0{bottom:3.859627px;}
.ye4{bottom:4.876098px;}
.y11a{bottom:5.314506px;}
.y1c5{bottom:5.848848px;}
.y1bb{bottom:5.920484px;}
.y1e6{bottom:5.922677px;}
.yc9{bottom:5.947335px;}
.y43{bottom:6.044019px;}
.ya5{bottom:6.370281px;}
.y1f4{bottom:10.816659px;}
.y1c6{bottom:11.569157px;}
.y1e7{bottom:11.715192px;}
.y44{bottom:11.955210px;}
.y11b{bottom:14.623187px;}
.ya4{bottom:17.288417px;}
.y21b{bottom:19.000314px;}
.y1bc{bottom:20.458206px;}
.y1f0{bottom:20.911142px;}
.y1e8{bottom:22.653432px;}
.y1c7{bottom:22.793401px;}
.y1c1{bottom:23.321681px;}
.yac{bottom:23.732580px;}
.y1ce{bottom:23.875470px;}
.y119{bottom:25.201455px;}
.y157{bottom:25.910094px;}
.y45{bottom:26.838330px;}
.y128{bottom:27.015570px;}
.y4b{bottom:28.419638px;}
.yde{bottom:28.907470px;}
.ye3{bottom:28.949787px;}
.ycd{bottom:32.357272px;}
.y123{bottom:33.363507px;}
.y21c{bottom:33.579234px;}
.y1e9{bottom:33.591672px;}
.y1c8{bottom:34.017645px;}
.y11d{bottom:35.761182px;}
.y1bd{bottom:37.952910px;}
.ydd{bottom:38.009519px;}
.ye2{bottom:38.052798px;}
.y46{bottom:41.721450px;}
.ya6{bottom:41.882209px;}
.ye1{bottom:42.736545px;}
.yaf{bottom:43.444742px;}
.y1ea{bottom:44.529912px;}
.y117{bottom:45.034732px;}
.y1c9{bottom:45.241889px;}
.y21d{bottom:48.158154px;}
.ye0{bottom:51.839556px;}
.yab{bottom:52.408080px;}
.y118{bottom:54.289741px;}
.y127{bottom:54.691793px;}
.yad{bottom:55.255620px;}
.y1be{bottom:55.447614px;}
.y1eb{bottom:55.468152px;}
.y1ca{bottom:56.466134px;}
.y47{bottom:56.604570px;}
.ye6{bottom:59.898101px;}
.ycc{bottom:60.103825px;}
.ydf{bottom:60.941606px;}
.ya7{bottom:60.987082px;}
.y122{bottom:61.039730px;}
.y12d{bottom:61.385183px;}
.y21e{bottom:62.737074px;}
.y116{bottom:64.868009px;}
.y1ec{bottom:66.406392px;}
.yca{bottom:66.671770px;}
.y1cb{bottom:67.690378px;}
.y48{bottom:71.487690px;}
.y1bf{bottom:72.942318px;}
.y12c{bottom:73.893692px;}
.y1f6{bottom:76.255068px;}
.y21f{bottom:77.315994px;}
.y1ed{bottom:77.344632px;}
.y1cc{bottom:78.914622px;}
.y4d{bottom:79.799578px;}
.ya8{bottom:80.091955px;}
.y11e{bottom:82.467554px;}
.yce{bottom:83.867945px;}
.ydc{bottom:84.375728px;}
.y224{bottom:85.864696px;}
.y49{bottom:86.370810px;}
.yae{bottom:86.778660px;}
.y221{bottom:86.916354px;}
.y1f1{bottom:86.948548px;}
.y12b{bottom:87.549807px;}
.y1cf{bottom:88.183254px;}
.y1ee{bottom:88.282872px;}
.y1f5{bottom:88.698666px;}
.y1c2{bottom:89.263310px;}
.y1cd{bottom:90.138867px;}
.y4c{bottom:90.381699px;}
.y1c0{bottom:90.437022px;}
.y220{bottom:91.894914px;}
.ydb{bottom:93.477777px;}
.y12a{bottom:96.513035px;}
.y114{bottom:96.853609px;}
.ya9{bottom:99.196828px;}
.y1ef{bottom:99.221112px;}
.y124{bottom:99.908035px;}
.ye5{bottom:100.791924px;}
.y4a{bottom:101.253930px;}
.y11f{bottom:101.260570px;}
.yda{bottom:102.580788px;}
.y121{bottom:105.729986px;}
.y115{bottom:106.108618px;}
.y5{bottom:108.365372px;}
.ycf{bottom:108.579427px;}
.y129{bottom:109.021545px;}
.y126{bottom:112.077923px;}
.y41{bottom:113.332500px;}
.y113{bottom:116.686886px;}
.y4{bottom:117.479531px;}
.yaa{bottom:118.301700px;}
.y27f{bottom:118.479000px;}
.y12e{bottom:119.454411px;}
.y12f{bottom:122.080436px;}
.y3{bottom:126.593691px;}
.y40{bottom:126.783000px;}
.y11c{bottom:127.245637px;}
.y72{bottom:131.265000px;}
.yd5{bottom:131.266500px;}
.y27e{bottom:131.929500px;}
.y120{bottom:133.407185px;}
.ycb{bottom:133.525557px;}
.y2{bottom:135.707850px;}
.y111{bottom:136.520163px;}
.yd1{bottom:137.649437px;}
.y125{bottom:139.755122px;}
.yd9{bottom:144.815297px;}
.y27d{bottom:145.378500px;}
.y112{bottom:145.774196px;}
.y6{bottom:146.054700px;}
.ya2{bottom:149.197500px;}
.y71{bottom:149.199000px;}
.yd8{bottom:153.917347px;}
.y110{bottom:156.352464px;}
.y3f{bottom:157.039500px;}
.y27c{bottom:158.827500px;}
.y70{bottom:167.131500px;}
.y1b9{bottom:169.966500px;}
.y10e{bottom:171.721500px;}
.y27b{bottom:172.278000px;}
.y130{bottom:172.545802px;}
.y3e{bottom:174.972000px;}
.yd7{bottom:177.246638px;}
.y1b8{bottom:184.911000px;}
.y6f{bottom:185.064000px;}
.y27a{bottom:185.727000px;}
.y3d{bottom:193.179000px;}
.y10d{bottom:199.044000px;}
.y279{bottom:199.177500px;}
.y1b7{bottom:202.690500px;}
.y6e{bottom:202.996500px;}
.y219{bottom:207.540000px;}
.y3c{bottom:211.113000px;}
.y278{bottom:212.626500px;}
.y10c{bottom:216.978000px;}
.y1b6{bottom:220.623000px;}
.y6d{bottom:220.929000px;}
.y277{bottom:226.075500px;}
.y155{bottom:226.333500px;}
.y3b{bottom:229.045500px;}
.y218{bottom:234.577500px;}
.y10b{bottom:234.910500px;}
.y1b5{bottom:238.555500px;}
.ya1{bottom:238.861500px;}
.yd4{bottom:238.863000px;}
.y276{bottom:239.526000px;}
.y183{bottom:243.487500px;}
.y6c{bottom:244.239000px;}
.y3a{bottom:246.978000px;}
.y217{bottom:252.510000px;}
.y10a{bottom:252.843000px;}
.y275{bottom:252.975000px;}
.y154{bottom:256.044000px;}
.y1b4{bottom:256.489500px;}
.ya0{bottom:256.795500px;}
.y6b{bottom:262.171500px;}
.y39{bottom:264.910500px;}
.y182{bottom:266.046000px;}
.y274{bottom:266.424000px;}
.y216{bottom:270.444000px;}
.y109{bottom:270.775500px;}
.y153{bottom:273.976500px;}
.y1b3{bottom:274.422000px;}
.y9f{bottom:274.728000px;}
.y273{bottom:279.874500px;}
.y6a{bottom:280.104000px;}
.y38{bottom:282.843000px;}
.y215{bottom:288.213000px;}
.y108{bottom:288.592500px;}
.y9{bottom:291.234300px;}
.y152{bottom:291.909000px;}
.y1b2{bottom:292.354500px;}
.y9e{bottom:292.660500px;}
.y272{bottom:293.323500px;}
.y181{bottom:293.575500px;}
.yd3{bottom:297.253500px;}
.y242{bottom:297.888000px;}
.y69{bottom:298.036500px;}
.y37{bottom:300.775500px;}
.y8{bottom:305.634300px;}
.y214{bottom:306.145500px;}
.y107{bottom:306.525000px;}
.y271{bottom:306.774000px;}
.y151{bottom:309.841500px;}
.y1b1{bottom:310.287000px;}
.y9d{bottom:310.593000px;}
.y180{bottom:311.508000px;}
.y68{bottom:315.969000px;}
.y36{bottom:318.709500px;}
.y7{bottom:320.034300px;}
.y270{bottom:320.223000px;}
.y213{bottom:324.078000px;}
.y106{bottom:324.457500px;}
.y241{bottom:326.644500px;}
.y150{bottom:327.774000px;}
.y1b0{bottom:328.219500px;}
.y9c{bottom:328.525500px;}
.y17f{bottom:329.440500px;}
.yd2{bottom:332.974500px;}
.y26f{bottom:333.672000px;}
.y67{bottom:333.901500px;}
.y35{bottom:336.642000px;}
.y212{bottom:342.010500px;}
.y105{bottom:342.390000px;}
.y240{bottom:344.578500px;}
.y14f{bottom:345.708000px;}
.y1af{bottom:346.152000px;}
.y9b{bottom:346.458000px;}
.y26e{bottom:347.122500px;}
.y17e{bottom:347.373000px;}
.y66{bottom:351.835500px;}
.yc8{bottom:354.493500px;}
.y34{bottom:354.574500px;}
.y211{bottom:359.943000px;}
.y104{bottom:360.324000px;}
.y26d{bottom:360.571500px;}
.y23f{bottom:362.511000px;}
.y14e{bottom:363.640500px;}
.y1ae{bottom:364.086000px;}
.y9a{bottom:364.392000px;}
.y17d{bottom:365.307000px;}
.y65{bottom:369.768000px;}
.y33{bottom:372.507000px;}
.y26c{bottom:374.020500px;}
.y210{bottom:377.875500px;}
.y103{bottom:378.256500px;}
.y23e{bottom:380.443500px;}
.y14d{bottom:381.573000px;}
.y1ad{bottom:382.018500px;}
.y99{bottom:382.324500px;}
.y17c{bottom:383.239500px;}
.y26b{bottom:387.471000px;}
.y64{bottom:387.700500px;}
.y32{bottom:390.439500px;}
.y20f{bottom:395.809500px;}
.y102{bottom:396.189000px;}
.y23d{bottom:398.376000px;}
.y14c{bottom:399.505500px;}
.y98{bottom:400.257000px;}
.y26a{bottom:400.920000px;}
.y17b{bottom:401.172000px;}
.y1ac{bottom:404.610000px;}
.y63{bottom:405.633000px;}
.y31{bottom:408.372000px;}
.y20e{bottom:413.742000px;}
.y101{bottom:414.121500px;}
.y269{bottom:414.369000px;}
.y23c{bottom:416.308500px;}
.y14b{bottom:417.438000px;}
.y97{bottom:418.189500px;}
.y17a{bottom:419.104500px;}
.y62{bottom:424.696500px;}
.y30{bottom:426.306000px;}
.y268{bottom:427.819500px;}
.y20d{bottom:431.674500px;}
.y100{bottom:432.054000px;}
.y23b{bottom:434.241000px;}
.y1ab{bottom:434.663400px;}
.y14a{bottom:435.370500px;}
.y96{bottom:436.122000px;}
.y179{bottom:437.037000px;}
.y267{bottom:441.268500px;}
.y61{bottom:442.629000px;}
.y2f{bottom:444.238500px;}
.y1aa{bottom:447.439950px;}
.y20c{bottom:449.607000px;}
.yff{bottom:449.986500px;}
.y23a{bottom:452.175000px;}
.y149{bottom:453.304500px;}
.y1e4{bottom:454.056000px;}
.y266{bottom:454.719000px;}
.y178{bottom:454.969500px;}
.y95{bottom:458.685000px;}
.y1a9{bottom:460.217925px;}
.y60{bottom:460.563000px;}
.y2e{bottom:462.171000px;}
.y20b{bottom:467.539500px;}
.yfe{bottom:467.920500px;}
.y265{bottom:468.168000px;}
.y239{bottom:470.107500px;}
.y148{bottom:471.237000px;}
.y1e3{bottom:471.988500px;}
.y1a8{bottom:472.994475px;}
.y177{bottom:477.528000px;}
.y5f{bottom:478.495500px;}
.y2d{bottom:480.103500px;}
.y264{bottom:481.617000px;}
.y1a7{bottom:485.771025px;}
.y94{bottom:486.237000px;}
.y238{bottom:488.040000px;}
.y147{bottom:489.169500px;}
.y1e2{bottom:489.921000px;}
.y20a{bottom:490.017000px;}
.yfd{bottom:490.443000px;}
.y263{bottom:495.067500px;}
.y5e{bottom:496.428000px;}
.y2c{bottom:498.036000px;}
.y1a6{bottom:498.549000px;}
.y93{bottom:504.169500px;}
.y237{bottom:505.972500px;}
.y176{bottom:506.831400px;}
.y262{bottom:508.516500px;}
.y1a5{bottom:511.325550px;}
.y146{bottom:512.505000px;}
.y1e1{bottom:513.025500px;}
.y5d{bottom:514.360500px;}
.y2b{bottom:515.968500px;}
.y209{bottom:517.054500px;}
.yfc{bottom:517.765500px;}
.yc7{bottom:519.912000px;}
.y261{bottom:521.965500px;}
.y92{bottom:522.102000px;}
.y236{bottom:523.905000px;}
.y1a4{bottom:524.103525px;}
.y175{bottom:525.963600px;}
.y5c{bottom:532.293000px;}
.y2a{bottom:533.902500px;}
.y208{bottom:534.987000px;}
.y260{bottom:535.416000px;}
.yfb{bottom:535.699500px;}
.y1a3{bottom:536.880075px;}
.yc6{bottom:537.844500px;}
.y174{bottom:538.067700px;}
.y91{bottom:540.036000px;}
.y235{bottom:541.837500px;}
.y1e0{bottom:542.175000px;}
.y145{bottom:542.217000px;}
.y25f{bottom:548.865000px;}
.y5b{bottom:550.225500px;}
.y207{bottom:552.919500px;}
.yfa{bottom:553.632000px;}
.yc5{bottom:555.777000px;}
.y173{bottom:556.929900px;}
.y1a2{bottom:557.075175px;}
.y90{bottom:557.968500px;}
.y29{bottom:558.192000px;}
.y234{bottom:559.771500px;}
.y1df{bottom:560.107500px;}
.y144{bottom:560.149500px;}
.y25e{bottom:562.315500px;}
.y5a{bottom:568.159500px;}
.y206{bottom:570.852000px;}
.yf9{bottom:571.564500px;}
.yc4{bottom:573.709500px;}
.y25d{bottom:575.764500px;}
.y8f{bottom:575.901000px;}
.y233{bottom:577.704000px;}
.y1de{bottom:578.041500px;}
.y143{bottom:578.082000px;}
.y172{bottom:584.760000px;}
.y1a1{bottom:585.652500px;}
.y59{bottom:586.092000px;}
.y28{bottom:588.550500px;}
.y205{bottom:588.784500px;}
.y25c{bottom:589.213500px;}
.yf8{bottom:589.497000px;}
.yc3{bottom:591.642000px;}
.y8e{bottom:593.833500px;}
.y232{bottom:595.636500px;}
.y1dd{bottom:595.974000px;}
.y142{bottom:596.014500px;}
.y25b{bottom:602.664000px;}
.y27{bottom:603.495000px;}
.y58{bottom:604.024500px;}
.y204{bottom:606.718500px;}
.y171{bottom:606.850500px;}
.yf7{bottom:607.429500px;}
.y1a0{bottom:607.926000px;}
.yc2{bottom:609.574500px;}
.y8d{bottom:611.766000px;}
.y231{bottom:613.569000px;}
.y1dc{bottom:613.906500px;}
.y141{bottom:613.947000px;}
.y25a{bottom:616.113000px;}
.y26{bottom:618.439500px;}
.y57{bottom:621.957000px;}
.y203{bottom:624.651000px;}
.y170{bottom:624.783000px;}
.yf6{bottom:625.362000px;}
.y19f{bottom:625.860000px;}
.yc1{bottom:627.508500px;}
.y259{bottom:629.562000px;}
.y8c{bottom:629.698500px;}
.y230{bottom:631.501500px;}
.y1db{bottom:631.839000px;}
.y140{bottom:631.879500px;}
.y25{bottom:633.382500px;}
.y56{bottom:639.889500px;}
.y202{bottom:642.583500px;}
.y16f{bottom:642.715500px;}
.y258{bottom:643.012500px;}
.yf5{bottom:643.296000px;}
.y19e{bottom:643.792500px;}
.yc0{bottom:645.441000px;}
.y8b{bottom:647.632500px;}
.y24{bottom:648.327000px;}
.y22f{bottom:649.521000px;}
.y1da{bottom:649.771500px;}
.y13f{bottom:649.813500px;}
.y55{bottom:658.953000px;}
.y201{bottom:660.516000px;}
.y16e{bottom:660.649500px;}
.yf4{bottom:661.228500px;}
.y19d{bottom:661.725000px;}
.y23{bottom:663.271500px;}
.ybf{bottom:663.373500px;}
.y257{bottom:664.816500px;}
.y8a{bottom:665.565000px;}
.y22e{bottom:667.455000px;}
.y1d9{bottom:667.704000px;}
.y13e{bottom:667.746000px;}
.y54{bottom:676.887000px;}
.y22{bottom:678.214500px;}
.y200{bottom:678.448500px;}
.y16d{bottom:678.582000px;}
.yf3{bottom:679.161000px;}
.y19c{bottom:679.657500px;}
.ybe{bottom:681.306000px;}
.y89{bottom:683.497500px;}
.y22d{bottom:685.387500px;}
.y1d8{bottom:685.638000px;}
.y13d{bottom:685.678500px;}
.y256{bottom:691.674000px;}
.y21{bottom:693.159000px;}
.y53{bottom:694.819500px;}
.y1ff{bottom:696.381000px;}
.y16c{bottom:696.514500px;}
.yf2{bottom:696.978000px;}
.y19b{bottom:697.590000px;}
.ybd{bottom:699.238500px;}
.y88{bottom:701.430000px;}
.y22c{bottom:703.320000px;}
.y13c{bottom:703.611000px;}
.y20{bottom:708.102000px;}
.y1d7{bottom:709.074000px;}
.y255{bottom:709.608000px;}
.y52{bottom:712.752000px;}
.y1fe{bottom:714.315000px;}
.y16b{bottom:714.447000px;}
.yf1{bottom:714.910500px;}
.y19a{bottom:715.522500px;}
.ybc{bottom:717.172500px;}
.y87{bottom:719.362500px;}
.y22b{bottom:721.252500px;}
.y13b{bottom:721.543500px;}
.y1f{bottom:723.046500px;}
.y254{bottom:727.540500px;}
.y51{bottom:730.684500px;}
.y1fd{bottom:732.247500px;}
.y16a{bottom:732.379500px;}
.yf0{bottom:732.843000px;}
.y199{bottom:733.456500px;}
.ybb{bottom:735.105000px;}
.y86{bottom:737.295000px;}
.y1e{bottom:737.991000px;}
.y1d6{bottom:738.223500px;}
.y22a{bottom:739.185000px;}
.y13a{bottom:739.476000px;}
.y253{bottom:745.473000px;}
.y50{bottom:748.617000px;}
.y1fc{bottom:750.180000px;}
.y169{bottom:750.312000px;}
.yef{bottom:750.775500px;}
.y198{bottom:751.389000px;}
.y1d{bottom:752.934000px;}
.yba{bottom:753.037500px;}
.y85{bottom:755.229000px;}
.y1d5{bottom:756.157500px;}
.y229{bottom:757.117500px;}
.y139{bottom:757.410000px;}
.y252{bottom:763.405500px;}
.y1{bottom:767.491050px;}
.y1c{bottom:767.878500px;}
.y1fb{bottom:768.112500px;}
.y168{bottom:768.246000px;}
.yee{bottom:768.708000px;}
.yb9{bottom:770.970000px;}
.y84{bottom:773.161500px;}
.y197{bottom:773.980500px;}
.y1d4{bottom:774.090000px;}
.y228{bottom:775.137000px;}
.y138{bottom:775.342500px;}
.y4f{bottom:777.229500px;}
.y251{bottom:781.338000px;}
.y1b{bottom:782.823000px;}
.yd{bottom:784.040550px;}
.y1fa{bottom:786.045000px;}
.y167{bottom:786.178500px;}
.yed{bottom:786.642000px;}
.yb8{bottom:788.902500px;}
.y83{bottom:791.094000px;}
.y1d3{bottom:792.022500px;}
.y227{bottom:793.071000px;}
.y137{bottom:793.275000px;}
.y4e{bottom:795.162000px;}
.y1a{bottom:797.766000px;}
.y250{bottom:799.270500px;}
.y196{bottom:801.715500px;}
.y1f9{bottom:803.977500px;}
.yec{bottom:804.574500px;}
.y42{bottom:808.177500px;}
.y166{bottom:808.737000px;}
.y82{bottom:809.026500px;}
.y1d2{bottom:809.955000px;}
.y136{bottom:811.207500px;}
.yb7{bottom:811.428000px;}
.y19{bottom:812.710500px;}
.y24f{bottom:817.204500px;}
.y195{bottom:819.648000px;}
.yeb{bottom:822.507000px;}
.y81{bottom:826.959000px;}
.y226{bottom:827.401500px;}
.y18{bottom:827.655000px;}
.y135{bottom:829.140000px;}
.yb6{bottom:833.953500px;}
.y24e{bottom:835.137000px;}
.y165{bottom:836.265000px;}
.y1f8{bottom:836.332500px;}
.y194{bottom:837.582000px;}
.yea{bottom:840.324000px;}
.y17{bottom:842.598000px;}
.y1d1{bottom:844.410000px;}
.y80{bottom:844.893000px;}
.y134{bottom:847.272000px;}
.y225{bottom:852.957000px;}
.y24d{bottom:853.069500px;}
.y164{bottom:854.199000px;}
.y193{bottom:855.514500px;}
.y16{bottom:857.542500px;}
.ye9{bottom:858.256500px;}
.yb5{bottom:861.286500px;}
.y1f7{bottom:861.886500px;}
.y7f{bottom:862.825500px;}
.y133{bottom:865.204500px;}
.y223{bottom:868.348500px;}
.y1d0{bottom:869.964000px;}
.y24c{bottom:871.002000px;}
.y163{bottom:872.131500px;}
.y15{bottom:872.487000px;}
.y192{bottom:873.447000px;}
.ye8{bottom:876.189000px;}
.y1f3{bottom:877.279500px;}
.yb4{bottom:879.219000px;}
.y7e{bottom:880.758000px;}
.y132{bottom:883.137000px;}
.y1c4{bottom:885.357000px;}
.y14{bottom:887.430000px;}
.y24b{bottom:888.934500px;}
.y162{bottom:890.064000px;}
.y191{bottom:891.379500px;}
.yb3{bottom:897.153000px;}
.y13{bottom:902.374500px;}
.y7d{bottom:903.319500px;}
.y24a{bottom:906.867000px;}
.y161{bottom:907.996500px;}
.y190{bottom:909.312000px;}
.ye7{bottom:913.302000px;}
.yb2{bottom:915.085500px;}
.y131{bottom:922.020000px;}
.y249{bottom:924.801000px;}
.y7c{bottom:925.882500px;}
.y160{bottom:925.929000px;}
.y18f{bottom:927.244500px;}
.yb1{bottom:933.018000px;}
.yd6{bottom:934.821000px;}
.y10f{bottom:939.288000px;}
.y248{bottom:942.733500px;}
.y15f{bottom:943.861500px;}
.y18e{bottom:945.178500px;}
.yc{bottom:948.791850px;}
.y7b{bottom:953.434500px;}
.y12{bottom:955.171500px;}
.y247{bottom:960.666000px;}
.y15e{bottom:961.795500px;}
.y18d{bottom:963.111000px;}
.yb0{bottom:965.898000px;}
.y7a{bottom:971.367000px;}
.y11{bottom:973.663500px;}
.y246{bottom:978.598500px;}
.y15d{bottom:979.728000px;}
.y18c{bottom:981.043500px;}
.ya3{bottom:987.417000px;}
.y79{bottom:989.299500px;}
.y222{bottom:991.423500px;}
.yb{bottom:991.991850px;}
.y10{bottom:992.379000px;}
.y245{bottom:996.531000px;}
.y15c{bottom:997.660500px;}
.y1f2{bottom:1005.030000px;}
.y21a{bottom:1006.816500px;}
.y78{bottom:1007.233500px;}
.y1c3{bottom:1008.432000px;}
.y15b{bottom:1015.593000px;}
.y18b{bottom:1016.781075px;}
.y244{bottom:1018.978500px;}
.y1e5{bottom:1020.423000px;}
.y1ba{bottom:1023.823500px;}
.y77{bottom:1025.166000px;}
.y18a{bottom:1029.559050px;}
.y15a{bottom:1033.525500px;}
.ya{bottom:1037.031000px;}
.yf{bottom:1039.452000px;}
.y189{bottom:1042.335600px;}
.y76{bottom:1045.836000px;}
.y188{bottom:1055.112150px;}
.y159{bottom:1062.502500px;}
.y75{bottom:1063.768500px;}
.y187{bottom:1067.890125px;}
.y186{bottom:1080.666675px;}
.ye{bottom:1081.296000px;}
.y74{bottom:1081.701000px;}
.y156{bottom:1084.021500px;}
.y185{bottom:1093.444650px;}
.y243{bottom:1099.633500px;}
.y73{bottom:1099.635000px;}
.y184{bottom:1117.770000px;}
.h1d{height:18.646844px;}
.h1c{height:20.416253px;}
.h17{height:21.892050px;}
.h1a{height:22.213002px;}
.h1f{height:23.247409px;}
.h1e{height:23.309750px;}
.h15{height:24.958856px;}
.h18{height:25.525330px;}
.h1b{height:25.899549px;}
.h2d{height:27.348646px;}
.h2a{height:27.683608px;}
.h30{height:27.693862px;}
.he{height:28.261247px;}
.h2e{height:28.646501px;}
.h2b{height:28.997359px;}
.h13{height:29.284904px;}
.hf{height:29.602410px;}
.h24{height:31.289019px;}
.h2{height:32.413326px;}
.h34{height:32.818361px;}
.h26{height:33.027297px;}
.h32{height:33.232620px;}
.h28{height:33.570202px;}
.hc{height:34.765576px;}
.h27{height:35.389635px;}
.h33{height:35.719581px;}
.h31{height:35.732811px;}
.h21{height:36.215855px;}
.h22{height:36.737698px;}
.h25{height:36.973152px;}
.ha{height:37.336090px;}
.h9{height:37.605082px;}
.h20{height:40.643606px;}
.h10{height:41.006062px;}
.h36{height:42.946291px;}
.h35{height:42.952291px;}
.h8{height:43.456861px;}
.h7{height:47.802722px;}
.h23{height:50.734903px;}
.h1{height:51.216000px;}
.hb{height:52.109716px;}
.h11{height:52.115716px;}
.h3{height:76.824000px;}
.h2c{height:104.096829px;}
.h6{height:104.296729px;}
.h29{height:105.371792px;}
.h2f{height:108.772616px;}
.hd{height:111.001123px;}
.h12{height:129.022818px;}
.h14{height:150.675679px;}
.h4{height:153.648000px;}
.h19{height:181.402662px;}
.h16{height:185.869733px;}
.h5{height:1188.000000px;}
.h0{height:1263.000000px;}
.w5{width:269.892107px;}
.w6{width:293.024628px;}
.w8{width:345.709637px;}
.w9{width:370.124150px;}
.wb{width:370.126805px;}
.wa{width:370.130475px;}
.w7{width:377.842273px;}
.w3{width:377.847065px;}
.w4{width:377.851658px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x41{left:5.761800px;}
.x2a{left:8.877960px;}
.xe{left:9.884386px;}
.x35{left:13.192584px;}
.xd{left:14.564119px;}
.x1a{left:15.646592px;}
.x51{left:17.913654px;}
.x19{left:20.664420px;}
.x31{left:24.233341px;}
.x17{left:30.818081px;}
.x42{left:37.549913px;}
.xc{left:38.677027px;}
.x56{left:39.989307px;}
.x23{left:43.034843px;}
.x34{left:45.080598px;}
.x57{left:48.163287px;}
.x22{left:54.246402px;}
.x1{left:64.701150px;}
.x5b{left:70.659101px;}
.x8{left:73.446000px;}
.x2e{left:76.131564px;}
.x24{left:78.383327px;}
.x5c{left:79.687999px;}
.x2d{left:81.038438px;}
.x3{left:83.545500px;}
.xa{left:85.401000px;}
.x50{left:86.828752px;}
.x7{left:88.390500px;}
.x30{left:90.658873px;}
.x32{left:92.389071px;}
.x28{left:93.430651px;}
.x27{left:96.145686px;}
.x15{left:103.479000px;}
.x29{left:106.099850px;}
.x33{left:112.167000px;}
.x26{left:115.227000px;}
.x44{left:117.300000px;}
.x58{left:120.883027px;}
.x18{left:132.388559px;}
.x52{left:133.438433px;}
.x43{left:137.721000px;}
.x4a{left:144.117000px;}
.x45{left:153.920700px;}
.x46{left:160.518150px;}
.x2b{left:161.903760px;}
.x53{left:169.911000px;}
.x2c{left:174.255580px;}
.x36{left:176.601455px;}
.x21{left:182.619577px;}
.x20{left:186.231398px;}
.xf{left:188.872844px;}
.x39{left:194.311272px;}
.x1f{left:196.910066px;}
.x9{left:203.428500px;}
.x2{left:205.824450px;}
.x16{left:208.921500px;}
.x3b{left:211.569267px;}
.x47{left:214.925850px;}
.x3a{left:218.273391px;}
.x10{left:231.029997px;}
.x37{left:236.484797px;}
.x4{left:238.930500px;}
.x2f{left:240.608019px;}
.x38{left:264.054653px;}
.x48{left:269.870850px;}
.x11{left:275.655998px;}
.x59{left:293.443736px;}
.x3d{left:298.118823px;}
.x3c{left:299.617737px;}
.x6{left:323.668500px;}
.x12{left:329.882766px;}
.x3e{left:331.065640px;}
.x5{left:338.236500px;}
.x1b{left:352.169410px;}
.x3f{left:361.454740px;}
.x1c{left:371.481377px;}
.x49{left:378.684900px;}
.xb{left:467.967000px;}
.x25{left:469.192500px;}
.x54{left:471.196500px;}
.x5f{left:473.944500px;}
.x4d{left:476.367000px;}
.x4e{left:481.328475px;}
.x13{left:482.910000px;}
.x4c{left:484.892475px;}
.x60{left:495.355500px;}
.x14{left:498.000000px;}
.x4b{left:519.688500px;}
.x1e{left:521.314500px;}
.x1d{left:533.706000px;}
.x4f{left:556.734000px;}
.x5a{left:579.174000px;}
.x40{left:582.265500px;}
.x5d{left:592.264500px;}
.x55{left:594.535500px;}
.x5e{left:614.418000px;}
@media print{
.vb{vertical-align:-8.368000pt;}
.v5{vertical-align:-6.623714pt;}
.v4{vertical-align:-4.315765pt;}
.v3{vertical-align:-3.021425pt;}
.v8{vertical-align:-1.353186pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.113776pt;}
.v7{vertical-align:2.102642pt;}
.v6{vertical-align:3.785450pt;}
.v2{vertical-align:9.565848pt;}
.vc{vertical-align:11.248527pt;}
.va{vertical-align:13.497600pt;}
.vd{vertical-align:15.002667pt;}
.v1{vertical-align:19.280000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000015pt;}
.ls3{letter-spacing:0.000479pt;}
.ls25{letter-spacing:0.000533pt;}
.ls12{letter-spacing:0.001742pt;}
.ls1a{letter-spacing:0.003005pt;}
.ls24{letter-spacing:0.003733pt;}
.ls33{letter-spacing:0.006815pt;}
.ls31{letter-spacing:0.008377pt;}
.ls5{letter-spacing:0.008552pt;}
.ls39{letter-spacing:0.010060pt;}
.ls35{letter-spacing:0.010064pt;}
.ls32{letter-spacing:1.092997pt;}
.ls3a{letter-spacing:1.097267pt;}
.ls36{letter-spacing:1.097673pt;}
.ls6{letter-spacing:1.115803pt;}
.ls1d{letter-spacing:1.726291pt;}
.ls1e{letter-spacing:1.729761pt;}
.ls3d{letter-spacing:2.177630pt;}
.ls2f{letter-spacing:2.390825pt;}
.ls1{letter-spacing:2.635446pt;}
.ls30{letter-spacing:2.651993pt;}
.lse{letter-spacing:2.655207pt;}
.lsf{letter-spacing:2.655711pt;}
.ls4{letter-spacing:2.656533pt;}
.lsd{letter-spacing:2.656693pt;}
.ls3e{letter-spacing:2.657067pt;}
.ls34{letter-spacing:2.661867pt;}
.ls2a{letter-spacing:13.915145pt;}
.ls23{letter-spacing:14.277812pt;}
.ls28{letter-spacing:15.019145pt;}
.ls22{letter-spacing:15.509812pt;}
.ls3b{letter-spacing:15.525812pt;}
.ls14{letter-spacing:17.553867pt;}
.ls3c{letter-spacing:18.037812pt;}
.ls37{letter-spacing:18.491145pt;}
.ls27{letter-spacing:18.626118pt;}
.ls26{letter-spacing:19.664479pt;}
.ls29{letter-spacing:20.092785pt;}
.ls2{letter-spacing:20.219145pt;}
.ls2b{letter-spacing:20.272479pt;}
.lsb{letter-spacing:20.405867pt;}
.lsc{letter-spacing:21.696479pt;}
.ls11{letter-spacing:21.980533pt;}
.ls38{letter-spacing:22.747145pt;}
.ls9{letter-spacing:24.613867pt;}
.ls2d{letter-spacing:27.328271pt;}
.lsa{letter-spacing:27.573867pt;}
.ls2e{letter-spacing:28.183511pt;}
.ls15{letter-spacing:28.768479pt;}
.ls13{letter-spacing:29.659145pt;}
.ls8{letter-spacing:31.878586pt;}
.ls7{letter-spacing:31.883919pt;}
.ls1c{letter-spacing:64.384188pt;}
.ls17{letter-spacing:64.529916pt;}
.ls18{letter-spacing:74.491444pt;}
.ls16{letter-spacing:85.653490pt;}
.ls1b{letter-spacing:89.678350pt;}
.ls19{letter-spacing:90.275139pt;}
.ls21{letter-spacing:94.087134pt;}
.ls1f{letter-spacing:139.510273pt;}
.ls20{letter-spacing:183.141835pt;}
.ls10{letter-spacing:317.581388pt;}
.ws2a{word-spacing:-13.283467pt;}
.ws1c{word-spacing:-13.262246pt;}
.ws5e{word-spacing:-10.626800pt;}
.ws117{word-spacing:-9.564120pt;}
.ws93{word-spacing:-9.169447pt;}
.ws37{word-spacing:-7.301728pt;}
.ws13d{word-spacing:-7.065944pt;}
.ws94{word-spacing:-1.062677pt;}
.ws6a{word-spacing:-0.903276pt;}
.ws1c6{word-spacing:-0.850144pt;}
.ws144{word-spacing:-0.850142pt;}
.ws16f{word-spacing:-0.797008pt;}
.wsfa{word-spacing:-0.690740pt;}
.ws178{word-spacing:-0.637606pt;}
.ws55{word-spacing:-0.584473pt;}
.ws115{word-spacing:-0.531339pt;}
.ws182{word-spacing:-0.478205pt;}
.ws3a{word-spacing:-0.425071pt;}
.ws8d{word-spacing:-0.371937pt;}
.ws60{word-spacing:-0.265669pt;}
.ws7b{word-spacing:-0.212535pt;}
.wse5{word-spacing:-0.159402pt;}
.ws78{word-spacing:-0.106268pt;}
.ws12{word-spacing:-0.095642pt;}
.ws2b{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws1a9{word-spacing:-0.042507pt;}
.ws12c{word-spacing:-0.040382pt;}
.ws118{word-spacing:-0.038256pt;}
.wsf4{word-spacing:-0.037194pt;}
.wsd8{word-spacing:-0.027654pt;}
.wsd9{word-spacing:-0.024197pt;}
.ws11f{word-spacing:-0.011602pt;}
.ws0{word-spacing:0.000000pt;}
.ws13e{word-spacing:0.025246pt;}
.ws13a{word-spacing:0.025555pt;}
.ws14f{word-spacing:0.025565pt;}
.ws36{word-spacing:0.026089pt;}
.ws1d{word-spacing:0.053134pt;}
.ws137{word-spacing:0.159402pt;}
.ws42{word-spacing:0.265669pt;}
.wsf2{word-spacing:0.318803pt;}
.ws11a{word-spacing:0.371937pt;}
.ws6e{word-spacing:0.425071pt;}
.ws53{word-spacing:0.478205pt;}
.ws7d{word-spacing:0.584473pt;}
.ws10b{word-spacing:0.637606pt;}
.ws2f{word-spacing:0.690740pt;}
.ws41{word-spacing:0.743874pt;}
.ws15e{word-spacing:0.956410pt;}
.wse8{word-spacing:0.982043pt;}
.wsea{word-spacing:1.009543pt;}
.wse2{word-spacing:1.062677pt;}
.ws1af{word-spacing:1.062680pt;}
.ws1ad{word-spacing:1.072038pt;}
.ws112{word-spacing:1.115811pt;}
.ws6c{word-spacing:1.168945pt;}
.ws19{word-spacing:1.195520pt;}
.ws156{word-spacing:1.201182pt;}
.ws158{word-spacing:1.207351pt;}
.ws15a{word-spacing:1.222079pt;}
.ws187{word-spacing:1.222106pt;}
.ws189{word-spacing:1.232709pt;}
.wse6{word-spacing:1.275213pt;}
.wse{word-spacing:1.291162pt;}
.ws3f{word-spacing:1.328347pt;}
.ws17b{word-spacing:1.381481pt;}
.ws1cc{word-spacing:1.445245pt;}
.ws1ca{word-spacing:1.463115pt;}
.ws180{word-spacing:1.540882pt;}
.ws50{word-spacing:1.687798pt;}
.ws52{word-spacing:1.700284pt;}
.ws103{word-spacing:1.712782pt;}
.ws86{word-spacing:1.753418pt;}
.ws79{word-spacing:1.806551pt;}
.ws90{word-spacing:1.830161pt;}
.ws6b{word-spacing:1.859685pt;}
.ws18f{word-spacing:1.870317pt;}
.ws4f{word-spacing:1.912819pt;}
.ws11{word-spacing:1.912832pt;}
.ws197{word-spacing:1.955331pt;}
.ws121{word-spacing:1.965953pt;}
.ws195{word-spacing:1.974543pt;}
.ws87{word-spacing:2.019087pt;}
.ws17f{word-spacing:2.072221pt;}
.ws15d{word-spacing:2.125355pt;}
.ws19f{word-spacing:2.165816pt;}
.ws1a0{word-spacing:2.167867pt;}
.wsfe{word-spacing:2.178489pt;}
.ws5d{word-spacing:2.231622pt;}
.wsf5{word-spacing:2.284756pt;}
.ws2d{word-spacing:2.337890pt;}
.ws129{word-spacing:2.391024pt;}
.ws5b{word-spacing:2.497292pt;}
.ws25{word-spacing:2.550426pt;}
.ws138{word-spacing:2.603559pt;}
.ws2c{word-spacing:2.709827pt;}
.ws166{word-spacing:2.762961pt;}
.ws12b{word-spacing:2.786347pt;}
.ws6d{word-spacing:2.816095pt;}
.ws68{word-spacing:2.922363pt;}
.wsb9{word-spacing:2.975497pt;}
.ws70{word-spacing:3.028630pt;}
.ws10d{word-spacing:3.081764pt;}
.ws7a{word-spacing:3.134898pt;}
.ws82{word-spacing:3.188032pt;}
.ws1c7{word-spacing:3.227137pt;}
.ws1c9{word-spacing:3.230547pt;}
.ws81{word-spacing:3.241166pt;}
.ws175{word-spacing:3.294300pt;}
.ws10f{word-spacing:3.347434pt;}
.ws12d{word-spacing:3.392075pt;}
.ws122{word-spacing:3.400567pt;}
.wsb7{word-spacing:3.453701pt;}
.ws14c{word-spacing:3.506835pt;}
.ws5a{word-spacing:3.559969pt;}
.ws9e{word-spacing:3.666237pt;}
.ws9c{word-spacing:3.669615pt;}
.ws1c2{word-spacing:3.728038pt;}
.ws1c4{word-spacing:3.740634pt;}
.ws8b{word-spacing:3.772505pt;}
.ws7{word-spacing:3.777843pt;}
.ws12f{word-spacing:3.795893pt;}
.wsb4{word-spacing:3.931906pt;}
.ws43{word-spacing:3.985040pt;}
.ws33{word-spacing:3.995677pt;}
.ws126{word-spacing:4.038174pt;}
.ws123{word-spacing:4.038184pt;}
.ws17a{word-spacing:4.144442pt;}
.ws8e{word-spacing:4.197575pt;}
.ws18c{word-spacing:4.197767pt;}
.ws18e{word-spacing:4.208213pt;}
.ws1c1{word-spacing:4.248246pt;}
.ws1b0{word-spacing:4.248930pt;}
.ws1b4{word-spacing:4.249291pt;}
.ws1bb{word-spacing:4.249682pt;}
.ws18a{word-spacing:4.249854pt;}
.ws1c5{word-spacing:4.250452pt;}
.ws19e{word-spacing:4.250553pt;}
.ws63{word-spacing:4.250709pt;}
.ws34{word-spacing:4.250720pt;}
.ws69{word-spacing:4.303843pt;}
.ws194{word-spacing:4.335734pt;}
.ws191{word-spacing:4.356707pt;}
.ws10c{word-spacing:4.356977pt;}
.ws193{word-spacing:4.378242pt;}
.wscb{word-spacing:4.410111pt;}
.ws65{word-spacing:4.463245pt;}
.ws18{word-spacing:4.495155pt;}
.ws17{word-spacing:4.542976pt;}
.ws170{word-spacing:4.622646pt;}
.ws1f{word-spacing:4.675780pt;}
.ws174{word-spacing:4.728914pt;}
.wsbd{word-spacing:4.782048pt;}
.ws75{word-spacing:4.835182pt;}
.ws38{word-spacing:4.888316pt;}
.ws124{word-spacing:4.941450pt;}
.ws6f{word-spacing:4.994583pt;}
.ws47{word-spacing:5.047717pt;}
.ws16e{word-spacing:5.100851pt;}
.wsc5{word-spacing:5.153985pt;}
.wsa7{word-spacing:5.207119pt;}
.wsa5{word-spacing:5.216592pt;}
.ws141{word-spacing:5.253957pt;}
.ws85{word-spacing:5.271631pt;}
.ws84{word-spacing:5.286369pt;}
.ws101{word-spacing:5.293651pt;}
.ws17e{word-spacing:5.299129pt;}
.wsb{word-spacing:5.308109pt;}
.ws3{word-spacing:5.313387pt;}
.wsd5{word-spacing:5.317630pt;}
.wse1{word-spacing:5.366521pt;}
.wsdf{word-spacing:5.383230pt;}
.ws40{word-spacing:5.419654pt;}
.ws66{word-spacing:5.525922pt;}
.ws130{word-spacing:5.632190pt;}
.ws4b{word-spacing:5.685324pt;}
.ws14d{word-spacing:5.738458pt;}
.ws110{word-spacing:5.791591pt;}
.ws30{word-spacing:5.844725pt;}
.ws2{word-spacing:5.844747pt;}
.ws28{word-spacing:5.897859pt;}
.ws143{word-spacing:5.950993pt;}
.ws1a{word-spacing:5.977600pt;}
.ws32{word-spacing:6.004127pt;}
.wsca{word-spacing:6.163529pt;}
.wsd1{word-spacing:6.216662pt;}
.ws64{word-spacing:6.269796pt;}
.ws113{word-spacing:6.289404pt;}
.wseb{word-spacing:6.322930pt;}
.wsc9{word-spacing:6.376064pt;}
.wsc7{word-spacing:6.429198pt;}
.wsc2{word-spacing:6.641733pt;}
.ws14{word-spacing:6.742733pt;}
.ws109{word-spacing:6.748001pt;}
.ws2e{word-spacing:6.801135pt;}
.ws39{word-spacing:6.854269pt;}
.ws1b8{word-spacing:6.950775pt;}
.ws29{word-spacing:6.960537pt;}
.ws1ba{word-spacing:6.971181pt;}
.ws88{word-spacing:7.013670pt;}
.ws147{word-spacing:7.025897pt;}
.ws80{word-spacing:7.066804pt;}
.ws3c{word-spacing:7.173072pt;}
.wsa2{word-spacing:7.226206pt;}
.ws10e{word-spacing:7.332474pt;}
.ws77{word-spacing:7.385607pt;}
.ws1a4{word-spacing:7.425745pt;}
.wsf7{word-spacing:7.438741pt;}
.ws1a6{word-spacing:7.438760pt;}
.ws22{word-spacing:7.491875pt;}
.ws58{word-spacing:7.545009pt;}
.ws172{word-spacing:7.743778pt;}
.ws4a{word-spacing:7.757545pt;}
.ws15b{word-spacing:7.810678pt;}
.wsb5{word-spacing:7.863812pt;}
.ws171{word-spacing:7.970080pt;}
.wsfc{word-spacing:8.023214pt;}
.ws89{word-spacing:8.076348pt;}
.ws154{word-spacing:8.129482pt;}
.ws127{word-spacing:8.182615pt;}
.ws114{word-spacing:8.235749pt;}
.ws13{word-spacing:8.272998pt;}
.ws26{word-spacing:8.288883pt;}
.ws76{word-spacing:8.395151pt;}
.ws23{word-spacing:8.448285pt;}
.ws45{word-spacing:8.501419pt;}
.ws163{word-spacing:8.554553pt;}
.ws165{word-spacing:8.607686pt;}
.ws62{word-spacing:8.660820pt;}
.ws96{word-spacing:8.699467pt;}
.ws46{word-spacing:8.713954pt;}
.ws8c{word-spacing:8.767088pt;}
.ws57{word-spacing:8.820222pt;}
.ws164{word-spacing:8.873356pt;}
.ws1a7{word-spacing:8.884005pt;}
.wsee{word-spacing:8.926490pt;}
.ws168{word-spacing:8.979623pt;}
.ws15c{word-spacing:9.085891pt;}
.ws167{word-spacing:9.192159pt;}
.ws16{word-spacing:9.229414pt;}
.ws4e{word-spacing:9.245293pt;}
.wsda{word-spacing:9.291663pt;}
.ws8f{word-spacing:9.298427pt;}
.wsd6{word-spacing:9.404694pt;}
.ws6{word-spacing:9.420698pt;}
.ws140{word-spacing:9.457828pt;}
.ws5{word-spacing:9.468518pt;}
.ws24{word-spacing:9.510962pt;}
.ws149{word-spacing:9.564096pt;}
.ws9f{word-spacing:9.620783pt;}
.ws16a{word-spacing:9.723498pt;}
.wsdd{word-spacing:9.761830pt;}
.ws15f{word-spacing:9.829765pt;}
.ws186{word-spacing:9.882899pt;}
.wsdb{word-spacing:9.894732pt;}
.ws1b1{word-spacing:10.064275pt;}
.ws1b3{word-spacing:10.074206pt;}
.ws27{word-spacing:10.095435pt;}
.ws9{word-spacing:10.138010pt;}
.ws49{word-spacing:10.148569pt;}
.ws155{word-spacing:10.201702pt;}
.ws1a1{word-spacing:10.279078pt;}
.ws1a3{word-spacing:10.286742pt;}
.ws184{word-spacing:10.307970pt;}
.ws59{word-spacing:10.361104pt;}
.ws148{word-spacing:10.467372pt;}
.ws131{word-spacing:10.520506pt;}
.wscd{word-spacing:10.532050pt;}
.wscf{word-spacing:10.534966pt;}
.ws3b{word-spacing:10.573639pt;}
.ws83{word-spacing:10.626773pt;}
.wsf0{word-spacing:10.733041pt;}
.ws14a{word-spacing:10.839309pt;}
.ws1e{word-spacing:10.998710pt;}
.wsaa{word-spacing:11.026385pt;}
.wsf8{word-spacing:11.051844pt;}
.ws19b{word-spacing:11.075871pt;}
.ws19d{word-spacing:11.094379pt;}
.wsc{word-spacing:11.142246pt;}
.ws9b{word-spacing:11.158112pt;}
.wsfb{word-spacing:11.211246pt;}
.wsff{word-spacing:11.264380pt;}
.ws1c0{word-spacing:11.306915pt;}
.ws160{word-spacing:11.317514pt;}
.ws1be{word-spacing:11.326184pt;}
.wsfd{word-spacing:11.370647pt;}
.ws4c{word-spacing:11.423781pt;}
.ws3e{word-spacing:11.476915pt;}
.wsa{word-spacing:11.572634pt;}
.ws31{word-spacing:11.636317pt;}
.ws1ae{word-spacing:11.646973pt;}
.ws71{word-spacing:11.742585pt;}
.ws7f{word-spacing:11.795718pt;}
.ws188{word-spacing:11.817002pt;}
.wsf9{word-spacing:11.848852pt;}
.ws183{word-spacing:12.008254pt;}
.ws1cb{word-spacing:12.072045pt;}
.ws54{word-spacing:12.167655pt;}
.ws12a{word-spacing:12.327057pt;}
.wsed{word-spacing:12.380191pt;}
.ws190{word-spacing:12.412102pt;}
.ws44{word-spacing:12.433325pt;}
.ws4d{word-spacing:12.486459pt;}
.wsbc{word-spacing:12.539593pt;}
.ws15{word-spacing:12.576870pt;}
.ws196{word-spacing:12.582131pt;}
.ws74{word-spacing:12.592726pt;}
.ws61{word-spacing:12.698994pt;}
.ws153{word-spacing:12.752128pt;}
.ws1{word-spacing:12.752160pt;}
.ws67{word-spacing:12.805262pt;}
.ws176{word-spacing:12.858396pt;}
.ws181{word-spacing:12.911530pt;}
.ws11e{word-spacing:12.964663pt;}
.ws8a{word-spacing:13.017797pt;}
.ws72{word-spacing:13.124065pt;}
.ws1b5{word-spacing:13.197845pt;}
.ws1b7{word-spacing:13.219739pt;}
.ws5c{word-spacing:13.336601pt;}
.ws161{word-spacing:13.496002pt;}
.ws7c{word-spacing:13.549136pt;}
.wsf1{word-spacing:13.556602pt;}
.ws19a{word-spacing:13.687318pt;}
.ws198{word-spacing:13.693348pt;}
.ws11d{word-spacing:13.708538pt;}
.wsd7{word-spacing:13.814805pt;}
.ws1c8{word-spacing:13.814840pt;}
.ws142{word-spacing:14.027341pt;}
.wsf6{word-spacing:14.080475pt;}
.wsd{word-spacing:14.107136pt;}
.ws99{word-spacing:14.133609pt;}
.wse9{word-spacing:14.211675pt;}
.wse3{word-spacing:14.293010pt;}
.ws1c3{word-spacing:14.324926pt;}
.ws128{word-spacing:14.346144pt;}
.ws169{word-spacing:14.505546pt;}
.ws1ac{word-spacing:14.579970pt;}
.ws1aa{word-spacing:14.592737pt;}
.ws11b{word-spacing:14.664947pt;}
.wsf{word-spacing:14.776627pt;}
.ws18d{word-spacing:14.792506pt;}
.ws18b{word-spacing:14.835013pt;}
.ws159{word-spacing:14.861807pt;}
.ws192{word-spacing:14.920027pt;}
.ws1bc{word-spacing:14.930011pt;}
.ws51{word-spacing:14.930617pt;}
.ws102{word-spacing:14.939801pt;}
.ws125{word-spacing:15.143152pt;}
.ws10{word-spacing:15.350477pt;}
.ws162{word-spacing:15.355687pt;}
.wse4{word-spacing:15.453596pt;}
.wsd3{word-spacing:15.461955pt;}
.wse7{word-spacing:15.515089pt;}
.ws73{word-spacing:15.727625pt;}
.ws1b{word-spacing:15.940160pt;}
.wsaf{word-spacing:16.023718pt;}
.ws98{word-spacing:16.046428pt;}
.wsba{word-spacing:16.099562pt;}
.wsa8{word-spacing:16.152695pt;}
.wsf3{word-spacing:16.164602pt;}
.ws11c{word-spacing:16.312097pt;}
.wsb2{word-spacing:16.365231pt;}
.ws108{word-spacing:16.374252pt;}
.ws157{word-spacing:16.564252pt;}
.wsb8{word-spacing:16.636850pt;}
.ws14b{word-spacing:16.790302pt;}
.ws9d{word-spacing:16.896570pt;}
.ws111{word-spacing:16.949703pt;}
.ws16b{word-spacing:17.002837pt;}
.ws20{word-spacing:17.268507pt;}
.ws179{word-spacing:17.374774pt;}
.ws48{word-spacing:17.427908pt;}
.wsbe{word-spacing:17.481042pt;}
.ws1b9{word-spacing:17.555474pt;}
.wscc{word-spacing:17.640444pt;}
.wsc3{word-spacing:17.959247pt;}
.ws1a5{word-spacing:18.023053pt;}
.ws3d{word-spacing:18.118649pt;}
.ws56{word-spacing:18.278050pt;}
.ws21{word-spacing:18.331184pt;}
.wsc6{word-spacing:18.363326pt;}
.wsde{word-spacing:18.437452pt;}
.wsa4{word-spacing:18.490586pt;}
.ws104{word-spacing:18.535358pt;}
.ws17d{word-spacing:18.542310pt;}
.ws5f{word-spacing:18.543719pt;}
.wse0{word-spacing:18.596853pt;}
.wsc0{word-spacing:18.809389pt;}
.ws185{word-spacing:18.862523pt;}
.wsbf{word-spacing:18.933071pt;}
.ws95{word-spacing:19.287594pt;}
.wsc4{word-spacing:19.446995pt;}
.ws1a8{word-spacing:19.468298pt;}
.ws100{word-spacing:19.607358pt;}
.wsc8{word-spacing:19.610780pt;}
.wsa6{word-spacing:19.898404pt;}
.ws10a{word-spacing:19.978334pt;}
.wsa3{word-spacing:20.432346pt;}
.ws1b2{word-spacing:20.658499pt;}
.ws152{word-spacing:20.722208pt;}
.wsae{word-spacing:20.772302pt;}
.wsac{word-spacing:20.774066pt;}
.wsad{word-spacing:20.775342pt;}
.ws8{word-spacing:20.849869pt;}
.ws1a2{word-spacing:20.871035pt;}
.ws173{word-spacing:20.987877pt;}
.wsb6{word-spacing:21.094145pt;}
.ws19c{word-spacing:21.678672pt;}
.wsd4{word-spacing:21.711799pt;}
.ws17c{word-spacing:21.727621pt;}
.ws1bf{word-spacing:21.933715pt;}
.ws97{word-spacing:21.944287pt;}
.wsef{word-spacing:22.175269pt;}
.wsce{word-spacing:23.770338pt;}
.wsd0{word-spacing:23.803972pt;}
.ws1b6{word-spacing:23.804032pt;}
.ws199{word-spacing:24.271611pt;}
.wsab{word-spacing:24.282177pt;}
.ws146{word-spacing:24.345799pt;}
.ws139{word-spacing:25.044524pt;}
.ws14e{word-spacing:25.053801pt;}
.ws1ab{word-spacing:25.164262pt;}
.ws1bd{word-spacing:25.504320pt;}
.wsec{word-spacing:25.610524pt;}
.ws177{word-spacing:26.035595pt;}
.ws151{word-spacing:26.460940pt;}
.ws120{word-spacing:26.513799pt;}
.ws106{word-spacing:27.012274pt;}
.ws9a{word-spacing:27.017164pt;}
.ws35{word-spacing:27.367416pt;}
.ws136{word-spacing:28.640606pt;}
.ws132{word-spacing:28.641886pt;}
.ws135{word-spacing:28.643593pt;}
.ws134{word-spacing:28.645299pt;}
.ws133{word-spacing:28.646153pt;}
.wsd2{word-spacing:28.692288pt;}
.wsb0{word-spacing:29.276761pt;}
.wsa9{word-spacing:29.383028pt;}
.wsb3{word-spacing:29.595564pt;}
.wsbb{word-spacing:30.498839pt;}
.wsb1{word-spacing:31.034404pt;}
.wsc1{word-spacing:32.039722pt;}
.ws145{word-spacing:34.734829pt;}
.ws105{word-spacing:35.924588pt;}
.ws13c{word-spacing:40.305001pt;}
.ws119{word-spacing:59.527083pt;}
.wsdc{word-spacing:61.462333pt;}
.ws16c{word-spacing:72.620128pt;}
.ws7e{word-spacing:75.431132pt;}
.ws92{word-spacing:108.108978pt;}
.ws13f{word-spacing:116.063801pt;}
.ws12e{word-spacing:117.107336pt;}
.ws13b{word-spacing:117.305751pt;}
.ws91{word-spacing:123.261592pt;}
.ws16d{word-spacing:139.337277pt;}
.ws150{word-spacing:140.819026pt;}
.ws107{word-spacing:255.713091pt;}
.ws116{word-spacing:376.252481pt;}
.wsa0{word-spacing:492.319738pt;}
.wsa1{word-spacing:540.785351pt;}
._0{margin-left:-1290.722133pt;}
._1{margin-left:-11.731987pt;}
._1d{margin-left:-7.173072pt;}
._1c{margin-left:-5.897859pt;}
._5{margin-left:-4.766150pt;}
._3{margin-left:-3.188040pt;}
._7{margin-left:-2.295414pt;}
._2{margin-left:-1.275216pt;}
._12{width:0.933489pt;}
._8{width:2.656693pt;}
._1b{width:3.605347pt;}
._6{width:12.337766pt;}
._1a{width:13.655407pt;}
._3e{width:14.941525pt;}
._10{width:16.745271pt;}
._17{width:18.405634pt;}
._18{width:19.553263pt;}
._4{width:20.467302pt;}
._9{width:23.378905pt;}
._13{width:26.566933pt;}
._11{width:27.534001pt;}
._20{width:28.692291pt;}
._19{width:35.093236pt;}
._3f{width:36.868620pt;}
._43{width:53.584628pt;}
._4a{width:55.898442pt;}
._f{width:57.378103pt;}
._e{width:59.500585pt;}
._27{width:60.572760pt;}
._2d{width:62.591608pt;}
._41{width:63.737667pt;}
._48{width:65.168415pt;}
._c{width:66.867920pt;}
._31{width:68.310833pt;}
._4b{width:70.595451pt;}
._46{width:71.918119pt;}
._40{width:73.871113pt;}
._49{width:75.203693pt;}
._47{width:76.743990pt;}
._b{width:77.807240pt;}
._3a{width:79.511843pt;}
._42{width:82.393442pt;}
._16{width:84.331575pt;}
._d{width:85.912962pt;}
._a{width:87.297102pt;}
._45{width:88.510097pt;}
._29{width:89.768830pt;}
._15{width:93.252157pt;}
._2e{width:97.118325pt;}
._44{width:98.299461pt;}
._36{width:100.389254pt;}
._14{width:102.860409pt;}
._2b{width:105.880940pt;}
._24{width:107.052258pt;}
._1f{width:109.294338pt;}
._34{width:113.149916pt;}
._3b{width:114.142459pt;}
._35{width:115.370917pt;}
._3c{width:117.632300pt;}
._39{width:119.192899pt;}
._1e{width:126.514179pt;}
._2c{width:127.889287pt;}
._37{width:138.590475pt;}
._2f{width:143.517059pt;}
._2a{width:145.818824pt;}
._3d{width:147.730837pt;}
._32{width:148.672014pt;}
._28{width:159.709933pt;}
._38{width:178.851169pt;}
._25{width:179.900853pt;}
._23{width:195.125051pt;}
._22{width:200.091773pt;}
._30{width:218.223463pt;}
._33{width:256.627269pt;}
._26{width:264.702961pt;}
._21{width:274.313839pt;}
.fs1e{font-size:17.005881pt;}
.fs1c{font-size:17.214167pt;}
.fs15{font-size:17.283650pt;}
.fsb{font-size:17.573353pt;}
.fs12{font-size:20.740519pt;}
.fs23{font-size:21.517709pt;}
.fs21{font-size:21.525679pt;}
.fse{font-size:23.304351pt;}
.fs14{font-size:24.197040pt;}
.fs1d{font-size:25.508822pt;}
.fs1b{font-size:25.821250pt;}
.fs1f{font-size:25.830814pt;}
.fsa{font-size:26.360030pt;}
.fs1{font-size:27.002667pt;}
.fsf{font-size:27.254341pt;}
.fs11{font-size:27.653909pt;}
.fsc{font-size:28.020480pt;}
.fs19{font-size:28.692480pt;}
.fs24{font-size:30.610573pt;}
.fs22{font-size:30.985487pt;}
.fs20{font-size:30.996964pt;}
.fsd{font-size:31.072338pt;}
.fs16{font-size:31.110778pt;}
.fs25{font-size:31.880533pt;}
.fs10{font-size:34.067841pt;}
.fs13{font-size:34.567300pt;}
.fs9{font-size:37.193600pt;}
.fs18{font-size:38.256480pt;}
.fs1a{font-size:40.381840pt;}
.fs8{font-size:42.507200pt;}
.fs0{font-size:42.666667pt;}
.fs17{font-size:46.385982pt;}
.fs7{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs5{font-size:58.447467pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:127.521600pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y158{bottom:0.467055pt;}
.yd0{bottom:3.430780pt;}
.ye4{bottom:4.334309pt;}
.y11a{bottom:4.724006pt;}
.y1c5{bottom:5.198976pt;}
.y1bb{bottom:5.262652pt;}
.y1e6{bottom:5.264602pt;}
.yc9{bottom:5.286520pt;}
.y43{bottom:5.372462pt;}
.ya5{bottom:5.662472pt;}
.y1f4{bottom:9.614808pt;}
.y1c6{bottom:10.283695pt;}
.y1e7{bottom:10.413504pt;}
.y44{bottom:10.626853pt;}
.y11b{bottom:12.998389pt;}
.ya4{bottom:15.367482pt;}
.y21b{bottom:16.889168pt;}
.y1bc{bottom:18.185072pt;}
.y1f0{bottom:18.587682pt;}
.y1e8{bottom:20.136384pt;}
.y1c7{bottom:20.260801pt;}
.y1c1{bottom:20.730383pt;}
.yac{bottom:21.095627pt;}
.y1ce{bottom:21.222640pt;}
.y119{bottom:22.401294pt;}
.y157{bottom:23.031195pt;}
.y45{bottom:23.856293pt;}
.y128{bottom:24.013840pt;}
.y4b{bottom:25.261900pt;}
.yde{bottom:25.695529pt;}
.ye3{bottom:25.733144pt;}
.ycd{bottom:28.762020pt;}
.y123{bottom:29.656450pt;}
.y21c{bottom:29.848208pt;}
.y1e9{bottom:29.859264pt;}
.y1c8{bottom:30.237907pt;}
.y11d{bottom:31.787718pt;}
.y1bd{bottom:33.735920pt;}
.ydd{bottom:33.786239pt;}
.ye2{bottom:33.824710pt;}
.y46{bottom:37.085733pt;}
.ya6{bottom:37.228631pt;}
.ye1{bottom:37.988040pt;}
.yaf{bottom:38.617548pt;}
.y1ea{bottom:39.582144pt;}
.y117{bottom:40.030873pt;}
.y1c9{bottom:40.215013pt;}
.y21d{bottom:42.807248pt;}
.ye0{bottom:46.079606pt;}
.yab{bottom:46.584960pt;}
.y118{bottom:48.257548pt;}
.y127{bottom:48.614928pt;}
.yad{bottom:49.116107pt;}
.y1be{bottom:49.286768pt;}
.y1eb{bottom:49.305024pt;}
.y1ca{bottom:50.192119pt;}
.y47{bottom:50.315173pt;}
.ye6{bottom:53.242757pt;}
.ycc{bottom:53.425622pt;}
.ydf{bottom:54.170316pt;}
.ya7{bottom:54.210740pt;}
.y122{bottom:54.257538pt;}
.y12d{bottom:54.564607pt;}
.y21e{bottom:55.766288pt;}
.y116{bottom:57.660453pt;}
.y1ec{bottom:59.027904pt;}
.yca{bottom:59.263796pt;}
.y1cb{bottom:60.169225pt;}
.y48{bottom:63.544613pt;}
.y1bf{bottom:64.837616pt;}
.y12c{bottom:65.683282pt;}
.y1f6{bottom:67.782283pt;}
.y21f{bottom:68.725328pt;}
.y1ed{bottom:68.750784pt;}
.y1cc{bottom:70.146331pt;}
.y4d{bottom:70.932959pt;}
.ya8{bottom:71.192849pt;}
.y11e{bottom:73.304493pt;}
.yce{bottom:74.549284pt;}
.ydc{bottom:75.000647pt;}
.y224{bottom:76.324174pt;}
.y49{bottom:76.774053pt;}
.yae{bottom:77.136587pt;}
.y221{bottom:77.258982pt;}
.y1f1{bottom:77.287598pt;}
.y12b{bottom:77.822051pt;}
.y1cf{bottom:78.385115pt;}
.y1ee{bottom:78.473664pt;}
.y1f5{bottom:78.843259pt;}
.y1c2{bottom:79.345164pt;}
.y1cd{bottom:80.123437pt;}
.y4c{bottom:80.339288pt;}
.y1c0{bottom:80.388464pt;}
.y220{bottom:81.684368pt;}
.ydb{bottom:83.091358pt;}
.y12a{bottom:85.789365pt;}
.y114{bottom:86.092097pt;}
.ya9{bottom:88.174958pt;}
.y1ef{bottom:88.196544pt;}
.y124{bottom:88.807142pt;}
.ye5{bottom:89.592821pt;}
.y4a{bottom:90.003493pt;}
.y11f{bottom:90.009395pt;}
.yda{bottom:91.182923pt;}
.y121{bottom:93.982210pt;}
.y115{bottom:94.318771pt;}
.y5{bottom:96.324775pt;}
.ycf{bottom:96.515046pt;}
.y129{bottom:96.908040pt;}
.y126{bottom:99.624820pt;}
.y41{bottom:100.740000pt;}
.y113{bottom:103.721676pt;}
.y4{bottom:104.426250pt;}
.yaa{bottom:105.157067pt;}
.y27f{bottom:105.314667pt;}
.y12e{bottom:106.181698pt;}
.y12f{bottom:108.515943pt;}
.y3{bottom:112.527725pt;}
.y40{bottom:112.696000pt;}
.y11c{bottom:113.107233pt;}
.y72{bottom:116.680000pt;}
.yd5{bottom:116.681333pt;}
.y27e{bottom:117.270667pt;}
.y120{bottom:118.584165pt;}
.ycb{bottom:118.689384pt;}
.y2{bottom:120.629200pt;}
.y111{bottom:121.351256pt;}
.yd1{bottom:122.355056pt;}
.y125{bottom:124.226775pt;}
.yd9{bottom:128.724709pt;}
.y27d{bottom:129.225333pt;}
.y112{bottom:129.577063pt;}
.y6{bottom:129.826400pt;}
.ya2{bottom:132.620000pt;}
.y71{bottom:132.621333pt;}
.yd8{bottom:136.815419pt;}
.y110{bottom:138.979968pt;}
.y3f{bottom:139.590667pt;}
.y27c{bottom:141.180000pt;}
.y70{bottom:148.561333pt;}
.y1b9{bottom:151.081333pt;}
.y10e{bottom:152.641333pt;}
.y27b{bottom:153.136000pt;}
.y130{bottom:153.374046pt;}
.y3e{bottom:155.530667pt;}
.yd7{bottom:157.552567pt;}
.y1b8{bottom:164.365333pt;}
.y6f{bottom:164.501333pt;}
.y27a{bottom:165.090667pt;}
.y3d{bottom:171.714667pt;}
.y10d{bottom:176.928000pt;}
.y279{bottom:177.046667pt;}
.y1b7{bottom:180.169333pt;}
.y6e{bottom:180.441333pt;}
.y219{bottom:184.480000pt;}
.y3c{bottom:187.656000pt;}
.y278{bottom:189.001333pt;}
.y10c{bottom:192.869333pt;}
.y1b6{bottom:196.109333pt;}
.y6d{bottom:196.381333pt;}
.y277{bottom:200.956000pt;}
.y155{bottom:201.185333pt;}
.y3b{bottom:203.596000pt;}
.y218{bottom:208.513333pt;}
.y10b{bottom:208.809333pt;}
.y1b5{bottom:212.049333pt;}
.ya1{bottom:212.321333pt;}
.yd4{bottom:212.322667pt;}
.y276{bottom:212.912000pt;}
.y183{bottom:216.433333pt;}
.y6c{bottom:217.101333pt;}
.y3a{bottom:219.536000pt;}
.y217{bottom:224.453333pt;}
.y10a{bottom:224.749333pt;}
.y275{bottom:224.866667pt;}
.y154{bottom:227.594667pt;}
.y1b4{bottom:227.990667pt;}
.ya0{bottom:228.262667pt;}
.y6b{bottom:233.041333pt;}
.y39{bottom:235.476000pt;}
.y182{bottom:236.485333pt;}
.y274{bottom:236.821333pt;}
.y216{bottom:240.394667pt;}
.y109{bottom:240.689333pt;}
.y153{bottom:243.534667pt;}
.y1b3{bottom:243.930667pt;}
.y9f{bottom:244.202667pt;}
.y273{bottom:248.777333pt;}
.y6a{bottom:248.981333pt;}
.y38{bottom:251.416000pt;}
.y215{bottom:256.189333pt;}
.y108{bottom:256.526667pt;}
.y9{bottom:258.874933pt;}
.y152{bottom:259.474667pt;}
.y1b2{bottom:259.870667pt;}
.y9e{bottom:260.142667pt;}
.y272{bottom:260.732000pt;}
.y181{bottom:260.956000pt;}
.yd3{bottom:264.225333pt;}
.y242{bottom:264.789333pt;}
.y69{bottom:264.921333pt;}
.y37{bottom:267.356000pt;}
.y8{bottom:271.674933pt;}
.y214{bottom:272.129333pt;}
.y107{bottom:272.466667pt;}
.y271{bottom:272.688000pt;}
.y151{bottom:275.414667pt;}
.y1b1{bottom:275.810667pt;}
.y9d{bottom:276.082667pt;}
.y180{bottom:276.896000pt;}
.y68{bottom:280.861333pt;}
.y36{bottom:283.297333pt;}
.y7{bottom:284.474933pt;}
.y270{bottom:284.642667pt;}
.y213{bottom:288.069333pt;}
.y106{bottom:288.406667pt;}
.y241{bottom:290.350667pt;}
.y150{bottom:291.354667pt;}
.y1b0{bottom:291.750667pt;}
.y9c{bottom:292.022667pt;}
.y17f{bottom:292.836000pt;}
.yd2{bottom:295.977333pt;}
.y26f{bottom:296.597333pt;}
.y67{bottom:296.801333pt;}
.y35{bottom:299.237333pt;}
.y212{bottom:304.009333pt;}
.y105{bottom:304.346667pt;}
.y240{bottom:306.292000pt;}
.y14f{bottom:307.296000pt;}
.y1af{bottom:307.690667pt;}
.y9b{bottom:307.962667pt;}
.y26e{bottom:308.553333pt;}
.y17e{bottom:308.776000pt;}
.y66{bottom:312.742667pt;}
.yc8{bottom:315.105333pt;}
.y34{bottom:315.177333pt;}
.y211{bottom:319.949333pt;}
.y104{bottom:320.288000pt;}
.y26d{bottom:320.508000pt;}
.y23f{bottom:322.232000pt;}
.y14e{bottom:323.236000pt;}
.y1ae{bottom:323.632000pt;}
.y9a{bottom:323.904000pt;}
.y17d{bottom:324.717333pt;}
.y65{bottom:328.682667pt;}
.y33{bottom:331.117333pt;}
.y26c{bottom:332.462667pt;}
.y210{bottom:335.889333pt;}
.y103{bottom:336.228000pt;}
.y23e{bottom:338.172000pt;}
.y14d{bottom:339.176000pt;}
.y1ad{bottom:339.572000pt;}
.y99{bottom:339.844000pt;}
.y17c{bottom:340.657333pt;}
.y26b{bottom:344.418667pt;}
.y64{bottom:344.622667pt;}
.y32{bottom:347.057333pt;}
.y20f{bottom:351.830667pt;}
.y102{bottom:352.168000pt;}
.y23d{bottom:354.112000pt;}
.y14c{bottom:355.116000pt;}
.y98{bottom:355.784000pt;}
.y26a{bottom:356.373333pt;}
.y17b{bottom:356.597333pt;}
.y1ac{bottom:359.653333pt;}
.y63{bottom:360.562667pt;}
.y31{bottom:362.997333pt;}
.y20e{bottom:367.770667pt;}
.y101{bottom:368.108000pt;}
.y269{bottom:368.328000pt;}
.y23c{bottom:370.052000pt;}
.y14b{bottom:371.056000pt;}
.y97{bottom:371.724000pt;}
.y17a{bottom:372.537333pt;}
.y62{bottom:377.508000pt;}
.y30{bottom:378.938667pt;}
.y268{bottom:380.284000pt;}
.y20d{bottom:383.710667pt;}
.y100{bottom:384.048000pt;}
.y23b{bottom:385.992000pt;}
.y1ab{bottom:386.367467pt;}
.y14a{bottom:386.996000pt;}
.y96{bottom:387.664000pt;}
.y179{bottom:388.477333pt;}
.y267{bottom:392.238667pt;}
.y61{bottom:393.448000pt;}
.y2f{bottom:394.878667pt;}
.y1aa{bottom:397.724400pt;}
.y20c{bottom:399.650667pt;}
.yff{bottom:399.988000pt;}
.y23a{bottom:401.933333pt;}
.y149{bottom:402.937333pt;}
.y1e4{bottom:403.605333pt;}
.y266{bottom:404.194667pt;}
.y178{bottom:404.417333pt;}
.y95{bottom:407.720000pt;}
.y1a9{bottom:409.082600pt;}
.y60{bottom:409.389333pt;}
.y2e{bottom:410.818667pt;}
.y20b{bottom:415.590667pt;}
.yfe{bottom:415.929333pt;}
.y265{bottom:416.149333pt;}
.y239{bottom:417.873333pt;}
.y148{bottom:418.877333pt;}
.y1e3{bottom:419.545333pt;}
.y1a8{bottom:420.439533pt;}
.y177{bottom:424.469333pt;}
.y5f{bottom:425.329333pt;}
.y2d{bottom:426.758667pt;}
.y264{bottom:428.104000pt;}
.y1a7{bottom:431.796467pt;}
.y94{bottom:432.210667pt;}
.y238{bottom:433.813333pt;}
.y147{bottom:434.817333pt;}
.y1e2{bottom:435.485333pt;}
.y20a{bottom:435.570667pt;}
.yfd{bottom:435.949333pt;}
.y263{bottom:440.060000pt;}
.y5e{bottom:441.269333pt;}
.y2c{bottom:442.698667pt;}
.y1a6{bottom:443.154667pt;}
.y93{bottom:448.150667pt;}
.y237{bottom:449.753333pt;}
.y176{bottom:450.516800pt;}
.y262{bottom:452.014667pt;}
.y1a5{bottom:454.511600pt;}
.y146{bottom:455.560000pt;}
.y1e1{bottom:456.022667pt;}
.y5d{bottom:457.209333pt;}
.y2b{bottom:458.638667pt;}
.y209{bottom:459.604000pt;}
.yfc{bottom:460.236000pt;}
.yc7{bottom:462.144000pt;}
.y261{bottom:463.969333pt;}
.y92{bottom:464.090667pt;}
.y236{bottom:465.693333pt;}
.y1a4{bottom:465.869800pt;}
.y175{bottom:467.523200pt;}
.y5c{bottom:473.149333pt;}
.y2a{bottom:474.580000pt;}
.y208{bottom:475.544000pt;}
.y260{bottom:475.925333pt;}
.yfb{bottom:476.177333pt;}
.y1a3{bottom:477.226733pt;}
.yc6{bottom:478.084000pt;}
.y174{bottom:478.282400pt;}
.y91{bottom:480.032000pt;}
.y235{bottom:481.633333pt;}
.y1e0{bottom:481.933333pt;}
.y145{bottom:481.970667pt;}
.y25f{bottom:487.880000pt;}
.y5b{bottom:489.089333pt;}
.y207{bottom:491.484000pt;}
.yfa{bottom:492.117333pt;}
.yc5{bottom:494.024000pt;}
.y173{bottom:495.048800pt;}
.y1a2{bottom:495.177933pt;}
.y90{bottom:495.972000pt;}
.y29{bottom:496.170667pt;}
.y234{bottom:497.574667pt;}
.y1df{bottom:497.873333pt;}
.y144{bottom:497.910667pt;}
.y25e{bottom:499.836000pt;}
.y5a{bottom:505.030667pt;}
.y206{bottom:507.424000pt;}
.yf9{bottom:508.057333pt;}
.yc4{bottom:509.964000pt;}
.y25d{bottom:511.790667pt;}
.y8f{bottom:511.912000pt;}
.y233{bottom:513.514667pt;}
.y1de{bottom:513.814667pt;}
.y143{bottom:513.850667pt;}
.y172{bottom:519.786667pt;}
.y1a1{bottom:520.580000pt;}
.y59{bottom:520.970667pt;}
.y28{bottom:523.156000pt;}
.y205{bottom:523.364000pt;}
.y25c{bottom:523.745333pt;}
.yf8{bottom:523.997333pt;}
.yc3{bottom:525.904000pt;}
.y8e{bottom:527.852000pt;}
.y232{bottom:529.454667pt;}
.y1dd{bottom:529.754667pt;}
.y142{bottom:529.790667pt;}
.y25b{bottom:535.701333pt;}
.y27{bottom:536.440000pt;}
.y58{bottom:536.910667pt;}
.y204{bottom:539.305333pt;}
.y171{bottom:539.422667pt;}
.yf7{bottom:539.937333pt;}
.y1a0{bottom:540.378667pt;}
.yc2{bottom:541.844000pt;}
.y8d{bottom:543.792000pt;}
.y231{bottom:545.394667pt;}
.y1dc{bottom:545.694667pt;}
.y141{bottom:545.730667pt;}
.y25a{bottom:547.656000pt;}
.y26{bottom:549.724000pt;}
.y57{bottom:552.850667pt;}
.y203{bottom:555.245333pt;}
.y170{bottom:555.362667pt;}
.yf6{bottom:555.877333pt;}
.y19f{bottom:556.320000pt;}
.yc1{bottom:557.785333pt;}
.y259{bottom:559.610667pt;}
.y8c{bottom:559.732000pt;}
.y230{bottom:561.334667pt;}
.y1db{bottom:561.634667pt;}
.y140{bottom:561.670667pt;}
.y25{bottom:563.006667pt;}
.y56{bottom:568.790667pt;}
.y202{bottom:571.185333pt;}
.y16f{bottom:571.302667pt;}
.y258{bottom:571.566667pt;}
.yf5{bottom:571.818667pt;}
.y19e{bottom:572.260000pt;}
.yc0{bottom:573.725333pt;}
.y8b{bottom:575.673333pt;}
.y24{bottom:576.290667pt;}
.y22f{bottom:577.352000pt;}
.y1da{bottom:577.574667pt;}
.y13f{bottom:577.612000pt;}
.y55{bottom:585.736000pt;}
.y201{bottom:587.125333pt;}
.y16e{bottom:587.244000pt;}
.yf4{bottom:587.758667pt;}
.y19d{bottom:588.200000pt;}
.y23{bottom:589.574667pt;}
.ybf{bottom:589.665333pt;}
.y257{bottom:590.948000pt;}
.y8a{bottom:591.613333pt;}
.y22e{bottom:593.293333pt;}
.y1d9{bottom:593.514667pt;}
.y13e{bottom:593.552000pt;}
.y54{bottom:601.677333pt;}
.y22{bottom:602.857333pt;}
.y200{bottom:603.065333pt;}
.y16d{bottom:603.184000pt;}
.yf3{bottom:603.698667pt;}
.y19c{bottom:604.140000pt;}
.ybe{bottom:605.605333pt;}
.y89{bottom:607.553333pt;}
.y22d{bottom:609.233333pt;}
.y1d8{bottom:609.456000pt;}
.y13d{bottom:609.492000pt;}
.y256{bottom:614.821333pt;}
.y21{bottom:616.141333pt;}
.y53{bottom:617.617333pt;}
.y1ff{bottom:619.005333pt;}
.y16c{bottom:619.124000pt;}
.yf2{bottom:619.536000pt;}
.y19b{bottom:620.080000pt;}
.ybd{bottom:621.545333pt;}
.y88{bottom:623.493333pt;}
.y22c{bottom:625.173333pt;}
.y13c{bottom:625.432000pt;}
.y20{bottom:629.424000pt;}
.y1d7{bottom:630.288000pt;}
.y255{bottom:630.762667pt;}
.y52{bottom:633.557333pt;}
.y1fe{bottom:634.946667pt;}
.y16b{bottom:635.064000pt;}
.yf1{bottom:635.476000pt;}
.y19a{bottom:636.020000pt;}
.ybc{bottom:637.486667pt;}
.y87{bottom:639.433333pt;}
.y22b{bottom:641.113333pt;}
.y13b{bottom:641.372000pt;}
.y1f{bottom:642.708000pt;}
.y254{bottom:646.702667pt;}
.y51{bottom:649.497333pt;}
.y1fd{bottom:650.886667pt;}
.y16a{bottom:651.004000pt;}
.yf0{bottom:651.416000pt;}
.y199{bottom:651.961333pt;}
.ybb{bottom:653.426667pt;}
.y86{bottom:655.373333pt;}
.y1e{bottom:655.992000pt;}
.y1d6{bottom:656.198667pt;}
.y22a{bottom:657.053333pt;}
.y13a{bottom:657.312000pt;}
.y253{bottom:662.642667pt;}
.y50{bottom:665.437333pt;}
.y1fc{bottom:666.826667pt;}
.y169{bottom:666.944000pt;}
.yef{bottom:667.356000pt;}
.y198{bottom:667.901333pt;}
.y1d{bottom:669.274667pt;}
.yba{bottom:669.366667pt;}
.y85{bottom:671.314667pt;}
.y1d5{bottom:672.140000pt;}
.y229{bottom:672.993333pt;}
.y139{bottom:673.253333pt;}
.y252{bottom:678.582667pt;}
.y1{bottom:682.214267pt;}
.y1c{bottom:682.558667pt;}
.y1fb{bottom:682.766667pt;}
.y168{bottom:682.885333pt;}
.yee{bottom:683.296000pt;}
.yb9{bottom:685.306667pt;}
.y84{bottom:687.254667pt;}
.y197{bottom:687.982667pt;}
.y1d4{bottom:688.080000pt;}
.y228{bottom:689.010667pt;}
.y138{bottom:689.193333pt;}
.y4f{bottom:690.870667pt;}
.y251{bottom:694.522667pt;}
.y1b{bottom:695.842667pt;}
.yd{bottom:696.924933pt;}
.y1fa{bottom:698.706667pt;}
.y167{bottom:698.825333pt;}
.yed{bottom:699.237333pt;}
.yb8{bottom:701.246667pt;}
.y83{bottom:703.194667pt;}
.y1d3{bottom:704.020000pt;}
.y227{bottom:704.952000pt;}
.y137{bottom:705.133333pt;}
.y4e{bottom:706.810667pt;}
.y1a{bottom:709.125333pt;}
.y250{bottom:710.462667pt;}
.y196{bottom:712.636000pt;}
.y1f9{bottom:714.646667pt;}
.yec{bottom:715.177333pt;}
.y42{bottom:718.380000pt;}
.y166{bottom:718.877333pt;}
.y82{bottom:719.134667pt;}
.y1d2{bottom:719.960000pt;}
.y136{bottom:721.073333pt;}
.yb7{bottom:721.269333pt;}
.y19{bottom:722.409333pt;}
.y24f{bottom:726.404000pt;}
.y195{bottom:728.576000pt;}
.yeb{bottom:731.117333pt;}
.y81{bottom:735.074667pt;}
.y226{bottom:735.468000pt;}
.y18{bottom:735.693333pt;}
.y135{bottom:737.013333pt;}
.yb6{bottom:741.292000pt;}
.y24e{bottom:742.344000pt;}
.y165{bottom:743.346667pt;}
.y1f8{bottom:743.406667pt;}
.y194{bottom:744.517333pt;}
.yea{bottom:746.954667pt;}
.y17{bottom:748.976000pt;}
.y1d1{bottom:750.586667pt;}
.y80{bottom:751.016000pt;}
.y134{bottom:753.130667pt;}
.y225{bottom:758.184000pt;}
.y24d{bottom:758.284000pt;}
.y164{bottom:759.288000pt;}
.y193{bottom:760.457333pt;}
.y16{bottom:762.260000pt;}
.ye9{bottom:762.894667pt;}
.yb5{bottom:765.588000pt;}
.y1f7{bottom:766.121333pt;}
.y7f{bottom:766.956000pt;}
.y133{bottom:769.070667pt;}
.y223{bottom:771.865333pt;}
.y1d0{bottom:773.301333pt;}
.y24c{bottom:774.224000pt;}
.y163{bottom:775.228000pt;}
.y15{bottom:775.544000pt;}
.y192{bottom:776.397333pt;}
.ye8{bottom:778.834667pt;}
.y1f3{bottom:779.804000pt;}
.yb4{bottom:781.528000pt;}
.y7e{bottom:782.896000pt;}
.y132{bottom:785.010667pt;}
.y1c4{bottom:786.984000pt;}
.y14{bottom:788.826667pt;}
.y24b{bottom:790.164000pt;}
.y162{bottom:791.168000pt;}
.y191{bottom:792.337333pt;}
.yb3{bottom:797.469333pt;}
.y13{bottom:802.110667pt;}
.y7d{bottom:802.950667pt;}
.y24a{bottom:806.104000pt;}
.y161{bottom:807.108000pt;}
.y190{bottom:808.277333pt;}
.ye7{bottom:811.824000pt;}
.yb2{bottom:813.409333pt;}
.y131{bottom:819.573333pt;}
.y249{bottom:822.045333pt;}
.y7c{bottom:823.006667pt;}
.y160{bottom:823.048000pt;}
.y18f{bottom:824.217333pt;}
.yb1{bottom:829.349333pt;}
.yd6{bottom:830.952000pt;}
.y10f{bottom:834.922667pt;}
.y248{bottom:837.985333pt;}
.y15f{bottom:838.988000pt;}
.y18e{bottom:840.158667pt;}
.yc{bottom:843.370533pt;}
.y7b{bottom:847.497333pt;}
.y12{bottom:849.041333pt;}
.y247{bottom:853.925333pt;}
.y15e{bottom:854.929333pt;}
.y18d{bottom:856.098667pt;}
.yb0{bottom:858.576000pt;}
.y7a{bottom:863.437333pt;}
.y11{bottom:865.478667pt;}
.y246{bottom:869.865333pt;}
.y15d{bottom:870.869333pt;}
.y18c{bottom:872.038667pt;}
.ya3{bottom:877.704000pt;}
.y79{bottom:879.377333pt;}
.y222{bottom:881.265333pt;}
.yb{bottom:881.770533pt;}
.y10{bottom:882.114667pt;}
.y245{bottom:885.805333pt;}
.y15c{bottom:886.809333pt;}
.y1f2{bottom:893.360000pt;}
.y21a{bottom:894.948000pt;}
.y78{bottom:895.318667pt;}
.y1c3{bottom:896.384000pt;}
.y15b{bottom:902.749333pt;}
.y18b{bottom:903.805400pt;}
.y244{bottom:905.758667pt;}
.y1e5{bottom:907.042667pt;}
.y1ba{bottom:910.065333pt;}
.y77{bottom:911.258667pt;}
.y18a{bottom:915.163600pt;}
.y15a{bottom:918.689333pt;}
.ya{bottom:921.805333pt;}
.yf{bottom:923.957333pt;}
.y189{bottom:926.520533pt;}
.y76{bottom:929.632000pt;}
.y188{bottom:937.877467pt;}
.y159{bottom:944.446667pt;}
.y75{bottom:945.572000pt;}
.y187{bottom:949.235667pt;}
.y186{bottom:960.592600pt;}
.ye{bottom:961.152000pt;}
.y74{bottom:961.512000pt;}
.y156{bottom:963.574667pt;}
.y185{bottom:971.950800pt;}
.y243{bottom:977.452000pt;}
.y73{bottom:977.453333pt;}
.y184{bottom:993.573333pt;}
.h1d{height:16.574973pt;}
.h1c{height:18.147780pt;}
.h17{height:19.459600pt;}
.h1a{height:19.744891pt;}
.h1f{height:20.664363pt;}
.h1e{height:20.719778pt;}
.h15{height:22.185649pt;}
.h18{height:22.689182pt;}
.h1b{height:23.021822pt;}
.h2d{height:24.309907pt;}
.h2a{height:24.607652pt;}
.h30{height:24.616766pt;}
.he{height:25.121108pt;}
.h2e{height:25.463556pt;}
.h2b{height:25.775430pt;}
.h13{height:26.031026pt;}
.hf{height:26.313254pt;}
.h24{height:27.812461pt;}
.h2{height:28.811845pt;}
.h34{height:29.171876pt;}
.h26{height:29.357598pt;}
.h32{height:29.540107pt;}
.h28{height:29.840179pt;}
.hc{height:30.902734pt;}
.h27{height:31.457453pt;}
.h33{height:31.750738pt;}
.h31{height:31.762499pt;}
.h21{height:32.191872pt;}
.h22{height:32.655731pt;}
.h25{height:32.865024pt;}
.ha{height:33.187635pt;}
.h9{height:33.426739pt;}
.h20{height:36.127650pt;}
.h10{height:36.449833pt;}
.h36{height:38.174481pt;}
.h35{height:38.179814pt;}
.h8{height:38.628321pt;}
.h7{height:42.491308pt;}
.h23{height:45.097692pt;}
.h1{height:45.525333pt;}
.hb{height:46.319747pt;}
.h11{height:46.325081pt;}
.h3{height:68.288000pt;}
.h2c{height:92.530515pt;}
.h6{height:92.708203pt;}
.h29{height:93.663815pt;}
.h2f{height:96.686770pt;}
.hd{height:98.667665pt;}
.h12{height:114.686949pt;}
.h14{height:133.933937pt;}
.h4{height:136.576000pt;}
.h19{height:161.246810pt;}
.h16{height:165.217540pt;}
.h5{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.w5{width:239.904095pt;}
.w6{width:260.466336pt;}
.w8{width:307.297455pt;}
.w9{width:328.999244pt;}
.wb{width:329.001604pt;}
.wa{width:329.004867pt;}
.w7{width:335.859798pt;}
.w3{width:335.864058pt;}
.w4{width:335.868140pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x41{left:5.121600pt;}
.x2a{left:7.891520pt;}
.xe{left:8.786121pt;}
.x35{left:11.726741pt;}
.xd{left:12.945884pt;}
.x1a{left:13.908082pt;}
.x51{left:15.923248pt;}
.x19{left:18.368373pt;}
.x31{left:21.540747pt;}
.x17{left:27.393850pt;}
.x42{left:33.377700pt;}
.xc{left:34.379579pt;}
.x56{left:35.546050pt;}
.x23{left:38.253194pt;}
.x34{left:40.071642pt;}
.x57{left:42.811811pt;}
.x22{left:48.219024pt;}
.x1{left:57.512133pt;}
.x5b{left:62.808090pt;}
.x8{left:65.285333pt;}
.x2e{left:67.672501pt;}
.x24{left:69.674068pt;}
.x5c{left:70.833777pt;}
.x2d{left:72.034167pt;}
.x3{left:74.262667pt;}
.xa{left:75.912000pt;}
.x50{left:77.181113pt;}
.x7{left:78.569333pt;}
.x30{left:80.585665pt;}
.x32{left:82.123618pt;}
.x28{left:83.049468pt;}
.x27{left:85.462832pt;}
.x15{left:91.981333pt;}
.x29{left:94.310978pt;}
.x33{left:99.704000pt;}
.x26{left:102.424000pt;}
.x44{left:104.266667pt;}
.x58{left:107.451579pt;}
.x18{left:117.678719pt;}
.x52{left:118.611940pt;}
.x43{left:122.418667pt;}
.x4a{left:128.104000pt;}
.x45{left:136.818400pt;}
.x46{left:142.682800pt;}
.x2b{left:143.914454pt;}
.x53{left:151.032000pt;}
.x2c{left:154.893849pt;}
.x36{left:156.979071pt;}
.x21{left:162.328513pt;}
.x20{left:165.539021pt;}
.xf{left:167.886973pt;}
.x39{left:172.721130pt;}
.x1f{left:175.031170pt;}
.x9{left:180.825333pt;}
.x2{left:182.955067pt;}
.x16{left:185.708000pt;}
.x3b{left:188.061571pt;}
.x47{left:191.045200pt;}
.x3a{left:194.020792pt;}
.x10{left:205.359997pt;}
.x37{left:210.208709pt;}
.x4{left:212.382667pt;}
.x2f{left:213.873795pt;}
.x38{left:234.715247pt;}
.x48{left:239.885200pt;}
.x11{left:245.027554pt;}
.x59{left:260.838877pt;}
.x3d{left:264.994510pt;}
.x3c{left:266.326877pt;}
.x6{left:287.705333pt;}
.x12{left:293.229125pt;}
.x3e{left:294.280569pt;}
.x5{left:300.654667pt;}
.x1b{left:313.039476pt;}
.x3f{left:321.293102pt;}
.x1c{left:330.205668pt;}
.x49{left:336.608800pt;}
.xb{left:415.970667pt;}
.x25{left:417.060000pt;}
.x54{left:418.841333pt;}
.x5f{left:421.284000pt;}
.x4d{left:423.437333pt;}
.x4e{left:427.847533pt;}
.x13{left:429.253333pt;}
.x4c{left:431.015533pt;}
.x60{left:440.316000pt;}
.x14{left:442.666667pt;}
.x4b{left:461.945333pt;}
.x1e{left:463.390667pt;}
.x1d{left:474.405333pt;}
.x4f{left:494.874667pt;}
.x5a{left:514.821333pt;}
.x40{left:517.569333pt;}
.x5d{left:526.457333pt;}
.x55{left:528.476000pt;}
.x5e{left:546.149333pt;}
}


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