
/* 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_454f66df5bab.woff")format("woff");}.ff1{font-family:ff1;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_403acc422a2a.woff")format("woff");}.ff2{font-family:ff2;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_1d40caf69e74.woff")format("woff");}.ff3{font-family:ff3;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_d7067881fe17.woff")format("woff");}.ff4{font-family:ff4;line-height:1.052000;font-style:normal;font-weight: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_3af61fdfed4f.woff")format("woff");}.ff5{font-family:ff5;line-height:0.904000;font-style:normal;font-weight: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_efe5032ba668.woff")format("woff");}.ff6{font-family:ff6;line-height:0.687000;font-style:normal;font-weight: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_980bfb46342d.woff")format("woff");}.ff7{font-family:ff7;line-height:0.848000;font-style:normal;font-weight: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_d29ce814afbd.woff")format("woff");}.ff8{font-family:ff8;line-height:0.956000;font-style:normal;font-weight: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_b805e29c7272.woff")format("woff");}.ff9{font-family:ff9;line-height:0.438000;font-style:normal;font-weight: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_c24b6d147b9e.woff")format("woff");}.ffa{font-family:ffa;line-height:0.830000;font-style:normal;font-weight: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_ec8ec0023b73.woff")format("woff");}.ffb{font-family:ffb;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_751300e1a313.woff")format("woff");}.ffc{font-family:ffc;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_ddaa903d265c.woff")format("woff");}.ffd{font-family:ffd;line-height:0.818000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_4161f6dd3637.woff")format("woff");}.ffe{font-family:ffe;line-height:0.517000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_12c96a3fb9ee.woff")format("woff");}.fff{font-family:fff;line-height:0.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:ff10;src:url("fonts/font_0015_076992d9f0d6.woff")format("woff");}.ff10{font-family:ff10;line-height:0.775086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_560113b54f2e.woff")format("woff");}.ff11{font-family:ff11;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_fd58753085ca.woff")format("woff");}.ff12{font-family:ff12;line-height:1.443000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_5693a21a9c84.woff")format("woff");}.ff13{font-family:ff13;line-height:0.851000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_0ab2ea429516.woff")format("woff");}.ff14{font-family:ff14;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_0aa573b28dd5.woff")format("woff");}.ff15{font-family:ff15;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_cd7b8b22c999.woff")format("woff");}.ff16{font-family:ff16;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_710170f6970f.woff")format("woff");}.ff17{font-family:ff17;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_b21fecb16206.woff")format("woff");}.ff18{font-family:ff18;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_e0b5f519286b.woff")format("woff");}.ff19{font-family:ff19;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_b35a9d459ea4.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_151d5b6a3b35.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_142bda839e06.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_ec7468892637.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.356000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_f955f384aabe.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_6fd473cc709e.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_d28f885ab1cb.woff")format("woff");}.ff20{font-family:ff20;line-height:0.051000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.416671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416671,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-47.293230px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:29.249887px;}
.v2{vertical-align:37.154278px;}
.v4{vertical-align:43.871634px;}
.v1{vertical-align:46.165354px;}
.v6{vertical-align:47.272784px;}
.v7{vertical-align:84.410998px;}
.ls57{letter-spacing:-0.381761px;}
.ls3b{letter-spacing:-0.089437px;}
.ls59{letter-spacing:-0.070793px;}
.ls12{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.011955px;}
.ls74{letter-spacing:0.014346px;}
.ls69{letter-spacing:0.038257px;}
.ls58{letter-spacing:0.047720px;}
.lsf{letter-spacing:0.047820px;}
.lsd{letter-spacing:0.052603px;}
.ls4b{letter-spacing:0.071731px;}
.ls1b{letter-spacing:0.083686px;}
.ls77{letter-spacing:0.133899px;}
.ls64{letter-spacing:0.137484px;}
.ls6c{letter-spacing:0.138681px;}
.lse{letter-spacing:0.143461px;}
.ls6d{letter-spacing:0.143464px;}
.ls9{letter-spacing:0.144659px;}
.ls63{letter-spacing:0.149818px;}
.ls7{letter-spacing:0.166559px;}
.ls10{letter-spacing:0.178847px;}
.ls67{letter-spacing:0.185304px;}
.ls1f{letter-spacing:0.197259px;}
.ls71{letter-spacing:0.224760px;}
.ls4{letter-spacing:0.230104px;}
.ls1a{letter-spacing:0.233125px;}
.ls76{letter-spacing:0.239106px;}
.ls6a{letter-spacing:0.245447px;}
.ls1{letter-spacing:0.248670px;}
.ls68{letter-spacing:0.253452px;}
.ls5{letter-spacing:0.256441px;}
.ls1e{letter-spacing:0.262984px;}
.ls27{letter-spacing:0.270793px;}
.ls66{letter-spacing:0.280945px;}
.ls1c{letter-spacing:0.316811px;}
.ls73{letter-spacing:0.320402px;}
.ls1d{letter-spacing:0.364631px;}
.ls26{letter-spacing:0.387442px;}
.ls13{letter-spacing:1.906842px;}
.ls14{letter-spacing:1.909830px;}
.ls15{letter-spacing:2.131000px;}
.ls16{letter-spacing:2.154910px;}
.ls3{letter-spacing:2.564373px;}
.ls11{letter-spacing:6.641720px;}
.ls0{letter-spacing:7.570096px;}
.ls32{letter-spacing:7.617917px;}
.ls31{letter-spacing:7.660956px;}
.ls2{letter-spacing:7.732688px;}
.ls79{letter-spacing:7.737470px;}
.ls78{letter-spacing:7.804420px;}
.ls34{letter-spacing:7.957448px;}
.ls6f{letter-spacing:8.427429px;}
.ls4e{letter-spacing:9.324994px;}
.ls4a{letter-spacing:9.420635px;}
.ls42{letter-spacing:9.462477px;}
.ls29{letter-spacing:9.486388px;}
.ls49{letter-spacing:9.498343px;}
.ls17{letter-spacing:9.522253px;}
.ls18{letter-spacing:9.665715px;}
.ls48{letter-spacing:9.725490px;}
.ls6e{letter-spacing:9.761355px;}
.ls4c{letter-spacing:9.785266px;}
.ls4f{letter-spacing:9.803198px;}
.ls4d{letter-spacing:9.839064px;}
.ls19{letter-spacing:9.862974px;}
.lsa{letter-spacing:10.297076px;}
.ls8{letter-spacing:10.461461px;}
.ls6{letter-spacing:10.474612px;}
.lsc{letter-spacing:10.638997px;}
.lsb{letter-spacing:10.803382px;}
.ls72{letter-spacing:20.998289px;}
.ls75{letter-spacing:21.006857px;}
.ls30{letter-spacing:21.645000px;}
.ls5f{letter-spacing:22.915123px;}
.ls65{letter-spacing:23.952083px;}
.ls38{letter-spacing:24.043460px;}
.ls3d{letter-spacing:27.397412px;}
.ls44{letter-spacing:27.874538px;}
.ls2d{letter-spacing:34.379429px;}
.ls5a{letter-spacing:37.153885px;}
.ls70{letter-spacing:38.728611px;}
.ls20{letter-spacing:40.095111px;}
.ls5b{letter-spacing:42.035496px;}
.ls35{letter-spacing:47.024688px;}
.ls3c{letter-spacing:50.636812px;}
.ls2b{letter-spacing:54.729237px;}
.ls22{letter-spacing:63.918964px;}
.ls3a{letter-spacing:83.980967px;}
.ls37{letter-spacing:84.280415px;}
.ls51{letter-spacing:84.684535px;}
.ls3e{letter-spacing:86.248038px;}
.ls45{letter-spacing:88.924462px;}
.ls21{letter-spacing:103.179804px;}
.ls5d{letter-spacing:107.826396px;}
.ls5e{letter-spacing:109.449551px;}
.ls61{letter-spacing:119.643860px;}
.ls50{letter-spacing:135.860158px;}
.ls41{letter-spacing:143.271471px;}
.ls46{letter-spacing:144.072287px;}
.ls33{letter-spacing:146.175062px;}
.ls23{letter-spacing:149.345158px;}
.ls2f{letter-spacing:150.682500px;}
.ls25{letter-spacing:151.290595px;}
.ls54{letter-spacing:162.928556px;}
.ls2c{letter-spacing:165.684283px;}
.ls40{letter-spacing:175.808506px;}
.ls62{letter-spacing:177.024518px;}
.ls2e{letter-spacing:192.307500px;}
.ls6b{letter-spacing:199.371365px;}
.ls2a{letter-spacing:204.350706px;}
.ls55{letter-spacing:208.942721px;}
.ls53{letter-spacing:216.394835px;}
.ls36{letter-spacing:222.776476px;}
.ls3f{letter-spacing:232.606709px;}
.ls43{letter-spacing:232.635780px;}
.ls24{letter-spacing:232.909460px;}
.ls39{letter-spacing:233.733610px;}
.ls56{letter-spacing:302.181948px;}
.ls60{letter-spacing:405.866217px;}
.ls5c{letter-spacing:410.371665px;}
.ls47{letter-spacing:435.573287px;}
.ls52{letter-spacing:1344.989328px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8f{word-spacing:-1345.048952px;}
.ws99{word-spacing:-470.046465px;}
.ws9e{word-spacing:-465.541017px;}
.ws97{word-spacing:-435.614930px;}
.ws75{word-spacing:-293.358010px;}
.ws80{word-spacing:-292.231109px;}
.ws92{word-spacing:-195.563181px;}
.ws7d{word-spacing:-175.868130px;}
.ws8d{word-spacing:-157.235505px;}
.ws9f{word-spacing:-144.979927px;}
.ws9a{word-spacing:-140.480447px;}
.ws7c{word-spacing:-86.308129px;}
.ws6d{word-spacing:-84.340091px;}
.ws76{word-spacing:-84.040592px;}
.ws6b{word-spacing:-71.641038px;}
.ws7b{word-spacing:-60.090600px;}
.ws6c{word-spacing:-59.676000px;}
.ws8e{word-spacing:-25.757741px;}
.ws20{word-spacing:-10.704751px;}
.ws19{word-spacing:-10.540366px;}
.ws1f{word-spacing:-10.362830px;}
.wscf{word-spacing:-9.922750px;}
.ws57{word-spacing:-9.582029px;}
.ws91{word-spacing:-9.522253px;}
.wsee{word-spacing:-7.780509px;}
.wsa8{word-spacing:-7.665738px;}
.ws69{word-spacing:-7.028639px;}
.ws3{word-spacing:-2.624149px;}
.ws37{word-spacing:-2.184798px;}
.ws34{word-spacing:-1.939718px;}
.ws32{word-spacing:-1.936729px;}
.ws1e{word-spacing:-0.065754px;}
.ws2a{word-spacing:-0.059776px;}
.ws6a{word-spacing:-0.059676px;}
.ws9c{word-spacing:-0.059675px;}
.ws1{word-spacing:-0.047821px;}
.ws18{word-spacing:-0.043831px;}
.ws3b{word-spacing:-0.040647px;}
.ws56{word-spacing:-0.039846px;}
.ws8{word-spacing:-0.034864px;}
.wsce{word-spacing:-0.031876px;}
.ws43{word-spacing:0.000000px;}
.ws36{word-spacing:2.668981px;}
.ws3d{word-spacing:6.397838px;}
.ws3e{word-spacing:6.410032px;}
.ws38{word-spacing:6.450679px;}
.ws3a{word-spacing:6.479132px;}
.ws3f{word-spacing:6.483196px;}
.ws39{word-spacing:6.495391px;}
.ws3c{word-spacing:6.507585px;}
.ws33{word-spacing:6.605137px;}
.ws40{word-spacing:6.645784px;}
.ws35{word-spacing:6.662043px;}
.ws10b{word-spacing:7.287951px;}
.wsfe{word-spacing:7.354901px;}
.ws107{word-spacing:7.407504px;}
.ws103{word-spacing:7.412286px;}
.wsd2{word-spacing:7.450543px;}
.ws10d{word-spacing:7.455325px;}
.ws10a{word-spacing:7.464889px;}
.ws116{word-spacing:7.474454px;}
.wsfd{word-spacing:7.479236px;}
.wsfb{word-spacing:7.493582px;}
.wsd4{word-spacing:7.498364px;}
.wsca{word-spacing:7.503146px;}
.wsa{word-spacing:7.507928px;}
.ws109{word-spacing:7.512711px;}
.wsea{word-spacing:7.517493px;}
.ws111{word-spacing:7.522275px;}
.ws118{word-spacing:7.524297px;}
.wse9{word-spacing:7.527057px;}
.wsf8{word-spacing:7.531839px;}
.ws15{word-spacing:7.536621px;}
.ws105{word-spacing:7.541403px;}
.ws42{word-spacing:7.546185px;}
.ws100{word-spacing:7.550967px;}
.wsf9{word-spacing:7.555750px;}
.wsb{word-spacing:7.560532px;}
.wsd{word-spacing:7.565314px;}
.ws64{word-spacing:7.570096px;}
.wsa7{word-spacing:7.574878px;}
.wscc{word-spacing:7.579660px;}
.wsd3{word-spacing:7.584442px;}
.ws115{word-spacing:7.589224px;}
.wsf{word-spacing:7.594007px;}
.wsa6{word-spacing:7.598789px;}
.wsd5{word-spacing:7.608353px;}
.wseb{word-spacing:7.613135px;}
.wsec{word-spacing:7.617917px;}
.wsdb{word-spacing:7.622699px;}
.ws0{word-spacing:7.627481px;}
.wsb2{word-spacing:7.632264px;}
.ws13{word-spacing:7.637046px;}
.wse1{word-spacing:7.641828px;}
.ws10{word-spacing:7.646610px;}
.ws41{word-spacing:7.651392px;}
.ws10f{word-spacing:7.656174px;}
.wsa5{word-spacing:7.660956px;}
.ws82{word-spacing:7.665738px;}
.wsfa{word-spacing:7.670520px;}
.ws14{word-spacing:7.675303px;}
.wsc{word-spacing:7.680085px;}
.ws85{word-spacing:7.684867px;}
.wsae{word-spacing:7.689649px;}
.wse3{word-spacing:7.694431px;}
.ws113{word-spacing:7.699213px;}
.ws83{word-spacing:7.708777px;}
.ws110{word-spacing:7.713560px;}
.ws108{word-spacing:7.718342px;}
.ws119{word-spacing:7.727906px;}
.wsda{word-spacing:7.732688px;}
.ws114{word-spacing:7.742252px;}
.wsa9{word-spacing:7.747034px;}
.ws10e{word-spacing:7.751817px;}
.wsed{word-spacing:7.756599px;}
.wsf0{word-spacing:7.761381px;}
.wse5{word-spacing:7.766163px;}
.wse2{word-spacing:7.770945px;}
.ws102{word-spacing:7.775727px;}
.wse{word-spacing:7.780509px;}
.ws104{word-spacing:7.790073px;}
.wsaf{word-spacing:7.804420px;}
.wscb{word-spacing:7.818766px;}
.wsb1{word-spacing:7.823548px;}
.wsff{word-spacing:7.833113px;}
.wsb0{word-spacing:7.837895px;}
.ws112{word-spacing:7.847459px;}
.wsac{word-spacing:7.852241px;}
.wsb3{word-spacing:7.857023px;}
.wse0{word-spacing:7.866587px;}
.ws117{word-spacing:7.871370px;}
.wsfc{word-spacing:7.876152px;}
.wse4{word-spacing:7.909626px;}
.ws101{word-spacing:7.914409px;}
.wsd6{word-spacing:7.947883px;}
.wsf1{word-spacing:7.952666px;}
.ws12{word-spacing:7.962230px;}
.ws84{word-spacing:8.014833px;}
.ws10c{word-spacing:8.033962px;}
.ws106{word-spacing:8.053090px;}
.ws11{word-spacing:8.129604px;}
.ws5d{word-spacing:9.354881px;}
.wsde{word-spacing:9.366837px;}
.ws44{word-spacing:9.378792px;}
.ws4a{word-spacing:9.384769px;}
.ws4e{word-spacing:9.390747px;}
.ws81{word-spacing:9.396724px;}
.ws2f{word-spacing:9.402702px;}
.ws79{word-spacing:9.414657px;}
.ws66{word-spacing:9.420635px;}
.ws45{word-spacing:9.426612px;}
.ws47{word-spacing:9.438567px;}
.ws5c{word-spacing:9.444545px;}
.ws4b{word-spacing:9.450522px;}
.ws7{word-spacing:9.462477px;}
.ws67{word-spacing:9.468455px;}
.ws48{word-spacing:9.474433px;}
.ws58{word-spacing:9.480410px;}
.ws31{word-spacing:9.486388px;}
.ws9{word-spacing:9.492365px;}
.ws2e{word-spacing:9.498343px;}
.ws46{word-spacing:9.510298px;}
.ws5f{word-spacing:9.516276px;}
.ws62{word-spacing:9.522253px;}
.ws54{word-spacing:9.528231px;}
.ws55{word-spacing:9.534208px;}
.ws29{word-spacing:9.540186px;}
.ws30{word-spacing:9.546163px;}
.ws2b{word-spacing:9.558118px;}
.ws49{word-spacing:9.564096px;}
.ws2c{word-spacing:9.570074px;}
.ws4d{word-spacing:9.576051px;}
.ws53{word-spacing:9.582029px;}
.ws73{word-spacing:9.588006px;}
.ws65{word-spacing:9.593984px;}
.ws51{word-spacing:9.599961px;}
.wsc7{word-spacing:9.605939px;}
.wsc8{word-spacing:9.611916px;}
.ws5e{word-spacing:9.617894px;}
.ws50{word-spacing:9.623872px;}
.ws2d{word-spacing:9.635827px;}
.ws68{word-spacing:9.641804px;}
.ws72{word-spacing:9.647782px;}
.wsa2{word-spacing:9.659737px;}
.ws74{word-spacing:9.665715px;}
.ws4f{word-spacing:9.671692px;}
.ws7a{word-spacing:9.683647px;}
.wsab{word-spacing:9.689625px;}
.ws63{word-spacing:9.695602px;}
.wsa4{word-spacing:9.707557px;}
.wsf4{word-spacing:9.713535px;}
.ws59{word-spacing:9.719513px;}
.wsa3{word-spacing:9.731468px;}
.ws6{word-spacing:9.743423px;}
.ws5b{word-spacing:9.755378px;}
.ws4c{word-spacing:9.761355px;}
.wsdd{word-spacing:9.791243px;}
.ws60{word-spacing:9.803198px;}
.ws5a{word-spacing:9.809176px;}
.ws52{word-spacing:9.827109px;}
.wsf6{word-spacing:9.839064px;}
.wsc6{word-spacing:9.862974px;}
.wsd0{word-spacing:9.880907px;}
.wsc9{word-spacing:9.886884px;}
.wsef{word-spacing:9.916772px;}
.wsaa{word-spacing:9.928727px;}
.ws61{word-spacing:9.964593px;}
.wsdf{word-spacing:9.988503px;}
.ws24{word-spacing:10.323378px;}
.ws16{word-spacing:10.329953px;}
.ws23{word-spacing:10.356255px;}
.ws26{word-spacing:10.382557px;}
.ws1b{word-spacing:10.402283px;}
.ws1a{word-spacing:10.408858px;}
.ws17{word-spacing:10.422009px;}
.ws1d{word-spacing:10.428584px;}
.ws1c{word-spacing:10.441735px;}
.ws21{word-spacing:10.527215px;}
.ws22{word-spacing:10.533791px;}
.ws27{word-spacing:10.606120px;}
.ws25{word-spacing:10.671874px;}
.ws28{word-spacing:11.319089px;}
.wsf7{word-spacing:11.340608px;}
.wsf5{word-spacing:11.527107px;}
.wsd1{word-spacing:11.584511px;}
.ws4{word-spacing:17.140170px;}
.ws5{word-spacing:17.312325px;}
.ws77{word-spacing:18.704174px;}
.ws95{word-spacing:19.720356px;}
.wsa1{word-spacing:68.226199px;}
.ws9d{word-spacing:72.731646px;}
.wsad{word-spacing:123.431299px;}
.ws93{word-spacing:126.989311px;}
.wsd7{word-spacing:150.675037px;}
.ws94{word-spacing:155.126310px;}
.wscd{word-spacing:165.810447px;}
.ws87{word-spacing:173.667470px;}
.wsbe{word-spacing:176.178083px;}
.wsc4{word-spacing:178.712607px;}
.wsc5{word-spacing:179.238640px;}
.wsbd{word-spacing:180.147243px;}
.wsb9{word-spacing:181.151488px;}
.wsc2{word-spacing:182.155733px;}
.ws86{word-spacing:184.891106px;}
.ws8b{word-spacing:184.910234px;}
.wsb6{word-spacing:185.120647px;}
.wsb7{word-spacing:186.124893px;}
.wsbf{word-spacing:189.137628px;}
.wsb4{word-spacing:190.094052px;}
.wsc0{word-spacing:190.141873px;}
.wsb8{word-spacing:194.111033px;}
.wsbb{word-spacing:195.115278px;}
.ws8a{word-spacing:196.454272px;}
.wsb5{word-spacing:197.075947px;}
.wsba{word-spacing:199.084438px;}
.ws88{word-spacing:201.705039px;}
.wsc1{word-spacing:203.101419px;}
.wsc3{word-spacing:204.105664px;}
.ws89{word-spacing:208.022220px;}
.wsbc{word-spacing:208.074823px;}
.ws70{word-spacing:209.114378px;}
.ws8c{word-spacing:215.635355px;}
.ws6f{word-spacing:221.591668px;}
.wse6{word-spacing:347.837062px;}
.wse7{word-spacing:348.176593px;}
.wse8{word-spacing:348.855654px;}
.ws96{word-spacing:468.729444px;}
.wsd9{word-spacing:484.787415px;}
.wsdc{word-spacing:492.171008px;}
.wsf3{word-spacing:534.110201px;}
.wsf2{word-spacing:539.910912px;}
.wsd8{word-spacing:549.417767px;}
.ws90{word-spacing:566.533161px;}
.ws98{word-spacing:620.809457px;}
.ws9b{word-spacing:757.452236px;}
.wsa0{word-spacing:759.707944px;}
.ws7f{word-spacing:767.908610px;}
.ws2{word-spacing:1110.556510px;}
.ws6e{word-spacing:1195.519146px;}
.ws7e{word-spacing:1250.299818px;}
.ws78{word-spacing:1364.152610px;}
.ws71{word-spacing:1543.233295px;}
._22{margin-left:-2767.466526px;}
._34{margin-left:-1609.465161px;}
._3a{margin-left:-1606.940917px;}
._2e{margin-left:-939.036685px;}
._9{margin-left:-932.294278px;}
._38{margin-left:-930.025791px;}
._8{margin-left:-738.896297px;}
._1e{margin-left:-636.740892px;}
._b{margin-left:-626.616669px;}
._14{margin-left:-609.737002px;}
._2f{margin-left:-580.981918px;}
._c{margin-left:-578.249356px;}
._39{margin-left:-576.482438px;}
._12{margin-left:-475.856374px;}
._2c{margin-left:-435.560794px;}
._21{margin-left:-352.058232px;}
._24{margin-left:-216.001314px;}
._4d{margin-left:-199.371365px;}
._25{margin-left:-187.876484px;}
._29{margin-left:-144.061198px;}
._23{margin-left:-138.376308px;}
._10{margin-left:-132.258844px;}
._13{margin-left:-114.753120px;}
._11{margin-left:-91.106083px;}
._e{margin-left:-89.462885px;}
._1f{margin-left:-85.066131px;}
._32{margin-left:-83.687940px;}
._30{margin-left:-81.241273px;}
._20{margin-left:-56.857828px;}
._33{margin-left:-52.919613px;}
._f{margin-left:-51.040956px;}
._5a{margin-left:-17.992456px;}
._2d{margin-left:-13.504805px;}
._4{margin-left:-10.474612px;}
._27{margin-left:-9.462477px;}
._3d{margin-left:-7.264040px;}
._26{margin-left:-1.022163px;}
._6{width:1.021433px;}
._31{width:2.249740px;}
._a{width:4.499570px;}
._37{width:5.627334px;}
._15{width:7.594007px;}
._1{width:9.105156px;}
._5{width:10.329953px;}
._3{width:11.395792px;}
._2{width:12.586540px;}
._56{width:13.782070px;}
._0{width:18.872479px;}
._2a{width:31.787592px;}
._28{width:46.145395px;}
._59{width:75.364258px;}
._3b{width:95.706444px;}
._44{width:119.543436px;}
._3f{width:121.795814px;}
._47{width:124.306427px;}
._41{width:126.687923px;}
._42{width:127.706515px;}
._35{width:129.482381px;}
._3e{width:131.790445px;}
._40{width:134.511471px;}
._45{width:135.530063px;}
._46{width:136.548654px;}
._43{width:140.632585px;}
._4e{width:146.581542px;}
._48{width:149.474725px;}
._4c{width:166.360391px;}
._1b{width:193.761938px;}
._17{width:200.748615px;}
._1a{width:201.752861px;}
._16{width:205.722020px;}
._18{width:208.070041px;}
._4a{width:211.336229px;}
._1c{width:212.703915px;}
._19{width:214.712406px;}
._4b{width:216.099221px;}
._1d{width:230.871189px;}
._57{width:344.891277px;}
._54{width:349.247788px;}
._53{width:365.215287px;}
._55{width:366.253007px;}
._49{width:408.833003px;}
._50{width:484.816108px;}
._51{width:492.218829px;}
._58{width:539.958733px;}
._4f{width:549.465588px;}
._52{width:764.378843px;}
._2b{width:765.771373px;}
._36{width:982.945403px;}
._3c{width:985.195143px;}
._d{width:1204.418842px;}
._7{width:1679.054935px;}
.fc2{color:rgb(210,32,39);}
.fc1{color:rgb(47,122,181);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:27.095400px;}
.fs8{font-size:29.887800px;}
.fs16{font-size:31.876200px;}
.fs3{font-size:34.864200px;}
.fsb{font-size:35.805600px;}
.fsa{font-size:39.846000px;}
.fs9{font-size:40.647000px;}
.fsf{font-size:41.625000px;}
.fs14{font-size:41.643000px;}
.fsd{font-size:41.660400px;}
.fs11{font-size:41.991000px;}
.fs6{font-size:43.831200px;}
.fs0{font-size:47.821200px;}
.fs17{font-size:48.246000px;}
.fse{font-size:59.624400px;}
.fs13{font-size:59.650200px;}
.fs15{font-size:59.674800px;}
.fsc{font-size:59.676000px;}
.fs1{font-size:59.775600px;}
.fs10{font-size:60.090600px;}
.fs5{font-size:65.754000px;}
.fs7{font-size:71.730600px;}
.fs12{font-size:81.034200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y277{bottom:1.027950px;}
.yd0{bottom:3.819750px;}
.y99{bottom:39.968550px;}
.y5a{bottom:63.439350px;}
.ydd{bottom:73.984200px;}
.y128{bottom:76.446811px;}
.ydc{bottom:76.450350px;}
.y274{bottom:76.450583px;}
.yda{bottom:76.450669px;}
.y19f{bottom:76.451423px;}
.y161{bottom:76.451775px;}
.y213{bottom:76.451832px;}
.y118{bottom:76.452568px;}
.y98{bottom:76.453047px;}
.y2ae{bottom:80.447585px;}
.ydb{bottom:83.083500px;}
.yd9{bottom:94.393809px;}
.y160{bottom:95.074863px;}
.y117{bottom:95.075657px;}
.y212{bottom:95.160100px;}
.y97{bottom:95.246495px;}
.y273{bottom:95.329212px;}
.y2ad{bottom:95.414425px;}
.y127{bottom:95.666161px;}
.y19e{bottom:104.853800px;}
.y45{bottom:106.729014px;}
.yd8{bottom:109.785900px;}
.y2ac{bottom:110.381265px;}
.yd7{bottom:112.336950px;}
.y15f{bottom:113.783132px;}
.y116{bottom:113.783925px;}
.y211{bottom:113.953549px;}
.y96{bottom:114.125124px;}
.y272{bottom:114.293021px;}
.y126{bottom:114.970691px;}
.y19d{bottom:124.158330px;}
.y2ab{bottom:125.348105px;}
.y44{bottom:126.287591px;}
.y15e{bottom:132.491400px;}
.y115{bottom:132.492193px;}
.y210{bottom:132.661817px;}
.y95{bottom:132.918573px;}
.y271{bottom:133.171650px;}
.y125{bottom:134.190040px;}
.yd6{bottom:136.352700px;}
.yd5{bottom:138.602700px;}
.y15d{bottom:139.124400px;}
.y2aa{bottom:140.230062px;}
.y43{bottom:144.995859px;}
.y114{bottom:151.115282px;}
.y94{bottom:151.797202px;}
.y19c{bottom:152.560706px;}
.y124{bottom:153.494570px;}
.y2a9{bottom:155.196902px;}
.y243{bottom:155.791788px;}
.yd4{bottom:160.588950px;}
.yd3{bottom:162.838950px;}
.y42{bottom:164.554436px;}
.y112{bottom:167.357550px;}
.y242{bottom:169.228350px;}
.y113{bottom:169.823550px;}
.y111{bottom:169.824032px;}
.y15b{bottom:169.828007px;}
.y2a8{bottom:170.163743px;}
.y270{bottom:170.503950px;}
.y93{bottom:170.590650px;}
.y20f{bottom:172.290051px;}
.y123{bottom:172.713920px;}
.y15c{bottom:176.456384px;}
.y41{bottom:184.113012px;}
.y2a7{bottom:185.046227px;}
.y10f{bottom:186.066150px;}
.yd2{bottom:187.767462px;}
.y110{bottom:188.532300px;}
.y10e{bottom:188.535574px;}
.y15a{bottom:188.536275px;}
.y92{bottom:189.469279px;}
.y19b{bottom:189.893557px;}
.y20d{bottom:191.083500px;}
.y20b{bottom:191.087615px;}
.y122{bottom:192.018450px;}
.y20e{bottom:197.716500px;}
.y20c{bottom:197.716803px;}
.y2a6{bottom:200.013067px;}
.y40{bottom:203.671588px;}
.yd1{bottom:206.390550px;}
.y10d{bottom:207.158662px;}
.y159{bottom:207.159363px;}
.y91{bottom:208.262728px;}
.y19a{bottom:209.281773px;}
.y20a{bottom:209.795883px;}
.y121{bottom:211.237800px;}
.y2a5{bottom:214.979907px;}
.y26f{bottom:220.762777px;}
.ycf{bottom:221.187000px;}
.yce{bottom:222.563250px;}
.y3f{bottom:223.230164px;}
.ycd{bottom:225.006750px;}
.ycc{bottom:225.099469px;}
.y10c{bottom:225.866931px;}
.y158{bottom:225.867632px;}
.y90{bottom:227.141357px;}
.y199{bottom:228.586303px;}
.y209{bottom:228.589332px;}
.y2a4{bottom:229.946747px;}
.y26e{bottom:239.726586px;}
.y3e{bottom:242.873921px;}
.ycb{bottom:243.042609px;}
.y10b{bottom:244.575199px;}
.y157{bottom:244.575900px;}
.y2a3{bottom:244.828705px;}
.y8f{bottom:245.934805px;}
.y198{bottom:247.294571px;}
.y208{bottom:247.297601px;}
.y120{bottom:248.569950px;}
.y26d{bottom:258.349674px;}
.yca{bottom:258.434550px;}
.y2a2{bottom:259.795545px;}
.yc9{bottom:260.985750px;}
.y3d{bottom:262.432497px;}
.y10a{bottom:263.198287px;}
.y156{bottom:263.198988px;}
.y8e{bottom:264.728254px;}
.y207{bottom:266.091049px;}
.y2a1{bottom:274.762385px;}
.y26c{bottom:277.313483px;}
.y109{bottom:281.906556px;}
.y155{bottom:281.907257px;}
.y3c{bottom:281.991074px;}
.y8d{bottom:283.606883px;}
.yc4{bottom:283.702050px;}
.y206{bottom:284.884498px;}
.y2a0{bottom:289.729225px;}
.yc6{bottom:293.264550px;}
.yc8{bottom:295.514550px;}
.yc5{bottom:295.515134px;}
.y196{bottom:296.192100px;}
.y26b{bottom:296.192112px;}
.y195{bottom:298.658250px;}
.y193{bottom:298.659034px;}
.y108{bottom:300.614824px;}
.y154{bottom:300.615525px;}
.y3b{bottom:301.549650px;}
.y8c{bottom:302.400332px;}
.y205{bottom:303.592766px;}
.yc7{bottom:304.233778px;}
.y29f{bottom:304.611182px;}
.y197{bottom:305.290934px;}
.y194{bottom:305.291250px;}
.y11f{bottom:305.714290px;}
.y2e7{bottom:308.097777px;}
.y26a{bottom:315.070741px;}
.y190{bottom:318.046724px;}
.y192{bottom:318.047250px;}
.y107{bottom:319.237912px;}
.y153{bottom:319.238613px;}
.y29e{bottom:319.578022px;}
.y8b{bottom:321.108600px;}
.y204{bottom:322.386215px;}
.y2e6{bottom:322.979735px;}
.y191{bottom:324.680250px;}
.y11e{bottom:325.018820px;}
.yc3{bottom:329.358037px;}
.y269{bottom:334.034550px;}
.y267{bottom:334.034621px;}
.y29d{bottom:334.544862px;}
.y18f{bottom:337.351254px;}
.y106{bottom:337.946181px;}
.y2e5{bottom:337.946575px;}
.y152{bottom:337.946882px;}
.y3a{bottom:338.881800px;}
.y268{bottom:340.667700px;}
.y203{bottom:341.009303px;}
.y11d{bottom:344.238170px;}
.yc2{bottom:347.301178px;}
.y29c{bottom:349.426820px;}
.y265{bottom:350.447250px;}
.y264{bottom:352.913250px;}
.y262{bottom:352.913353px;}
.y2e4{bottom:352.913415px;}
.y151{bottom:356.655150px;}
.y18e{bottom:356.739470px;}
.y8a{bottom:358.440900px;}
.y266{bottom:359.546084px;}
.y263{bottom:359.546400px;}
.y11c{bottom:363.542700px;}
.y29b{bottom:364.393660px;}
.yc1{bottom:365.244319px;}
.y2e3{bottom:367.880255px;}
.y261{bottom:371.877162px;}
.y18d{bottom:376.044000px;}
.y105{bottom:376.044159px;}
.y29a{bottom:379.360500px;}
.y202{bottom:380.722717px;}
.y36{bottom:381.826650px;}
.y11b{bottom:382.762050px;}
.y2e2{bottom:382.762212px;}
.yc0{bottom:383.187459px;}
.y38{bottom:384.547950px;}
.y35{bottom:384.553949px;}
.y260{bottom:390.755791px;}
.y39{bottom:391.861350px;}
.y37{bottom:391.861803px;}
.y104{bottom:393.987300px;}
.y2e1{bottom:397.729052px;}
.ybe{bottom:398.579400px;}
.y201{bottom:399.516166px;}
.ybf{bottom:401.130600px;}
.ybd{bottom:401.130759px;}
.y34{bottom:404.707550px;}
.y89{bottom:407.084467px;}
.y25d{bottom:407.168400px;}
.y299{bottom:407.763600px;}
.y25e{bottom:409.719600px;}
.y25c{bottom:409.721727px;}
.y2e0{bottom:412.695893px;}
.y25f{bottom:416.352750px;}
.y200{bottom:418.224434px;}
.y103{bottom:418.870333px;}
.ybc{bottom:419.073900px;}
.y18c{bottom:419.499632px;}
.y33{bottom:424.946632px;}
.y88{bottom:425.877916px;}
.y2df{bottom:427.578699px;}
.y25b{bottom:428.344815px;}
.y18b{bottom:435.996750px;}
.y189{bottom:435.997214px;}
.y1ff{bottom:437.017883px;}
.y1fc{bottom:438.378332px;}
.y102{bottom:440.639700px;}
.y18a{bottom:441.269250px;}
.yb3{bottom:441.931831px;}
.y2de{bottom:442.545539px;}
.yb5{bottom:444.747046px;}
.y87{bottom:444.756545px;}
.y32{bottom:445.100233px;}
.y25a{bottom:447.308624px;}
.yb8{bottom:448.688100px;}
.y298{bottom:450.793982px;}
.y188{bottom:452.409450px;}
.y186{bottom:452.409764px;}
.y1fb{bottom:454.875450px;}
.y1f9{bottom:454.875914px;}
.y1fe{bottom:455.726151px;}
.y2dd{bottom:457.512379px;}
.y187{bottom:457.681800px;}
.yb4{bottom:457.695246px;}
.y1fa{bottom:460.147950px;}
.yb9{bottom:460.510280px;}
.yb1{bottom:460.792200px;}
.yb7{bottom:462.761739px;}
.ybb{bottom:462.762600px;}
.y86{bottom:463.549994px;}
.y101{bottom:463.719759px;}
.y31{bottom:465.253834px;}
.y259{bottom:466.187253px;}
.y185{bottom:468.822000px;}
.y183{bottom:468.822482px;}
.yb6{bottom:469.236585px;}
.y297{bottom:469.502250px;}
.y1f8{bottom:471.288150px;}
.y1f6{bottom:471.288464px;}
.y150{bottom:471.798300px;}
.yb2{bottom:472.051800px;}
.y2dc{bottom:472.479220px;}
.y184{bottom:474.179400px;}
.y1fd{bottom:474.519600px;}
.y1f7{bottom:476.560500px;}
.y100{bottom:481.662900px;}
.y85{bottom:482.428622px;}
.yba{bottom:482.747560px;}
.y180{bottom:483.278700px;}
.y258{bottom:484.895522px;}
.y182{bottom:485.319600px;}
.y17f{bottom:485.319914px;}
.y30{bottom:485.407435px;}
.y2db{bottom:487.361177px;}
.y1f5{bottom:487.700700px;}
.y1f3{bottom:487.701182px;}
.y14f{bottom:488.219174px;}
.y181{bottom:490.591897px;}
.y1f4{bottom:493.058100px;}
.y84{bottom:501.222071px;}
.y17e{bottom:501.732150px;}
.y17c{bottom:501.732614px;}
.y1f0{bottom:502.157400px;}
.y2da{bottom:502.328017px;}
.yb0{bottom:503.948400px;}
.y1f2{bottom:504.198300px;}
.y1ef{bottom:504.198614px;}
.y14e{bottom:504.631409px;}
.y2f{bottom:505.646516px;}
.y296{bottom:506.834400px;}
.y17d{bottom:507.004650px;}
.yfd{bottom:507.542384px;}
.yf9{bottom:507.542550px;}
.y1f1{bottom:509.470597px;}
.yfb{bottom:511.480954px;}
.y179{bottom:516.188850px;}
.yff{bottom:516.546642px;}
.y2d9{bottom:517.294857px;}
.y82{bottom:517.549500px;}
.y17b{bottom:518.144850px;}
.y178{bottom:518.145164px;}
.y81{bottom:520.100700px;}
.y7f{bottom:520.103871px;}
.yf7{bottom:520.485600px;}
.y1ee{bottom:520.610850px;}
.y1ec{bottom:520.611314px;}
.yfc{bottom:521.048250px;}
.y14d{bottom:521.128528px;}
.yaf{bottom:522.656668px;}
.yf8{bottom:523.299150px;}
.y17a{bottom:523.502047px;}
.y240{bottom:525.628200px;}
.y2e{bottom:525.800117px;}
.y1ed{bottom:525.883350px;}
.y80{bottom:526.733700px;}
.y83{bottom:526.734003px;}
.y257{bottom:527.670941px;}
.y2d8{bottom:532.261697px;}
.yfa{bottom:532.583704px;}
.y177{bottom:534.557400px;}
.y175{bottom:534.561442px;}
.y1e9{bottom:535.067550px;}
.y1eb{bottom:537.023550px;}
.y1e8{bottom:537.023864px;}
.y14c{bottom:537.540764px;}
.yfe{bottom:537.649232px;}
.y7e{bottom:538.897319px;}
.y176{bottom:539.914800px;}
.yae{bottom:541.364937px;}
.y1ea{bottom:542.380747px;}
.y2d{bottom:545.953718px;}
.y256{bottom:546.549570px;}
.y2d7{bottom:547.143655px;}
.y295{bottom:552.415650px;}
.y1e5{bottom:553.435600px;}
.y1e7{bottom:553.436100px;}
.y14b{bottom:553.953000px;}
.yf6{bottom:557.349225px;}
.y7d{bottom:557.690768px;}
.y1e6{bottom:558.793650px;}
.yad{bottom:559.988025px;}
.y2d6{bottom:562.110495px;}
.y167{bottom:564.150809px;}
.y16a{bottom:564.152005px;}
.y16d{bottom:564.153200px;}
.y170{bottom:564.154396px;}
.y174{bottom:564.155591px;}
.y255{bottom:565.428199px;}
.y2c{bottom:566.107319px;}
.y14a{bottom:570.365235px;}
.yf5{bottom:575.972313px;}
.y7c{bottom:576.569397px;}
.y2d5{bottom:577.077335px;}
.yac{bottom:578.696293px;}
.y169{bottom:580.649123px;}
.y16c{bottom:580.650319px;}
.y16f{bottom:580.651514px;}
.y173{bottom:580.652710px;}
.y1e3{bottom:583.029750px;}
.y1e0{bottom:583.029950px;}
.y28{bottom:583.540050px;}
.y254{bottom:584.392008px;}
.y2a{bottom:586.346400px;}
.y27{bottom:586.348497px;}
.y149{bottom:586.863549px;}
.y1e2{bottom:588.387300px;}
.y294{bottom:589.747950px;}
.y2d4{bottom:591.959292px;}
.y2b{bottom:593.574750px;}
.y29{bottom:593.575203px;}
.yf4{bottom:594.680582px;}
.y7b{bottom:595.362845px;}
.y168{bottom:597.061359px;}
.y16b{bottom:597.062555px;}
.y16e{bottom:597.063750px;}
.y172{bottom:597.064946px;}
.yab{bottom:597.404562px;}
.y1e4{bottom:599.528064px;}
.y1e1{bottom:599.528264px;}
.y253{bottom:603.270637px;}
.y148{bottom:603.275785px;}
.y26{bottom:606.502098px;}
.y2d3{bottom:606.926132px;}
.yf3{bottom:613.388850px;}
.y171{bottom:613.477182px;}
.y7a{bottom:614.241474px;}
.yaa{bottom:616.027650px;}
.y147{bottom:619.688021px;}
.y2d2{bottom:621.892972px;}
.y252{bottom:622.234446px;}
.y1df{bottom:625.889700px;}
.y25{bottom:626.655699px;}
.y79{bottom:632.864562px;}
.ya9{bottom:634.735918px;}
.y293{bottom:635.338793px;}
.y146{bottom:636.185140px;}
.y2d1{bottom:636.859812px;}
.yf2{bottom:637.633050px;}
.y166{bottom:640.686249px;}
.y251{bottom:640.857534px;}
.y23{bottom:644.088000px;}
.y22{bottom:646.809300px;}
.y20{bottom:646.809569px;}
.y2d0{bottom:651.741770px;}
.y78{bottom:651.743191px;}
.y145{bottom:652.597375px;}
.ya8{bottom:653.359007px;}
.y292{bottom:654.047061px;}
.y21{bottom:654.122700px;}
.y24{bottom:654.123153px;}
.y250{bottom:659.821343px;}
.yf1{bottom:661.266478px;}
.y2cf{bottom:666.708610px;}
.y1f{bottom:667.048650px;}
.y1d{bottom:667.050897px;}
.y165{bottom:667.558177px;}
.y144{bottom:669.009611px;}
.y77{bottom:670.536640px;}
.ya7{bottom:672.067275px;}
.y1e{bottom:674.277000px;}
.y24f{bottom:678.699972px;}
.yf0{bottom:679.209619px;}
.y164{bottom:680.994738px;}
.y2ce{bottom:681.676139px;}
.y1dd{bottom:683.206200px;}
.y1de{bottom:685.247100px;}
.y1dc{bottom:685.247414px;}
.y143{bottom:685.506730px;}
.y1c{bottom:687.204498px;}
.y76{bottom:689.415269px;}
.ya6{bottom:690.775543px;}
.y291{bottom:691.378418px;}
.y163{bottom:694.431300px;}
.y2cd{bottom:696.642979px;}
.yef{bottom:697.152759px;}
.y24e{bottom:697.663781px;}
.y1d9{bottom:699.703800px;}
.y1da{bottom:701.659650px;}
.y1d8{bottom:701.659964px;}
.y142{bottom:701.918966px;}
.y1db{bottom:707.017200px;}
.y1b{bottom:707.358099px;}
.y75{bottom:708.208717px;}
.ya5{bottom:709.398632px;}
.y290{bottom:710.086686px;}
.y2cc{bottom:711.524937px;}
.yee{bottom:715.095900px;}
.y1d5{bottom:716.116350px;}
.y24d{bottom:716.542410px;}
.y1d4{bottom:718.071636px;}
.y1d6{bottom:718.072200px;}
.y141{bottom:718.331201px;}
.y59{bottom:720.877230px;}
.y1d7{bottom:723.429750px;}
.ya3{bottom:725.640750px;}
.y2cb{bottom:726.491777px;}
.y74{bottom:727.087346px;}
.y1a{bottom:727.511700px;}
.ya2{bottom:728.106900px;}
.ya0{bottom:728.109600px;}
.y1d1{bottom:732.529050px;}
.y58{bottom:732.782736px;}
.y1d2{bottom:734.569950px;}
.y1d0{bottom:734.570264px;}
.ya4{bottom:734.739584px;}
.ya1{bottom:734.740050px;}
.y140{bottom:734.829515px;}
.y24c{bottom:735.421039px;}
.y1d3{bottom:739.842300px;}
.y2ca{bottom:741.458617px;}
.y57{bottom:744.773601px;}
.y73{bottom:745.880795px;}
.y9f{bottom:746.817868px;}
.y28f{bottom:747.418043px;}
.y1cd{bottom:749.026650px;}
.y1ce{bottom:750.982500px;}
.y1cc{bottom:750.982814px;}
.y13f{bottom:751.241751px;}
.y162{bottom:753.108450px;}
.y24b{bottom:754.129307px;}
.y1cf{bottom:756.255375px;}
.y2c9{bottom:756.425457px;}
.y56{bottom:756.679108px;}
.y72{bottom:764.759424px;}
.y1c9{bottom:765.439200px;}
.y9e{bottom:765.440957px;}
.y28e{bottom:766.126311px;}
.y11a{bottom:766.884588px;}
.y1c8{bottom:767.394486px;}
.y1ca{bottom:767.395050px;}
.y13e{bottom:767.653987px;}
.y55{bottom:768.669973px;}
.y2c8{bottom:771.307415px;}
.y1cb{bottom:772.752600px;}
.y24a{bottom:773.007936px;}
.y119{bottom:780.321150px;}
.y54{bottom:780.575479px;}
.y19{bottom:781.342077px;}
.y1c5{bottom:781.851750px;}
.y71{bottom:783.552872px;}
.y1c6{bottom:783.892800px;}
.y1c4{bottom:783.893114px;}
.y13d{bottom:784.066223px;}
.y9d{bottom:784.149225px;}
.y28d{bottom:784.749399px;}
.y2c7{bottom:786.274255px;}
.y1c7{bottom:789.165150px;}
.y249{bottom:791.971745px;}
.y18{bottom:796.308917px;}
.y53{bottom:798.264037px;}
.y1c1{bottom:798.264450px;}
.y1c0{bottom:800.304421px;}
.y1c2{bottom:800.305350px;}
.y13c{bottom:800.563341px;}
.y2c6{bottom:801.241095px;}
.y70{bottom:802.346321px;}
.y9c{bottom:802.857493px;}
.y1c3{bottom:805.577850px;}
.y52{bottom:810.169544px;}
.y248{bottom:810.850374px;}
.y2c5{bottom:816.123052px;}
.y13b{bottom:816.975577px;}
.y6e{bottom:818.758800px;}
.y6f{bottom:821.224950px;}
.y6d{bottom:821.228954px;}
.y9b{bottom:821.480582px;}
.y17{bottom:821.650566px;}
.y51{bottom:822.160409px;}
.y28c{bottom:822.165936px;}
.y247{bottom:829.814183px;}
.y1be{bottom:829.898570px;}
.y2c4{bottom:831.089892px;}
.y13a{bottom:833.387813px;}
.y50{bottom:834.151274px;}
.y6c{bottom:840.022402px;}
.y9a{bottom:840.188850px;}
.y28b{bottom:840.789024px;}
.y241{bottom:842.229750px;}
.y16{bottom:842.569950px;}
.y2c3{bottom:846.056732px;}
.y4f{bottom:846.056780px;}
.y1bf{bottom:846.310806px;}
.y15{bottom:847.077000px;}
.y246{bottom:848.692812px;}
.y139{bottom:849.884932px;}
.y14{bottom:857.536800px;}
.y6b{bottom:858.901031px;}
.y28a{bottom:859.497293px;}
.y2c2{bottom:861.023572px;}
.y13{bottom:862.043850px;}
.y138{bottom:866.297167px;}
.y245{bottom:867.571441px;}
.y12{bottom:872.503650px;}
.y1bd{bottom:872.673438px;}
.y2c1{bottom:875.905530px;}
.y11{bottom:877.010850px;}
.y6a{bottom:877.524119px;}
.y4e{bottom:881.943000px;}
.y137{bottom:882.709403px;}
.y1bc{bottom:886.110000px;}
.y244{bottom:886.535250px;}
.y10{bottom:887.470650px;}
.y289{bottom:887.901163px;}
.y2c0{bottom:890.872370px;}
.yf{bottom:891.977850px;}
.y4d{bottom:893.933550px;}
.y69{bottom:896.402748px;}
.yed{bottom:899.206662px;}
.y136{bottom:899.207717px;}
.ye{bottom:902.352600px;}
.y2bf{bottom:905.839210px;}
.y288{bottom:906.609432px;}
.yd{bottom:906.859650px;}
.y4c{bottom:913.322700px;}
.y68{bottom:915.196197px;}
.yec{bottom:915.618898px;}
.y135{bottom:915.619953px;}
.yc{bottom:917.319450px;}
.y23f{bottom:920.125800px;}
.y23d{bottom:920.126114px;}
.y2be{bottom:920.806722px;}
.yb{bottom:921.826500px;}
.y287{bottom:925.232520px;}
.y4b{bottom:925.313250px;}
.y23e{bottom:925.398150px;}
.yeb{bottom:932.031134px;}
.y134{bottom:932.032189px;}
.ya{bottom:932.286450px;}
.y67{bottom:934.074826px;}
.y2bd{bottom:935.688679px;}
.y23c{bottom:936.538350px;}
.y23a{bottom:936.538814px;}
.y9{bottom:936.793500px;}
.y23b{bottom:941.810850px;}
.y4a{bottom:944.702100px;}
.y1bb{bottom:945.468032px;}
.yea{bottom:948.529448px;}
.y133{bottom:948.530503px;}
.y2bc{bottom:950.655520px;}
.y7{bottom:951.675609px;}
.y66{bottom:952.868274px;}
.y239{bottom:952.951050px;}
.y237{bottom:952.951532px;}
.y286{bottom:953.634896px;}
.y49{bottom:956.692800px;}
.y8{bottom:957.543150px;}
.y238{bottom:958.308450px;}
.y1ba{bottom:961.965150px;}
.y1b8{bottom:961.965464px;}
.ye9{bottom:964.941683px;}
.y132{bottom:964.942739px;}
.y2bb{bottom:965.622360px;}
.y1b9{bottom:967.237650px;}
.y234{bottom:967.407600px;}
.y236{bottom:969.448650px;}
.y233{bottom:969.448964px;}
.y5{bottom:969.618750px;}
.y65{bottom:971.746903px;}
.y285{bottom:972.343165px;}
.y235{bottom:974.720797px;}
.y6{bottom:975.401400px;}
.y48{bottom:976.081650px;}
.y1b7{bottom:978.377700px;}
.y1b5{bottom:978.378014px;}
.y2ba{bottom:980.504317px;}
.ye8{bottom:981.353919px;}
.y131{bottom:981.354975px;}
.y1b6{bottom:983.650200px;}
.y232{bottom:985.861200px;}
.y230{bottom:985.861514px;}
.y47{bottom:988.072200px;}
.y64{bottom:990.540352px;}
.y231{bottom:991.133550px;}
.y1b4{bottom:994.790250px;}
.y1b2{bottom:994.790882px;}
.y2b9{bottom:995.471157px;}
.ye7{bottom:997.766155px;}
.y130{bottom:997.767210px;}
.y1b3{bottom:1000.147800px;}
.y22d{bottom:1000.317900px;}
.y284{bottom:1000.745541px;}
.y22f{bottom:1002.273750px;}
.y22c{bottom:1002.274214px;}
.y22e{bottom:1007.631097px;}
.y1af{bottom:1009.247100px;}
.y63{bottom:1009.333800px;}
.y4{bottom:1010.011193px;}
.y2b8{bottom:1010.437997px;}
.y1b1{bottom:1011.288000px;}
.y1ae{bottom:1011.288314px;}
.ye6{bottom:1014.264469px;}
.y12f{bottom:1014.265524px;}
.y1b0{bottom:1016.560297px;}
.y22b{bottom:1018.686450px;}
.y229{bottom:1018.692712px;}
.y283{bottom:1019.368629px;}
.y46{bottom:1023.703650px;}
.y22a{bottom:1024.043850px;}
.y2b7{bottom:1025.404837px;}
.y1ad{bottom:1027.700550px;}
.y1ab{bottom:1027.700864px;}
.y62{bottom:1028.212429px;}
.ye5{bottom:1030.676705px;}
.y12e{bottom:1030.677760px;}
.y1ac{bottom:1032.973050px;}
.y2b6{bottom:1040.286795px;}
.y3{bottom:1041.391800px;}
.y27c{bottom:1042.157250px;}
.y1aa{bottom:1044.113100px;}
.y1a8{bottom:1044.113564px;}
.y61{bottom:1047.005878px;}
.ye4{bottom:1047.088941px;}
.y12d{bottom:1047.089996px;}
.y282{bottom:1047.772500px;}
.y216{bottom:1048.279689px;}
.y219{bottom:1048.280884px;}
.y21c{bottom:1048.282080px;}
.y21f{bottom:1048.283275px;}
.y222{bottom:1048.284471px;}
.y225{bottom:1048.285666px;}
.y228{bottom:1048.286862px;}
.y27d{bottom:1049.470447px;}
.y1a9{bottom:1049.470650px;}
.y2b5{bottom:1055.253635px;}
.y1a5{bottom:1060.525086px;}
.y27b{bottom:1060.525300px;}
.y1a7{bottom:1060.525800px;}
.ye3{bottom:1063.586059px;}
.y12c{bottom:1063.587115px;}
.y218{bottom:1064.778003px;}
.y21b{bottom:1064.779198px;}
.y21e{bottom:1064.780394px;}
.y221{bottom:1064.781589px;}
.y224{bottom:1064.782785px;}
.y227{bottom:1064.783980px;}
.y60{bottom:1065.714146px;}
.y1a6{bottom:1065.883350px;}
.y281{bottom:1066.480768px;}
.y2b4{bottom:1070.220475px;}
.y1a3{bottom:1074.982500px;}
.y1a2{bottom:1077.022621px;}
.y1a4{bottom:1077.023400px;}
.ye2{bottom:1079.998295px;}
.y12b{bottom:1079.999350px;}
.y217{bottom:1081.190238px;}
.y21a{bottom:1081.191434px;}
.y21d{bottom:1081.192629px;}
.y220{bottom:1081.193825px;}
.y223{bottom:1081.195021px;}
.y226{bottom:1081.196216px;}
.y2{bottom:1081.700550px;}
.y5f{bottom:1084.507595px;}
.y2b3{bottom:1085.187315px;}
.y280{bottom:1085.189037px;}
.y276{bottom:1088.929500px;}
.y275{bottom:1090.118456px;}
.y278{bottom:1090.119450px;}
.y2b2{bottom:1100.069272px;}
.y5e{bottom:1103.386224px;}
.y1a0{bottom:1106.616770px;}
.y27a{bottom:1106.617764px;}
.y129{bottom:1107.552450px;}
.y215{bottom:1108.402892px;}
.ye1{bottom:1109.592445px;}
.y12a{bottom:1109.593500px;}
.y2b1{bottom:1115.036112px;}
.y5d{bottom:1122.179672px;}
.y27f{bottom:1122.520393px;}
.y1a1{bottom:1123.029006px;}
.y279{bottom:1123.030000px;}
.y2b0{bottom:1130.002952px;}
.ye0{bottom:1135.955077px;}
.y214{bottom:1136.041155px;}
.y5c{bottom:1141.058301px;}
.y27e{bottom:1141.228662px;}
.y2af{bottom:1144.884910px;}
.ydf{bottom:1149.391638px;}
.y5b{bottom:1159.851750px;}
.yde{bottom:1162.828200px;}
.y1{bottom:1212.150900px;}
.h3e{height:8.606574px;}
.h16{height:10.758420px;}
.h42{height:11.820000px;}
.he{height:11.834424px;}
.h8{height:12.761933px;}
.h28{height:15.222000px;}
.h12{height:20.234041px;}
.h7{height:21.947274px;}
.h3c{height:22.632102px;}
.h3f{height:23.811521px;}
.h3d{height:25.819722px;}
.h2e{height:28.131276px;}
.h6{height:28.240002px;}
.h1e{height:28.412393px;}
.h23{height:28.471500px;}
.h27{height:28.721844px;}
.h2b{height:29.387250px;}
.h24{height:29.553750px;}
.h37{height:29.566530px;}
.h15{height:29.764962px;}
.h31{height:31.065678px;}
.h14{height:32.275260px;}
.h40{height:32.327131px;}
.h11{height:32.374952px;}
.hd{height:32.741906px;}
.h13{height:32.924070px;}
.h39{height:33.730830px;}
.h1f{height:33.744924px;}
.h9{height:33.953052px;}
.hc{height:35.503272px;}
.h2{height:38.735172px;}
.h43{height:39.079260px;}
.h25{height:40.306094px;}
.h3a{height:40.323535px;}
.h20{height:40.340976px;}
.h17{height:40.408306px;}
.h3{height:40.468081px;}
.h29{height:40.621246px;}
.h21{height:42.094826px;}
.h5{height:42.201574px;}
.h33{height:42.351642px;}
.h18{height:42.440676px;}
.h2a{height:44.479802px;}
.h30{height:44.499049px;}
.h19{height:45.616334px;}
.ha{height:46.685340px;}
.h2c{height:48.295764px;}
.h3b{height:48.336588px;}
.h1d{height:48.337560px;}
.h10{height:48.418236px;}
.h26{height:48.673386px;}
.hf{height:50.928726px;}
.hb{height:53.260740px;}
.h2f{height:60.451513px;}
.h2d{height:62.966138px;}
.h36{height:65.625204px;}
.h38{height:66.707922px;}
.h41{height:69.013272px;}
.h4{height:73.273421px;}
.h1a{height:76.027224px;}
.h32{height:77.938951px;}
.h1c{height:81.672574px;}
.h22{height:86.204958px;}
.h35{height:95.589446px;}
.h1b{height:122.192578px;}
.h34{height:126.762640px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:7.738500px;}
.w2{width:48.898500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:63.694500px;}
.x1{left:178.837800px;}
.x97{left:185.302440px;}
.xb4{left:186.576300px;}
.xb3{left:189.552750px;}
.xb{left:190.658250px;}
.xb2{left:191.678700px;}
.x13{left:193.634550px;}
.x3a{left:194.910150px;}
.x93{left:196.185750px;}
.x25{left:201.126757px;}
.x14{left:203.158950px;}
.x94{left:204.774750px;}
.x3b{left:208.941600px;}
.x7a{left:215.744850px;}
.x7b{left:221.187300px;}
.x3c{left:224.673900px;}
.x61{left:226.884900px;}
.x3d{left:233.347950px;}
.x15{left:245.168400px;}
.xa9{left:254.269598px;}
.xa{left:255.373200px;}
.x3e{left:259.200000px;}
.x16{left:260.560500px;}
.x66{left:264.982650px;}
.x62{left:267.788850px;}
.x67{left:270.340050px;}
.x3f{left:273.231450px;}
.x63{left:274.762200px;}
.x2{left:277.143150px;}
.x81{left:282.330600px;}
.x17{left:287.007750px;}
.xb5{left:289.473900px;}
.x82{left:293.385750px;}
.x3{left:296.787300px;}
.x18{left:302.399850px;}
.x40{left:305.291250px;}
.x84{left:321.703800px;}
.x41{left:324.850350px;}
.x8f{left:329.527500px;}
.x95{left:330.888150px;}
.x8e{left:332.503800px;}
.x8d{left:334.629750px;}
.x42{left:335.820300px;}
.x90{left:337.691250px;}
.x9a{left:341.518050px;}
.x98{left:342.793650px;}
.x96{left:344.834550px;}
.x83{left:346.535400px;}
.x9c{left:347.640900px;}
.x9b{left:349.596750px;}
.x72{left:354.040906px;}
.xab{left:355.382743px;}
.x99{left:359.461350px;}
.x75{left:361.074916px;}
.xaa{left:363.121409px;}
.x6f{left:368.672100px;}
.x43{left:374.003100px;}
.xa1{left:380.636100px;}
.xa0{left:383.697450px;}
.x44{left:385.058100px;}
.xa2{left:386.758950px;}
.x70{left:389.212200px;}
.x9f{left:392.966850px;}
.x86{left:395.603096px;}
.x50{left:398.873850px;}
.x7f{left:400.195200px;}
.x71{left:402.999300px;}
.x87{left:405.637179px;}
.xa3{left:407.508763px;}
.x45{left:409.124250px;}
.x7c{left:411.165150px;}
.x19{left:412.610850px;}
.x80{left:416.607750px;}
.x6d{left:418.308450px;}
.x4c{left:419.705270px;}
.x85{left:420.774980px;}
.x46{left:423.070800px;}
.x1a{left:424.771500px;}
.xbc{left:427.664204px;}
.x5f{left:435.808650px;}
.x9d{left:438.122700px;}
.xb6{left:439.568400px;}
.x56{left:441.152400px;}
.x39{left:442.799850px;}
.x68{left:446.796750px;}
.x5e{left:448.746150px;}
.x47{left:449.824050px;}
.x78{left:453.222450px;}
.x73{left:456.179479px;}
.x1b{left:458.702250px;}
.x53{left:462.808744px;}
.x6e{left:464.146266px;}
.xac{left:467.549759px;}
.x76{left:471.372648px;}
.x1c{left:474.094350px;}
.x88{left:478.091079px;}
.x48{left:482.477594px;}
.x69{left:483.618750px;}
.x51{left:485.404650px;}
.x21{left:487.190400px;}
.x4f{left:488.669289px;}
.x6a{left:490.081800px;}
.xa4{left:491.187300px;}
.x4{left:492.377850px;}
.x52{left:493.568400px;}
.x7d{left:495.694350px;}
.x60{left:497.683800px;}
.xbd{left:499.180950px;}
.x55{left:501.339572px;}
.xa5{left:502.412550px;}
.x5{left:504.198300px;}
.x22{left:505.218750px;}
.x64{left:512.277000px;}
.x49{left:520.197681px;}
.x74{left:522.020541px;}
.x6b{left:524.607750px;}
.x6c{left:529.114800px;}
.x1d{left:533.622000px;}
.x27{left:539.574600px;}
.x65{left:542.976300px;}
.x4a{left:544.125013px;}
.x1e{left:545.782500px;}
.x23{left:551.480100px;}
.x54{left:553.933800px;}
.xbe{left:555.392380px;}
.x4b{left:556.510892px;}
.x7e{left:558.198300px;}
.x89{left:559.729041px;}
.x24{left:563.640750px;}
.x2c{left:564.831300px;}
.x4d{left:566.363498px;}
.x28{left:567.467550px;}
.x8a{left:569.763124px;}
.x9e{left:570.784686px;}
.xa6{left:573.336172px;}
.x1f{left:574.780950px;}
.x2d{left:578.862900px;}
.x20{left:584.305350px;}
.x2e{left:594.595050px;}
.xb7{left:597.401400px;}
.x4e{left:598.733485px;}
.x2f{left:603.269100px;}
.xb8{left:608.456550px;}
.x29{left:613.728900px;}
.x77{left:615.997350px;}
.x2a{left:619.086450px;}
.x30{left:629.121150px;}
.x2b{left:630.141600px;}
.x6{left:637.029750px;}
.xa7{left:640.516350px;}
.x31{left:643.152600px;}
.x8b{left:645.703190px;}
.xad{left:649.364766px;}
.x8c{left:650.719634px;}
.xa8{left:651.741600px;}
.xb9{left:653.102250px;}
.xae{left:659.654692px;}
.x7{left:661.691100px;}
.xba{left:664.157250px;}
.x32{left:666.538350px;}
.x33{left:675.212400px;}
.x57{left:676.402950px;}
.xc{left:682.270650px;}
.x34{left:694.686450px;}
.xd{left:697.662750px;}
.x35{left:703.360500px;}
.xbb{left:706.166700px;}
.xe{left:715.010850px;}
.x58{left:717.477000px;}
.x59{left:722.664300px;}
.xf{left:724.535250px;}
.x91{left:739.672200px;}
.x36{left:741.543150px;}
.xaf{left:750.476716px;}
.x10{left:753.023400px;}
.x8{left:759.401400px;}
.xb0{left:761.106173px;}
.x9{left:769.010850px;}
.x79{left:770.456550px;}
.xb1{left:771.821708px;}
.x37{left:776.579250px;}
.x5c{left:778.024500px;}
.x38{left:790.610850px;}
.x5a{left:792.957300px;}
.x11{left:794.182500px;}
.x12{left:803.706900px;}
.x5b{left:814.043850px;}
.x92{left:817.993500px;}
.x5d{left:819.202200px;}
@media print{
.v3{vertical-align:-42.038427pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:25.999900pt;}
.v2{vertical-align:33.026025pt;}
.v4{vertical-align:38.997008pt;}
.v1{vertical-align:41.035870pt;}
.v6{vertical-align:42.020252pt;}
.v7{vertical-align:75.031998pt;}
.ls57{letter-spacing:-0.339343pt;}
.ls3b{letter-spacing:-0.079499pt;}
.ls59{letter-spacing:-0.062927pt;}
.ls12{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.010627pt;}
.ls74{letter-spacing:0.012752pt;}
.ls69{letter-spacing:0.034006pt;}
.ls58{letter-spacing:0.042418pt;}
.lsf{letter-spacing:0.042507pt;}
.lsd{letter-spacing:0.046758pt;}
.ls4b{letter-spacing:0.063761pt;}
.ls1b{letter-spacing:0.074387pt;}
.ls77{letter-spacing:0.119022pt;}
.ls64{letter-spacing:0.122208pt;}
.ls6c{letter-spacing:0.123272pt;}
.lse{letter-spacing:0.127521pt;}
.ls6d{letter-spacing:0.127523pt;}
.ls9{letter-spacing:0.128586pt;}
.ls63{letter-spacing:0.133172pt;}
.ls7{letter-spacing:0.148052pt;}
.ls10{letter-spacing:0.158975pt;}
.ls67{letter-spacing:0.164715pt;}
.ls1f{letter-spacing:0.175342pt;}
.ls71{letter-spacing:0.199786pt;}
.ls4{letter-spacing:0.204537pt;}
.ls1a{letter-spacing:0.207222pt;}
.ls76{letter-spacing:0.212539pt;}
.ls6a{letter-spacing:0.218175pt;}
.ls1{letter-spacing:0.221040pt;}
.ls68{letter-spacing:0.225291pt;}
.ls5{letter-spacing:0.227947pt;}
.ls1e{letter-spacing:0.233763pt;}
.ls27{letter-spacing:0.240705pt;}
.ls66{letter-spacing:0.249729pt;}
.ls1c{letter-spacing:0.281609pt;}
.ls73{letter-spacing:0.284802pt;}
.ls1d{letter-spacing:0.324117pt;}
.ls26{letter-spacing:0.344393pt;}
.ls13{letter-spacing:1.694970pt;}
.ls14{letter-spacing:1.697627pt;}
.ls15{letter-spacing:1.894222pt;}
.ls16{letter-spacing:1.915476pt;}
.ls3{letter-spacing:2.279443pt;}
.ls11{letter-spacing:5.903751pt;}
.ls0{letter-spacing:6.728974pt;}
.ls32{letter-spacing:6.771482pt;}
.ls31{letter-spacing:6.809739pt;}
.ls2{letter-spacing:6.873500pt;}
.ls79{letter-spacing:6.877751pt;}
.ls78{letter-spacing:6.937262pt;}
.ls34{letter-spacing:7.073287pt;}
.ls6f{letter-spacing:7.491048pt;}
.ls4e{letter-spacing:8.288883pt;}
.ls4a{letter-spacing:8.373897pt;}
.ls42{letter-spacing:8.411091pt;}
.ls29{letter-spacing:8.432345pt;}
.ls49{letter-spacing:8.442971pt;}
.ls17{letter-spacing:8.464225pt;}
.ls18{letter-spacing:8.591746pt;}
.ls48{letter-spacing:8.644880pt;}
.ls6e{letter-spacing:8.676760pt;}
.ls4c{letter-spacing:8.698014pt;}
.ls4f{letter-spacing:8.713954pt;}
.ls4d{letter-spacing:8.745834pt;}
.ls19{letter-spacing:8.767088pt;}
.lsa{letter-spacing:9.152957pt;}
.ls8{letter-spacing:9.299077pt;}
.ls6{letter-spacing:9.310766pt;}
.lsc{letter-spacing:9.456886pt;}
.lsb{letter-spacing:9.603006pt;}
.ls72{letter-spacing:18.665146pt;}
.ls75{letter-spacing:18.672762pt;}
.ls30{letter-spacing:19.240000pt;}
.ls5f{letter-spacing:20.368998pt;}
.ls65{letter-spacing:21.290740pt;}
.ls38{letter-spacing:21.371965pt;}
.ls3d{letter-spacing:24.353255pt;}
.ls44{letter-spacing:24.777368pt;}
.ls2d{letter-spacing:30.559492pt;}
.ls5a{letter-spacing:33.025675pt;}
.ls70{letter-spacing:34.425432pt;}
.ls20{letter-spacing:35.640099pt;}
.ls5b{letter-spacing:37.364885pt;}
.ls35{letter-spacing:41.799723pt;}
.ls3c{letter-spacing:45.010500pt;}
.ls2b{letter-spacing:48.648210pt;}
.ls22{letter-spacing:56.816857pt;}
.ls3a{letter-spacing:74.649749pt;}
.ls37{letter-spacing:74.915924pt;}
.ls51{letter-spacing:75.275143pt;}
.ls3e{letter-spacing:76.664923pt;}
.ls45{letter-spacing:79.043966pt;}
.ls21{letter-spacing:91.715381pt;}
.ls5d{letter-spacing:95.845685pt;}
.ls5e{letter-spacing:97.288489pt;}
.ls61{letter-spacing:106.350098pt;}
.ls50{letter-spacing:120.764585pt;}
.ls41{letter-spacing:127.352418pt;}
.ls46{letter-spacing:128.064255pt;}
.ls33{letter-spacing:129.933388pt;}
.ls23{letter-spacing:132.751251pt;}
.ls2f{letter-spacing:133.940000pt;}
.ls25{letter-spacing:134.480529pt;}
.ls54{letter-spacing:144.825383pt;}
.ls2c{letter-spacing:147.274918pt;}
.ls40{letter-spacing:156.274227pt;}
.ls62{letter-spacing:157.355127pt;}
.ls2e{letter-spacing:170.940000pt;}
.ls6b{letter-spacing:177.218991pt;}
.ls2a{letter-spacing:181.645072pt;}
.ls55{letter-spacing:185.726863pt;}
.ls53{letter-spacing:192.350964pt;}
.ls36{letter-spacing:198.023534pt;}
.ls3f{letter-spacing:206.761519pt;}
.ls43{letter-spacing:206.787360pt;}
.ls24{letter-spacing:207.030631pt;}
.ls39{letter-spacing:207.763209pt;}
.ls56{letter-spacing:268.606176pt;}
.ls60{letter-spacing:360.769971pt;}
.ls5c{letter-spacing:364.774813pt;}
.ls47{letter-spacing:387.176255pt;}
.ls52{letter-spacing:1195.546069pt;}
.ws8f{word-spacing:-1195.599069pt;}
.ws99{word-spacing:-417.819080pt;}
.ws9e{word-spacing:-413.814238pt;}
.ws97{word-spacing:-387.213271pt;}
.ws75{word-spacing:-260.762676pt;}
.ws80{word-spacing:-259.760986pt;}
.ws92{word-spacing:-173.833938pt;}
.ws7d{word-spacing:-156.327227pt;}
.ws8d{word-spacing:-139.764894pt;}
.ws9f{word-spacing:-128.871046pt;}
.ws9a{word-spacing:-124.871508pt;}
.ws7c{word-spacing:-76.718337pt;}
.ws6d{word-spacing:-74.968970pt;}
.ws76{word-spacing:-74.702748pt;}
.ws6b{word-spacing:-63.680923pt;}
.ws7b{word-spacing:-53.413867pt;}
.ws6c{word-spacing:-53.045333pt;}
.ws8e{word-spacing:-22.895770pt;}
.ws20{word-spacing:-9.515334pt;}
.ws19{word-spacing:-9.369214pt;}
.ws1f{word-spacing:-9.211405pt;}
.wscf{word-spacing:-8.820222pt;}
.ws57{word-spacing:-8.517359pt;}
.ws91{word-spacing:-8.464225pt;}
.wsee{word-spacing:-6.916008pt;}
.wsa8{word-spacing:-6.813990pt;}
.ws69{word-spacing:-6.247679pt;}
.ws3{word-spacing:-2.332577pt;}
.ws37{word-spacing:-1.942043pt;}
.ws34{word-spacing:-1.724194pt;}
.ws32{word-spacing:-1.721537pt;}
.ws1e{word-spacing:-0.058448pt;}
.ws2a{word-spacing:-0.053134pt;}
.ws6a{word-spacing:-0.053045pt;}
.ws9c{word-spacing:-0.053044pt;}
.ws1{word-spacing:-0.042508pt;}
.ws18{word-spacing:-0.038961pt;}
.ws3b{word-spacing:-0.036131pt;}
.ws56{word-spacing:-0.035419pt;}
.ws8{word-spacing:-0.030990pt;}
.wsce{word-spacing:-0.028334pt;}
.ws43{word-spacing:0.000000pt;}
.ws36{word-spacing:2.372427pt;}
.ws3d{word-spacing:5.686967pt;}
.ws3e{word-spacing:5.697806pt;}
.ws38{word-spacing:5.733937pt;}
.ws3a{word-spacing:5.759228pt;}
.ws3f{word-spacing:5.762841pt;}
.ws39{word-spacing:5.773681pt;}
.ws3c{word-spacing:5.784520pt;}
.ws33{word-spacing:5.871233pt;}
.ws40{word-spacing:5.907364pt;}
.ws35{word-spacing:5.921816pt;}
.ws10b{word-spacing:6.478179pt;}
.wsfe{word-spacing:6.537689pt;}
.ws107{word-spacing:6.584448pt;}
.ws103{word-spacing:6.588699pt;}
.wsd2{word-spacing:6.622705pt;}
.ws10d{word-spacing:6.626956pt;}
.ws10a{word-spacing:6.635457pt;}
.ws116{word-spacing:6.643959pt;}
.wsfd{word-spacing:6.648209pt;}
.wsfb{word-spacing:6.660962pt;}
.wsd4{word-spacing:6.665213pt;}
.wsca{word-spacing:6.669463pt;}
.wsa{word-spacing:6.673714pt;}
.ws109{word-spacing:6.677965pt;}
.wsea{word-spacing:6.682216pt;}
.ws111{word-spacing:6.686466pt;}
.ws118{word-spacing:6.688264pt;}
.wse9{word-spacing:6.690717pt;}
.wsf8{word-spacing:6.694968pt;}
.ws15{word-spacing:6.699219pt;}
.ws105{word-spacing:6.703470pt;}
.ws42{word-spacing:6.707720pt;}
.ws100{word-spacing:6.711971pt;}
.wsf9{word-spacing:6.716222pt;}
.wsb{word-spacing:6.720473pt;}
.wsd{word-spacing:6.724723pt;}
.ws64{word-spacing:6.728974pt;}
.wsa7{word-spacing:6.733225pt;}
.wscc{word-spacing:6.737476pt;}
.wsd3{word-spacing:6.741727pt;}
.ws115{word-spacing:6.745977pt;}
.wsf{word-spacing:6.750228pt;}
.wsa6{word-spacing:6.754479pt;}
.wsd5{word-spacing:6.762980pt;}
.wseb{word-spacing:6.767231pt;}
.wsec{word-spacing:6.771482pt;}
.wsdb{word-spacing:6.775733pt;}
.ws0{word-spacing:6.779983pt;}
.wsb2{word-spacing:6.784234pt;}
.ws13{word-spacing:6.788485pt;}
.wse1{word-spacing:6.792736pt;}
.ws10{word-spacing:6.796987pt;}
.ws41{word-spacing:6.801237pt;}
.ws10f{word-spacing:6.805488pt;}
.wsa5{word-spacing:6.809739pt;}
.ws82{word-spacing:6.813990pt;}
.wsfa{word-spacing:6.818240pt;}
.ws14{word-spacing:6.822491pt;}
.wsc{word-spacing:6.826742pt;}
.ws85{word-spacing:6.830993pt;}
.wsae{word-spacing:6.835244pt;}
.wse3{word-spacing:6.839494pt;}
.ws113{word-spacing:6.843745pt;}
.ws83{word-spacing:6.852247pt;}
.ws110{word-spacing:6.856497pt;}
.ws108{word-spacing:6.860748pt;}
.ws119{word-spacing:6.869250pt;}
.wsda{word-spacing:6.873500pt;}
.ws114{word-spacing:6.882002pt;}
.wsa9{word-spacing:6.886253pt;}
.ws10e{word-spacing:6.890504pt;}
.wsed{word-spacing:6.894754pt;}
.wsf0{word-spacing:6.899005pt;}
.wse5{word-spacing:6.903256pt;}
.wse2{word-spacing:6.907507pt;}
.ws102{word-spacing:6.911757pt;}
.wse{word-spacing:6.916008pt;}
.ws104{word-spacing:6.924510pt;}
.wsaf{word-spacing:6.937262pt;}
.wscb{word-spacing:6.950014pt;}
.wsb1{word-spacing:6.954265pt;}
.wsff{word-spacing:6.962767pt;}
.wsb0{word-spacing:6.967017pt;}
.ws112{word-spacing:6.975519pt;}
.wsac{word-spacing:6.979770pt;}
.wsb3{word-spacing:6.984021pt;}
.wse0{word-spacing:6.992522pt;}
.ws117{word-spacing:6.996773pt;}
.wsfc{word-spacing:7.001024pt;}
.wse4{word-spacing:7.030779pt;}
.ws101{word-spacing:7.035030pt;}
.wsd6{word-spacing:7.064785pt;}
.wsf1{word-spacing:7.069036pt;}
.ws12{word-spacing:7.077538pt;}
.ws84{word-spacing:7.124296pt;}
.ws10c{word-spacing:7.141299pt;}
.ws106{word-spacing:7.158302pt;}
.ws11{word-spacing:7.226315pt;}
.ws5d{word-spacing:8.315450pt;}
.wsde{word-spacing:8.326077pt;}
.ws44{word-spacing:8.336704pt;}
.ws4a{word-spacing:8.342017pt;}
.ws4e{word-spacing:8.347330pt;}
.ws81{word-spacing:8.352644pt;}
.ws2f{word-spacing:8.357957pt;}
.ws79{word-spacing:8.368584pt;}
.ws66{word-spacing:8.373897pt;}
.ws45{word-spacing:8.379211pt;}
.ws47{word-spacing:8.389838pt;}
.ws5c{word-spacing:8.395151pt;}
.ws4b{word-spacing:8.400464pt;}
.ws7{word-spacing:8.411091pt;}
.ws67{word-spacing:8.416404pt;}
.ws48{word-spacing:8.421718pt;}
.ws58{word-spacing:8.427031pt;}
.ws31{word-spacing:8.432345pt;}
.ws9{word-spacing:8.437658pt;}
.ws2e{word-spacing:8.442971pt;}
.ws46{word-spacing:8.453598pt;}
.ws5f{word-spacing:8.458912pt;}
.ws62{word-spacing:8.464225pt;}
.ws54{word-spacing:8.469538pt;}
.ws55{word-spacing:8.474852pt;}
.ws29{word-spacing:8.480165pt;}
.ws30{word-spacing:8.485479pt;}
.ws2b{word-spacing:8.496105pt;}
.ws49{word-spacing:8.501419pt;}
.ws2c{word-spacing:8.506732pt;}
.ws4d{word-spacing:8.512045pt;}
.ws53{word-spacing:8.517359pt;}
.ws73{word-spacing:8.522672pt;}
.ws65{word-spacing:8.527986pt;}
.ws51{word-spacing:8.533299pt;}
.wsc7{word-spacing:8.538612pt;}
.wsc8{word-spacing:8.543926pt;}
.ws5e{word-spacing:8.549239pt;}
.ws50{word-spacing:8.554553pt;}
.ws2d{word-spacing:8.565179pt;}
.ws68{word-spacing:8.570493pt;}
.ws72{word-spacing:8.575806pt;}
.wsa2{word-spacing:8.586433pt;}
.ws74{word-spacing:8.591746pt;}
.ws4f{word-spacing:8.597060pt;}
.ws7a{word-spacing:8.607686pt;}
.wsab{word-spacing:8.613000pt;}
.ws63{word-spacing:8.618313pt;}
.wsa4{word-spacing:8.628940pt;}
.wsf4{word-spacing:8.634253pt;}
.ws59{word-spacing:8.639567pt;}
.wsa3{word-spacing:8.650193pt;}
.ws6{word-spacing:8.660820pt;}
.ws5b{word-spacing:8.671447pt;}
.ws4c{word-spacing:8.676760pt;}
.wsdd{word-spacing:8.703327pt;}
.ws60{word-spacing:8.713954pt;}
.ws5a{word-spacing:8.719268pt;}
.ws52{word-spacing:8.735208pt;}
.wsf6{word-spacing:8.745834pt;}
.wsc6{word-spacing:8.767088pt;}
.wsd0{word-spacing:8.783028pt;}
.wsc9{word-spacing:8.788342pt;}
.wsef{word-spacing:8.814908pt;}
.wsaa{word-spacing:8.825535pt;}
.ws61{word-spacing:8.857416pt;}
.wsdf{word-spacing:8.878669pt;}
.ws24{word-spacing:9.176336pt;}
.ws16{word-spacing:9.182181pt;}
.ws23{word-spacing:9.205560pt;}
.ws26{word-spacing:9.228939pt;}
.ws1b{word-spacing:9.246474pt;}
.ws1a{word-spacing:9.252318pt;}
.ws17{word-spacing:9.264008pt;}
.ws1d{word-spacing:9.269853pt;}
.ws1c{word-spacing:9.281542pt;}
.ws21{word-spacing:9.357525pt;}
.ws22{word-spacing:9.363370pt;}
.ws27{word-spacing:9.427662pt;}
.ws25{word-spacing:9.486110pt;}
.ws28{word-spacing:10.061412pt;}
.wsf7{word-spacing:10.080540pt;}
.wsf5{word-spacing:10.246318pt;}
.wsd1{word-spacing:10.297343pt;}
.ws4{word-spacing:15.235707pt;}
.ws5{word-spacing:15.388733pt;}
.ws77{word-spacing:16.625933pt;}
.ws95{word-spacing:17.529205pt;}
.wsa1{word-spacing:60.645510pt;}
.ws9d{word-spacing:64.650352pt;}
.wsad{word-spacing:109.716711pt;}
.ws93{word-spacing:112.879387pt;}
.wsd7{word-spacing:133.933366pt;}
.ws94{word-spacing:137.890053pt;}
.wscd{word-spacing:147.387064pt;}
.ws87{word-spacing:154.371084pt;}
.wsbe{word-spacing:156.602740pt;}
.wsc4{word-spacing:158.855650pt;}
.wsc5{word-spacing:159.323235pt;}
.wsbd{word-spacing:160.130882pt;}
.wsb9{word-spacing:161.023545pt;}
.wsc2{word-spacing:161.916207pt;}
.ws86{word-spacing:164.347649pt;}
.ws8b{word-spacing:164.364652pt;}
.wsb6{word-spacing:164.551687pt;}
.wsb7{word-spacing:165.444349pt;}
.wsbf{word-spacing:168.122336pt;}
.wsb4{word-spacing:168.972491pt;}
.wsc0{word-spacing:169.014999pt;}
.wsb8{word-spacing:172.543140pt;}
.wsbb{word-spacing:173.435803pt;}
.ws8a{word-spacing:174.626019pt;}
.wsb5{word-spacing:175.178620pt;}
.wsba{word-spacing:176.963945pt;}
.ws88{word-spacing:179.293368pt;}
.wsc1{word-spacing:180.534594pt;}
.wsc3{word-spacing:181.427257pt;}
.ws89{word-spacing:184.908640pt;}
.wsbc{word-spacing:184.955399pt;}
.ws70{word-spacing:185.879447pt;}
.ws8c{word-spacing:191.675871pt;}
.ws6f{word-spacing:196.970371pt;}
.wse6{word-spacing:309.188500pt;}
.wse7{word-spacing:309.490305pt;}
.wse8{word-spacing:310.093915pt;}
.ws96{word-spacing:416.648394pt;}
.wsd9{word-spacing:430.922147pt;}
.wsdc{word-spacing:437.485341pt;}
.wsf3{word-spacing:474.764623pt;}
.wsf2{word-spacing:479.920811pt;}
.wsd8{word-spacing:488.371348pt;}
.ws90{word-spacing:503.585032pt;}
.ws98{word-spacing:551.830628pt;}
.ws9b{word-spacing:673.290877pt;}
.wsa0{word-spacing:675.295950pt;}
.ws7f{word-spacing:682.585431pt;}
.ws2{word-spacing:987.161342pt;}
.ws6e{word-spacing:1062.683685pt;}
.ws7e{word-spacing:1111.377616pt;}
.ws78{word-spacing:1212.580098pt;}
.ws71{word-spacing:1371.762929pt;}
._22{margin-left:-2459.970245pt;}
._34{margin-left:-1430.635699pt;}
._3a{margin-left:-1428.391926pt;}
._2e{margin-left:-834.699276pt;}
._9{margin-left:-828.706025pt;}
._38{margin-left:-826.689592pt;}
._8{margin-left:-656.796708pt;}
._1e{margin-left:-565.991904pt;}
._b{margin-left:-556.992595pt;}
._14{margin-left:-541.988446pt;}
._2f{margin-left:-516.428371pt;}
._c{margin-left:-513.999428pt;}
._39{margin-left:-512.428834pt;}
._12{margin-left:-422.983444pt;}
._2c{margin-left:-387.165150pt;}
._21{margin-left:-312.940651pt;}
._24{margin-left:-192.001168pt;}
._4d{margin-left:-177.218991pt;}
._25{margin-left:-167.001319pt;}
._29{margin-left:-128.054398pt;}
._23{margin-left:-123.001162pt;}
._10{margin-left:-117.563417pt;}
._13{margin-left:-102.002774pt;}
._11{margin-left:-80.983185pt;}
._e{margin-left:-79.522565pt;}
._1f{margin-left:-75.614339pt;}
._32{margin-left:-74.389280pt;}
._30{margin-left:-72.214465pt;}
._20{margin-left:-50.540291pt;}
._33{margin-left:-47.039656pt;}
._f{margin-left:-45.369738pt;}
._5a{margin-left:-15.993294pt;}
._2d{margin-left:-12.004271pt;}
._4{margin-left:-9.310766pt;}
._27{margin-left:-8.411091pt;}
._3d{margin-left:-6.456925pt;}
._26{margin-left:-0.908589pt;}
._6{width:0.907940pt;}
._31{width:1.999769pt;}
._a{width:3.999618pt;}
._37{width:5.002074pt;}
._15{width:6.750228pt;}
._1{width:8.093472pt;}
._5{width:9.182181pt;}
._3{width:10.129593pt;}
._2{width:11.188035pt;}
._56{width:12.250729pt;}
._0{width:16.775537pt;}
._2a{width:28.255637pt;}
._28{width:41.018129pt;}
._59{width:66.990452pt;}
._3b{width:85.072395pt;}
._44{width:106.260832pt;}
._3f{width:108.262946pt;}
._47{width:110.494602pt;}
._41{width:112.611487pt;}
._42{width:113.516902pt;}
._35{width:115.095450pt;}
._3e{width:117.147062pt;}
._40{width:119.565752pt;}
._45{width:120.471167pt;}
._46{width:121.376582pt;}
._43{width:125.006742pt;}
._4e{width:130.294704pt;}
._48{width:132.866422pt;}
._4c{width:147.875903pt;}
._1b{width:172.232834pt;}
._17{width:178.443214pt;}
._1a{width:179.335876pt;}
._16{width:182.864018pt;}
._18{width:184.951148pt;}
._4a{width:187.854426pt;}
._1c{width:189.070147pt;}
._19{width:190.855472pt;}
._4b{width:192.088196pt;}
._1d{width:205.218835pt;}
._57{width:306.570024pt;}
._54{width:310.442478pt;}
._53{width:324.635810pt;}
._55{width:325.558228pt;}
._49{width:363.407114pt;}
._50{width:430.947651pt;}
._51{width:437.527848pt;}
._58{width:479.963319pt;}
._4f{width:488.413856pt;}
._52{width:679.447860pt;}
._2b{width:680.685664pt;}
._36{width:873.729247pt;}
._3c{width:875.729016pt;}
._d{width:1070.594527pt;}
._7{width:1492.493276pt;}
.fs4{font-size:24.084800pt;}
.fs8{font-size:26.566933pt;}
.fs16{font-size:28.334400pt;}
.fs3{font-size:30.990400pt;}
.fsb{font-size:31.827200pt;}
.fsa{font-size:35.418667pt;}
.fs9{font-size:36.130667pt;}
.fsf{font-size:37.000000pt;}
.fs14{font-size:37.016000pt;}
.fsd{font-size:37.031467pt;}
.fs11{font-size:37.325333pt;}
.fs6{font-size:38.961067pt;}
.fs0{font-size:42.507733pt;}
.fs17{font-size:42.885333pt;}
.fse{font-size:52.999467pt;}
.fs13{font-size:53.022400pt;}
.fs15{font-size:53.044267pt;}
.fsc{font-size:53.045333pt;}
.fs1{font-size:53.133867pt;}
.fs10{font-size:53.413867pt;}
.fs5{font-size:58.448000pt;}
.fs7{font-size:63.760533pt;}
.fs12{font-size:72.030400pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y277{bottom:0.913733pt;}
.yd0{bottom:3.395333pt;}
.y99{bottom:35.527600pt;}
.y5a{bottom:56.390533pt;}
.ydd{bottom:65.763733pt;}
.y128{bottom:67.952721pt;}
.ydc{bottom:67.955867pt;}
.y274{bottom:67.956074pt;}
.yda{bottom:67.956150pt;}
.y19f{bottom:67.956821pt;}
.y161{bottom:67.957133pt;}
.y213{bottom:67.957184pt;}
.y118{bottom:67.957839pt;}
.y98{bottom:67.958264pt;}
.y2ae{bottom:71.508964pt;}
.ydb{bottom:73.852000pt;}
.yd9{bottom:83.905608pt;}
.y160{bottom:84.510989pt;}
.y117{bottom:84.511695pt;}
.y212{bottom:84.586756pt;}
.y97{bottom:84.663551pt;}
.y273{bottom:84.737077pt;}
.y2ad{bottom:84.812822pt;}
.y127{bottom:85.036587pt;}
.y19e{bottom:93.203377pt;}
.y45{bottom:94.870235pt;}
.yd8{bottom:97.587467pt;}
.y2ac{bottom:98.116680pt;}
.yd7{bottom:99.855067pt;}
.y15f{bottom:101.140561pt;}
.y116{bottom:101.141267pt;}
.y211{bottom:101.292043pt;}
.y96{bottom:101.444555pt;}
.y272{bottom:101.593797pt;}
.y126{bottom:102.196169pt;}
.y19d{bottom:110.362960pt;}
.y2ab{bottom:111.420538pt;}
.y44{bottom:112.255636pt;}
.y15e{bottom:117.770133pt;}
.y115{bottom:117.770839pt;}
.y210{bottom:117.921615pt;}
.y95{bottom:118.149843pt;}
.y271{bottom:118.374800pt;}
.y125{bottom:119.280036pt;}
.yd6{bottom:121.202400pt;}
.yd5{bottom:123.202400pt;}
.y15d{bottom:123.666133pt;}
.y2aa{bottom:124.648944pt;}
.y43{bottom:128.885208pt;}
.y114{bottom:134.324695pt;}
.y94{bottom:134.930846pt;}
.y19c{bottom:135.609516pt;}
.y124{bottom:136.439618pt;}
.y2a9{bottom:137.952802pt;}
.y243{bottom:138.481590pt;}
.yd4{bottom:142.745733pt;}
.yd3{bottom:144.745733pt;}
.y42{bottom:146.270609pt;}
.y112{bottom:148.762267pt;}
.y242{bottom:150.425200pt;}
.y113{bottom:150.954267pt;}
.y111{bottom:150.954695pt;}
.y15b{bottom:150.958228pt;}
.y2a8{bottom:151.256660pt;}
.y270{bottom:151.559067pt;}
.y93{bottom:151.636134pt;}
.y20f{bottom:153.146712pt;}
.y123{bottom:153.523485pt;}
.y15c{bottom:156.850119pt;}
.y41{bottom:163.656011pt;}
.y2a7{bottom:164.485535pt;}
.y10f{bottom:165.392133pt;}
.yd2{bottom:166.904411pt;}
.y110{bottom:167.584267pt;}
.y10e{bottom:167.587177pt;}
.y15a{bottom:167.587800pt;}
.y92{bottom:168.417137pt;}
.y19b{bottom:168.794273pt;}
.y20d{bottom:169.852000pt;}
.y20b{bottom:169.855658pt;}
.y122{bottom:170.683067pt;}
.y20e{bottom:175.748000pt;}
.y20c{bottom:175.748269pt;}
.y2a6{bottom:177.789393pt;}
.y40{bottom:181.041412pt;}
.yd1{bottom:183.458267pt;}
.y10d{bottom:184.141033pt;}
.y159{bottom:184.141656pt;}
.y91{bottom:185.122425pt;}
.y19a{bottom:186.028243pt;}
.y20a{bottom:186.485230pt;}
.y121{bottom:187.766933pt;}
.y2a5{bottom:191.093251pt;}
.y26f{bottom:196.233579pt;}
.ycf{bottom:196.610667pt;}
.yce{bottom:197.834000pt;}
.y3f{bottom:198.426813pt;}
.ycd{bottom:200.006000pt;}
.ycc{bottom:200.088416pt;}
.y10c{bottom:200.770605pt;}
.y158{bottom:200.771228pt;}
.y90{bottom:201.903428pt;}
.y199{bottom:203.187825pt;}
.y209{bottom:203.190517pt;}
.y2a4{bottom:204.397109pt;}
.y26e{bottom:213.090299pt;}
.y3e{bottom:215.887930pt;}
.ycb{bottom:216.037875pt;}
.y10b{bottom:217.400177pt;}
.y157{bottom:217.400800pt;}
.y2a3{bottom:217.625515pt;}
.y8f{bottom:218.608716pt;}
.y198{bottom:219.817397pt;}
.y208{bottom:219.820089pt;}
.y120{bottom:220.951067pt;}
.y26d{bottom:229.644155pt;}
.yca{bottom:229.719600pt;}
.y2a2{bottom:230.929373pt;}
.yc9{bottom:231.987333pt;}
.y3d{bottom:233.273331pt;}
.y10a{bottom:233.954033pt;}
.y156{bottom:233.954656pt;}
.y8e{bottom:235.314004pt;}
.y207{bottom:236.525377pt;}
.y2a1{bottom:244.233231pt;}
.y26c{bottom:246.500874pt;}
.y109{bottom:250.583605pt;}
.y155{bottom:250.584228pt;}
.y3c{bottom:250.658732pt;}
.y8d{bottom:252.095007pt;}
.yc4{bottom:252.179600pt;}
.y206{bottom:253.230665pt;}
.y2a0{bottom:257.537089pt;}
.yc6{bottom:260.679600pt;}
.yc8{bottom:262.679600pt;}
.yc5{bottom:262.680119pt;}
.y196{bottom:263.281867pt;}
.y26b{bottom:263.281877pt;}
.y195{bottom:265.474000pt;}
.y193{bottom:265.474697pt;}
.y108{bottom:267.213177pt;}
.y154{bottom:267.213800pt;}
.y3b{bottom:268.044133pt;}
.y8c{bottom:268.800295pt;}
.y205{bottom:269.860237pt;}
.yc7{bottom:270.430025pt;}
.y29f{bottom:270.765495pt;}
.y197{bottom:271.369719pt;}
.y194{bottom:271.370000pt;}
.y11f{bottom:271.746036pt;}
.y2e7{bottom:273.864691pt;}
.y26a{bottom:280.062881pt;}
.y190{bottom:282.708199pt;}
.y192{bottom:282.708667pt;}
.y107{bottom:283.767033pt;}
.y153{bottom:283.767656pt;}
.y29e{bottom:284.069353pt;}
.y8b{bottom:285.429867pt;}
.y204{bottom:286.565524pt;}
.y2e6{bottom:287.093098pt;}
.y191{bottom:288.604667pt;}
.y11e{bottom:288.905618pt;}
.yc3{bottom:292.762700pt;}
.y269{bottom:296.919600pt;}
.y267{bottom:296.919663pt;}
.y29d{bottom:297.373211pt;}
.y18f{bottom:299.867781pt;}
.y106{bottom:300.396605pt;}
.y2e5{bottom:300.396955pt;}
.y152{bottom:300.397228pt;}
.y3a{bottom:301.228267pt;}
.y268{bottom:302.815733pt;}
.y203{bottom:303.119380pt;}
.y11d{bottom:305.989485pt;}
.yc2{bottom:308.712158pt;}
.y29c{bottom:310.601618pt;}
.y265{bottom:311.508667pt;}
.y264{bottom:313.700667pt;}
.y262{bottom:313.700758pt;}
.y2e4{bottom:313.700813pt;}
.y151{bottom:317.026800pt;}
.y18e{bottom:317.101751pt;}
.y8a{bottom:318.614133pt;}
.y266{bottom:319.596519pt;}
.y263{bottom:319.596800pt;}
.y11c{bottom:323.149067pt;}
.y29b{bottom:323.905475pt;}
.yc1{bottom:324.661616pt;}
.y2e3{bottom:327.004671pt;}
.y261{bottom:330.557477pt;}
.y18d{bottom:334.261333pt;}
.y105{bottom:334.261475pt;}
.y29a{bottom:337.209333pt;}
.y202{bottom:338.420193pt;}
.y36{bottom:339.401467pt;}
.y11b{bottom:340.232933pt;}
.y2e2{bottom:340.233078pt;}
.yc0{bottom:340.611075pt;}
.y38{bottom:341.820400pt;}
.y35{bottom:341.825733pt;}
.y260{bottom:347.338481pt;}
.y39{bottom:348.321200pt;}
.y37{bottom:348.321603pt;}
.y104{bottom:350.210933pt;}
.y2e1{bottom:353.536936pt;}
.ybe{bottom:354.292800pt;}
.y201{bottom:355.125481pt;}
.ybf{bottom:356.560533pt;}
.ybd{bottom:356.560675pt;}
.y34{bottom:359.740045pt;}
.y89{bottom:361.852860pt;}
.y25d{bottom:361.927467pt;}
.y299{bottom:362.456533pt;}
.y25e{bottom:364.195200pt;}
.y25c{bottom:364.197091pt;}
.y2e0{bottom:366.840793pt;}
.y25f{bottom:370.091333pt;}
.y200{bottom:371.755053pt;}
.y103{bottom:372.329185pt;}
.ybc{bottom:372.510133pt;}
.y18c{bottom:372.888561pt;}
.y33{bottom:377.730339pt;}
.y88{bottom:378.558148pt;}
.y2df{bottom:380.069955pt;}
.y25b{bottom:380.750947pt;}
.y18b{bottom:387.552667pt;}
.y189{bottom:387.553079pt;}
.y1ff{bottom:388.460340pt;}
.y1fc{bottom:389.669628pt;}
.y102{bottom:391.679733pt;}
.y18a{bottom:392.239333pt;}
.yb3{bottom:392.828294pt;}
.y2de{bottom:393.373813pt;}
.yb5{bottom:395.330708pt;}
.y87{bottom:395.339151pt;}
.y32{bottom:395.644651pt;}
.y25a{bottom:397.607666pt;}
.yb8{bottom:398.833867pt;}
.y298{bottom:400.705761pt;}
.y188{bottom:402.141733pt;}
.y186{bottom:402.142013pt;}
.y1fb{bottom:404.333733pt;}
.y1f9{bottom:404.334146pt;}
.y1fe{bottom:405.089912pt;}
.y2dd{bottom:406.677671pt;}
.y187{bottom:406.828267pt;}
.yb4{bottom:406.840219pt;}
.y1fa{bottom:409.020400pt;}
.yb9{bottom:409.342471pt;}
.yb1{bottom:409.593067pt;}
.yb7{bottom:411.343768pt;}
.ybb{bottom:411.344533pt;}
.y86{bottom:412.044439pt;}
.y101{bottom:412.195342pt;}
.y31{bottom:413.558963pt;}
.y259{bottom:414.388670pt;}
.y185{bottom:416.730667pt;}
.y183{bottom:416.731095pt;}
.yb6{bottom:417.099186pt;}
.y297{bottom:417.335333pt;}
.y1f8{bottom:418.922800pt;}
.y1f6{bottom:418.923079pt;}
.y150{bottom:419.376267pt;}
.yb2{bottom:419.601600pt;}
.y2dc{bottom:419.981528pt;}
.y184{bottom:421.492800pt;}
.y1fd{bottom:421.795200pt;}
.y1f7{bottom:423.609333pt;}
.y100{bottom:428.144800pt;}
.y85{bottom:428.825442pt;}
.yba{bottom:429.108942pt;}
.y180{bottom:429.581067pt;}
.y258{bottom:431.018241pt;}
.y182{bottom:431.395200pt;}
.y17f{bottom:431.395479pt;}
.y30{bottom:431.473275pt;}
.y2db{bottom:433.209935pt;}
.y1f5{bottom:433.511733pt;}
.y1f3{bottom:433.512161pt;}
.y14f{bottom:433.972599pt;}
.y181{bottom:436.081686pt;}
.y1f4{bottom:438.273867pt;}
.y84{bottom:445.530730pt;}
.y17e{bottom:445.984133pt;}
.y17c{bottom:445.984546pt;}
.y1f0{bottom:446.362133pt;}
.y2da{bottom:446.513793pt;}
.yb0{bottom:447.954133pt;}
.y1f2{bottom:448.176267pt;}
.y1ef{bottom:448.176546pt;}
.y14e{bottom:448.561253pt;}
.y2f{bottom:449.463570pt;}
.y296{bottom:450.519467pt;}
.y17d{bottom:450.670800pt;}
.yfd{bottom:451.148786pt;}
.yf9{bottom:451.148933pt;}
.y1f1{bottom:452.862753pt;}
.yfb{bottom:454.649737pt;}
.y179{bottom:458.834533pt;}
.yff{bottom:459.152570pt;}
.y2d9{bottom:459.817651pt;}
.y82{bottom:460.044000pt;}
.y17b{bottom:460.573200pt;}
.y178{bottom:460.573479pt;}
.y81{bottom:462.311733pt;}
.y7f{bottom:462.314552pt;}
.yf7{bottom:462.653867pt;}
.y1ee{bottom:462.765200pt;}
.y1ec{bottom:462.765613pt;}
.yfc{bottom:463.154000pt;}
.y14d{bottom:463.225358pt;}
.yaf{bottom:464.583705pt;}
.yf8{bottom:465.154800pt;}
.y17a{bottom:465.335153pt;}
.y240{bottom:467.225067pt;}
.y2e{bottom:467.377882pt;}
.y1ed{bottom:467.451867pt;}
.y80{bottom:468.207733pt;}
.y83{bottom:468.208003pt;}
.y257{bottom:469.040836pt;}
.y2d8{bottom:473.121509pt;}
.yfa{bottom:473.407737pt;}
.y177{bottom:475.162133pt;}
.y175{bottom:475.165726pt;}
.y1e9{bottom:475.615600pt;}
.y1eb{bottom:477.354267pt;}
.y1e8{bottom:477.354546pt;}
.y14c{bottom:477.814012pt;}
.yfe{bottom:477.910428pt;}
.y7e{bottom:479.019839pt;}
.y176{bottom:479.924267pt;}
.yae{bottom:481.213277pt;}
.y1ea{bottom:482.116220pt;}
.y2d{bottom:485.292194pt;}
.y256{bottom:485.821840pt;}
.y2d7{bottom:486.349915pt;}
.y295{bottom:491.036133pt;}
.y1e5{bottom:491.942756pt;}
.y1e7{bottom:491.943200pt;}
.y14b{bottom:492.402666pt;}
.yf6{bottom:495.421533pt;}
.y7d{bottom:495.725127pt;}
.y1e6{bottom:496.705467pt;}
.yad{bottom:497.767133pt;}
.y2d6{bottom:499.653773pt;}
.y167{bottom:501.467386pt;}
.y16a{bottom:501.468449pt;}
.y16d{bottom:501.469511pt;}
.y170{bottom:501.470574pt;}
.y174{bottom:501.471637pt;}
.y255{bottom:502.602843pt;}
.y2c{bottom:503.206506pt;}
.y14a{bottom:506.991320pt;}
.yf5{bottom:511.975389pt;}
.y7c{bottom:512.506130pt;}
.y2d5{bottom:512.957631pt;}
.yac{bottom:514.396705pt;}
.y169{bottom:516.132554pt;}
.y16c{bottom:516.133617pt;}
.y16f{bottom:516.134679pt;}
.y173{bottom:516.135742pt;}
.y1e3{bottom:518.248667pt;}
.y1e0{bottom:518.248844pt;}
.y28{bottom:518.702267pt;}
.y254{bottom:519.459563pt;}
.y2a{bottom:521.196800pt;}
.y27{bottom:521.198664pt;}
.y149{bottom:521.656488pt;}
.y1e2{bottom:523.010933pt;}
.y294{bottom:524.220400pt;}
.y2d4{bottom:526.186038pt;}
.y2b{bottom:527.622000pt;}
.y29{bottom:527.622403pt;}
.yf4{bottom:528.604961pt;}
.y7b{bottom:529.211418pt;}
.y168{bottom:530.721208pt;}
.y16b{bottom:530.722271pt;}
.y16e{bottom:530.723334pt;}
.y172{bottom:530.724396pt;}
.yab{bottom:531.026277pt;}
.y1e4{bottom:532.913835pt;}
.y1e1{bottom:532.914012pt;}
.y253{bottom:536.240566pt;}
.y148{bottom:536.245142pt;}
.y26{bottom:539.112976pt;}
.y2d3{bottom:539.489895pt;}
.yf3{bottom:545.234533pt;}
.y171{bottom:545.313050pt;}
.y7a{bottom:545.992422pt;}
.yaa{bottom:547.580133pt;}
.y147{bottom:550.833797pt;}
.y2d2{bottom:552.793753pt;}
.y252{bottom:553.097285pt;}
.y1df{bottom:556.346400pt;}
.y25{bottom:557.027288pt;}
.y79{bottom:562.546278pt;}
.ya9{bottom:564.209705pt;}
.y293{bottom:564.745593pt;}
.y146{bottom:565.497902pt;}
.y2d1{bottom:566.097611pt;}
.yf2{bottom:566.784933pt;}
.y166{bottom:569.498888pt;}
.y251{bottom:569.651141pt;}
.y23{bottom:572.522667pt;}
.y22{bottom:574.941600pt;}
.y20{bottom:574.941839pt;}
.y2d0{bottom:579.326018pt;}
.y78{bottom:579.327281pt;}
.y145{bottom:580.086556pt;}
.ya8{bottom:580.763561pt;}
.y292{bottom:581.375165pt;}
.y21{bottom:581.442400pt;}
.y24{bottom:581.442803pt;}
.y250{bottom:586.507861pt;}
.yf1{bottom:587.792425pt;}
.y2cf{bottom:592.629875pt;}
.y1f{bottom:592.932133pt;}
.y1d{bottom:592.934131pt;}
.y165{bottom:593.385046pt;}
.y144{bottom:594.675210pt;}
.y77{bottom:596.032569pt;}
.ya7{bottom:597.393133pt;}
.y1e{bottom:599.357333pt;}
.y24f{bottom:603.288864pt;}
.yf0{bottom:603.741883pt;}
.y164{bottom:605.328656pt;}
.y2ce{bottom:605.934346pt;}
.y1dd{bottom:607.294400pt;}
.y1de{bottom:609.108533pt;}
.y1dc{bottom:609.108813pt;}
.y143{bottom:609.339315pt;}
.y1c{bottom:610.848443pt;}
.y76{bottom:612.813572pt;}
.ya6{bottom:614.022705pt;}
.y291{bottom:614.558593pt;}
.y163{bottom:617.272267pt;}
.y2cd{bottom:619.238204pt;}
.yef{bottom:619.691342pt;}
.y24e{bottom:620.145583pt;}
.y1d9{bottom:621.958933pt;}
.y1da{bottom:623.697467pt;}
.y1d8{bottom:623.697746pt;}
.y142{bottom:623.927969pt;}
.y1db{bottom:628.459733pt;}
.y1b{bottom:628.762755pt;}
.y75{bottom:629.518860pt;}
.ya5{bottom:630.576561pt;}
.y290{bottom:631.188165pt;}
.y2cc{bottom:632.466611pt;}
.yee{bottom:635.640800pt;}
.y1d5{bottom:636.547867pt;}
.y24d{bottom:636.926587pt;}
.y1d4{bottom:638.285899pt;}
.y1d6{bottom:638.286400pt;}
.y141{bottom:638.516623pt;}
.y59{bottom:640.779760pt;}
.y1d7{bottom:643.048667pt;}
.ya3{bottom:645.014000pt;}
.y2cb{bottom:645.770468pt;}
.y74{bottom:646.299863pt;}
.y1a{bottom:646.677067pt;}
.ya2{bottom:647.206133pt;}
.ya0{bottom:647.208533pt;}
.y1d1{bottom:651.136933pt;}
.y58{bottom:651.362432pt;}
.y1d2{bottom:652.951067pt;}
.y1d0{bottom:652.951346pt;}
.ya4{bottom:653.101853pt;}
.ya1{bottom:653.102267pt;}
.y140{bottom:653.181791pt;}
.y24c{bottom:653.707590pt;}
.y1d3{bottom:657.637600pt;}
.y2ca{bottom:659.074326pt;}
.y57{bottom:662.020979pt;}
.y73{bottom:663.005151pt;}
.y9f{bottom:663.838105pt;}
.y28f{bottom:664.371593pt;}
.y1cd{bottom:665.801467pt;}
.y1ce{bottom:667.540000pt;}
.y1cc{bottom:667.540279pt;}
.y13f{bottom:667.770446pt;}
.y162{bottom:669.429733pt;}
.y24b{bottom:670.337162pt;}
.y1cf{bottom:672.227000pt;}
.y2c9{bottom:672.378184pt;}
.y56{bottom:672.603651pt;}
.y72{bottom:679.786155pt;}
.y1c9{bottom:680.390400pt;}
.y9e{bottom:680.391961pt;}
.y28e{bottom:681.001165pt;}
.y11a{bottom:681.675190pt;}
.y1c8{bottom:682.128432pt;}
.y1ca{bottom:682.128933pt;}
.y13e{bottom:682.359100pt;}
.y55{bottom:683.262198pt;}
.y2c8{bottom:685.606591pt;}
.y1cb{bottom:686.891200pt;}
.y24a{bottom:687.118165pt;}
.y119{bottom:693.618800pt;}
.y54{bottom:693.844870pt;}
.y19{bottom:694.526290pt;}
.y1c5{bottom:694.979333pt;}
.y71{bottom:696.491442pt;}
.y1c6{bottom:696.793600pt;}
.y1c4{bottom:696.793879pt;}
.y13d{bottom:696.947754pt;}
.y9d{bottom:697.021533pt;}
.y28d{bottom:697.555022pt;}
.y2c7{bottom:698.910449pt;}
.y1c7{bottom:701.480133pt;}
.y249{bottom:703.974885pt;}
.y18{bottom:707.830148pt;}
.y53{bottom:709.568033pt;}
.y1c1{bottom:709.568400pt;}
.y1c0{bottom:711.381707pt;}
.y1c2{bottom:711.382533pt;}
.y13c{bottom:711.611859pt;}
.y2c6{bottom:712.214306pt;}
.y70{bottom:713.196730pt;}
.y9c{bottom:713.651105pt;}
.y1c3{bottom:716.069200pt;}
.y52{bottom:720.150705pt;}
.y248{bottom:720.755888pt;}
.y2c5{bottom:725.442713pt;}
.y13b{bottom:726.200513pt;}
.y6e{bottom:727.785600pt;}
.y6f{bottom:729.977733pt;}
.y6d{bottom:729.981292pt;}
.y9b{bottom:730.204961pt;}
.y17{bottom:730.356059pt;}
.y51{bottom:730.809252pt;}
.y28c{bottom:730.814165pt;}
.y247{bottom:737.612607pt;}
.y1be{bottom:737.687618pt;}
.y2c4{bottom:738.746571pt;}
.y13a{bottom:740.789167pt;}
.y50{bottom:741.467799pt;}
.y6c{bottom:746.686580pt;}
.y9a{bottom:746.834533pt;}
.y28b{bottom:747.368022pt;}
.y241{bottom:748.648667pt;}
.y16{bottom:748.951067pt;}
.y2c3{bottom:752.050429pt;}
.y4f{bottom:752.050471pt;}
.y1bf{bottom:752.276272pt;}
.y15{bottom:752.957333pt;}
.y246{bottom:754.393611pt;}
.y139{bottom:755.453272pt;}
.y14{bottom:762.254933pt;}
.y6b{bottom:763.467583pt;}
.y28a{bottom:763.997593pt;}
.y2c2{bottom:765.354287pt;}
.y13{bottom:766.261200pt;}
.y138{bottom:770.041927pt;}
.y245{bottom:771.174614pt;}
.y12{bottom:775.558800pt;}
.y1bd{bottom:775.709723pt;}
.y2c1{bottom:778.582693pt;}
.y11{bottom:779.565200pt;}
.y6a{bottom:780.021439pt;}
.y4e{bottom:783.949333pt;}
.y137{bottom:784.630581pt;}
.y1bc{bottom:787.653333pt;}
.y244{bottom:788.031333pt;}
.y10{bottom:788.862800pt;}
.y289{bottom:789.245479pt;}
.y2c0{bottom:791.886551pt;}
.yf{bottom:792.869200pt;}
.y4d{bottom:794.607600pt;}
.y69{bottom:796.802443pt;}
.yed{bottom:799.294811pt;}
.y136{bottom:799.295749pt;}
.ye{bottom:802.091200pt;}
.y2bf{bottom:805.190409pt;}
.y288{bottom:805.875051pt;}
.yd{bottom:806.097467pt;}
.y4c{bottom:811.842400pt;}
.y68{bottom:813.507730pt;}
.yec{bottom:813.883465pt;}
.y135{bottom:813.884403pt;}
.yc{bottom:815.395067pt;}
.y23f{bottom:817.889600pt;}
.y23d{bottom:817.889879pt;}
.y2be{bottom:818.494864pt;}
.yb{bottom:819.401333pt;}
.y287{bottom:822.428907pt;}
.y4b{bottom:822.500667pt;}
.y23e{bottom:822.576133pt;}
.yeb{bottom:828.472119pt;}
.y134{bottom:828.473057pt;}
.ya{bottom:828.699067pt;}
.y67{bottom:830.288734pt;}
.y2bd{bottom:831.723271pt;}
.y23c{bottom:832.478533pt;}
.y23a{bottom:832.478946pt;}
.y9{bottom:832.705333pt;}
.y23b{bottom:837.165200pt;}
.y4a{bottom:839.735200pt;}
.y1bb{bottom:840.416028pt;}
.yea{bottom:843.137287pt;}
.y133{bottom:843.138225pt;}
.y2bc{bottom:845.027128pt;}
.y7{bottom:845.933875pt;}
.y66{bottom:846.994022pt;}
.y239{bottom:847.067600pt;}
.y237{bottom:847.068028pt;}
.y286{bottom:847.675463pt;}
.y49{bottom:850.393600pt;}
.y8{bottom:851.149467pt;}
.y238{bottom:851.829733pt;}
.y1ba{bottom:855.080133pt;}
.y1b8{bottom:855.080413pt;}
.ye9{bottom:857.725941pt;}
.y132{bottom:857.726879pt;}
.y2bb{bottom:858.330986pt;}
.y1b9{bottom:859.766800pt;}
.y234{bottom:859.917867pt;}
.y236{bottom:861.732133pt;}
.y233{bottom:861.732413pt;}
.y5{bottom:861.883333pt;}
.y65{bottom:863.775025pt;}
.y285{bottom:864.305035pt;}
.y235{bottom:866.418486pt;}
.y6{bottom:867.023467pt;}
.y48{bottom:867.628133pt;}
.y1b7{bottom:869.669067pt;}
.y1b5{bottom:869.669346pt;}
.y2ba{bottom:871.559393pt;}
.ye8{bottom:872.314595pt;}
.y131{bottom:872.315533pt;}
.y1b6{bottom:874.355733pt;}
.y232{bottom:876.321067pt;}
.y230{bottom:876.321346pt;}
.y47{bottom:878.286400pt;}
.y64{bottom:880.480313pt;}
.y231{bottom:881.007600pt;}
.y1b4{bottom:884.258000pt;}
.y1b2{bottom:884.258561pt;}
.y2b9{bottom:884.863251pt;}
.ye7{bottom:886.903249pt;}
.y130{bottom:886.904187pt;}
.y1b3{bottom:889.020267pt;}
.y22d{bottom:889.171467pt;}
.y284{bottom:889.551592pt;}
.y22f{bottom:890.910000pt;}
.y22c{bottom:890.910413pt;}
.y22e{bottom:895.672086pt;}
.y1af{bottom:897.108533pt;}
.y63{bottom:897.185600pt;}
.y4{bottom:897.787727pt;}
.y2b8{bottom:898.167109pt;}
.y1b1{bottom:898.922667pt;}
.y1ae{bottom:898.922946pt;}
.ye6{bottom:901.568417pt;}
.y12f{bottom:901.569355pt;}
.y1b0{bottom:903.609153pt;}
.y22b{bottom:905.499067pt;}
.y229{bottom:905.504633pt;}
.y283{bottom:906.105448pt;}
.y46{bottom:909.958800pt;}
.y22a{bottom:910.261200pt;}
.y2b7{bottom:911.470966pt;}
.y1ad{bottom:913.511600pt;}
.y1ab{bottom:913.511879pt;}
.y62{bottom:913.966604pt;}
.ye5{bottom:916.157071pt;}
.y12e{bottom:916.158009pt;}
.y1ac{bottom:918.198267pt;}
.y2b6{bottom:924.699373pt;}
.y3{bottom:925.681600pt;}
.y27c{bottom:926.362000pt;}
.y1aa{bottom:928.100533pt;}
.y1a8{bottom:928.100946pt;}
.y61{bottom:930.671891pt;}
.ye4{bottom:930.745725pt;}
.y12d{bottom:930.746663pt;}
.y282{bottom:931.353333pt;}
.y216{bottom:931.804168pt;}
.y219{bottom:931.805230pt;}
.y21c{bottom:931.806293pt;}
.y21f{bottom:931.807356pt;}
.y222{bottom:931.808418pt;}
.y225{bottom:931.809481pt;}
.y228{bottom:931.810544pt;}
.y27d{bottom:932.862620pt;}
.y1a9{bottom:932.862800pt;}
.y2b5{bottom:938.003231pt;}
.y1a5{bottom:942.688965pt;}
.y27b{bottom:942.689156pt;}
.y1a7{bottom:942.689600pt;}
.ye3{bottom:945.409830pt;}
.y12c{bottom:945.410768pt;}
.y218{bottom:946.469336pt;}
.y21b{bottom:946.470398pt;}
.y21e{bottom:946.471461pt;}
.y221{bottom:946.472524pt;}
.y224{bottom:946.473586pt;}
.y227{bottom:946.474649pt;}
.y60{bottom:947.301463pt;}
.y1a6{bottom:947.451867pt;}
.y281{bottom:947.982905pt;}
.y2b4{bottom:951.307089pt;}
.y1a3{bottom:955.540000pt;}
.y1a2{bottom:957.353441pt;}
.y1a4{bottom:957.354133pt;}
.ye2{bottom:959.998484pt;}
.y12b{bottom:959.999423pt;}
.y217{bottom:961.057990pt;}
.y21a{bottom:961.059052pt;}
.y21d{bottom:961.060115pt;}
.y220{bottom:961.061178pt;}
.y223{bottom:961.062240pt;}
.y226{bottom:961.063303pt;}
.y2{bottom:961.511600pt;}
.y5f{bottom:964.006751pt;}
.y2b3{bottom:964.610947pt;}
.y280{bottom:964.612477pt;}
.y276{bottom:967.937333pt;}
.y275{bottom:968.994184pt;}
.y278{bottom:968.995067pt;}
.y2b2{bottom:977.839353pt;}
.y5e{bottom:980.787755pt;}
.y1a0{bottom:983.659352pt;}
.y27a{bottom:983.660235pt;}
.y129{bottom:984.491067pt;}
.y215{bottom:985.247015pt;}
.ye1{bottom:986.304395pt;}
.y12a{bottom:986.305333pt;}
.y2b1{bottom:991.143211pt;}
.y5d{bottom:997.493042pt;}
.y27f{bottom:997.795905pt;}
.y1a1{bottom:998.248006pt;}
.y279{bottom:998.248889pt;}
.y2b0{bottom:1004.447069pt;}
.ye0{bottom:1009.737846pt;}
.y214{bottom:1009.814360pt;}
.y5c{bottom:1014.274046pt;}
.y27e{bottom:1014.425477pt;}
.y2af{bottom:1017.675475pt;}
.ydf{bottom:1021.681456pt;}
.y5b{bottom:1030.979333pt;}
.yde{bottom:1033.625067pt;}
.y1{bottom:1077.467467pt;}
.h3e{height:7.650288pt;}
.h16{height:9.563040pt;}
.h42{height:10.506667pt;}
.he{height:10.519488pt;}
.h8{height:11.343941pt;}
.h28{height:13.530667pt;}
.h12{height:17.985814pt;}
.h7{height:19.508688pt;}
.h3c{height:20.117424pt;}
.h3f{height:21.165797pt;}
.h3d{height:22.950864pt;}
.h2e{height:25.005579pt;}
.h6{height:25.102224pt;}
.h1e{height:25.255460pt;}
.h23{height:25.308000pt;}
.h27{height:25.530528pt;}
.h2b{height:26.122000pt;}
.h24{height:26.270000pt;}
.h37{height:26.281360pt;}
.h15{height:26.457744pt;}
.h31{height:27.613936pt;}
.h14{height:28.689120pt;}
.h40{height:28.735228pt;}
.h11{height:28.777735pt;}
.hd{height:29.103917pt;}
.h13{height:29.265840pt;}
.h39{height:29.982960pt;}
.h1f{height:29.995488pt;}
.h9{height:30.180491pt;}
.hc{height:31.558464pt;}
.h2{height:34.431264pt;}
.h43{height:34.737120pt;}
.h25{height:35.827639pt;}
.h3a{height:35.843142pt;}
.h20{height:35.858645pt;}
.h17{height:35.918494pt;}
.h3{height:35.971628pt;}
.h29{height:36.107774pt;}
.h21{height:37.417623pt;}
.h5{height:37.512510pt;}
.h33{height:37.645904pt;}
.h18{height:37.725045pt;}
.h2a{height:39.537602pt;}
.h30{height:39.554710pt;}
.h19{height:40.547853pt;}
.ha{height:41.498080pt;}
.h2c{height:42.929568pt;}
.h3b{height:42.965856pt;}
.h1d{height:42.966720pt;}
.h10{height:43.038432pt;}
.h26{height:43.265232pt;}
.hf{height:45.269979pt;}
.hb{height:47.342880pt;}
.h2f{height:53.734678pt;}
.h2d{height:55.969900pt;}
.h36{height:58.333514pt;}
.h38{height:59.295930pt;}
.h41{height:61.345131pt;}
.h4{height:65.131930pt;}
.h1a{height:67.579755pt;}
.h32{height:69.279068pt;}
.h1c{height:72.597843pt;}
.h22{height:76.626629pt;}
.h35{height:84.968396pt;}
.h1b{height:108.615625pt;}
.h34{height:112.677902pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:6.878667pt;}
.w2{width:43.465333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:56.617333pt;}
.x1{left:158.966933pt;}
.x97{left:164.713280pt;}
.xb4{left:165.845600pt;}
.xb3{left:168.491333pt;}
.xb{left:169.474000pt;}
.xb2{left:170.381067pt;}
.x13{left:172.119600pt;}
.x3a{left:173.253467pt;}
.x93{left:174.387333pt;}
.x25{left:178.779340pt;}
.x14{left:180.585733pt;}
.x94{left:182.022000pt;}
.x3b{left:185.725867pt;}
.x7a{left:191.773200pt;}
.x7b{left:196.610933pt;}
.x3c{left:199.710133pt;}
.x61{left:201.675467pt;}
.x3d{left:207.420400pt;}
.x15{left:217.927467pt;}
.xa9{left:226.017420pt;}
.xa{left:226.998400pt;}
.x3e{left:230.400000pt;}
.x16{left:231.609333pt;}
.x66{left:235.540133pt;}
.x62{left:238.034533pt;}
.x67{left:240.302267pt;}
.x3f{left:242.872400pt;}
.x63{left:244.233067pt;}
.x2{left:246.349467pt;}
.x81{left:250.960533pt;}
.x17{left:255.118000pt;}
.xb5{left:257.310133pt;}
.x82{left:260.787333pt;}
.x3{left:263.810933pt;}
.x18{left:268.799867pt;}
.x40{left:271.370000pt;}
.x84{left:285.958933pt;}
.x41{left:288.755867pt;}
.x8f{left:292.913333pt;}
.x95{left:294.122800pt;}
.x8e{left:295.558933pt;}
.x8d{left:297.448667pt;}
.x42{left:298.506933pt;}
.x90{left:300.170000pt;}
.x9a{left:303.571600pt;}
.x98{left:304.705467pt;}
.x96{left:306.519600pt;}
.x83{left:308.031467pt;}
.x9c{left:309.014133pt;}
.x9b{left:310.752667pt;}
.x72{left:314.703027pt;}
.xab{left:315.895772pt;}
.x99{left:319.521200pt;}
.x75{left:320.955481pt;}
.xaa{left:322.774586pt;}
.x6f{left:327.708533pt;}
.x43{left:332.447200pt;}
.xa1{left:338.343200pt;}
.xa0{left:341.064400pt;}
.x44{left:342.273867pt;}
.xa2{left:343.785733pt;}
.x70{left:345.966400pt;}
.x9f{left:349.303867pt;}
.x86{left:351.647196pt;}
.x50{left:354.554533pt;}
.x7f{left:355.729067pt;}
.x71{left:358.221600pt;}
.x87{left:360.566381pt;}
.xa3{left:362.230012pt;}
.x45{left:363.666000pt;}
.x7c{left:365.480133pt;}
.x19{left:366.765200pt;}
.x80{left:370.318000pt;}
.x6d{left:371.829733pt;}
.x4c{left:373.071351pt;}
.x85{left:374.022204pt;}
.x46{left:376.062933pt;}
.x1a{left:377.574667pt;}
.xbc{left:380.145959pt;}
.x5f{left:387.385467pt;}
.x9d{left:389.442400pt;}
.xb6{left:390.727467pt;}
.x56{left:392.135467pt;}
.x39{left:393.599867pt;}
.x68{left:397.152667pt;}
.x5e{left:398.885467pt;}
.x47{left:399.843600pt;}
.x78{left:402.864400pt;}
.x73{left:405.492871pt;}
.x1b{left:407.735333pt;}
.x53{left:411.385550pt;}
.x6e{left:412.574458pt;}
.xac{left:415.599786pt;}
.x76{left:418.997909pt;}
.x1c{left:421.417200pt;}
.x88{left:424.969848pt;}
.x48{left:428.868972pt;}
.x69{left:429.883333pt;}
.x51{left:431.470800pt;}
.x21{left:433.058133pt;}
.x4f{left:434.372701pt;}
.x6a{left:435.628267pt;}
.xa4{left:436.610933pt;}
.x4{left:437.669200pt;}
.x52{left:438.727467pt;}
.x7d{left:440.617200pt;}
.x60{left:442.385600pt;}
.xbd{left:443.716400pt;}
.x55{left:445.635175pt;}
.xa5{left:446.588933pt;}
.x5{left:448.176267pt;}
.x22{left:449.083333pt;}
.x64{left:455.357333pt;}
.x49{left:462.397938pt;}
.x74{left:464.018259pt;}
.x6b{left:466.318000pt;}
.x6c{left:470.324267pt;}
.x1d{left:474.330667pt;}
.x27{left:479.621867pt;}
.x65{left:482.645600pt;}
.x4a{left:483.666679pt;}
.x1e{left:485.140000pt;}
.x23{left:490.204533pt;}
.x54{left:492.385600pt;}
.xbe{left:493.682115pt;}
.x4b{left:494.676348pt;}
.x7e{left:496.176267pt;}
.x89{left:497.536925pt;}
.x24{left:501.014000pt;}
.x2c{left:502.072267pt;}
.x4d{left:503.434221pt;}
.x28{left:504.415600pt;}
.x8a{left:506.456110pt;}
.x9e{left:507.364166pt;}
.xa6{left:509.632153pt;}
.x1f{left:510.916400pt;}
.x2d{left:514.544800pt;}
.x20{left:519.382533pt;}
.x2e{left:528.528933pt;}
.xb7{left:531.023467pt;}
.x4e{left:532.207542pt;}
.x2f{left:536.239200pt;}
.xb8{left:540.850267pt;}
.x29{left:545.536800pt;}
.x77{left:547.553200pt;}
.x2a{left:550.299067pt;}
.x30{left:559.218800pt;}
.x2b{left:560.125867pt;}
.x6{left:566.248667pt;}
.xa7{left:569.347867pt;}
.x31{left:571.691200pt;}
.x8b{left:573.958391pt;}
.xad{left:577.213125pt;}
.x8c{left:578.417452pt;}
.xa8{left:579.325867pt;}
.xb9{left:580.535333pt;}
.xae{left:586.359727pt;}
.x7{left:588.169867pt;}
.xba{left:590.362000pt;}
.x32{left:592.478533pt;}
.x33{left:600.188800pt;}
.x57{left:601.247067pt;}
.xc{left:606.462800pt;}
.x34{left:617.499067pt;}
.xd{left:620.144667pt;}
.x35{left:625.209333pt;}
.xbb{left:627.703733pt;}
.xe{left:635.565200pt;}
.x58{left:637.757333pt;}
.x59{left:642.368267pt;}
.xf{left:644.031333pt;}
.x91{left:657.486400pt;}
.x36{left:659.149467pt;}
.xaf{left:667.090414pt;}
.x10{left:669.354133pt;}
.x8{left:675.023467pt;}
.xb0{left:676.538820pt;}
.x9{left:683.565200pt;}
.x79{left:684.850267pt;}
.xb1{left:686.063741pt;}
.x37{left:690.292667pt;}
.x5c{left:691.577333pt;}
.x38{left:702.765200pt;}
.x5a{left:704.850933pt;}
.x11{left:705.940000pt;}
.x12{left:714.406133pt;}
.x5b{left:723.594533pt;}
.x92{left:727.105333pt;}
.x5d{left:728.179733pt;}
}


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