
/* 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_93a590d43bd3.woff")format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url("fonts/font_0001_0ab060c34348.woff")format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_eb676a23118c.woff")format("woff");}.ff3{font-family:ff3;line-height:0.882000;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_3b8d1061238c.woff")format("woff");}.ff4{font-family:ff4;line-height:1.158691;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_b4f97797b368.woff")format("woff");}.ff5{font-family:ff5;line-height:1.127930;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_c2524871e8eb.woff")format("woff");}.ff6{font-family:ff6;line-height:0.918945;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_4f56fbc2b691.woff")format("woff");}.ff7{font-family:ff7;line-height:0.899902;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_2a4d2bc28620.woff")format("woff");}.ff8{font-family:ff8;line-height:1.127930;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_8ace586da1af.woff")format("woff");}.ff9{font-family:ff9;line-height:0.984863;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_f84e22a337d6.woff")format("woff");}.ffa{font-family:ffa;line-height:0.984863;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_db5ea7fec451.woff")format("woff");}.ffb{font-family:ffb;line-height:0.983887;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_9b03fd3c0afc.woff")format("woff");}.ffc{font-family:ffc;line-height:0.984863;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_f3b5b2451f8f.woff")format("woff");}.ffd{font-family:ffd;line-height:1.127930;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_4f56fbc2b691.woff")format("woff");}.ffe{font-family:ffe;line-height:0.899902;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_17d8057af0fa.woff")format("woff");}.fff{font-family:fff;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_8f8598427531.woff")format("woff");}.ff10{font-family:ff10;line-height:1.128000;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_8f8598427531.woff")format("woff");}.ff11{font-family:ff11;line-height:1.128000;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_0a7dde2d7e51.woff")format("woff");}.ff12{font-family:ff12;line-height:0.984863;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_17d8057af0fa.woff")format("woff");}.ff13{font-family:ff13;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_8f8598427531.woff")format("woff");}.ff14{font-family:ff14;line-height:1.128000;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_17d8057af0fa.woff")format("woff");}.ff15{font-family:ff15;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_8f8598427531.woff")format("woff");}.ff16{font-family:ff16;line-height:1.128000;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_550aed5bf4be.woff")format("woff");}.ff17{font-family:ff17;line-height:0.984863;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_6db8aae89d4d.woff")format("woff");}.ff18{font-family:ff18;line-height:1.145996;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_4f56fbc2b691.woff")format("woff");}.ff19{font-family:ff19;line-height:0.899902;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_475bfc7bfe34.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.933594;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_17d8057af0fa.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_8f8598427531.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.128000;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_8f8598427531.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.128000;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_569e9fcc1703.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.898926;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_a35d899b2278.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.127930;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_e5455b29c148.woff")format("woff");}.ff20{font-family:ff20;line-height:1.127930;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_886373e7a099.woff")format("woff");}.ff21{font-family:ff21;line-height:1.140625;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_ec19c6382020.woff")format("woff");}.ff22{font-family:ff22;line-height:1.173828;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_4f56fbc2b691.woff")format("woff");}.ff23{font-family:ff23;line-height:0.899902;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_17d8057af0fa.woff")format("woff");}.ff24{font-family:ff24;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_8f8598427531.woff")format("woff");}.ff25{font-family:ff25;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_8f8598427531.woff")format("woff");}.ff26{font-family:ff26;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_17d8057af0fa.woff")format("woff");}.ff27{font-family:ff27;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_8f8598427531.woff")format("woff");}.ff28{font-family:ff28;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_8f8598427531.woff")format("woff");}.ff29{font-family:ff29;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_17d8057af0fa.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_8f8598427531.woff")format("woff");}.ff2b{font-family:ff2b;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0043_95e32c7ddb1d.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url("fonts/font_0044_17d8057af0fa.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_8f8598427531.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url("fonts/font_0046_e7f45243b6f8.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.985000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url("fonts/font_0047_8f8598427531.woff")format("woff");}.ff30{font-family:ff30;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url("fonts/font_0048_d8289861bcb3.woff")format("woff");}.ff31{font-family:ff31;line-height:1.140625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url("fonts/font_0049_106b9cbd307f.woff")format("woff");}.ff32{font-family:ff32;line-height:1.127930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url("fonts/font_0050_4f56fbc2b691.woff")format("woff");}.ff33{font-family:ff33;line-height:0.899902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url("fonts/font_0051_0ab060c34348.woff")format("woff");}.ff34{font-family:ff34;line-height:0.984000;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;}
.m1{transform:matrix(0.233782,0.088578,-0.088578,0.233782,0,0);-ms-transform:matrix(0.233782,0.088578,-0.088578,0.233782,0,0);-webkit-transform:matrix(0.233782,0.088578,-0.088578,0.233782,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);}
.v1{vertical-align:-25.812000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v4{vertical-align:31.968000px;}
.v5{vertical-align:51.703967px;}
.ls2{letter-spacing:-6.129376px;}
.ls3{letter-spacing:-0.699699px;}
.ls1{letter-spacing:-0.606407px;}
.lsc{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.349800px;}
.ls17{letter-spacing:-0.004665px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005520px;}
.ls14{letter-spacing:0.005573px;}
.ls13{letter-spacing:0.006122px;}
.ls16{letter-spacing:0.007674px;}
.ls7{letter-spacing:0.011519px;}
.ls5{letter-spacing:0.011999px;}
.ls12{letter-spacing:0.012568px;}
.ls10{letter-spacing:0.013193px;}
.ls11{letter-spacing:0.013790px;}
.ls15{letter-spacing:0.015650px;}
.lsf{letter-spacing:0.174900px;}
.lse{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.780000px;}
.ls9{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.443129px;}
.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;}
}
.ws95{word-spacing:-86.976000px;}
.ws4f{word-spacing:-57.984000px;}
.ws32{word-spacing:-55.872000px;}
.wsc{word-spacing:-43.488000px;}
.ws13{word-spacing:-41.904000px;}
.ws8{word-spacing:-41.472000px;}
.ws33{word-spacing:-38.411999px;}
.wsb{word-spacing:-37.500000px;}
.ws9{word-spacing:-36.240000px;}
.ws5{word-spacing:-34.560000px;}
.ws67{word-spacing:-32.616000px;}
.wse{word-spacing:-32.460000px;}
.ws11{word-spacing:-31.428000px;}
.ws68{word-spacing:-31.104000px;}
.ws12{word-spacing:-29.214000px;}
.ws4e{word-spacing:-20.148480px;}
.wsf{word-spacing:-18.924180px;}
.ws6{word-spacing:-18.720000px;}
.ws35{word-spacing:-18.180000px;}
.wsd{word-spacing:-15.343847px;}
.ws4a{word-spacing:-13.824000px;}
.ws34{word-spacing:-13.500000px;}
.ws61{word-spacing:-10.249140px;}
.ws50{word-spacing:-9.724440px;}
.ws7b{word-spacing:-7.200000px;}
.ws7e{word-spacing:-4.620000px;}
.ws17{word-spacing:-3.900000px;}
.ws6b{word-spacing:-3.420000px;}
.ws16{word-spacing:-3.300000px;}
.ws27{word-spacing:-3.240000px;}
.ws30{word-spacing:-3.120000px;}
.ws40{word-spacing:-2.760000px;}
.ws90{word-spacing:-2.520000px;}
.ws44{word-spacing:-2.460000px;}
.ws80{word-spacing:-2.340000px;}
.ws57{word-spacing:-2.280000px;}
.ws14{word-spacing:-2.220000px;}
.ws74{word-spacing:-1.980000px;}
.ws24{word-spacing:-1.620000px;}
.ws22{word-spacing:-1.560000px;}
.ws1c{word-spacing:-1.440000px;}
.ws8f{word-spacing:-1.320000px;}
.ws5f{word-spacing:-1.200000px;}
.ws4d{word-spacing:-1.008000px;}
.ws60{word-spacing:-0.960000px;}
.ws4c{word-spacing:-0.912000px;}
.ws21{word-spacing:-0.900000px;}
.ws3e{word-spacing:-0.840000px;}
.ws29{word-spacing:-0.780000px;}
.ws8e{word-spacing:-0.660000px;}
.ws20{word-spacing:-0.540000px;}
.ws4b{word-spacing:-0.480000px;}
.ws87{word-spacing:-0.420000px;}
.ws1d{word-spacing:-0.300000px;}
.ws41{word-spacing:-0.240000px;}
.ws45{word-spacing:-0.180000px;}
.ws1b{word-spacing:-0.120000px;}
.ws64{word-spacing:-0.060000px;}
.ws96{word-spacing:-0.004665px;}
.ws4{word-spacing:0.000000px;}
.ws3{word-spacing:0.027988px;}
.ws0{word-spacing:0.043731px;}
.ws7d{word-spacing:0.060000px;}
.ws1e{word-spacing:0.180000px;}
.ws7c{word-spacing:0.240000px;}
.ws1{word-spacing:0.317198px;}
.ws3b{word-spacing:0.480000px;}
.ws53{word-spacing:0.540000px;}
.ws91{word-spacing:0.600000px;}
.ws6c{word-spacing:0.780000px;}
.ws26{word-spacing:1.140000px;}
.ws3c{word-spacing:1.200000px;}
.ws59{word-spacing:1.260000px;}
.ws8a{word-spacing:1.440000px;}
.ws66{word-spacing:1.500000px;}
.ws84{word-spacing:1.620000px;}
.ws38{word-spacing:1.740000px;}
.ws2a{word-spacing:1.860000px;}
.ws31{word-spacing:1.980000px;}
.ws71{word-spacing:2.100000px;}
.ws8c{word-spacing:2.280000px;}
.ws56{word-spacing:2.340000px;}
.ws75{word-spacing:2.400000px;}
.ws8d{word-spacing:2.460000px;}
.ws43{word-spacing:2.520000px;}
.ws52{word-spacing:2.640000px;}
.ws5b{word-spacing:2.700000px;}
.ws86{word-spacing:2.820000px;}
.ws78{word-spacing:2.880000px;}
.ws5d{word-spacing:3.000000px;}
.ws37{word-spacing:3.060000px;}
.ws81{word-spacing:3.120000px;}
.ws6a{word-spacing:3.180000px;}
.ws3d{word-spacing:3.240000px;}
.ws72{word-spacing:3.300000px;}
.ws93{word-spacing:3.360000px;}
.ws63{word-spacing:3.480000px;}
.ws54{word-spacing:3.540000px;}
.ws55{word-spacing:3.660000px;}
.ws69{word-spacing:3.720000px;}
.ws5e{word-spacing:3.780000px;}
.ws8b{word-spacing:3.840000px;}
.ws58{word-spacing:3.900000px;}
.ws28{word-spacing:4.080000px;}
.ws76{word-spacing:4.140000px;}
.ws48{word-spacing:4.320000px;}
.ws3f{word-spacing:4.440000px;}
.ws42{word-spacing:4.800000px;}
.ws73{word-spacing:4.980000px;}
.ws23{word-spacing:5.100000px;}
.ws15{word-spacing:5.400000px;}
.ws79{word-spacing:5.460000px;}
.ws39{word-spacing:5.520000px;}
.ws36{word-spacing:5.640000px;}
.ws2b{word-spacing:5.700000px;}
.ws2{word-spacing:5.840167px;}
.ws51{word-spacing:5.880000px;}
.ws25{word-spacing:5.940000px;}
.ws83{word-spacing:6.120000px;}
.ws70{word-spacing:6.180000px;}
.ws1a{word-spacing:6.360000px;}
.ws6f{word-spacing:6.420000px;}
.ws47{word-spacing:6.480000px;}
.ws18{word-spacing:6.600000px;}
.ws1f{word-spacing:6.720000px;}
.ws46{word-spacing:6.840000px;}
.ws5c{word-spacing:6.900000px;}
.ws89{word-spacing:7.800000px;}
.ws82{word-spacing:7.920000px;}
.ws65{word-spacing:7.980000px;}
.ws92{word-spacing:8.100000px;}
.ws5a{word-spacing:8.160000px;}
.ws19{word-spacing:8.280000px;}
.ws88{word-spacing:8.400000px;}
.ws3a{word-spacing:9.000000px;}
.ws2f{word-spacing:9.180000px;}
.ws6e{word-spacing:9.360000px;}
.ws62{word-spacing:9.600000px;}
.ws77{word-spacing:9.660000px;}
.ws7f{word-spacing:9.960000px;}
.ws2c{word-spacing:10.140000px;}
.ws85{word-spacing:10.200000px;}
.ws6d{word-spacing:10.320000px;}
.ws2d{word-spacing:10.680000px;}
.ws2e{word-spacing:12.420000px;}
.ws49{word-spacing:718.271346px;}
.ws94{word-spacing:1040.555969px;}
.ws10{word-spacing:1078.055969px;}
.wsa{word-spacing:1107.665999px;}
.ws7{word-spacing:1107.671969px;}
.ws7a{word-spacing:1115.490639px;}
._24{margin-left:-2472.468018px;}
._c{margin-left:-2251.986050px;}
._26{margin-left:-39.864000px;}
._1e{margin-left:-17.793047px;}
._d{margin-left:-16.792784px;}
._8{margin-left:-15.211455px;}
._2a{margin-left:-13.831200px;}
._23{margin-left:-10.891800px;}
._7{margin-left:-9.064018px;}
._1a{margin-left:-8.039759px;}
._9{margin-left:-6.972576px;}
._a{margin-left:-5.628035px;}
._b{margin-left:-3.724996px;}
._0{margin-left:-2.550985px;}
._2{margin-left:-1.436718px;}
._1{width:1.390072px;}
._3{width:2.484502px;}
._1d{width:3.493826px;}
._5{width:4.496742px;}
._4{width:5.970777px;}
._6{width:7.827316px;}
._f{width:9.043200px;}
._10{width:10.315800px;}
._11{width:11.752800px;}
._12{width:12.850200px;}
._e{width:14.026800px;}
._13{width:15.142808px;}
._15{width:16.484373px;}
._1c{width:17.689216px;}
._1b{width:18.800368px;}
._17{width:19.817204px;}
._16{width:20.862196px;}
._29{width:22.368423px;}
._14{width:23.418000px;}
._22{width:25.197919px;}
._2c{width:26.648804px;}
._18{width:28.305000px;}
._21{width:29.347161px;}
._2d{width:35.583597px;}
._27{width:39.252601px;}
._31{width:40.513799px;}
._2e{width:43.335000px;}
._25{width:45.895003px;}
._32{width:49.572000px;}
._37{width:55.085399px;}
._2b{width:56.163589px;}
._1f{width:61.334982px;}
._30{width:88.173317px;}
._20{width:92.448000px;}
._36{width:145.652201px;}
._39{width:148.345778px;}
._35{width:153.303627px;}
._38{width:156.071984px;}
._33{width:198.604950px;}
._34{width:200.448000px;}
._2f{width:297.122525px;}
._28{width:339.553819px;}
._19{width:2378.563772px;}
.fc13{color:transparent;}
.fc12{color:rgb(69,69,69);}
.fc11{color:rgb(62,62,62);}
.fc10{color:rgb(65,65,65);}
.fcf{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(2,2,2);}
.fc5{color:rgb(111,111,111);}
.fc6{color:rgb(242,242,242);}
.fc14{color:rgb(79,76,77);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fc3{color:rgb(51,51,51);}
.fc8{color:rgb(35,31,32);}
.fc9{color:rgb(70,70,70);}
.fca{color:rgb(57,57,57);}
.fce{color:rgb(48,48,48);}
.fcb{color:rgb(77,77,77);}
.fcc{color:rgb(45,45,45);}
.fcd{color:rgb(56,56,56);}
.fc1{color:rgb(241,241,242);}
.fsa{font-size:26.363999px;}
.fsc{font-size:30.000000px;}
.fsb{font-size:34.980000px;}
.fsf{font-size:36.000000px;}
.fs12{font-size:46.646999px;}
.fs10{font-size:47.998572px;}
.fs9{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fsd{font-size:55.968000px;}
.fs3{font-size:58.308598px;}
.fs6{font-size:60.000000px;}
.fse{font-size:65.999997px;}
.fs11{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:93.293398px;}
.fs5{font-size:96.000000px;}
.fs2{font-size:139.939796px;}
.fs4{font-size:144.000000px;}
.fs0{font-size:145.770596px;}
.y107{bottom:-4.355559px;}
.y10f{bottom:-2.561537px;}
.y103{bottom:-1.356774px;}
.y10b{bottom:-0.001942px;}
.y113{bottom:-0.000452px;}
.y0{bottom:0.000000px;}
.y105{bottom:0.000433px;}
.y10d{bottom:0.064635px;}
.y109{bottom:0.144441px;}
.y111{bottom:0.312698px;}
.y95{bottom:12.687147px;}
.y94{bottom:24.757646px;}
.y31{bottom:32.054700px;}
.y73{bottom:32.055000px;}
.y89{bottom:32.055067px;}
.y8f{bottom:32.718148px;}
.y72{bottom:32.905500px;}
.y9b{bottom:43.176128px;}
.yd9{bottom:44.645700px;}
.y16b{bottom:57.401550px;}
.y9c{bottom:59.424292px;}
.y92{bottom:69.772646px;}
.y91{bottom:77.383646px;}
.y9a{bottom:88.230125px;}
.y8b{bottom:101.716205px;}
.ybc{bottom:116.243591px;}
.y2c{bottom:116.243683px;}
.ybe{bottom:116.243699px;}
.y130{bottom:116.243843px;}
.ye{bottom:116.243866px;}
.yb6{bottom:116.244003px;}
.yac{bottom:116.244152px;}
.y99{bottom:124.675624px;}
.y14c{bottom:128.834702px;}
.ybb{bottom:134.243591px;}
.y2b{bottom:134.243683px;}
.ybd{bottom:134.243699px;}
.y12f{bottom:134.243843px;}
.yb7{bottom:134.243866px;}
.y66{bottom:134.244003px;}
.yab{bottom:134.244152px;}
.y96{bottom:136.821137px;}
.y3{bottom:138.103039px;}
.y174{bottom:141.590549px;}
.y14b{bottom:142.276050px;}
.y1df{bottom:143.190597px;}
.yfd{bottom:146.834656px;}
.y14e{bottom:146.834702px;}
.y93{bottom:150.984142px;}
.yba{bottom:152.243591px;}
.y2a{bottom:152.243683px;}
.y65{bottom:152.243843px;}
.yd3{bottom:152.243866px;}
.y71{bottom:152.244003px;}
.y98{bottom:156.882122px;}
.y173{bottom:159.590549px;}
.y1de{bottom:160.683221px;}
.yfc{bottom:164.834656px;}
.y14d{bottom:164.834702px;}
.y90{bottom:167.799143px;}
.y2{bottom:169.682854px;}
.y12b{bottom:170.243591px;}
.y29{bottom:170.243683px;}
.y64{bottom:170.243843px;}
.yd2{bottom:170.243866px;}
.y15f{bottom:170.244003px;}
.y172{bottom:177.590549px;}
.y1dd{bottom:178.175846px;}
.yfb{bottom:182.834656px;}
.y1a3{bottom:182.834702px;}
.y8e{bottom:185.644636px;}
.yb9{bottom:188.243591px;}
.y79{bottom:188.243683px;}
.yaa{bottom:188.243843px;}
.yd1{bottom:188.243866px;}
.y171{bottom:195.590561px;}
.yfa{bottom:200.834656px;}
.y1b8{bottom:200.834702px;}
.y8d{bottom:201.288136px;}
.yb8{bottom:206.243591px;}
.y28{bottom:206.243683px;}
.y63{bottom:206.243843px;}
.yd0{bottom:206.243866px;}
.y170{bottom:213.590561px;}
.yf9{bottom:218.834656px;}
.y8c{bottom:219.240135px;}
.y97{bottom:219.723122px;}
.yb0{bottom:224.243591px;}
.y27{bottom:224.243683px;}
.y12e{bottom:224.243843px;}
.ycf{bottom:224.243866px;}
.y16f{bottom:231.590561px;}
.yf8{bottom:236.834656px;}
.y1b7{bottom:236.834702px;}
.y148{bottom:240.661354px;}
.y14a{bottom:240.742639px;}
.yc8{bottom:242.243591px;}
.ya9{bottom:242.243683px;}
.y12d{bottom:242.243843px;}
.yce{bottom:242.243866px;}
.y16e{bottom:249.590561px;}
.y149{bottom:255.142639px;}
.yaf{bottom:260.243591px;}
.y26{bottom:260.243683px;}
.y12c{bottom:260.243843px;}
.ycd{bottom:260.243866px;}
.y16d{bottom:267.590561px;}
.yf7{bottom:272.834656px;}
.y1b6{bottom:272.834702px;}
.y5a{bottom:278.243591px;}
.y25{bottom:278.243683px;}
.y62{bottom:278.243843px;}
.ycc{bottom:278.243866px;}
.yf6{bottom:290.834656px;}
.y1b5{bottom:290.834702px;}
.y59{bottom:296.243591px;}
.y61{bottom:296.243683px;}
.y169{bottom:296.243843px;}
.ycb{bottom:296.243866px;}
.y108{bottom:297.554392px;}
.y104{bottom:297.698401px;}
.y102{bottom:299.055608px;}
.y106{bottom:302.054392px;}
.yf5{bottom:308.834656px;}
.y101{bottom:308.834702px;}
.y58{bottom:314.243591px;}
.y24{bottom:314.243683px;}
.yb2{bottom:314.243843px;}
.yca{bottom:314.243866px;}
.y70{bottom:314.244003px;}
.yf4{bottom:326.834656px;}
.y100{bottom:326.834702px;}
.y147{bottom:330.459146px;}
.yae{bottom:332.243591px;}
.y1d4{bottom:332.243665px;}
.y23{bottom:332.243683px;}
.yb1{bottom:332.243843px;}
.yc9{bottom:332.243866px;}
.y188{bottom:339.590561px;}
.y145{bottom:340.819794px;}
.yf3{bottom:344.834656px;}
.yff{bottom:344.834702px;}
.y146{bottom:344.859146px;}
.y57{bottom:350.243591px;}
.y1d3{bottom:350.243665px;}
.y22{bottom:350.243683px;}
.y115{bottom:350.243843px;}
.yd8{bottom:350.243866px;}
.y187{bottom:357.590561px;}
.yf2{bottom:362.834656px;}
.yfe{bottom:362.834702px;}
.y141{bottom:368.117422px;}
.y56{bottom:368.243591px;}
.y1d2{bottom:368.243665px;}
.y21{bottom:368.243683px;}
.y114{bottom:368.243843px;}
.y9f{bottom:368.243866px;}
.yf1{bottom:380.834656px;}
.y1b4{bottom:380.834702px;}
.y142{bottom:382.276497px;}
.y140{bottom:382.517422px;}
.y55{bottom:386.243591px;}
.y1d1{bottom:386.243665px;}
.y20{bottom:386.243683px;}
.y9e{bottom:386.243866px;}
.y186{bottom:393.590561px;}
.y13f{bottom:396.917422px;}
.yf0{bottom:398.834656px;}
.y1b3{bottom:398.834702px;}
.y54{bottom:404.243591px;}
.y1d0{bottom:404.243665px;}
.y1f{bottom:404.243683px;}
.y9d{bottom:404.243866px;}
.y144{bottom:406.063028px;}
.y13c{bottom:406.063065px;}
.y13e{bottom:411.317422px;}
.y185{bottom:411.590561px;}
.yef{bottom:416.834656px;}
.y1b2{bottom:416.834702px;}
.y143{bottom:420.463028px;}
.y53{bottom:422.243591px;}
.y78{bottom:422.243683px;}
.ya7{bottom:422.243866px;}
.y13d{bottom:425.717422px;}
.y184{bottom:429.590561px;}
.yee{bottom:434.834656px;}
.y1b1{bottom:434.834702px;}
.y52{bottom:440.243591px;}
.y1cf{bottom:440.243665px;}
.y1e{bottom:440.243683px;}
.ya6{bottom:440.243866px;}
.y183{bottom:447.590561px;}
.yed{bottom:452.834656px;}
.y1b0{bottom:452.834702px;}
.y51{bottom:458.243591px;}
.y1ce{bottom:458.243665px;}
.y1d{bottom:458.243683px;}
.yd6{bottom:458.243866px;}
.y182{bottom:465.590561px;}
.y112{bottom:465.652793px;}
.y139{bottom:466.791431px;}
.yec{bottom:470.834656px;}
.y1af{bottom:470.834702px;}
.y50{bottom:476.243591px;}
.y60{bottom:476.243683px;}
.yd7{bottom:476.243866px;}
.y6f{bottom:476.244003px;}
.y13b{bottom:479.561563px;}
.y138{bottom:481.191431px;}
.y181{bottom:483.590561px;}
.yeb{bottom:488.834656px;}
.y1ae{bottom:488.834702px;}
.y13a{bottom:493.961563px;}
.y4f{bottom:494.243591px;}
.y1cd{bottom:494.243665px;}
.y1c{bottom:494.243683px;}
.yd{bottom:494.243866px;}
.y137{bottom:495.591431px;}
.yea{bottom:506.834656px;}
.y1ad{bottom:506.834702px;}
.y4e{bottom:512.243591px;}
.y1cc{bottom:512.243665px;}
.y1b{bottom:512.243683px;}
.ya3{bottom:512.243866px;}
.y10c{bottom:513.421216px;}
.y10a{bottom:513.487793px;}
.y10e{bottom:516.047388px;}
.y180{bottom:519.590561px;}
.y4{bottom:522.103958px;}
.y1a2{bottom:524.834564px;}
.ye9{bottom:524.834656px;}
.y1ac{bottom:524.834702px;}
.y136{bottom:524.930099px;}
.y4d{bottom:530.243591px;}
.y1cb{bottom:530.243665px;}
.y5f{bottom:530.243683px;}
.ya2{bottom:530.243866px;}
.y110{bottom:534.432612px;}
.y17f{bottom:537.590561px;}
.y1a1{bottom:542.834564px;}
.ye8{bottom:542.834656px;}
.y1ab{bottom:542.834702px;}
.y4c{bottom:548.243591px;}
.y1a{bottom:548.243683px;}
.ya1{bottom:548.243866px;}
.y6e{bottom:548.244003px;}
.ye7{bottom:560.834656px;}
.y1aa{bottom:560.834702px;}
.y1a8{bottom:563.551329px;}
.y199{bottom:563.794218px;}
.yb3{bottom:563.837860px;}
.y150{bottom:564.007215px;}
.yad{bottom:566.243591px;}
.y1ca{bottom:566.243665px;}
.y19{bottom:566.243683px;}
.y87{bottom:566.243866px;}
.y1d6{bottom:569.315872px;}
.ye6{bottom:578.834656px;}
.y1{bottom:584.084106px;}
.y4b{bottom:584.243591px;}
.y1c9{bottom:584.243665px;}
.y77{bottom:584.243683px;}
.y86{bottom:584.243866px;}
.ye5{bottom:596.834656px;}
.y4a{bottom:602.243591px;}
.y1c8{bottom:602.243665px;}
.y18{bottom:602.243683px;}
.yd5{bottom:602.243866px;}
.y1a7{bottom:606.751328px;}
.y198{bottom:606.994217px;}
.y14f{bottom:607.207214px;}
.y1a6{bottom:614.834656px;}
.yb4{bottom:615.977829px;}
.y49{bottom:620.243591px;}
.y17{bottom:620.243683px;}
.yd4{bottom:620.243866px;}
.y6d{bottom:620.244003px;}
.y5{bottom:626.066254px;}
.ye4{bottom:632.834656px;}
.y48{bottom:638.243591px;}
.y15e{bottom:638.243637px;}
.y1c7{bottom:638.243665px;}
.y16{bottom:638.243683px;}
.y1a9{bottom:647.708679px;}
.ye3{bottom:650.834656px;}
.y135{bottom:650.834702px;}
.y47{bottom:656.243591px;}
.y1c6{bottom:656.243665px;}
.y15{bottom:656.243683px;}
.yc7{bottom:656.243711px;}
.y12a{bottom:668.834564px;}
.ye2{bottom:668.834656px;}
.y168{bottom:668.834702px;}
.y46{bottom:674.243591px;}
.y15d{bottom:674.243637px;}
.y1c5{bottom:674.243665px;}
.y5e{bottom:674.243683px;}
.yc6{bottom:674.243711px;}
.y129{bottom:686.834564px;}
.ye1{bottom:686.834656px;}
.y167{bottom:686.834702px;}
.y82{bottom:692.243591px;}
.y15c{bottom:692.243637px;}
.y14{bottom:692.243683px;}
.yc5{bottom:692.243711px;}
.y6c{bottom:692.244003px;}
.y134{bottom:695.845340px;}
.y128{bottom:704.834564px;}
.ye0{bottom:704.834656px;}
.y166{bottom:704.834702px;}
.y45{bottom:710.243591px;}
.y16a{bottom:710.243637px;}
.y1c4{bottom:710.243665px;}
.y76{bottom:710.243683px;}
.yc4{bottom:710.243711px;}
.y133{bottom:710.245340px;}
.y127{bottom:722.834564px;}
.ydf{bottom:722.834656px;}
.y19a{bottom:722.834702px;}
.y132{bottom:724.645340px;}
.y44{bottom:728.243591px;}
.ya8{bottom:728.243637px;}
.y1c3{bottom:728.243665px;}
.y8a{bottom:728.243683px;}
.y126{bottom:740.834564px;}
.y125{bottom:740.834656px;}
.y1b9{bottom:740.834702px;}
.y43{bottom:746.243591px;}
.y1a5{bottom:746.243637px;}
.y1c2{bottom:746.243665px;}
.y13{bottom:746.243683px;}
.y158{bottom:746.243866px;}
.y6b{bottom:746.244003px;}
.yde{bottom:758.834656px;}
.y42{bottom:764.243591px;}
.y197{bottom:764.243593px;}
.y1a4{bottom:764.243637px;}
.y12{bottom:764.243683px;}
.y157{bottom:764.243866px;}
.ydd{bottom:776.834656px;}
.y41{bottom:782.243591px;}
.y196{bottom:782.243593px;}
.y1c1{bottom:782.243665px;}
.y11{bottom:782.243683px;}
.y153{bottom:782.243866px;}
.y1d5{bottom:785.812225px;}
.ydc{bottom:794.834656px;}
.yc{bottom:800.243589px;}
.y40{bottom:800.243591px;}
.y195{bottom:800.243593px;}
.y1c0{bottom:800.243665px;}
.ya0{bottom:800.243683px;}
.y152{bottom:800.243866px;}
.ydb{bottom:812.834656px;}
.y3f{bottom:818.243591px;}
.y194{bottom:818.243593px;}
.y1bf{bottom:818.243665px;}
.y10{bottom:818.243683px;}
.y165{bottom:830.834656px;}
.yb{bottom:836.243589px;}
.y3e{bottom:836.243591px;}
.y193{bottom:836.243593px;}
.y1be{bottom:836.243665px;}
.yf{bottom:836.243683px;}
.y124{bottom:848.834656px;}
.y3d{bottom:854.243591px;}
.y192{bottom:854.243593px;}
.y176{bottom:861.590515px;}
.y123{bottom:866.834656px;}
.y19d{bottom:866.834702px;}
.ya{bottom:872.243589px;}
.y3c{bottom:872.243591px;}
.y191{bottom:872.243593px;}
.y1bd{bottom:872.243665px;}
.y163{bottom:872.243678px;}
.y175{bottom:879.590515px;}
.y122{bottom:884.834656px;}
.y19c{bottom:884.834702px;}
.y3b{bottom:890.243591px;}
.y190{bottom:890.243593px;}
.y1bc{bottom:890.243665px;}
.y162{bottom:890.243678px;}
.y7c{bottom:890.243683px;}
.y121{bottom:902.834656px;}
.y19b{bottom:902.834702px;}
.y9{bottom:908.243589px;}
.y3a{bottom:908.243591px;}
.y1bb{bottom:908.243665px;}
.y6a{bottom:908.244003px;}
.y120{bottom:920.834656px;}
.y39{bottom:926.243591px;}
.y18f{bottom:926.243593px;}
.y11f{bottom:938.834656px;}
.y5d{bottom:944.243591px;}
.y18e{bottom:944.243593px;}
.y1ba{bottom:944.243665px;}
.y131{bottom:952.276062px;}
.y11e{bottom:956.834656px;}
.y38{bottom:962.243591px;}
.y5c{bottom:962.243665px;}
.y7b{bottom:962.243683px;}
.y69{bottom:962.244003px;}
.y161{bottom:970.961678px;}
.y11d{bottom:974.834656px;}
.y37{bottom:980.243591px;}
.y18d{bottom:980.243593px;}
.y151{bottom:980.243665px;}
.y17e{bottom:987.590515px;}
.y11c{bottom:992.834656px;}
.y8{bottom:997.724588px;}
.y36{bottom:998.243591px;}
.y18c{bottom:998.243593px;}
.y81{bottom:998.243665px;}
.yc2{bottom:998.244153px;}
.y1dc{bottom:998.846558px;}
.y160{bottom:1002.568176px;}
.y17d{bottom:1005.590515px;}
.y11b{bottom:1010.834656px;}
.y35{bottom:1016.243591px;}
.y5b{bottom:1016.243665px;}
.y68{bottom:1016.244003px;}
.yc1{bottom:1016.244153px;}
.y1db{bottom:1016.846558px;}
.y18b{bottom:1018.043592px;}
.y17c{bottom:1023.590515px;}
.y11a{bottom:1028.834656px;}
.y7{bottom:1030.228094px;}
.y15b{bottom:1034.243586px;}
.y34{bottom:1034.243591px;}
.y7f{bottom:1034.243665px;}
.y7a{bottom:1034.243683px;}
.y75{bottom:1034.243965px;}
.y1da{bottom:1034.846558px;}
.y17b{bottom:1041.590515px;}
.y164{bottom:1046.834656px;}
.y15a{bottom:1052.243586px;}
.y85{bottom:1052.243591px;}
.y33{bottom:1052.243665px;}
.y30{bottom:1052.243683px;}
.y19f{bottom:1052.243843px;}
.y156{bottom:1052.243866px;}
.y74{bottom:1052.243965px;}
.y67{bottom:1052.244003px;}
.yc0{bottom:1052.244152px;}
.y17a{bottom:1059.590515px;}
.y119{bottom:1064.834656px;}
.ya5{bottom:1070.243583px;}
.y80{bottom:1070.243591px;}
.y7e{bottom:1070.243665px;}
.y2f{bottom:1070.243683px;}
.y1d9{bottom:1070.846558px;}
.y18a{bottom:1072.043591px;}
.y179{bottom:1077.590515px;}
.y118{bottom:1082.834656px;}
.y6{bottom:1088.243591px;}
.y32{bottom:1088.243665px;}
.y2e{bottom:1088.243683px;}
.y19e{bottom:1088.243843px;}
.y155{bottom:1088.243866px;}
.ybf{bottom:1088.244152px;}
.y1d8{bottom:1088.846558px;}
.y189{bottom:1090.043591px;}
.y159{bottom:1092.568085px;}
.y117{bottom:1100.834656px;}
.y84{bottom:1106.243591px;}
.y7d{bottom:1106.243665px;}
.y2d{bottom:1106.243683px;}
.ya4{bottom:1109.009583px;}
.y1d7{bottom:1112.846665px;}
.y178{bottom:1113.590515px;}
.y116{bottom:1118.834656px;}
.y177{bottom:1131.590515px;}
.yb5{bottom:1178.243591px;}
.y83{bottom:1178.243665px;}
.yc3{bottom:1178.243683px;}
.y154{bottom:1178.243866px;}
.y1a0{bottom:1178.244003px;}
.y88{bottom:1178.244031px;}
.yda{bottom:1190.834656px;}
.y16c{bottom:1203.590515px;}
.h2e{height:1.125000px;}
.h31{height:3.328198px;}
.h2b{height:10.326599px;}
.h30{height:11.579370px;}
.h2d{height:11.676599px;}
.h2f{height:11.910586px;}
.h33{height:11.913120px;}
.h32{height:12.225586px;}
.h16{height:20.223556px;}
.h1f{height:27.304688px;}
.h3e{height:28.681641px;}
.h3c{height:32.765625px;}
.h55{height:35.731602px;}
.h4c{height:36.327044px;}
.h4{height:41.107561px;}
.h50{height:41.418000px;}
.h1c{height:41.422852px;}
.h3b{height:43.330078px;}
.h26{height:43.380000px;}
.h14{height:43.388672px;}
.h29{height:43.680000px;}
.h13{height:43.687500px;}
.h23{height:43.688232px;}
.h20{height:43.688644px;}
.h21{height:43.689312px;}
.he{height:44.531250px;}
.h42{height:45.890625px;}
.h1a{height:45.966797px;}
.h1b{height:46.778643px;}
.h27{height:49.140000px;}
.ha{height:49.148438px;}
.h2a{height:49.148804px;}
.h35{height:49.149170px;}
.h1d{height:49.149445px;}
.h3d{height:49.149536px;}
.h54{height:49.150085px;}
.h46{height:49.833984px;}
.h2c{height:50.627928px;}
.h3f{height:51.626953px;}
.h4d{height:51.627502px;}
.h48{height:51.627960px;}
.h4b{height:51.628235px;}
.h4e{height:51.628601px;}
.h28{height:54.600000px;}
.h38{height:54.600183px;}
.h9{height:54.609375px;}
.h37{height:54.609398px;}
.h17{height:54.609409px;}
.h18{height:54.609558px;}
.hc{height:54.609741px;}
.h19{height:54.610016px;}
.h34{height:54.610107px;}
.h24{height:54.610474px;}
.h4f{height:55.224000px;}
.h10{height:55.230469px;}
.h11{height:55.230835px;}
.h52{height:55.370800px;}
.h8{height:55.371094px;}
.hf{height:55.371460px;}
.hd{height:55.371735px;}
.h40{height:57.363281px;}
.h49{height:57.363464px;}
.h41{height:57.363647px;}
.h4a{height:57.363831px;}
.h44{height:57.363922px;}
.h47{height:57.364014px;}
.h45{height:57.364380px;}
.h53{height:60.908203px;}
.hb{height:65.531250px;}
.h43{height:66.445312px;}
.h2{height:71.462743px;}
.h51{height:73.632000px;}
.h12{height:73.640625px;}
.h22{height:74.900484px;}
.h6{height:87.375000px;}
.h7{height:88.593750px;}
.h36{height:95.383967px;}
.h3{height:104.255148px;}
.h1{height:108.599094px;}
.h1e{height:110.460938px;}
.h5{height:132.890625px;}
.h15{height:248.527793px;}
.h25{height:1262.835000px;}
.h0{height:1263.000000px;}
.h39{height:1288.347000px;}
.h3a{height:1288.500000px;}
.wa{width:0.342004px;}
.w7{width:1.125000px;}
.w6{width:2.316621px;}
.w5{width:4.192207px;}
.w9{width:5.625000px;}
.wb{width:7.903784px;}
.w8{width:7.903806px;}
.wc{width:8.843940px;}
.w2{width:744.094775px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w3{width:892.914000px;}
.w4{width:893.250000px;}
.wd{width:918.424500px;}
.we{width:918.750000px;}
.x4d{left:-7.908154px;}
.x4b{left:-3.789160px;}
.x49{left:-1.913574px;}
.x0{left:0.000000px;}
.x20{left:25.696319px;}
.x74{left:42.519750px;}
.x76{left:44.731650px;}
.x81{left:45.921300px;}
.x90{left:52.443300px;}
.x11{left:55.275450px;}
.x35{left:57.837753px;}
.x3c{left:59.098802px;}
.x78{left:60.639599px;}
.x40{left:61.723953px;}
.x86{left:62.817902px;}
.x6a{left:64.659302px;}
.x28{left:66.229199px;}
.x34{left:68.444252px;}
.x1b{left:70.167000px;}
.x3f{left:72.217953px;}
.x5a{left:73.349831px;}
.x1e{left:75.194252px;}
.x69{left:77.033098px;}
.x59{left:78.547202px;}
.x7d{left:80.102863px;}
.x39{left:83.356802px;}
.x55{left:84.557098px;}
.x2a{left:85.876202px;}
.x6b{left:87.739948px;}
.x85{left:91.267052px;}
.x77{left:93.115650px;}
.x1{left:95.038198px;}
.x5b{left:98.170331px;}
.x27{left:99.757198px;}
.x29{left:101.479199px;}
.x41{left:103.225952px;}
.x46{left:106.299145px;}
.x37{left:107.814451px;}
.x65{left:108.925381px;}
.x6f{left:117.886344px;}
.x10{left:119.054707px;}
.x6d{left:120.979499px;}
.x67{left:123.075748px;}
.x6{left:125.216997px;}
.x3a{left:128.632799px;}
.x7a{left:139.137897px;}
.x33{left:141.177447px;}
.x51{left:143.502605px;}
.x36{left:146.054844px;}
.x50{left:149.087105px;}
.x1f{left:153.680251px;}
.x3d{left:164.859308px;}
.x1c{left:166.009500px;}
.x62{left:167.740196px;}
.x44{left:170.161354px;}
.x3b{left:173.193752px;}
.x63{left:176.456703px;}
.x5{left:186.235497px;}
.x88{left:191.587801px;}
.x31{left:194.555832px;}
.x7b{left:203.549995px;}
.x7e{left:210.246140px;}
.x8f{left:212.215508px;}
.x66{left:218.254383px;}
.x79{left:220.847099px;}
.x80{left:223.001678px;}
.x6e{left:224.263503px;}
.x89{left:227.688154px;}
.x53{left:235.935596px;}
.x38{left:239.983950px;}
.x8b{left:243.428856px;}
.x42{left:252.318447px;}
.x2b{left:254.396702px;}
.x8a{left:260.866356px;}
.x87{left:263.094757px;}
.x5c{left:268.091828px;}
.x57{left:269.367594px;}
.x5e{left:270.425240px;}
.x56{left:278.444092px;}
.x45{left:287.396553px;}
.x3e{left:296.599182px;}
.x17{left:300.152710px;}
.x32{left:302.740356px;}
.x19{left:304.472843px;}
.x4c{left:310.500000px;}
.x15{left:313.532842px;}
.x68{left:316.084213px;}
.x13{left:319.853842px;}
.x14{left:322.592842px;}
.x12{left:323.786842px;}
.x84{left:332.253754px;}
.xd{left:334.915352px;}
.x75{left:340.157410px;}
.x83{left:341.753723px;}
.x72{left:343.406845px;}
.xe{left:352.913841px;}
.x7{left:354.941711px;}
.x1d{left:357.869705px;}
.x4e{left:362.878198px;}
.x54{left:364.527145px;}
.x82{left:375.413841px;}
.x52{left:377.282684px;}
.x2c{left:379.913841px;}
.x73{left:385.517844px;}
.xa{left:391.873212px;}
.x9{left:395.482212px;}
.xb{left:407.693712px;}
.x5d{left:411.744141px;}
.x4f{left:413.357388px;}
.x8{left:420.151211px;}
.x58{left:424.499679px;}
.x61{left:439.866165px;}
.xc{left:447.613358px;}
.x60{left:473.881943px;}
.x5f{left:478.346420px;}
.x8e{left:522.038703px;}
.x30{left:525.989857px;}
.x2d{left:528.304367px;}
.x2{left:548.944148px;}
.x7c{left:551.593231px;}
.x48{left:561.749414px;}
.x4a{left:563.625000px;}
.x47{left:574.015778px;}
.x7f{left:582.519745px;}
.x6c{left:584.963837px;}
.x18{left:586.771809px;}
.x26{left:655.737677px;}
.x22{left:659.942801px;}
.x24{left:671.108190px;}
.x25{left:672.728190px;}
.x3{left:677.695358px;}
.x23{left:681.520315px;}
.x21{left:682.577800px;}
.x70{left:707.527222px;}
.x8c{left:717.742218px;}
.x64{left:769.525177px;}
.x71{left:776.834724px;}
.x43{left:831.643616px;}
.x8d{left:835.024200px;}
.x2f{left:844.399200px;}
.xf{left:849.109222px;}
.x16{left:852.485687px;}
.x1a{left:853.774200px;}
.x4{left:857.202118px;}
.x2e{left:883.328705px;}
@media print{
.v1{vertical-align:-22.944000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v4{vertical-align:28.416000pt;}
.v5{vertical-align:45.959082pt;}
.ls2{letter-spacing:-5.448334pt;}
.ls3{letter-spacing:-0.621955pt;}
.ls1{letter-spacing:-0.539029pt;}
.lsc{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.310933pt;}
.ls17{letter-spacing:-0.004146pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.004907pt;}
.ls14{letter-spacing:0.004954pt;}
.ls13{letter-spacing:0.005442pt;}
.ls16{letter-spacing:0.006821pt;}
.ls7{letter-spacing:0.010239pt;}
.ls5{letter-spacing:0.010666pt;}
.ls12{letter-spacing:0.011171pt;}
.ls10{letter-spacing:0.011727pt;}
.ls11{letter-spacing:0.012258pt;}
.ls15{letter-spacing:0.013911pt;}
.lsf{letter-spacing:0.155467pt;}
.lse{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.693333pt;}
.ls9{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.282781pt;}
.ws95{word-spacing:-77.312000pt;}
.ws4f{word-spacing:-51.541333pt;}
.ws32{word-spacing:-49.664000pt;}
.wsc{word-spacing:-38.656000pt;}
.ws13{word-spacing:-37.248000pt;}
.ws8{word-spacing:-36.864000pt;}
.ws33{word-spacing:-34.143999pt;}
.wsb{word-spacing:-33.333333pt;}
.ws9{word-spacing:-32.213333pt;}
.ws5{word-spacing:-30.720000pt;}
.ws67{word-spacing:-28.992000pt;}
.wse{word-spacing:-28.853333pt;}
.ws11{word-spacing:-27.936000pt;}
.ws68{word-spacing:-27.648000pt;}
.ws12{word-spacing:-25.968000pt;}
.ws4e{word-spacing:-17.909760pt;}
.wsf{word-spacing:-16.821493pt;}
.ws6{word-spacing:-16.640000pt;}
.ws35{word-spacing:-16.160000pt;}
.wsd{word-spacing:-13.638975pt;}
.ws4a{word-spacing:-12.288000pt;}
.ws34{word-spacing:-12.000000pt;}
.ws61{word-spacing:-9.110347pt;}
.ws50{word-spacing:-8.643947pt;}
.ws7b{word-spacing:-6.400000pt;}
.ws7e{word-spacing:-4.106667pt;}
.ws17{word-spacing:-3.466667pt;}
.ws6b{word-spacing:-3.040000pt;}
.ws16{word-spacing:-2.933333pt;}
.ws27{word-spacing:-2.880000pt;}
.ws30{word-spacing:-2.773333pt;}
.ws40{word-spacing:-2.453333pt;}
.ws90{word-spacing:-2.240000pt;}
.ws44{word-spacing:-2.186667pt;}
.ws80{word-spacing:-2.080000pt;}
.ws57{word-spacing:-2.026667pt;}
.ws14{word-spacing:-1.973333pt;}
.ws74{word-spacing:-1.760000pt;}
.ws24{word-spacing:-1.440000pt;}
.ws22{word-spacing:-1.386667pt;}
.ws1c{word-spacing:-1.280000pt;}
.ws8f{word-spacing:-1.173333pt;}
.ws5f{word-spacing:-1.066667pt;}
.ws4d{word-spacing:-0.896000pt;}
.ws60{word-spacing:-0.853333pt;}
.ws4c{word-spacing:-0.810667pt;}
.ws21{word-spacing:-0.800000pt;}
.ws3e{word-spacing:-0.746667pt;}
.ws29{word-spacing:-0.693333pt;}
.ws8e{word-spacing:-0.586667pt;}
.ws20{word-spacing:-0.480000pt;}
.ws4b{word-spacing:-0.426667pt;}
.ws87{word-spacing:-0.373333pt;}
.ws1d{word-spacing:-0.266667pt;}
.ws41{word-spacing:-0.213333pt;}
.ws45{word-spacing:-0.160000pt;}
.ws1b{word-spacing:-0.106667pt;}
.ws64{word-spacing:-0.053333pt;}
.ws96{word-spacing:-0.004146pt;}
.ws4{word-spacing:0.000000pt;}
.ws3{word-spacing:0.024878pt;}
.ws0{word-spacing:0.038872pt;}
.ws7d{word-spacing:0.053333pt;}
.ws1e{word-spacing:0.160000pt;}
.ws7c{word-spacing:0.213333pt;}
.ws1{word-spacing:0.281953pt;}
.ws3b{word-spacing:0.426667pt;}
.ws53{word-spacing:0.480000pt;}
.ws91{word-spacing:0.533333pt;}
.ws6c{word-spacing:0.693333pt;}
.ws26{word-spacing:1.013333pt;}
.ws3c{word-spacing:1.066667pt;}
.ws59{word-spacing:1.120000pt;}
.ws8a{word-spacing:1.280000pt;}
.ws66{word-spacing:1.333333pt;}
.ws84{word-spacing:1.440000pt;}
.ws38{word-spacing:1.546667pt;}
.ws2a{word-spacing:1.653333pt;}
.ws31{word-spacing:1.760000pt;}
.ws71{word-spacing:1.866667pt;}
.ws8c{word-spacing:2.026667pt;}
.ws56{word-spacing:2.080000pt;}
.ws75{word-spacing:2.133333pt;}
.ws8d{word-spacing:2.186667pt;}
.ws43{word-spacing:2.240000pt;}
.ws52{word-spacing:2.346667pt;}
.ws5b{word-spacing:2.400000pt;}
.ws86{word-spacing:2.506667pt;}
.ws78{word-spacing:2.560000pt;}
.ws5d{word-spacing:2.666667pt;}
.ws37{word-spacing:2.720000pt;}
.ws81{word-spacing:2.773333pt;}
.ws6a{word-spacing:2.826667pt;}
.ws3d{word-spacing:2.880000pt;}
.ws72{word-spacing:2.933333pt;}
.ws93{word-spacing:2.986667pt;}
.ws63{word-spacing:3.093333pt;}
.ws54{word-spacing:3.146667pt;}
.ws55{word-spacing:3.253333pt;}
.ws69{word-spacing:3.306667pt;}
.ws5e{word-spacing:3.360000pt;}
.ws8b{word-spacing:3.413333pt;}
.ws58{word-spacing:3.466667pt;}
.ws28{word-spacing:3.626667pt;}
.ws76{word-spacing:3.680000pt;}
.ws48{word-spacing:3.840000pt;}
.ws3f{word-spacing:3.946667pt;}
.ws42{word-spacing:4.266667pt;}
.ws73{word-spacing:4.426667pt;}
.ws23{word-spacing:4.533333pt;}
.ws15{word-spacing:4.800000pt;}
.ws79{word-spacing:4.853333pt;}
.ws39{word-spacing:4.906667pt;}
.ws36{word-spacing:5.013333pt;}
.ws2b{word-spacing:5.066667pt;}
.ws2{word-spacing:5.191259pt;}
.ws51{word-spacing:5.226667pt;}
.ws25{word-spacing:5.280000pt;}
.ws83{word-spacing:5.440000pt;}
.ws70{word-spacing:5.493333pt;}
.ws1a{word-spacing:5.653333pt;}
.ws6f{word-spacing:5.706667pt;}
.ws47{word-spacing:5.760000pt;}
.ws18{word-spacing:5.866667pt;}
.ws1f{word-spacing:5.973333pt;}
.ws46{word-spacing:6.080000pt;}
.ws5c{word-spacing:6.133333pt;}
.ws89{word-spacing:6.933333pt;}
.ws82{word-spacing:7.040000pt;}
.ws65{word-spacing:7.093333pt;}
.ws92{word-spacing:7.200000pt;}
.ws5a{word-spacing:7.253333pt;}
.ws19{word-spacing:7.360000pt;}
.ws88{word-spacing:7.466667pt;}
.ws3a{word-spacing:8.000000pt;}
.ws2f{word-spacing:8.160000pt;}
.ws6e{word-spacing:8.320000pt;}
.ws62{word-spacing:8.533333pt;}
.ws77{word-spacing:8.586667pt;}
.ws7f{word-spacing:8.853333pt;}
.ws2c{word-spacing:9.013333pt;}
.ws85{word-spacing:9.066667pt;}
.ws6d{word-spacing:9.173333pt;}
.ws2d{word-spacing:9.493333pt;}
.ws2e{word-spacing:11.040000pt;}
.ws49{word-spacing:638.463419pt;}
.ws94{word-spacing:924.938639pt;}
.ws10{word-spacing:958.271973pt;}
.wsa{word-spacing:984.591999pt;}
.ws7{word-spacing:984.597306pt;}
.ws7a{word-spacing:991.547234pt;}
._24{margin-left:-2197.749349pt;}
._c{margin-left:-2001.765378pt;}
._26{margin-left:-35.434667pt;}
._1e{margin-left:-15.816042pt;}
._d{margin-left:-14.926919pt;}
._8{margin-left:-13.521294pt;}
._2a{margin-left:-12.294400pt;}
._23{margin-left:-9.681600pt;}
._7{margin-left:-8.056905pt;}
._1a{margin-left:-7.146452pt;}
._9{margin-left:-6.197845pt;}
._a{margin-left:-5.002697pt;}
._b{margin-left:-3.311107pt;}
._0{margin-left:-2.267543pt;}
._2{margin-left:-1.277083pt;}
._1{width:1.235619pt;}
._3{width:2.208446pt;}
._1d{width:3.105623pt;}
._5{width:3.997104pt;}
._4{width:5.307358pt;}
._6{width:6.957614pt;}
._f{width:8.038400pt;}
._10{width:9.169600pt;}
._11{width:10.446934pt;}
._12{width:11.422400pt;}
._e{width:12.468267pt;}
._13{width:13.460273pt;}
._15{width:14.652776pt;}
._1c{width:15.723748pt;}
._1b{width:16.711438pt;}
._17{width:17.615293pt;}
._16{width:18.544174pt;}
._29{width:19.883043pt;}
._14{width:20.816000pt;}
._22{width:22.398150pt;}
._2c{width:23.687826pt;}
._18{width:25.160000pt;}
._21{width:26.086365pt;}
._2d{width:31.629864pt;}
._27{width:34.891201pt;}
._31{width:36.012266pt;}
._2e{width:38.520000pt;}
._25{width:40.795559pt;}
._32{width:44.064000pt;}
._37{width:48.964799pt;}
._2b{width:49.923190pt;}
._1f{width:54.519984pt;}
._30{width:78.376282pt;}
._20{width:82.176000pt;}
._36{width:129.468623pt;}
._39{width:131.862914pt;}
._35{width:136.269891pt;}
._38{width:138.730652pt;}
._33{width:176.537733pt;}
._34{width:178.176000pt;}
._2f{width:264.108911pt;}
._28{width:301.825617pt;}
._19{width:2114.278908pt;}
.fsa{font-size:23.434666pt;}
.fsc{font-size:26.666667pt;}
.fsb{font-size:31.093333pt;}
.fsf{font-size:32.000000pt;}
.fs12{font-size:41.463999pt;}
.fs10{font-size:42.665397pt;}
.fs9{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fsd{font-size:49.749333pt;}
.fs3{font-size:51.829865pt;}
.fs6{font-size:53.333333pt;}
.fse{font-size:58.666664pt;}
.fs11{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:82.927465pt;}
.fs5{font-size:85.333333pt;}
.fs2{font-size:124.390930pt;}
.fs4{font-size:128.000000pt;}
.fs0{font-size:129.573863pt;}
.y107{bottom:-3.871608pt;}
.y10f{bottom:-2.276922pt;}
.y103{bottom:-1.206022pt;}
.y10b{bottom:-0.001726pt;}
.y113{bottom:-0.000402pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:0.000385pt;}
.y10d{bottom:0.057453pt;}
.y109{bottom:0.128392pt;}
.y111{bottom:0.277954pt;}
.y95{bottom:11.277464pt;}
.y94{bottom:22.006797pt;}
.y31{bottom:28.493067pt;}
.y73{bottom:28.493333pt;}
.y89{bottom:28.493393pt;}
.y8f{bottom:29.082798pt;}
.y72{bottom:29.249333pt;}
.y9b{bottom:38.378780pt;}
.yd9{bottom:39.685066pt;}
.y16b{bottom:51.023600pt;}
.y9c{bottom:52.821593pt;}
.y92{bottom:62.020130pt;}
.y91{bottom:68.785463pt;}
.y9a{bottom:78.426778pt;}
.y8b{bottom:90.414404pt;}
.ybc{bottom:103.327637pt;}
.y2c{bottom:103.327718pt;}
.ybe{bottom:103.327733pt;}
.y130{bottom:103.327861pt;}
.ye{bottom:103.327881pt;}
.yb6{bottom:103.328003pt;}
.yac{bottom:103.328135pt;}
.y99{bottom:110.822777pt;}
.y14c{bottom:114.519735pt;}
.ybb{bottom:119.327637pt;}
.y2b{bottom:119.327718pt;}
.ybd{bottom:119.327733pt;}
.y12f{bottom:119.327861pt;}
.yb7{bottom:119.327881pt;}
.y66{bottom:119.328003pt;}
.yab{bottom:119.328135pt;}
.y96{bottom:121.618789pt;}
.y3{bottom:122.758256pt;}
.y174{bottom:125.858266pt;}
.y14b{bottom:126.467600pt;}
.y1df{bottom:127.280530pt;}
.yfd{bottom:130.519694pt;}
.y14e{bottom:130.519735pt;}
.y93{bottom:134.208126pt;}
.yba{bottom:135.327637pt;}
.y2a{bottom:135.327718pt;}
.y65{bottom:135.327861pt;}
.yd3{bottom:135.327881pt;}
.y71{bottom:135.328003pt;}
.y98{bottom:139.450776pt;}
.y173{bottom:141.858266pt;}
.y1de{bottom:142.829530pt;}
.yfc{bottom:146.519694pt;}
.y14d{bottom:146.519735pt;}
.y90{bottom:149.154793pt;}
.y2{bottom:150.829203pt;}
.y12b{bottom:151.327637pt;}
.y29{bottom:151.327718pt;}
.y64{bottom:151.327861pt;}
.yd2{bottom:151.327881pt;}
.y15f{bottom:151.328003pt;}
.y172{bottom:157.858266pt;}
.y1dd{bottom:158.378530pt;}
.yfb{bottom:162.519694pt;}
.y1a3{bottom:162.519735pt;}
.y8e{bottom:165.017455pt;}
.yb9{bottom:167.327637pt;}
.y79{bottom:167.327718pt;}
.yaa{bottom:167.327861pt;}
.yd1{bottom:167.327881pt;}
.y171{bottom:173.858276pt;}
.yfa{bottom:178.519694pt;}
.y1b8{bottom:178.519735pt;}
.y8d{bottom:178.922787pt;}
.yb8{bottom:183.327637pt;}
.y28{bottom:183.327718pt;}
.y63{bottom:183.327861pt;}
.yd0{bottom:183.327881pt;}
.y170{bottom:189.858276pt;}
.yf9{bottom:194.519694pt;}
.y8c{bottom:194.880120pt;}
.y97{bottom:195.309441pt;}
.yb0{bottom:199.327637pt;}
.y27{bottom:199.327718pt;}
.y12e{bottom:199.327861pt;}
.ycf{bottom:199.327881pt;}
.y16f{bottom:205.858276pt;}
.yf8{bottom:210.519694pt;}
.y1b7{bottom:210.519735pt;}
.y148{bottom:213.921204pt;}
.y14a{bottom:213.993457pt;}
.yc8{bottom:215.327637pt;}
.ya9{bottom:215.327718pt;}
.y12d{bottom:215.327861pt;}
.yce{bottom:215.327881pt;}
.y16e{bottom:221.858276pt;}
.y149{bottom:226.793457pt;}
.yaf{bottom:231.327637pt;}
.y26{bottom:231.327718pt;}
.y12c{bottom:231.327861pt;}
.ycd{bottom:231.327881pt;}
.y16d{bottom:237.858276pt;}
.yf7{bottom:242.519694pt;}
.y1b6{bottom:242.519735pt;}
.y5a{bottom:247.327637pt;}
.y25{bottom:247.327718pt;}
.y62{bottom:247.327861pt;}
.ycc{bottom:247.327881pt;}
.yf6{bottom:258.519694pt;}
.y1b5{bottom:258.519735pt;}
.y59{bottom:263.327637pt;}
.y61{bottom:263.327718pt;}
.y169{bottom:263.327861pt;}
.ycb{bottom:263.327881pt;}
.y108{bottom:264.492793pt;}
.y104{bottom:264.620801pt;}
.y102{bottom:265.827207pt;}
.y106{bottom:268.492793pt;}
.yf5{bottom:274.519694pt;}
.y101{bottom:274.519735pt;}
.y58{bottom:279.327637pt;}
.y24{bottom:279.327718pt;}
.yb2{bottom:279.327861pt;}
.yca{bottom:279.327881pt;}
.y70{bottom:279.328003pt;}
.yf4{bottom:290.519694pt;}
.y100{bottom:290.519735pt;}
.y147{bottom:293.741463pt;}
.yae{bottom:295.327637pt;}
.y1d4{bottom:295.327702pt;}
.y23{bottom:295.327718pt;}
.yb1{bottom:295.327861pt;}
.yc9{bottom:295.327881pt;}
.y188{bottom:301.858276pt;}
.y145{bottom:302.950928pt;}
.yf3{bottom:306.519694pt;}
.yff{bottom:306.519735pt;}
.y146{bottom:306.541463pt;}
.y57{bottom:311.327637pt;}
.y1d3{bottom:311.327702pt;}
.y22{bottom:311.327718pt;}
.y115{bottom:311.327861pt;}
.yd8{bottom:311.327881pt;}
.y187{bottom:317.858276pt;}
.yf2{bottom:322.519694pt;}
.yfe{bottom:322.519735pt;}
.y141{bottom:327.215487pt;}
.y56{bottom:327.327637pt;}
.y1d2{bottom:327.327702pt;}
.y21{bottom:327.327718pt;}
.y114{bottom:327.327861pt;}
.y9f{bottom:327.327881pt;}
.yf1{bottom:338.519694pt;}
.y1b4{bottom:338.519735pt;}
.y142{bottom:339.801331pt;}
.y140{bottom:340.015487pt;}
.y55{bottom:343.327637pt;}
.y1d1{bottom:343.327702pt;}
.y20{bottom:343.327718pt;}
.y9e{bottom:343.327881pt;}
.y186{bottom:349.858276pt;}
.y13f{bottom:352.815487pt;}
.yf0{bottom:354.519694pt;}
.y1b3{bottom:354.519735pt;}
.y54{bottom:359.327637pt;}
.y1d0{bottom:359.327702pt;}
.y1f{bottom:359.327718pt;}
.y9d{bottom:359.327881pt;}
.y144{bottom:360.944914pt;}
.y13c{bottom:360.944946pt;}
.y13e{bottom:365.615487pt;}
.y185{bottom:365.858276pt;}
.yef{bottom:370.519694pt;}
.y1b2{bottom:370.519735pt;}
.y143{bottom:373.744914pt;}
.y53{bottom:375.327637pt;}
.y78{bottom:375.327718pt;}
.ya7{bottom:375.327881pt;}
.y13d{bottom:378.415487pt;}
.y184{bottom:381.858276pt;}
.yee{bottom:386.519694pt;}
.y1b1{bottom:386.519735pt;}
.y52{bottom:391.327637pt;}
.y1cf{bottom:391.327702pt;}
.y1e{bottom:391.327718pt;}
.ya6{bottom:391.327881pt;}
.y183{bottom:397.858276pt;}
.yed{bottom:402.519694pt;}
.y1b0{bottom:402.519735pt;}
.y51{bottom:407.327637pt;}
.y1ce{bottom:407.327702pt;}
.y1d{bottom:407.327718pt;}
.yd6{bottom:407.327881pt;}
.y182{bottom:413.858276pt;}
.y112{bottom:413.913594pt;}
.y139{bottom:414.925716pt;}
.yec{bottom:418.519694pt;}
.y1af{bottom:418.519735pt;}
.y50{bottom:423.327637pt;}
.y60{bottom:423.327718pt;}
.yd7{bottom:423.327881pt;}
.y6f{bottom:423.328003pt;}
.y13b{bottom:426.276945pt;}
.y138{bottom:427.725716pt;}
.y181{bottom:429.858276pt;}
.yeb{bottom:434.519694pt;}
.y1ae{bottom:434.519735pt;}
.y13a{bottom:439.076945pt;}
.y4f{bottom:439.327637pt;}
.y1cd{bottom:439.327702pt;}
.y1c{bottom:439.327718pt;}
.yd{bottom:439.327881pt;}
.y137{bottom:440.525716pt;}
.yea{bottom:450.519694pt;}
.y1ad{bottom:450.519735pt;}
.y4e{bottom:455.327637pt;}
.y1cc{bottom:455.327702pt;}
.y1b{bottom:455.327718pt;}
.ya3{bottom:455.327881pt;}
.y10c{bottom:456.374414pt;}
.y10a{bottom:456.433594pt;}
.y10e{bottom:458.708789pt;}
.y180{bottom:461.858276pt;}
.y4{bottom:464.092407pt;}
.y1a2{bottom:466.519613pt;}
.ye9{bottom:466.519694pt;}
.y1ac{bottom:466.519735pt;}
.y136{bottom:466.604533pt;}
.y4d{bottom:471.327637pt;}
.y1cb{bottom:471.327702pt;}
.y5f{bottom:471.327718pt;}
.ya2{bottom:471.327881pt;}
.y110{bottom:475.051211pt;}
.y17f{bottom:477.858276pt;}
.y1a1{bottom:482.519613pt;}
.ye8{bottom:482.519694pt;}
.y1ab{bottom:482.519735pt;}
.y4c{bottom:487.327637pt;}
.y1a{bottom:487.327718pt;}
.ya1{bottom:487.327881pt;}
.y6e{bottom:487.328003pt;}
.ye7{bottom:498.519694pt;}
.y1aa{bottom:498.519735pt;}
.y1a8{bottom:500.934514pt;}
.y199{bottom:501.150416pt;}
.yb3{bottom:501.189209pt;}
.y150{bottom:501.339747pt;}
.yad{bottom:503.327637pt;}
.y1ca{bottom:503.327702pt;}
.y19{bottom:503.327718pt;}
.y87{bottom:503.327881pt;}
.y1d6{bottom:506.058553pt;}
.ye6{bottom:514.519694pt;}
.y1{bottom:519.185872pt;}
.y4b{bottom:519.327637pt;}
.y1c9{bottom:519.327702pt;}
.y77{bottom:519.327718pt;}
.y86{bottom:519.327881pt;}
.ye5{bottom:530.519694pt;}
.y4a{bottom:535.327637pt;}
.y1c8{bottom:535.327702pt;}
.y18{bottom:535.327718pt;}
.yd5{bottom:535.327881pt;}
.y1a7{bottom:539.334513pt;}
.y198{bottom:539.550415pt;}
.y14f{bottom:539.739746pt;}
.y1a6{bottom:546.519694pt;}
.yb4{bottom:547.535848pt;}
.y49{bottom:551.327637pt;}
.y17{bottom:551.327718pt;}
.yd4{bottom:551.327881pt;}
.y6d{bottom:551.328003pt;}
.y5{bottom:556.503337pt;}
.ye4{bottom:562.519694pt;}
.y48{bottom:567.327637pt;}
.y15e{bottom:567.327677pt;}
.y1c7{bottom:567.327702pt;}
.y16{bottom:567.327718pt;}
.y1a9{bottom:575.741048pt;}
.ye3{bottom:578.519694pt;}
.y135{bottom:578.519735pt;}
.y47{bottom:583.327637pt;}
.y1c6{bottom:583.327702pt;}
.y15{bottom:583.327718pt;}
.yc7{bottom:583.327743pt;}
.y12a{bottom:594.519613pt;}
.ye2{bottom:594.519694pt;}
.y168{bottom:594.519735pt;}
.y46{bottom:599.327637pt;}
.y15d{bottom:599.327677pt;}
.y1c5{bottom:599.327702pt;}
.y5e{bottom:599.327718pt;}
.yc6{bottom:599.327743pt;}
.y129{bottom:610.519613pt;}
.ye1{bottom:610.519694pt;}
.y167{bottom:610.519735pt;}
.y82{bottom:615.327637pt;}
.y15c{bottom:615.327677pt;}
.y14{bottom:615.327718pt;}
.yc5{bottom:615.327743pt;}
.y6c{bottom:615.328003pt;}
.y134{bottom:618.529191pt;}
.y128{bottom:626.519613pt;}
.ye0{bottom:626.519694pt;}
.y166{bottom:626.519735pt;}
.y45{bottom:631.327637pt;}
.y16a{bottom:631.327677pt;}
.y1c4{bottom:631.327702pt;}
.y76{bottom:631.327718pt;}
.yc4{bottom:631.327743pt;}
.y133{bottom:631.329191pt;}
.y127{bottom:642.519613pt;}
.ydf{bottom:642.519694pt;}
.y19a{bottom:642.519735pt;}
.y132{bottom:644.129191pt;}
.y44{bottom:647.327637pt;}
.ya8{bottom:647.327677pt;}
.y1c3{bottom:647.327702pt;}
.y8a{bottom:647.327718pt;}
.y126{bottom:658.519613pt;}
.y125{bottom:658.519694pt;}
.y1b9{bottom:658.519735pt;}
.y43{bottom:663.327637pt;}
.y1a5{bottom:663.327677pt;}
.y1c2{bottom:663.327702pt;}
.y13{bottom:663.327718pt;}
.y158{bottom:663.327881pt;}
.y6b{bottom:663.328003pt;}
.yde{bottom:674.519694pt;}
.y42{bottom:679.327637pt;}
.y197{bottom:679.327638pt;}
.y1a4{bottom:679.327677pt;}
.y12{bottom:679.327718pt;}
.y157{bottom:679.327881pt;}
.ydd{bottom:690.519694pt;}
.y41{bottom:695.327637pt;}
.y196{bottom:695.327638pt;}
.y1c1{bottom:695.327702pt;}
.y11{bottom:695.327718pt;}
.y153{bottom:695.327881pt;}
.y1d5{bottom:698.499756pt;}
.ydc{bottom:706.519694pt;}
.yc{bottom:711.327635pt;}
.y40{bottom:711.327637pt;}
.y195{bottom:711.327638pt;}
.y1c0{bottom:711.327702pt;}
.ya0{bottom:711.327718pt;}
.y152{bottom:711.327881pt;}
.ydb{bottom:722.519694pt;}
.y3f{bottom:727.327637pt;}
.y194{bottom:727.327638pt;}
.y1bf{bottom:727.327702pt;}
.y10{bottom:727.327718pt;}
.y165{bottom:738.519694pt;}
.yb{bottom:743.327635pt;}
.y3e{bottom:743.327637pt;}
.y193{bottom:743.327638pt;}
.y1be{bottom:743.327702pt;}
.yf{bottom:743.327718pt;}
.y124{bottom:754.519694pt;}
.y3d{bottom:759.327637pt;}
.y192{bottom:759.327638pt;}
.y176{bottom:765.858236pt;}
.y123{bottom:770.519694pt;}
.y19d{bottom:770.519735pt;}
.ya{bottom:775.327635pt;}
.y3c{bottom:775.327637pt;}
.y191{bottom:775.327638pt;}
.y1bd{bottom:775.327702pt;}
.y163{bottom:775.327713pt;}
.y175{bottom:781.858236pt;}
.y122{bottom:786.519694pt;}
.y19c{bottom:786.519735pt;}
.y3b{bottom:791.327637pt;}
.y190{bottom:791.327638pt;}
.y1bc{bottom:791.327702pt;}
.y162{bottom:791.327713pt;}
.y7c{bottom:791.327718pt;}
.y121{bottom:802.519694pt;}
.y19b{bottom:802.519735pt;}
.y9{bottom:807.327635pt;}
.y3a{bottom:807.327637pt;}
.y1bb{bottom:807.327702pt;}
.y6a{bottom:807.328003pt;}
.y120{bottom:818.519694pt;}
.y39{bottom:823.327637pt;}
.y18f{bottom:823.327638pt;}
.y11f{bottom:834.519694pt;}
.y5d{bottom:839.327637pt;}
.y18e{bottom:839.327638pt;}
.y1ba{bottom:839.327702pt;}
.y131{bottom:846.467611pt;}
.y11e{bottom:850.519694pt;}
.y38{bottom:855.327637pt;}
.y5c{bottom:855.327702pt;}
.y7b{bottom:855.327718pt;}
.y69{bottom:855.328003pt;}
.y161{bottom:863.077047pt;}
.y11d{bottom:866.519694pt;}
.y37{bottom:871.327637pt;}
.y18d{bottom:871.327638pt;}
.y151{bottom:871.327702pt;}
.y17e{bottom:877.858236pt;}
.y11c{bottom:882.519694pt;}
.y8{bottom:886.866301pt;}
.y36{bottom:887.327637pt;}
.y18c{bottom:887.327638pt;}
.y81{bottom:887.327702pt;}
.yc2{bottom:887.328136pt;}
.y1dc{bottom:887.863607pt;}
.y160{bottom:891.171712pt;}
.y17d{bottom:893.858236pt;}
.y11b{bottom:898.519694pt;}
.y35{bottom:903.327637pt;}
.y5b{bottom:903.327702pt;}
.y68{bottom:903.328003pt;}
.yc1{bottom:903.328136pt;}
.y1db{bottom:903.863607pt;}
.y18b{bottom:904.927638pt;}
.y17c{bottom:909.858236pt;}
.y11a{bottom:914.519694pt;}
.y7{bottom:915.758306pt;}
.y15b{bottom:919.327632pt;}
.y34{bottom:919.327637pt;}
.y7f{bottom:919.327702pt;}
.y7a{bottom:919.327718pt;}
.y75{bottom:919.327969pt;}
.y1da{bottom:919.863607pt;}
.y17b{bottom:925.858236pt;}
.y164{bottom:930.519694pt;}
.y15a{bottom:935.327632pt;}
.y85{bottom:935.327637pt;}
.y33{bottom:935.327702pt;}
.y30{bottom:935.327718pt;}
.y19f{bottom:935.327861pt;}
.y156{bottom:935.327881pt;}
.y74{bottom:935.327969pt;}
.y67{bottom:935.328003pt;}
.yc0{bottom:935.328135pt;}
.y17a{bottom:941.858236pt;}
.y119{bottom:946.519694pt;}
.ya5{bottom:951.327629pt;}
.y80{bottom:951.327637pt;}
.y7e{bottom:951.327702pt;}
.y2f{bottom:951.327718pt;}
.y1d9{bottom:951.863607pt;}
.y18a{bottom:952.927637pt;}
.y179{bottom:957.858236pt;}
.y118{bottom:962.519694pt;}
.y6{bottom:967.327637pt;}
.y32{bottom:967.327702pt;}
.y2e{bottom:967.327718pt;}
.y19e{bottom:967.327861pt;}
.y155{bottom:967.327881pt;}
.ybf{bottom:967.328135pt;}
.y1d8{bottom:967.863607pt;}
.y189{bottom:968.927637pt;}
.y159{bottom:971.171631pt;}
.y117{bottom:978.519694pt;}
.y84{bottom:983.327637pt;}
.y7d{bottom:983.327702pt;}
.y2d{bottom:983.327718pt;}
.ya4{bottom:985.786296pt;}
.y1d7{bottom:989.197036pt;}
.y178{bottom:989.858236pt;}
.y116{bottom:994.519694pt;}
.y177{bottom:1005.858236pt;}
.yb5{bottom:1047.327637pt;}
.y83{bottom:1047.327702pt;}
.yc3{bottom:1047.327718pt;}
.y154{bottom:1047.327881pt;}
.y1a0{bottom:1047.328003pt;}
.y88{bottom:1047.328028pt;}
.yda{bottom:1058.519694pt;}
.y16c{bottom:1069.858236pt;}
.h2e{height:1.000000pt;}
.h31{height:2.958398pt;}
.h2b{height:9.179199pt;}
.h30{height:10.292773pt;}
.h2d{height:10.379199pt;}
.h2f{height:10.587188pt;}
.h33{height:10.589440pt;}
.h32{height:10.867188pt;}
.h16{height:17.976494pt;}
.h1f{height:24.270833pt;}
.h3e{height:25.494792pt;}
.h3c{height:29.125000pt;}
.h55{height:31.761424pt;}
.h4c{height:32.290706pt;}
.h4{height:36.540054pt;}
.h50{height:36.816000pt;}
.h1c{height:36.820312pt;}
.h3b{height:38.515625pt;}
.h26{height:38.560000pt;}
.h14{height:38.567708pt;}
.h29{height:38.826667pt;}
.h13{height:38.833333pt;}
.h23{height:38.833984pt;}
.h20{height:38.834351pt;}
.h21{height:38.834944pt;}
.he{height:39.583333pt;}
.h42{height:40.791667pt;}
.h1a{height:40.859375pt;}
.h1b{height:41.581016pt;}
.h27{height:43.680000pt;}
.ha{height:43.687500pt;}
.h2a{height:43.687826pt;}
.h35{height:43.688151pt;}
.h1d{height:43.688395pt;}
.h3d{height:43.688477pt;}
.h54{height:43.688965pt;}
.h46{height:44.296875pt;}
.h2c{height:45.002602pt;}
.h3f{height:45.890625pt;}
.h4d{height:45.891113pt;}
.h48{height:45.891520pt;}
.h4b{height:45.891764pt;}
.h4e{height:45.892090pt;}
.h28{height:48.533333pt;}
.h38{height:48.533496pt;}
.h9{height:48.541667pt;}
.h37{height:48.541687pt;}
.h17{height:48.541697pt;}
.h18{height:48.541829pt;}
.hc{height:48.541992pt;}
.h19{height:48.542236pt;}
.h34{height:48.542318pt;}
.h24{height:48.542643pt;}
.h4f{height:49.088000pt;}
.h10{height:49.093750pt;}
.h11{height:49.094076pt;}
.h52{height:49.218489pt;}
.h8{height:49.218750pt;}
.hf{height:49.219076pt;}
.hd{height:49.219320pt;}
.h40{height:50.989583pt;}
.h49{height:50.989746pt;}
.h41{height:50.989909pt;}
.h4a{height:50.990072pt;}
.h44{height:50.990153pt;}
.h47{height:50.990234pt;}
.h45{height:50.990560pt;}
.h53{height:54.140625pt;}
.hb{height:58.250000pt;}
.h43{height:59.062500pt;}
.h2{height:63.522438pt;}
.h51{height:65.450667pt;}
.h12{height:65.458333pt;}
.h22{height:66.578208pt;}
.h6{height:77.666667pt;}
.h7{height:78.750000pt;}
.h36{height:84.785749pt;}
.h3{height:92.671243pt;}
.h1{height:96.532528pt;}
.h1e{height:98.187500pt;}
.h5{height:118.125000pt;}
.h15{height:220.913594pt;}
.h25{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.h39{height:1145.197333pt;}
.h3a{height:1145.333333pt;}
.wa{width:0.304004pt;}
.w7{width:1.000000pt;}
.w6{width:2.059219pt;}
.w5{width:3.726406pt;}
.w9{width:5.000000pt;}
.wb{width:7.025586pt;}
.w8{width:7.025605pt;}
.wc{width:7.861280pt;}
.w2{width:661.417578pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w3{width:793.701333pt;}
.w4{width:794.000000pt;}
.wd{width:816.377333pt;}
.we{width:816.666667pt;}
.x4d{left:-7.029470pt;}
.x4b{left:-3.368142pt;}
.x49{left:-1.700955pt;}
.x0{left:0.000000pt;}
.x20{left:22.841172pt;}
.x74{left:37.795333pt;}
.x76{left:39.761467pt;}
.x81{left:40.818933pt;}
.x90{left:46.616267pt;}
.x11{left:49.133733pt;}
.x35{left:51.411336pt;}
.x3c{left:52.532269pt;}
.x78{left:53.901866pt;}
.x40{left:54.865736pt;}
.x86{left:55.838135pt;}
.x6a{left:57.474935pt;}
.x28{left:58.870399pt;}
.x34{left:60.839335pt;}
.x1b{left:62.370667pt;}
.x3f{left:64.193736pt;}
.x5a{left:65.199849pt;}
.x1e{left:66.839335pt;}
.x69{left:68.473865pt;}
.x59{left:69.819735pt;}
.x7d{left:71.202545pt;}
.x39{left:74.094935pt;}
.x55{left:75.161865pt;}
.x2a{left:76.334401pt;}
.x6b{left:77.991065pt;}
.x85{left:81.126269pt;}
.x77{left:82.769467pt;}
.x1{left:84.478399pt;}
.x5b{left:87.262516pt;}
.x27{left:88.673065pt;}
.x29{left:90.203733pt;}
.x41{left:91.756401pt;}
.x46{left:94.488129pt;}
.x37{left:95.835068pt;}
.x65{left:96.822561pt;}
.x6f{left:104.787862pt;}
.x10{left:105.826406pt;}
.x6d{left:107.537332pt;}
.x67{left:109.400665pt;}
.x6{left:111.303997pt;}
.x3a{left:114.340266pt;}
.x7a{left:123.678131pt;}
.x33{left:125.491064pt;}
.x51{left:127.557871pt;}
.x36{left:129.826528pt;}
.x50{left:132.521871pt;}
.x1f{left:136.604667pt;}
.x3d{left:146.541607pt;}
.x1c{left:147.564000pt;}
.x62{left:149.102397pt;}
.x44{left:151.254537pt;}
.x3b{left:153.950002pt;}
.x63{left:156.850403pt;}
.x5{left:165.542664pt;}
.x88{left:170.300268pt;}
.x31{left:172.938517pt;}
.x7b{left:180.933329pt;}
.x7e{left:186.885457pt;}
.x8f{left:188.636007pt;}
.x66{left:194.003896pt;}
.x79{left:196.308532pt;}
.x80{left:198.223714pt;}
.x6e{left:199.345336pt;}
.x89{left:202.389470pt;}
.x53{left:209.720530pt;}
.x38{left:213.319066pt;}
.x8b{left:216.381205pt;}
.x42{left:224.283064pt;}
.x2b{left:226.130401pt;}
.x8a{left:231.881205pt;}
.x87{left:233.862006pt;}
.x5c{left:238.303847pt;}
.x57{left:239.437861pt;}
.x5e{left:240.377991pt;}
.x56{left:247.505859pt;}
.x45{left:255.463603pt;}
.x3e{left:263.643717pt;}
.x17{left:266.802409pt;}
.x32{left:269.102539pt;}
.x19{left:270.642527pt;}
.x4c{left:276.000000pt;}
.x15{left:278.695860pt;}
.x68{left:280.963745pt;}
.x13{left:284.314527pt;}
.x14{left:286.749193pt;}
.x12{left:287.810527pt;}
.x84{left:295.336670pt;}
.xd{left:297.702535pt;}
.x75{left:302.362142pt;}
.x83{left:303.781087pt;}
.x72{left:305.250529pt;}
.xe{left:313.701192pt;}
.x7{left:315.503743pt;}
.x1d{left:318.106404pt;}
.x4e{left:322.558398pt;}
.x54{left:324.024129pt;}
.x82{left:333.701192pt;}
.x52{left:335.362386pt;}
.x2c{left:337.701192pt;}
.x73{left:342.682528pt;}
.xa{left:348.331744pt;}
.x9{left:351.539744pt;}
.xb{left:362.394411pt;}
.x5d{left:365.994792pt;}
.x4f{left:367.428789pt;}
.x8{left:373.467743pt;}
.x58{left:377.333048pt;}
.x61{left:390.992147pt;}
.xc{left:397.878540pt;}
.x60{left:421.228394pt;}
.x5f{left:425.196818pt;}
.x8e{left:464.034403pt;}
.x30{left:467.546539pt;}
.x2d{left:469.603882pt;}
.x2{left:487.950354pt;}
.x7c{left:490.305094pt;}
.x48{left:499.332812pt;}
.x4a{left:501.000000pt;}
.x47{left:510.236247pt;}
.x7f{left:517.795329pt;}
.x6c{left:519.967855pt;}
.x18{left:521.574941pt;}
.x26{left:582.877935pt;}
.x22{left:586.615823pt;}
.x24{left:596.540613pt;}
.x25{left:597.980613pt;}
.x3{left:602.395874pt;}
.x23{left:605.795835pt;}
.x21{left:606.735822pt;}
.x70{left:628.913086pt;}
.x8c{left:637.993083pt;}
.x64{left:684.022380pt;}
.x71{left:690.519755pt;}
.x43{left:739.238770pt;}
.x8d{left:742.243733pt;}
.x2f{left:750.577067pt;}
.xf{left:754.763753pt;}
.x16{left:757.765055pt;}
.x1a{left:758.910400pt;}
.x4{left:761.957438pt;}
.x2e{left:785.181071pt;}
}


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