
/* 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_b96c1e51b572.woff")format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_dea7fbcb4a99.woff")format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_0fdc3e1ef187.woff")format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_d5f0c4f1294f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_d6e243c19662.woff")format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_6a1008991d53.woff")format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_aa4946f5d3db.woff")format("woff");}.ff7{font-family:ff7;line-height:0.911000;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_715fb9b95901.woff")format("woff");}.ff8{font-family:ff8;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_05cf0d5e594c.woff")format("woff");}.ff9{font-family:ff9;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_4652701b80c9.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_0e4b1090a22f.woff")format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_d9823610157f.woff")format("woff");}.ffc{font-family:ffc;line-height:3.293000;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_c2052f271f73.woff")format("woff");}.ffd{font-family:ffd;line-height:0.899000;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_b9dc456d228f.woff")format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_ed9e0f679c89.woff")format("woff");}.fff{font-family:fff;line-height:1.701000;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_683905c6e550.woff")format("woff");}.ff10{font-family:ff10;line-height:0.668000;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_4f4656377c72.woff")format("woff");}.ff11{font-family:ff11;line-height:0.678000;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_ce0465c82de4.woff")format("woff");}.ff12{font-family:ff12;line-height:0.705000;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_a65df3dfbf21.woff")format("woff");}.ff13{font-family:ff13;line-height:0.664000;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_a40fff96f9b7.woff")format("woff");}.ff14{font-family:ff14;line-height:0.705000;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_80aa34c4bb23.woff")format("woff");}.ff15{font-family:ff15;line-height:0.683000;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_7d019ee25c7f.woff")format("woff");}.ff16{font-family:ff16;line-height:0.664000;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_4cabff9b16b4.woff")format("woff");}.ff17{font-family:ff17;line-height:0.909000;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_fd12506a6389.woff")format("woff");}.ff18{font-family:ff18;line-height:0.683000;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_8218f85c7194.woff")format("woff");}.ff19{font-family:ff19;line-height:0.694000;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_0589299a1f99.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.909000;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_fd12506a6389.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.683000;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_36d8dc75dcc3.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.694000;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_0589299a1f99.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.909000;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_b2b924f4686a.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.799000;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_fa944018c301.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.704000;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_f8fcdab98461.woff")format("woff");}.ff20{font-family:ff20;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_3a40088a9b15.woff")format("woff");}.ff21{font-family:ff21;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_252580ffd7ca.woff")format("woff");}.ff22{font-family:ff22;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_3a5f91754d42.woff")format("woff");}.ff23{font-family:ff23;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_999b9f7c22ef.woff")format("woff");}.ff24{font-family:ff24;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.173664,-0.179836,0.179836,0.173664,0,0);-ms-transform:matrix(0.173664,-0.179836,0.179836,0.173664,0,0);-webkit-transform:matrix(0.173664,-0.179836,0.179836,0.173664,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);}
.v1d{vertical-align:-56.189999px;}
.vf{vertical-align:-31.890970px;}
.v3{vertical-align:-26.034000px;}
.ve{vertical-align:-25.013789px;}
.vd{vertical-align:-20.120587px;}
.v2a{vertical-align:-16.878000px;}
.v11{vertical-align:-14.610000px;}
.v1f{vertical-align:-10.794000px;}
.v5{vertical-align:-8.970000px;}
.vc{vertical-align:-6.541658px;}
.v1{vertical-align:-3.588000px;}
.v4{vertical-align:-2.412000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:5.976000px;}
.va{vertical-align:8.424000px;}
.v10{vertical-align:12.510000px;}
.v9{vertical-align:14.400000px;}
.v8{vertical-align:16.068000px;}
.v1b{vertical-align:20.616000px;}
.v7{vertical-align:21.690000px;}
.v17{vertical-align:24.678000px;}
.v2{vertical-align:26.034000px;}
.v1a{vertical-align:28.158022px;}
.v22{vertical-align:33.636000px;}
.v1c{vertical-align:37.127981px;}
.v25{vertical-align:39.701999px;}
.v16{vertical-align:41.004004px;}
.v6{vertical-align:45.660000px;}
.v26{vertical-align:47.747999px;}
.v23{vertical-align:49.698000px;}
.v19{vertical-align:58.337998px;}
.v24{vertical-align:60.491999px;}
.v18{vertical-align:66.347998px;}
.v14{vertical-align:69.408000px;}
.v28{vertical-align:71.898000px;}
.v13{vertical-align:75.384000px;}
.v27{vertical-align:84.288000px;}
.v1e{vertical-align:97.793999px;}
.v12{vertical-align:102.216000px;}
.v21{vertical-align:106.721995px;}
.v29{vertical-align:140.478000px;}
.v15{vertical-align:143.220000px;}
.v20{vertical-align:191.009995px;}
.ls48{letter-spacing:0.000000px;}
.ls99{letter-spacing:0.000151px;}
.ls9b{letter-spacing:0.000940px;}
.ls16{letter-spacing:0.002854px;}
.ls22{letter-spacing:0.002982px;}
.lsbb{letter-spacing:0.003193px;}
.ls88{letter-spacing:0.004200px;}
.ls28{letter-spacing:0.004874px;}
.lsa0{letter-spacing:0.006268px;}
.lsaa{letter-spacing:0.006896px;}
.ls36{letter-spacing:0.007048px;}
.ls93{letter-spacing:0.009159px;}
.ls37{letter-spacing:0.009388px;}
.ls5e{letter-spacing:0.010874px;}
.ls33{letter-spacing:0.011291px;}
.ls3d{letter-spacing:0.011708px;}
.ls9c{letter-spacing:0.012268px;}
.lscd{letter-spacing:0.012478px;}
.lsa9{letter-spacing:0.012896px;}
.ls23{letter-spacing:0.014380px;}
.ls27{letter-spacing:0.014641px;}
.ls7e{letter-spacing:0.015395px;}
.ls31{letter-spacing:0.016297px;}
.ls98{letter-spacing:0.017152px;}
.ls80{letter-spacing:0.017291px;}
.ls77{letter-spacing:0.017447px;}
.lsc9{letter-spacing:0.018475px;}
.ls4a{letter-spacing:0.019477px;}
.ls8{letter-spacing:0.020084px;}
.lsb5{letter-spacing:0.020133px;}
.ls4f{letter-spacing:0.020476px;}
.ls56{letter-spacing:0.020622px;}
.lsac{letter-spacing:0.021448px;}
.ls79{letter-spacing:0.021449px;}
.ls73{letter-spacing:0.023446px;}
.ls2a{letter-spacing:0.024700px;}
.ls51{letter-spacing:0.025078px;}
.ls57{letter-spacing:0.025258px;}
.ls62{letter-spacing:0.025578px;}
.ls5{letter-spacing:0.026084px;}
.ls76{letter-spacing:0.026132px;}
.ls13{letter-spacing:0.026689px;}
.lsab{letter-spacing:0.027448px;}
.ls2e{letter-spacing:0.027634px;}
.ls5d{letter-spacing:0.029027px;}
.lsb2{letter-spacing:0.029210px;}
.lsbc{letter-spacing:0.031731px;}
.ls67{letter-spacing:0.032132px;}
.ls35{letter-spacing:0.032221px;}
.lsd9{letter-spacing:0.032442px;}
.ls52{letter-spacing:0.032499px;}
.ls59{letter-spacing:0.032593px;}
.ls11{letter-spacing:0.032688px;}
.ls4d{letter-spacing:0.033769px;}
.ls54{letter-spacing:0.034011px;}
.ls34{letter-spacing:0.035210px;}
.ls49{letter-spacing:0.035292px;}
.lsb4{letter-spacing:0.036887px;}
.ls4c{letter-spacing:0.037102px;}
.ls53{letter-spacing:0.037368px;}
.ls2f{letter-spacing:0.038222px;}
.ls6c{letter-spacing:0.038593px;}
.lsb1{letter-spacing:0.039110px;}
.ls18{letter-spacing:0.039741px;}
.lsda{letter-spacing:0.042360px;}
.ls39{letter-spacing:0.044159px;}
.lsce{letter-spacing:0.045112px;}
.ls47{letter-spacing:0.048360px;}
.ls92{letter-spacing:0.049266px;}
.ls85{letter-spacing:0.050159px;}
.lsd1{letter-spacing:0.050310px;}
.ls1d{letter-spacing:0.051068px;}
.ls3c{letter-spacing:0.051987px;}
.ls26{letter-spacing:0.057068px;}
.ls1e{letter-spacing:0.057987px;}
.ls44{letter-spacing:0.482321px;}
.ls29{letter-spacing:1.518044px;}
.lsca{letter-spacing:1.522216px;}
.ls9e{letter-spacing:1.688442px;}
.ls20{letter-spacing:1.694442px;}
.ls25{letter-spacing:1.715578px;}
.ls5b{letter-spacing:2.985192px;}
.ls5a{letter-spacing:2.991193px;}
.lse3{letter-spacing:2.992118px;}
.ls3e{letter-spacing:2.998870px;}
.ls0{letter-spacing:2.999261px;}
.lsb3{letter-spacing:3.004297px;}
.ls8e{letter-spacing:3.004869px;}
.ls6d{letter-spacing:3.005446px;}
.ls66{letter-spacing:3.008879px;}
.ls71{letter-spacing:3.009719px;}
.ls6b{letter-spacing:3.011446px;}
.ls38{letter-spacing:3.016024px;}
.ls2d{letter-spacing:3.186786px;}
.ls45{letter-spacing:3.192785px;}
.ls43{letter-spacing:3.461558px;}
.lsb7{letter-spacing:4.516216px;}
.lsc7{letter-spacing:4.872475px;}
.lscb{letter-spacing:6.463732px;}
.lsc8{letter-spacing:6.469731px;}
.ls86{letter-spacing:6.523669px;}
.ls87{letter-spacing:6.529669px;}
.ls97{letter-spacing:7.170939px;}
.ls78{letter-spacing:7.185917px;}
.ls7d{letter-spacing:7.191917px;}
.ls96{letter-spacing:7.192297px;}
.ls95{letter-spacing:7.208222px;}
.ls1a{letter-spacing:7.510109px;}
.ls1c{letter-spacing:8.304066px;}
.lsc5{letter-spacing:10.004159px;}
.ls60{letter-spacing:10.005502px;}
.lsad{letter-spacing:10.008360px;}
.lsc0{letter-spacing:10.010159px;}
.ls24{letter-spacing:10.017067px;}
.ls2c{letter-spacing:10.442321px;}
.ls83{letter-spacing:11.776199px;}
.ls84{letter-spacing:11.822159px;}
.lsc2{letter-spacing:12.968117px;}
.ls42{letter-spacing:12.971447px;}
.lsbe{letter-spacing:12.974118px;}
.ls89{letter-spacing:13.282201px;}
.ls94{letter-spacing:13.290267px;}
.ls7c{letter-spacing:13.293917px;}
.ls9f{letter-spacing:13.296267px;}
.ls70{letter-spacing:13.326359px;}
.ls10{letter-spacing:13.328159px;}
.ls3b{letter-spacing:13.332360px;}
.ls8a{letter-spacing:13.334158px;}
.ls68{letter-spacing:13.335067px;}
.lscc{letter-spacing:13.341068px;}
.ls3a{letter-spacing:13.341985px;}
.ls41{letter-spacing:15.272158px;}
.ls30{letter-spacing:15.343649px;}
.ls7b{letter-spacing:16.282870px;}
.ls6f{letter-spacing:16.287718px;}
.lsf{letter-spacing:16.289447px;}
.ls12{letter-spacing:16.295447px;}
.ls5c{letter-spacing:16.491500px;}
.lsdf{letter-spacing:16.600201px;}
.lsdd{letter-spacing:16.606201px;}
.ls4b{letter-spacing:16.616639px;}
.ls50{letter-spacing:16.622641px;}
.lse2{letter-spacing:16.634133px;}
.lsb{letter-spacing:16.650359px;}
.lsd{letter-spacing:16.656360px;}
.lsbd{letter-spacing:16.659987px;}
.ls75{letter-spacing:17.049193px;}
.lsdb{letter-spacing:17.552854px;}
.ls82{letter-spacing:17.802871px;}
.lse4{letter-spacing:18.453456px;}
.lse5{letter-spacing:18.459456px;}
.lsb6{letter-spacing:18.772083px;}
.ls8b{letter-spacing:19.604983px;}
.lsc{letter-spacing:19.607447px;}
.lsa{letter-spacing:19.613447px;}
.lsa8{letter-spacing:19.955193px;}
.ls65{letter-spacing:19.977985px;}
.ls19{letter-spacing:20.794109px;}
.ls14{letter-spacing:20.800109px;}
.ls7{letter-spacing:21.213987px;}
.ls46{letter-spacing:21.390941px;}
.lsd6{letter-spacing:21.705986px;}
.ls21{letter-spacing:22.099578px;}
.lsde{letter-spacing:22.911192px;}
.lsdc{letter-spacing:22.917193px;}
.ls6a{letter-spacing:22.928879px;}
.ls3{letter-spacing:23.148193px;}
.lsb8{letter-spacing:23.240159px;}
.lsd7{letter-spacing:24.182401px;}
.lsd8{letter-spacing:24.237985px;}
.ls40{letter-spacing:24.461447px;}
.lsb9{letter-spacing:24.539444px;}
.lse1{letter-spacing:24.798476px;}
.lsa2{letter-spacing:25.278268px;}
.ls1f{letter-spacing:25.731987px;}
.ls8d{letter-spacing:25.825669px;}
.ls9{letter-spacing:25.940982px;}
.lse0{letter-spacing:26.395732px;}
.ls2{letter-spacing:26.411260px;}
.ls1{letter-spacing:26.417261px;}
.lsc6{letter-spacing:27.015987px;}
.lsa3{letter-spacing:27.434131px;}
.lsd2{letter-spacing:28.293987px;}
.lsd3{letter-spacing:28.406399px;}
.lsd4{letter-spacing:28.461987px;}
.lsd5{letter-spacing:28.467985px;}
.ls74{letter-spacing:28.552868px;}
.ls91{letter-spacing:28.672870px;}
.ls58{letter-spacing:28.773987px;}
.lsba{letter-spacing:29.723191px;}
.lsa4{letter-spacing:31.446268px;}
.lscf{letter-spacing:33.195191px;}
.lsa5{letter-spacing:33.602131px;}
.ls7f{letter-spacing:34.106747px;}
.ls7a{letter-spacing:34.112749px;}
.ls4{letter-spacing:35.594640px;}
.ls6{letter-spacing:36.122983px;}
.lsb0{letter-spacing:38.706360px;}
.ls8c{letter-spacing:41.130358px;}
.lsd0{letter-spacing:42.143445px;}
.ls9a{letter-spacing:42.523444px;}
.ls32{letter-spacing:42.552817px;}
.ls17{letter-spacing:44.630983px;}
.ls2b{letter-spacing:48.293047px;}
.lsc1{letter-spacing:48.294924px;}
.lsbf{letter-spacing:48.327987px;}
.ls90{letter-spacing:49.187023px;}
.ls63{letter-spacing:54.183192px;}
.ls64{letter-spacing:54.203446px;}
.lsa7{letter-spacing:59.822156px;}
.ls9d{letter-spacing:59.828159px;}
.ls8f{letter-spacing:74.023666px;}
.ls1b{letter-spacing:78.566159px;}
.lsc4{letter-spacing:81.116401px;}
.lsc3{letter-spacing:81.132921px;}
.ls5f{letter-spacing:96.023447px;}
.ls3f{letter-spacing:140.147022px;}
.ls72{letter-spacing:205.256170px;}
.ls61{letter-spacing:208.388166px;}
.lsa1{letter-spacing:221.966169px;}
.ls6e{letter-spacing:238.802167px;}
.ls15{letter-spacing:252.868117px;}
.lsaf{letter-spacing:257.963458px;}
.lsae{letter-spacing:276.470167px;}
.ls69{letter-spacing:363.806165px;}
.lse{letter-spacing:413.776099px;}
.ls81{letter-spacing:443.428210px;}
.ls4e{letter-spacing:580.992460px;}
.ls55{letter-spacing:585.157552px;}
.lsa6{letter-spacing:644.552145px;}
.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;}
}
.wscc{word-spacing:-59.775599px;}
.ws56{word-spacing:-43.283282px;}
.ws102{word-spacing:-43.157982px;}
.wsa7{word-spacing:-38.913915px;}
.wsb6{word-spacing:-31.633157px;}
.ws48{word-spacing:-28.991165px;}
.ws44{word-spacing:-28.931390px;}
.ws51{word-spacing:-27.795653px;}
.ws37{word-spacing:-22.173437px;}
.ws38{word-spacing:-22.167439px;}
.ws8{word-spacing:-16.557841px;}
.wsb7{word-spacing:-15.346357px;}
.wsb8{word-spacing:-15.326083px;}
.ws85{word-spacing:-13.515224px;}
.wsa8{word-spacing:-12.016883px;}
.wsb5{word-spacing:-11.996085px;}
.wsb4{word-spacing:-8.698885px;}
.ws99{word-spacing:-6.575316px;}
.ws97{word-spacing:-6.498023px;}
.wse9{word-spacing:-6.494153px;}
.wsa9{word-spacing:-3.287658px;}
.wsad{word-spacing:-3.227882px;}
.wsac{word-spacing:-3.224572px;}
.wsaa{word-spacing:-3.218574px;}
.ws7f{word-spacing:-2.869229px;}
.ws3c{word-spacing:-2.809453px;}
.ws3b{word-spacing:-2.749678px;}
.ws5d{word-spacing:-2.630126px;}
.wsfc{word-spacing:-2.570351px;}
.ws10f{word-spacing:-2.510575px;}
.ws93{word-spacing:-2.450800px;}
.wsfa{word-spacing:-2.205647px;}
.ws110{word-spacing:-2.151922px;}
.ws94{word-spacing:-2.110343px;}
.wsfb{word-spacing:-1.434614px;}
.wsd2{word-spacing:-1.374839px;}
.wsd1{word-spacing:-1.315063px;}
.ws59{word-spacing:-1.292720px;}
.wsf2{word-spacing:-1.255288px;}
.wsc3{word-spacing:-0.956410px;}
.wsf{word-spacing:-0.836858px;}
.ws1e{word-spacing:-0.717307px;}
.ws1d{word-spacing:-0.597756px;}
.wsff{word-spacing:-0.537980px;}
.ws7a{word-spacing:-0.526332px;}
.wsc4{word-spacing:-0.511555px;}
.ws57{word-spacing:-0.179327px;}
.ws2{word-spacing:-0.071731px;}
.ws1c{word-spacing:-0.059776px;}
.ws116{word-spacing:-0.053798px;}
.ws113{word-spacing:-0.047821px;}
.ws55{word-spacing:-0.033690px;}
.ws1b{word-spacing:0.000000px;}
.ws47{word-spacing:0.059776px;}
.wsd3{word-spacing:0.239102px;}
.ws16{word-spacing:0.956410px;}
.ws52{word-spacing:1.015410px;}
.ws17{word-spacing:1.016185px;}
.wsd6{word-spacing:1.063640px;}
.ws10d{word-spacing:1.075961px;}
.ws23{word-spacing:1.078443px;}
.ws1a{word-spacing:1.135736px;}
.ws96{word-spacing:1.195512px;}
.wsed{word-spacing:1.912819px;}
.wsec{word-spacing:1.972595px;}
.wsee{word-spacing:2.151922px;}
.ws6c{word-spacing:2.211697px;}
.ws109{word-spacing:2.391024px;}
.ws66{word-spacing:2.442877px;}
.ws83{word-spacing:2.510575px;}
.ws5c{word-spacing:2.689902px;}
.ws98{word-spacing:2.738309px;}
.wsc5{word-spacing:2.797169px;}
.ws9{word-spacing:2.809453px;}
.ws5b{word-spacing:2.835428px;}
.wscb{word-spacing:2.988780px;}
.wscd{word-spacing:3.048556px;}
.ws106{word-spacing:3.108331px;}
.ws29{word-spacing:3.227882px;}
.ws36{word-spacing:3.347434px;}
.ws33{word-spacing:3.407209px;}
.wsab{word-spacing:3.436443px;}
.ws6a{word-spacing:3.442443px;}
.ws89{word-spacing:3.446861px;}
.ws87{word-spacing:3.484710px;}
.wsb9{word-spacing:3.488309px;}
.ws80{word-spacing:3.492101px;}
.wsa6{word-spacing:3.555297px;}
.ws39{word-spacing:3.706087px;}
.ws107{word-spacing:3.728449px;}
.wsf3{word-spacing:3.825638px;}
.ws5{word-spacing:4.363619px;}
.ws50{word-spacing:4.423394px;}
.ws15{word-spacing:4.542945px;}
.ws32{word-spacing:4.602721px;}
.ws5f{word-spacing:4.782048px;}
.ws79{word-spacing:4.841823px;}
.ws78{word-spacing:4.901599px;}
.wscf{word-spacing:4.961375px;}
.ws31{word-spacing:4.986208px;}
.wsfe{word-spacing:5.021150px;}
.ws14{word-spacing:5.080926px;}
.wsce{word-spacing:5.103110px;}
.ws18{word-spacing:5.200477px;}
.ws19{word-spacing:5.260253px;}
.wsd0{word-spacing:5.358227px;}
.ws105{word-spacing:5.489966px;}
.ws9a{word-spacing:6.092742px;}
.ws9b{word-spacing:6.111527px;}
.wsde{word-spacing:6.187444px;}
.wsb{word-spacing:6.216662px;}
.ws5a{word-spacing:6.276438px;}
.wsfd{word-spacing:6.336213px;}
.ws35{word-spacing:6.395989px;}
.wsc2{word-spacing:6.455765px;}
.wsc1{word-spacing:6.515540px;}
.ws58{word-spacing:6.667424px;}
.wsa{word-spacing:6.993745px;}
.wse8{word-spacing:7.173072px;}
.ws7{word-spacing:7.292623px;}
.wsf9{word-spacing:7.471950px;}
.ws3a{word-spacing:7.531725px;}
.wsf6{word-spacing:7.651277px;}
.ws8a{word-spacing:7.830603px;}
.wse2{word-spacing:8.009930px;}
.ws70{word-spacing:8.069706px;}
.ws10b{word-spacing:8.249033px;}
.ws10a{word-spacing:8.308808px;}
.ws2a{word-spacing:8.428359px;}
.wsf7{word-spacing:8.547911px;}
.wsbe{word-spacing:8.607686px;}
.wsf8{word-spacing:8.667462px;}
.ws26{word-spacing:8.727237px;}
.ws25{word-spacing:8.787013px;}
.ws86{word-spacing:8.846789px;}
.ws84{word-spacing:8.940151px;}
.ws22{word-spacing:8.966340px;}
.ws92{word-spacing:9.026115px;}
.wsae{word-spacing:9.045830px;}
.ws95{word-spacing:9.085891px;}
.ws45{word-spacing:9.145667px;}
.ws91{word-spacing:9.187583px;}
.ws13{word-spacing:9.265218px;}
.ws28{word-spacing:9.324993px;}
.ws88{word-spacing:9.466234px;}
.ws46{word-spacing:9.510240px;}
.ws43{word-spacing:9.511548px;}
.wse5{word-spacing:10.042301px;}
.ws5e{word-spacing:10.221627px;}
.wsf4{word-spacing:10.341179px;}
.wse6{word-spacing:10.400954px;}
.wse7{word-spacing:10.788225px;}
.wsbf{word-spacing:10.819383px;}
.wsc0{word-spacing:10.879159px;}
.ws6b{word-spacing:10.998710px;}
.ws6{word-spacing:11.058486px;}
.ws40{word-spacing:11.536691px;}
.wsa2{word-spacing:11.596466px;}
.wse4{word-spacing:11.760153px;}
.wsf5{word-spacing:11.835569px;}
.wsd{word-spacing:11.895344px;}
.ws75{word-spacing:12.134447px;}
.ws77{word-spacing:12.194222px;}
.ws108{word-spacing:12.253998px;}
.ws90{word-spacing:12.313773px;}
.ws4e{word-spacing:12.493100px;}
.ws76{word-spacing:12.540224px;}
.ws21{word-spacing:12.851754px;}
.ws4d{word-spacing:13.080977px;}
.wsd8{word-spacing:13.090856px;}
.wsd7{word-spacing:13.150632px;}
.wse3{word-spacing:13.210407px;}
.ws10{word-spacing:13.270183px;}
.ws64{word-spacing:13.329958px;}
.wsa3{word-spacing:13.395734px;}
.wsc{word-spacing:13.509285px;}
.wsd5{word-spacing:13.511012px;}
.ws122{word-spacing:13.557197px;}
.wsef{word-spacing:13.628836px;}
.wsb3{word-spacing:13.748388px;}
.ws10c{word-spacing:13.927714px;}
.wsd9{word-spacing:14.405919px;}
.ws114{word-spacing:14.525568px;}
.wsa4{word-spacing:14.645022px;}
.ws2c{word-spacing:14.764573px;}
.ws2b{word-spacing:14.857275px;}
.wsb0{word-spacing:14.884124px;}
.ws120{word-spacing:14.902157px;}
.wsb1{word-spacing:14.950441px;}
.wsb2{word-spacing:14.979787px;}
.ws30{word-spacing:15.003675px;}
.ws11d{word-spacing:15.009754px;}
.ws12{word-spacing:15.362329px;}
.ws4b{word-spacing:15.481880px;}
.ws4a{word-spacing:15.541656px;}
.ws4c{word-spacing:15.601431px;}
.wsd4{word-spacing:15.960085px;}
.ws2f{word-spacing:16.139412px;}
.ws10e{word-spacing:16.318738px;}
.ws34{word-spacing:16.498065px;}
.ws121{word-spacing:16.516109px;}
.ws2e{word-spacing:16.557841px;}
.ws112{word-spacing:16.617616px;}
.wsf1{word-spacing:16.856719px;}
.ws67{word-spacing:16.917623px;}
.ws69{word-spacing:16.919041px;}
.ws68{word-spacing:16.922210px;}
.ws101{word-spacing:16.923625px;}
.ws2d{word-spacing:16.957620px;}
.wsf0{word-spacing:16.993274px;}
.ws63{word-spacing:17.155597px;}
.ws127{word-spacing:17.215488px;}
.ws3d{word-spacing:17.394699px;}
.ws1f{word-spacing:17.574026px;}
.wsaf{word-spacing:18.291333px;}
.ws123{word-spacing:18.345254px;}
.ws11e{word-spacing:18.399053px;}
.ws115{word-spacing:18.403565px;}
.ws24{word-spacing:18.410884px;}
.ws12c{word-spacing:18.455270px;}
.ws128{word-spacing:18.614246px;}
.ws8d{word-spacing:18.829314px;}
.ws27{word-spacing:18.948865px;}
.ws6f{word-spacing:19.068416px;}
.ws62{word-spacing:19.128192px;}
.ws11f{word-spacing:19.206029px;}
.ws60{word-spacing:19.546621px;}
.ws3{word-spacing:19.690214px;}
.ws6e{word-spacing:19.725948px;}
.ws4{word-spacing:19.744013px;}
.ws11c{word-spacing:19.797811px;}
.ws124{word-spacing:20.443392px;}
.wsda{word-spacing:20.506445px;}
.ws11{word-spacing:20.622581px;}
.ws12a{word-spacing:20.712384px;}
.ws6d{word-spacing:20.846519px;}
.wse{word-spacing:21.459440px;}
.ws12b{word-spacing:21.842150px;}
.ws42{word-spacing:22.236523px;}
.wse0{word-spacing:22.356074px;}
.ws73{word-spacing:22.714727px;}
.ws3f{word-spacing:22.774503px;}
.ws82{word-spacing:22.834279px;}
.ws74{word-spacing:22.841290px;}
.ws1{word-spacing:23.312640px;}
.ws61{word-spacing:23.372259px;}
.ws8f{word-spacing:23.491810px;}
.ws118{word-spacing:23.509901px;}
.ws129{word-spacing:23.617498px;}
.ws8e{word-spacing:23.755958px;}
.ws72{word-spacing:23.790688px;}
.ws3e{word-spacing:25.045976px;}
.ws8c{word-spacing:25.225303px;}
.ws125{word-spacing:25.392845px;}
.ws71{word-spacing:25.763283px;}
.ws126{word-spacing:26.146022px;}
.ws0{word-spacing:26.827469px;}
.ws8b{word-spacing:26.839244px;}
.wsdc{word-spacing:27.855429px;}
.ws111{word-spacing:28.154307px;}
.ws4f{word-spacing:29.230268px;}
.ws11b{word-spacing:29.858112px;}
.ws7e{word-spacing:30.246453px;}
.wse1{word-spacing:31.740843px;}
.wsa1{word-spacing:32.637477px;}
.wsa0{word-spacing:33.018236px;}
.ws7d{word-spacing:34.610072px;}
.ws20{word-spacing:34.697454px;}
.wsdb{word-spacing:34.729623px;}
.ws7c{word-spacing:34.743788px;}
.ws7b{word-spacing:34.760308px;}
.ws117{word-spacing:35.829734px;}
.ws11a{word-spacing:36.152525px;}
.ws119{word-spacing:36.260122px;}
.ws65{word-spacing:36.642442px;}
.wsc6{word-spacing:43.336711px;}
.wsc8{word-spacing:43.340310px;}
.ws41{word-spacing:48.537786px;}
.ws9f{word-spacing:50.928810px;}
.ws9e{word-spacing:50.988586px;}
.ws81{word-spacing:51.407015px;}
.wsc7{word-spacing:56.743457px;}
.wsba{word-spacing:62.197986px;}
.wsbb{word-spacing:63.369185px;}
.wsbc{word-spacing:66.781985px;}
.wsbd{word-spacing:71.683079px;}
.wsc9{word-spacing:72.476350px;}
.ws53{word-spacing:74.119536px;}
.ws104{word-spacing:78.390707px;}
.ws54{word-spacing:92.857451px;}
.wseb{word-spacing:95.282304px;}
.ws103{word-spacing:119.296535px;}
.ws100{word-spacing:119.440547px;}
.wsca{word-spacing:133.777789px;}
.ws9c{word-spacing:135.929711px;}
.wsa5{word-spacing:142.744129px;}
.wsdf{word-spacing:163.426486px;}
.wsea{word-spacing:168.208534px;}
.ws49{word-spacing:220.751285px;}
.wsdd{word-spacing:399.540101px;}
.ws9d{word-spacing:429.368124px;}
._2{margin-left:-6.742733px;}
._3{margin-left:-5.644454px;}
._5{margin-left:-4.250074px;}
._8{margin-left:-3.227882px;}
._1{margin-left:-2.223667px;}
._6{margin-left:-1.123766px;}
._4{width:1.175007px;}
._0{width:3.058880px;}
._f{width:7.178401px;}
._c{width:9.982525px;}
._11{width:15.312513px;}
._1c{width:16.912691px;}
._17{width:18.557524px;}
._14{width:19.905274px;}
._10{width:21.459440px;}
._12{width:23.072783px;}
._16{width:24.569417px;}
._27{width:25.995806px;}
._7{width:27.417740px;}
._26{width:28.447094px;}
._15{width:29.887799px;}
._24{width:31.501740px;}
._d{width:34.547365px;}
._9{width:35.566481px;}
._2f{width:37.705568px;}
._25{width:38.734902px;}
._23{width:40.113864px;}
._e{width:41.345964px;}
._a{width:42.762322px;}
._1d{width:52.309655px;}
._13{width:53.763811px;}
._b{width:66.117818px;}
._18{width:68.976682px;}
._21{width:71.790494px;}
._1b{width:87.129133px;}
._29{width:117.444690px;}
._2c{width:126.484088px;}
._2a{width:141.394183px;}
._1a{width:144.776500px;}
._28{width:150.944401px;}
._19{width:174.664299px;}
._1f{width:190.516803px;}
._2b{width:196.600299px;}
._20{width:217.379020px;}
._1e{width:226.489743px;}
._22{width:282.531033px;}
._2d{width:289.372596px;}
._2e{width:290.684876px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887799px;}
.fs7{font-size:30.535620px;}
.fsa{font-size:32.101796px;}
.fsc{font-size:32.331932px;}
.fsd{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs6{font-size:43.622439px;}
.fs8{font-size:43.622808px;}
.fs9{font-size:45.859839px;}
.fsb{font-size:46.188605px;}
.fs1{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775599px;}
.fse{font-size:60.024508px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y145{bottom:16.747036px;}
.y77{bottom:26.813635px;}
.y7f{bottom:27.005860px;}
.y6e{bottom:43.631851px;}
.y76{bottom:45.163140px;}
.y78{bottom:45.226435px;}
.y80{bottom:51.300709px;}
.y7e{bottom:51.647265px;}
.y79{bottom:64.391860px;}
.y81{bottom:70.602368px;}
.y75{bottom:73.299052px;}
.y72{bottom:74.522352px;}
.y7d{bottom:84.501696px;}
.y35{bottom:91.196960px;}
.yff{bottom:91.196985px;}
.y133{bottom:91.196999px;}
.ya5{bottom:91.197000px;}
.y6a{bottom:91.197009px;}
.y15d{bottom:95.416500px;}
.y73{bottom:96.605053px;}
.y176{bottom:99.918014px;}
.y82{bottom:101.404121px;}
.y34{bottom:109.129460px;}
.yfe{bottom:109.129485px;}
.y132{bottom:109.129499px;}
.ya4{bottom:109.129500px;}
.y69{bottom:109.129509px;}
.y6d{bottom:112.388225px;}
.y175{bottom:116.356514px;}
.y71{bottom:121.143562px;}
.y7c{bottom:122.012031px;}
.y6c{bottom:124.084613px;}
.yfd{bottom:127.061985px;}
.y131{bottom:127.061999px;}
.ya3{bottom:127.062000px;}
.y70{bottom:130.041546px;}
.y7b{bottom:132.205874px;}
.y174{bottom:132.795013px;}
.y68{bottom:136.029009px;}
.y33{bottom:138.119959px;}
.y130{bottom:144.994499px;}
.yc3{bottom:144.994500px;}
.yfc{bottom:147.983985px;}
.y67{bottom:153.961509px;}
.y173{bottom:155.211013px;}
.y15c{bottom:158.198994px;}
.y12f{bottom:162.926999px;}
.yc2{bottom:162.928500px;}
.ya2{bottom:163.239000px;}
.y32{bottom:167.111958px;}
.y172{bottom:171.649512px;}
.y66{bottom:171.894009px;}
.y15b{bottom:176.131494px;}
.y12e{bottom:180.860999px;}
.yfb{bottom:182.354984px;}
.y171{bottom:188.086512px;}
.y65{bottom:189.826509px;}
.y15a{bottom:194.063994px;}
.y31{bottom:196.102457px;}
.yc0{bottom:198.112498px;}
.y12d{bottom:198.793499px;}
.ya1{bottom:199.416000px;}
.yfa{bottom:200.287484px;}
.ybf{bottom:205.046997px;}
.y64{bottom:207.759009px;}
.y170{bottom:210.502512px;}
.y159{bottom:211.997994px;}
.yc1{bottom:215.297998px;}
.ybe{bottom:215.298002px;}
.y12c{bottom:216.725999px;}
.ya0{bottom:217.348500px;}
.yf9{bottom:218.219984px;}
.y30{bottom:225.092957px;}
.y16f{bottom:226.941012px;}
.y63{bottom:228.681009px;}
.y158{bottom:232.918493px;}
.y12b{bottom:234.658499px;}
.y9f{bottom:235.281000px;}
.yf8{bottom:236.153984px;}
.y2f{bottom:243.026957px;}
.y16e{bottom:243.379511px;}
.ybd{bottom:245.457002px;}
.ybc{bottom:252.391502px;}
.y12a{bottom:252.590999px;}
.yf7{bottom:254.086484px;}
.y9e{bottom:256.203000px;}
.y2e{bottom:260.959457px;}
.ybb{bottom:262.642501px;}
.y62{bottom:263.052009px;}
.y16d{bottom:265.795511px;}
.y157{bottom:267.289493px;}
.y129{bottom:270.523499px;}
.yf6{bottom:272.018984px;}
.y9d{bottom:274.135500px;}
.y2d{bottom:278.891957px;}
.y61{bottom:280.984509px;}
.y16c{bottom:282.234011px;}
.y156{bottom:285.221993px;}
.y128{bottom:288.457499px;}
.yf5{bottom:289.951484px;}
.y2c{bottom:296.824457px;}
.y60{bottom:298.918509px;}
.y155{bottom:303.155993px;}
.y16b{bottom:304.650011px;}
.y9c{bottom:305.518500px;}
.y127{bottom:306.389999px;}
.yba{bottom:307.024500px;}
.yf4{bottom:307.883984px;}
.y2b{bottom:314.756957px;}
.y5f{bottom:316.851009px;}
.y154{bottom:321.088493px;}
.y16a{bottom:321.088510px;}
.y9b{bottom:323.451000px;}
.y126{bottom:324.322499px;}
.yb9{bottom:324.957000px;}
.y2a{bottom:332.689457px;}
.y5e{bottom:334.783509px;}
.yf3{bottom:335.045984px;}
.y169{bottom:337.527010px;}
.y153{bottom:339.020993px;}
.y9a{bottom:341.383500px;}
.yf2{bottom:348.287984px;}
.y29{bottom:350.623457px;}
.y5d{bottom:352.716009px;}
.y168{bottom:353.965509px;}
.y152{bottom:356.953493px;}
.y99{bottom:359.316000px;}
.y125{bottom:361.130998px;}
.y28{bottom:368.555957px;}
.y5c{bottom:370.648509px;}
.yf1{bottom:370.703984px;}
.y151{bottom:374.885993px;}
.yb8{bottom:375.957000px;}
.y167{bottom:376.381509px;}
.y124{bottom:379.063498px;}
.yb5{bottom:386.207995px;}
.y27{bottom:386.488457px;}
.y5b{bottom:388.581009px;}
.y96{bottom:392.421013px;}
.y150{bottom:392.819993px;}
.y166{bottom:392.820009px;}
.yf0{bottom:393.119984px;}
.yb7{bottom:396.595505px;}
.y123{bottom:396.995998px;}
.y98{bottom:399.355499px;}
.yb6{bottom:401.749495px;}
.y26{bottom:404.420957px;}
.y165{bottom:409.258508px;}
.y94{bottom:409.606513px;}
.y14f{bottom:410.752493px;}
.y122{bottom:414.928498px;}
.y97{bottom:419.716513px;}
.y5a{bottom:421.323007px;}
.y25{bottom:422.353457px;}
.yef{bottom:422.522983px;}
.y95{bottom:423.804013px;}
.y14e{bottom:428.684993px;}
.y164{bottom:431.673008px;}
.y121{bottom:432.860998px;}
.yb4{bottom:439.298996px;}
.y50{bottom:439.480455px;}
.y53{bottom:439.480507px;}
.y24{bottom:440.285957px;}
.yee{bottom:440.455483px;}
.y14d{bottom:446.617493px;}
.y163{bottom:448.111507px;}
.y120{bottom:450.793498px;}
.y4f{bottom:454.298955px;}
.y52{bottom:454.300497px;}
.y59{bottom:454.300500px;}
.y55{bottom:454.300505px;}
.y93{bottom:455.497513px;}
.yb3{bottom:457.232996px;}
.y23{bottom:458.219957px;}
.yed{bottom:458.389483px;}
.y14c{bottom:464.549993px;}
.y162{bottom:464.550007px;}
.y58{bottom:464.851500px;}
.y11f{bottom:468.727498px;}
.y92{bottom:473.430013px;}
.y4e{bottom:475.102455px;}
.y54{bottom:475.102505px;}
.yb2{bottom:475.165496px;}
.y22{bottom:476.152457px;}
.yec{bottom:476.321983px;}
.y51{bottom:477.671997px;}
.y161{bottom:480.988506px;}
.y14b{bottom:482.482493px;}
.y56{bottom:485.212507px;}
.y11e{bottom:486.659998px;}
.y57{bottom:487.035004px;}
.y91{bottom:491.362513px;}
.yb1{bottom:493.097996px;}
.y21{bottom:494.084957px;}
.yeb{bottom:494.254483px;}
.y14a{bottom:500.416493px;}
.y160{bottom:503.404506px;}
.y11d{bottom:504.592498px;}
.y90{bottom:509.295013px;}
.yb0{bottom:511.030496px;}
.y20{bottom:512.017457px;}
.yea{bottom:515.176483px;}
.y149{bottom:518.348993px;}
.y4d{bottom:518.525954px;}
.y15f{bottom:519.843006px;}
.y11c{bottom:522.524998px;}
.y8f{bottom:527.227513px;}
.yaf{bottom:528.962996px;}
.y1f{bottom:529.949957px;}
.y4c{bottom:536.458454px;}
.y148{bottom:539.269492px;}
.y15e{bottom:539.271005px;}
.y11b{bottom:540.457498px;}
.y8e{bottom:545.160013px;}
.yae{bottom:546.896996px;}
.y1e{bottom:547.882457px;}
.y4b{bottom:554.390954px;}
.y11a{bottom:558.389998px;}
.ye9{bottom:562.164000px;}
.y8d{bottom:563.094013px;}
.yad{bottom:564.829496px;}
.y1d{bottom:568.804457px;}
.y4a{bottom:572.324954px;}
.y119{bottom:576.323998px;}
.yac{bottom:582.761996px;}
.ye8{bottom:583.863007px;}
.y8c{bottom:584.014512px;}
.y147{bottom:589.481990px;}
.y49{bottom:590.257454px;}
.y118{bottom:594.256498px;}
.yab{bottom:600.694496px;}
.y8b{bottom:601.947012px;}
.y1c{bottom:603.175456px;}
.y146{bottom:607.414490px;}
.y48{bottom:608.189954px;}
.y117{bottom:612.188998px;}
.yaa{bottom:618.626996px;}
.ye7{bottom:619.501521px;}
.y1b{bottom:621.107956px;}
.y8a{bottom:633.330012px;}
.y144{bottom:634.910980px;}
.ya9{bottom:636.559496px;}
.y47{bottom:637.046954px;}
.y1a{bottom:639.041956px;}
.ye6{bottom:648.598521px;}
.y89{bottom:651.262512px;}
.y116{bottom:652.732496px;}
.y44{bottom:654.497953px;}
.y19{bottom:656.974456px;}
.y115{bottom:665.974496px;}
.y46{bottom:668.693953px;}
.y45{bottom:673.177453px;}
.ya8{bottom:673.363495px;}
.y88{bottom:673.990512px;}
.y18{bottom:674.906956px;}
.ye5{bottom:678.397521px;}
.ye2{bottom:686.287522px;}
.y114{bottom:688.390496px;}
.ye1{bottom:690.771022px;}
.y17{bottom:692.839456px;}
.ya7{bottom:695.779495px;}
.y87{bottom:696.717012px;}
.y143{bottom:698.482498px;}
.ye4{bottom:699.916521px;}
.yde{bottom:700.483522px;}
.y43{bottom:700.879452px;}
.y16{bottom:710.771956px;}
.y86{bottom:714.649512px;}
.ye0{bottom:717.670522px;}
.y42{bottom:718.813452px;}
.ye3{bottom:721.435520px;}
.ydf{bottom:722.152522px;}
.y141{bottom:723.555011px;}
.y15{bottom:728.705956px;}
.y113{bottom:731.176496px;}
.ya6{bottom:732.581995px;}
.y85{bottom:732.582012px;}
.y41{bottom:736.745952px;}
.y13c{bottom:744.192011px;}
.y14{bottom:746.638456px;}
.y112{bottom:749.108996px;}
.ydd{bottom:753.739524px;}
.y40{bottom:754.678452px;}
.y13{bottom:764.570956px;}
.y111{bottom:767.041496px;}
.y13d{bottom:769.675511px;}
.ydc{bottom:771.672024px;}
.y3f{bottom:775.600452px;}
.y12{bottom:782.503456px;}
.y84{bottom:782.794510px;}
.y110{bottom:784.973996px;}
.ydb{bottom:789.604524px;}
.y11{bottom:800.435956px;}
.y10f{bottom:802.907996px;}
.yda{bottom:807.538524px;}
.y142{bottom:812.044510px;}
.y13e{bottom:814.725014px;}
.y83{bottom:815.671509px;}
.y7a{bottom:815.713531px;}
.y10{bottom:818.368456px;}
.y10e{bottom:820.840496px;}
.y3e{bottom:824.630952px;}
.yd9{bottom:825.471024px;}
.y74{bottom:831.628510px;}
.yf{bottom:836.302456px;}
.y10d{bottom:838.772996px;}
.yd8{bottom:843.403524px;}
.ye{bottom:854.234956px;}
.y10c{bottom:856.705496px;}
.y3d{bottom:857.222952px;}
.y13f{bottom:859.776009px;}
.yd7{bottom:872.125524px;}
.yd{bottom:872.167456px;}
.y10b{bottom:874.637996px;}
.y3c{bottom:875.155452px;}
.yc{bottom:890.099956px;}
.y10a{bottom:892.570496px;}
.yd4{bottom:892.628986px;}
.yd6{bottom:892.629024px;}
.y3b{bottom:893.087952px;}
.yd5{bottom:897.436523px;}
.yd1{bottom:901.704013px;}
.y140{bottom:904.825516px;}
.yd0{bottom:906.187513px;}
.yb{bottom:908.032456px;}
.y3a{bottom:911.021952px;}
.ya{bottom:925.964956px;}
.yd3{bottom:928.384486px;}
.y39{bottom:928.954452px;}
.ycf{bottom:933.087013px;}
.yd2{bottom:933.191986px;}
.yce{bottom:937.570513px;}
.y9{bottom:943.898956px;}
.y38{bottom:946.886952px;}
.y13b{bottom:949.777496px;}
.ycd{bottom:951.019512px;}
.y8{bottom:961.831456px;}
.y37{bottom:964.819452px;}
.ycc{bottom:971.379012px;}
.y139{bottom:971.944468px;}
.y109{bottom:974.394010px;}
.y36{bottom:982.751952px;}
.y7{bottom:982.751956px;}
.y108{bottom:992.326510px;}
.y134{bottom:992.416468px;}
.y6f{bottom:1006.858521px;}
.y107{bottom:1010.259010px;}
.y135{bottom:1015.337968px;}
.ycb{bottom:1018.812012px;}
.y6b{bottom:1022.773499px;}
.y106{bottom:1028.209510px;}
.y105{bottom:1046.143510px;}
.y6{bottom:1047.841456px;}
.yc5{bottom:1050.717031px;}
.y5{bottom:1062.254956px;}
.y136{bottom:1063.895966px;}
.y104{bottom:1064.076010px;}
.y13a{bottom:1065.383966px;}
.yc4{bottom:1066.401031px;}
.y4{bottom:1068.761955px;}
.yc6{bottom:1081.898987px;}
.y103{bottom:1082.008510px;}
.y3{bottom:1089.683955px;}
.y102{bottom:1099.941010px;}
.y2{bottom:1104.097455px;}
.yc7{bottom:1109.143487px;}
.yca{bottom:1110.000000px;}
.y137{bottom:1112.452468px;}
.y101{bottom:1125.376465px;}
.yc8{bottom:1136.387987px;}
.y1{bottom:1147.435455px;}
.y138{bottom:1160.387970px;}
.yc9{bottom:1163.626487px;}
.y100{bottom:1163.630975px;}
.h9{height:19.965050px;}
.h10{height:19.965076px;}
.hd{height:19.965088px;}
.hc{height:22.415849px;}
.h33{height:25.249382px;}
.h26{height:27.448877px;}
.h8{height:29.415488px;}
.h14{height:30.273972px;}
.h15{height:30.274229px;}
.h17{height:31.322270px;}
.ha{height:31.382100px;}
.h1a{height:31.546817px;}
.h18{height:31.826728px;}
.h1b{height:32.054892px;}
.h2f{height:33.187496px;}
.h5{height:35.865450px;}
.h6{height:38.519654px;}
.h34{height:40.348800px;}
.h31{height:41.752973px;}
.h1d{height:41.842919px;}
.h7{height:44.831699px;}
.h32{height:44.958357px;}
.hf{height:45.782100px;}
.h2{height:50.211840px;}
.h3{height:51.216077px;}
.h30{height:53.072100px;}
.h11{height:53.078100px;}
.h20{height:56.060100px;}
.h12{height:56.528100px;}
.h1c{height:57.341699px;}
.he{height:60.173849px;}
.h4{height:61.899450px;}
.h29{height:62.542296px;}
.hb{height:68.075849px;}
.h2d{height:70.157848px;}
.h2a{height:70.163848px;}
.h2c{height:72.113849px;}
.h24{height:85.271698px;}
.h21{height:89.720098px;}
.h2b{height:104.253050px;}
.h23{height:106.929048px;}
.h22{height:110.336098px;}
.h27{height:117.753050px;}
.h25{height:117.759049px;}
.h1e{height:122.181050px;}
.h13{height:145.927363px;}
.h16{height:153.411997px;}
.h19{height:154.511796px;}
.h2e{height:160.443050px;}
.h1f{height:163.185050px;}
.h28{height:210.975044px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:367.079418px;}
.w3{width:367.079882px;}
.w4{width:367.083885px;}
.w5{width:535.327785px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xab{left:48.199680px;}
.x51{left:59.480129px;}
.x9{left:61.228492px;}
.x46{left:65.054998px;}
.x5c{left:67.081541px;}
.x50{left:68.331059px;}
.x55{left:71.120467px;}
.x73{left:74.839502px;}
.x74{left:77.437500px;}
.x79{left:79.751996px;}
.x72{left:81.702000px;}
.x4f{left:83.262688px;}
.x71{left:88.966500px;}
.x5a{left:91.116027px;}
.x17{left:96.420002px;}
.x56{left:98.226012px;}
.x1{left:99.930004px;}
.x1b{left:101.137505px;}
.x6f{left:103.468494px;}
.x54{left:105.461961px;}
.xa4{left:110.575496px;}
.xaf{left:111.954002px;}
.x86{left:113.754024px;}
.xb{left:115.057483px;}
.x89{left:116.895028px;}
.x62{left:118.969480px;}
.x7a{left:122.205002px;}
.x58{left:125.259019px;}
.x7d{left:127.658969px;}
.x53{left:130.102204px;}
.x4e{left:131.786170px;}
.x76{left:133.206000px;}
.x47{left:134.814432px;}
.x5b{left:137.691027px;}
.xf{left:139.753487px;}
.x20{left:141.661476px;}
.xc{left:144.373481px;}
.x1d{left:145.868987px;}
.x5{left:149.170507px;}
.x85{left:151.114520px;}
.x7e{left:153.025465px;}
.x77{left:157.696495px;}
.x52{left:158.851280px;}
.xac{left:162.162002px;}
.xad{left:166.464008px;}
.x4c{left:169.708482px;}
.x61{left:171.263996px;}
.x7f{left:173.913002px;}
.x3{left:176.037003px;}
.x7b{left:180.565496px;}
.x1f{left:181.889986px;}
.x11{left:189.485985px;}
.x48{left:191.295346px;}
.x60{left:198.691490px;}
.x84{left:202.240519px;}
.x83{left:203.928007px;}
.xa8{left:213.124500px;}
.x15{left:216.666002px;}
.x4a{left:220.180504px;}
.x19{left:227.620506px;}
.x4{left:232.603501px;}
.x16{left:236.523001px;}
.x80{left:238.827004px;}
.x70{left:240.299994px;}
.x88{left:242.202015px;}
.xa5{left:248.794498px;}
.x87{left:250.194023px;}
.x5d{left:254.265037px;}
.x5e{left:258.117037px;}
.x78{left:272.345994px;}
.x18{left:274.371006px;}
.x5f{left:280.134037px;}
.x81{left:282.496503px;}
.xd{left:284.276978px;}
.x12{left:287.711999px;}
.x22{left:290.558968px;}
.x8{left:292.446003px;}
.x1c{left:296.749501px;}
.x6{left:298.576508px;}
.x49{left:301.255634px;}
.x14{left:302.670000px;}
.x75{left:311.394002px;}
.xa9{left:316.570495px;}
.x1e{left:327.272993px;}
.x21{left:330.955468px;}
.x82{left:335.647501px;}
.x1a{left:349.525503px;}
.xe{left:368.477976px;}
.x13{left:371.357999px;}
.xae{left:388.432513px;}
.x2{left:397.872002px;}
.xa{left:399.211490px;}
.x7c{left:402.158998px;}
.x10{left:414.569996px;}
.x4b{left:455.078979px;}
.x23{left:458.489972px;}
.x3e{left:463.056017px;}
.x28{left:464.342969px;}
.x98{left:468.244488px;}
.x43{left:469.282532px;}
.x8b{left:475.186478px;}
.xaa{left:476.452492px;}
.xa6{left:478.481978px;}
.xb0{left:480.551998px;}
.x31{left:482.150946px;}
.x90{left:483.399000px;}
.x3d{left:486.301519px;}
.x45{left:488.377526px;}
.x8a{left:491.842512px;}
.x68{left:493.981510px;}
.xa3{left:494.993962px;}
.x7{left:496.053012px;}
.x29{left:497.213969px;}
.x3f{left:502.491019px;}
.x41{left:505.957534px;}
.x94{left:513.012004px;}
.x9a{left:516.230978px;}
.x8f{left:521.631001px;}
.x8e{left:525.920998px;}
.x63{left:528.886469px;}
.x64{left:530.017480px;}
.x2c{left:536.906952px;}
.x92{left:538.479009px;}
.x69{left:541.642509px;}
.x96{left:543.358501px;}
.x32{left:549.472444px;}
.x9b{left:554.048981px;}
.x33{left:556.559944px;}
.x9c{left:562.949964px;}
.x6c{left:567.070496px;}
.x8c{left:568.129480px;}
.x9f{left:573.613454px;}
.x57{left:574.959000px;}
.x6a{left:576.714020px;}
.x34{left:578.861944px;}
.xa2{left:583.921465px;}
.x24{left:588.337475px;}
.x35{left:596.332492px;}
.x2e{left:606.140952px;}
.x59{left:608.011518px;}
.x4d{left:609.849014px;}
.x2d{left:611.639952px;}
.x42{left:614.238034px;}
.xa7{left:616.700981px;}
.x30{left:625.295952px;}
.x2f{left:630.683952px;}
.x36{left:632.398492px;}
.x95{left:639.697503px;}
.xa1{left:644.942964px;}
.x8d{left:647.167477px;}
.x97{left:654.112498px;}
.x99{left:655.448990px;}
.x9d{left:661.838956px;}
.x66{left:664.175992px;}
.x37{left:666.454497px;}
.x91{left:674.172002px;}
.x67{left:681.408001px;}
.x2a{left:682.699458px;}
.x9e{left:699.670445px;}
.x27{left:704.207963px;}
.x44{left:711.402024px;}
.x93{left:718.198514px;}
.x26{left:722.203469px;}
.x38{left:724.284000px;}
.x6b{left:725.408981px;}
.x3a{left:739.333511px;}
.x39{left:754.606522px;}
.x6d{left:755.730013px;}
.x3b{left:761.476519px;}
.x65{left:767.360982px;}
.xa0{left:769.727956px;}
.xb1{left:773.381982px;}
.x25{left:776.504963px;}
.x40{left:787.381524px;}
.x6e{left:796.471512px;}
.x3c{left:806.892019px;}
.x2b{left:811.831461px;}
@media print{
.v1d{vertical-align:-49.946665pt;}
.vf{vertical-align:-28.347529pt;}
.v3{vertical-align:-23.141333pt;}
.ve{vertical-align:-22.234479pt;}
.vd{vertical-align:-17.884966pt;}
.v2a{vertical-align:-15.002667pt;}
.v11{vertical-align:-12.986667pt;}
.v1f{vertical-align:-9.594667pt;}
.v5{vertical-align:-7.973333pt;}
.vc{vertical-align:-5.814807pt;}
.v1{vertical-align:-3.189333pt;}
.v4{vertical-align:-2.144000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:5.312000pt;}
.va{vertical-align:7.488000pt;}
.v10{vertical-align:11.120000pt;}
.v9{vertical-align:12.800000pt;}
.v8{vertical-align:14.282667pt;}
.v1b{vertical-align:18.325333pt;}
.v7{vertical-align:19.280000pt;}
.v17{vertical-align:21.936000pt;}
.v2{vertical-align:23.141333pt;}
.v1a{vertical-align:25.029353pt;}
.v22{vertical-align:29.898667pt;}
.v1c{vertical-align:33.002650pt;}
.v25{vertical-align:35.290665pt;}
.v16{vertical-align:36.448004pt;}
.v6{vertical-align:40.586667pt;}
.v26{vertical-align:42.442665pt;}
.v23{vertical-align:44.176000pt;}
.v19{vertical-align:51.855998pt;}
.v24{vertical-align:53.770665pt;}
.v18{vertical-align:58.975998pt;}
.v14{vertical-align:61.696000pt;}
.v28{vertical-align:63.909333pt;}
.v13{vertical-align:67.008000pt;}
.v27{vertical-align:74.922667pt;}
.v1e{vertical-align:86.927999pt;}
.v12{vertical-align:90.858667pt;}
.v21{vertical-align:94.863995pt;}
.v29{vertical-align:124.869333pt;}
.v15{vertical-align:127.306667pt;}
.v20{vertical-align:169.786662pt;}
.ls48{letter-spacing:0.000000pt;}
.ls99{letter-spacing:0.000134pt;}
.ls9b{letter-spacing:0.000835pt;}
.ls16{letter-spacing:0.002537pt;}
.ls22{letter-spacing:0.002651pt;}
.lsbb{letter-spacing:0.002838pt;}
.ls88{letter-spacing:0.003733pt;}
.ls28{letter-spacing:0.004332pt;}
.lsa0{letter-spacing:0.005572pt;}
.lsaa{letter-spacing:0.006130pt;}
.ls36{letter-spacing:0.006265pt;}
.ls93{letter-spacing:0.008142pt;}
.ls37{letter-spacing:0.008345pt;}
.ls5e{letter-spacing:0.009666pt;}
.ls33{letter-spacing:0.010036pt;}
.ls3d{letter-spacing:0.010407pt;}
.ls9c{letter-spacing:0.010905pt;}
.lscd{letter-spacing:0.011091pt;}
.lsa9{letter-spacing:0.011463pt;}
.ls23{letter-spacing:0.012782pt;}
.ls27{letter-spacing:0.013014pt;}
.ls7e{letter-spacing:0.013684pt;}
.ls31{letter-spacing:0.014486pt;}
.ls98{letter-spacing:0.015246pt;}
.ls80{letter-spacing:0.015370pt;}
.ls77{letter-spacing:0.015508pt;}
.lsc9{letter-spacing:0.016422pt;}
.ls4a{letter-spacing:0.017313pt;}
.ls8{letter-spacing:0.017853pt;}
.lsb5{letter-spacing:0.017896pt;}
.ls4f{letter-spacing:0.018201pt;}
.ls56{letter-spacing:0.018331pt;}
.lsac{letter-spacing:0.019065pt;}
.ls79{letter-spacing:0.019065pt;}
.ls73{letter-spacing:0.020841pt;}
.ls2a{letter-spacing:0.021955pt;}
.ls51{letter-spacing:0.022292pt;}
.ls57{letter-spacing:0.022452pt;}
.ls62{letter-spacing:0.022736pt;}
.ls5{letter-spacing:0.023186pt;}
.ls76{letter-spacing:0.023229pt;}
.ls13{letter-spacing:0.023723pt;}
.lsab{letter-spacing:0.024398pt;}
.ls2e{letter-spacing:0.024564pt;}
.ls5d{letter-spacing:0.025802pt;}
.lsb2{letter-spacing:0.025965pt;}
.lsbc{letter-spacing:0.028206pt;}
.ls67{letter-spacing:0.028562pt;}
.ls35{letter-spacing:0.028641pt;}
.lsd9{letter-spacing:0.028838pt;}
.ls52{letter-spacing:0.028888pt;}
.ls59{letter-spacing:0.028972pt;}
.ls11{letter-spacing:0.029056pt;}
.ls4d{letter-spacing:0.030017pt;}
.ls54{letter-spacing:0.030232pt;}
.ls34{letter-spacing:0.031298pt;}
.ls49{letter-spacing:0.031370pt;}
.lsb4{letter-spacing:0.032788pt;}
.ls4c{letter-spacing:0.032979pt;}
.ls53{letter-spacing:0.033216pt;}
.ls2f{letter-spacing:0.033975pt;}
.ls6c{letter-spacing:0.034305pt;}
.lsb1{letter-spacing:0.034764pt;}
.ls18{letter-spacing:0.035325pt;}
.lsda{letter-spacing:0.037653pt;}
.ls39{letter-spacing:0.039253pt;}
.lsce{letter-spacing:0.040099pt;}
.ls47{letter-spacing:0.042987pt;}
.ls92{letter-spacing:0.043792pt;}
.ls85{letter-spacing:0.044585pt;}
.lsd1{letter-spacing:0.044720pt;}
.ls1d{letter-spacing:0.045394pt;}
.ls3c{letter-spacing:0.046211pt;}
.ls26{letter-spacing:0.050727pt;}
.ls1e{letter-spacing:0.051544pt;}
.ls44{letter-spacing:0.428730pt;}
.ls29{letter-spacing:1.349372pt;}
.lsca{letter-spacing:1.353081pt;}
.ls9e{letter-spacing:1.500838pt;}
.ls20{letter-spacing:1.506171pt;}
.ls25{letter-spacing:1.524958pt;}
.ls5b{letter-spacing:2.653504pt;}
.ls5a{letter-spacing:2.658838pt;}
.lse3{letter-spacing:2.659661pt;}
.ls3e{letter-spacing:2.665662pt;}
.ls0{letter-spacing:2.666009pt;}
.lsb3{letter-spacing:2.670486pt;}
.ls8e{letter-spacing:2.670995pt;}
.ls6d{letter-spacing:2.671508pt;}
.ls66{letter-spacing:2.674559pt;}
.ls71{letter-spacing:2.675306pt;}
.ls6b{letter-spacing:2.676840pt;}
.ls38{letter-spacing:2.680910pt;}
.ls2d{letter-spacing:2.832699pt;}
.ls45{letter-spacing:2.838032pt;}
.ls43{letter-spacing:3.076941pt;}
.lsb7{letter-spacing:4.014414pt;}
.lsc7{letter-spacing:4.331089pt;}
.lscb{letter-spacing:5.745539pt;}
.lsc8{letter-spacing:5.750872pt;}
.ls86{letter-spacing:5.798817pt;}
.ls87{letter-spacing:5.804150pt;}
.ls97{letter-spacing:6.374168pt;}
.ls78{letter-spacing:6.387482pt;}
.ls7d{letter-spacing:6.392816pt;}
.ls96{letter-spacing:6.393152pt;}
.ls95{letter-spacing:6.407309pt;}
.ls1a{letter-spacing:6.675652pt;}
.ls1c{letter-spacing:7.381392pt;}
.lsc5{letter-spacing:8.892586pt;}
.ls60{letter-spacing:8.893779pt;}
.lsad{letter-spacing:8.896320pt;}
.lsc0{letter-spacing:8.897919pt;}
.ls24{letter-spacing:8.904059pt;}
.ls2c{letter-spacing:9.282063pt;}
.ls83{letter-spacing:10.467733pt;}
.ls84{letter-spacing:10.508586pt;}
.lsc2{letter-spacing:11.527215pt;}
.ls42{letter-spacing:11.530175pt;}
.lsbe{letter-spacing:11.532549pt;}
.ls89{letter-spacing:11.806401pt;}
.ls94{letter-spacing:11.813571pt;}
.ls7c{letter-spacing:11.816816pt;}
.ls9f{letter-spacing:11.818904pt;}
.ls70{letter-spacing:11.845653pt;}
.ls10{letter-spacing:11.847253pt;}
.ls3b{letter-spacing:11.850987pt;}
.ls8a{letter-spacing:11.852585pt;}
.ls68{letter-spacing:11.853393pt;}
.lscc{letter-spacing:11.858727pt;}
.ls3a{letter-spacing:11.859543pt;}
.ls41{letter-spacing:13.575252pt;}
.ls30{letter-spacing:13.638799pt;}
.ls7b{letter-spacing:14.473662pt;}
.ls6f{letter-spacing:14.477971pt;}
.lsf{letter-spacing:14.479508pt;}
.ls12{letter-spacing:14.484842pt;}
.ls5c{letter-spacing:14.659111pt;}
.lsdf{letter-spacing:14.755734pt;}
.lsdd{letter-spacing:14.761067pt;}
.ls4b{letter-spacing:14.770346pt;}
.ls50{letter-spacing:14.775681pt;}
.lse2{letter-spacing:14.785896pt;}
.lsb{letter-spacing:14.800319pt;}
.lsd{letter-spacing:14.805653pt;}
.lsbd{letter-spacing:14.808878pt;}
.ls75{letter-spacing:15.154838pt;}
.lsdb{letter-spacing:15.602537pt;}
.ls82{letter-spacing:15.824774pt;}
.lse4{letter-spacing:16.403072pt;}
.lse5{letter-spacing:16.408405pt;}
.lsb6{letter-spacing:16.686296pt;}
.ls8b{letter-spacing:17.426652pt;}
.lsc{letter-spacing:17.428842pt;}
.lsa{letter-spacing:17.434175pt;}
.lsa8{letter-spacing:17.737949pt;}
.ls65{letter-spacing:17.758209pt;}
.ls19{letter-spacing:18.483652pt;}
.ls14{letter-spacing:18.488986pt;}
.ls7{letter-spacing:18.856878pt;}
.ls46{letter-spacing:19.014170pt;}
.lsd6{letter-spacing:19.294209pt;}
.ls21{letter-spacing:19.644069pt;}
.lsde{letter-spacing:20.365504pt;}
.lsdc{letter-spacing:20.370838pt;}
.ls6a{letter-spacing:20.381226pt;}
.ls3{letter-spacing:20.576172pt;}
.lsb8{letter-spacing:20.657919pt;}
.lsd7{letter-spacing:21.495468pt;}
.lsd8{letter-spacing:21.544876pt;}
.ls40{letter-spacing:21.743508pt;}
.lsb9{letter-spacing:21.812840pt;}
.lse1{letter-spacing:22.043090pt;}
.lsa2{letter-spacing:22.469572pt;}
.ls1f{letter-spacing:22.872878pt;}
.ls8d{letter-spacing:22.956151pt;}
.ls9{letter-spacing:23.058650pt;}
.lse0{letter-spacing:23.462873pt;}
.ls2{letter-spacing:23.476676pt;}
.ls1{letter-spacing:23.482010pt;}
.lsc6{letter-spacing:24.014211pt;}
.lsa3{letter-spacing:24.385895pt;}
.lsd2{letter-spacing:25.150211pt;}
.lsd3{letter-spacing:25.250132pt;}
.lsd4{letter-spacing:25.299544pt;}
.lsd5{letter-spacing:25.304875pt;}
.ls74{letter-spacing:25.380327pt;}
.ls91{letter-spacing:25.486995pt;}
.ls58{letter-spacing:25.576878pt;}
.lsba{letter-spacing:26.420615pt;}
.lsa4{letter-spacing:27.952238pt;}
.lscf{letter-spacing:29.506836pt;}
.lsa5{letter-spacing:29.868561pt;}
.ls7f{letter-spacing:30.317109pt;}
.ls7a{letter-spacing:30.322444pt;}
.ls4{letter-spacing:31.639680pt;}
.ls6{letter-spacing:32.109318pt;}
.lsb0{letter-spacing:34.405653pt;}
.ls8c{letter-spacing:36.560318pt;}
.lsd0{letter-spacing:37.460840pt;}
.ls9a{letter-spacing:37.798617pt;}
.ls32{letter-spacing:37.824726pt;}
.ls17{letter-spacing:39.671985pt;}
.ls2b{letter-spacing:42.927153pt;}
.lsc1{letter-spacing:42.928821pt;}
.lsbf{letter-spacing:42.958211pt;}
.ls90{letter-spacing:43.721798pt;}
.ls63{letter-spacing:48.162837pt;}
.ls64{letter-spacing:48.180841pt;}
.lsa7{letter-spacing:53.175250pt;}
.ls9d{letter-spacing:53.180586pt;}
.ls8f{letter-spacing:65.798814pt;}
.ls1b{letter-spacing:69.836586pt;}
.lsc4{letter-spacing:72.103468pt;}
.lsc3{letter-spacing:72.118152pt;}
.ls5f{letter-spacing:85.354175pt;}
.ls3f{letter-spacing:124.575131pt;}
.ls72{letter-spacing:182.449929pt;}
.ls61{letter-spacing:185.233925pt;}
.lsa1{letter-spacing:197.303261pt;}
.ls6e{letter-spacing:212.268593pt;}
.ls15{letter-spacing:224.771659pt;}
.lsaf{letter-spacing:229.300851pt;}
.lsae{letter-spacing:245.751259pt;}
.ls69{letter-spacing:323.383258pt;}
.lse{letter-spacing:367.800976pt;}
.ls81{letter-spacing:394.158409pt;}
.ls4e{letter-spacing:516.437742pt;}
.ls55{letter-spacing:520.140046pt;}
.lsa6{letter-spacing:572.935240pt;}
.wscc{word-spacing:-53.133865pt;}
.ws56{word-spacing:-38.474029pt;}
.ws102{word-spacing:-38.362651pt;}
.wsa7{word-spacing:-34.590146pt;}
.wsb6{word-spacing:-28.118362pt;}
.ws48{word-spacing:-25.769925pt;}
.ws44{word-spacing:-25.716791pt;}
.ws51{word-spacing:-24.707247pt;}
.ws37{word-spacing:-19.709722pt;}
.ws38{word-spacing:-19.704390pt;}
.ws8{word-spacing:-14.718081pt;}
.wsb7{word-spacing:-13.641206pt;}
.wsb8{word-spacing:-13.623185pt;}
.ws85{word-spacing:-12.013533pt;}
.wsa8{word-spacing:-10.681674pt;}
.wsb5{word-spacing:-10.663187pt;}
.wsb4{word-spacing:-7.732342pt;}
.ws99{word-spacing:-5.844725pt;}
.ws97{word-spacing:-5.776021pt;}
.wse9{word-spacing:-5.772581pt;}
.wsa9{word-spacing:-2.922363pt;}
.wsad{word-spacing:-2.869229pt;}
.wsac{word-spacing:-2.866286pt;}
.wsaa{word-spacing:-2.860955pt;}
.ws7f{word-spacing:-2.550426pt;}
.ws3c{word-spacing:-2.497292pt;}
.ws3b{word-spacing:-2.444158pt;}
.ws5d{word-spacing:-2.337890pt;}
.wsfc{word-spacing:-2.284756pt;}
.ws10f{word-spacing:-2.231622pt;}
.ws93{word-spacing:-2.178488pt;}
.wsfa{word-spacing:-1.960575pt;}
.ws110{word-spacing:-1.912819pt;}
.ws94{word-spacing:-1.875860pt;}
.wsfb{word-spacing:-1.275213pt;}
.wsd2{word-spacing:-1.222079pt;}
.wsd1{word-spacing:-1.168945pt;}
.ws59{word-spacing:-1.149084pt;}
.wsf2{word-spacing:-1.115811pt;}
.wsc3{word-spacing:-0.850142pt;}
.wsf{word-spacing:-0.743874pt;}
.ws1e{word-spacing:-0.637606pt;}
.ws1d{word-spacing:-0.531339pt;}
.wsff{word-spacing:-0.478205pt;}
.ws7a{word-spacing:-0.467850pt;}
.wsc4{word-spacing:-0.454716pt;}
.ws57{word-spacing:-0.159402pt;}
.ws2{word-spacing:-0.063761pt;}
.ws1c{word-spacing:-0.053134pt;}
.ws116{word-spacing:-0.047821pt;}
.ws113{word-spacing:-0.042507pt;}
.ws55{word-spacing:-0.029947pt;}
.ws1b{word-spacing:0.000000pt;}
.ws47{word-spacing:0.053134pt;}
.wsd3{word-spacing:0.212535pt;}
.ws16{word-spacing:0.850142pt;}
.ws52{word-spacing:0.902587pt;}
.ws17{word-spacing:0.903276pt;}
.wsd6{word-spacing:0.945458pt;}
.ws10d{word-spacing:0.956410pt;}
.ws23{word-spacing:0.958616pt;}
.ws1a{word-spacing:1.009543pt;}
.ws96{word-spacing:1.062677pt;}
.wsed{word-spacing:1.700284pt;}
.wsec{word-spacing:1.753418pt;}
.wsee{word-spacing:1.912819pt;}
.ws6c{word-spacing:1.965953pt;}
.ws109{word-spacing:2.125355pt;}
.ws66{word-spacing:2.171446pt;}
.ws83{word-spacing:2.231622pt;}
.ws5c{word-spacing:2.391024pt;}
.ws98{word-spacing:2.434052pt;}
.wsc5{word-spacing:2.486372pt;}
.ws9{word-spacing:2.497292pt;}
.ws5b{word-spacing:2.520380pt;}
.wscb{word-spacing:2.656693pt;}
.wscd{word-spacing:2.709827pt;}
.ws106{word-spacing:2.762961pt;}
.ws29{word-spacing:2.869229pt;}
.ws36{word-spacing:2.975496pt;}
.ws33{word-spacing:3.028630pt;}
.wsab{word-spacing:3.054616pt;}
.ws6a{word-spacing:3.059949pt;}
.ws89{word-spacing:3.063877pt;}
.ws87{word-spacing:3.097520pt;}
.wsb9{word-spacing:3.100719pt;}
.ws80{word-spacing:3.104090pt;}
.wsa6{word-spacing:3.160264pt;}
.ws39{word-spacing:3.294300pt;}
.ws107{word-spacing:3.314177pt;}
.wsf3{word-spacing:3.400567pt;}
.ws5{word-spacing:3.878772pt;}
.ws50{word-spacing:3.931906pt;}
.ws15{word-spacing:4.038174pt;}
.ws32{word-spacing:4.091308pt;}
.ws5f{word-spacing:4.250709pt;}
.ws79{word-spacing:4.303843pt;}
.ws78{word-spacing:4.356977pt;}
.wscf{word-spacing:4.410111pt;}
.ws31{word-spacing:4.432185pt;}
.wsfe{word-spacing:4.463245pt;}
.ws14{word-spacing:4.516379pt;}
.wsce{word-spacing:4.536098pt;}
.ws18{word-spacing:4.622646pt;}
.ws19{word-spacing:4.675780pt;}
.wsd0{word-spacing:4.762868pt;}
.ws105{word-spacing:4.879969pt;}
.ws9a{word-spacing:5.415770pt;}
.ws9b{word-spacing:5.432468pt;}
.wsde{word-spacing:5.499950pt;}
.wsb{word-spacing:5.525922pt;}
.ws5a{word-spacing:5.579056pt;}
.wsfd{word-spacing:5.632190pt;}
.ws35{word-spacing:5.685324pt;}
.wsc2{word-spacing:5.738457pt;}
.wsc1{word-spacing:5.791591pt;}
.ws58{word-spacing:5.926599pt;}
.wsa{word-spacing:6.216662pt;}
.wse8{word-spacing:6.376064pt;}
.ws7{word-spacing:6.482332pt;}
.wsf9{word-spacing:6.641733pt;}
.ws3a{word-spacing:6.694867pt;}
.wsf6{word-spacing:6.801135pt;}
.ws8a{word-spacing:6.960536pt;}
.wse2{word-spacing:7.119938pt;}
.ws70{word-spacing:7.173072pt;}
.ws10b{word-spacing:7.332473pt;}
.ws10a{word-spacing:7.385607pt;}
.ws2a{word-spacing:7.491875pt;}
.wsf7{word-spacing:7.598143pt;}
.wsbe{word-spacing:7.651277pt;}
.wsf8{word-spacing:7.704410pt;}
.ws26{word-spacing:7.757544pt;}
.ws25{word-spacing:7.810678pt;}
.ws86{word-spacing:7.863812pt;}
.ws84{word-spacing:7.946801pt;}
.ws22{word-spacing:7.970080pt;}
.ws92{word-spacing:8.023214pt;}
.wsae{word-spacing:8.040738pt;}
.ws95{word-spacing:8.076348pt;}
.ws45{word-spacing:8.129481pt;}
.ws91{word-spacing:8.166741pt;}
.ws13{word-spacing:8.235749pt;}
.ws28{word-spacing:8.288883pt;}
.ws88{word-spacing:8.414430pt;}
.ws46{word-spacing:8.453547pt;}
.ws43{word-spacing:8.454710pt;}
.wse5{word-spacing:8.926489pt;}
.ws5e{word-spacing:9.085891pt;}
.wsf4{word-spacing:9.192159pt;}
.wse6{word-spacing:9.245293pt;}
.wse7{word-spacing:9.589533pt;}
.wsbf{word-spacing:9.617230pt;}
.wsc0{word-spacing:9.670363pt;}
.ws6b{word-spacing:9.776631pt;}
.ws6{word-spacing:9.829765pt;}
.ws40{word-spacing:10.254836pt;}
.wsa2{word-spacing:10.307970pt;}
.wse4{word-spacing:10.453470pt;}
.wsf5{word-spacing:10.520505pt;}
.wsd{word-spacing:10.573639pt;}
.ws75{word-spacing:10.786175pt;}
.ws77{word-spacing:10.839309pt;}
.ws108{word-spacing:10.892442pt;}
.ws90{word-spacing:10.945576pt;}
.ws4e{word-spacing:11.104978pt;}
.ws76{word-spacing:11.146866pt;}
.ws21{word-spacing:11.423781pt;}
.ws4d{word-spacing:11.627535pt;}
.wsd8{word-spacing:11.636317pt;}
.wsd7{word-spacing:11.689450pt;}
.wse3{word-spacing:11.742584pt;}
.ws10{word-spacing:11.795718pt;}
.ws64{word-spacing:11.848852pt;}
.wsa3{word-spacing:11.907319pt;}
.wsc{word-spacing:12.008254pt;}
.wsd5{word-spacing:12.009789pt;}
.ws122{word-spacing:12.050842pt;}
.wsef{word-spacing:12.114521pt;}
.wsb3{word-spacing:12.220789pt;}
.ws10c{word-spacing:12.380191pt;}
.wsd9{word-spacing:12.805262pt;}
.ws114{word-spacing:12.911616pt;}
.wsa4{word-spacing:13.017797pt;}
.ws2c{word-spacing:13.124065pt;}
.ws2b{word-spacing:13.206467pt;}
.wsb0{word-spacing:13.230332pt;}
.ws120{word-spacing:13.246362pt;}
.wsb1{word-spacing:13.289281pt;}
.wsb2{word-spacing:13.315366pt;}
.ws30{word-spacing:13.336600pt;}
.ws11d{word-spacing:13.342003pt;}
.ws12{word-spacing:13.655403pt;}
.ws4b{word-spacing:13.761671pt;}
.ws4a{word-spacing:13.814805pt;}
.ws4c{word-spacing:13.867939pt;}
.wsd4{word-spacing:14.186742pt;}
.ws2f{word-spacing:14.346144pt;}
.ws10e{word-spacing:14.505545pt;}
.ws34{word-spacing:14.664947pt;}
.ws121{word-spacing:14.680986pt;}
.ws2e{word-spacing:14.718081pt;}
.ws112{word-spacing:14.771215pt;}
.wsf1{word-spacing:14.983750pt;}
.ws67{word-spacing:15.037887pt;}
.ws69{word-spacing:15.039147pt;}
.ws68{word-spacing:15.041964pt;}
.ws101{word-spacing:15.043222pt;}
.ws2d{word-spacing:15.073440pt;}
.wsf0{word-spacing:15.105132pt;}
.ws63{word-spacing:15.249419pt;}
.ws127{word-spacing:15.302656pt;}
.ws3d{word-spacing:15.461955pt;}
.ws1f{word-spacing:15.621356pt;}
.wsaf{word-spacing:16.258963pt;}
.ws123{word-spacing:16.306893pt;}
.ws11e{word-spacing:16.354714pt;}
.ws115{word-spacing:16.358724pt;}
.ws24{word-spacing:16.365231pt;}
.ws12c{word-spacing:16.404685pt;}
.ws128{word-spacing:16.545997pt;}
.ws8d{word-spacing:16.737168pt;}
.ws27{word-spacing:16.843435pt;}
.ws6f{word-spacing:16.949703pt;}
.ws62{word-spacing:17.002837pt;}
.ws11f{word-spacing:17.072026pt;}
.ws60{word-spacing:17.374774pt;}
.ws3{word-spacing:17.502413pt;}
.ws6e{word-spacing:17.534176pt;}
.ws4{word-spacing:17.550234pt;}
.ws11c{word-spacing:17.598054pt;}
.ws124{word-spacing:18.171904pt;}
.wsda{word-spacing:18.227951pt;}
.ws11{word-spacing:18.331184pt;}
.ws12a{word-spacing:18.411008pt;}
.ws6d{word-spacing:18.530239pt;}
.wse{word-spacing:19.075058pt;}
.ws12b{word-spacing:19.415245pt;}
.ws42{word-spacing:19.765798pt;}
.wse0{word-spacing:19.872066pt;}
.ws73{word-spacing:20.190869pt;}
.ws3f{word-spacing:20.244003pt;}
.ws82{word-spacing:20.297137pt;}
.ws74{word-spacing:20.303369pt;}
.ws1{word-spacing:20.722347pt;}
.ws61{word-spacing:20.775341pt;}
.ws8f{word-spacing:20.881609pt;}
.ws118{word-spacing:20.897690pt;}
.ws129{word-spacing:20.993331pt;}
.ws8e{word-spacing:21.116407pt;}
.ws72{word-spacing:21.147278pt;}
.ws3e{word-spacing:22.263090pt;}
.ws8c{word-spacing:22.422491pt;}
.ws125{word-spacing:22.571418pt;}
.ws71{word-spacing:22.900696pt;}
.ws126{word-spacing:23.240909pt;}
.ws0{word-spacing:23.846639pt;}
.ws8b{word-spacing:23.857106pt;}
.wsdc{word-spacing:24.760381pt;}
.ws111{word-spacing:25.026051pt;}
.ws4f{word-spacing:25.982460pt;}
.ws11b{word-spacing:26.540544pt;}
.ws7e{word-spacing:26.885736pt;}
.wse1{word-spacing:28.214083pt;}
.wsa1{word-spacing:29.011090pt;}
.wsa0{word-spacing:29.349543pt;}
.ws7d{word-spacing:30.764508pt;}
.ws20{word-spacing:30.842182pt;}
.wsdb{word-spacing:30.870776pt;}
.ws7c{word-spacing:30.883367pt;}
.ws7b{word-spacing:30.898052pt;}
.ws117{word-spacing:31.848653pt;}
.ws11a{word-spacing:32.135578pt;}
.ws119{word-spacing:32.231219pt;}
.ws65{word-spacing:32.571059pt;}
.wsc6{word-spacing:38.521521pt;}
.wsc8{word-spacing:38.524720pt;}
.ws41{word-spacing:43.144699pt;}
.ws9f{word-spacing:45.270053pt;}
.ws9e{word-spacing:45.323187pt;}
.ws81{word-spacing:45.695124pt;}
.wsc7{word-spacing:50.438628pt;}
.wsba{word-spacing:55.287098pt;}
.wsbb{word-spacing:56.328165pt;}
.wsbc{word-spacing:59.361765pt;}
.wsbd{word-spacing:63.718293pt;}
.wsc9{word-spacing:64.423422pt;}
.ws53{word-spacing:65.884032pt;}
.ws104{word-spacing:69.680628pt;}
.ws54{word-spacing:82.539957pt;}
.wseb{word-spacing:84.695381pt;}
.ws103{word-spacing:106.041364pt;}
.ws100{word-spacing:106.169376pt;}
.wsca{word-spacing:118.913591pt;}
.ws9c{word-spacing:120.826410pt;}
.wsa5{word-spacing:126.883670pt;}
.wsdf{word-spacing:145.267988pt;}
.wsea{word-spacing:149.518697pt;}
.ws49{word-spacing:196.223365pt;}
.wsdd{word-spacing:355.146756pt;}
.ws9d{word-spacing:381.660555pt;}
._2{margin-left:-5.993540pt;}
._3{margin-left:-5.017293pt;}
._5{margin-left:-3.777843pt;}
._8{margin-left:-2.869229pt;}
._1{margin-left:-1.976593pt;}
._6{margin-left:-0.998903pt;}
._4{width:1.044450pt;}
._0{width:2.719004pt;}
._f{width:6.380801pt;}
._c{width:8.873356pt;}
._11{width:13.611123pt;}
._1c{width:15.033503pt;}
._17{width:16.495577pt;}
._14{width:17.693577pt;}
._10{width:19.075058pt;}
._12{width:20.509140pt;}
._16{width:21.839482pt;}
._27{width:23.107383pt;}
._7{width:24.371325pt;}
._26{width:25.286306pt;}
._15{width:26.566933pt;}
._24{width:28.001547pt;}
._d{width:30.708769pt;}
._9{width:31.614650pt;}
._2f{width:33.516060pt;}
._25{width:34.431024pt;}
._23{width:35.656768pt;}
._e{width:36.751968pt;}
._a{width:38.010953pt;}
._1d{width:46.497471pt;}
._13{width:47.790054pt;}
._b{width:58.771394pt;}
._18{width:61.312606pt;}
._21{width:63.813772pt;}
._1b{width:77.448118pt;}
._29{width:104.395280pt;}
._2c{width:112.430300pt;}
._2a{width:125.683718pt;}
._1a{width:128.690222pt;}
._28{width:134.172801pt;}
._19{width:155.257155pt;}
._1f{width:169.348269pt;}
._2b{width:174.755821pt;}
._20{width:193.225795pt;}
._1e{width:201.324216pt;}
._22{width:251.138696pt;}
._2d{width:257.220085pt;}
._2e{width:258.386556pt;}
.fs5{font-size:26.566933pt;}
.fs7{font-size:27.142773pt;}
.fsa{font-size:28.534930pt;}
.fsc{font-size:28.739495pt;}
.fsd{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs6{font-size:38.775501pt;}
.fs8{font-size:38.775829pt;}
.fs9{font-size:40.764302pt;}
.fsb{font-size:41.056538pt;}
.fs1{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133865pt;}
.fse{font-size:53.355118pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y145{bottom:14.886254pt;}
.y77{bottom:23.834342pt;}
.y7f{bottom:24.005209pt;}
.y6e{bottom:38.783867pt;}
.y76{bottom:40.145014pt;}
.y78{bottom:40.201275pt;}
.y80{bottom:45.600631pt;}
.y7e{bottom:45.908680pt;}
.y79{bottom:57.237209pt;}
.y81{bottom:62.757661pt;}
.y75{bottom:65.154713pt;}
.y72{bottom:66.242091pt;}
.y7d{bottom:75.112618pt;}
.y35{bottom:81.063964pt;}
.yff{bottom:81.063987pt;}
.y133{bottom:81.063999pt;}
.ya5{bottom:81.064000pt;}
.y6a{bottom:81.064008pt;}
.y15d{bottom:84.814667pt;}
.y73{bottom:85.871158pt;}
.y176{bottom:88.816013pt;}
.y82{bottom:90.136997pt;}
.y34{bottom:97.003964pt;}
.yfe{bottom:97.003987pt;}
.y132{bottom:97.003999pt;}
.ya4{bottom:97.004000pt;}
.y69{bottom:97.004008pt;}
.y6d{bottom:99.900644pt;}
.y175{bottom:103.428012pt;}
.y71{bottom:107.683166pt;}
.y7c{bottom:108.455139pt;}
.y6c{bottom:110.297434pt;}
.yfd{bottom:112.943987pt;}
.y131{bottom:112.943999pt;}
.ya3{bottom:112.944000pt;}
.y70{bottom:115.592485pt;}
.y7b{bottom:117.516332pt;}
.y174{bottom:118.040012pt;}
.y68{bottom:120.914675pt;}
.y33{bottom:122.773297pt;}
.y130{bottom:128.883999pt;}
.yc3{bottom:128.884000pt;}
.yfc{bottom:131.541320pt;}
.y67{bottom:136.854675pt;}
.y173{bottom:137.965345pt;}
.y15c{bottom:140.621328pt;}
.y12f{bottom:144.823999pt;}
.yc2{bottom:144.825334pt;}
.ya2{bottom:145.101334pt;}
.y32{bottom:148.543963pt;}
.y172{bottom:152.577344pt;}
.y66{bottom:152.794675pt;}
.y15b{bottom:156.561328pt;}
.y12e{bottom:160.765332pt;}
.yfb{bottom:162.093319pt;}
.y171{bottom:167.188011pt;}
.y65{bottom:168.734675pt;}
.y15a{bottom:172.501328pt;}
.y31{bottom:174.313295pt;}
.yc0{bottom:176.099998pt;}
.y12d{bottom:176.705332pt;}
.ya1{bottom:177.258667pt;}
.yfa{bottom:178.033319pt;}
.ybf{bottom:182.263997pt;}
.y64{bottom:184.674675pt;}
.y170{bottom:187.113344pt;}
.y159{bottom:188.442661pt;}
.yc1{bottom:191.375998pt;}
.ybe{bottom:191.376002pt;}
.y12c{bottom:192.645332pt;}
.ya0{bottom:193.198667pt;}
.yf9{bottom:193.973319pt;}
.y30{bottom:200.082628pt;}
.y16f{bottom:201.725344pt;}
.y63{bottom:203.272008pt;}
.y158{bottom:207.038661pt;}
.y12b{bottom:208.585332pt;}
.y9f{bottom:209.138667pt;}
.yf8{bottom:209.914653pt;}
.y2f{bottom:216.023962pt;}
.y16e{bottom:216.337343pt;}
.ybd{bottom:218.184002pt;}
.ybc{bottom:224.348002pt;}
.y12a{bottom:224.525332pt;}
.yf7{bottom:225.854653pt;}
.y9e{bottom:227.736000pt;}
.y2e{bottom:231.963962pt;}
.ybb{bottom:233.460001pt;}
.y62{bottom:233.824008pt;}
.y16d{bottom:236.262677pt;}
.y157{bottom:237.590660pt;}
.y129{bottom:240.465332pt;}
.yf6{bottom:241.794653pt;}
.y9d{bottom:243.676000pt;}
.y2d{bottom:247.903962pt;}
.y61{bottom:249.764008pt;}
.y16c{bottom:250.874676pt;}
.y156{bottom:253.530660pt;}
.y128{bottom:256.406665pt;}
.yf5{bottom:257.734653pt;}
.y2c{bottom:263.843962pt;}
.y60{bottom:265.705341pt;}
.y155{bottom:269.471994pt;}
.y16b{bottom:270.800010pt;}
.y9c{bottom:271.572000pt;}
.y127{bottom:272.346665pt;}
.yba{bottom:272.910667pt;}
.yf4{bottom:273.674653pt;}
.y2b{bottom:279.783962pt;}
.y5f{bottom:281.645341pt;}
.y154{bottom:285.411994pt;}
.y16a{bottom:285.412009pt;}
.y9b{bottom:287.512000pt;}
.y126{bottom:288.286665pt;}
.yb9{bottom:288.850667pt;}
.y2a{bottom:295.723962pt;}
.y5e{bottom:297.585341pt;}
.yf3{bottom:297.818653pt;}
.y169{bottom:300.024009pt;}
.y153{bottom:301.351994pt;}
.y9a{bottom:303.452000pt;}
.yf2{bottom:309.589319pt;}
.y29{bottom:311.665295pt;}
.y5d{bottom:313.525341pt;}
.y168{bottom:314.636008pt;}
.y152{bottom:317.291994pt;}
.y99{bottom:319.392000pt;}
.y125{bottom:321.005332pt;}
.y28{bottom:327.605295pt;}
.y5c{bottom:329.465341pt;}
.yf1{bottom:329.514653pt;}
.y151{bottom:333.231994pt;}
.yb8{bottom:334.184000pt;}
.y167{bottom:334.561341pt;}
.y124{bottom:336.945332pt;}
.yb5{bottom:343.295995pt;}
.y27{bottom:343.545295pt;}
.y5b{bottom:345.405341pt;}
.y96{bottom:348.818678pt;}
.y150{bottom:349.173327pt;}
.y166{bottom:349.173341pt;}
.yf0{bottom:349.439986pt;}
.yb7{bottom:352.529338pt;}
.y123{bottom:352.885332pt;}
.y98{bottom:354.982666pt;}
.yb6{bottom:357.110662pt;}
.y26{bottom:359.485295pt;}
.y165{bottom:363.785341pt;}
.y94{bottom:364.094678pt;}
.y14f{bottom:365.113327pt;}
.y122{bottom:368.825332pt;}
.y97{bottom:373.081345pt;}
.y5a{bottom:374.509340pt;}
.y25{bottom:375.425295pt;}
.yef{bottom:375.575985pt;}
.y95{bottom:376.714678pt;}
.y14e{bottom:381.053327pt;}
.y164{bottom:383.709340pt;}
.y121{bottom:384.765332pt;}
.yb4{bottom:390.487997pt;}
.y50{bottom:390.649294pt;}
.y53{bottom:390.649339pt;}
.y24{bottom:391.365295pt;}
.yee{bottom:391.515985pt;}
.y14d{bottom:396.993327pt;}
.y163{bottom:398.321340pt;}
.y120{bottom:400.705332pt;}
.y4f{bottom:403.821293pt;}
.y52{bottom:403.822664pt;}
.y59{bottom:403.822667pt;}
.y55{bottom:403.822671pt;}
.y93{bottom:404.886678pt;}
.yb3{bottom:406.429330pt;}
.y23{bottom:407.306628pt;}
.yed{bottom:407.457318pt;}
.y14c{bottom:412.933327pt;}
.y162{bottom:412.933339pt;}
.y58{bottom:413.201333pt;}
.y11f{bottom:416.646665pt;}
.y92{bottom:420.826678pt;}
.y4e{bottom:422.313293pt;}
.y54{bottom:422.313338pt;}
.yb2{bottom:422.369330pt;}
.y22{bottom:423.246628pt;}
.yec{bottom:423.397318pt;}
.y51{bottom:424.597331pt;}
.y161{bottom:427.545339pt;}
.y14b{bottom:428.873327pt;}
.y56{bottom:431.300006pt;}
.y11e{bottom:432.586665pt;}
.y57{bottom:432.920003pt;}
.y91{bottom:436.766678pt;}
.yb1{bottom:438.309330pt;}
.y21{bottom:439.186628pt;}
.yeb{bottom:439.337318pt;}
.y14a{bottom:444.814660pt;}
.y160{bottom:447.470672pt;}
.y11d{bottom:448.526665pt;}
.y90{bottom:452.706678pt;}
.yb0{bottom:454.249330pt;}
.y20{bottom:455.126628pt;}
.yea{bottom:457.934652pt;}
.y149{bottom:460.754660pt;}
.y4d{bottom:460.911959pt;}
.y15f{bottom:462.082672pt;}
.y11c{bottom:464.466665pt;}
.y8f{bottom:468.646678pt;}
.yaf{bottom:470.189330pt;}
.y1f{bottom:471.066628pt;}
.y4c{bottom:476.851959pt;}
.y148{bottom:479.350660pt;}
.y15e{bottom:479.352005pt;}
.y11b{bottom:480.406665pt;}
.y8e{bottom:484.586678pt;}
.yae{bottom:486.130663pt;}
.y1e{bottom:487.006628pt;}
.y4b{bottom:492.791959pt;}
.y11a{bottom:496.346665pt;}
.ye9{bottom:499.701333pt;}
.y8d{bottom:500.528011pt;}
.yad{bottom:502.070663pt;}
.y1d{bottom:505.603962pt;}
.y4a{bottom:508.733292pt;}
.y119{bottom:512.287998pt;}
.yac{bottom:518.010663pt;}
.ye8{bottom:518.989339pt;}
.y8c{bottom:519.124011pt;}
.y147{bottom:523.983991pt;}
.y49{bottom:524.673292pt;}
.y118{bottom:528.227998pt;}
.yab{bottom:533.950663pt;}
.y8b{bottom:535.064011pt;}
.y1c{bottom:536.155961pt;}
.y146{bottom:539.923991pt;}
.y48{bottom:540.613292pt;}
.y117{bottom:544.167998pt;}
.yaa{bottom:549.890663pt;}
.ye7{bottom:550.668019pt;}
.y1b{bottom:552.095961pt;}
.y8a{bottom:562.960011pt;}
.y144{bottom:564.365316pt;}
.ya9{bottom:565.830663pt;}
.y47{bottom:566.263959pt;}
.y1a{bottom:568.037294pt;}
.ye6{bottom:576.532019pt;}
.y89{bottom:578.900011pt;}
.y116{bottom:580.206663pt;}
.y44{bottom:581.775958pt;}
.y19{bottom:583.977294pt;}
.y115{bottom:591.977329pt;}
.y46{bottom:594.394625pt;}
.y45{bottom:598.379958pt;}
.ya8{bottom:598.545329pt;}
.y88{bottom:599.102677pt;}
.y18{bottom:599.917294pt;}
.ye5{bottom:603.020019pt;}
.ye2{bottom:610.033353pt;}
.y114{bottom:611.902663pt;}
.ye1{bottom:614.018686pt;}
.y17{bottom:615.857294pt;}
.ya7{bottom:618.470662pt;}
.y87{bottom:619.304011pt;}
.y143{bottom:620.873332pt;}
.ye4{bottom:622.148019pt;}
.yde{bottom:622.652019pt;}
.y43{bottom:623.003958pt;}
.y16{bottom:631.797294pt;}
.y86{bottom:635.244011pt;}
.ye0{bottom:637.929353pt;}
.y42{bottom:638.945291pt;}
.ye3{bottom:641.276018pt;}
.ydf{bottom:641.913353pt;}
.y141{bottom:643.160010pt;}
.y15{bottom:647.738628pt;}
.y113{bottom:649.934663pt;}
.ya6{bottom:651.183995pt;}
.y85{bottom:651.184011pt;}
.y41{bottom:654.885291pt;}
.y13c{bottom:661.504010pt;}
.y14{bottom:663.678628pt;}
.y112{bottom:665.874663pt;}
.ydd{bottom:669.990688pt;}
.y40{bottom:670.825291pt;}
.y13{bottom:679.618628pt;}
.y111{bottom:681.814663pt;}
.y13d{bottom:684.156010pt;}
.ydc{bottom:685.930688pt;}
.y3f{bottom:689.422624pt;}
.y12{bottom:695.558628pt;}
.y84{bottom:695.817342pt;}
.y110{bottom:697.754663pt;}
.ydb{bottom:701.870688pt;}
.y11{bottom:711.498628pt;}
.y10f{bottom:713.695996pt;}
.yda{bottom:717.812021pt;}
.y142{bottom:721.817342pt;}
.y13e{bottom:724.200012pt;}
.y83{bottom:725.041341pt;}
.y7a{bottom:725.078695pt;}
.y10{bottom:727.438628pt;}
.y10e{bottom:729.635996pt;}
.y3e{bottom:733.005291pt;}
.yd9{bottom:733.752021pt;}
.y74{bottom:739.225342pt;}
.yf{bottom:743.379961pt;}
.y10d{bottom:745.575996pt;}
.yd8{bottom:749.692021pt;}
.ye{bottom:759.319961pt;}
.y10c{bottom:761.515996pt;}
.y3d{bottom:761.975958pt;}
.y13f{bottom:764.245341pt;}
.yd7{bottom:775.222688pt;}
.yd{bottom:775.259961pt;}
.y10b{bottom:777.455996pt;}
.y3c{bottom:777.915958pt;}
.yc{bottom:791.199961pt;}
.y10a{bottom:793.395996pt;}
.yd4{bottom:793.447988pt;}
.yd6{bottom:793.448021pt;}
.y3b{bottom:793.855958pt;}
.yd5{bottom:797.721354pt;}
.yd1{bottom:801.514678pt;}
.y140{bottom:804.289347pt;}
.yd0{bottom:805.500011pt;}
.yb{bottom:807.139961pt;}
.y3a{bottom:809.797291pt;}
.ya{bottom:823.079961pt;}
.yd3{bottom:825.230654pt;}
.y39{bottom:825.737291pt;}
.ycf{bottom:829.410678pt;}
.yd2{bottom:829.503988pt;}
.yce{bottom:833.396011pt;}
.y9{bottom:839.021294pt;}
.y38{bottom:841.677291pt;}
.y13b{bottom:844.246663pt;}
.ycd{bottom:845.350677pt;}
.y8{bottom:854.961294pt;}
.y37{bottom:857.617291pt;}
.ycc{bottom:863.448011pt;}
.y139{bottom:863.950638pt;}
.y109{bottom:866.128009pt;}
.y36{bottom:873.557291pt;}
.y7{bottom:873.557294pt;}
.y108{bottom:882.068008pt;}
.y134{bottom:882.147971pt;}
.y6f{bottom:894.985352pt;}
.y107{bottom:898.008008pt;}
.y135{bottom:902.522638pt;}
.ycb{bottom:905.610677pt;}
.y6b{bottom:909.131999pt;}
.y106{bottom:913.964008pt;}
.y105{bottom:929.905342pt;}
.y6{bottom:931.414627pt;}
.yc5{bottom:933.970695pt;}
.y5{bottom:944.226627pt;}
.y136{bottom:945.685303pt;}
.y104{bottom:945.845342pt;}
.y13a{bottom:947.007970pt;}
.yc4{bottom:947.912028pt;}
.y4{bottom:950.010627pt;}
.yc6{bottom:961.687988pt;}
.y103{bottom:961.785342pt;}
.y3{bottom:968.607960pt;}
.y102{bottom:977.725342pt;}
.y2{bottom:981.419960pt;}
.yc7{bottom:985.905322pt;}
.yca{bottom:986.666667pt;}
.y137{bottom:988.846638pt;}
.y101{bottom:1000.334635pt;}
.yc8{bottom:1010.122655pt;}
.y1{bottom:1019.942627pt;}
.y138{bottom:1031.455973pt;}
.yc9{bottom:1034.334655pt;}
.y100{bottom:1034.338645pt;}
.h9{height:17.746711pt;}
.h10{height:17.746734pt;}
.hd{height:17.746745pt;}
.hc{height:19.925200pt;}
.h33{height:22.443895pt;}
.h26{height:24.399002pt;}
.h8{height:26.147101pt;}
.h14{height:26.910198pt;}
.h15{height:26.910426pt;}
.h17{height:27.842018pt;}
.ha{height:27.895200pt;}
.h1a{height:28.041615pt;}
.h18{height:28.290425pt;}
.h1b{height:28.493237pt;}
.h2f{height:29.499997pt;}
.h5{height:31.880400pt;}
.h6{height:34.239693pt;}
.h34{height:35.865600pt;}
.h31{height:37.113754pt;}
.h1d{height:37.193706pt;}
.h7{height:39.850399pt;}
.h32{height:39.962984pt;}
.hf{height:40.695200pt;}
.h2{height:44.632747pt;}
.h3{height:45.525402pt;}
.h30{height:47.175200pt;}
.h11{height:47.180533pt;}
.h20{height:49.831200pt;}
.h12{height:50.247200pt;}
.h1c{height:50.970399pt;}
.he{height:53.487866pt;}
.h4{height:55.021733pt;}
.h29{height:55.593152pt;}
.hb{height:60.511866pt;}
.h2d{height:62.362532pt;}
.h2a{height:62.367865pt;}
.h2c{height:64.101200pt;}
.h24{height:75.797064pt;}
.h21{height:79.751198pt;}
.h2b{height:92.669378pt;}
.h23{height:95.048042pt;}
.h22{height:98.076531pt;}
.h27{height:104.669378pt;}
.h25{height:104.674710pt;}
.h1e{height:108.605378pt;}
.h13{height:129.713212pt;}
.h16{height:136.366220pt;}
.h19{height:137.343819pt;}
.h2e{height:142.616044pt;}
.h1f{height:145.053378pt;}
.h28{height:187.533373pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:326.292816pt;}
.w3{width:326.293229pt;}
.w4{width:326.296786pt;}
.w5{width:475.846920pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xab{left:42.844160pt;}
.x51{left:52.871226pt;}
.x9{left:54.425326pt;}
.x46{left:57.826665pt;}
.x5c{left:59.628037pt;}
.x50{left:60.738719pt;}
.x55{left:63.218193pt;}
.x73{left:66.524002pt;}
.x74{left:68.833333pt;}
.x79{left:70.890663pt;}
.x72{left:72.624000pt;}
.x4f{left:74.011278pt;}
.x71{left:79.081333pt;}
.x5a{left:80.992024pt;}
.x17{left:85.706669pt;}
.x56{left:87.312011pt;}
.x1{left:88.826670pt;}
.x1b{left:89.900004pt;}
.x6f{left:91.971995pt;}
.x54{left:93.743966pt;}
.xa4{left:98.289330pt;}
.xaf{left:99.514669pt;}
.x86{left:101.114688pt;}
.xb{left:102.273319pt;}
.x89{left:103.906692pt;}
.x62{left:105.750649pt;}
.x7a{left:108.626668pt;}
.x58{left:111.341350pt;}
.x7d{left:113.474639pt;}
.x53{left:115.646404pt;}
.x4e{left:117.143263pt;}
.x76{left:118.405333pt;}
.x47{left:119.835050pt;}
.x5b{left:122.392024pt;}
.xf{left:124.225321pt;}
.x20{left:125.921312pt;}
.xc{left:128.331983pt;}
.x1d{left:129.661321pt;}
.x5{left:132.596007pt;}
.x85{left:134.324018pt;}
.x7e{left:136.022636pt;}
.x77{left:140.174662pt;}
.x52{left:141.201137pt;}
.xac{left:144.144002pt;}
.xad{left:147.968007pt;}
.x4c{left:150.851984pt;}
.x61{left:152.234663pt;}
.x7f{left:154.589335pt;}
.x3{left:156.477336pt;}
.x7b{left:160.502663pt;}
.x1f{left:161.679987pt;}
.x11{left:168.431987pt;}
.x48{left:170.040307pt;}
.x60{left:176.614658pt;}
.x84{left:179.769351pt;}
.x83{left:181.269340pt;}
.xa8{left:189.444000pt;}
.x15{left:192.592002pt;}
.x4a{left:195.716003pt;}
.x19{left:202.329339pt;}
.x4{left:206.758668pt;}
.x16{left:210.242667pt;}
.x80{left:212.290670pt;}
.x70{left:213.599995pt;}
.x88{left:215.290680pt;}
.xa5{left:221.150665pt;}
.x87{left:222.394687pt;}
.x5d{left:226.013366pt;}
.x5e{left:229.437366pt;}
.x78{left:242.085328pt;}
.x18{left:243.885339pt;}
.x5f{left:249.008033pt;}
.x81{left:251.108003pt;}
.xd{left:252.690647pt;}
.x12{left:255.743999pt;}
.x22{left:258.274638pt;}
.x8{left:259.952002pt;}
.x1c{left:263.777334pt;}
.x6{left:265.401340pt;}
.x49{left:267.782785pt;}
.x14{left:269.040000pt;}
.x75{left:276.794668pt;}
.xa9{left:281.395996pt;}
.x1e{left:290.909327pt;}
.x21{left:294.182638pt;}
.x82{left:298.353334pt;}
.x1a{left:310.689336pt;}
.xe{left:327.535979pt;}
.x13{left:330.095999pt;}
.xae{left:345.273345pt;}
.x2{left:353.664002pt;}
.xa{left:354.854658pt;}
.x7c{left:357.474665pt;}
.x10{left:368.506664pt;}
.x4b{left:404.514648pt;}
.x23{left:407.546641pt;}
.x3e{left:411.605349pt;}
.x28{left:412.749306pt;}
.x98{left:416.217323pt;}
.x43{left:417.140029pt;}
.x8b{left:422.387980pt;}
.xaa{left:423.513326pt;}
.xa6{left:425.317314pt;}
.xb0{left:427.157332pt;}
.x31{left:428.578618pt;}
.x90{left:429.688000pt;}
.x3d{left:432.268017pt;}
.x45{left:434.113356pt;}
.x8a{left:437.193344pt;}
.x68{left:439.094675pt;}
.xa3{left:439.994633pt;}
.x7{left:440.936011pt;}
.x29{left:441.967972pt;}
.x3f{left:446.658684pt;}
.x41{left:449.740030pt;}
.x94{left:456.010670pt;}
.x9a{left:458.871981pt;}
.x8f{left:463.672001pt;}
.x8e{left:467.485331pt;}
.x63{left:470.121305pt;}
.x64{left:471.126649pt;}
.x2c{left:477.250624pt;}
.x92{left:478.648008pt;}
.x69{left:481.460008pt;}
.x96{left:482.985334pt;}
.x32{left:488.419951pt;}
.x9b{left:492.487984pt;}
.x33{left:494.719951pt;}
.x9c{left:500.399968pt;}
.x6c{left:504.062663pt;}
.x8c{left:505.003983pt;}
.x9f{left:509.878626pt;}
.x57{left:511.074666pt;}
.x6a{left:512.634684pt;}
.x34{left:514.543951pt;}
.xa2{left:519.041302pt;}
.x24{left:522.966645pt;}
.x35{left:530.073326pt;}
.x2e{left:538.791958pt;}
.x59{left:540.454683pt;}
.x4d{left:542.088013pt;}
.x2d{left:543.679958pt;}
.x42{left:545.989363pt;}
.xa7{left:548.178650pt;}
.x30{left:555.818624pt;}
.x2f{left:560.607957pt;}
.x36{left:562.131993pt;}
.x95{left:568.620003pt;}
.xa1{left:573.282635pt;}
.x8d{left:575.259979pt;}
.x97{left:581.433332pt;}
.x99{left:582.621324pt;}
.x9d{left:588.301294pt;}
.x66{left:590.378660pt;}
.x37{left:592.403998pt;}
.x91{left:599.264002pt;}
.x67{left:605.696000pt;}
.x2a{left:606.843962pt;}
.x9e{left:621.929285pt;}
.x27{left:625.962634pt;}
.x44{left:632.357354pt;}
.x93{left:638.398680pt;}
.x26{left:641.958639pt;}
.x38{left:643.808000pt;}
.x6b{left:644.807983pt;}
.x3a{left:657.185343pt;}
.x39{left:670.761353pt;}
.x6d{left:671.760011pt;}
.x3b{left:676.868017pt;}
.x65{left:682.098651pt;}
.xa0{left:684.202628pt;}
.xb1{left:687.450651pt;}
.x25{left:690.226634pt;}
.x40{left:699.894688pt;}
.x6e{left:707.974677pt;}
.x3c{left:717.237350pt;}
.x2b{left:721.627965pt;}
}


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