
/* 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_b9ab438e0550.woff")format("woff");}.ff1{font-family:ff1;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_8c392acf8f36.woff")format("woff");}.ff2{font-family:ff2;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_bb6fecb75a39.woff")format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_d8636f382cd7.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_ed62cdeecebe.woff")format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_cc81102edd80.woff")format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_f54a338b73f4.woff")format("woff");}.ff7{font-family:ff7;line-height:0.844000;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_e5ebad5f2c95.woff")format("woff");}.ff8{font-family:ff8;line-height:0.826000;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_17ab8e973005.woff")format("woff");}.ff9{font-family:ff9;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_472605d2f47d.woff")format("woff");}.ffa{font-family:ffa;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_cc81102edd80.woff")format("woff");}.ffb{font-family:ffb;line-height:0.906000;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_17ab8e973005.woff")format("woff");}.ffc{font-family:ffc;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_feab154c6644.woff")format("woff");}.ffd{font-family:ffd;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_f54a338b73f4.woff")format("woff");}.ffe{font-family:ffe;line-height:0.844000;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_0dc8da10913e.woff")format("woff");}.fff{font-family:fff;line-height:0.910156;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_17ab8e973005.woff")format("woff");}.ff10{font-family:ff10;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_feab154c6644.woff")format("woff");}.ff11{font-family:ff11;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_cc81102edd80.woff")format("woff");}.ff12{font-family:ff12;line-height:0.906000;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_472605d2f47d.woff")format("woff");}.ff13{font-family:ff13;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_f54a338b73f4.woff")format("woff");}.ff14{font-family:ff14;line-height:0.844000;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_cc81102edd80.woff")format("woff");}.ff15{font-family:ff15;line-height:0.906000;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_17ab8e973005.woff")format("woff");}.ff16{font-family:ff16;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_feab154c6644.woff")format("woff");}.ff17{font-family:ff17;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_f54a338b73f4.woff")format("woff");}.ff18{font-family:ff18;line-height:0.844000;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_17ab8e973005.woff")format("woff");}.ff19{font-family:ff19;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_feab154c6644.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_74bd1ff8df5f.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.906000;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_cc81102edd80.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.906000;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_f54a338b73f4.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.844000;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_cc81102edd80.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.906000;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_17ab8e973005.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_feab154c6644.woff")format("woff");}.ff20{font-family:ff20;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_f54a338b73f4.woff")format("woff");}.ff21{font-family:ff21;line-height:0.844000;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_04778626b07b.woff")format("woff");}.ff22{font-family:ff22;line-height:0.826000;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_472605d2f47d.woff")format("woff");}.ff23{font-family:ff23;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_17ab8e973005.woff")format("woff");}.ff24{font-family:ff24;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_feab154c6644.woff")format("woff");}.ff25{font-family:ff25;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_74bd1ff8df5f.woff")format("woff");}.ff26{font-family:ff26;line-height:0.906000;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_17ab8e973005.woff")format("woff");}.ff27{font-family:ff27;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_feab154c6644.woff")format("woff");}.ff28{font-family:ff28;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_cc81102edd80.woff")format("woff");}.ff29{font-family:ff29;line-height:0.906000;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_f54a338b73f4.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.844000;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_cc81102edd80.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.906000;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_17ab8e973005.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url("fonts/font_0044_7bf0019a7c67.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_f54a338b73f4.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.844000;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_472605d2f47d.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{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);}
.m3{transform:matrix(0.220587,0.117649,-0.117649,0.220587,0,0);-ms-transform:matrix(0.220587,0.117649,-0.117649,0.220587,0,0);-webkit-transform:matrix(0.220587,0.117649,-0.117649,0.220587,0,0);}
.m5{transform:matrix(0.220587,-0.117649,0.117649,0.220587,0,0);-ms-transform:matrix(0.220587,-0.117649,0.117649,0.220587,0,0);-webkit-transform:matrix(0.220587,-0.117649,0.117649,0.220587,0,0);}
.m4{transform:matrix(0.220591,0.117642,-0.117642,0.220591,0,0);-ms-transform:matrix(0.220591,0.117642,-0.117642,0.220591,0,0);-webkit-transform:matrix(0.220591,0.117642,-0.117642,0.220591,0,0);}
.m2{transform:matrix(0.220592,-0.117640,0.117640,0.220592,0,0);-ms-transform:matrix(0.220592,-0.117640,0.117640,0.220592,0,0);-webkit-transform:matrix(0.220592,-0.117640,0.117640,0.220592,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-28.212000px;}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.482439px;}
.v9{vertical-align:10.472711px;}
.v6{vertical-align:17.378873px;}
.v7{vertical-align:18.564000px;}
.v4{vertical-align:21.696552px;}
.v1{vertical-align:28.212000px;}
.v8{vertical-align:39.756600px;}
.ls1c{letter-spacing:-0.806976px;}
.lsb{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.989200px;}
.ls3{letter-spacing:11.955150px;}
.ls1{letter-spacing:13.449600px;}
.ls16{letter-spacing:13.468015px;}
.ls18{letter-spacing:13.468085px;}
.ls17{letter-spacing:13.468297px;}
.ls13{letter-spacing:14.943900px;}
.ls6{letter-spacing:16.338000px;}
.lsd{letter-spacing:16.338600px;}
.ls5{letter-spacing:16.524000px;}
.lsc{letter-spacing:16.524600px;}
.ls10{letter-spacing:17.934000px;}
.ls8{letter-spacing:17.934600px;}
.ls14{letter-spacing:19.674600px;}
.ls12{letter-spacing:19.675200px;}
.lsa{letter-spacing:20.508600px;}
.ls9{letter-spacing:20.514600px;}
.ls19{letter-spacing:20.604787px;}
.ls2{letter-spacing:20.925302px;}
.ls11{letter-spacing:21.516600px;}
.ls7{letter-spacing:21.996000px;}
.lse{letter-spacing:21.996600px;}
.ls1f{letter-spacing:22.728600px;}
.ls1b{letter-spacing:22.729200px;}
.lsf{letter-spacing:23.838600px;}
.ls1e{letter-spacing:30.174600px;}
.ls1a{letter-spacing:30.175200px;}
.ls1d{letter-spacing:310.269600px;}
.ls15{letter-spacing:310.270200px;}
.ls4{letter-spacing:777.945521px;}
.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;}
}
.ws1{word-spacing:-15.012000px;}
.ws2{word-spacing:-12.000000px;}
.ws0{word-spacing:-0.099000px;}
.ws32{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.054396px;}
.ws5{word-spacing:-0.047821px;}
.ws46{word-spacing:-0.041843px;}
.wsb0{word-spacing:-0.035866px;}
.ws48{word-spacing:0.000000px;}
.wsa1{word-spacing:0.753178px;}
.ws86{word-spacing:10.185788px;}
.ws84{word-spacing:10.663994px;}
.wsb{word-spacing:10.867277px;}
.ws85{word-spacing:11.142200px;}
.wsb8{word-spacing:11.237841px;}
.ws3f{word-spacing:11.297588px;}
.wsaf{word-spacing:11.572585px;}
.wsb3{word-spacing:11.656242px;}
.ws95{word-spacing:11.716018px;}
.ws88{word-spacing:11.763868px;}
.ws79{word-spacing:11.775793px;}
.wsa5{word-spacing:11.835569px;}
.ws4{word-spacing:11.907329px;}
.ws6f{word-spacing:12.313774px;}
.ws90{word-spacing:12.373549px;}
.wsb1{word-spacing:12.493100px;}
.wsa8{word-spacing:12.612652px;}
.wsc2{word-spacing:12.619856px;}
.wsba{word-spacing:12.624638px;}
.wsb9{word-spacing:12.672459px;}
.ws73{word-spacing:12.851754px;}
.ws8d{word-spacing:12.911530px;}
.ws2b{word-spacing:12.971305px;}
.ws52{word-spacing:13.150632px;}
.ws99{word-spacing:13.171934px;}
.ws87{word-spacing:13.172534px;}
.ws63{word-spacing:13.210408px;}
.ws18{word-spacing:13.270183px;}
.ws7a{word-spacing:13.329959px;}
.ws1c{word-spacing:13.389734px;}
.ws12{word-spacing:13.395802px;}
.ws9f{word-spacing:13.414213px;}
.ws9e{word-spacing:13.414424px;}
.ws1b{word-spacing:13.449510px;}
.ws11{word-spacing:13.449600px;}
.wsbb{word-spacing:13.485409px;}
.wsa9{word-spacing:13.569061px;}
.ws43{word-spacing:13.628837px;}
.ws10{word-spacing:13.664794px;}
.ws36{word-spacing:13.688612px;}
.wsad{word-spacing:13.724512px;}
.ws7d{word-spacing:13.748388px;}
.ws44{word-spacing:13.808164px;}
.ws8c{word-spacing:13.927715px;}
.ws37{word-spacing:13.987490px;}
.ws1a{word-spacing:14.107042px;}
.ws3{word-spacing:14.156916px;}
.ws25{word-spacing:14.166817px;}
.ws4a{word-spacing:14.202718px;}
.ws75{word-spacing:14.226593px;}
.ws60{word-spacing:14.286368px;}
.wsa3{word-spacing:14.346144px;}
.wsb6{word-spacing:14.405920px;}
.ws35{word-spacing:14.465695px;}
.ws7f{word-spacing:14.585246px;}
.ws94{word-spacing:14.645022px;}
.ws77{word-spacing:14.704798px;}
.ws96{word-spacing:14.764573px;}
.ws22{word-spacing:14.776565px;}
.ws61{word-spacing:14.824349px;}
.wsbd{word-spacing:14.824386px;}
.wsb7{word-spacing:14.878147px;}
.ws1d{word-spacing:14.884124px;}
.ws98{word-spacing:14.943900px;}
.ws45{word-spacing:15.003676px;}
.wsbc{word-spacing:15.015668px;}
.ws15{word-spacing:15.063451px;}
.ws50{word-spacing:15.123227px;}
.ws82{word-spacing:15.183002px;}
.ws69{word-spacing:15.242778px;}
.wsc{word-spacing:15.332544px;}
.ws81{word-spacing:15.362329px;}
.wsa7{word-spacing:15.422105px;}
.wsa{word-spacing:15.440141px;}
.ws4c{word-spacing:15.481880px;}
.ws28{word-spacing:15.541656px;}
.wse{word-spacing:15.547738px;}
.ws56{word-spacing:15.601432px;}
.ws3b{word-spacing:15.661207px;}
.ws54{word-spacing:15.720983px;}
.ws5e{word-spacing:15.780758px;}
.wsa4{word-spacing:15.840534px;}
.ws2c{word-spacing:15.900310px;}
.ws19{word-spacing:16.019861px;}
.ws38{word-spacing:16.079636px;}
.wsab{word-spacing:16.139412px;}
.ws6d{word-spacing:16.199188px;}
.ws55{word-spacing:16.258963px;}
.ws57{word-spacing:16.318739px;}
.ws3e{word-spacing:16.378514px;}
.ws42{word-spacing:16.438290px;}
.ws66{word-spacing:16.498066px;}
.ws83{word-spacing:16.557841px;}
.ws70{word-spacing:16.617617px;}
.ws62{word-spacing:16.677392px;}
.wsae{word-spacing:16.712534px;}
.ws6b{word-spacing:16.737168px;}
.ws5b{word-spacing:16.796944px;}
.ws40{word-spacing:16.916495px;}
.ws26{word-spacing:16.976270px;}
.ws2f{word-spacing:17.036046px;}
.ws6e{word-spacing:17.095822px;}
.ws7e{word-spacing:17.155597px;}
.ws27{word-spacing:17.215373px;}
.ws2e{word-spacing:17.275148px;}
.ws41{word-spacing:17.334924px;}
.ws6a{word-spacing:17.394700px;}
.ws16{word-spacing:17.454475px;}
.ws4b{word-spacing:17.514251px;}
.ws93{word-spacing:17.574026px;}
.ws67{word-spacing:17.633802px;}
.ws65{word-spacing:17.693578px;}
.wsa6{word-spacing:17.753353px;}
.ws53{word-spacing:17.813129px;}
.ws6{word-spacing:17.861069px;}
.wsa2{word-spacing:17.861257px;}
.wsc1{word-spacing:17.861857px;}
.ws7b{word-spacing:17.872904px;}
.ws78{word-spacing:17.932680px;}
.ws74{word-spacing:17.992456px;}
.ws47{word-spacing:18.052231px;}
.ws30{word-spacing:18.112007px;}
.ws80{word-spacing:18.171782px;}
.ws6c{word-spacing:18.231558px;}
.ws51{word-spacing:18.291334px;}
.ws2d{word-spacing:18.351109px;}
.ws5d{word-spacing:18.410885px;}
.ws5a{word-spacing:18.470660px;}
.wsd{word-spacing:18.560448px;}
.ws29{word-spacing:18.649987px;}
.wsf{word-spacing:18.668045px;}
.wsb5{word-spacing:18.709763px;}
.ws3c{word-spacing:18.769538px;}
.ws33{word-spacing:18.829314px;}
.ws2a{word-spacing:18.948865px;}
.ws39{word-spacing:19.187968px;}
.ws59{word-spacing:19.307519px;}
.ws8{word-spacing:19.349392px;}
.ws58{word-spacing:19.367294px;}
.ws5f{word-spacing:19.427070px;}
.wsaa{word-spacing:19.725948px;}
.ws8f{word-spacing:19.785724px;}
.ws97{word-spacing:19.905275px;}
.ws76{word-spacing:19.965050px;}
.ws21{word-spacing:20.024826px;}
.ws8e{word-spacing:20.144377px;}
.ws64{word-spacing:20.204153px;}
.ws7c{word-spacing:20.503031px;}
.ws34{word-spacing:20.562806px;}
.ws9c{word-spacing:20.582534px;}
.wsbf{word-spacing:20.584334px;}
.wsc0{word-spacing:20.584934px;}
.wsbe{word-spacing:20.585534px;}
.wsa0{word-spacing:20.588534px;}
.ws4f{word-spacing:20.801909px;}
.ws5c{word-spacing:20.861684px;}
.ws17{word-spacing:20.981236px;}
.ws91{word-spacing:21.100787px;}
.ws4d{word-spacing:21.399665px;}
.ws4e{word-spacing:21.459440px;}
.ws3d{word-spacing:21.578992px;}
.wsb2{word-spacing:21.698543px;}
.wsac{word-spacing:21.818094px;}
.ws23{word-spacing:21.901835px;}
.wsb4{word-spacing:21.997421px;}
.ws31{word-spacing:22.176748px;}
.ws3a{word-spacing:22.190557px;}
.ws1f{word-spacing:22.834279px;}
.ws72{word-spacing:22.953830px;}
.ws8b{word-spacing:23.133157px;}
.ws71{word-spacing:23.252708px;}
.ws68{word-spacing:23.491811px;}
.ws20{word-spacing:23.910240px;}
.ws9a{word-spacing:24.103357px;}
.ws92{word-spacing:24.103957px;}
.ws1e{word-spacing:24.866650px;}
.ws7{word-spacing:25.303131px;}
.ws14{word-spacing:29.828024px;}
.ws49{word-spacing:31.446571px;}
.ws13{word-spacing:31.447171px;}
.ws24{word-spacing:31.449139px;}
.ws9d{word-spacing:156.718838px;}
.ws89{word-spacing:259.545655px;}
.ws9b{word-spacing:310.210424px;}
.ws8a{word-spacing:352.138060px;}
._7{margin-left:-19.893370px;}
._2{margin-left:-6.987600px;}
._4{margin-left:-5.738496px;}
._1{margin-left:-3.985200px;}
._3{margin-left:-2.948787px;}
._0{margin-left:-1.791900px;}
._6{width:3.433891px;}
._10{width:5.393964px;}
._15{width:6.522277px;}
._12{width:11.955150px;}
._19{width:14.047266px;}
._f{width:15.208175px;}
._9{width:16.495416px;}
._b{width:17.608630px;}
._17{width:18.887722px;}
._a{width:20.521163px;}
._1e{width:21.614911px;}
._8{width:22.669798px;}
._13{width:24.089567px;}
._d{width:25.583957px;}
._1f{width:26.598774px;}
._21{width:27.933620px;}
._14{width:29.290044px;}
._32{width:30.485556px;}
._5{width:31.501890px;}
._c{width:32.554460px;}
._18{width:34.847807px;}
._e{width:36.941321px;}
._20{width:39.015886px;}
._16{width:41.181284px;}
._11{width:42.958357px;}
._26{width:133.598504px;}
._2c{width:142.920724px;}
._2b{width:161.872325px;}
._27{width:176.218469px;}
._28{width:218.958023px;}
._29{width:240.955444px;}
._24{width:249.262884px;}
._2d{width:265.941644px;}
._2e{width:303.540497px;}
._2f{width:325.777020px;}
._22{width:331.754580px;}
._23{width:333.248970px;}
._30{width:339.405857px;}
._25{width:364.212731px;}
._2a{width:397.506372px;}
._1b{width:453.149400px;}
._1c{width:759.354000px;}
._1d{width:777.942776px;}
._1a{width:831.354000px;}
._31{width:990.585600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,150,189);}
.fc3{color:rgb(213,213,213);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fsc{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:51.108000px;}
.fsa{font-size:53.798400px;}
.fsd{font-size:53.872059px;}
.fsf{font-size:53.872341px;}
.fse{font-size:53.873188px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:54.396000px;}
.fsb{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs7{font-size:77.708400px;}
.fs0{font-size:99.000000px;}
.fs6{font-size:101.619000px;}
.y58{bottom:-434.456982px;}
.yd6{bottom:-434.456832px;}
.y57{bottom:-419.513044px;}
.yd5{bottom:-419.512894px;}
.y56{bottom:-391.059787px;}
.yd4{bottom:-391.059637px;}
.y55{bottom:-371.774850px;}
.yd3{bottom:-371.774700px;}
.y54{bottom:-326.688390px;}
.yd2{bottom:-326.688240px;}
.y53{bottom:-308.755710px;}
.yd1{bottom:-308.755560px;}
.y52{bottom:-290.823030px;}
.yd0{bottom:-290.822880px;}
.y51{bottom:-272.890350px;}
.ycf{bottom:-272.890200px;}
.y50{bottom:-254.956488px;}
.yce{bottom:-254.956338px;}
.y4f{bottom:-237.023808px;}
.ycd{bottom:-237.023658px;}
.y4e{bottom:-219.091128px;}
.ycc{bottom:-219.090978px;}
.y4d{bottom:-201.158448px;}
.ycb{bottom:-201.158298px;}
.y4c{bottom:-183.225768px;}
.yca{bottom:-183.225618px;}
.y4b{bottom:-165.293088px;}
.yc9{bottom:-165.292938px;}
.y4a{bottom:-129.128850px;}
.yc8{bottom:-129.128700px;}
.yc7{bottom:-55.065362px;}
.y49{bottom:-55.059935px;}
.y7{bottom:-31.889700px;}
.yc6{bottom:-27.991318px;}
.y48{bottom:-27.985890px;}
.y30{bottom:-26.645287px;}
.yb0{bottom:-26.644332px;}
.yc5{bottom:-11.851798px;}
.y47{bottom:-11.846370px;}
.y2f{bottom:-11.701350px;}
.yaf{bottom:-11.700394px;}
.yc4{bottom:-11.434860px;}
.y46{bottom:-11.429432px;}
.y0{bottom:0.000000px;}
.yc3{bottom:4.287722px;}
.y44{bottom:4.293150px;}
.yae{bottom:16.752863px;}
.yc2{bottom:20.427242px;}
.yad{bottom:36.037800px;}
.yc1{bottom:36.566762px;}
.yc0{bottom:52.706282px;}
.y6{bottom:68.165850px;}
.ybf{bottom:68.845802px;}
.y132{bottom:79.927302px;}
.yac{bottom:81.124260px;}
.y5{bottom:81.665850px;}
.y18c{bottom:82.926090px;}
.y104{bottom:84.427200px;}
.ybe{bottom:84.985322px;}
.y15e{bottom:85.926319px;}
.y1d8{bottom:90.426319px;}
.y209{bottom:93.829987px;}
.y4{bottom:95.165850px;}
.y131{bottom:97.859982px;}
.yab{bottom:99.056940px;}
.y15d{bottom:100.117082px;}
.y18b{bottom:100.858770px;}
.ybd{bottom:101.124842px;}
.y103{bottom:102.359880px;}
.y1d7{bottom:104.617082px;}
.y208{bottom:108.020751px;}
.y130{bottom:115.792662px;}
.yaa{bottom:116.989620px;}
.ybc{bottom:117.264362px;}
.y15c{bottom:118.659300px;}
.y18a{bottom:118.791450px;}
.y102{bottom:120.292560px;}
.y207{bottom:122.223469px;}
.y1d6{bottom:123.159300px;}
.ya{bottom:123.507000px;}
.ybb{bottom:133.403882px;}
.y12f{bottom:133.725342px;}
.ya9{bottom:134.922300px;}
.y206{bottom:136.414232px;}
.y189{bottom:136.721953px;}
.y101{bottom:138.225240px;}
.y2e{bottom:140.259713px;}
.y89{bottom:149.266110px;}
.ye6{bottom:149.266260px;}
.y205{bottom:150.616950px;}
.y12e{bottom:151.658022px;}
.ya8{bottom:152.856162px;}
.y188{bottom:154.654633px;}
.y100{bottom:156.157920px;}
.y2d{bottom:159.544650px;}
.yba{bottom:159.711300px;}
.y15b{bottom:164.148300px;}
.y204{bottom:164.807713px;}
.y88{bottom:167.198790px;}
.ye5{bottom:167.198940px;}
.y1d5{bottom:168.769530px;}
.y12d{bottom:169.590702px;}
.ya7{bottom:170.788842px;}
.y187{bottom:172.587313px;}
.yff{bottom:174.090600px;}
.y203{bottom:179.010431px;}
.y15a{bottom:182.080980px;}
.y87{bottom:185.131470px;}
.ye4{bottom:185.131620px;}
.y1d4{bottom:186.702210px;}
.y12c{bottom:187.523382px;}
.ya6{bottom:188.721522px;}
.y186{bottom:190.519993px;}
.yfe{bottom:192.023280px;}
.y202{bottom:193.201194px;}
.y159{bottom:200.013660px;}
.y86{bottom:203.064750px;}
.ye3{bottom:203.064900px;}
.y2c{bottom:204.631110px;}
.y1d3{bottom:204.634890px;}
.ya5{bottom:206.654202px;}
.y201{bottom:207.403912px;}
.y185{bottom:208.452673px;}
.yfd{bottom:209.955960px;}
.y158{bottom:217.946340px;}
.y85{bottom:220.997430px;}
.ye2{bottom:220.997580px;}
.y200{bottom:221.594676px;}
.y2b{bottom:222.563790px;}
.y1d2{bottom:222.567570px;}
.yb9{bottom:223.182300px;}
.y12b{bottom:223.388742px;}
.ya4{bottom:224.586882px;}
.y184{bottom:226.385353px;}
.yfc{bottom:227.888640px;}
.y1ff{bottom:235.797394px;}
.y157{bottom:235.879020px;}
.y84{bottom:238.930110px;}
.ye1{bottom:238.930260px;}
.y2a{bottom:240.496470px;}
.y1d1{bottom:240.500250px;}
.yb8{bottom:242.005800px;}
.ya3{bottom:242.519562px;}
.y183{bottom:244.318033px;}
.yfb{bottom:245.821320px;}
.y1fe{bottom:249.988157px;}
.y156{bottom:253.811700px;}
.y83{bottom:256.862790px;}
.ye0{bottom:256.862940px;}
.y12a{bottom:258.058590px;}
.y29{bottom:258.429150px;}
.y1d0{bottom:258.432930px;}
.y182{bottom:262.250713px;}
.yfa{bottom:263.754000px;}
.y1fd{bottom:264.190875px;}
.y155{bottom:271.744380px;}
.y82{bottom:274.795470px;}
.ydf{bottom:274.795620px;}
.y129{bottom:275.991270px;}
.yb7{bottom:276.068100px;}
.y28{bottom:276.363012px;}
.y1cf{bottom:276.365610px;}
.y1fc{bottom:278.381638px;}
.ya2{bottom:278.683800px;}
.yf9{bottom:281.686680px;}
.y154{bottom:289.677060px;}
.y1fb{bottom:292.584356px;}
.y81{bottom:292.728810px;}
.y128{bottom:293.923950px;}
.y27{bottom:294.295692px;}
.y1ce{bottom:294.298290px;}
.y181{bottom:298.116073px;}
.yf8{bottom:299.619360px;}
.yb6{bottom:306.553800px;}
.y1fa{bottom:306.775119px;}
.y153{bottom:307.609740px;}
.y80{bottom:310.661490px;}
.y127{bottom:311.857830px;}
.y26{bottom:312.228372px;}
.y1cd{bottom:312.230970px;}
.yf7{bottom:317.552040px;}
.y1f9{bottom:320.977837px;}
.y152{bottom:325.542420px;}
.y7f{bottom:328.594170px;}
.y126{bottom:329.790510px;}
.y25{bottom:330.161052px;}
.y1cc{bottom:330.163650px;}
.y180{bottom:332.666370px;}
.y1f8{bottom:335.168601px;}
.yf6{bottom:335.484720px;}
.yb5{bottom:343.464000px;}
.y151{bottom:343.475100px;}
.y7e{bottom:346.526850px;}
.y125{bottom:347.723190px;}
.y24{bottom:348.093732px;}
.y1cb{bottom:348.096330px;}
.y1f7{bottom:349.371319px;}
.y17f{bottom:350.599050px;}
.ya1{bottom:352.747138px;}
.yf5{bottom:353.417400px;}
.yb4{bottom:361.396800px;}
.y150{bottom:361.408650px;}
.y1f6{bottom:363.562082px;}
.y7d{bottom:364.459530px;}
.y124{bottom:365.655870px;}
.y23{bottom:366.026412px;}
.y1ca{bottom:366.029010px;}
.y17e{bottom:368.531730px;}
.yf4{bottom:371.350080px;}
.y1f5{bottom:377.764800px;}
.y14f{bottom:379.341330px;}
.y20{bottom:379.821032px;}
.ya0{bottom:379.821182px;}
.y7c{bottom:382.392210px;}
.y123{bottom:383.588550px;}
.y1c9{bottom:383.961690px;}
.y17d{bottom:386.464410px;}
.yf3{bottom:389.282760px;}
.y1f{bottom:395.960552px;}
.y9f{bottom:395.960702px;}
.y1e{bottom:396.377490px;}
.y9e{bottom:396.377640px;}
.y14e{bottom:397.274010px;}
.y7b{bottom:400.324890px;}
.y122{bottom:401.521230px;}
.y1c8{bottom:401.894370px;}
.y22{bottom:402.190650px;}
.y17c{bottom:404.397090px;}
.yf2{bottom:407.215440px;}
.y1f4{bottom:410.194794px;}
.y1d{bottom:412.100072px;}
.y9d{bottom:412.100222px;}
.y34{bottom:413.011061px;}
.yb3{bottom:413.011211px;}
.y14d{bottom:415.206690px;}
.y7a{bottom:418.257570px;}
.y121{bottom:419.453910px;}
.y1c7{bottom:419.827050px;}
.y17b{bottom:422.329770px;}
.yf1{bottom:425.148120px;}
.y33{bottom:426.448650px;}
.yb2{bottom:426.448800px;}
.y1c{bottom:428.239592px;}
.y9c{bottom:428.239742px;}
.y14c{bottom:433.139370px;}
.y79{bottom:436.190250px;}
.y120{bottom:437.386590px;}
.y1c6{bottom:437.759730px;}
.y17a{bottom:440.262270px;}
.yf0{bottom:443.083122px;}
.y1b{bottom:444.379112px;}
.y9b{bottom:444.379262px;}
.y14b{bottom:451.072050px;}
.y78{bottom:454.122930px;}
.y1f3{bottom:455.026494px;}
.y11f{bottom:455.319270px;}
.y1c5{bottom:455.692410px;}
.y179{bottom:458.188057px;}
.y1a5{bottom:458.193265px;}
.y1a{bottom:460.518632px;}
.y9a{bottom:460.518782px;}
.yef{bottom:461.015802px;}
.y14a{bottom:469.004730px;}
.y77{bottom:472.055610px;}
.y1f2{bottom:472.959174px;}
.y11e{bottom:473.251950px;}
.y1c4{bottom:473.625090px;}
.y178{bottom:476.120737px;}
.y1a4{bottom:476.125945px;}
.y21{bottom:476.265150px;}
.y19{bottom:476.658152px;}
.y99{bottom:476.658302px;}
.y149{bottom:486.937410px;}
.y76{bottom:489.988290px;}
.y1f1{bottom:490.891854px;}
.y11d{bottom:491.184630px;}
.y1c3{bottom:491.557770px;}
.y18{bottom:492.797672px;}
.y98{bottom:492.797822px;}
.y177{bottom:494.053417px;}
.y1a3{bottom:494.058625px;}
.yee{bottom:496.881162px;}
.y9{bottom:502.592250px;}
.y148{bottom:504.870090px;}
.y32{bottom:507.552150px;}
.yb1{bottom:507.552300px;}
.y75{bottom:507.920970px;}
.y17{bottom:508.937192px;}
.y97{bottom:508.937342px;}
.y11c{bottom:509.117310px;}
.y1c2{bottom:509.495230px;}
.y8{bottom:517.592250px;}
.y147{bottom:522.802770px;}
.y16{bottom:525.076712px;}
.y96{bottom:525.076862px;}
.y74{bottom:525.853560px;}
.y11b{bottom:527.049990px;}
.y1f0{bottom:527.056092px;}
.y1c1{bottom:527.427910px;}
.y176{bottom:530.217655px;}
.y1a2{bottom:530.222863px;}
.yed{bottom:533.897202px;}
.y31{bottom:540.319500px;}
.y146{bottom:540.735450px;}
.y15{bottom:541.216232px;}
.y95{bottom:541.216382px;}
.y73{bottom:543.786240px;}
.y45{bottom:544.612650px;}
.y11a{bottom:544.982670px;}
.y1c0{bottom:545.360590px;}
.yec{bottom:551.829882px;}
.y145{bottom:558.668130px;}
.y43{bottom:560.746592px;}
.y72{bottom:561.718920px;}
.y119{bottom:562.915350px;}
.y1bf{bottom:563.293270px;}
.y14{bottom:567.523650px;}
.y94{bottom:567.523800px;}
.yeb{bottom:569.762562px;}
.y1ef{bottom:571.887792px;}
.y175{bottom:573.734292px;}
.y1a1{bottom:573.739500px;}
.y144{bottom:576.600810px;}
.y42{bottom:576.886112px;}
.y71{bottom:579.651600px;}
.y118{bottom:580.848030px;}
.y1be{bottom:581.225950px;}
.y1ee{bottom:589.820472px;}
.y174{bottom:591.666972px;}
.y1a0{bottom:591.672180px;}
.y41{bottom:593.025632px;}
.y143{bottom:594.533490px;}
.y70{bottom:597.584280px;}
.y117{bottom:598.780710px;}
.y1bd{bottom:599.158630px;}
.yea{bottom:605.926800px;}
.y1ed{bottom:607.753152px;}
.y40{bottom:609.165152px;}
.y173{bottom:609.599652px;}
.y19f{bottom:609.604860px;}
.y142{bottom:612.466170px;}
.y6f{bottom:615.516960px;}
.y116{bottom:616.713390px;}
.y1bc{bottom:617.091310px;}
.y3f{bottom:625.304672px;}
.y1ec{bottom:625.685832px;}
.y172{bottom:627.532332px;}
.y19e{bottom:627.537540px;}
.y141{bottom:630.398850px;}
.y13{bottom:630.994650px;}
.y93{bottom:630.994800px;}
.y6e{bottom:633.449640px;}
.y115{bottom:634.646070px;}
.y1bb{bottom:635.023990px;}
.y3e{bottom:641.444192px;}
.y1eb{bottom:643.618512px;}
.y134{bottom:644.765860px;}
.ye9{bottom:644.770082px;}
.y171{bottom:645.465012px;}
.y19d{bottom:645.470220px;}
.y140{bottom:648.331530px;}
.y12{bottom:649.818150px;}
.y92{bottom:649.818300px;}
.y6d{bottom:651.382320px;}
.y114{bottom:652.578750px;}
.y1ba{bottom:652.956670px;}
.y3d{bottom:657.583712px;}
.y133{bottom:658.968579px;}
.ye8{bottom:658.972800px;}
.y1ea{bottom:661.551192px;}
.y170{bottom:663.397692px;}
.y19c{bottom:663.402900px;}
.y13f{bottom:666.264210px;}
.y6c{bottom:669.315270px;}
.yde{bottom:669.315420px;}
.y113{bottom:670.511430px;}
.y1b9{bottom:670.889350px;}
.y3c{bottom:673.723232px;}
.y1e9{bottom:679.483872px;}
.y16f{bottom:681.330372px;}
.y19b{bottom:681.335580px;}
.y11{bottom:683.880450px;}
.y91{bottom:683.880600px;}
.y13e{bottom:684.196890px;}
.y6b{bottom:687.247950px;}
.ydd{bottom:687.248100px;}
.y112{bottom:688.444110px;}
.y1b8{bottom:688.822030px;}
.y1e8{bottom:697.416552px;}
.y16e{bottom:699.263052px;}
.y19a{bottom:699.268260px;}
.y3b{bottom:700.030650px;}
.y13d{bottom:702.129570px;}
.y6a{bottom:705.180630px;}
.ydc{bottom:705.180780px;}
.y111{bottom:706.376790px;}
.y10{bottom:714.366150px;}
.y90{bottom:714.366300px;}
.y1e7{bottom:715.349232px;}
.y16d{bottom:717.195732px;}
.y199{bottom:717.200940px;}
.y13c{bottom:720.062250px;}
.y69{bottom:723.113310px;}
.ydb{bottom:723.113460px;}
.y110{bottom:724.309470px;}
.y1b7{bottom:724.687390px;}
.y1e6{bottom:733.281912px;}
.y16c{bottom:735.128412px;}
.y198{bottom:735.133620px;}
.y13b{bottom:737.994930px;}
.y68{bottom:741.045990px;}
.yda{bottom:741.046140px;}
.y10f{bottom:742.242570px;}
.y1e5{bottom:751.214592px;}
.yf{bottom:751.276350px;}
.y8f{bottom:751.276500px;}
.y16b{bottom:753.061092px;}
.y197{bottom:753.066300px;}
.y13a{bottom:755.927610px;}
.y67{bottom:758.978670px;}
.yd9{bottom:758.978820px;}
.y10e{bottom:760.175250px;}
.y1b6{bottom:762.585120px;}
.y3a{bottom:763.501650px;}
.y1e4{bottom:769.147272px;}
.ye{bottom:769.209150px;}
.y8e{bottom:769.209300px;}
.y139{bottom:773.860290px;}
.y66{bottom:776.911350px;}
.yd8{bottom:776.911500px;}
.y10d{bottom:778.107930px;}
.y1b5{bottom:780.517800px;}
.y39{bottom:782.325150px;}
.y1e3{bottom:787.079952px;}
.y138{bottom:791.792970px;}
.y65{bottom:794.844960px;}
.y10c{bottom:796.040610px;}
.y1e2{bottom:805.012632px;}
.y196{bottom:805.288800px;}
.y16a{bottom:805.290022px;}
.y137{bottom:809.725650px;}
.y64{bottom:812.777640px;}
.y10b{bottom:813.973290px;}
.y38{bottom:816.387450px;}
.yd{bottom:820.823561px;}
.y8d{bottom:820.823711px;}
.y1e1{bottom:822.945312px;}
.y195{bottom:823.221300px;}
.y169{bottom:823.222702px;}
.y1b4{bottom:828.628800px;}
.y63{bottom:830.710320px;}
.yc{bottom:834.261150px;}
.y8c{bottom:834.261300px;}
.y194{bottom:841.153800px;}
.y168{bottom:841.155382px;}
.y37{bottom:846.873150px;}
.y62{bottom:848.642820px;}
.y10a{bottom:849.838650px;}
.y136{bottom:854.802300px;}
.y1b3{bottom:857.220300px;}
.y20b{bottom:857.231789px;}
.y193{bottom:859.086300px;}
.y167{bottom:859.088062px;}
.y1e0{bottom:859.109550px;}
.y1a8{bottom:862.887300px;}
.y1b2{bottom:864.077635px;}
.y61{bottom:866.576070px;}
.y192{bottom:877.018800px;}
.y166{bottom:877.020742px;}
.y1b0{bottom:878.722800px;}
.y36{bottom:883.783350px;}
.y109{bottom:884.508570px;}
.y60{bottom:884.508750px;}
.y191{bottom:894.951300px;}
.y165{bottom:894.953422px;}
.y1ae{bottom:901.083300px;}
.y35{bottom:901.716150px;}
.y108{bottom:902.441250px;}
.y5f{bottom:902.441430px;}
.y1df{bottom:903.941250px;}
.y190{bottom:912.885300px;}
.y164{bottom:912.886102px;}
.yb{bottom:915.364650px;}
.y8b{bottom:915.364800px;}
.y107{bottom:920.373930px;}
.y5e{bottom:920.374110px;}
.y1de{bottom:921.873930px;}
.y18f{bottom:930.817800px;}
.y163{bottom:930.818782px;}
.y1aa{bottom:930.918300px;}
.y1a7{bottom:931.020300px;}
.y106{bottom:938.306610px;}
.y5d{bottom:938.306790px;}
.y1dd{bottom:939.806610px;}
.y1ac{bottom:941.317800px;}
.y20a{bottom:941.322179px;}
.y1ab{bottom:951.256950px;}
.y105{bottom:956.239290px;}
.y5c{bottom:956.239470px;}
.y162{bottom:956.253300px;}
.y1dc{bottom:957.739290px;}
.y1b1{bottom:957.894300px;}
.y3{bottom:961.130850px;}
.y1ad{bottom:966.124800px;}
.y5b{bottom:974.171970px;}
.y1db{bottom:975.671970px;}
.y18e{bottom:978.272432px;}
.y161{bottom:978.273074px;}
.y1af{bottom:988.482300px;}
.y1{bottom:988.999500px;}
.y5a{bottom:992.104650px;}
.y18d{bottom:992.475150px;}
.y160{bottom:992.475792px;}
.y1da{bottom:993.604650px;}
.y1a9{bottom:999.051300px;}
.y59{bottom:1021.993650px;}
.yd7{bottom:1021.993800px;}
.y1d9{bottom:1023.493800px;}
.y15f{bottom:1024.993800px;}
.ye7{bottom:1026.493800px;}
.y135{bottom:1027.993800px;}
.y1a6{bottom:1032.493800px;}
.y2{bottom:1033.378950px;}
.y8a{bottom:1035.561750px;}
.h14{height:24.029952px;}
.hd{height:24.603802px;}
.h30{height:24.675533px;}
.h9{height:32.900573px;}
.h40{height:33.139676px;}
.h4{height:33.328125px;}
.h15{height:34.383011px;}
.h5{height:36.000000px;}
.h17{height:36.744307px;}
.h10{height:36.905702px;}
.hf{height:37.013299px;}
.h39{height:37.063976px;}
.h3b{height:37.064171px;}
.h3a{height:37.064754px;}
.he{height:37.228493px;}
.h8{height:37.257732px;}
.h6{height:37.494141px;}
.h3{height:38.664000px;}
.h28{height:41.006062px;}
.h12{height:41.125613px;}
.h11{height:41.364715px;}
.h1f{height:41.424491px;}
.h31{height:42.033458px;}
.h27{height:42.054406px;}
.h2d{height:42.071291px;}
.h41{height:43.373284px;}
.ha{height:49.351066px;}
.h3e{height:50.470728px;}
.h2c{height:50.478326px;}
.h2f{height:50.479646px;}
.h2a{height:50.480246px;}
.h29{height:50.480560px;}
.h20{height:50.481206px;}
.h21{height:50.481446px;}
.h25{height:50.481806px;}
.h2b{height:50.482166px;}
.h3d{height:50.483846px;}
.h1e{height:50.484206px;}
.h13{height:50.484398px;}
.h1b{height:50.484566px;}
.h22{height:50.485166px;}
.h1c{height:50.485406px;}
.h23{height:50.486006px;}
.h1a{height:50.487566px;}
.h24{height:50.488166px;}
.h1d{height:50.488766px;}
.h19{height:50.490566px;}
.h35{height:50.496586px;}
.h34{height:50.497834px;}
.h33{height:50.517419px;}
.h43{height:55.559784px;}
.h38{height:55.577299px;}
.h3c{height:58.209869px;}
.h42{height:64.414618px;}
.h37{height:64.432133px;}
.hc{height:65.636448px;}
.hb{height:69.913872px;}
.h2{height:74.646000px;}
.h7{height:372.376500px;}
.h16{height:381.187500px;}
.h18{height:1008.307500px;}
.h3f{height:1009.806000px;}
.h32{height:1011.306000px;}
.h26{height:1012.806000px;}
.h2e{height:1014.307500px;}
.h36{height:1023.306000px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w6{width:3.000000px;}
.w3{width:4.500000px;}
.w5{width:6.000000px;}
.w7{width:810.378000px;}
.w2{width:811.878000px;}
.w4{width:813.378000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x38{left:-758.096425px;}
.x29{left:-756.602850px;}
.x74{left:-755.102850px;}
.x2a{left:-753.791884px;}
.x2c{left:-748.123500px;}
.x76{left:-746.882850px;}
.x39{left:-740.170170px;}
.x2b{left:-738.670170px;}
.x75{left:-737.175512px;}
.x28{left:-710.709000px;}
.x23{left:-707.519850px;}
.x2d{left:-701.811273px;}
.x25{left:-697.085850px;}
.x65{left:-664.300350px;}
.x73{left:-650.901000px;}
.x3b{left:-640.225367px;}
.x68{left:-638.901000px;}
.x26{left:-636.800378px;}
.x3c{left:-596.178353px;}
.x37{left:-563.622000px;}
.x46{left:-562.122000px;}
.x64{left:-560.622000px;}
.x69{left:-556.135950px;}
.x20{left:-549.069000px;}
.x21{left:-543.366000px;}
.x47{left:-529.077000px;}
.x27{left:-523.595850px;}
.x6b{left:-455.938500px;}
.x24{left:-451.493264px;}
.x6a{left:-449.689350px;}
.x66{left:-366.661350px;}
.x6e{left:-355.480500px;}
.x6c{left:-318.085350px;}
.x6d{left:-311.838000px;}
.x22{left:-221.461631px;}
.x71{left:-219.905863px;}
.x70{left:-215.978100px;}
.x6f{left:-213.736500px;}
.x3a{left:-193.088935px;}
.x72{left:-180.538884px;}
.x67{left:-154.063500px;}
.x0{left:0.000000px;}
.x31{left:3.000000px;}
.x7{left:4.500000px;}
.x4f{left:6.000000px;}
.x5{left:56.125950px;}
.x2e{left:57.225000px;}
.x4{left:58.251900px;}
.x11{left:59.774850px;}
.x6{left:61.689000px;}
.x1c{left:63.754500px;}
.x13{left:68.254500px;}
.x5e{left:69.495000px;}
.x77{left:70.680000px;}
.x1b{left:73.207680px;}
.x2f{left:75.157500px;}
.x32{left:76.207680px;}
.x12{left:77.707680px;}
.x1e{left:79.657350px;}
.x79{left:87.130286px;}
.x62{left:90.130136px;}
.x10{left:101.169000px;}
.xb{left:104.358000px;}
.x19{left:105.669000px;}
.x15{left:108.858000px;}
.x14{left:110.065452px;}
.x60{left:112.031971px;}
.xd{left:114.792000px;}
.x17{left:119.292000px;}
.x7a{left:139.601440px;}
.x63{left:142.601290px;}
.x30{left:146.406398px;}
.x1f{left:150.906398px;}
.x50{left:152.077500px;}
.x78{left:163.691067px;}
.x5d{left:165.477000px;}
.x61{left:166.690917px;}
.xe{left:175.077472px;}
.x34{left:176.152483px;}
.x53{left:177.477000px;}
.x18{left:179.577472px;}
.x4a{left:215.265000px;}
.x35{left:220.199647px;}
.x43{left:224.734287px;}
.x40{left:229.023187px;}
.x4c{left:234.931500px;}
.x2{left:236.123100px;}
.x4d{left:237.412500px;}
.x42{left:239.439085px;}
.x49{left:240.744000px;}
.x44{left:241.919772px;}
.x4b{left:243.651000px;}
.x3f{left:245.237318px;}
.x41{left:248.151379px;}
.x3{left:250.266900px;}
.x54{left:260.242500px;}
.x8{left:262.809000px;}
.x9{left:268.512000px;}
.x3d{left:282.801000px;}
.xf{left:288.282000px;}
.x1{left:292.179600px;}
.xc{left:360.384586px;}
.x16{left:364.884586px;}
.x55{left:366.688500px;}
.x48{left:374.052000px;}
.x3e{left:378.551850px;}
.x4e{left:446.763368px;}
.x51{left:449.716500px;}
.x45{left:451.263218px;}
.x58{left:460.897500px;}
.x56{left:498.292500px;}
.x57{left:504.540000px;}
.xa{left:590.416369px;}
.x1a{left:593.527350px;}
.x5b{left:596.471987px;}
.x5a{left:600.398850px;}
.x59{left:602.641350px;}
.x33{left:623.288915px;}
.x5c{left:635.830350px;}
.x52{left:662.314500px;}
.x36{left:810.378000px;}
.x1d{left:811.878000px;}
.x5f{left:813.378000px;}
@media print{
.v2{vertical-align:-25.077333pt;}
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.317723pt;}
.v9{vertical-align:9.309077pt;}
.v6{vertical-align:15.447887pt;}
.v7{vertical-align:16.501333pt;}
.v4{vertical-align:19.285824pt;}
.v1{vertical-align:25.077333pt;}
.v8{vertical-align:35.339200pt;}
.ls1c{letter-spacing:-0.717312pt;}
.lsb{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.657067pt;}
.ls3{letter-spacing:10.626800pt;}
.ls1{letter-spacing:11.955200pt;}
.ls16{letter-spacing:11.971569pt;}
.ls18{letter-spacing:11.971631pt;}
.ls17{letter-spacing:11.971820pt;}
.ls13{letter-spacing:13.283467pt;}
.ls6{letter-spacing:14.522667pt;}
.lsd{letter-spacing:14.523200pt;}
.ls5{letter-spacing:14.688000pt;}
.lsc{letter-spacing:14.688533pt;}
.ls10{letter-spacing:15.941333pt;}
.ls8{letter-spacing:15.941867pt;}
.ls14{letter-spacing:17.488533pt;}
.ls12{letter-spacing:17.489067pt;}
.lsa{letter-spacing:18.229867pt;}
.ls9{letter-spacing:18.235200pt;}
.ls19{letter-spacing:18.315366pt;}
.ls2{letter-spacing:18.600269pt;}
.ls11{letter-spacing:19.125867pt;}
.ls7{letter-spacing:19.552000pt;}
.lse{letter-spacing:19.552533pt;}
.ls1f{letter-spacing:20.203200pt;}
.ls1b{letter-spacing:20.203733pt;}
.lsf{letter-spacing:21.189867pt;}
.ls1e{letter-spacing:26.821867pt;}
.ls1a{letter-spacing:26.822400pt;}
.ls1d{letter-spacing:275.795200pt;}
.ls15{letter-spacing:275.795733pt;}
.ls4{letter-spacing:691.507130pt;}
.ws1{word-spacing:-13.344000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws0{word-spacing:-0.088000pt;}
.ws32{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.048352pt;}
.ws5{word-spacing:-0.042507pt;}
.ws46{word-spacing:-0.037194pt;}
.wsb0{word-spacing:-0.031881pt;}
.ws48{word-spacing:0.000000pt;}
.wsa1{word-spacing:0.669491pt;}
.ws86{word-spacing:9.054034pt;}
.ws84{word-spacing:9.479106pt;}
.wsb{word-spacing:9.659802pt;}
.ws85{word-spacing:9.904178pt;}
.wsb8{word-spacing:9.989192pt;}
.ws3f{word-spacing:10.042301pt;}
.wsaf{word-spacing:10.286742pt;}
.wsb3{word-spacing:10.361104pt;}
.ws95{word-spacing:10.414238pt;}
.ws88{word-spacing:10.456771pt;}
.ws79{word-spacing:10.467372pt;}
.wsa5{word-spacing:10.520506pt;}
.ws4{word-spacing:10.584293pt;}
.ws6f{word-spacing:10.945577pt;}
.ws90{word-spacing:10.998710pt;}
.wsb1{word-spacing:11.104978pt;}
.wsa8{word-spacing:11.211246pt;}
.wsc2{word-spacing:11.217650pt;}
.wsba{word-spacing:11.221901pt;}
.wsb9{word-spacing:11.264408pt;}
.ws73{word-spacing:11.423781pt;}
.ws8d{word-spacing:11.476915pt;}
.ws2b{word-spacing:11.530049pt;}
.ws52{word-spacing:11.689451pt;}
.ws99{word-spacing:11.708386pt;}
.ws87{word-spacing:11.708919pt;}
.ws63{word-spacing:11.742585pt;}
.ws18{word-spacing:11.795718pt;}
.ws7a{word-spacing:11.848852pt;}
.ws1c{word-spacing:11.901986pt;}
.ws12{word-spacing:11.907379pt;}
.ws9f{word-spacing:11.923745pt;}
.ws9e{word-spacing:11.923932pt;}
.ws1b{word-spacing:11.955120pt;}
.ws11{word-spacing:11.955200pt;}
.wsbb{word-spacing:11.987030pt;}
.wsa9{word-spacing:12.061388pt;}
.ws43{word-spacing:12.114522pt;}
.ws10{word-spacing:12.146483pt;}
.ws36{word-spacing:12.167655pt;}
.wsad{word-spacing:12.199566pt;}
.ws7d{word-spacing:12.220789pt;}
.ws44{word-spacing:12.273923pt;}
.ws8c{word-spacing:12.380191pt;}
.ws37{word-spacing:12.433325pt;}
.ws1a{word-spacing:12.539593pt;}
.ws3{word-spacing:12.583925pt;}
.ws25{word-spacing:12.592726pt;}
.ws4a{word-spacing:12.624638pt;}
.ws75{word-spacing:12.645860pt;}
.ws60{word-spacing:12.698994pt;}
.wsa3{word-spacing:12.752128pt;}
.wsb6{word-spacing:12.805262pt;}
.ws35{word-spacing:12.858396pt;}
.ws7f{word-spacing:12.964663pt;}
.ws94{word-spacing:13.017797pt;}
.ws77{word-spacing:13.070931pt;}
.ws96{word-spacing:13.124065pt;}
.ws22{word-spacing:13.134725pt;}
.ws61{word-spacing:13.177199pt;}
.wsbd{word-spacing:13.177232pt;}
.wsb7{word-spacing:13.225019pt;}
.ws1d{word-spacing:13.230333pt;}
.ws98{word-spacing:13.283467pt;}
.ws45{word-spacing:13.336601pt;}
.wsbc{word-spacing:13.347261pt;}
.ws15{word-spacing:13.389734pt;}
.ws50{word-spacing:13.442868pt;}
.ws82{word-spacing:13.496002pt;}
.ws69{word-spacing:13.549136pt;}
.wsc{word-spacing:13.628928pt;}
.ws81{word-spacing:13.655404pt;}
.wsa7{word-spacing:13.708538pt;}
.wsa{word-spacing:13.724570pt;}
.ws4c{word-spacing:13.761671pt;}
.ws28{word-spacing:13.814805pt;}
.wse{word-spacing:13.820211pt;}
.ws56{word-spacing:13.867939pt;}
.ws3b{word-spacing:13.921073pt;}
.ws54{word-spacing:13.974207pt;}
.ws5e{word-spacing:14.027341pt;}
.wsa4{word-spacing:14.080475pt;}
.ws2c{word-spacing:14.133609pt;}
.ws19{word-spacing:14.239876pt;}
.ws38{word-spacing:14.293010pt;}
.wsab{word-spacing:14.346144pt;}
.ws6d{word-spacing:14.399278pt;}
.ws55{word-spacing:14.452412pt;}
.ws57{word-spacing:14.505546pt;}
.ws3e{word-spacing:14.558679pt;}
.ws42{word-spacing:14.611813pt;}
.ws66{word-spacing:14.664947pt;}
.ws83{word-spacing:14.718081pt;}
.ws70{word-spacing:14.771215pt;}
.ws62{word-spacing:14.824349pt;}
.wsae{word-spacing:14.855586pt;}
.ws6b{word-spacing:14.877483pt;}
.ws5b{word-spacing:14.930617pt;}
.ws40{word-spacing:15.036884pt;}
.ws26{word-spacing:15.090018pt;}
.ws2f{word-spacing:15.143152pt;}
.ws6e{word-spacing:15.196286pt;}
.ws7e{word-spacing:15.249420pt;}
.ws27{word-spacing:15.302554pt;}
.ws2e{word-spacing:15.355687pt;}
.ws41{word-spacing:15.408821pt;}
.ws6a{word-spacing:15.461955pt;}
.ws16{word-spacing:15.515089pt;}
.ws4b{word-spacing:15.568223pt;}
.ws93{word-spacing:15.621357pt;}
.ws67{word-spacing:15.674491pt;}
.ws65{word-spacing:15.727625pt;}
.wsa6{word-spacing:15.780758pt;}
.ws53{word-spacing:15.833892pt;}
.ws6{word-spacing:15.876506pt;}
.wsa2{word-spacing:15.876673pt;}
.wsc1{word-spacing:15.877206pt;}
.ws7b{word-spacing:15.887026pt;}
.ws78{word-spacing:15.940160pt;}
.ws74{word-spacing:15.993294pt;}
.ws47{word-spacing:16.046428pt;}
.ws30{word-spacing:16.099562pt;}
.ws80{word-spacing:16.152695pt;}
.ws6c{word-spacing:16.205829pt;}
.ws51{word-spacing:16.258963pt;}
.ws2d{word-spacing:16.312097pt;}
.ws5d{word-spacing:16.365231pt;}
.ws5a{word-spacing:16.418365pt;}
.wsd{word-spacing:16.498176pt;}
.ws29{word-spacing:16.577766pt;}
.wsf{word-spacing:16.593818pt;}
.wsb5{word-spacing:16.630900pt;}
.ws3c{word-spacing:16.684034pt;}
.ws33{word-spacing:16.737168pt;}
.ws2a{word-spacing:16.843436pt;}
.ws39{word-spacing:17.055971pt;}
.ws59{word-spacing:17.162239pt;}
.ws8{word-spacing:17.199459pt;}
.ws58{word-spacing:17.215373pt;}
.ws5f{word-spacing:17.268507pt;}
.wsaa{word-spacing:17.534176pt;}
.ws8f{word-spacing:17.587310pt;}
.ws97{word-spacing:17.693578pt;}
.ws76{word-spacing:17.746711pt;}
.ws21{word-spacing:17.799845pt;}
.ws8e{word-spacing:17.906113pt;}
.ws64{word-spacing:17.959247pt;}
.ws7c{word-spacing:18.224916pt;}
.ws34{word-spacing:18.278050pt;}
.ws9c{word-spacing:18.295586pt;}
.wsbf{word-spacing:18.297186pt;}
.wsc0{word-spacing:18.297719pt;}
.wsbe{word-spacing:18.298253pt;}
.wsa0{word-spacing:18.300919pt;}
.ws4f{word-spacing:18.490586pt;}
.ws5c{word-spacing:18.543719pt;}
.ws17{word-spacing:18.649987pt;}
.ws91{word-spacing:18.756255pt;}
.ws4d{word-spacing:19.021924pt;}
.ws4e{word-spacing:19.075058pt;}
.ws3d{word-spacing:19.181326pt;}
.wsb2{word-spacing:19.287594pt;}
.wsac{word-spacing:19.393861pt;}
.ws23{word-spacing:19.468298pt;}
.wsb4{word-spacing:19.553263pt;}
.ws31{word-spacing:19.712665pt;}
.ws3a{word-spacing:19.724940pt;}
.ws1f{word-spacing:20.297137pt;}
.ws72{word-spacing:20.403405pt;}
.ws8b{word-spacing:20.562806pt;}
.ws71{word-spacing:20.669074pt;}
.ws68{word-spacing:20.881610pt;}
.ws20{word-spacing:21.253547pt;}
.ws9a{word-spacing:21.425206pt;}
.ws92{word-spacing:21.425740pt;}
.ws1e{word-spacing:22.103689pt;}
.ws7{word-spacing:22.491672pt;}
.ws14{word-spacing:26.513799pt;}
.ws49{word-spacing:27.952508pt;}
.ws13{word-spacing:27.953041pt;}
.ws24{word-spacing:27.954790pt;}
.ws9d{word-spacing:139.305634pt;}
.ws89{word-spacing:230.707249pt;}
.ws9b{word-spacing:275.742599pt;}
.ws8a{word-spacing:313.011609pt;}
._7{margin-left:-17.682995pt;}
._2{margin-left:-6.211200pt;}
._4{margin-left:-5.100885pt;}
._1{margin-left:-3.542400pt;}
._3{margin-left:-2.621144pt;}
._0{margin-left:-1.592800pt;}
._6{width:3.052347pt;}
._10{width:4.794635pt;}
._15{width:5.797579pt;}
._12{width:10.626800pt;}
._19{width:12.486459pt;}
._f{width:13.518378pt;}
._9{width:14.662592pt;}
._b{width:15.652115pt;}
._17{width:16.789086pt;}
._a{width:18.241034pt;}
._1e{width:19.213254pt;}
._8{width:20.150931pt;}
._13{width:21.412948pt;}
._d{width:22.741295pt;}
._1f{width:23.643355pt;}
._21{width:24.829884pt;}
._14{width:26.035595pt;}
._32{width:27.098272pt;}
._5{width:28.001680pt;}
._c{width:28.937298pt;}
._18{width:30.975828pt;}
._e{width:32.836730pt;}
._20{width:34.680787pt;}
._16{width:36.605586pt;}
._11{width:38.185206pt;}
._26{width:118.754226pt;}
._2c{width:127.040643pt;}
._2b{width:143.886511pt;}
._27{width:156.638639pt;}
._28{width:194.629354pt;}
._29{width:214.182617pt;}
._24{width:221.567008pt;}
._2d{width:236.392573pt;}
._2e{width:269.813775pt;}
._2f{width:289.579573pt;}
._22{width:294.892960pt;}
._23{width:296.221307pt;}
._30{width:301.694095pt;}
._25{width:323.744650pt;}
._2a{width:353.338997pt;}
._1b{width:402.799467pt;}
._1c{width:674.981333pt;}
._1d{width:691.504690pt;}
._1a{width:738.981333pt;}
._31{width:880.520533pt;}
.fs9{font-size:31.880533pt;}
.fsc{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:45.429333pt;}
.fsa{font-size:47.820800pt;}
.fsd{font-size:47.886275pt;}
.fsf{font-size:47.886526pt;}
.fse{font-size:47.887278pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:48.352000pt;}
.fsb{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs7{font-size:69.074133pt;}
.fs0{font-size:88.000000pt;}
.fs6{font-size:90.328000pt;}
.y58{bottom:-386.183984pt;}
.yd6{bottom:-386.183851pt;}
.y57{bottom:-372.900484pt;}
.yd5{bottom:-372.900351pt;}
.y56{bottom:-347.608700pt;}
.yd4{bottom:-347.608567pt;}
.y55{bottom:-330.466533pt;}
.yd3{bottom:-330.466400pt;}
.y54{bottom:-290.389680pt;}
.yd2{bottom:-290.389547pt;}
.y53{bottom:-274.449520pt;}
.yd1{bottom:-274.449387pt;}
.y52{bottom:-258.509360pt;}
.yd0{bottom:-258.509227pt;}
.y51{bottom:-242.569200pt;}
.ycf{bottom:-242.569067pt;}
.y50{bottom:-226.627989pt;}
.yce{bottom:-226.627856pt;}
.y4f{bottom:-210.687829pt;}
.ycd{bottom:-210.687696pt;}
.y4e{bottom:-194.747669pt;}
.ycc{bottom:-194.747536pt;}
.y4d{bottom:-178.807509pt;}
.ycb{bottom:-178.807376pt;}
.y4c{bottom:-162.867349pt;}
.yca{bottom:-162.867216pt;}
.y4b{bottom:-146.927189pt;}
.yc9{bottom:-146.927056pt;}
.y4a{bottom:-114.781200pt;}
.yc8{bottom:-114.781067pt;}
.yc7{bottom:-48.946989pt;}
.y49{bottom:-48.942164pt;}
.y7{bottom:-28.346400pt;}
.yc6{bottom:-24.881171pt;}
.y48{bottom:-24.876347pt;}
.y30{bottom:-23.684700pt;}
.yb0{bottom:-23.683851pt;}
.yc5{bottom:-10.534931pt;}
.y47{bottom:-10.530107pt;}
.y2f{bottom:-10.401200pt;}
.yaf{bottom:-10.400351pt;}
.yc4{bottom:-10.164320pt;}
.y46{bottom:-10.159495pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:3.811309pt;}
.y44{bottom:3.816133pt;}
.yae{bottom:14.891433pt;}
.yc2{bottom:18.157549pt;}
.yad{bottom:32.033600pt;}
.yc1{bottom:32.503789pt;}
.yc0{bottom:46.850029pt;}
.y6{bottom:60.591867pt;}
.ybf{bottom:61.196269pt;}
.y132{bottom:71.046491pt;}
.yac{bottom:72.110453pt;}
.y5{bottom:72.591867pt;}
.y18c{bottom:73.712080pt;}
.y104{bottom:75.046400pt;}
.ybe{bottom:75.542509pt;}
.y15e{bottom:76.378950pt;}
.y1d8{bottom:80.378950pt;}
.y209{bottom:83.404433pt;}
.y4{bottom:84.591867pt;}
.y131{bottom:86.986651pt;}
.yab{bottom:88.050613pt;}
.y15d{bottom:88.992962pt;}
.y18b{bottom:89.652240pt;}
.ybd{bottom:89.888749pt;}
.y103{bottom:90.986560pt;}
.y1d7{bottom:92.992962pt;}
.y208{bottom:96.018445pt;}
.y130{bottom:102.926811pt;}
.yaa{bottom:103.990773pt;}
.ybc{bottom:104.234989pt;}
.y15c{bottom:105.474933pt;}
.y18a{bottom:105.592400pt;}
.y102{bottom:106.926720pt;}
.y207{bottom:108.643083pt;}
.y1d6{bottom:109.474933pt;}
.ya{bottom:109.784000pt;}
.ybb{bottom:118.581229pt;}
.y12f{bottom:118.866971pt;}
.ya9{bottom:119.930933pt;}
.y206{bottom:121.257095pt;}
.y189{bottom:121.530625pt;}
.y101{bottom:122.866880pt;}
.y2e{bottom:124.675300pt;}
.y89{bottom:132.680987pt;}
.ye6{bottom:132.681120pt;}
.y205{bottom:133.881733pt;}
.y12e{bottom:134.807131pt;}
.ya8{bottom:135.872144pt;}
.y188{bottom:137.470785pt;}
.y100{bottom:138.807040pt;}
.y2d{bottom:141.817467pt;}
.yba{bottom:141.965600pt;}
.y15b{bottom:145.909600pt;}
.y204{bottom:146.495745pt;}
.y88{bottom:148.621147pt;}
.ye5{bottom:148.621280pt;}
.y1d5{bottom:150.017360pt;}
.y12d{bottom:150.747291pt;}
.ya7{bottom:151.812304pt;}
.y187{bottom:153.410945pt;}
.yff{bottom:154.747200pt;}
.y203{bottom:159.120383pt;}
.y15a{bottom:161.849760pt;}
.y87{bottom:164.561307pt;}
.ye4{bottom:164.561440pt;}
.y1d4{bottom:165.957520pt;}
.y12c{bottom:166.687451pt;}
.ya6{bottom:167.752464pt;}
.y186{bottom:169.351105pt;}
.yfe{bottom:170.687360pt;}
.y202{bottom:171.734395pt;}
.y159{bottom:177.789920pt;}
.y86{bottom:180.502000pt;}
.ye3{bottom:180.502133pt;}
.y2c{bottom:181.894320pt;}
.y1d3{bottom:181.897680pt;}
.ya5{bottom:183.692624pt;}
.y201{bottom:184.359033pt;}
.y185{bottom:185.291265pt;}
.yfd{bottom:186.627520pt;}
.y158{bottom:193.730080pt;}
.y85{bottom:196.442160pt;}
.ye2{bottom:196.442293pt;}
.y200{bottom:196.973045pt;}
.y2b{bottom:197.834480pt;}
.y1d2{bottom:197.837840pt;}
.yb9{bottom:198.384267pt;}
.y12b{bottom:198.567771pt;}
.ya4{bottom:199.632784pt;}
.y184{bottom:201.231425pt;}
.yfc{bottom:202.567680pt;}
.y1ff{bottom:209.597683pt;}
.y157{bottom:209.670240pt;}
.y84{bottom:212.382320pt;}
.ye1{bottom:212.382453pt;}
.y2a{bottom:213.774640pt;}
.y1d1{bottom:213.778000pt;}
.yb8{bottom:215.116267pt;}
.ya3{bottom:215.572944pt;}
.y183{bottom:217.171585pt;}
.yfb{bottom:218.507840pt;}
.y1fe{bottom:222.211695pt;}
.y156{bottom:225.610400pt;}
.y83{bottom:228.322480pt;}
.ye0{bottom:228.322613pt;}
.y12a{bottom:229.385413pt;}
.y29{bottom:229.714800pt;}
.y1d0{bottom:229.718160pt;}
.y182{bottom:233.111745pt;}
.yfa{bottom:234.448000pt;}
.y1fd{bottom:234.836333pt;}
.y155{bottom:241.550560pt;}
.y82{bottom:244.262640pt;}
.ydf{bottom:244.262773pt;}
.y129{bottom:245.325573pt;}
.yb7{bottom:245.393867pt;}
.y28{bottom:245.656011pt;}
.y1cf{bottom:245.658320pt;}
.y1fc{bottom:247.450345pt;}
.ya2{bottom:247.718933pt;}
.yf9{bottom:250.388160pt;}
.y154{bottom:257.490720pt;}
.y1fb{bottom:260.074983pt;}
.y81{bottom:260.203387pt;}
.y128{bottom:261.265733pt;}
.y27{bottom:261.596171pt;}
.y1ce{bottom:261.598480pt;}
.y181{bottom:264.992065pt;}
.yf8{bottom:266.328320pt;}
.yb6{bottom:272.492267pt;}
.y1fa{bottom:272.688995pt;}
.y153{bottom:273.430880pt;}
.y80{bottom:276.143547pt;}
.y127{bottom:277.206960pt;}
.y26{bottom:277.536331pt;}
.y1cd{bottom:277.538640pt;}
.yf7{bottom:282.268480pt;}
.y1f9{bottom:285.313633pt;}
.y152{bottom:289.371040pt;}
.y7f{bottom:292.083707pt;}
.y126{bottom:293.147120pt;}
.y25{bottom:293.476491pt;}
.y1cc{bottom:293.478800pt;}
.y180{bottom:295.703440pt;}
.y1f8{bottom:297.927645pt;}
.yf6{bottom:298.208640pt;}
.yb5{bottom:305.301333pt;}
.y151{bottom:305.311200pt;}
.y7e{bottom:308.023867pt;}
.y125{bottom:309.087280pt;}
.y24{bottom:309.416651pt;}
.y1cb{bottom:309.418960pt;}
.y1f7{bottom:310.552283pt;}
.y17f{bottom:311.643600pt;}
.ya1{bottom:313.553011pt;}
.yf5{bottom:314.148800pt;}
.yb4{bottom:321.241600pt;}
.y150{bottom:321.252133pt;}
.y1f6{bottom:323.166295pt;}
.y7d{bottom:323.964027pt;}
.y124{bottom:325.027440pt;}
.y23{bottom:325.356811pt;}
.y1ca{bottom:325.359120pt;}
.y17e{bottom:327.583760pt;}
.yf4{bottom:330.088960pt;}
.y1f5{bottom:335.790933pt;}
.y14f{bottom:337.192293pt;}
.y20{bottom:337.618695pt;}
.ya0{bottom:337.618829pt;}
.y7c{bottom:339.904187pt;}
.y123{bottom:340.967600pt;}
.y1c9{bottom:341.299280pt;}
.y17d{bottom:343.523920pt;}
.yf3{bottom:346.029120pt;}
.y1f{bottom:351.964935pt;}
.y9f{bottom:351.965069pt;}
.y1e{bottom:352.335547pt;}
.y9e{bottom:352.335680pt;}
.y14e{bottom:353.132453pt;}
.y7b{bottom:355.844347pt;}
.y122{bottom:356.907760pt;}
.y1c8{bottom:357.239440pt;}
.y22{bottom:357.502800pt;}
.y17c{bottom:359.464080pt;}
.yf2{bottom:361.969280pt;}
.y1f4{bottom:364.617595pt;}
.y1d{bottom:366.311175pt;}
.y9d{bottom:366.311309pt;}
.y34{bottom:367.120943pt;}
.yb3{bottom:367.121077pt;}
.y14d{bottom:369.072613pt;}
.y7a{bottom:371.784507pt;}
.y121{bottom:372.847920pt;}
.y1c7{bottom:373.179600pt;}
.y17b{bottom:375.404240pt;}
.yf1{bottom:377.909440pt;}
.y33{bottom:379.065467pt;}
.yb2{bottom:379.065600pt;}
.y1c{bottom:380.657415pt;}
.y9c{bottom:380.657549pt;}
.y14c{bottom:385.012773pt;}
.y79{bottom:387.724667pt;}
.y120{bottom:388.788080pt;}
.y1c6{bottom:389.119760pt;}
.y17a{bottom:391.344240pt;}
.yf0{bottom:393.851664pt;}
.y1b{bottom:395.003655pt;}
.y9b{bottom:395.003789pt;}
.y14b{bottom:400.952933pt;}
.y78{bottom:403.664827pt;}
.y1f3{bottom:404.467995pt;}
.y11f{bottom:404.728240pt;}
.y1c5{bottom:405.059920pt;}
.y179{bottom:407.278273pt;}
.y1a5{bottom:407.282902pt;}
.y1a{bottom:409.349895pt;}
.y9a{bottom:409.350029pt;}
.yef{bottom:409.791824pt;}
.y14a{bottom:416.893093pt;}
.y77{bottom:419.604987pt;}
.y1f2{bottom:420.408155pt;}
.y11e{bottom:420.668400pt;}
.y1c4{bottom:421.000080pt;}
.y178{bottom:423.218433pt;}
.y1a4{bottom:423.223062pt;}
.y21{bottom:423.346800pt;}
.y19{bottom:423.696135pt;}
.y99{bottom:423.696269pt;}
.y149{bottom:432.833253pt;}
.y76{bottom:435.545147pt;}
.y1f1{bottom:436.348315pt;}
.y11d{bottom:436.608560pt;}
.y1c3{bottom:436.940240pt;}
.y18{bottom:438.042375pt;}
.y98{bottom:438.042509pt;}
.y177{bottom:439.158593pt;}
.y1a3{bottom:439.163222pt;}
.yee{bottom:441.672144pt;}
.y9{bottom:446.748667pt;}
.y148{bottom:448.773413pt;}
.y32{bottom:451.157467pt;}
.yb1{bottom:451.157600pt;}
.y75{bottom:451.485307pt;}
.y17{bottom:452.388615pt;}
.y97{bottom:452.388749pt;}
.y11c{bottom:452.548720pt;}
.y1c2{bottom:452.884649pt;}
.y8{bottom:460.082000pt;}
.y147{bottom:464.713573pt;}
.y16{bottom:466.734855pt;}
.y96{bottom:466.734989pt;}
.y74{bottom:467.425387pt;}
.y11b{bottom:468.488880pt;}
.y1f0{bottom:468.494304pt;}
.y1c1{bottom:468.824809pt;}
.y176{bottom:471.304582pt;}
.y1a2{bottom:471.309212pt;}
.yed{bottom:474.575291pt;}
.y31{bottom:480.284000pt;}
.y146{bottom:480.653733pt;}
.y15{bottom:481.081095pt;}
.y95{bottom:481.081229pt;}
.y73{bottom:483.365547pt;}
.y45{bottom:484.100133pt;}
.y11a{bottom:484.429040pt;}
.y1c0{bottom:484.764969pt;}
.yec{bottom:490.515451pt;}
.y145{bottom:496.593893pt;}
.y43{bottom:498.441415pt;}
.y72{bottom:499.305707pt;}
.y119{bottom:500.369200pt;}
.y1bf{bottom:500.705129pt;}
.y14{bottom:504.465467pt;}
.y94{bottom:504.465600pt;}
.yeb{bottom:506.455611pt;}
.y1ef{bottom:508.344704pt;}
.y175{bottom:509.986037pt;}
.y1a1{bottom:509.990667pt;}
.y144{bottom:512.534053pt;}
.y42{bottom:512.787655pt;}
.y71{bottom:515.245867pt;}
.y118{bottom:516.309360pt;}
.y1be{bottom:516.645289pt;}
.y1ee{bottom:524.284864pt;}
.y174{bottom:525.926197pt;}
.y1a0{bottom:525.930827pt;}
.y41{bottom:527.133895pt;}
.y143{bottom:528.474213pt;}
.y70{bottom:531.186027pt;}
.y117{bottom:532.249520pt;}
.y1bd{bottom:532.585449pt;}
.yea{bottom:538.601600pt;}
.y1ed{bottom:540.225024pt;}
.y40{bottom:541.480135pt;}
.y173{bottom:541.866357pt;}
.y19f{bottom:541.870987pt;}
.y142{bottom:544.414373pt;}
.y6f{bottom:547.126187pt;}
.y116{bottom:548.189680pt;}
.y1bc{bottom:548.525609pt;}
.y3f{bottom:555.826375pt;}
.y1ec{bottom:556.165184pt;}
.y172{bottom:557.806517pt;}
.y19e{bottom:557.811147pt;}
.y141{bottom:560.354533pt;}
.y13{bottom:560.884133pt;}
.y93{bottom:560.884267pt;}
.y6e{bottom:563.066347pt;}
.y115{bottom:564.129840pt;}
.y1bb{bottom:564.465769pt;}
.y3e{bottom:570.172615pt;}
.y1eb{bottom:572.105344pt;}
.y134{bottom:573.125209pt;}
.ye9{bottom:573.128962pt;}
.y171{bottom:573.746677pt;}
.y19d{bottom:573.751307pt;}
.y140{bottom:576.294693pt;}
.y12{bottom:577.616133pt;}
.y92{bottom:577.616267pt;}
.y6d{bottom:579.006507pt;}
.y114{bottom:580.070000pt;}
.y1ba{bottom:580.405929pt;}
.y3d{bottom:584.518855pt;}
.y133{bottom:585.749848pt;}
.ye8{bottom:585.753600pt;}
.y1ea{bottom:588.045504pt;}
.y170{bottom:589.686837pt;}
.y19c{bottom:589.691467pt;}
.y13f{bottom:592.234853pt;}
.y6c{bottom:594.946907pt;}
.yde{bottom:594.947040pt;}
.y113{bottom:596.010160pt;}
.y1b9{bottom:596.346089pt;}
.y3c{bottom:598.865095pt;}
.y1e9{bottom:603.985664pt;}
.y16f{bottom:605.626997pt;}
.y19b{bottom:605.631627pt;}
.y11{bottom:607.893733pt;}
.y91{bottom:607.893867pt;}
.y13e{bottom:608.175013pt;}
.y6b{bottom:610.887067pt;}
.ydd{bottom:610.887200pt;}
.y112{bottom:611.950320pt;}
.y1b8{bottom:612.286249pt;}
.y1e8{bottom:619.925824pt;}
.y16e{bottom:621.567157pt;}
.y19a{bottom:621.571787pt;}
.y3b{bottom:622.249467pt;}
.y13d{bottom:624.115173pt;}
.y6a{bottom:626.827227pt;}
.ydc{bottom:626.827360pt;}
.y111{bottom:627.890480pt;}
.y10{bottom:634.992133pt;}
.y90{bottom:634.992267pt;}
.y1e7{bottom:635.865984pt;}
.y16d{bottom:637.507317pt;}
.y199{bottom:637.511947pt;}
.y13c{bottom:640.055333pt;}
.y69{bottom:642.767387pt;}
.ydb{bottom:642.767520pt;}
.y110{bottom:643.830640pt;}
.y1b7{bottom:644.166569pt;}
.y1e6{bottom:651.806144pt;}
.y16c{bottom:653.447477pt;}
.y198{bottom:653.452107pt;}
.y13b{bottom:655.995493pt;}
.y68{bottom:658.707547pt;}
.yda{bottom:658.707680pt;}
.y10f{bottom:659.771173pt;}
.y1e5{bottom:667.746304pt;}
.yf{bottom:667.801200pt;}
.y8f{bottom:667.801333pt;}
.y16b{bottom:669.387637pt;}
.y197{bottom:669.392267pt;}
.y13a{bottom:671.935653pt;}
.y67{bottom:674.647707pt;}
.yd9{bottom:674.647840pt;}
.y10e{bottom:675.711333pt;}
.y1b6{bottom:677.853440pt;}
.y3a{bottom:678.668133pt;}
.y1e4{bottom:683.686464pt;}
.ye{bottom:683.741467pt;}
.y8e{bottom:683.741600pt;}
.y139{bottom:687.875813pt;}
.y66{bottom:690.587867pt;}
.yd8{bottom:690.588000pt;}
.y10d{bottom:691.651493pt;}
.y1b5{bottom:693.793600pt;}
.y39{bottom:695.400133pt;}
.y1e3{bottom:699.626624pt;}
.y138{bottom:703.815973pt;}
.y65{bottom:706.528853pt;}
.y10c{bottom:707.591653pt;}
.y1e2{bottom:715.566784pt;}
.y196{bottom:715.812267pt;}
.y16a{bottom:715.813353pt;}
.y137{bottom:719.756133pt;}
.y64{bottom:722.469013pt;}
.y10b{bottom:723.531813pt;}
.y38{bottom:725.677733pt;}
.yd{bottom:729.620943pt;}
.y8d{bottom:729.621077pt;}
.y1e1{bottom:731.506944pt;}
.y195{bottom:731.752267pt;}
.y169{bottom:731.753513pt;}
.y1b4{bottom:736.558933pt;}
.y63{bottom:738.409173pt;}
.yc{bottom:741.565467pt;}
.y8c{bottom:741.565600pt;}
.y194{bottom:747.692267pt;}
.y168{bottom:747.693673pt;}
.y37{bottom:752.776133pt;}
.y62{bottom:754.349173pt;}
.y10a{bottom:755.412133pt;}
.y136{bottom:759.824267pt;}
.y1b3{bottom:761.973600pt;}
.y20b{bottom:761.983812pt;}
.y193{bottom:763.632267pt;}
.y167{bottom:763.633833pt;}
.y1e0{bottom:763.652933pt;}
.y1a8{bottom:767.010933pt;}
.y1b2{bottom:768.069009pt;}
.y61{bottom:770.289840pt;}
.y192{bottom:779.572267pt;}
.y166{bottom:779.573993pt;}
.y1b0{bottom:781.086933pt;}
.y36{bottom:785.585200pt;}
.y109{bottom:786.229840pt;}
.y60{bottom:786.230000pt;}
.y191{bottom:795.512267pt;}
.y165{bottom:795.514153pt;}
.y1ae{bottom:800.962933pt;}
.y35{bottom:801.525467pt;}
.y108{bottom:802.170000pt;}
.y5f{bottom:802.170160pt;}
.y1df{bottom:803.503333pt;}
.y190{bottom:811.453600pt;}
.y164{bottom:811.454313pt;}
.yb{bottom:813.657467pt;}
.y8b{bottom:813.657600pt;}
.y107{bottom:818.110160pt;}
.y5e{bottom:818.110320pt;}
.y1de{bottom:819.443493pt;}
.y18f{bottom:827.393600pt;}
.y163{bottom:827.394473pt;}
.y1aa{bottom:827.482933pt;}
.y1a7{bottom:827.573600pt;}
.y106{bottom:834.050320pt;}
.y5d{bottom:834.050480pt;}
.y1dd{bottom:835.383653pt;}
.y1ac{bottom:836.726933pt;}
.y20a{bottom:836.730826pt;}
.y1ab{bottom:845.561733pt;}
.y105{bottom:849.990480pt;}
.y5c{bottom:849.990640pt;}
.y162{bottom:850.002933pt;}
.y1dc{bottom:851.323813pt;}
.y1b1{bottom:851.461600pt;}
.y3{bottom:854.338533pt;}
.y1ad{bottom:858.777600pt;}
.y5b{bottom:865.930640pt;}
.y1db{bottom:867.263973pt;}
.y18e{bottom:869.575495pt;}
.y161{bottom:869.576066pt;}
.y1af{bottom:878.650933pt;}
.y1{bottom:879.110667pt;}
.y5a{bottom:881.870800pt;}
.y18d{bottom:882.200133pt;}
.y160{bottom:882.200704pt;}
.y1da{bottom:883.204133pt;}
.y1a9{bottom:888.045600pt;}
.y59{bottom:908.438800pt;}
.yd7{bottom:908.438933pt;}
.y1d9{bottom:909.772267pt;}
.y15f{bottom:911.105600pt;}
.ye7{bottom:912.438933pt;}
.y135{bottom:913.772267pt;}
.y1a6{bottom:917.772267pt;}
.y2{bottom:918.559067pt;}
.y8a{bottom:920.499333pt;}
.h14{height:21.359957pt;}
.hd{height:21.870046pt;}
.h30{height:21.933807pt;}
.h9{height:29.244954pt;}
.h40{height:29.457490pt;}
.h4{height:29.625000pt;}
.h15{height:30.562677pt;}
.h5{height:32.000000pt;}
.h17{height:32.661606pt;}
.h10{height:32.805069pt;}
.hf{height:32.900710pt;}
.h39{height:32.945757pt;}
.h3b{height:32.945930pt;}
.h3a{height:32.946448pt;}
.he{height:33.091994pt;}
.h8{height:33.117984pt;}
.h6{height:33.328125pt;}
.h3{height:34.368000pt;}
.h28{height:36.449833pt;}
.h12{height:36.556100pt;}
.h11{height:36.768636pt;}
.h1f{height:36.821770pt;}
.h31{height:37.363074pt;}
.h27{height:37.381694pt;}
.h2d{height:37.396703pt;}
.h41{height:38.554030pt;}
.ha{height:43.867614pt;}
.h3e{height:44.862869pt;}
.h2c{height:44.869623pt;}
.h2f{height:44.870797pt;}
.h2a{height:44.871330pt;}
.h29{height:44.871609pt;}
.h20{height:44.872183pt;}
.h21{height:44.872397pt;}
.h25{height:44.872717pt;}
.h2b{height:44.873037pt;}
.h3d{height:44.874530pt;}
.h1e{height:44.874850pt;}
.h13{height:44.875021pt;}
.h1b{height:44.875170pt;}
.h22{height:44.875703pt;}
.h1c{height:44.875917pt;}
.h23{height:44.876450pt;}
.h1a{height:44.877837pt;}
.h24{height:44.878370pt;}
.h1d{height:44.878903pt;}
.h19{height:44.880503pt;}
.h35{height:44.885854pt;}
.h34{height:44.886963pt;}
.h33{height:44.904372pt;}
.h43{height:49.386475pt;}
.h38{height:49.402044pt;}
.h3c{height:51.742106pt;}
.h42{height:57.257438pt;}
.h37{height:57.273007pt;}
.hc{height:58.343509pt;}
.hb{height:62.145664pt;}
.h2{height:66.352000pt;}
.h7{height:331.001333pt;}
.h16{height:338.833333pt;}
.h18{height:896.273333pt;}
.h3f{height:897.605333pt;}
.h32{height:898.938667pt;}
.h26{height:900.272000pt;}
.h2e{height:901.606667pt;}
.h36{height:909.605333pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w6{width:2.666667pt;}
.w3{width:4.000000pt;}
.w5{width:5.333333pt;}
.w7{width:720.336000pt;}
.w2{width:721.669333pt;}
.w4{width:723.002667pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x38{left:-673.863489pt;}
.x29{left:-672.535867pt;}
.x74{left:-671.202533pt;}
.x2a{left:-670.037230pt;}
.x2c{left:-664.998667pt;}
.x76{left:-663.895867pt;}
.x39{left:-657.929040pt;}
.x2b{left:-656.595707pt;}
.x75{left:-655.267122pt;}
.x28{left:-631.741333pt;}
.x23{left:-628.906533pt;}
.x2d{left:-623.832242pt;}
.x25{left:-619.631867pt;}
.x65{left:-590.489200pt;}
.x73{left:-578.578667pt;}
.x3b{left:-569.089215pt;}
.x68{left:-567.912000pt;}
.x26{left:-566.044781pt;}
.x3c{left:-529.936314pt;}
.x37{left:-500.997333pt;}
.x46{left:-499.664000pt;}
.x64{left:-498.330667pt;}
.x69{left:-494.343067pt;}
.x20{left:-488.061333pt;}
.x21{left:-482.992000pt;}
.x47{left:-470.290667pt;}
.x27{left:-465.418533pt;}
.x6b{left:-405.278667pt;}
.x24{left:-401.327346pt;}
.x6a{left:-399.723867pt;}
.x66{left:-325.921200pt;}
.x6e{left:-315.982667pt;}
.x6c{left:-282.742533pt;}
.x6d{left:-277.189333pt;}
.x22{left:-196.854783pt;}
.x71{left:-195.471878pt;}
.x70{left:-191.980533pt;}
.x6f{left:-189.988000pt;}
.x3a{left:-171.634609pt;}
.x72{left:-160.479008pt;}
.x67{left:-136.945333pt;}
.x0{left:0.000000pt;}
.x31{left:2.666667pt;}
.x7{left:4.000000pt;}
.x4f{left:5.333333pt;}
.x5{left:49.889733pt;}
.x2e{left:50.866667pt;}
.x4{left:51.779467pt;}
.x11{left:53.133200pt;}
.x6{left:54.834667pt;}
.x1c{left:56.670667pt;}
.x13{left:60.670667pt;}
.x5e{left:61.773333pt;}
.x77{left:62.826667pt;}
.x1b{left:65.073493pt;}
.x2f{left:66.806667pt;}
.x32{left:67.740160pt;}
.x12{left:69.073493pt;}
.x1e{left:70.806533pt;}
.x79{left:77.449143pt;}
.x62{left:80.115677pt;}
.x10{left:89.928000pt;}
.xb{left:92.762667pt;}
.x19{left:93.928000pt;}
.x15{left:96.762667pt;}
.x14{left:97.835958pt;}
.x60{left:99.583974pt;}
.xd{left:102.037333pt;}
.x17{left:106.037333pt;}
.x7a{left:124.090169pt;}
.x63{left:126.756702pt;}
.x30{left:130.139021pt;}
.x1f{left:134.139021pt;}
.x50{left:135.180000pt;}
.x78{left:145.503171pt;}
.x5d{left:147.090667pt;}
.x61{left:148.169704pt;}
.xe{left:155.624419pt;}
.x34{left:156.579985pt;}
.x53{left:157.757333pt;}
.x18{left:159.624419pt;}
.x4a{left:191.346667pt;}
.x35{left:195.733019pt;}
.x43{left:199.763811pt;}
.x40{left:203.576166pt;}
.x4c{left:208.828000pt;}
.x2{left:209.887200pt;}
.x4d{left:211.033333pt;}
.x42{left:212.834742pt;}
.x49{left:213.994667pt;}
.x44{left:215.039798pt;}
.x4b{left:216.578667pt;}
.x3f{left:217.988727pt;}
.x41{left:220.579003pt;}
.x3{left:222.459467pt;}
.x54{left:231.326667pt;}
.x8{left:233.608000pt;}
.x9{left:238.677333pt;}
.x3d{left:251.378667pt;}
.xf{left:256.250667pt;}
.x1{left:259.715200pt;}
.xc{left:320.341854pt;}
.x16{left:324.341854pt;}
.x55{left:325.945333pt;}
.x48{left:332.490667pt;}
.x3e{left:336.490533pt;}
.x4e{left:397.122994pt;}
.x51{left:399.748000pt;}
.x45{left:401.122860pt;}
.x58{left:409.686667pt;}
.x56{left:442.926667pt;}
.x57{left:448.480000pt;}
.xa{left:524.814550pt;}
.x1a{left:527.579867pt;}
.x5b{left:530.197322pt;}
.x5a{left:533.687867pt;}
.x59{left:535.681200pt;}
.x33{left:554.034591pt;}
.x5c{left:565.182533pt;}
.x52{left:588.724000pt;}
.x36{left:720.336000pt;}
.x1d{left:721.669333pt;}
.x5f{left:723.002667pt;}
}


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