
/* 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_be775222c1ee.woff")format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_6a46f0ae73cc.woff")format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_450033e88d9d.woff")format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_8a686e4e8c64.woff")format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_dc95ed900b46.woff")format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_1221369b85ce.woff")format("woff");}.ff6{font-family:ff6;line-height:1.202000;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_972992683d99.woff")format("woff");}.ff7{font-family:ff7;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_724dcfd2a225.woff")format("woff");}.ff8{font-family:ff8;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_972992683d99.woff")format("woff");}.ff9{font-family:ff9;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_968d9586c670.woff")format("woff");}.ffa{font-family:ffa;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_972992683d99.woff")format("woff");}.ffb{font-family:ffb;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_81fd096bb902.woff")format("woff");}.ffc{font-family:ffc;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_e14f50b85307.woff")format("woff");}.ffd{font-family:ffd;line-height:0.700000;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_6b12129b1bf3.woff")format("woff");}.ffe{font-family:ffe;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_cc175e79435e.woff")format("woff");}.fff{font-family:fff;line-height:0.707000;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_6b12129b1bf3.woff")format("woff");}.ff10{font-family:ff10;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_d2b9c7c5c84f.woff")format("woff");}.ff11{font-family:ff11;line-height:0.700000;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_08ed0dae2129.woff")format("woff");}.ff12{font-family:ff12;line-height:0.721000;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_32eb6f3f174c.woff")format("woff");}.ff13{font-family:ff13;line-height:0.711000;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_188ff352c199.woff")format("woff");}.ff14{font-family:ff14;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_538a1b22fba9.woff")format("woff");}.ff15{font-family:ff15;line-height:0.721000;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_f64f33aa0c6f.woff")format("woff");}.ff16{font-family:ff16;line-height:0.721000;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_188ff352c199.woff")format("woff");}.ff17{font-family:ff17;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_c16193558fa0.woff")format("woff");}.ff18{font-family:ff18;line-height:0.721000;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_5a2d3e256868.woff")format("woff");}.ff19{font-family:ff19;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_9db5d17fc6bd.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_5a2d3e256868.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_70744c777ccb.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.721000;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_44941784d4fc.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_be7d127313c3.woff")format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url("fonts/font_0030_44941784d4fc.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_7e817eff0492.woff")format("woff");}.ff20{font-family:ff20;line-height:0.908000;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_d22d5aad8d25.woff")format("woff");}.ff21{font-family:ff21;line-height:0.700000;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_77452e6eb6d6.woff")format("woff");}.ff22{font-family:ff22;line-height:0.066000;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_81d88b7f9901.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_81d88b7f9901.woff")format("woff");}.ff24{font-family:ff24;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:ff25;src:url("fonts/font_0036_81d88b7f9901.woff")format("woff");}.ff25{font-family:ff25;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:ff26;src:url("fonts/font_0037_8559a7088c0b.woff")format("woff");}.ff26{font-family:ff26;line-height:0.721000;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_288e98317123.woff")format("woff");}.ff27{font-family:ff27;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_1e71f5ef621c.woff")format("woff");}.ff28{font-family:ff28;line-height:0.721000;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_288e98317123.woff")format("woff");}.ff29{font-family:ff29;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_470879c11428.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_288e98317123.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0043_1664ebc02be3.woff")format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url("fonts/font_0044_bdbeb7434055.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.700000;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_932821b277be.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.438000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url("fonts/font_0046_07c435119658.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.722656;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_e1b1e7c8a24a.woff")format("woff");}.ff30{font-family:ff30;line-height:1.133000;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_b6b579cea77e.woff")format("woff");}.ff31{font-family:ff31;line-height:1.133000;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_281772c658df.woff")format("woff");}.ff32{font-family:ff32;line-height:1.203000;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_e1b1e7c8a24a.woff")format("woff");}.ff33{font-family:ff33;line-height:1.133000;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_9d9c5cc8bf1a.woff")format("woff");}.ff34{font-family:ff34;line-height:1.144000;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:ff35;src:url("fonts/font_0052_972992683d99.woff")format("woff");}.ff35{font-family:ff35;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url("fonts/font_0053_8d952dbce076.woff")format("woff");}.ff36{font-family:ff36;line-height:0.720000;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:ff37;src:url("fonts/font_0054_eb4779dd9d6d.woff")format("woff");}.ff37{font-family:ff37;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url("fonts/font_0055_6e360afa1138.woff")format("woff");}.ff38{font-family:ff38;line-height:0.721000;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:ff39;src:url("fonts/font_0056_6e360afa1138.woff")format("woff");}.ff39{font-family:ff39;line-height:0.721000;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:ff3a;src:url("fonts/font_0057_b67a05410f21.woff")format("woff");}.ff3a{font-family:ff3a;line-height:0.721000;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:ff3b;src:url("fonts/font_0058_6e360afa1138.woff")format("woff");}.ff3b{font-family:ff3b;line-height:0.721000;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:ff3c;src:url("fonts/font_0059_0f6dfb1fcc7a.woff")format("woff");}.ff3c{font-family:ff3c;line-height:0.720000;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:ff3d;src:url("fonts/font_0060_0f6dfb1fcc7a.woff")format("woff");}.ff3d{font-family:ff3d;line-height:0.720000;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:ff3e;src:url("fonts/font_0061_3f1b1f2cfd15.woff")format("woff");}.ff3e{font-family:ff3e;line-height:0.720000;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:ff3f;src:url("fonts/font_0062_6e360afa1138.woff")format("woff");}.ff3f{font-family:ff3f;line-height:0.721000;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:ff40;src:url("fonts/font_0063_b67a05410f21.woff")format("woff");}.ff40{font-family:ff40;line-height:0.721000;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:ff41;src:url("fonts/font_0064_6bd304a79897.woff")format("woff");}.ff41{font-family:ff41;line-height:0.908000;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:ff42;src:url("fonts/font_0065_8d952dbce076.woff")format("woff");}.ff42{font-family:ff42;line-height:0.720000;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:ff43;src:url("fonts/font_0066_eb4779dd9d6d.woff")format("woff");}.ff43{font-family:ff43;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url("fonts/font_0067_bef5ea8b806d.woff")format("woff");}.ff44{font-family:ff44;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:ff45;src:url("fonts/font_0068_5831a28cd0f3.woff")format("woff");}.ff45{font-family:ff45;line-height:0.908000;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:ff46;src:url("fonts/font_0069_b060a3451d50.woff")format("woff");}.ff46{font-family:ff46;line-height:0.908000;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:ff47;src:url("fonts/font_0070_81d88b7f9901.woff")format("woff");}.ff47{font-family:ff47;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:ff48;src:url("fonts/font_0071_81d88b7f9901.woff")format("woff");}.ff48{font-family:ff48;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:ff49;src:url("fonts/font_0072_50f6a12d31df.woff")format("woff");}.ff49{font-family:ff49;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url("fonts/font_0073_b377bb2da2e1.woff")format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url("fonts/font_0074_50f6a12d31df.woff")format("woff");}.ff4b{font-family:ff4b;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url("fonts/font_0075_52ca7fbdc81b.woff")format("woff");}.ff4c{font-family:ff4c;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:ff4d;src:url("fonts/font_0076_81fd096bb902.woff")format("woff");}.ff4d{font-family:ff4d;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url("fonts/font_0077_5fb0674e371c.woff")format("woff");}.ff4e{font-family:ff4e;line-height:0.588000;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:ff4f;src:url("fonts/font_0078_444edc1ac82c.woff")format("woff");}.ff4f{font-family:ff4f;line-height:0.908000;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:ff50;src:url("fonts/font_0079_102219a95214.woff")format("woff");}.ff50{font-family:ff50;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url("fonts/font_0080_1eb5c89a094c.woff")format("woff");}.ff51{font-family:ff51;line-height:0.711000;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:ff52;src:url("fonts/font_0081_c78648cfb343.woff")format("woff");}.ff52{font-family:ff52;line-height:0.120000;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:ff53;src:url("fonts/font_0082_e0a1c6559650.woff")format("woff");}.ff53{font-family:ff53;line-height:0.879000;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:ff54;src:url("fonts/font_0083_3a08c67e460a.woff")format("woff");}.ff54{font-family:ff54;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:ff55;src:url("fonts/font_0084_56ecfcb25c4f.woff")format("woff");}.ff55{font-family:ff55;line-height:0.266000;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:ff56;src:url("fonts/font_0085_687b9ebcd8d2.woff")format("woff");}.ff56{font-family:ff56;line-height:0.908000;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:ff57;src:url("fonts/font_0086_56ecfcb25c4f.woff")format("woff");}.ff57{font-family:ff57;line-height:0.266000;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:ff58;src:url("fonts/font_0087_6e360afa1138.woff")format("woff");}.ff58{font-family:ff58;line-height:0.721000;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:ff59;src:url("fonts/font_0088_887825389f3f.woff")format("woff");}.ff59{font-family:ff59;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url("fonts/font_0089_502fccf5e7fc.woff")format("woff");}.ff5a{font-family:ff5a;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:ff5b;src:url("fonts/font_0090_a7255a65221a.woff")format("woff");}.ff5b{font-family:ff5b;line-height:0.707000;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:ff5c;src:url("fonts/font_0091_61c8a3374378.woff")format("woff");}.ff5c{font-family:ff5c;line-height:0.700000;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:ff5d;src:url("fonts/font_0092_92911d88cbe9.woff")format("woff");}.ff5d{font-family:ff5d;line-height:0.707000;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:ff5e;src:url("fonts/font_0093_93844c6ee339.woff")format("woff");}.ff5e{font-family:ff5e;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url("fonts/font_0094_532a963414e2.woff")format("woff");}.ff5f{font-family:ff5f;line-height:0.385000;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;}
.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);}
.v3{vertical-align:-15.012085px;}
.va{vertical-align:-12.747031px;}
.v7{vertical-align:-10.473999px;}
.v9{vertical-align:-3.600220px;}
.v1{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.799927px;}
.v6{vertical-align:10.473999px;}
.v8{vertical-align:15.012085px;}
.v4{vertical-align:21.007141px;}
.v2{vertical-align:24.000000px;}
.vb{vertical-align:36.781020px;}
.ls6f{letter-spacing:-1.200000px;}
.ls6c{letter-spacing:-1.140000px;}
.ls6d{letter-spacing:-1.080000px;}
.ls6e{letter-spacing:-0.960000px;}
.ls69{letter-spacing:-0.840000px;}
.ls6b{letter-spacing:-0.720000px;}
.ls66{letter-spacing:-0.612000px;}
.ls6a{letter-spacing:-0.600000px;}
.ls74{letter-spacing:-0.540000px;}
.ls63{letter-spacing:-0.510000px;}
.ls3a{letter-spacing:-0.480000px;}
.ls37{letter-spacing:-0.420000px;}
.ls93{letter-spacing:-0.408000px;}
.lse{letter-spacing:-0.360000px;}
.ls92{letter-spacing:-0.357000px;}
.ls96{letter-spacing:-0.306000px;}
.ls36{letter-spacing:-0.300000px;}
.ls98{letter-spacing:-0.255000px;}
.ls3b{letter-spacing:-0.240000px;}
.ls99{letter-spacing:-0.204000px;}
.ls38{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.060000px;}
.ls91{letter-spacing:-0.051000px;}
.ls10{letter-spacing:-0.042010px;}
.lsd{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000086px;}
.ls4a{letter-spacing:0.002029px;}
.ls52{letter-spacing:0.005497px;}
.ls17{letter-spacing:0.006000px;}
.lsc{letter-spacing:0.007237px;}
.ls42{letter-spacing:0.007283px;}
.ls40{letter-spacing:0.007328px;}
.ls3f{letter-spacing:0.007878px;}
.ls4e{letter-spacing:0.007922px;}
.ls43{letter-spacing:0.007924px;}
.ls4b{letter-spacing:0.008495px;}
.ls46{letter-spacing:0.010277px;}
.ls4{letter-spacing:0.010280px;}
.ls3c{letter-spacing:0.010303px;}
.ls3e{letter-spacing:0.010539px;}
.ls41{letter-spacing:0.010542px;}
.lsa{letter-spacing:0.010546px;}
.ls9{letter-spacing:0.010564px;}
.ls3d{letter-spacing:0.010587px;}
.ls45{letter-spacing:0.010633px;}
.ls51{letter-spacing:0.010876px;}
.ls44{letter-spacing:0.012000px;}
.ls55{letter-spacing:0.012973px;}
.ls4f{letter-spacing:0.029711px;}
.ls11{letter-spacing:0.042010px;}
.ls7b{letter-spacing:0.051000px;}
.ls3{letter-spacing:0.060000px;}
.ls4d{letter-spacing:0.060015px;}
.ls75{letter-spacing:0.090000px;}
.lsa0{letter-spacing:0.102000px;}
.ls1d{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.180000px;}
.ls77{letter-spacing:0.204000px;}
.ls1{letter-spacing:0.240000px;}
.ls28{letter-spacing:0.257980px;}
.ls78{letter-spacing:0.264000px;}
.ls79{letter-spacing:0.280500px;}
.ls61{letter-spacing:0.282000px;}
.ls7d{letter-spacing:0.288000px;}
.ls31{letter-spacing:0.300000px;}
.ls7c{letter-spacing:0.306000px;}
.ls56{letter-spacing:0.312000px;}
.ls2a{letter-spacing:0.317988px;}
.ls5e{letter-spacing:0.330000px;}
.ls9b{letter-spacing:0.357000px;}
.ls32{letter-spacing:0.360000px;}
.ls5d{letter-spacing:0.384000px;}
.ls34{letter-spacing:0.390000px;}
.ls1f{letter-spacing:0.395992px;}
.ls8e{letter-spacing:0.408000px;}
.ls1e{letter-spacing:0.420000px;}
.ls2f{letter-spacing:0.449978px;}
.ls97{letter-spacing:0.459000px;}
.ls2{letter-spacing:0.480000px;}
.ls82{letter-spacing:0.484500px;}
.ls8a{letter-spacing:0.510000px;}
.ls1b{letter-spacing:0.527993px;}
.ls7e{letter-spacing:0.535500px;}
.ls19{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.558000px;}
.ls7a{letter-spacing:0.561000px;}
.ls83{letter-spacing:0.586500px;}
.ls26{letter-spacing:0.600000px;}
.ls8b{letter-spacing:0.612000px;}
.ls23{letter-spacing:0.617958px;}
.ls2c{letter-spacing:0.630000px;}
.ls9f{letter-spacing:0.637500px;}
.ls1c{letter-spacing:0.660000px;}
.ls87{letter-spacing:0.663000px;}
.ls9c{letter-spacing:0.714000px;}
.ls14{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.750000px;}
.ls73{letter-spacing:0.762000px;}
.ls84{letter-spacing:0.765000px;}
.ls13{letter-spacing:0.780000px;}
.ls2e{letter-spacing:0.810000px;}
.ls8c{letter-spacing:0.816000px;}
.ls27{letter-spacing:0.840000px;}
.ls9d{letter-spacing:0.841500px;}
.ls94{letter-spacing:0.867000px;}
.ls29{letter-spacing:0.870000px;}
.ls2b{letter-spacing:0.900000px;}
.ls85{letter-spacing:0.918000px;}
.ls24{letter-spacing:0.930000px;}
.ls1a{letter-spacing:0.960000px;}
.ls9a{letter-spacing:0.969000px;}
.ls30{letter-spacing:1.020000px;}
.ls21{letter-spacing:1.026000px;}
.ls57{letter-spacing:1.050000px;}
.ls89{letter-spacing:1.071000px;}
.ls5c{letter-spacing:1.080000px;}
.ls16{letter-spacing:1.110000px;}
.ls76{letter-spacing:1.122000px;}
.ls70{letter-spacing:1.133951px;}
.ls20{letter-spacing:1.140000px;}
.ls90{letter-spacing:1.173000px;}
.ls25{letter-spacing:1.200000px;}
.ls95{letter-spacing:1.224000px;}
.ls35{letter-spacing:1.260000px;}
.ls7f{letter-spacing:1.275000px;}
.ls60{letter-spacing:1.320000px;}
.ls33{letter-spacing:1.380000px;}
.ls80{letter-spacing:1.428000px;}
.ls58{letter-spacing:1.440000px;}
.ls9e{letter-spacing:1.479000px;}
.ls5a{letter-spacing:1.500000px;}
.ls7{letter-spacing:1.500375px;}
.ls88{letter-spacing:1.530000px;}
.ls71{letter-spacing:1.560000px;}
.ls81{letter-spacing:1.581000px;}
.ls5b{letter-spacing:1.620000px;}
.ls59{letter-spacing:1.680000px;}
.ls62{letter-spacing:1.740000px;}
.ls8f{letter-spacing:1.785000px;}
.ls65{letter-spacing:1.800000px;}
.ls64{letter-spacing:1.860000px;}
.ls5f{letter-spacing:1.920000px;}
.ls86{letter-spacing:1.938000px;}
.ls68{letter-spacing:2.040000px;}
.ls22{letter-spacing:2.220000px;}
.ls72{letter-spacing:2.280000px;}
.ls8{letter-spacing:2.280570px;}
.ls8d{letter-spacing:2.448000px;}
.ls67{letter-spacing:2.820000px;}
.ls0{letter-spacing:2.850000px;}
.ls50{letter-spacing:2.999424px;}
.ls6{letter-spacing:3.720930px;}
.ls5{letter-spacing:3.960990px;}
.ls53{letter-spacing:4.388234px;}
.lsb{letter-spacing:13.323329px;}
.ls49{letter-spacing:13.383344px;}
.ls47{letter-spacing:16.684169px;}
.ls48{letter-spacing:18.298854px;}
.ls54{letter-spacing:21.630035px;}
.ls4c{letter-spacing:21.645057px;}
.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;}
}
.wsa3{word-spacing:-14.832000px;}
.ws19{word-spacing:-14.544000px;}
.ws75{word-spacing:-13.800000px;}
.ws76{word-spacing:-13.260000px;}
.ws16{word-spacing:-12.960000px;}
.ws66{word-spacing:-12.720000px;}
.ws8d{word-spacing:-12.600000px;}
.ws8c{word-spacing:-12.480000px;}
.ws44{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws97{word-spacing:-12.120000px;}
.wsa4{word-spacing:-12.036000px;}
.ws86{word-spacing:-12.000000px;}
.wsb7{word-spacing:-11.781000px;}
.wsb3{word-spacing:-11.730000px;}
.ws18{word-spacing:-11.640000px;}
.ws5{word-spacing:-11.520000px;}
.ws94{word-spacing:-11.280000px;}
.ws9b{word-spacing:-11.160000px;}
.wsb1{word-spacing:-11.067000px;}
.wsa2{word-spacing:-11.016000px;}
.ws8e{word-spacing:-10.920000px;}
.ws67{word-spacing:-10.812000px;}
.ws17{word-spacing:-10.512000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.ws3{word-spacing:-8.694000px;}
.ws9{word-spacing:-7.568400px;}
.ws93{word-spacing:-7.224000px;}
.ws6d{word-spacing:-3.720000px;}
.ws4c{word-spacing:-3.540000px;}
.ws72{word-spacing:-3.060000px;}
.wsd4{word-spacing:-2.346000px;}
.ws7e{word-spacing:-1.920000px;}
.ws5d{word-spacing:-1.740000px;}
.ws7c{word-spacing:-1.440000px;}
.ws30{word-spacing:-1.380000px;}
.wsc{word-spacing:-1.320000px;}
.wscc{word-spacing:-1.275000px;}
.wsd{word-spacing:-1.260000px;}
.ws40{word-spacing:-1.200000px;}
.wsaf{word-spacing:-1.173000px;}
.wsa0{word-spacing:-1.140000px;}
.wsad{word-spacing:-1.122000px;}
.ws25{word-spacing:-1.080000px;}
.wsaa{word-spacing:-1.071000px;}
.ws4e{word-spacing:-1.020000px;}
.wsa9{word-spacing:-0.969000px;}
.ws3c{word-spacing:-0.960000px;}
.wsac{word-spacing:-0.918000px;}
.ws46{word-spacing:-0.900000px;}
.ws31{word-spacing:-0.840000px;}
.ws5e{word-spacing:-0.780000px;}
.ws4f{word-spacing:-0.660000px;}
.wsc4{word-spacing:-0.612000px;}
.ws13{word-spacing:-0.600000px;}
.ws26{word-spacing:-0.540000px;}
.wsb8{word-spacing:-0.510000px;}
.ws11{word-spacing:-0.480000px;}
.ws82{word-spacing:-0.420000px;}
.ws52{word-spacing:-0.360000px;}
.wsce{word-spacing:-0.357000px;}
.ws5b{word-spacing:-0.300000px;}
.ws6f{word-spacing:-0.282000px;}
.ws15{word-spacing:-0.240000px;}
.wsbc{word-spacing:-0.204000px;}
.ws62{word-spacing:-0.180000px;}
.ws2d{word-spacing:-0.120000px;}
.wsc3{word-spacing:-0.102000px;}
.ws8{word-spacing:-0.084020px;}
.ws7{word-spacing:-0.060015px;}
.ws4a{word-spacing:-0.060000px;}
.ws6{word-spacing:-0.042010px;}
.wsa{word-spacing:0.000000px;}
.ws14{word-spacing:0.042010px;}
.wsae{word-spacing:0.051000px;}
.ws7d{word-spacing:0.060000px;}
.wsba{word-spacing:0.102000px;}
.ws4d{word-spacing:0.120000px;}
.ws64{word-spacing:0.180000px;}
.wsc0{word-spacing:0.204000px;}
.ws6b{word-spacing:0.240000px;}
.wsc5{word-spacing:0.255000px;}
.ws2f{word-spacing:0.300000px;}
.ws71{word-spacing:0.360000px;}
.ws43{word-spacing:0.420000px;}
.ws57{word-spacing:0.480000px;}
.ws74{word-spacing:0.510000px;}
.ws51{word-spacing:0.540000px;}
.ws45{word-spacing:0.600000px;}
.ws42{word-spacing:0.660000px;}
.wsb0{word-spacing:0.663000px;}
.ws10{word-spacing:0.720000px;}
.ws12{word-spacing:0.780000px;}
.ws2a{word-spacing:0.840000px;}
.wsd3{word-spacing:0.867000px;}
.wsf{word-spacing:0.900000px;}
.ws56{word-spacing:0.960000px;}
.ws6e{word-spacing:1.020000px;}
.wsab{word-spacing:1.071000px;}
.ws3f{word-spacing:1.080000px;}
.wsb2{word-spacing:1.122000px;}
.ws1f{word-spacing:1.140000px;}
.ws80{word-spacing:1.200000px;}
.ws65{word-spacing:1.224000px;}
.wse{word-spacing:1.260000px;}
.wsd0{word-spacing:1.275000px;}
.ws1a{word-spacing:1.320000px;}
.wsbd{word-spacing:1.377000px;}
.ws24{word-spacing:1.380000px;}
.ws50{word-spacing:1.440000px;}
.ws2b{word-spacing:1.500000px;}
.ws85{word-spacing:1.530000px;}
.ws81{word-spacing:1.560000px;}
.ws1c{word-spacing:1.620000px;}
.ws92{word-spacing:1.680000px;}
.wsd1{word-spacing:1.734000px;}
.ws41{word-spacing:1.740000px;}
.ws37{word-spacing:1.800000px;}
.ws55{word-spacing:1.860000px;}
.wsb6{word-spacing:1.887000px;}
.ws99{word-spacing:1.920000px;}
.wsb4{word-spacing:1.938000px;}
.ws22{word-spacing:1.980000px;}
.ws1b{word-spacing:2.040000px;}
.ws39{word-spacing:2.100000px;}
.ws38{word-spacing:2.160000px;}
.ws54{word-spacing:2.220000px;}
.wsa1{word-spacing:2.280000px;}
.ws35{word-spacing:2.340000px;}
.ws34{word-spacing:2.400000px;}
.ws2e{word-spacing:2.460000px;}
.wsbb{word-spacing:2.499000px;}
.ws7b{word-spacing:2.520000px;}
.wsbf{word-spacing:2.550000px;}
.ws33{word-spacing:2.580000px;}
.wsc7{word-spacing:2.601000px;}
.ws49{word-spacing:2.640000px;}
.ws20{word-spacing:2.700000px;}
.wsb5{word-spacing:2.703000px;}
.ws36{word-spacing:2.760000px;}
.ws21{word-spacing:2.820000px;}
.ws3d{word-spacing:2.880000px;}
.wsc2{word-spacing:2.907000px;}
.ws23{word-spacing:2.940000px;}
.ws7f{word-spacing:3.000000px;}
.ws96{word-spacing:3.060000px;}
.ws59{word-spacing:3.120000px;}
.ws3a{word-spacing:3.180000px;}
.ws5c{word-spacing:3.240000px;}
.wsca{word-spacing:3.264000px;}
.ws58{word-spacing:3.300000px;}
.wsc9{word-spacing:3.315000px;}
.ws73{word-spacing:3.360000px;}
.wscb{word-spacing:3.417000px;}
.ws6c{word-spacing:3.540000px;}
.ws1e{word-spacing:3.600000px;}
.wsa5{word-spacing:3.621000px;}
.ws8a{word-spacing:3.720000px;}
.wsc1{word-spacing:3.723000px;}
.ws27{word-spacing:3.780000px;}
.wsa7{word-spacing:3.825000px;}
.ws6a{word-spacing:3.840000px;}
.ws60{word-spacing:3.900000px;}
.wsbe{word-spacing:3.927000px;}
.ws29{word-spacing:3.960000px;}
.wsa6{word-spacing:3.978000px;}
.ws9c{word-spacing:4.020000px;}
.ws2c{word-spacing:4.140000px;}
.wscf{word-spacing:4.182000px;}
.ws32{word-spacing:4.200000px;}
.wsa8{word-spacing:4.233000px;}
.ws1d{word-spacing:4.260000px;}
.ws4b{word-spacing:4.320000px;}
.wsd2{word-spacing:4.386000px;}
.wsb9{word-spacing:4.437000px;}
.ws70{word-spacing:4.440000px;}
.ws9e{word-spacing:4.500000px;}
.ws8b{word-spacing:4.560000px;}
.ws95{word-spacing:4.620000px;}
.wsc6{word-spacing:4.743000px;}
.ws3b{word-spacing:4.860000px;}
.ws3e{word-spacing:4.980000px;}
.ws53{word-spacing:5.100000px;}
.ws5f{word-spacing:5.400000px;}
.ws83{word-spacing:5.406000px;}
.ws5a{word-spacing:5.460000px;}
.wscd{word-spacing:5.610000px;}
.wsd5{word-spacing:5.661000px;}
.ws9d{word-spacing:6.000000px;}
.ws63{word-spacing:6.060000px;}
.ws61{word-spacing:6.600000px;}
.wsc8{word-spacing:7.242000px;}
.ws98{word-spacing:7.440000px;}
.ws89{word-spacing:8.100000px;}
.ws28{word-spacing:9.240000px;}
.ws9f{word-spacing:9.540000px;}
.ws48{word-spacing:9.902475px;}
.ws9a{word-spacing:10.200000px;}
.wsd6{word-spacing:10.710000px;}
.wsd7{word-spacing:11.832000px;}
.ws84{word-spacing:14.229000px;}
.ws47{word-spacing:19.607390px;}
.wsb{word-spacing:43.416000px;}
.ws77{word-spacing:236.283000px;}
.ws79{word-spacing:257.677593px;}
.ws68{word-spacing:270.748028px;}
.ws7a{word-spacing:272.064693px;}
.ws69{word-spacing:285.135127px;}
.ws8f{word-spacing:292.335316px;}
.ws87{word-spacing:292.335430px;}
.ws90{word-spacing:306.722415px;}
.ws88{word-spacing:306.722530px;}
.ws91{word-spacing:311.363529px;}
.ws78{word-spacing:554.727000px;}
._4b{margin-left:-17.952000px;}
._1d{margin-left:-16.575000px;}
._25{margin-left:-14.544000px;}
._47{margin-left:-13.469100px;}
._7{margin-left:-12.341997px;}
._16{margin-left:-11.321997px;}
._4a{margin-left:-9.945000px;}
._29{margin-left:-8.940000px;}
._46{margin-left:-6.635100px;}
._3{margin-left:-5.214000px;}
._27{margin-left:-3.858000px;}
._4{margin-left:-2.838000px;}
._0{margin-left:-1.632000px;}
._1{width:1.046400px;}
._23{width:2.133600px;}
._40{width:3.497989px;}
._2a{width:5.256504px;}
._41{width:9.434991px;}
._39{width:10.752000px;}
._17{width:12.291597px;}
._1e{width:14.688000px;}
._5{width:16.320000px;}
._3a{width:18.474000px;}
._24{width:21.456000px;}
._49{width:23.316000px;}
._43{width:25.215011px;}
._42{width:26.720496px;}
._45{width:27.740496px;}
._48{width:28.865997px;}
._38{width:29.994000px;}
._28{width:33.000000px;}
._44{width:34.781403px;}
._22{width:36.000000px;}
._2{width:40.617563px;}
._20{width:50.640000px;}
._9{width:61.422001px;}
._19{width:63.714001px;}
._1c{width:64.872001px;}
._21{width:74.891997px;}
._1a{width:76.571997px;}
._2d{width:85.590000px;}
._c{width:91.721997px;}
._b{width:93.821997px;}
._a{width:99.761997px;}
._1b{width:104.591997px;}
._3c{width:106.692000px;}
._18{width:111.983997px;}
._3b{width:120.921000px;}
._f{width:126.881997px;}
._10{width:135.041997px;}
._2b{width:137.043006px;}
._15{width:142.181997px;}
._13{width:143.921997px;}
._6{width:146.021997px;}
._11{width:148.601997px;}
._e{width:150.581997px;}
._d{width:154.661997px;}
._3d{width:157.896000px;}
._8{width:159.881997px;}
._14{width:160.901997px;}
._12{width:166.361997px;}
._31{width:230.315994px;}
._2f{width:242.505000px;}
._35{width:265.640994px;}
._32{width:270.995994px;}
._33{width:272.627994px;}
._37{width:279.912594px;}
._34{width:290.018994px;}
._2e{width:292.968600px;}
._3e{width:295.900773px;}
._3f{width:314.592600px;}
._30{width:318.531633px;}
._36{width:336.599994px;}
._2c{width:339.148773px;}
._26{width:680.929757px;}
._1f{width:682.353600px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(237,106,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:30.007200px;}
.fsa{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs9{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fsd{font-size:56.399998px;}
.fs2{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:60.014997px;}
.fsb{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:0.044083px;}
.y11d{bottom:2.595245px;}
.y128{bottom:2.595337px;}
.y124{bottom:2.743835px;}
.y20{bottom:2.743927px;}
.y25{bottom:2.745438px;}
.y140{bottom:2.820465px;}
.ye6{bottom:3.043808px;}
.y38{bottom:3.043945px;}
.y3b{bottom:3.045456px;}
.yd5{bottom:3.793808px;}
.yb7{bottom:3.795227px;}
.yc5{bottom:3.795273px;}
.y1b{bottom:3.795319px;}
.y10a{bottom:3.868744px;}
.y113{bottom:3.870575px;}
.yd3{bottom:3.943954px;}
.ybf{bottom:3.944000px;}
.yc7{bottom:3.945465px;}
.y28{bottom:3.945602px;}
.y102{bottom:5.820282px;}
.yf5{bottom:5.893799px;}
.y35{bottom:5.893936px;}
.y3f{bottom:5.893982px;}
.yb2{bottom:5.894989px;}
.ydb{bottom:5.895309px;}
.yba{bottom:5.895355px;}
.y18{bottom:5.895447px;}
.y106{bottom:5.968781px;}
.yff{bottom:5.968872px;}
.y10c{bottom:9.875793px;}
.y110{bottom:14.400421px;}
.y112{bottom:24.782043px;}
.y1{bottom:68.829002px;}
.y46{bottom:69.499649px;}
.y164{bottom:106.309799px;}
.y141{bottom:112.309799px;}
.y1d6{bottom:112.672806px;}
.y84{bottom:113.415298px;}
.y79{bottom:113.415344px;}
.yb5{bottom:113.569805px;}
.y14a{bottom:113.935802px;}
.y1f4{bottom:114.049805px;}
.y20a{bottom:114.384293px;}
.y28c{bottom:114.549261px;}
.y23e{bottom:114.555302px;}
.y297{bottom:114.555313px;}
.y268{bottom:114.690285px;}
.y2f2{bottom:116.491243px;}
.y16b{bottom:123.093749px;}
.y2b0{bottom:125.887956px;}
.y149{bottom:128.929802px;}
.y1d5{bottom:131.422806px;}
.y2f1{bottom:131.485243px;}
.y83{bottom:132.165298px;}
.y78{bottom:132.165344px;}
.y209{bottom:133.134293px;}
.y28b{bottom:133.299261px;}
.y23d{bottom:133.305302px;}
.y296{bottom:133.305313px;}
.y267{bottom:133.440285px;}
.y2af{bottom:140.881956px;}
.yfc{bottom:141.105446px;}
.y16a{bottom:141.873742px;}
.y2f0{bottom:146.479243px;}
.y2{bottom:146.503796px;}
.y1d4{bottom:150.172806px;}
.y82{bottom:150.915298px;}
.y77{bottom:150.915344px;}
.y174{bottom:151.569271px;}
.y197{bottom:151.884271px;}
.y218{bottom:151.884293px;}
.y28a{bottom:152.049261px;}
.y23c{bottom:152.055302px;}
.y295{bottom:152.055313px;}
.y266{bottom:152.190285px;}
.y2ae{bottom:155.875956px;}
.yfb{bottom:159.855446px;}
.y169{bottom:160.590742px;}
.y2ef{bottom:161.473243px;}
.y1d3{bottom:168.922806px;}
.y81{bottom:169.665298px;}
.y76{bottom:169.665344px;}
.y173{bottom:170.319271px;}
.y196{bottom:170.634271px;}
.y208{bottom:170.634293px;}
.y289{bottom:170.799261px;}
.y294{bottom:170.805313px;}
.y2ad{bottom:170.869956px;}
.y265{bottom:170.940285px;}
.y2ee{bottom:176.467243px;}
.yfa{bottom:178.605446px;}
.y168{bottom:179.307742px;}
.y45{bottom:185.805156px;}
.y2ac{bottom:185.863956px;}
.y1d2{bottom:187.672806px;}
.y80{bottom:188.415298px;}
.y75{bottom:188.415344px;}
.y172{bottom:189.069271px;}
.y195{bottom:189.384271px;}
.y217{bottom:189.384293px;}
.y288{bottom:189.549261px;}
.y23b{bottom:189.555302px;}
.y293{bottom:189.555313px;}
.y264{bottom:189.690285px;}
.y2ed{bottom:191.461243px;}
.yf9{bottom:197.355446px;}
.y167{bottom:198.024000px;}
.y44{bottom:200.805156px;}
.y2ab{bottom:200.857956px;}
.y1d1{bottom:206.422806px;}
.y2ec{bottom:206.455243px;}
.y7f{bottom:207.165298px;}
.y74{bottom:207.165344px;}
.y171{bottom:207.819271px;}
.y194{bottom:208.134271px;}
.y207{bottom:208.134293px;}
.y287{bottom:208.299261px;}
.y292{bottom:208.305313px;}
.y263{bottom:208.440285px;}
.y43{bottom:215.799156px;}
.yf8{bottom:216.105446px;}
.y2eb{bottom:221.449243px;}
.y1d0{bottom:225.172806px;}
.y7e{bottom:225.915298px;}
.y73{bottom:225.915344px;}
.y166{bottom:226.112250px;}
.y170{bottom:226.569271px;}
.y193{bottom:226.884271px;}
.y206{bottom:226.884293px;}
.y286{bottom:227.049261px;}
.y291{bottom:227.055313px;}
.y262{bottom:227.190285px;}
.y2aa{bottom:234.607956px;}
.yf7{bottom:234.855446px;}
.y2ea{bottom:236.443243px;}
.y1cf{bottom:243.922806px;}
.y72{bottom:244.665344px;}
.y16f{bottom:245.319271px;}
.y192{bottom:245.634271px;}
.y205{bottom:245.634293px;}
.y285{bottom:245.799261px;}
.y23a{bottom:245.805290px;}
.y290{bottom:245.805313px;}
.y261{bottom:245.940285px;}
.y2e9{bottom:251.437243px;}
.y165{bottom:251.608799px;}
.y1ce{bottom:262.672806px;}
.y7d{bottom:263.415298px;}
.y71{bottom:263.415344px;}
.y16e{bottom:264.069271px;}
.y191{bottom:264.384271px;}
.y204{bottom:264.384293px;}
.y284{bottom:264.549261px;}
.y239{bottom:264.555290px;}
.y28f{bottom:264.555313px;}
.y260{bottom:264.690285px;}
.y2e8{bottom:266.431243px;}
.y39{bottom:267.723450px;}
.yf6{bottom:272.355446px;}
.y34{bottom:280.588509px;}
.y1cd{bottom:281.422806px;}
.y2e7{bottom:281.425243px;}
.y70{bottom:282.165344px;}
.y16d{bottom:282.819271px;}
.y190{bottom:283.134271px;}
.y203{bottom:283.134293px;}
.y283{bottom:283.299261px;}
.y238{bottom:283.305290px;}
.y28e{bottom:283.305313px;}
.y37{bottom:283.423508px;}
.y25f{bottom:283.440285px;}
.y36{bottom:286.473450px;}
.y2e6{bottom:296.419243px;}
.y32{bottom:299.336998px;}
.y6f{bottom:300.915344px;}
.y16c{bottom:301.569271px;}
.y18f{bottom:301.884271px;}
.y202{bottom:301.884293px;}
.y282{bottom:302.049261px;}
.y237{bottom:302.055267px;}
.y163{bottom:302.055313px;}
.y25e{bottom:302.190285px;}
.yf4{bottom:303.970505px;}
.y33{bottom:305.223450px;}
.y2a9{bottom:309.683711px;}
.yf3{bottom:309.855446px;}
.y2e5{bottom:311.413243px;}
.y13d{bottom:317.130432px;}
.y1cc{bottom:318.922806px;}
.y6e{bottom:319.665344px;}
.y30{bottom:320.031006px;}
.y18e{bottom:320.634271px;}
.y201{bottom:320.634293px;}
.y281{bottom:320.799261px;}
.y236{bottom:320.805267px;}
.y162{bottom:320.805313px;}
.y25d{bottom:320.940285px;}
.y31{bottom:323.973450px;}
.y2a8{bottom:324.677711px;}
.y2e4{bottom:326.407243px;}
.yf2{bottom:328.605446px;}
.y13c{bottom:335.880432px;}
.y2e{bottom:336.836998px;}
.y6d{bottom:338.415344px;}
.y18d{bottom:339.384271px;}
.y216{bottom:339.384293px;}
.y280{bottom:339.549261px;}
.y235{bottom:339.555267px;}
.y161{bottom:339.555313px;}
.y2a7{bottom:339.671711px;}
.y25c{bottom:339.690285px;}
.y2e3{bottom:341.401243px;}
.yf0{bottom:341.468994px;}
.y2f{bottom:342.723450px;}
.yf1{bottom:347.355446px;}
.yef{bottom:347.355469px;}
.y13b{bottom:354.630432px;}
.y2a6{bottom:354.665711px;}
.y2e2{bottom:356.395243px;}
.y6c{bottom:357.165344px;}
.y2c{bottom:357.531006px;}
.y18c{bottom:358.134271px;}
.y200{bottom:358.134293px;}
.y27f{bottom:358.299261px;}
.y234{bottom:358.305267px;}
.y160{bottom:358.305313px;}
.y25b{bottom:358.440285px;}
.y2d{bottom:361.473450px;}
.y1ab{bottom:364.741522px;}
.yee{bottom:366.105469px;}
.y2a5{bottom:369.659711px;}
.y2e1{bottom:371.389243px;}
.y13a{bottom:373.380432px;}
.y1cb{bottom:375.172806px;}
.y6b{bottom:375.915344px;}
.y2a{bottom:376.281006px;}
.y18b{bottom:376.884271px;}
.y215{bottom:376.884293px;}
.y27e{bottom:377.049261px;}
.y233{bottom:377.055267px;}
.y15f{bottom:377.055313px;}
.y25a{bottom:377.190285px;}
.yed{bottom:378.968994px;}
.y2b{bottom:380.223450px;}
.y1aa{bottom:383.535022px;}
.y2a4{bottom:384.653711px;}
.yec{bottom:384.855469px;}
.y2e0{bottom:386.383243px;}
.y139{bottom:392.130432px;}
.y1ca{bottom:393.922806px;}
.y6a{bottom:394.665344px;}
.y27{bottom:395.031006px;}
.y1ff{bottom:395.634270px;}
.y18a{bottom:395.634271px;}
.y214{bottom:395.634293px;}
.y27d{bottom:395.799261px;}
.y232{bottom:395.805267px;}
.y15e{bottom:395.805313px;}
.y259{bottom:395.940285px;}
.y29{bottom:398.973450px;}
.y2a3{bottom:399.647711px;}
.y2df{bottom:401.377243px;}
.y1a9{bottom:402.252022px;}
.yeb{bottom:403.605469px;}
.y138{bottom:410.880432px;}
.y1c9{bottom:412.672806px;}
.y69{bottom:413.415344px;}
.y1fe{bottom:414.384270px;}
.y189{bottom:414.384271px;}
.y213{bottom:414.384293px;}
.y27c{bottom:414.549261px;}
.y231{bottom:414.555267px;}
.y15d{bottom:414.555313px;}
.y2a2{bottom:414.641711px;}
.y258{bottom:414.690285px;}
.y24{bottom:414.968994px;}
.y2de{bottom:416.371243px;}
.y41{bottom:417.681015px;}
.y26{bottom:417.723450px;}
.y1a8{bottom:420.969022px;}
.yea{bottom:422.355469px;}
.y137{bottom:429.630432px;}
.y2a1{bottom:429.635711px;}
.y40{bottom:430.588486px;}
.y2dd{bottom:431.365243px;}
.y1c8{bottom:431.422806px;}
.y68{bottom:432.165344px;}
.y1fd{bottom:433.134270px;}
.y188{bottom:433.134271px;}
.y212{bottom:433.134293px;}
.y27b{bottom:433.299261px;}
.y230{bottom:433.305267px;}
.y15c{bottom:433.305313px;}
.y257{bottom:433.440285px;}
.y1eb{bottom:433.447781px;}
.y22{bottom:433.720505px;}
.y23{bottom:436.473450px;}
.y1a7{bottom:439.686022px;}
.ye9{bottom:441.105469px;}
.y2a0{bottom:444.629711px;}
.y2dc{bottom:446.359243px;}
.y136{bottom:448.380432px;}
.y3e{bottom:449.338486px;}
.y67{bottom:450.915344px;}
.y1fc{bottom:451.884270px;}
.y187{bottom:451.884271px;}
.y211{bottom:451.884293px;}
.y27a{bottom:452.049261px;}
.y22f{bottom:452.055267px;}
.y15b{bottom:452.055313px;}
.y256{bottom:452.190285px;}
.y1ea{bottom:452.197781px;}
.y1f{bottom:452.470505px;}
.y21{bottom:455.223450px;}
.ye8{bottom:456.805481px;}
.y1a6{bottom:458.403022px;}
.y29f{bottom:459.623711px;}
.ye7{bottom:459.855469px;}
.y2db{bottom:461.353243px;}
.y135{bottom:467.130432px;}
.y1d{bottom:468.087021px;}
.y1c7{bottom:468.922806px;}
.y66{bottom:469.665344px;}
.y3d{bottom:470.031006px;}
.y1fb{bottom:470.634270px;}
.y186{bottom:470.634271px;}
.y210{bottom:470.634293px;}
.y279{bottom:470.799261px;}
.y22e{bottom:470.805267px;}
.y15a{bottom:470.805313px;}
.y255{bottom:470.940285px;}
.y1e9{bottom:470.947781px;}
.y1e{bottom:473.973450px;}
.y29e{bottom:474.617711px;}
.ye5{bottom:475.555481px;}
.y2da{bottom:476.347243px;}
.ye4{bottom:478.605469px;}
.y134{bottom:485.880432px;}
.y1a5{bottom:486.491272px;}
.y65{bottom:488.415344px;}
.y3c{bottom:488.781006px;}
.y1a{bottom:488.916000px;}
.y1fa{bottom:489.384270px;}
.y185{bottom:489.384271px;}
.y20f{bottom:489.384293px;}
.y278{bottom:489.549261px;}
.y22d{bottom:489.555267px;}
.y159{bottom:489.555313px;}
.y29d{bottom:489.611711px;}
.y254{bottom:489.690285px;}
.y2d9{bottom:491.341243px;}
.ye3{bottom:491.468994px;}
.y1c{bottom:492.723450px;}
.ye2{bottom:497.355469px;}
.y17{bottom:505.587021px;}
.y2d8{bottom:506.335243px;}
.y64{bottom:507.165344px;}
.y1f9{bottom:508.134270px;}
.y184{bottom:508.134271px;}
.y20e{bottom:508.134293px;}
.y277{bottom:508.299261px;}
.y22c{bottom:508.305267px;}
.y158{bottom:508.305313px;}
.y253{bottom:508.440285px;}
.y1e8{bottom:508.447781px;}
.y19{bottom:511.473450px;}
.y1a4{bottom:511.958412px;}
.ye1{bottom:516.105469px;}
.y2d7{bottom:521.329243px;}
.y29c{bottom:523.322711px;}
.y133{bottom:523.380432px;}
.y1c6{bottom:525.172806px;}
.y63{bottom:525.915344px;}
.y1f8{bottom:526.884270px;}
.y183{bottom:526.884271px;}
.y20d{bottom:526.884293px;}
.y1a3{bottom:526.952412px;}
.y276{bottom:527.049261px;}
.y22b{bottom:527.055267px;}
.y157{bottom:527.055313px;}
.y3a{bottom:527.171997px;}
.y252{bottom:527.190285px;}
.ye0{bottom:528.968994px;}
.y16{bottom:530.223450px;}
.ydf{bottom:534.855469px;}
.y2d6{bottom:536.323243px;}
.y29b{bottom:538.316711px;}
.y1c5{bottom:543.922806px;}
.y62{bottom:544.665344px;}
.y1f7{bottom:545.634270px;}
.y182{bottom:545.634271px;}
.y20c{bottom:545.634293px;}
.y275{bottom:545.799261px;}
.y22a{bottom:545.805267px;}
.y156{bottom:545.805313px;}
.y251{bottom:545.940285px;}
.y1e7{bottom:545.947781px;}
.y2d5{bottom:551.317243px;}
.yde{bottom:553.605469px;}
.y132{bottom:560.880432px;}
.y1c4{bottom:562.672806px;}
.y61{bottom:563.415344px;}
.y1f6{bottom:564.384270px;}
.y181{bottom:564.384271px;}
.y20b{bottom:564.384293px;}
.y274{bottom:564.549261px;}
.y229{bottom:564.555267px;}
.y155{bottom:564.555313px;}
.y250{bottom:564.690285px;}
.y1e6{bottom:564.697781px;}
.y2d4{bottom:566.311243px;}
.ydd{bottom:566.468994px;}
.y15{bottom:567.723450px;}
.y29a{bottom:572.066711px;}
.ydc{bottom:572.355469px;}
.y131{bottom:579.630432px;}
.y2d3{bottom:581.305243px;}
.y1c3{bottom:581.422806px;}
.y60{bottom:582.165344px;}
.y1f5{bottom:583.134270px;}
.y180{bottom:583.134271px;}
.y273{bottom:583.299261px;}
.y228{bottom:583.305267px;}
.y154{bottom:583.305313px;}
.y24f{bottom:583.440285px;}
.y1e5{bottom:583.447781px;}
.yda{bottom:585.218994px;}
.y1a2{bottom:590.052160px;}
.yd9{bottom:591.105469px;}
.y2d2{bottom:596.299243px;}
.y130{bottom:598.380432px;}
.y1c2{bottom:600.172806px;}
.y5f{bottom:600.915344px;}
.y17f{bottom:601.884271px;}
.y272{bottom:602.049261px;}
.y153{bottom:602.055313px;}
.y24e{bottom:602.190285px;}
.y1e4{bottom:602.197781px;}
.y14{bottom:605.223450px;}
.yd7{bottom:605.914490px;}
.yd8{bottom:606.049484px;}
.y1a1{bottom:608.845660px;}
.y299{bottom:609.602695px;}
.y223{bottom:609.786441px;}
.yd6{bottom:609.855469px;}
.y2d1{bottom:611.293243px;}
.y12f{bottom:617.130432px;}
.y1c1{bottom:618.922806px;}
.y5e{bottom:619.665344px;}
.y17e{bottom:620.634271px;}
.y271{bottom:620.799261px;}
.y227{bottom:620.805267px;}
.y152{bottom:620.805313px;}
.y24d{bottom:620.940285px;}
.y1e3{bottom:620.947781px;}
.y13{bottom:623.973450px;}
.y298{bottom:624.596695px;}
.yd2{bottom:624.664490px;}
.y222{bottom:624.780441px;}
.yd4{bottom:624.799484px;}
.y2d0{bottom:626.287243px;}
.y1a0{bottom:627.562660px;}
.yd1{bottom:628.605469px;}
.y12e{bottom:635.880432px;}
.y1c0{bottom:637.672806px;}
.y5d{bottom:638.415344px;}
.y17d{bottom:639.384271px;}
.y9d{bottom:639.549261px;}
.y28d{bottom:639.555313px;}
.y24c{bottom:639.690285px;}
.y1e2{bottom:639.697781px;}
.y2cf{bottom:641.281243px;}
.y220{bottom:642.533420px;}
.y12{bottom:642.723450px;}
.y19f{bottom:646.279660px;}
.yd0{bottom:647.355469px;}
.y12d{bottom:654.630432px;}
.y2ce{bottom:656.275243px;}
.y1bf{bottom:656.422806px;}
.y5c{bottom:657.165344px;}
.y17c{bottom:658.134271px;}
.y9c{bottom:658.299261px;}
.yb4{bottom:658.305130px;}
.y226{bottom:658.305267px;}
.y151{bottom:658.305313px;}
.y24b{bottom:658.440285px;}
.y1e1{bottom:658.447781px;}
.y21f{bottom:661.313400px;}
.y11{bottom:661.473450px;}
.ycf{bottom:662.298019px;}
.y19e{bottom:664.996660px;}
.yce{bottom:666.105469px;}
.yb1{bottom:671.169022px;}
.y2cd{bottom:671.269243px;}
.y12c{bottom:673.380432px;}
.y1be{bottom:675.172806px;}
.y5b{bottom:675.915344px;}
.y17b{bottom:676.884271px;}
.y9b{bottom:677.049261px;}
.yb3{bottom:677.055130px;}
.yb0{bottom:677.055176px;}
.y225{bottom:677.055267px;}
.y24a{bottom:677.190285px;}
.y1e0{bottom:677.197781px;}
.y150{bottom:677.955322px;}
.y21e{bottom:680.030400px;}
.y10{bottom:680.223450px;}
.y19d{bottom:683.713660px;}
.ycd{bottom:684.855469px;}
.y2cc{bottom:686.263243px;}
.y12b{bottom:692.130432px;}
.y1bd{bottom:693.922806px;}
.y5a{bottom:694.665344px;}
.y17a{bottom:695.634271px;}
.y9a{bottom:695.799261px;}
.yaf{bottom:695.805176px;}
.y224{bottom:695.805267px;}
.y14f{bottom:695.805313px;}
.y249{bottom:695.940285px;}
.y1df{bottom:695.947781px;}
.y21d{bottom:698.747400px;}
.yf{bottom:698.973450px;}
.ycc{bottom:699.798019px;}
.y2cb{bottom:701.257243px;}
.ycb{bottom:703.605469px;}
.y12a{bottom:710.880432px;}
.y19c{bottom:711.801910px;}
.y1bc{bottom:712.672806px;}
.y59{bottom:713.415344px;}
.y179{bottom:714.384271px;}
.y99{bottom:714.549261px;}
.yae{bottom:714.555176px;}
.y148{bottom:714.555267px;}
.y248{bottom:714.690285px;}
.y14e{bottom:715.455322px;}
.y30c{bottom:716.221838px;}
.y2ca{bottom:716.251243px;}
.y21c{bottom:717.463660px;}
.ye{bottom:717.723450px;}
.yca{bottom:722.355469px;}
.y129{bottom:729.630432px;}
.y30b{bottom:731.215838px;}
.y2c9{bottom:731.245243px;}
.y1bb{bottom:731.422806px;}
.y58{bottom:732.165344px;}
.y178{bottom:733.134271px;}
.y98{bottom:733.299261px;}
.yad{bottom:733.305176px;}
.y147{bottom:733.305267px;}
.y14d{bottom:733.305313px;}
.y247{bottom:733.440285px;}
.y1de{bottom:733.447781px;}
.yd{bottom:736.473450px;}
.yc9{bottom:737.298019px;}
.y19b{bottom:737.302009px;}
.yc8{bottom:741.105469px;}
.y21b{bottom:745.551910px;}
.y127{bottom:745.787979px;}
.y30a{bottom:746.209838px;}
.y2c8{bottom:746.239243px;}
.y126{bottom:748.380432px;}
.y57{bottom:750.915344px;}
.y177{bottom:751.884271px;}
.y97{bottom:752.049261px;}
.yac{bottom:752.055176px;}
.y146{bottom:752.055267px;}
.y246{bottom:752.190285px;}
.y19a{bottom:752.296009px;}
.y14c{bottom:752.955322px;}
.yc{bottom:755.223450px;}
.yc6{bottom:755.912979px;}
.yc4{bottom:756.048019px;}
.yc3{bottom:759.855469px;}
.y309{bottom:761.203838px;}
.y2c7{bottom:761.233243px;}
.y123{bottom:764.377487px;}
.y122{bottom:767.130269px;}
.y125{bottom:767.130432px;}
.y1ba{bottom:768.922760px;}
.y56{bottom:769.665344px;}
.y176{bottom:770.634271px;}
.y96{bottom:770.799261px;}
.yab{bottom:770.805176px;}
.y145{bottom:770.805267px;}
.y245{bottom:770.940285px;}
.y1dd{bottom:770.947781px;}
.y21a{bottom:771.037975px;}
.y14b{bottom:771.705322px;}
.yb{bottom:773.973450px;}
.yc2{bottom:774.664490px;}
.y308{bottom:776.197838px;}
.y2c6{bottom:776.227243px;}
.yc1{bottom:778.605469px;}
.y55{bottom:788.415344px;}
.y175{bottom:789.384271px;}
.y95{bottom:789.549261px;}
.yaa{bottom:789.555176px;}
.y144{bottom:789.555267px;}
.y244{bottom:789.690285px;}
.y1dc{bottom:789.697781px;}
.y320{bottom:790.490588px;}
.y307{bottom:791.191838px;}
.y2c5{bottom:791.221243px;}
.ya{bottom:792.723450px;}
.ybe{bottom:793.414490px;}
.y13f{bottom:795.254974px;}
.y13e{bottom:796.155424px;}
.ybd{bottom:797.355274px;}
.yc0{bottom:797.355469px;}
.y199{bottom:797.596759px;}
.y31f{bottom:805.484588px;}
.y306{bottom:806.185838px;}
.y2c4{bottom:806.215243px;}
.y54{bottom:807.165344px;}
.y94{bottom:808.299261px;}
.ya9{bottom:808.305176px;}
.y143{bottom:808.305267px;}
.y243{bottom:808.440285px;}
.y1db{bottom:808.447781px;}
.y9{bottom:811.473450px;}
.y198{bottom:812.590759px;}
.y219{bottom:814.030975px;}
.y305{bottom:821.179838px;}
.y2c3{bottom:821.209243px;}
.y1ec{bottom:822.670990px;}
.y10f{bottom:825.480011px;}
.y53{bottom:825.915344px;}
.y93{bottom:827.049261px;}
.ya8{bottom:827.055176px;}
.y121{bottom:827.055267px;}
.y242{bottom:827.190285px;}
.y1da{bottom:827.197781px;}
.y111{bottom:836.127411px;}
.y304{bottom:836.173838px;}
.y2c2{bottom:836.203243px;}
.y31e{bottom:836.326838px;}
.y10e{bottom:837.555450px;}
.y52{bottom:844.665344px;}
.y92{bottom:845.799261px;}
.ya7{bottom:845.805176px;}
.y120{bottom:845.805267px;}
.y241{bottom:845.940285px;}
.y1d9{bottom:845.947781px;}
.y1b9{bottom:849.652383px;}
.y303{bottom:851.167838px;}
.y2c1{bottom:851.197243px;}
.y31d{bottom:851.320838px;}
.y8{bottom:855.656208px;}
.y51{bottom:863.415344px;}
.y91{bottom:864.549261px;}
.y142{bottom:864.549267px;}
.ya6{bottom:864.555176px;}
.y11f{bottom:864.555267px;}
.y240{bottom:864.690285px;}
.y1d8{bottom:864.697781px;}
.y302{bottom:866.161838px;}
.y2c0{bottom:866.191243px;}
.y31c{bottom:866.314838px;}
.y1b8{bottom:868.445883px;}
.y7{bottom:870.650208px;}
.y301{bottom:881.155838px;}
.y2bf{bottom:881.185243px;}
.y31b{bottom:881.308838px;}
.y50{bottom:882.165344px;}
.y90{bottom:883.299261px;}
.ya5{bottom:883.305176px;}
.y11e{bottom:883.305267px;}
.y23f{bottom:883.440285px;}
.y1b7{bottom:887.162883px;}
.y109{bottom:889.006531px;}
.y108{bottom:892.080414px;}
.y10b{bottom:892.875275px;}
.y300{bottom:896.149838px;}
.y2be{bottom:896.179243px;}
.y10d{bottom:896.263824px;}
.y31a{bottom:896.302838px;}
.y11c{bottom:899.463043px;}
.y4f{bottom:900.915344px;}
.y8f{bottom:902.049261px;}
.ya4{bottom:902.055176px;}
.y11b{bottom:902.055267px;}
.y1d7{bottom:902.197781px;}
.y1b6{bottom:905.878913px;}
.y1b4{bottom:909.793780px;}
.y2ff{bottom:911.143838px;}
.y2bd{bottom:911.173243px;}
.y319{bottom:911.296838px;}
.y6{bottom:913.250244px;}
.y4e{bottom:919.665344px;}
.y8e{bottom:920.799261px;}
.ya3{bottom:920.805176px;}
.y11a{bottom:920.805267px;}
.y1b3{bottom:924.787780px;}
.y2fe{bottom:926.137838px;}
.y2bc{bottom:926.167243px;}
.y318{bottom:926.290838px;}
.y1b5{bottom:933.967163px;}
.y105{bottom:934.531494px;}
.y104{bottom:937.230469px;}
.y4d{bottom:938.415344px;}
.y8d{bottom:939.549261px;}
.ya2{bottom:939.555176px;}
.y119{bottom:939.555267px;}
.y1b2{bottom:939.781780px;}
.y107{bottom:940.500275px;}
.y2fd{bottom:941.131838px;}
.y2bb{bottom:941.161243px;}
.y317{bottom:941.284838px;}
.y270{bottom:946.593921px;}
.y2fc{bottom:956.125838px;}
.y2ba{bottom:956.155243px;}
.y316{bottom:956.278838px;}
.y7c{bottom:957.165344px;}
.y5{bottom:957.936768px;}
.y8c{bottom:958.299261px;}
.ya1{bottom:958.305176px;}
.y118{bottom:958.305267px;}
.y1f3{bottom:961.593921px;}
.y26f{bottom:965.373719px;}
.y2fb{bottom:971.119838px;}
.y2b9{bottom:971.149243px;}
.y315{bottom:971.272838px;}
.y4c{bottom:975.915344px;}
.y8b{bottom:977.049261px;}
.ya0{bottom:977.055176px;}
.y117{bottom:977.055267px;}
.y101{bottom:979.304993px;}
.y1f2{bottom:980.373719px;}
.y100{bottom:981.930267px;}
.y26e{bottom:984.090719px;}
.y103{bottom:985.125275px;}
.y2fa{bottom:986.113838px;}
.y2b8{bottom:986.143243px;}
.y314{bottom:986.266838px;}
.y7b{bottom:994.665344px;}
.y8a{bottom:995.799261px;}
.y9f{bottom:995.805176px;}
.y116{bottom:995.805267px;}
.y1f1{bottom:999.090719px;}
.y1b1{bottom:999.961777px;}
.y2f9{bottom:1001.107838px;}
.y2b7{bottom:1001.137243px;}
.y313{bottom:1001.260838px;}
.y26d{bottom:1002.807719px;}
.y4{bottom:1008.936768px;}
.y7a{bottom:1013.415344px;}
.y89{bottom:1014.549261px;}
.ybc{bottom:1014.555267px;}
.y2f8{bottom:1016.101838px;}
.y2b6{bottom:1016.131243px;}
.y312{bottom:1016.254838px;}
.y1f0{bottom:1017.807719px;}
.y1b0{bottom:1018.755277px;}
.y26c{bottom:1021.524024px;}
.y2f7{bottom:1031.095838px;}
.y2b5{bottom:1031.125243px;}
.y311{bottom:1031.248838px;}
.y4b{bottom:1032.165344px;}
.y88{bottom:1033.299261px;}
.y9e{bottom:1033.305176px;}
.ybb{bottom:1033.305267px;}
.y1ef{bottom:1036.524024px;}
.y1af{bottom:1037.472277px;}
.y2f6{bottom:1046.089838px;}
.y2b4{bottom:1046.119243px;}
.yb9{bottom:1046.168976px;}
.y310{bottom:1046.242838px;}
.yb6{bottom:1048.247955px;}
.y26b{bottom:1049.612274px;}
.y4a{bottom:1050.915344px;}
.y3{bottom:1051.470154px;}
.y87{bottom:1052.049261px;}
.yb8{bottom:1052.055267px;}
.y1ae{bottom:1056.189277px;}
.y2f5{bottom:1061.083838px;}
.y2b3{bottom:1061.113243px;}
.y30f{bottom:1061.236838px;}
.y1ee{bottom:1064.612274px;}
.y49{bottom:1069.665344px;}
.y86{bottom:1070.799261px;}
.y115{bottom:1070.805267px;}
.y1ad{bottom:1075.082272px;}
.y26a{bottom:1075.108844px;}
.y2f4{bottom:1076.077838px;}
.y2b2{bottom:1076.107243px;}
.y30e{bottom:1076.230838px;}
.yfe{bottom:1080.181458px;}
.yfd{bottom:1082.655446px;}
.y48{bottom:1088.415344px;}
.y85{bottom:1089.549261px;}
.y114{bottom:1089.555267px;}
.y1ac{bottom:1090.076272px;}
.y221{bottom:1090.096670px;}
.y1ed{bottom:1090.102240px;}
.y269{bottom:1090.102844px;}
.y2f3{bottom:1091.071838px;}
.y2b1{bottom:1091.101243px;}
.y30d{bottom:1091.224838px;}
.y47{bottom:1125.794861px;}
.h19{height:10.198500px;}
.h26{height:10.498500px;}
.h15{height:10.500000px;}
.h16{height:11.400000px;}
.h30{height:12.750000px;}
.he{height:12.898500px;}
.h10{height:12.900000px;}
.hf{height:13.048500px;}
.h17{height:13.050000px;}
.hd{height:14.099999px;}
.h23{height:14.101500px;}
.h25{height:14.548500px;}
.h24{height:14.550000px;}
.h11{height:14.700000px;}
.h18{height:15.000000px;}
.h27{height:16.198500px;}
.hb{height:16.200000px;}
.h28{height:16.501500px;}
.h14{height:16.650000px;}
.h13{height:16.651500px;}
.h2b{height:17.398500px;}
.h29{height:18.784694px;}
.h2a{height:23.165789px;}
.h2d{height:23.623192px;}
.h2c{height:29.827242px;}
.h2e{height:35.400000px;}
.hc{height:42.010498px;}
.h2{height:42.048000px;}
.h1d{height:42.384000px;}
.h12{height:42.610648px;}
.h3{height:44.676000px;}
.h8{height:47.280000px;}
.h1a{height:48.552000px;}
.h39{height:48.554780px;}
.h3b{height:48.554958px;}
.h33{height:48.554969px;}
.h36{height:48.555879px;}
.h34{height:48.606027px;}
.h3c{height:48.606078px;}
.h3a{height:48.606806px;}
.h37{height:48.611414px;}
.h1e{height:52.980000px;}
.h38{height:53.160000px;}
.h31{height:53.519780px;}
.h32{height:53.519963px;}
.h1b{height:54.362362px;}
.h1c{height:54.362957px;}
.h4{height:55.461000px;}
.h2f{height:55.582223px;}
.ha{height:57.120000px;}
.h3d{height:57.120092px;}
.h20{height:57.180000px;}
.h21{height:57.397603px;}
.h22{height:59.004000px;}
.h9{height:59.340000px;}
.h6{height:63.792000px;}
.h7{height:64.866000px;}
.h1f{height:71.208000px;}
.h5{height:85.056000px;}
.h35{height:85.333020px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w10{width:7.663500px;}
.w14{width:9.028500px;}
.w1e{width:9.030000px;}
.w3{width:9.285000px;}
.w12{width:9.525000px;}
.w1b{width:9.765000px;}
.w16{width:10.185000px;}
.w8{width:10.590000px;}
.w1a{width:10.905000px;}
.w9{width:11.610000px;}
.w18{width:12.103500px;}
.wd{width:12.105000px;}
.w1c{width:12.344999px;}
.w2{width:12.750000px;}
.w17{width:12.795000px;}
.w20{width:12.870000px;}
.w13{width:12.913500px;}
.w11{width:13.275000px;}
.w15{width:13.708500px;}
.w1d{width:13.784999px;}
.w21{width:15.450000px;}
.wc{width:15.495000px;}
.w1f{width:16.980000px;}
.we{width:17.414999px;}
.wb{width:17.534999px;}
.w19{width:17.610000px;}
.wa{width:17.611500px;}
.w5{width:24.314999px;}
.w6{width:25.800000px;}
.w7{width:26.324999px;}
.wf{width:30.525000px;}
.w4{width:33.900000px;}
.w25{width:61.365000px;}
.w26{width:71.445002px;}
.w22{width:96.000000px;}
.w24{width:99.703503px;}
.w27{width:114.661503px;}
.w23{width:199.905006px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x10{left:-1.565689px;}
.x0{left:0.000000px;}
.x45{left:32.471849px;}
.x4d{left:33.580050px;}
.x4a{left:40.503748px;}
.x4e{left:42.948903px;}
.x4b{left:53.328603px;}
.x47{left:58.068003px;}
.x3{left:76.535402px;}
.x4c{left:82.953753px;}
.x5{left:85.884000px;}
.x9{left:87.188999px;}
.xa{left:88.209000px;}
.x4{left:89.349003px;}
.xe{left:92.094000px;}
.xd{left:94.134000px;}
.x49{left:95.560947px;}
.x7{left:100.914000px;}
.x8{left:102.398998px;}
.x1b{left:104.023350px;}
.x31{left:107.490005px;}
.x38{left:109.389004px;}
.x6{left:110.499000px;}
.x22{left:113.230499px;}
.x41{left:114.440248px;}
.x32{left:116.437649px;}
.x37{left:118.736252px;}
.x2{left:119.817902px;}
.x39{left:122.423847px;}
.x23{left:124.154400px;}
.x46{left:126.976204px;}
.x12{left:128.940898px;}
.x1e{left:141.709499px;}
.x25{left:146.356499px;}
.x1f{left:153.788555px;}
.x48{left:154.880848px;}
.x26{left:156.169052px;}
.x3f{left:158.535896px;}
.x30{left:159.984455px;}
.x3c{left:174.445496px;}
.xf{left:179.696995px;}
.x20{left:181.462498px;}
.x40{left:183.348598px;}
.x44{left:184.667250px;}
.x3d{left:187.378796px;}
.x2b{left:192.349342px;}
.x24{left:197.933098px;}
.x21{left:199.033356px;}
.x11{left:210.285896px;}
.x33{left:224.812500px;}
.x42{left:229.518745px;}
.x2e{left:233.860497px;}
.xb{left:238.273499px;}
.x34{left:241.763100px;}
.x2f{left:247.843208px;}
.x43{left:253.589104px;}
.xc{left:255.947411px;}
.x1c{left:265.477500px;}
.x35{left:269.086510px;}
.x36{left:276.814041px;}
.x1d{left:278.567253px;}
.x27{left:337.754997px;}
.x28{left:347.559746px;}
.x3a{left:370.930504px;}
.x29{left:372.505508px;}
.x2a{left:384.907928px;}
.x3b{left:386.466888px;}
.x3e{left:417.485395px;}
.x2c{left:422.796021px;}
.x2d{left:433.700867px;}
.x13{left:459.212997px;}
.x14{left:466.941284px;}
.x17{left:468.801315px;}
.x16{left:472.551315px;}
.x18{left:476.225400px;}
.x56{left:478.202540px;}
.x58{left:484.726658px;}
.x15{left:511.626284px;}
.x51{left:566.611496px;}
.x52{left:592.475098px;}
.x57{left:650.549561px;}
.x19{left:680.407516px;}
.x4f{left:701.318985px;}
.x1a{left:714.538788px;}
.x50{left:725.697922px;}
.x1{left:728.220612px;}
.x53{left:790.053040px;}
.x55{left:800.162533px;}
.x54{left:816.378021px;}
@media print{
.v3{vertical-align:-13.344076pt;}
.va{vertical-align:-11.330695pt;}
.v7{vertical-align:-9.310221pt;}
.v9{vertical-align:-3.200195pt;}
.v1{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.266602pt;}
.v6{vertical-align:9.310221pt;}
.v8{vertical-align:13.344076pt;}
.v4{vertical-align:18.673014pt;}
.v2{vertical-align:21.333333pt;}
.vb{vertical-align:32.694240pt;}
.ls6f{letter-spacing:-1.066667pt;}
.ls6c{letter-spacing:-1.013333pt;}
.ls6d{letter-spacing:-0.960000pt;}
.ls6e{letter-spacing:-0.853333pt;}
.ls69{letter-spacing:-0.746667pt;}
.ls6b{letter-spacing:-0.640000pt;}
.ls66{letter-spacing:-0.544000pt;}
.ls6a{letter-spacing:-0.533333pt;}
.ls74{letter-spacing:-0.480000pt;}
.ls63{letter-spacing:-0.453333pt;}
.ls3a{letter-spacing:-0.426667pt;}
.ls37{letter-spacing:-0.373333pt;}
.ls93{letter-spacing:-0.362667pt;}
.lse{letter-spacing:-0.320000pt;}
.ls92{letter-spacing:-0.317333pt;}
.ls96{letter-spacing:-0.272000pt;}
.ls36{letter-spacing:-0.266667pt;}
.ls98{letter-spacing:-0.226667pt;}
.ls3b{letter-spacing:-0.213333pt;}
.ls99{letter-spacing:-0.181333pt;}
.ls38{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls91{letter-spacing:-0.045333pt;}
.ls10{letter-spacing:-0.037342pt;}
.lsd{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000077pt;}
.ls4a{letter-spacing:0.001804pt;}
.ls52{letter-spacing:0.004887pt;}
.ls17{letter-spacing:0.005333pt;}
.lsc{letter-spacing:0.006433pt;}
.ls42{letter-spacing:0.006474pt;}
.ls40{letter-spacing:0.006514pt;}
.ls3f{letter-spacing:0.007002pt;}
.ls4e{letter-spacing:0.007042pt;}
.ls43{letter-spacing:0.007043pt;}
.ls4b{letter-spacing:0.007551pt;}
.ls46{letter-spacing:0.009135pt;}
.ls4{letter-spacing:0.009138pt;}
.ls3c{letter-spacing:0.009158pt;}
.ls3e{letter-spacing:0.009368pt;}
.ls41{letter-spacing:0.009370pt;}
.lsa{letter-spacing:0.009375pt;}
.ls9{letter-spacing:0.009391pt;}
.ls3d{letter-spacing:0.009411pt;}
.ls45{letter-spacing:0.009452pt;}
.ls51{letter-spacing:0.009668pt;}
.ls44{letter-spacing:0.010667pt;}
.ls55{letter-spacing:0.011532pt;}
.ls4f{letter-spacing:0.026410pt;}
.ls11{letter-spacing:0.037342pt;}
.ls7b{letter-spacing:0.045333pt;}
.ls3{letter-spacing:0.053333pt;}
.ls4d{letter-spacing:0.053347pt;}
.ls75{letter-spacing:0.080000pt;}
.lsa0{letter-spacing:0.090667pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.160000pt;}
.ls77{letter-spacing:0.181333pt;}
.ls1{letter-spacing:0.213333pt;}
.ls28{letter-spacing:0.229316pt;}
.ls78{letter-spacing:0.234667pt;}
.ls79{letter-spacing:0.249333pt;}
.ls61{letter-spacing:0.250667pt;}
.ls7d{letter-spacing:0.256000pt;}
.ls31{letter-spacing:0.266667pt;}
.ls7c{letter-spacing:0.272000pt;}
.ls56{letter-spacing:0.277333pt;}
.ls2a{letter-spacing:0.282656pt;}
.ls5e{letter-spacing:0.293333pt;}
.ls9b{letter-spacing:0.317333pt;}
.ls32{letter-spacing:0.320000pt;}
.ls5d{letter-spacing:0.341333pt;}
.ls34{letter-spacing:0.346667pt;}
.ls1f{letter-spacing:0.351993pt;}
.ls8e{letter-spacing:0.362667pt;}
.ls1e{letter-spacing:0.373333pt;}
.ls2f{letter-spacing:0.399980pt;}
.ls97{letter-spacing:0.408000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls82{letter-spacing:0.430667pt;}
.ls8a{letter-spacing:0.453333pt;}
.ls1b{letter-spacing:0.469327pt;}
.ls7e{letter-spacing:0.476000pt;}
.ls19{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.496000pt;}
.ls7a{letter-spacing:0.498667pt;}
.ls83{letter-spacing:0.521333pt;}
.ls26{letter-spacing:0.533333pt;}
.ls8b{letter-spacing:0.544000pt;}
.ls23{letter-spacing:0.549296pt;}
.ls2c{letter-spacing:0.560000pt;}
.ls9f{letter-spacing:0.566667pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls87{letter-spacing:0.589333pt;}
.ls9c{letter-spacing:0.634667pt;}
.ls14{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.666667pt;}
.ls73{letter-spacing:0.677333pt;}
.ls84{letter-spacing:0.680000pt;}
.ls13{letter-spacing:0.693333pt;}
.ls2e{letter-spacing:0.720000pt;}
.ls8c{letter-spacing:0.725333pt;}
.ls27{letter-spacing:0.746667pt;}
.ls9d{letter-spacing:0.748000pt;}
.ls94{letter-spacing:0.770667pt;}
.ls29{letter-spacing:0.773333pt;}
.ls2b{letter-spacing:0.800000pt;}
.ls85{letter-spacing:0.816000pt;}
.ls24{letter-spacing:0.826667pt;}
.ls1a{letter-spacing:0.853333pt;}
.ls9a{letter-spacing:0.861333pt;}
.ls30{letter-spacing:0.906667pt;}
.ls21{letter-spacing:0.912000pt;}
.ls57{letter-spacing:0.933333pt;}
.ls89{letter-spacing:0.952000pt;}
.ls5c{letter-spacing:0.960000pt;}
.ls16{letter-spacing:0.986667pt;}
.ls76{letter-spacing:0.997333pt;}
.ls70{letter-spacing:1.007956pt;}
.ls20{letter-spacing:1.013333pt;}
.ls90{letter-spacing:1.042667pt;}
.ls25{letter-spacing:1.066667pt;}
.ls95{letter-spacing:1.088000pt;}
.ls35{letter-spacing:1.120000pt;}
.ls7f{letter-spacing:1.133333pt;}
.ls60{letter-spacing:1.173333pt;}
.ls33{letter-spacing:1.226667pt;}
.ls80{letter-spacing:1.269333pt;}
.ls58{letter-spacing:1.280000pt;}
.ls9e{letter-spacing:1.314667pt;}
.ls5a{letter-spacing:1.333333pt;}
.ls7{letter-spacing:1.333667pt;}
.ls88{letter-spacing:1.360000pt;}
.ls71{letter-spacing:1.386667pt;}
.ls81{letter-spacing:1.405333pt;}
.ls5b{letter-spacing:1.440000pt;}
.ls59{letter-spacing:1.493333pt;}
.ls62{letter-spacing:1.546667pt;}
.ls8f{letter-spacing:1.586667pt;}
.ls65{letter-spacing:1.600000pt;}
.ls64{letter-spacing:1.653333pt;}
.ls5f{letter-spacing:1.706667pt;}
.ls86{letter-spacing:1.722667pt;}
.ls68{letter-spacing:1.813333pt;}
.ls22{letter-spacing:1.973333pt;}
.ls72{letter-spacing:2.026667pt;}
.ls8{letter-spacing:2.027173pt;}
.ls8d{letter-spacing:2.176000pt;}
.ls67{letter-spacing:2.506667pt;}
.ls0{letter-spacing:2.533333pt;}
.ls50{letter-spacing:2.666155pt;}
.ls6{letter-spacing:3.307493pt;}
.ls5{letter-spacing:3.520880pt;}
.ls53{letter-spacing:3.900652pt;}
.lsb{letter-spacing:11.842960pt;}
.ls49{letter-spacing:11.896306pt;}
.ls47{letter-spacing:14.830373pt;}
.ls48{letter-spacing:16.265648pt;}
.ls54{letter-spacing:19.226698pt;}
.ls4c{letter-spacing:19.240050pt;}
.wsa3{word-spacing:-13.184000pt;}
.ws19{word-spacing:-12.928000pt;}
.ws75{word-spacing:-12.266667pt;}
.ws76{word-spacing:-11.786667pt;}
.ws16{word-spacing:-11.520000pt;}
.ws66{word-spacing:-11.306667pt;}
.ws8d{word-spacing:-11.200000pt;}
.ws8c{word-spacing:-11.093333pt;}
.ws44{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws97{word-spacing:-10.773333pt;}
.wsa4{word-spacing:-10.698667pt;}
.ws86{word-spacing:-10.666667pt;}
.wsb7{word-spacing:-10.472000pt;}
.wsb3{word-spacing:-10.426667pt;}
.ws18{word-spacing:-10.346667pt;}
.ws5{word-spacing:-10.240000pt;}
.ws94{word-spacing:-10.026667pt;}
.ws9b{word-spacing:-9.920000pt;}
.wsb1{word-spacing:-9.837333pt;}
.wsa2{word-spacing:-9.792000pt;}
.ws8e{word-spacing:-9.706667pt;}
.ws67{word-spacing:-9.610667pt;}
.ws17{word-spacing:-9.344000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws3{word-spacing:-7.728000pt;}
.ws9{word-spacing:-6.727466pt;}
.ws93{word-spacing:-6.421333pt;}
.ws6d{word-spacing:-3.306667pt;}
.ws4c{word-spacing:-3.146667pt;}
.ws72{word-spacing:-2.720000pt;}
.wsd4{word-spacing:-2.085333pt;}
.ws7e{word-spacing:-1.706667pt;}
.ws5d{word-spacing:-1.546667pt;}
.ws7c{word-spacing:-1.280000pt;}
.ws30{word-spacing:-1.226667pt;}
.wsc{word-spacing:-1.173333pt;}
.wscc{word-spacing:-1.133333pt;}
.wsd{word-spacing:-1.120000pt;}
.ws40{word-spacing:-1.066667pt;}
.wsaf{word-spacing:-1.042667pt;}
.wsa0{word-spacing:-1.013333pt;}
.wsad{word-spacing:-0.997333pt;}
.ws25{word-spacing:-0.960000pt;}
.wsaa{word-spacing:-0.952000pt;}
.ws4e{word-spacing:-0.906667pt;}
.wsa9{word-spacing:-0.861333pt;}
.ws3c{word-spacing:-0.853333pt;}
.wsac{word-spacing:-0.816000pt;}
.ws46{word-spacing:-0.800000pt;}
.ws31{word-spacing:-0.746667pt;}
.ws5e{word-spacing:-0.693333pt;}
.ws4f{word-spacing:-0.586667pt;}
.wsc4{word-spacing:-0.544000pt;}
.ws13{word-spacing:-0.533333pt;}
.ws26{word-spacing:-0.480000pt;}
.wsb8{word-spacing:-0.453333pt;}
.ws11{word-spacing:-0.426667pt;}
.ws82{word-spacing:-0.373333pt;}
.ws52{word-spacing:-0.320000pt;}
.wsce{word-spacing:-0.317333pt;}
.ws5b{word-spacing:-0.266667pt;}
.ws6f{word-spacing:-0.250667pt;}
.ws15{word-spacing:-0.213333pt;}
.wsbc{word-spacing:-0.181333pt;}
.ws62{word-spacing:-0.160000pt;}
.ws2d{word-spacing:-0.106667pt;}
.wsc3{word-spacing:-0.090667pt;}
.ws8{word-spacing:-0.074685pt;}
.ws7{word-spacing:-0.053347pt;}
.ws4a{word-spacing:-0.053333pt;}
.ws6{word-spacing:-0.037342pt;}
.wsa{word-spacing:0.000000pt;}
.ws14{word-spacing:0.037342pt;}
.wsae{word-spacing:0.045333pt;}
.ws7d{word-spacing:0.053333pt;}
.wsba{word-spacing:0.090667pt;}
.ws4d{word-spacing:0.106667pt;}
.ws64{word-spacing:0.160000pt;}
.wsc0{word-spacing:0.181333pt;}
.ws6b{word-spacing:0.213333pt;}
.wsc5{word-spacing:0.226667pt;}
.ws2f{word-spacing:0.266667pt;}
.ws71{word-spacing:0.320000pt;}
.ws43{word-spacing:0.373333pt;}
.ws57{word-spacing:0.426667pt;}
.ws74{word-spacing:0.453333pt;}
.ws51{word-spacing:0.480000pt;}
.ws45{word-spacing:0.533333pt;}
.ws42{word-spacing:0.586667pt;}
.wsb0{word-spacing:0.589333pt;}
.ws10{word-spacing:0.640000pt;}
.ws12{word-spacing:0.693333pt;}
.ws2a{word-spacing:0.746667pt;}
.wsd3{word-spacing:0.770667pt;}
.wsf{word-spacing:0.800000pt;}
.ws56{word-spacing:0.853333pt;}
.ws6e{word-spacing:0.906667pt;}
.wsab{word-spacing:0.952000pt;}
.ws3f{word-spacing:0.960000pt;}
.wsb2{word-spacing:0.997333pt;}
.ws1f{word-spacing:1.013333pt;}
.ws80{word-spacing:1.066667pt;}
.ws65{word-spacing:1.088000pt;}
.wse{word-spacing:1.120000pt;}
.wsd0{word-spacing:1.133333pt;}
.ws1a{word-spacing:1.173333pt;}
.wsbd{word-spacing:1.224000pt;}
.ws24{word-spacing:1.226667pt;}
.ws50{word-spacing:1.280000pt;}
.ws2b{word-spacing:1.333333pt;}
.ws85{word-spacing:1.360000pt;}
.ws81{word-spacing:1.386667pt;}
.ws1c{word-spacing:1.440000pt;}
.ws92{word-spacing:1.493333pt;}
.wsd1{word-spacing:1.541333pt;}
.ws41{word-spacing:1.546667pt;}
.ws37{word-spacing:1.600000pt;}
.ws55{word-spacing:1.653333pt;}
.wsb6{word-spacing:1.677333pt;}
.ws99{word-spacing:1.706667pt;}
.wsb4{word-spacing:1.722667pt;}
.ws22{word-spacing:1.760000pt;}
.ws1b{word-spacing:1.813333pt;}
.ws39{word-spacing:1.866667pt;}
.ws38{word-spacing:1.920000pt;}
.ws54{word-spacing:1.973333pt;}
.wsa1{word-spacing:2.026667pt;}
.ws35{word-spacing:2.080000pt;}
.ws34{word-spacing:2.133333pt;}
.ws2e{word-spacing:2.186667pt;}
.wsbb{word-spacing:2.221333pt;}
.ws7b{word-spacing:2.240000pt;}
.wsbf{word-spacing:2.266667pt;}
.ws33{word-spacing:2.293333pt;}
.wsc7{word-spacing:2.312000pt;}
.ws49{word-spacing:2.346667pt;}
.ws20{word-spacing:2.400000pt;}
.wsb5{word-spacing:2.402667pt;}
.ws36{word-spacing:2.453333pt;}
.ws21{word-spacing:2.506667pt;}
.ws3d{word-spacing:2.560000pt;}
.wsc2{word-spacing:2.584000pt;}
.ws23{word-spacing:2.613333pt;}
.ws7f{word-spacing:2.666667pt;}
.ws96{word-spacing:2.720000pt;}
.ws59{word-spacing:2.773333pt;}
.ws3a{word-spacing:2.826667pt;}
.ws5c{word-spacing:2.880000pt;}
.wsca{word-spacing:2.901333pt;}
.ws58{word-spacing:2.933333pt;}
.wsc9{word-spacing:2.946667pt;}
.ws73{word-spacing:2.986667pt;}
.wscb{word-spacing:3.037333pt;}
.ws6c{word-spacing:3.146667pt;}
.ws1e{word-spacing:3.200000pt;}
.wsa5{word-spacing:3.218667pt;}
.ws8a{word-spacing:3.306667pt;}
.wsc1{word-spacing:3.309333pt;}
.ws27{word-spacing:3.360000pt;}
.wsa7{word-spacing:3.400000pt;}
.ws6a{word-spacing:3.413333pt;}
.ws60{word-spacing:3.466667pt;}
.wsbe{word-spacing:3.490667pt;}
.ws29{word-spacing:3.520000pt;}
.wsa6{word-spacing:3.536000pt;}
.ws9c{word-spacing:3.573333pt;}
.ws2c{word-spacing:3.680000pt;}
.wscf{word-spacing:3.717333pt;}
.ws32{word-spacing:3.733333pt;}
.wsa8{word-spacing:3.762667pt;}
.ws1d{word-spacing:3.786667pt;}
.ws4b{word-spacing:3.840000pt;}
.wsd2{word-spacing:3.898667pt;}
.wsb9{word-spacing:3.944000pt;}
.ws70{word-spacing:3.946667pt;}
.ws9e{word-spacing:4.000000pt;}
.ws8b{word-spacing:4.053333pt;}
.ws95{word-spacing:4.106667pt;}
.wsc6{word-spacing:4.216000pt;}
.ws3b{word-spacing:4.320000pt;}
.ws3e{word-spacing:4.426667pt;}
.ws53{word-spacing:4.533333pt;}
.ws5f{word-spacing:4.800000pt;}
.ws83{word-spacing:4.805333pt;}
.ws5a{word-spacing:4.853333pt;}
.wscd{word-spacing:4.986667pt;}
.wsd5{word-spacing:5.032000pt;}
.ws9d{word-spacing:5.333333pt;}
.ws63{word-spacing:5.386667pt;}
.ws61{word-spacing:5.866667pt;}
.wsc8{word-spacing:6.437333pt;}
.ws98{word-spacing:6.613333pt;}
.ws89{word-spacing:7.200000pt;}
.ws28{word-spacing:8.213333pt;}
.ws9f{word-spacing:8.480000pt;}
.ws48{word-spacing:8.802200pt;}
.ws9a{word-spacing:9.066667pt;}
.wsd6{word-spacing:9.520000pt;}
.wsd7{word-spacing:10.517333pt;}
.ws84{word-spacing:12.648000pt;}
.ws47{word-spacing:17.428791pt;}
.wsb{word-spacing:38.592000pt;}
.ws77{word-spacing:210.029333pt;}
.ws79{word-spacing:229.046749pt;}
.ws68{word-spacing:240.664913pt;}
.ws7a{word-spacing:241.835282pt;}
.ws69{word-spacing:253.453446pt;}
.ws8f{word-spacing:259.853614pt;}
.ws87{word-spacing:259.853716pt;}
.ws90{word-spacing:272.642147pt;}
.ws88{word-spacing:272.642248pt;}
.ws91{word-spacing:276.767582pt;}
.ws78{word-spacing:493.090667pt;}
._4b{margin-left:-15.957333pt;}
._1d{margin-left:-14.733333pt;}
._25{margin-left:-12.928000pt;}
._47{margin-left:-11.972533pt;}
._7{margin-left:-10.970664pt;}
._16{margin-left:-10.063997pt;}
._4a{margin-left:-8.840000pt;}
._29{margin-left:-7.946667pt;}
._46{margin-left:-5.897867pt;}
._3{margin-left:-4.634667pt;}
._27{margin-left:-3.429333pt;}
._4{margin-left:-2.522667pt;}
._0{margin-left:-1.450667pt;}
._1{width:0.930133pt;}
._23{width:1.896533pt;}
._40{width:3.109324pt;}
._2a{width:4.672448pt;}
._41{width:8.386658pt;}
._39{width:9.557333pt;}
._17{width:10.925864pt;}
._1e{width:13.056000pt;}
._5{width:14.506667pt;}
._3a{width:16.421333pt;}
._24{width:19.072000pt;}
._49{width:20.725333pt;}
._43{width:22.413343pt;}
._42{width:23.751552pt;}
._45{width:24.658218pt;}
._48{width:25.658664pt;}
._38{width:26.661333pt;}
._28{width:29.333333pt;}
._44{width:30.916802pt;}
._22{width:32.000000pt;}
._2{width:36.104500pt;}
._20{width:45.013333pt;}
._9{width:54.597334pt;}
._19{width:56.634668pt;}
._1c{width:57.664001pt;}
._21{width:66.570664pt;}
._1a{width:68.063997pt;}
._2d{width:76.080000pt;}
._c{width:81.530664pt;}
._b{width:83.397331pt;}
._a{width:88.677331pt;}
._1b{width:92.970664pt;}
._3c{width:94.837333pt;}
._18{width:99.541331pt;}
._3b{width:107.485333pt;}
._f{width:112.783997pt;}
._10{width:120.037331pt;}
._2b{width:121.816005pt;}
._15{width:126.383997pt;}
._13{width:127.930664pt;}
._6{width:129.797331pt;}
._11{width:132.090664pt;}
._e{width:133.850664pt;}
._d{width:137.477331pt;}
._3d{width:140.352000pt;}
._8{width:142.117331pt;}
._14{width:143.023997pt;}
._12{width:147.877331pt;}
._31{width:204.725328pt;}
._2f{width:215.560000pt;}
._35{width:236.125328pt;}
._32{width:240.885328pt;}
._33{width:242.335995pt;}
._37{width:248.811195pt;}
._34{width:257.794661pt;}
._2e{width:260.416533pt;}
._3e{width:263.022909pt;}
._3f{width:279.637867pt;}
._30{width:283.139229pt;}
._36{width:299.199995pt;}
._2c{width:301.465576pt;}
._26{width:605.270895pt;}
._1f{width:606.536533pt;}
.fsc{font-size:26.673067pt;}
.fsa{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs9{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fsd{font-size:50.133331pt;}
.fs2{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:53.346664pt;}
.fsb{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:0.039185pt;}
.y11d{bottom:2.306885pt;}
.y128{bottom:2.306966pt;}
.y124{bottom:2.438965pt;}
.y20{bottom:2.439046pt;}
.y25{bottom:2.440389pt;}
.y140{bottom:2.507080pt;}
.ye6{bottom:2.705607pt;}
.y38{bottom:2.705729pt;}
.y3b{bottom:2.707072pt;}
.yd5{bottom:3.372274pt;}
.yb7{bottom:3.373535pt;}
.yc5{bottom:3.373576pt;}
.y1b{bottom:3.373617pt;}
.y10a{bottom:3.438883pt;}
.y113{bottom:3.440511pt;}
.yd3{bottom:3.505737pt;}
.ybf{bottom:3.505778pt;}
.yc7{bottom:3.507080pt;}
.y28{bottom:3.507202pt;}
.y102{bottom:5.173584pt;}
.yf5{bottom:5.238932pt;}
.y35{bottom:5.239054pt;}
.y3f{bottom:5.239095pt;}
.yb2{bottom:5.239990pt;}
.ydb{bottom:5.240275pt;}
.yba{bottom:5.240316pt;}
.y18{bottom:5.240397pt;}
.y106{bottom:5.305583pt;}
.yff{bottom:5.305664pt;}
.y10c{bottom:8.778483pt;}
.y110{bottom:12.800374pt;}
.y112{bottom:22.028483pt;}
.y1{bottom:61.181335pt;}
.y46{bottom:61.777466pt;}
.y164{bottom:94.497599pt;}
.y141{bottom:99.830933pt;}
.y1d6{bottom:100.153605pt;}
.y84{bottom:100.813599pt;}
.y79{bottom:100.813639pt;}
.yb5{bottom:100.950938pt;}
.y14a{bottom:101.276268pt;}
.y1f4{bottom:101.377604pt;}
.y20a{bottom:101.674927pt;}
.y28c{bottom:101.821566pt;}
.y23e{bottom:101.826935pt;}
.y297{bottom:101.826945pt;}
.y268{bottom:101.946920pt;}
.y2f2{bottom:103.547772pt;}
.y16b{bottom:109.416666pt;}
.y2b0{bottom:111.900405pt;}
.y149{bottom:114.604268pt;}
.y1d5{bottom:116.820272pt;}
.y2f1{bottom:116.875772pt;}
.y83{bottom:117.480265pt;}
.y78{bottom:117.480306pt;}
.y209{bottom:118.341593pt;}
.y28b{bottom:118.488232pt;}
.y23d{bottom:118.493601pt;}
.y296{bottom:118.493612pt;}
.y267{bottom:118.613586pt;}
.y2af{bottom:125.228405pt;}
.yfc{bottom:125.427063pt;}
.y16a{bottom:126.109993pt;}
.y2f0{bottom:130.203772pt;}
.y2{bottom:130.225596pt;}
.y1d4{bottom:133.486938pt;}
.y82{bottom:134.146932pt;}
.y77{bottom:134.146973pt;}
.y174{bottom:134.728241pt;}
.y197{bottom:135.008241pt;}
.y218{bottom:135.008260pt;}
.y28a{bottom:135.154899pt;}
.y23c{bottom:135.160268pt;}
.y295{bottom:135.160278pt;}
.y266{bottom:135.280253pt;}
.y2ae{bottom:138.556405pt;}
.yfb{bottom:142.093730pt;}
.y169{bottom:142.747326pt;}
.y2ef{bottom:143.531772pt;}
.y1d3{bottom:150.153605pt;}
.y81{bottom:150.813599pt;}
.y76{bottom:150.813639pt;}
.y173{bottom:151.394908pt;}
.y196{bottom:151.674908pt;}
.y208{bottom:151.674927pt;}
.y289{bottom:151.821566pt;}
.y294{bottom:151.826945pt;}
.y2ad{bottom:151.884405pt;}
.y265{bottom:151.946920pt;}
.y2ee{bottom:156.859772pt;}
.yfa{bottom:158.760396pt;}
.y168{bottom:159.384660pt;}
.y45{bottom:165.160139pt;}
.y2ac{bottom:165.212405pt;}
.y1d2{bottom:166.820272pt;}
.y80{bottom:167.480265pt;}
.y75{bottom:167.480306pt;}
.y172{bottom:168.061574pt;}
.y195{bottom:168.341574pt;}
.y217{bottom:168.341593pt;}
.y288{bottom:168.488232pt;}
.y23b{bottom:168.493601pt;}
.y293{bottom:168.493612pt;}
.y264{bottom:168.613586pt;}
.y2ed{bottom:170.187772pt;}
.yf9{bottom:175.427063pt;}
.y167{bottom:176.021333pt;}
.y44{bottom:178.493472pt;}
.y2ab{bottom:178.540405pt;}
.y1d1{bottom:183.486938pt;}
.y2ec{bottom:183.515772pt;}
.y7f{bottom:184.146932pt;}
.y74{bottom:184.146973pt;}
.y171{bottom:184.728241pt;}
.y194{bottom:185.008241pt;}
.y207{bottom:185.008260pt;}
.y287{bottom:185.154899pt;}
.y292{bottom:185.160278pt;}
.y263{bottom:185.280253pt;}
.y43{bottom:191.821472pt;}
.yf8{bottom:192.093730pt;}
.y2eb{bottom:196.843772pt;}
.y1d0{bottom:200.153605pt;}
.y7e{bottom:200.813599pt;}
.y73{bottom:200.813639pt;}
.y166{bottom:200.988667pt;}
.y170{bottom:201.394908pt;}
.y193{bottom:201.674908pt;}
.y206{bottom:201.674927pt;}
.y286{bottom:201.821566pt;}
.y291{bottom:201.826945pt;}
.y262{bottom:201.946920pt;}
.y2aa{bottom:208.540405pt;}
.yf7{bottom:208.760396pt;}
.y2ea{bottom:210.171772pt;}
.y1cf{bottom:216.820272pt;}
.y72{bottom:217.480306pt;}
.y16f{bottom:218.061574pt;}
.y192{bottom:218.341574pt;}
.y205{bottom:218.341593pt;}
.y285{bottom:218.488232pt;}
.y23a{bottom:218.493591pt;}
.y290{bottom:218.493612pt;}
.y261{bottom:218.613586pt;}
.y2e9{bottom:223.499772pt;}
.y165{bottom:223.652266pt;}
.y1ce{bottom:233.486938pt;}
.y7d{bottom:234.146932pt;}
.y71{bottom:234.146973pt;}
.y16e{bottom:234.728241pt;}
.y191{bottom:235.008241pt;}
.y204{bottom:235.008260pt;}
.y284{bottom:235.154899pt;}
.y239{bottom:235.160258pt;}
.y28f{bottom:235.160278pt;}
.y260{bottom:235.280253pt;}
.y2e8{bottom:236.827772pt;}
.y39{bottom:237.976400pt;}
.yf6{bottom:242.093730pt;}
.y34{bottom:249.412008pt;}
.y1cd{bottom:250.153605pt;}
.y2e7{bottom:250.155772pt;}
.y70{bottom:250.813639pt;}
.y16d{bottom:251.394908pt;}
.y190{bottom:251.674908pt;}
.y203{bottom:251.674927pt;}
.y283{bottom:251.821566pt;}
.y238{bottom:251.826925pt;}
.y28e{bottom:251.826945pt;}
.y37{bottom:251.932007pt;}
.y25f{bottom:251.946920pt;}
.y36{bottom:254.643066pt;}
.y2e6{bottom:263.483772pt;}
.y32{bottom:266.077332pt;}
.y6f{bottom:267.480306pt;}
.y16c{bottom:268.061574pt;}
.y18f{bottom:268.341574pt;}
.y202{bottom:268.341593pt;}
.y282{bottom:268.488232pt;}
.y237{bottom:268.493571pt;}
.y163{bottom:268.493612pt;}
.y25e{bottom:268.613586pt;}
.yf4{bottom:270.196004pt;}
.y33{bottom:271.309733pt;}
.y2a9{bottom:275.274410pt;}
.yf3{bottom:275.427063pt;}
.y2e5{bottom:276.811772pt;}
.y13d{bottom:281.893717pt;}
.y1cc{bottom:283.486938pt;}
.y6e{bottom:284.146973pt;}
.y30{bottom:284.472005pt;}
.y18e{bottom:285.008241pt;}
.y201{bottom:285.008260pt;}
.y281{bottom:285.154899pt;}
.y236{bottom:285.160238pt;}
.y162{bottom:285.160278pt;}
.y25d{bottom:285.280253pt;}
.y31{bottom:287.976400pt;}
.y2a8{bottom:288.602410pt;}
.y2e4{bottom:290.139772pt;}
.yf2{bottom:292.093730pt;}
.y13c{bottom:298.560384pt;}
.y2e{bottom:299.410665pt;}
.y6d{bottom:300.813639pt;}
.y18d{bottom:301.674908pt;}
.y216{bottom:301.674927pt;}
.y280{bottom:301.821566pt;}
.y235{bottom:301.826904pt;}
.y161{bottom:301.826945pt;}
.y2a7{bottom:301.930410pt;}
.y25c{bottom:301.946920pt;}
.y2e3{bottom:303.467772pt;}
.yf0{bottom:303.527995pt;}
.y2f{bottom:304.643066pt;}
.yf1{bottom:308.760396pt;}
.yef{bottom:308.760417pt;}
.y13b{bottom:315.227051pt;}
.y2a6{bottom:315.258410pt;}
.y2e2{bottom:316.795772pt;}
.y6c{bottom:317.480306pt;}
.y2c{bottom:317.805339pt;}
.y18c{bottom:318.341574pt;}
.y200{bottom:318.341593pt;}
.y27f{bottom:318.488232pt;}
.y234{bottom:318.493571pt;}
.y160{bottom:318.493612pt;}
.y25b{bottom:318.613586pt;}
.y2d{bottom:321.309733pt;}
.y1ab{bottom:324.214686pt;}
.yee{bottom:325.427083pt;}
.y2a5{bottom:328.586410pt;}
.y2e1{bottom:330.123772pt;}
.y13a{bottom:331.893717pt;}
.y1cb{bottom:333.486938pt;}
.y6b{bottom:334.146973pt;}
.y2a{bottom:334.472005pt;}
.y18b{bottom:335.008241pt;}
.y215{bottom:335.008260pt;}
.y27e{bottom:335.154899pt;}
.y233{bottom:335.160238pt;}
.y15f{bottom:335.160278pt;}
.y25a{bottom:335.280253pt;}
.yed{bottom:336.861328pt;}
.y2b{bottom:337.976400pt;}
.y1aa{bottom:340.920020pt;}
.y2a4{bottom:341.914410pt;}
.yec{bottom:342.093750pt;}
.y2e0{bottom:343.451772pt;}
.y139{bottom:348.560384pt;}
.y1ca{bottom:350.153605pt;}
.y6a{bottom:350.813639pt;}
.y27{bottom:351.138672pt;}
.y1ff{bottom:351.674906pt;}
.y18a{bottom:351.674908pt;}
.y214{bottom:351.674927pt;}
.y27d{bottom:351.821566pt;}
.y232{bottom:351.826904pt;}
.y15e{bottom:351.826945pt;}
.y259{bottom:351.946920pt;}
.y29{bottom:354.643066pt;}
.y2a3{bottom:355.242410pt;}
.y2df{bottom:356.779772pt;}
.y1a9{bottom:357.557353pt;}
.yeb{bottom:358.760417pt;}
.y138{bottom:365.227051pt;}
.y1c9{bottom:366.820272pt;}
.y69{bottom:367.480306pt;}
.y1fe{bottom:368.341573pt;}
.y189{bottom:368.341574pt;}
.y213{bottom:368.341593pt;}
.y27c{bottom:368.488232pt;}
.y231{bottom:368.493571pt;}
.y15d{bottom:368.493612pt;}
.y2a2{bottom:368.570410pt;}
.y258{bottom:368.613586pt;}
.y24{bottom:368.861328pt;}
.y2de{bottom:370.107772pt;}
.y41{bottom:371.272013pt;}
.y26{bottom:371.309733pt;}
.y1a8{bottom:374.194686pt;}
.yea{bottom:375.427083pt;}
.y137{bottom:381.893717pt;}
.y2a1{bottom:381.898410pt;}
.y40{bottom:382.745321pt;}
.y2dd{bottom:383.435772pt;}
.y1c8{bottom:383.486938pt;}
.y68{bottom:384.146973pt;}
.y1fd{bottom:385.008240pt;}
.y188{bottom:385.008241pt;}
.y212{bottom:385.008260pt;}
.y27b{bottom:385.154899pt;}
.y230{bottom:385.160238pt;}
.y15c{bottom:385.160278pt;}
.y257{bottom:385.280253pt;}
.y1eb{bottom:385.286916pt;}
.y22{bottom:385.529338pt;}
.y23{bottom:387.976400pt;}
.y1a7{bottom:390.832020pt;}
.ye9{bottom:392.093750pt;}
.y2a0{bottom:395.226410pt;}
.y2dc{bottom:396.763772pt;}
.y136{bottom:398.560384pt;}
.y3e{bottom:399.411987pt;}
.y67{bottom:400.813639pt;}
.y1fc{bottom:401.674906pt;}
.y187{bottom:401.674908pt;}
.y211{bottom:401.674927pt;}
.y27a{bottom:401.821566pt;}
.y22f{bottom:401.826904pt;}
.y15b{bottom:401.826945pt;}
.y256{bottom:401.946920pt;}
.y1ea{bottom:401.953583pt;}
.y1f{bottom:402.196004pt;}
.y21{bottom:404.643066pt;}
.ye8{bottom:406.049316pt;}
.y1a6{bottom:407.469353pt;}
.y29f{bottom:408.554410pt;}
.ye7{bottom:408.760417pt;}
.y2db{bottom:410.091772pt;}
.y135{bottom:415.227051pt;}
.y1d{bottom:416.077352pt;}
.y1c7{bottom:416.820272pt;}
.y66{bottom:417.480306pt;}
.y3d{bottom:417.805339pt;}
.y1fb{bottom:418.341573pt;}
.y186{bottom:418.341574pt;}
.y210{bottom:418.341593pt;}
.y279{bottom:418.488232pt;}
.y22e{bottom:418.493571pt;}
.y15a{bottom:418.493612pt;}
.y255{bottom:418.613586pt;}
.y1e9{bottom:418.620249pt;}
.y1e{bottom:421.309733pt;}
.y29e{bottom:421.882410pt;}
.ye5{bottom:422.715983pt;}
.y2da{bottom:423.419772pt;}
.ye4{bottom:425.427083pt;}
.y134{bottom:431.893717pt;}
.y1a5{bottom:432.436686pt;}
.y65{bottom:434.146973pt;}
.y3c{bottom:434.472005pt;}
.y1a{bottom:434.592000pt;}
.y1fa{bottom:435.008240pt;}
.y185{bottom:435.008241pt;}
.y20f{bottom:435.008260pt;}
.y278{bottom:435.154899pt;}
.y22d{bottom:435.160238pt;}
.y159{bottom:435.160278pt;}
.y29d{bottom:435.210410pt;}
.y254{bottom:435.280253pt;}
.y2d9{bottom:436.747772pt;}
.ye3{bottom:436.861328pt;}
.y1c{bottom:437.976400pt;}
.ye2{bottom:442.093750pt;}
.y17{bottom:449.410685pt;}
.y2d8{bottom:450.075772pt;}
.y64{bottom:450.813639pt;}
.y1f9{bottom:451.674906pt;}
.y184{bottom:451.674908pt;}
.y20e{bottom:451.674927pt;}
.y277{bottom:451.821566pt;}
.y22c{bottom:451.826904pt;}
.y158{bottom:451.826945pt;}
.y253{bottom:451.946920pt;}
.y1e8{bottom:451.953583pt;}
.y19{bottom:454.643066pt;}
.y1a4{bottom:455.074144pt;}
.ye1{bottom:458.760417pt;}
.y2d7{bottom:463.403772pt;}
.y29c{bottom:465.175743pt;}
.y133{bottom:465.227051pt;}
.y1c6{bottom:466.820272pt;}
.y63{bottom:467.480306pt;}
.y1f8{bottom:468.341573pt;}
.y183{bottom:468.341574pt;}
.y20d{bottom:468.341593pt;}
.y1a3{bottom:468.402144pt;}
.y276{bottom:468.488232pt;}
.y22b{bottom:468.493571pt;}
.y157{bottom:468.493612pt;}
.y3a{bottom:468.597331pt;}
.y252{bottom:468.613586pt;}
.ye0{bottom:470.194661pt;}
.y16{bottom:471.309733pt;}
.ydf{bottom:475.427083pt;}
.y2d6{bottom:476.731772pt;}
.y29b{bottom:478.503743pt;}
.y1c5{bottom:483.486938pt;}
.y62{bottom:484.146973pt;}
.y1f7{bottom:485.008240pt;}
.y182{bottom:485.008241pt;}
.y20c{bottom:485.008260pt;}
.y275{bottom:485.154899pt;}
.y22a{bottom:485.160238pt;}
.y156{bottom:485.160278pt;}
.y251{bottom:485.280253pt;}
.y1e7{bottom:485.286916pt;}
.y2d5{bottom:490.059772pt;}
.yde{bottom:492.093750pt;}
.y132{bottom:498.560384pt;}
.y1c4{bottom:500.153605pt;}
.y61{bottom:500.813639pt;}
.y1f6{bottom:501.674906pt;}
.y181{bottom:501.674908pt;}
.y20b{bottom:501.674927pt;}
.y274{bottom:501.821566pt;}
.y229{bottom:501.826904pt;}
.y155{bottom:501.826945pt;}
.y250{bottom:501.946920pt;}
.y1e6{bottom:501.953583pt;}
.y2d4{bottom:503.387772pt;}
.ydd{bottom:503.527995pt;}
.y15{bottom:504.643066pt;}
.y29a{bottom:508.503743pt;}
.ydc{bottom:508.760417pt;}
.y131{bottom:515.227051pt;}
.y2d3{bottom:516.715772pt;}
.y1c3{bottom:516.820272pt;}
.y60{bottom:517.480306pt;}
.y1f5{bottom:518.341573pt;}
.y180{bottom:518.341574pt;}
.y273{bottom:518.488232pt;}
.y228{bottom:518.493571pt;}
.y154{bottom:518.493612pt;}
.y24f{bottom:518.613586pt;}
.y1e5{bottom:518.620249pt;}
.yda{bottom:520.194661pt;}
.y1a2{bottom:524.490809pt;}
.yd9{bottom:525.427083pt;}
.y2d2{bottom:530.043772pt;}
.y130{bottom:531.893717pt;}
.y1c2{bottom:533.486938pt;}
.y5f{bottom:534.146973pt;}
.y17f{bottom:535.008241pt;}
.y272{bottom:535.154899pt;}
.y153{bottom:535.160278pt;}
.y24e{bottom:535.280253pt;}
.y1e4{bottom:535.286916pt;}
.y14{bottom:537.976400pt;}
.yd7{bottom:538.590658pt;}
.yd8{bottom:538.710653pt;}
.y1a1{bottom:541.196143pt;}
.y299{bottom:541.869062pt;}
.y223{bottom:542.032392pt;}
.yd6{bottom:542.093750pt;}
.y2d1{bottom:543.371772pt;}
.y12f{bottom:548.560384pt;}
.y1c1{bottom:550.153605pt;}
.y5e{bottom:550.813639pt;}
.y17e{bottom:551.674908pt;}
.y271{bottom:551.821566pt;}
.y227{bottom:551.826904pt;}
.y152{bottom:551.826945pt;}
.y24d{bottom:551.946920pt;}
.y1e3{bottom:551.953583pt;}
.y13{bottom:554.643066pt;}
.y298{bottom:555.197062pt;}
.yd2{bottom:555.257324pt;}
.y222{bottom:555.360392pt;}
.yd4{bottom:555.377319pt;}
.y2d0{bottom:556.699772pt;}
.y1a0{bottom:557.833476pt;}
.yd1{bottom:558.760417pt;}
.y12e{bottom:565.227051pt;}
.y1c0{bottom:566.820272pt;}
.y5d{bottom:567.480306pt;}
.y17d{bottom:568.341574pt;}
.y9d{bottom:568.488232pt;}
.y28d{bottom:568.493612pt;}
.y24c{bottom:568.613586pt;}
.y1e2{bottom:568.620249pt;}
.y2cf{bottom:570.027772pt;}
.y220{bottom:571.140817pt;}
.y12{bottom:571.309733pt;}
.y19f{bottom:574.470809pt;}
.yd0{bottom:575.427083pt;}
.y12d{bottom:581.893717pt;}
.y2ce{bottom:583.355772pt;}
.y1bf{bottom:583.486938pt;}
.y5c{bottom:584.146973pt;}
.y17c{bottom:585.008241pt;}
.y9c{bottom:585.154899pt;}
.yb4{bottom:585.160116pt;}
.y226{bottom:585.160238pt;}
.y151{bottom:585.160278pt;}
.y24b{bottom:585.280253pt;}
.y1e1{bottom:585.286916pt;}
.y21f{bottom:587.834133pt;}
.y11{bottom:587.976400pt;}
.ycf{bottom:588.709351pt;}
.y19e{bottom:591.108143pt;}
.yce{bottom:592.093750pt;}
.yb1{bottom:596.594686pt;}
.y2cd{bottom:596.683772pt;}
.y12c{bottom:598.560384pt;}
.y1be{bottom:600.153605pt;}
.y5b{bottom:600.813639pt;}
.y17b{bottom:601.674908pt;}
.y9b{bottom:601.821566pt;}
.yb3{bottom:601.826782pt;}
.yb0{bottom:601.826823pt;}
.y225{bottom:601.826904pt;}
.y24a{bottom:601.946920pt;}
.y1e0{bottom:601.953583pt;}
.y150{bottom:602.626953pt;}
.y21e{bottom:604.471467pt;}
.y10{bottom:604.643066pt;}
.y19d{bottom:607.745476pt;}
.ycd{bottom:608.760417pt;}
.y2cc{bottom:610.011772pt;}
.y12b{bottom:615.227051pt;}
.y1bd{bottom:616.820272pt;}
.y5a{bottom:617.480306pt;}
.y17a{bottom:618.341574pt;}
.y9a{bottom:618.488232pt;}
.yaf{bottom:618.493490pt;}
.y224{bottom:618.493571pt;}
.y14f{bottom:618.493612pt;}
.y249{bottom:618.613586pt;}
.y1df{bottom:618.620249pt;}
.y21d{bottom:621.108800pt;}
.yf{bottom:621.309733pt;}
.ycc{bottom:622.042684pt;}
.y2cb{bottom:623.339772pt;}
.ycb{bottom:625.427083pt;}
.y12a{bottom:631.893717pt;}
.y19c{bottom:632.712809pt;}
.y1bc{bottom:633.486938pt;}
.y59{bottom:634.146973pt;}
.y179{bottom:635.008241pt;}
.y99{bottom:635.154899pt;}
.yae{bottom:635.160156pt;}
.y148{bottom:635.160238pt;}
.y248{bottom:635.280253pt;}
.y14e{bottom:635.960286pt;}
.y30c{bottom:636.641634pt;}
.y2ca{bottom:636.667772pt;}
.y21c{bottom:637.745476pt;}
.ye{bottom:637.976400pt;}
.yca{bottom:642.093750pt;}
.y129{bottom:648.560384pt;}
.y30b{bottom:649.969634pt;}
.y2c9{bottom:649.995772pt;}
.y1bb{bottom:650.153605pt;}
.y58{bottom:650.813639pt;}
.y178{bottom:651.674908pt;}
.y98{bottom:651.821566pt;}
.yad{bottom:651.826823pt;}
.y147{bottom:651.826904pt;}
.y14d{bottom:651.826945pt;}
.y247{bottom:651.946920pt;}
.y1de{bottom:651.953583pt;}
.yd{bottom:654.643066pt;}
.yc9{bottom:655.376017pt;}
.y19b{bottom:655.379564pt;}
.yc8{bottom:658.760417pt;}
.y21b{bottom:662.712809pt;}
.y127{bottom:662.922648pt;}
.y30a{bottom:663.297634pt;}
.y2c8{bottom:663.323772pt;}
.y126{bottom:665.227051pt;}
.y57{bottom:667.480306pt;}
.y177{bottom:668.341574pt;}
.y97{bottom:668.488232pt;}
.yac{bottom:668.493490pt;}
.y146{bottom:668.493571pt;}
.y246{bottom:668.613586pt;}
.y19a{bottom:668.707564pt;}
.y14c{bottom:669.293620pt;}
.yc{bottom:671.309733pt;}
.yc6{bottom:671.922648pt;}
.yc4{bottom:672.042684pt;}
.yc3{bottom:675.427083pt;}
.y309{bottom:676.625634pt;}
.y2c7{bottom:676.651772pt;}
.y123{bottom:679.446655pt;}
.y122{bottom:681.893572pt;}
.y125{bottom:681.893717pt;}
.y1ba{bottom:683.486898pt;}
.y56{bottom:684.146973pt;}
.y176{bottom:685.008241pt;}
.y96{bottom:685.154899pt;}
.yab{bottom:685.160156pt;}
.y145{bottom:685.160238pt;}
.y245{bottom:685.280253pt;}
.y1dd{bottom:685.286916pt;}
.y21a{bottom:685.367089pt;}
.y14b{bottom:685.960286pt;}
.yb{bottom:687.976400pt;}
.yc2{bottom:688.590658pt;}
.y308{bottom:689.953634pt;}
.y2c6{bottom:689.979772pt;}
.yc1{bottom:692.093750pt;}
.y55{bottom:700.813639pt;}
.y175{bottom:701.674908pt;}
.y95{bottom:701.821566pt;}
.yaa{bottom:701.826823pt;}
.y144{bottom:701.826904pt;}
.y244{bottom:701.946920pt;}
.y1dc{bottom:701.953583pt;}
.y320{bottom:702.658301pt;}
.y307{bottom:703.281634pt;}
.y2c5{bottom:703.307772pt;}
.ya{bottom:704.643066pt;}
.ybe{bottom:705.257324pt;}
.y13f{bottom:706.893311pt;}
.y13e{bottom:707.693710pt;}
.ybd{bottom:708.760244pt;}
.yc0{bottom:708.760417pt;}
.y199{bottom:708.974897pt;}
.y31f{bottom:715.986301pt;}
.y306{bottom:716.609634pt;}
.y2c4{bottom:716.635772pt;}
.y54{bottom:717.480306pt;}
.y94{bottom:718.488232pt;}
.ya9{bottom:718.493490pt;}
.y143{bottom:718.493571pt;}
.y243{bottom:718.613586pt;}
.y1db{bottom:718.620249pt;}
.y9{bottom:721.309733pt;}
.y198{bottom:722.302897pt;}
.y219{bottom:723.583089pt;}
.y305{bottom:729.937634pt;}
.y2c3{bottom:729.963772pt;}
.y1ec{bottom:731.263102pt;}
.y10f{bottom:733.760010pt;}
.y53{bottom:734.146973pt;}
.y93{bottom:735.154899pt;}
.ya8{bottom:735.160156pt;}
.y121{bottom:735.160238pt;}
.y242{bottom:735.280253pt;}
.y1da{bottom:735.286916pt;}
.y111{bottom:743.224365pt;}
.y304{bottom:743.265634pt;}
.y2c2{bottom:743.291772pt;}
.y31e{bottom:743.401634pt;}
.y10e{bottom:744.493733pt;}
.y52{bottom:750.813639pt;}
.y92{bottom:751.821566pt;}
.ya7{bottom:751.826823pt;}
.y120{bottom:751.826904pt;}
.y241{bottom:751.946920pt;}
.y1d9{bottom:751.953583pt;}
.y1b9{bottom:755.246562pt;}
.y303{bottom:756.593634pt;}
.y2c1{bottom:756.619772pt;}
.y31d{bottom:756.729634pt;}
.y8{bottom:760.583296pt;}
.y51{bottom:767.480306pt;}
.y91{bottom:768.488232pt;}
.y142{bottom:768.488238pt;}
.ya6{bottom:768.493490pt;}
.y11f{bottom:768.493571pt;}
.y240{bottom:768.613586pt;}
.y1d8{bottom:768.620249pt;}
.y302{bottom:769.921634pt;}
.y2c0{bottom:769.947772pt;}
.y31c{bottom:770.057634pt;}
.y1b8{bottom:771.951896pt;}
.y7{bottom:773.911296pt;}
.y301{bottom:783.249634pt;}
.y2bf{bottom:783.275772pt;}
.y31b{bottom:783.385634pt;}
.y50{bottom:784.146973pt;}
.y90{bottom:785.154899pt;}
.ya5{bottom:785.160156pt;}
.y11e{bottom:785.160238pt;}
.y23f{bottom:785.280253pt;}
.y1b7{bottom:788.589229pt;}
.y109{bottom:790.228027pt;}
.y108{bottom:792.960368pt;}
.y10b{bottom:793.666911pt;}
.y300{bottom:796.577634pt;}
.y2be{bottom:796.603772pt;}
.y10d{bottom:796.678955pt;}
.y31a{bottom:796.713634pt;}
.y11c{bottom:799.522705pt;}
.y4f{bottom:800.813639pt;}
.y8f{bottom:801.821566pt;}
.ya4{bottom:801.826823pt;}
.y11b{bottom:801.826904pt;}
.y1d7{bottom:801.953583pt;}
.y1b6{bottom:805.225701pt;}
.y1b4{bottom:808.705582pt;}
.y2ff{bottom:809.905634pt;}
.y2bd{bottom:809.931772pt;}
.y319{bottom:810.041634pt;}
.y6{bottom:811.777995pt;}
.y4e{bottom:817.480306pt;}
.y8e{bottom:818.488232pt;}
.ya3{bottom:818.493490pt;}
.y11a{bottom:818.493571pt;}
.y1b3{bottom:822.033582pt;}
.y2fe{bottom:823.233634pt;}
.y2bc{bottom:823.259772pt;}
.y318{bottom:823.369634pt;}
.y1b5{bottom:830.193034pt;}
.y105{bottom:830.694661pt;}
.y104{bottom:833.093750pt;}
.y4d{bottom:834.146973pt;}
.y8d{bottom:835.154899pt;}
.ya2{bottom:835.160156pt;}
.y119{bottom:835.160238pt;}
.y1b2{bottom:835.361582pt;}
.y107{bottom:836.000244pt;}
.y2fd{bottom:836.561634pt;}
.y2bb{bottom:836.587772pt;}
.y317{bottom:836.697634pt;}
.y270{bottom:841.416818pt;}
.y2fc{bottom:849.889634pt;}
.y2ba{bottom:849.915772pt;}
.y316{bottom:850.025634pt;}
.y7c{bottom:850.813639pt;}
.y5{bottom:851.499349pt;}
.y8c{bottom:851.821566pt;}
.ya1{bottom:851.826823pt;}
.y118{bottom:851.826904pt;}
.y1f3{bottom:854.750152pt;}
.y26f{bottom:858.109973pt;}
.y2fb{bottom:863.217634pt;}
.y2b9{bottom:863.243772pt;}
.y315{bottom:863.353634pt;}
.y4c{bottom:867.480306pt;}
.y8b{bottom:868.488232pt;}
.ya0{bottom:868.493490pt;}
.y117{bottom:868.493571pt;}
.y101{bottom:870.493327pt;}
.y1f2{bottom:871.443306pt;}
.y100{bottom:872.826904pt;}
.y26e{bottom:874.747306pt;}
.y103{bottom:875.666911pt;}
.y2fa{bottom:876.545634pt;}
.y2b8{bottom:876.571772pt;}
.y314{bottom:876.681634pt;}
.y7b{bottom:884.146973pt;}
.y8a{bottom:885.154899pt;}
.y9f{bottom:885.160156pt;}
.y116{bottom:885.160238pt;}
.y1f1{bottom:888.080639pt;}
.y1b1{bottom:888.854913pt;}
.y2f9{bottom:889.873634pt;}
.y2b7{bottom:889.899772pt;}
.y313{bottom:890.009634pt;}
.y26d{bottom:891.384639pt;}
.y4{bottom:896.832682pt;}
.y7a{bottom:900.813639pt;}
.y89{bottom:901.821566pt;}
.ybc{bottom:901.826904pt;}
.y2f8{bottom:903.201634pt;}
.y2b6{bottom:903.227772pt;}
.y312{bottom:903.337634pt;}
.y1f0{bottom:904.717973pt;}
.y1b0{bottom:905.560246pt;}
.y26c{bottom:908.021355pt;}
.y2f7{bottom:916.529634pt;}
.y2b5{bottom:916.555772pt;}
.y311{bottom:916.665634pt;}
.y4b{bottom:917.480306pt;}
.y88{bottom:918.488232pt;}
.y9e{bottom:918.493490pt;}
.ybb{bottom:918.493571pt;}
.y1ef{bottom:921.354688pt;}
.y1af{bottom:922.197579pt;}
.y2f6{bottom:929.857634pt;}
.y2b4{bottom:929.883772pt;}
.yb9{bottom:929.927979pt;}
.y310{bottom:929.993634pt;}
.yb6{bottom:931.775960pt;}
.y26b{bottom:932.988688pt;}
.y4a{bottom:934.146973pt;}
.y3{bottom:934.640137pt;}
.y87{bottom:935.154899pt;}
.yb8{bottom:935.160238pt;}
.y1ae{bottom:938.834913pt;}
.y2f5{bottom:943.185634pt;}
.y2b3{bottom:943.211772pt;}
.y30f{bottom:943.321634pt;}
.y1ee{bottom:946.322021pt;}
.y49{bottom:950.813639pt;}
.y86{bottom:951.821566pt;}
.y115{bottom:951.826904pt;}
.y1ad{bottom:955.628686pt;}
.y26a{bottom:955.652306pt;}
.y2f4{bottom:956.513634pt;}
.y2b2{bottom:956.539772pt;}
.y30e{bottom:956.649634pt;}
.yfe{bottom:960.161296pt;}
.yfd{bottom:962.360396pt;}
.y48{bottom:967.480306pt;}
.y85{bottom:968.488232pt;}
.y114{bottom:968.493571pt;}
.y1ac{bottom:968.956686pt;}
.y221{bottom:968.974817pt;}
.y1ed{bottom:968.979769pt;}
.y269{bottom:968.980306pt;}
.y2f3{bottom:969.841634pt;}
.y2b1{bottom:969.867772pt;}
.y30d{bottom:969.977634pt;}
.y47{bottom:1000.706543pt;}
.h19{height:9.065333pt;}
.h26{height:9.332000pt;}
.h15{height:9.333333pt;}
.h16{height:10.133333pt;}
.h30{height:11.333333pt;}
.he{height:11.465333pt;}
.h10{height:11.466667pt;}
.hf{height:11.598667pt;}
.h17{height:11.600000pt;}
.hd{height:12.533333pt;}
.h23{height:12.534667pt;}
.h25{height:12.932000pt;}
.h24{height:12.933333pt;}
.h11{height:13.066667pt;}
.h18{height:13.333333pt;}
.h27{height:14.398666pt;}
.hb{height:14.400000pt;}
.h28{height:14.668000pt;}
.h14{height:14.800000pt;}
.h13{height:14.801333pt;}
.h2b{height:15.465333pt;}
.h29{height:16.697506pt;}
.h2a{height:20.591812pt;}
.h2d{height:20.998393pt;}
.h2c{height:26.513104pt;}
.h2e{height:31.466667pt;}
.hc{height:37.342665pt;}
.h2{height:37.376000pt;}
.h1d{height:37.674667pt;}
.h12{height:37.876132pt;}
.h3{height:39.712000pt;}
.h8{height:42.026667pt;}
.h1a{height:43.157333pt;}
.h39{height:43.159805pt;}
.h3b{height:43.159963pt;}
.h33{height:43.159972pt;}
.h36{height:43.160781pt;}
.h34{height:43.205358pt;}
.h3c{height:43.205403pt;}
.h3a{height:43.206049pt;}
.h37{height:43.210146pt;}
.h1e{height:47.093333pt;}
.h38{height:47.253333pt;}
.h31{height:47.573138pt;}
.h32{height:47.573301pt;}
.h1b{height:48.322100pt;}
.h1c{height:48.322629pt;}
.h4{height:49.298667pt;}
.h2f{height:49.406421pt;}
.ha{height:50.773333pt;}
.h3d{height:50.773415pt;}
.h20{height:50.826667pt;}
.h21{height:51.020091pt;}
.h22{height:52.448000pt;}
.h9{height:52.746667pt;}
.h6{height:56.704000pt;}
.h7{height:57.658667pt;}
.h1f{height:63.296000pt;}
.h5{height:75.605333pt;}
.h35{height:75.851573pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w10{width:6.812000pt;}
.w14{width:8.025333pt;}
.w1e{width:8.026667pt;}
.w3{width:8.253333pt;}
.w12{width:8.466667pt;}
.w1b{width:8.680000pt;}
.w16{width:9.053333pt;}
.w8{width:9.413333pt;}
.w1a{width:9.693333pt;}
.w9{width:10.320000pt;}
.w18{width:10.758667pt;}
.wd{width:10.760000pt;}
.w1c{width:10.973333pt;}
.w2{width:11.333333pt;}
.w17{width:11.373333pt;}
.w20{width:11.440000pt;}
.w13{width:11.478667pt;}
.w11{width:11.800000pt;}
.w15{width:12.185333pt;}
.w1d{width:12.253333pt;}
.w21{width:13.733333pt;}
.wc{width:13.773333pt;}
.w1f{width:15.093333pt;}
.we{width:15.480000pt;}
.wb{width:15.586666pt;}
.w19{width:15.653333pt;}
.wa{width:15.654667pt;}
.w5{width:21.613332pt;}
.w6{width:22.933333pt;}
.w7{width:23.399999pt;}
.wf{width:27.133333pt;}
.w4{width:30.133333pt;}
.w25{width:54.546666pt;}
.w26{width:63.506668pt;}
.w22{width:85.333333pt;}
.w24{width:88.625336pt;}
.w27{width:101.921336pt;}
.w23{width:177.693339pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x10{left:-1.391724pt;}
.x0{left:0.000000pt;}
.x45{left:28.863866pt;}
.x4d{left:29.848933pt;}
.x4a{left:36.003332pt;}
.x4e{left:38.176802pt;}
.x4b{left:47.403202pt;}
.x47{left:51.616002pt;}
.x3{left:68.031469pt;}
.x4c{left:73.736669pt;}
.x5{left:76.341333pt;}
.x9{left:77.501333pt;}
.xa{left:78.408000pt;}
.x4{left:79.421336pt;}
.xe{left:81.861333pt;}
.xd{left:83.674667pt;}
.x49{left:84.943064pt;}
.x7{left:89.701333pt;}
.x8{left:91.021332pt;}
.x1b{left:92.465200pt;}
.x31{left:95.546672pt;}
.x38{left:97.234670pt;}
.x6{left:98.221333pt;}
.x22{left:100.649333pt;}
.x41{left:101.724665pt;}
.x32{left:103.500132pt;}
.x37{left:105.543335pt;}
.x2{left:106.504801pt;}
.x39{left:108.821198pt;}
.x23{left:110.359467pt;}
.x46{left:112.867737pt;}
.x12{left:114.614132pt;}
.x1e{left:125.963999pt;}
.x25{left:130.094666pt;}
.x1f{left:136.700938pt;}
.x48{left:137.671865pt;}
.x26{left:138.816935pt;}
.x3f{left:140.920797pt;}
.x30{left:142.208405pt;}
.x3c{left:155.062663pt;}
.xf{left:159.730662pt;}
.x20{left:161.299998pt;}
.x40{left:162.976532pt;}
.x44{left:164.148666pt;}
.x3d{left:166.558929pt;}
.x2b{left:170.977193pt;}
.x24{left:175.940531pt;}
.x21{left:176.918538pt;}
.x11{left:186.920797pt;}
.x33{left:199.833333pt;}
.x42{left:204.016663pt;}
.x2e{left:207.875997pt;}
.xb{left:211.798665pt;}
.x34{left:214.900533pt;}
.x2f{left:220.305074pt;}
.x43{left:225.412537pt;}
.xc{left:227.508809pt;}
.x1c{left:235.980000pt;}
.x35{left:239.188009pt;}
.x36{left:246.056925pt;}
.x1d{left:247.615336pt;}
.x27{left:300.226664pt;}
.x28{left:308.941996pt;}
.x3a{left:329.716003pt;}
.x29{left:331.116007pt;}
.x2a{left:342.140381pt;}
.x3b{left:343.526123pt;}
.x3e{left:371.098129pt;}
.x2c{left:375.818685pt;}
.x2d{left:385.511882pt;}
.x13{left:408.189331pt;}
.x14{left:415.058919pt;}
.x17{left:416.712280pt;}
.x16{left:420.045614pt;}
.x18{left:423.311467pt;}
.x56{left:425.068924pt;}
.x58{left:430.868141pt;}
.x15{left:454.778919pt;}
.x51{left:503.654663pt;}
.x52{left:526.644531pt;}
.x57{left:578.266276pt;}
.x19{left:604.806681pt;}
.x4f{left:623.394653pt;}
.x1a{left:635.145589pt;}
.x50{left:645.064819pt;}
.x1{left:647.307210pt;}
.x53{left:702.269368pt;}
.x55{left:711.255585pt;}
.x54{left:725.669352pt;}
}


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