
/* 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_a58f7836026f.woff")format("woff");}.ff1{font-family:ff1;line-height:0.736000;font-style:normal;font-weight: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_1ae56354975e.woff")format("woff");}.ff2{font-family:ff2;line-height:0.660000;font-style:normal;font-weight: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_79dcdc6f476d.woff")format("woff");}.ff3{font-family:ff3;line-height:0.885000;font-style:normal;font-weight: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_ada3fee7c4c2.woff")format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight: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_426c05ea8d36.woff")format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight: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_75e3d4f47ba2.woff")format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight: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_cda83a8964b4.woff")format("woff");}.ff7{font-family:ff7;line-height:0.691000;font-style:normal;font-weight: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_76996ad3c91f.woff")format("woff");}.ff8{font-family:ff8;line-height:1.014160;font-style:normal;font-weight: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_c17fffb18645.woff")format("woff");}.ff9{font-family:ff9;line-height:1.000488;font-style:normal;font-weight: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_1d6840248c0e.woff")format("woff");}.ffa{font-family:ffa;line-height:1.011230;font-style:normal;font-weight: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_f24e44da322d.woff")format("woff");}.ffb{font-family:ffb;line-height:0.485000;font-style:normal;font-weight: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_c4baef64020e.woff")format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_8ce6af70700f.woff")format("woff");}.ffd{font-family:ffd;line-height:1.800000;font-style:normal;font-weight: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_7789830d1f29.woff")format("woff");}.ffe{font-family:ffe;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_4d77874387bd.woff")format("woff");}.fff{font-family:fff;line-height:0.482000;font-style:normal;font-weight: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_c93aaa4fe051.woff")format("woff");}.ff10{font-family:ff10;line-height:1.014160;font-style:normal;font-weight: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_769658559f8f.woff")format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight: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_004743dc01da.woff")format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-style:normal;font-weight: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_6a568942759e.woff")format("woff");}.ff13{font-family:ff13;line-height:1.241699;font-style:normal;font-weight: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_ce7ffa2d160e.woff")format("woff");}.ff14{font-family:ff14;line-height:1.014160;font-style:normal;font-weight: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_6df5b996e6b6.woff")format("woff");}.ff15{font-family:ff15;line-height:1.000488;font-style:normal;font-weight: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_facfd7f51778.woff")format("woff");}.ff16{font-family:ff16;line-height:1.011230;font-style:normal;font-weight: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_4f24f3ae9c53.woff")format("woff");}.ff17{font-family:ff17;line-height:1.014160;font-style:normal;font-weight: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_49c5193cc8ab.woff")format("woff");}.ff18{font-family:ff18;line-height:1.000488;font-style:normal;font-weight: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_0e8fb7cfbee6.woff")format("woff");}.ff19{font-family:ff19;line-height:1.011230;font-style:normal;font-weight: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_3437ca3eb4d8.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.014160;font-style:normal;font-weight: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_07f6f27943b9.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.000488;font-style:normal;font-weight: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_1c1151d10004.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.011230;font-style:normal;font-weight: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_a93d7eb0d731.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.241699;font-style:normal;font-weight: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_3437ca3eb4d8.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.014160;font-style:normal;font-weight: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_07f6f27943b9.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.000488;font-style:normal;font-weight: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_1c1151d10004.woff")format("woff");}.ff20{font-family:ff20;line-height:1.011230;font-style:normal;font-weight: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_c2e858de6ef2.woff")format("woff");}.ff21{font-family:ff21;line-height:1.241699;font-style:normal;font-weight: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_f93d339810b5.woff")format("woff");}.ff22{font-family:ff22;line-height:1.014160;font-style:normal;font-weight: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_2e4308a17085.woff")format("woff");}.ff23{font-family:ff23;line-height:1.000488;font-style:normal;font-weight: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_885e361acec6.woff")format("woff");}.ff24{font-family:ff24;line-height:1.011230;font-style:normal;font-weight: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_f93d339810b5.woff")format("woff");}.ff25{font-family:ff25;line-height:1.014160;font-style:normal;font-weight: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_2e4308a17085.woff")format("woff");}.ff26{font-family:ff26;line-height:1.000488;font-style:normal;font-weight: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_885e361acec6.woff")format("woff");}.ff27{font-family:ff27;line-height:1.011230;font-style:normal;font-weight: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_0ec64557795f.woff")format("woff");}.ff28{font-family:ff28;line-height:1.014160;font-style:normal;font-weight: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_cb132f63973c.woff")format("woff");}.ff29{font-family:ff29;line-height:1.000488;font-style:normal;font-weight: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_4dd973e0a8ae.woff")format("woff");}.ff2a{font-family:ff2a;line-height:1.011230;font-style:normal;font-weight: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_54e0a4c32ae9.woff")format("woff");}.ff2b{font-family:ff2b;line-height:1.014160;font-style:normal;font-weight: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_e243a97f6443.woff")format("woff");}.ff2c{font-family:ff2c;line-height:1.000488;font-style:normal;font-weight: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_9c171d9e6ffd.woff")format("woff");}.ff2d{font-family:ff2d;line-height:1.011230;font-style:normal;font-weight: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_db96e4281028.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.014160;font-style:normal;font-weight: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_aece29920d90.woff")format("woff");}.ff2f{font-family:ff2f;line-height:1.000488;font-style:normal;font-weight: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_f6541c5a49e4.woff")format("woff");}.ff30{font-family:ff30;line-height:1.011230;font-style:normal;font-weight: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_adfa97c7a311.woff")format("woff");}.ff31{font-family:ff31;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v8{vertical-align:-72.594000px;}
.vc{vertical-align:-13.332000px;}
.va{vertical-align:-12.306000px;}
.ve{vertical-align:-11.148000px;}
.vf{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.164000px;}
.vd{vertical-align:12.239865px;}
.v5{vertical-align:14.766000px;}
.v9{vertical-align:23.892000px;}
.vb{vertical-align:36.126000px;}
.v7{vertical-align:38.652000px;}
.v2{vertical-align:49.812000px;}
.v3{vertical-align:54.414000px;}
.v4{vertical-align:78.300000px;}
.v1{vertical-align:128.520000px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000017px;}
.ls41{letter-spacing:0.000406px;}
.ls2{letter-spacing:0.000600px;}
.lsc{letter-spacing:0.001133px;}
.ls21{letter-spacing:0.002378px;}
.ls3d{letter-spacing:0.003155px;}
.lsd{letter-spacing:0.003178px;}
.ls3f{letter-spacing:0.004800px;}
.ls24{letter-spacing:0.042487px;}
.ls2d{letter-spacing:0.178560px;}
.lsb{letter-spacing:0.178564px;}
.ls2a{letter-spacing:0.178834px;}
.ls32{letter-spacing:0.253701px;}
.ls7{letter-spacing:0.259081px;}
.ls2b{letter-spacing:0.259085px;}
.ls27{letter-spacing:0.259220px;}
.ls28{letter-spacing:0.265045px;}
.ls9{letter-spacing:0.265185px;}
.lsa{letter-spacing:0.358817px;}
.ls8{letter-spacing:0.358880px;}
.ls29{letter-spacing:0.358951px;}
.ls2c{letter-spacing:0.358956px;}
.ls1d{letter-spacing:0.670741px;}
.ls18{letter-spacing:0.676741px;}
.ls17{letter-spacing:0.746400px;}
.ls19{letter-spacing:0.746496px;}
.ls5{letter-spacing:1.275394px;}
.ls11{letter-spacing:1.490400px;}
.ls0{letter-spacing:1.861130px;}
.ls25{letter-spacing:2.015228px;}
.ls30{letter-spacing:2.501707px;}
.ls2f{letter-spacing:2.501842px;}
.ls31{letter-spacing:2.501982px;}
.ls1{letter-spacing:10.461300px;}
.ls16{letter-spacing:10.708115px;}
.ls12{letter-spacing:10.714115px;}
.ls4{letter-spacing:11.954850px;}
.lse{letter-spacing:12.339483px;}
.ls15{letter-spacing:13.089483px;}
.ls3b{letter-spacing:13.448400px;}
.ls3c{letter-spacing:13.454400px;}
.ls40{letter-spacing:13.550400px;}
.ls3e{letter-spacing:13.632301px;}
.ls22{letter-spacing:14.585246px;}
.ls34{letter-spacing:14.645022px;}
.ls36{letter-spacing:14.764573px;}
.ls39{letter-spacing:14.884124px;}
.ls23{letter-spacing:14.943900px;}
.ls3a{letter-spacing:15.003676px;}
.ls38{letter-spacing:15.242778px;}
.ls14{letter-spacing:15.355973px;}
.ls1b{letter-spacing:17.325483px;}
.ls1e{letter-spacing:18.028741px;}
.ls35{letter-spacing:18.889090px;}
.ls26{letter-spacing:19.307519px;}
.ls33{letter-spacing:20.503031px;}
.ls2e{letter-spacing:20.921460px;}
.ls37{letter-spacing:22.116972px;}
.ls10{letter-spacing:25.245483px;}
.ls3{letter-spacing:28.453654px;}
.lsf{letter-spacing:32.292476px;}
.ls1f{letter-spacing:33.741483px;}
.ls1a{letter-spacing:535.540741px;}
.ls1c{letter-spacing:695.290741px;}
.ls20{letter-spacing:705.166741px;}
.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;}
}
.ws6a{word-spacing:-59.762250px;}
.ws6b{word-spacing:-41.761620px;}
.ws45{word-spacing:-14.943900px;}
.ws59{word-spacing:-14.940563px;}
.ws33{word-spacing:-13.500563px;}
.ws34{word-spacing:-13.449600px;}
.ws58{word-spacing:-13.190182px;}
.ws56{word-spacing:-13.147695px;}
.ws32{word-spacing:-12.060450px;}
.ws2c{word-spacing:-11.955150px;}
.ws50{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws57{word-spacing:-9.187556px;}
.wsa5{word-spacing:-2.958912px;}
.ws71{word-spacing:-2.809453px;}
.ws7f{word-spacing:-2.689902px;}
.ws44{word-spacing:-2.571956px;}
.ws80{word-spacing:-2.450800px;}
.ws25{word-spacing:-2.391024px;}
.ws87{word-spacing:-2.211697px;}
.ws1{word-spacing:-1.908367px;}
.wsa4{word-spacing:-1.882944px;}
.ws42{word-spacing:-1.793268px;}
.ws5b{word-spacing:-1.775347px;}
.ws8e{word-spacing:-1.667750px;}
.ws5c{word-spacing:-1.560154px;}
.ws8f{word-spacing:-1.452557px;}
.ws7d{word-spacing:-1.434614px;}
.ws9f{word-spacing:-1.398758px;}
.ws3e{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws36{word-spacing:-1.315063px;}
.ws35{word-spacing:-1.255288px;}
.ws7{word-spacing:-1.171598px;}
.ws9{word-spacing:-1.046070px;}
.ws37{word-spacing:-1.016185px;}
.wsa9{word-spacing:-0.968371px;}
.ws68{word-spacing:-0.657532px;}
.ws81{word-spacing:-0.597756px;}
.wsa3{word-spacing:-0.376589px;}
.ws55{word-spacing:-0.358654px;}
.ws27{word-spacing:-0.298878px;}
.ws99{word-spacing:-0.268992px;}
.ws31{word-spacing:-0.239102px;}
.ws18{word-spacing:-0.215194px;}
.ws1f{word-spacing:-0.179327px;}
.ws8b{word-spacing:-0.161395px;}
.ws29{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws47{word-spacing:-0.059776px;}
.ws91{word-spacing:-0.053798px;}
.wsaa{word-spacing:-0.027629px;}
.ws95{word-spacing:-0.010733px;}
.ws9c{word-spacing:-0.009581px;}
.ws93{word-spacing:-0.003427px;}
.wsa6{word-spacing:-0.003350px;}
.ws9a{word-spacing:-0.001517px;}
.ws2b{word-spacing:-0.001383px;}
.wsa2{word-spacing:-0.000912px;}
.ws97{word-spacing:-0.000221px;}
.ws3{word-spacing:0.000000px;}
.wsa0{word-spacing:0.000288px;}
.ws5{word-spacing:0.004146px;}
.ws14{word-spacing:0.053798px;}
.ws20{word-spacing:0.059776px;}
.ws8d{word-spacing:0.107597px;}
.ws23{word-spacing:0.119551px;}
.ws1b{word-spacing:0.161395px;}
.ws2f{word-spacing:0.179327px;}
.ws1a{word-spacing:0.215194px;}
.ws11{word-spacing:0.239103px;}
.ws17{word-spacing:0.268992px;}
.ws21{word-spacing:0.298878px;}
.ws28{word-spacing:0.358654px;}
.ws52{word-spacing:0.418429px;}
.ws82{word-spacing:0.478205px;}
.ws8c{word-spacing:0.645581px;}
.ws54{word-spacing:0.657532px;}
.ws5a{word-spacing:0.668507px;}
.ws74{word-spacing:0.717307px;}
.ws46{word-spacing:0.746700px;}
.ws63{word-spacing:0.806976px;}
.ws3f{word-spacing:0.836858px;}
.ws3a{word-spacing:0.896634px;}
.ws76{word-spacing:0.956410px;}
.ws8{word-spacing:1.004227px;}
.ws2a{word-spacing:1.016185px;}
.ws62{word-spacing:1.075968px;}
.ws4d{word-spacing:1.315063px;}
.ws24{word-spacing:1.374839px;}
.ws75{word-spacing:1.434614px;}
.ws96{word-spacing:1.506355px;}
.ws4a{word-spacing:1.554166px;}
.ws79{word-spacing:1.613941px;}
.ws5e{word-spacing:1.733492px;}
.ws67{word-spacing:1.882944px;}
.ws66{word-spacing:1.936742px;}
.ws4c{word-spacing:1.972595px;}
.ws53{word-spacing:2.032370px;}
.ws86{word-spacing:2.092146px;}
.ws39{word-spacing:2.151922px;}
.ws65{word-spacing:2.205734px;}
.ws19{word-spacing:2.367130px;}
.ws1e{word-spacing:2.391024px;}
.ws4f{word-spacing:2.405532px;}
.ws4{word-spacing:2.508157px;}
.ws3b{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws7c{word-spacing:2.809453px;}
.ws41{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.ws7a{word-spacing:2.929004px;}
.ws48{word-spacing:2.988780px;}
.ws78{word-spacing:3.012710px;}
.ws69{word-spacing:3.048556px;}
.ws7b{word-spacing:3.168107px;}
.ws9d{word-spacing:3.216835px;}
.ws9e{word-spacing:3.219437px;}
.ws1c{word-spacing:3.219667px;}
.wsa8{word-spacing:3.220646px;}
.wsa7{word-spacing:3.221357px;}
.ws94{word-spacing:3.222509px;}
.ws92{word-spacing:3.227904px;}
.ws90{word-spacing:3.231245px;}
.ws77{word-spacing:3.335501px;}
.ws98{word-spacing:3.389299px;}
.ws1d{word-spacing:3.586536px;}
.ws5f{word-spacing:3.825638px;}
.ws13{word-spacing:3.873485px;}
.ws72{word-spacing:3.945190px;}
.ws51{word-spacing:3.998467px;}
.ws2d{word-spacing:4.004965px;}
.ws88{word-spacing:4.184292px;}
.ws4e{word-spacing:4.244068px;}
.ws8a{word-spacing:4.250074px;}
.ws61{word-spacing:4.303843px;}
.ws15{word-spacing:4.303872px;}
.ws60{word-spacing:4.363619px;}
.ws9b{word-spacing:4.411469px;}
.ws49{word-spacing:4.423394px;}
.ws84{word-spacing:4.483170px;}
.ws70{word-spacing:4.602721px;}
.ws89{word-spacing:4.626662px;}
.wsf{word-spacing:4.770079px;}
.ws6d{word-spacing:4.782048px;}
.ws10{word-spacing:4.853765px;}
.ws30{word-spacing:5.021150px;}
.ws3d{word-spacing:5.080926px;}
.ws64{word-spacing:5.140702px;}
.ws22{word-spacing:5.200477px;}
.wsa1{word-spacing:5.541235px;}
.ws6c{word-spacing:5.559131px;}
.ws83{word-spacing:5.798233px;}
.ws26{word-spacing:5.977560px;}
.ws7e{word-spacing:6.395989px;}
.ws85{word-spacing:6.754643px;}
.ws40{word-spacing:6.814418px;}
.ws2e{word-spacing:6.874194px;}
.ws73{word-spacing:7.173072px;}
.wsd{word-spacing:7.782761px;}
.ws38{word-spacing:8.009930px;}
.ws3c{word-spacing:8.189257px;}
.ws43{word-spacing:8.249033px;}
.ws4b{word-spacing:8.727238px;}
.wsb{word-spacing:12.176255px;}
.wsc{word-spacing:16.109478px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws5d{word-spacing:896.281344px;}
.ws6f{word-spacing:1057.622746px;}
.ws6e{word-spacing:1071.072346px;}
._7{margin-left:-11.943245px;}
._11{margin-left:-7.352399px;}
._9{margin-left:-5.451548px;}
._2{margin-left:-3.849538px;}
._1b{margin-left:-2.418312px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._1a{width:3.585735px;}
._1e{width:4.894393px;}
._1d{width:6.123212px;}
._1c{width:7.184776px;}
._20{width:8.653877px;}
._31{width:9.808135px;}
._5{width:11.398711px;}
._3{width:12.971268px;}
._18{width:14.174381px;}
._b{width:15.794400px;}
._c{width:17.000294px;}
._f{width:18.119574px;}
._17{width:19.330220px;}
._13{width:20.921460px;}
._12{width:22.475626px;}
._d{width:23.648966px;}
._e{width:26.510860px;}
._a{width:29.051136px;}
._6{width:30.587087px;}
._10{width:33.780781px;}
._30{width:34.856742px;}
._3a{width:36.343565px;}
._16{width:39.631223px;}
._21{width:43.942633px;}
._3c{width:61.868160px;}
._8{width:69.366516px;}
._3b{width:88.767360px;}
._36{width:528.355083px;}
._35{width:611.813315px;}
._25{width:761.984902px;}
._28{width:811.059557px;}
._32{width:817.636672px;}
._2b{width:818.919245px;}
._37{width:849.221573px;}
._2f{width:861.635174px;}
._22{width:863.589216px;}
._26{width:870.248971px;}
._23{width:905.324743px;}
._2d{width:916.079155px;}
._14{width:917.550224px;}
._27{width:929.740891px;}
._29{width:949.667267px;}
._24{width:953.655362px;}
._2c{width:959.333069px;}
._2e{width:969.554765px;}
._2a{width:990.697536px;}
._34{width:1043.448885px;}
._33{width:1057.791825px;}
._1f{width:1090.063907px;}
._39{width:2124.378512px;}
._19{width:2148.981830px;}
._38{width:2584.107600px;}
._15{width:2608.017600px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(61,153,62);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fsd{font-size:41.761620px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fsc{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:48.241800px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.002250px;}
.fs9{font-size:59.762250px;}
.fs4{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:128.507760px;}
.y16b{bottom:-768.205440px;}
.y25b{bottom:-756.310472px;}
.y16a{bottom:-748.045459px;}
.y25a{bottom:-737.050409px;}
.y169{bottom:-727.705440px;}
.y259{bottom:-717.790415px;}
.y168{bottom:-707.545459px;}
.y258{bottom:-698.710459px;}
.y167{bottom:-687.205440px;}
.y257{bottom:-679.450464px;}
.y166{bottom:-667.045459px;}
.y256{bottom:-660.190401px;}
.y165{bottom:-645.985423px;}
.y255{bottom:-640.930407px;}
.y254{bottom:-621.670412px;}
.y164{bottom:-616.105426px;}
.y253{bottom:-602.590457px;}
.y252{bottom:-583.330461px;}
.y163{bottom:-580.285464px;}
.y251{bottom:-564.070467px;}
.y162{bottom:-561.025401px;}
.y250{bottom:-544.810404px;}
.y24f{bottom:-525.550409px;}
.y161{bottom:-524.305453px;}
.y8c{bottom:-517.348368px;}
.y24e{bottom:-506.470453px;}
.y1b9{bottom:-505.013989px;}
.y160{bottom:-501.985423px;}
.y8b{bottom:-498.088373px;}
.y24d{bottom:-487.210459px;}
.y1b8{bottom:-482.693890px;}
.y8a{bottom:-478.828448px;}
.y24c{bottom:-467.950464px;}
.y89{bottom:-459.568453px;}
.y24b{bottom:-448.690401px;}
.y88{bottom:-440.488428px;}
.y106{bottom:-437.740373px;}
.y24a{bottom:-429.430407px;}
.y87{bottom:-421.228434px;}
.y105{bottom:-418.480448px;}
.y249{bottom:-410.350451px;}
.y86{bottom:-401.968440px;}
.y104{bottom:-399.220453px;}
.y248{bottom:-391.090456px;}
.y85{bottom:-382.708445px;}
.y103{bottom:-380.140428px;}
.y247{bottom:-371.830461px;}
.y84{bottom:-363.448451px;}
.y102{bottom:-360.880434px;}
.y246{bottom:-352.570467px;}
.y148{bottom:-346.109961px;}
.y83{bottom:-344.368426px;}
.y101{bottom:-341.620440px;}
.y245{bottom:-333.310404px;}
.y147{bottom:-326.849967px;}
.y82{bottom:-325.108432px;}
.y100{bottom:-322.360445px;}
.y244{bottom:-314.230448px;}
.y146{bottom:-307.589904px;}
.y81{bottom:-305.848436px;}
.yff{bottom:-303.100451px;}
.y243{bottom:-294.970453px;}
.y145{bottom:-288.509948px;}
.y80{bottom:-286.588442px;}
.yfe{bottom:-284.020426px;}
.y242{bottom:-275.710459px;}
.y144{bottom:-269.249953px;}
.y7f{bottom:-267.328448px;}
.y18d{bottom:-266.678940px;}
.y241{bottom:-256.450464px;}
.y143{bottom:-249.989959px;}
.y7e{bottom:-248.248423px;}
.y18c{bottom:-246.518959px;}
.yfd{bottom:-244.960459px;}
.y240{bottom:-237.190401px;}
.y142{bottom:-230.729964px;}
.y7d{bottom:-228.988428px;}
.y18b{bottom:-226.178940px;}
.yfc{bottom:-224.800409px;}
.y23f{bottom:-218.110445px;}
.y7c{bottom:-209.728434px;}
.y141{bottom:-207.149940px;}
.y18a{bottom:-206.018959px;}
.yfb{bottom:-204.460459px;}
.y23e{bottom:-198.850451px;}
.y7b{bottom:-190.468440px;}
.y15f{bottom:-189.325442px;}
.y189{bottom:-185.678940px;}
.yfa{bottom:-184.300409px;}
.y1b7{bottom:-178.133923px;}
.y23d{bottom:-175.090456px;}
.y7a{bottom:-171.208445px;}
.y15e{bottom:-170.065448px;}
.y140{bottom:-169.889945px;}
.y188{bottom:-165.518959px;}
.yf9{bottom:-163.960459px;}
.y1b6{bottom:-158.873928px;}
.y79{bottom:-151.948451px;}
.y15d{bottom:-150.805419px;}
.y13f{bottom:-150.629951px;}
.y187{bottom:-144.458923px;}
.yf8{bottom:-143.800409px;}
.y1b5{bottom:-139.613934px;}
.y23c{bottom:-137.830427px;}
.y78{bottom:-132.868426px;}
.y15c{bottom:-131.545424px;}
.y13e{bottom:-131.369957px;}
.yf7{bottom:-123.460459px;}
.y1b4{bottom:-120.353940px;}
.y23b{bottom:-118.570433px;}
.y186{bottom:-114.578926px;}
.y77{bottom:-113.608432px;}
.y15b{bottom:-112.285429px;}
.y13d{bottom:-112.109961px;}
.yf6{bottom:-102.580461px;}
.y1b3{bottom:-101.273915px;}
.y23a{bottom:-99.490442px;}
.y76{bottom:-94.348436px;}
.y15a{bottom:-93.025435px;}
.y13c{bottom:-92.849967px;}
.y1b2{bottom:-82.013921px;}
.y239{bottom:-80.230447px;}
.y185{bottom:-78.758964px;}
.y216{bottom:-78.316434px;}
.y75{bottom:-75.088442px;}
.y159{bottom:-73.945445px;}
.y13b{bottom:-73.769942px;}
.yf5{bottom:-72.520426px;}
.y1b1{bottom:-62.753926px;}
.y238{bottom:-60.970419px;}
.y184{bottom:-59.498901px;}
.y74{bottom:-55.828448px;}
.y158{bottom:-54.685451px;}
.y215{bottom:-38.716421px;}
.yf4{bottom:-37.240442px;}
.y13a{bottom:-37.049926px;}
.y129{bottom:-36.118423px;}
.y1b0{bottom:-26.033909px;}
.y1da{bottom:-24.454339px;}
.y237{bottom:-24.250436px;}
.y183{bottom:-22.778953px;}
.y214{bottom:-21.436436px;}
.y22d{bottom:-21.268740px;}
.yf3{bottom:-19.960459px;}
.y139{bottom:-19.769942px;}
.y73{bottom:-19.288401px;}
.y128{bottom:-18.838440px;}
.y157{bottom:-17.965434px;}
.y1af{bottom:-3.533909px;}
.y1d9{bottom:-2.134240px;}
.y236{bottom:-1.750436px;}
.y182{bottom:-0.458923px;}
.y0{bottom:0.000000px;}
.y125{bottom:0.180004px;}
.y71{bottom:0.540047px;}
.y213{bottom:1.063564px;}
.y22c{bottom:1.231260px;}
.yf2{bottom:2.539541px;}
.y3{bottom:3.425340px;}
.ye6{bottom:4.319997px;}
.y156{bottom:4.534566px;}
.y138{bottom:7.410096px;}
.y72{bottom:7.891568px;}
.y127{bottom:8.341599px;}
.ye2{bottom:12.060001px;}
.y2{bottom:14.151273px;}
.y1d{bottom:15.759681px;}
.yde{bottom:22.140009px;}
.ydf{bottom:22.680003px;}
.y49{bottom:31.890000px;}
.ye0{bottom:34.020006px;}
.y21e{bottom:91.665000px;}
.y284{bottom:91.771500px;}
.yd0{bottom:96.288000px;}
.y2a8{bottom:99.348000px;}
.y1db{bottom:101.848500px;}
.y2e0{bottom:104.503500px;}
.y1b{bottom:104.646000px;}
.ya7{bottom:104.676000px;}
.ycf{bottom:106.539000px;}
.y21d{bottom:110.494500px;}
.y283{bottom:110.601000px;}
.y2a7{bottom:116.608500px;}
.y2df{bottom:121.762500px;}
.y1a{bottom:122.535000px;}
.ya6{bottom:123.505500px;}
.y1c2{bottom:124.277850px;}
.y48{bottom:125.128500px;}
.y21c{bottom:129.324000px;}
.y282{bottom:129.430500px;}
.y2a6{bottom:133.869000px;}
.yce{bottom:134.967000px;}
.y2de{bottom:139.023000px;}
.y19{bottom:140.422500px;}
.ya5{bottom:142.335000px;}
.y47{bottom:143.958000px;}
.y230{bottom:144.145500px;}
.y21b{bottom:148.153500px;}
.y281{bottom:148.260000px;}
.y11c{bottom:148.606500px;}
.y198{bottom:149.472000px;}
.y2a5{bottom:151.128000px;}
.ycd{bottom:153.796500px;}
.y2dd{bottom:156.283500px;}
.y18{bottom:158.310000px;}
.ya4{bottom:161.164500px;}
.y46{bottom:162.787500px;}
.y22f{bottom:162.975000px;}
.y197{bottom:165.910500px;}
.y21a{bottom:166.983000px;}
.y280{bottom:167.089500px;}
.y11b{bottom:167.434500px;}
.y2a4{bottom:168.388500px;}
.ycc{bottom:172.626000px;}
.y2dc{bottom:173.544000px;}
.y17{bottom:176.199000px;}
.y6f{bottom:178.531560px;}
.ya3{bottom:179.994000px;}
.y45{bottom:181.617000px;}
.y196{bottom:182.349000px;}
.y2a3{bottom:185.649000px;}
.y219{bottom:185.812500px;}
.y27f{bottom:185.919000px;}
.y11a{bottom:186.264000px;}
.y2db{bottom:190.804500px;}
.ycb{bottom:191.455500px;}
.y16{bottom:194.086500px;}
.y22e{bottom:196.540500px;}
.y6e{bottom:197.791555px;}
.y195{bottom:198.787500px;}
.ya2{bottom:198.823500px;}
.y44{bottom:200.446500px;}
.y2a2{bottom:202.909500px;}
.y27e{bottom:204.748500px;}
.y119{bottom:205.093500px;}
.y2da{bottom:208.065000px;}
.y15{bottom:211.974000px;}
.yca{bottom:214.768500px;}
.y194{bottom:215.226000px;}
.y6d{bottom:217.051549px;}
.ya1{bottom:217.651500px;}
.y218{bottom:218.460000px;}
.y21f{bottom:218.970300px;}
.y43{bottom:219.274500px;}
.y2a1{bottom:220.170000px;}
.y27d{bottom:223.578000px;}
.y118{bottom:223.923000px;}
.y2d9{bottom:225.325500px;}
.y14{bottom:229.863000px;}
.y193{bottom:231.664500px;}
.y6c{bottom:236.311578px;}
.ya0{bottom:236.481000px;}
.y2a0{bottom:237.430500px;}
.y217{bottom:237.693000px;}
.y42{bottom:238.104000px;}
.y235{bottom:241.249564px;}
.y27c{bottom:242.407500px;}
.y2d8{bottom:242.586000px;}
.y117{bottom:242.752500px;}
.yc9{bottom:248.392500px;}
.y29f{bottom:254.691000px;}
.y192{bottom:255.304500px;}
.y9f{bottom:255.310500px;}
.y6b{bottom:255.571573px;}
.y152{bottom:256.282500px;}
.y155{bottom:256.894566px;}
.y41{bottom:256.933500px;}
.y2d7{bottom:259.846500px;}
.y1f4{bottom:260.122500px;}
.y234{bottom:260.509558px;}
.y27b{bottom:261.237000px;}
.y116{bottom:261.582000px;}
.y154{bottom:266.434569px;}
.yc8{bottom:267.222000px;}
.y29e{bottom:271.951500px;}
.y9e{bottom:274.140000px;}
.y6a{bottom:274.651564px;}
.y151{bottom:275.112000px;}
.y212{bottom:275.383593px;}
.y40{bottom:275.763000px;}
.y2d6{bottom:277.105500px;}
.y27a{bottom:280.066500px;}
.y115{bottom:280.411500px;}
.yf1{bottom:285.859572px;}
.yc7{bottom:286.051500px;}
.y191{bottom:286.924500px;}
.y9d{bottom:292.969500px;}
.y29d{bottom:293.694000px;}
.y69{bottom:293.911558px;}
.y150{bottom:293.941500px;}
.y2d5{bottom:294.366000px;}
.y3f{bottom:294.592500px;}
.y211{bottom:294.643588px;}
.y279{bottom:298.896000px;}
.y131{bottom:299.227500px;}
.y114{bottom:299.241000px;}
.y13{bottom:300.154500px;}
.y1ae{bottom:302.286052px;}
.y1d8{bottom:302.425727px;}
.yf0{bottom:305.119566px;}
.y2d4{bottom:311.626500px;}
.y9c{bottom:311.799000px;}
.y181{bottom:312.201058px;}
.y14f{bottom:312.771000px;}
.y68{bottom:313.171553px;}
.y3e{bottom:313.422000px;}
.y210{bottom:313.723543px;}
.y233{bottom:315.229566px;}
.y278{bottom:317.725500px;}
.y12{bottom:318.043500px;}
.y130{bottom:318.057000px;}
.y113{bottom:318.070500px;}
.yc6{bottom:320.571000px;}
.y1ad{bottom:321.546081px;}
.y1d7{bottom:321.685722px;}
.y190{bottom:324.028500px;}
.yef{bottom:324.199556px;}
.y232{bottom:324.769569px;}
.y29c{bottom:327.318000px;}
.y2d3{bottom:328.887000px;}
.y9b{bottom:330.628500px;}
.y180{bottom:331.461053px;}
.y14e{bottom:331.600500px;}
.y3d{bottom:332.251500px;}
.y67{bottom:332.431581px;}
.y20f{bottom:332.983539px;}
.y11{bottom:335.931000px;}
.y277{bottom:336.555000px;}
.y12f{bottom:336.886500px;}
.y112{bottom:336.900000px;}
.y1ac{bottom:340.806076px;}
.y1d6{bottom:340.945716px;}
.y18f{bottom:342.858000px;}
.yee{bottom:343.459551px;}
.y29b{bottom:344.892000px;}
.y2d2{bottom:346.147500px;}
.y9a{bottom:349.458000px;}
.y14d{bottom:350.430000px;}
.y17f{bottom:350.721081px;}
.y3c{bottom:351.081000px;}
.y126{bottom:351.241551px;}
.y66{bottom:351.691576px;}
.y20e{bottom:352.243533px;}
.y136{bottom:352.650067px;}
.y10{bottom:353.818500px;}
.yc5{bottom:355.092000px;}
.y276{bottom:355.384500px;}
.y12e{bottom:355.716000px;}
.y111{bottom:355.729500px;}
.y1ab{bottom:359.886066px;}
.y1d5{bottom:360.205710px;}
.y29a{bottom:362.466000px;}
.yed{bottom:362.719579px;}
.y2d1{bottom:363.408000px;}
.y99{bottom:368.287500px;}
.y14c{bottom:369.259500px;}
.y3b{bottom:369.910500px;}
.y17e{bottom:369.981076px;}
.y65{bottom:370.771566px;}
.y20d{bottom:371.503596px;}
.yc4{bottom:373.921500px;}
.y275{bottom:374.214000px;}
.y12d{bottom:374.545500px;}
.y18e{bottom:376.423500px;}
.y1aa{bottom:379.146060px;}
.y1d4{bottom:379.285735px;}
.y2d0{bottom:380.668500px;}
.yf{bottom:380.673000px;}
.yec{bottom:381.979574px;}
.y98{bottom:387.117000px;}
.y3a{bottom:388.740000px;}
.y299{bottom:389.007000px;}
.y17d{bottom:389.241071px;}
.y64{bottom:390.031560px;}
.y20c{bottom:390.763591px;}
.y14b{bottom:392.572500px;}
.yc3{bottom:392.751000px;}
.y274{bottom:393.043500px;}
.y12c{bottom:393.375000px;}
.y2cf{bottom:397.929000px;}
.y1a9{bottom:398.406072px;}
.y1d3{bottom:398.545729px;}
.ye{bottom:398.562000px;}
.y175{bottom:398.853000px;}
.y110{bottom:401.191500px;}
.yeb{bottom:401.239568px;}
.y97{bottom:405.946500px;}
.y39{bottom:407.569500px;}
.y17c{bottom:408.501065px;}
.y63{bottom:409.291572px;}
.y20b{bottom:409.843547px;}
.y273{bottom:411.873000px;}
.y2ce{bottom:415.188000px;}
.y298{bottom:415.548000px;}
.yc2{bottom:416.064000px;}
.yd{bottom:416.449500px;}
.y10f{bottom:417.630000px;}
.y1a8{bottom:417.666067px;}
.y1d2{bottom:417.805724px;}
.y14a{bottom:423.000000px;}
.y96{bottom:424.776000px;}
.yea{bottom:424.819559px;}
.y1c1{bottom:426.037500px;}
.y38{bottom:426.399000px;}
.y12b{bottom:426.940500px;}
.y17b{bottom:427.581055px;}
.y62{bottom:428.551567px;}
.y20a{bottom:429.103541px;}
.y272{bottom:430.702500px;}
.y2cd{bottom:432.448500px;}
.y10e{bottom:434.068500px;}
.yc1{bottom:436.237500px;}
.y1a7{bottom:441.246074px;}
.y297{bottom:442.087500px;}
.y149{bottom:442.233000px;}
.y95{bottom:443.605500px;}
.yc{bottom:444.798000px;}
.y1c0{bottom:444.867000px;}
.y37{bottom:445.228500px;}
.y12a{bottom:446.173500px;}
.y17a{bottom:446.841049px;}
.y61{bottom:447.811562px;}
.y209{bottom:448.363570px;}
.ye9{bottom:448.579570px;}
.y271{bottom:449.532000px;}
.y2cc{bottom:449.709000px;}
.y10d{bottom:450.507000px;}
.y1d1{bottom:454.525741px;}
.y94{bottom:462.435000px;}
.y1bf{bottom:463.696500px;}
.y36{bottom:464.058000px;}
.y132{bottom:464.662500px;}
.y60{bottom:466.891568px;}
.y10c{bottom:466.945500px;}
.y2cb{bottom:466.969500px;}
.y270{bottom:468.361500px;}
.y11d{bottom:468.601500px;}
.y296{bottom:468.628500px;}
.yc0{bottom:469.861500px;}
.yb{bottom:471.652500px;}
.y208{bottom:472.123565px;}
.y1d0{bottom:477.025741px;}
.y1a6{bottom:478.506068px;}
.y93{bottom:481.264500px;}
.y1be{bottom:482.526000px;}
.y35{bottom:482.887500px;}
.y10b{bottom:483.384000px;}
.y179{bottom:483.561066px;}
.y2ca{bottom:484.230000px;}
.ye8{bottom:485.839565px;}
.y5f{bottom:486.151564px;}
.y295{bottom:486.202500px;}
.y26f{bottom:487.191000px;}
.y137{bottom:487.732577px;}
.ybf{bottom:488.691000px;}
.ya{bottom:489.540000px;}
.y1a5{bottom:497.766064px;}
.y10a{bottom:499.822500px;}
.y92{bottom:500.094000px;}
.y1bd{bottom:501.355500px;}
.y2c9{bottom:501.490500px;}
.y34{bottom:501.717000px;}
.y5e{bottom:505.411558px;}
.ye7{bottom:505.819559px;}
.y26e{bottom:506.020500px;}
.y178{bottom:506.061066px;}
.y9{bottom:507.429000px;}
.ybe{bottom:507.520500px;}
.y207{bottom:509.383559px;}
.y294{bottom:512.743500px;}
.y1a4{bottom:517.026058px;}
.y2c8{bottom:518.751000px;}
.y91{bottom:518.923500px;}
.y1bc{bottom:520.185000px;}
.y109{bottom:523.462500px;}
.y26d{bottom:524.850000px;}
.y33{bottom:525.030000px;}
.y8{bottom:525.316500px;}
.ybd{bottom:526.350000px;}
.y206{bottom:528.643554px;}
.ye3{bottom:529.759558px;}
.y293{bottom:530.317500px;}
.y1f3{bottom:533.106000px;}
.y2c7{bottom:536.011500px;}
.y90{bottom:537.753000px;}
.y1bb{bottom:539.014500px;}
.ye4{bottom:542.899567px;}
.y7{bottom:543.204000px;}
.y26c{bottom:543.679500px;}
.ybc{bottom:545.179500px;}
.y205{bottom:547.723578px;}
.y292{bottom:547.891500px;}
.ye1{bottom:551.719563px;}
.y1f2{bottom:551.935500px;}
.y2c6{bottom:553.272000px;}
.y108{bottom:555.082500px;}
.y8f{bottom:556.582500px;}
.y5d{bottom:560.131566px;}
.y6{bottom:561.093000px;}
.y26b{bottom:562.509000px;}
.ybb{bottom:564.009000px;}
.y291{bottom:565.465500px;}
.y204{bottom:566.983573px;}
.y5c{bottom:569.671569px;}
.y2c5{bottom:570.531000px;}
.y1f1{bottom:570.765000px;}
.y1a3{bottom:571.746066px;}
.y1ba{bottom:572.580000px;}
.y8e{bottom:575.412000px;}
.y5{bottom:578.980500px;}
.y1a2{bottom:581.286069px;}
.y26a{bottom:581.337000px;}
.yba{bottom:582.838500px;}
.y290{bottom:583.039500px;}
.y203{bottom:586.243567px;}
.y2c4{bottom:587.791500px;}
.y1f0{bottom:589.594500px;}
.y107{bottom:590.752500px;}
.y1a1{bottom:595.009500px;}
.y4{bottom:596.868000px;}
.y269{bottom:600.166500px;}
.y32{bottom:600.180000px;}
.y28f{bottom:600.613500px;}
.yb9{bottom:601.668000px;}
.y2c3{bottom:605.052000px;}
.y1ef{bottom:608.424000px;}
.y8d{bottom:608.977500px;}
.yda{bottom:613.182000px;}
.y1{bottom:614.756964px;}
.ydc{bottom:615.979566px;}
.y28e{bottom:618.187500px;}
.y268{bottom:618.996000px;}
.yb8{bottom:620.497500px;}
.y2c2{bottom:622.312500px;}
.y202{bottom:625.123565px;}
.ydb{bottom:625.519569px;}
.y1ee{bottom:627.253500px;}
.y5b{bottom:631.407000px;}
.y31{bottom:637.569000px;}
.y267{bottom:637.825500px;}
.yb7{bottom:639.327000px;}
.y2c1{bottom:639.573000px;}
.y201{bottom:645.463549px;}
.y1ed{bottom:646.081500px;}
.y28d{bottom:653.695500px;}
.y70{bottom:654.958549px;}
.y266{bottom:656.655000px;}
.y2c0{bottom:656.833500px;}
.y30{bottom:657.027000px;}
.yb6{bottom:658.156500px;}
.y1ec{bottom:664.911000px;}
.y200{bottom:665.623565px;}
.y28c{bottom:672.525000px;}
.y2bf{bottom:674.094000px;}
.y265{bottom:675.484500px;}
.y2f{bottom:676.483500px;}
.yb5{bottom:676.986000px;}
.y1eb{bottom:683.740500px;}
.y1ff{bottom:685.963549px;}
.y123{bottom:686.761574px;}
.y28b{bottom:691.354500px;}
.y264{bottom:694.314000px;}
.yb4{bottom:695.815500px;}
.y2e{bottom:695.940000px;}
.y1ea{bottom:702.570000px;}
.y134{bottom:705.450066px;}
.y122{bottom:706.021568px;}
.y1fe{bottom:706.123565px;}
.y174{bottom:708.072000px;}
.y2be{bottom:708.613500px;}
.y28a{bottom:710.184000px;}
.y263{bottom:713.143500px;}
.yb3{bottom:714.645000px;}
.y133{bottom:714.990069px;}
.y2d{bottom:715.398000px;}
.y121{bottom:725.281564px;}
.y2bd{bottom:725.874000px;}
.y1e9{bottom:725.883000px;}
.y1fd{bottom:726.463549px;}
.y173{bottom:726.901500px;}
.y289{bottom:729.013500px;}
.yb2{bottom:733.474500px;}
.y2c{bottom:734.854500px;}
.y262{bottom:736.456500px;}
.y2bc{bottom:743.134500px;}
.y120{bottom:744.541558px;}
.y172{bottom:745.731000px;}
.y1fc{bottom:747.343564px;}
.y288{bottom:747.843000px;}
.yb1{bottom:752.304000px;}
.y2b{bottom:754.312500px;}
.y177{bottom:758.421066px;}
.y1e8{bottom:759.507000px;}
.y2bb{bottom:760.395000px;}
.y171{bottom:764.560500px;}
.y287{bottom:766.671000px;}
.y176{bottom:767.961069px;}
.y261{bottom:770.080500px;}
.yb0{bottom:771.133500px;}
.y2a{bottom:773.769000px;}
.y1fb{bottom:777.403565px;}
.y2ba{bottom:777.655500px;}
.y1e7{bottom:778.336500px;}
.y1cf{bottom:782.845702px;}
.y170{bottom:783.390000px;}
.y286{bottom:785.500500px;}
.y260{bottom:788.910000px;}
.yaf{bottom:789.963000px;}
.y29{bottom:793.225500px;}
.y2b9{bottom:794.916000px;}
.y1e6{bottom:797.166000px;}
.y11f{bottom:799.261566px;}
.y1ce{bottom:802.105731px;}
.y16f{bottom:802.219500px;}
.y285{bottom:804.330000px;}
.yae{bottom:806.062500px;}
.yad{bottom:806.550000px;}
.y25f{bottom:807.739500px;}
.yac{bottom:808.792500px;}
.y11e{bottom:808.801569px;}
.y2b8{bottom:812.176500px;}
.y28{bottom:812.683500px;}
.y1fa{bottom:813.223561px;}
.y1e5{bottom:815.995500px;}
.y16e{bottom:821.049000px;}
.y1cd{bottom:821.365726px;}
.y5a{bottom:823.159500px;}
.y25e{bottom:826.569000px;}
.y2b7{bottom:829.437000px;}
.y22b{bottom:830.131281px;}
.y27{bottom:832.140000px;}
.y1f9{bottom:832.303568px;}
.y135{bottom:832.972583px;}
.y1e4{bottom:834.825000px;}
.y124{bottom:835.503066px;}
.y16d{bottom:839.878500px;}
.y1cc{bottom:840.445716px;}
.yab{bottom:840.529500px;}
.y59{bottom:841.989000px;}
.y25d{bottom:845.398500px;}
.y2b6{bottom:846.697500px;}
.y22a{bottom:849.391276px;}
.y1f8{bottom:851.563564px;}
.y26{bottom:851.596500px;}
.y1cb{bottom:859.705710px;}
.y58{bottom:860.818500px;}
.ya8{bottom:862.612500px;}
.yaa{bottom:863.091000px;}
.y2b5{bottom:863.956500px;}
.y229{bottom:868.471266px;}
.y1f7{bottom:870.823558px;}
.ya9{bottom:872.524500px;}
.y16c{bottom:873.444000px;}
.y25c{bottom:878.964000px;}
.y1ca{bottom:878.965722px;}
.y1e3{bottom:879.369000px;}
.y57{bottom:879.648000px;}
.y2b4{bottom:881.217000px;}
.y228{bottom:887.731260px;}
.y25{bottom:890.182500px;}
.y1e2{bottom:895.807500px;}
.y153{bottom:895.873500px;}
.yd9{bottom:896.685000px;}
.y1a0{bottom:898.029000px;}
.y1c9{bottom:898.225717px;}
.y56{bottom:898.477500px;}
.y231{bottom:901.393500px;}
.y24{bottom:906.322500px;}
.y227{bottom:906.991272px;}
.y1e1{bottom:912.244500px;}
.yd8{bottom:915.514500px;}
.y2b3{bottom:915.738000px;}
.y19f{bottom:916.858500px;}
.y55{bottom:917.307000px;}
.y1c8{bottom:921.805724px;}
.y23{bottom:922.461000px;}
.y1f6{bottom:925.543566px;}
.y226{bottom:926.251267px;}
.y1e0{bottom:928.683000px;}
.y2b2{bottom:932.998500px;}
.yd7{bottom:934.344000px;}
.y1f5{bottom:935.083569px;}
.y19e{bottom:935.688000px;}
.y54{bottom:936.136500px;}
.y1df{bottom:945.121500px;}
.y225{bottom:945.511261px;}
.y2b1{bottom:950.259000px;}
.yd6{bottom:953.173500px;}
.y19d{bottom:954.517500px;}
.y53{bottom:954.966000px;}
.y1c7{bottom:959.065718px;}
.y1de{bottom:961.560000px;}
.y224{bottom:964.591268px;}
.y2b0{bottom:967.519500px;}
.y22{bottom:971.478000px;}
.yd5{bottom:972.003000px;}
.y19c{bottom:973.347000px;}
.y52{bottom:973.795500px;}
.y1c6{bottom:978.325714px;}
.y223{bottom:983.851264px;}
.y2af{bottom:984.780000px;}
.y1dd{bottom:985.201500px;}
.yd4{bottom:990.832500px;}
.y19b{bottom:992.176500px;}
.y51{bottom:992.625000px;}
.y1c5{bottom:997.585708px;}
.y2ae{bottom:1002.040500px;}
.y222{bottom:1003.111258px;}
.y21{bottom:1008.240000px;}
.yd3{bottom:1009.662000px;}
.y19a{bottom:1011.006000px;}
.y50{bottom:1011.454500px;}
.y1dc{bottom:1016.820000px;}
.y2ad{bottom:1019.299500px;}
.y4f{bottom:1030.284000px;}
.yd2{bottom:1032.973500px;}
.y199{bottom:1034.319000px;}
.y20{bottom:1036.485000px;}
.y2ac{bottom:1036.560000px;}
.y4e{bottom:1049.113500px;}
.y1c4{bottom:1052.305716px;}
.yd1{bottom:1053.148500px;}
.y2ab{bottom:1053.820500px;}
.y221{bottom:1057.831266px;}
.y1c3{bottom:1061.845719px;}
.y1f{bottom:1064.728500px;}
.y220{bottom:1067.371269px;}
.y4d{bottom:1067.943000px;}
.y2aa{bottom:1071.081000px;}
.y4c{bottom:1086.772500px;}
.y2a9{bottom:1088.341500px;}
.y1e{bottom:1092.972000px;}
.y4b{bottom:1105.602000px;}
.ydd{bottom:1133.941558px;}
.y1c{bottom:1136.460000px;}
.ye5{bottom:1151.761570px;}
.y4a{bottom:1168.366500px;}
.h26{height:-278.718070px;}
.h23{height:-260.898058px;}
.h1c{height:2.391024px;}
.h2c{height:15.659981px;}
.h15{height:15.660049px;}
.h2a{height:15.839985px;}
.h16{height:16.200028px;}
.h2{height:25.508090px;}
.h19{height:28.214083px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h1d{height:33.072749px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.hc{height:34.813397px;}
.h10{height:35.052500px;}
.h13{height:35.215572px;}
.h12{height:35.356905px;}
.hd{height:38.896243px;}
.he{height:39.165235px;}
.h28{height:39.420588px;}
.h34{height:39.434227px;}
.h18{height:39.446956px;}
.h25{height:40.232264px;}
.hb{height:43.217759px;}
.hf{height:43.516637px;}
.h14{height:43.625275px;}
.h17{height:43.654456px;}
.h27{height:43.800360px;}
.h9{height:43.815515px;}
.h1e{height:46.084950px;}
.h21{height:46.090950px;}
.h1f{height:46.714950px;}
.h7{height:50.931027px;}
.h24{height:57.573691px;}
.h1b{height:71.724749px;}
.ha{height:77.792486px;}
.h8{height:87.128261px;}
.h20{height:92.968637px;}
.h1a{height:130.911024px;}
.h11{height:168.112500px;}
.h33{height:219.153000px;}
.h2d{height:224.673000px;}
.h31{height:254.154000px;}
.h22{height:259.861500px;}
.h30{height:278.119650px;}
.h2f{height:279.379500px;}
.h2e{height:289.471500px;}
.h29{height:651.945000px;}
.h2b{height:655.885500px;}
.h32{height:810.397200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w14{width:-37.557027px;}
.w6{width:-24.507008px;}
.w19{width:-1.141533px;}
.w18{width:1.918502px;}
.wd{width:3.240006px;}
.w16{width:7.559966px;}
.w5{width:7.560001px;}
.we{width:9.719982px;}
.wf{width:10.620003px;}
.wc{width:11.160016px;}
.w12{width:13.319962px;}
.wa{width:13.319997px;}
.w10{width:24.840019px;}
.w8{width:25.560001px;}
.wb{width:26.819996px;}
.w13{width:26.820030px;}
.w11{width:33.659981px;}
.w9{width:33.660015px;}
.w2{width:75.364879px;}
.w3{width:172.375207px;}
.w1a{width:361.053000px;}
.w4{width:492.369000px;}
.w1f{width:497.431500px;}
.w1d{width:517.767000px;}
.w1c{width:519.030000px;}
.w7{width:530.550000px;}
.w20{width:543.156000px;}
.w1e{width:544.885500px;}
.w1b{width:562.543500px;}
.w17{width:575.476500px;}
.w15{width:587.301000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x20{left:-239.484000px;}
.x9a{left:-200.628000px;}
.x5b{left:-199.593000px;}
.x8f{left:-197.631000px;}
.x75{left:-195.111000px;}
.x8b{left:-193.848000px;}
.x81{left:-192.745500px;}
.x96{left:-186.439500px;}
.x21{left:-43.824002px;}
.x22{left:-11.963994px;}
.x9c{left:-4.968002px;}
.x69{left:-3.933002px;}
.x90{left:-1.971002px;}
.x0{left:0.000000px;}
.x7d{left:1.337998px;}
.x82{left:2.914498px;}
.x98{left:9.220498px;}
.x93{left:19.540501px;}
.x9b{left:26.892006px;}
.x6a{left:27.927006px;}
.x2{left:29.274117px;}
.x76{left:32.409006px;}
.x8c{left:33.672006px;}
.x83{left:34.774506px;}
.x97{left:41.080506px;}
.x4{left:52.525500px;}
.x1{left:53.574073px;}
.x3{left:59.946413px;}
.x71{left:71.666994px;}
.x9d{left:85.848000px;}
.x25{left:90.996011px;}
.x6d{left:94.346999px;}
.x6f{left:97.046992px;}
.x70{left:106.947012px;}
.x6c{left:108.746985px;}
.x6e{left:117.027002px;}
.x94{left:137.800512px;}
.x8d{left:139.692012px;}
.x84{left:140.794512px;}
.x6{left:248.526000px;}
.x5{left:249.591000px;}
.x7c{left:280.338015px;}
.x8{left:281.479500px;}
.x92{left:283.171500px;}
.x62{left:284.967001px;}
.x11{left:286.002000px;}
.x12{left:293.473500px;}
.x13{left:297.285000px;}
.x85{left:298.695000px;}
.xd{left:303.817500px;}
.x72{left:306.219000px;}
.x78{left:307.900500px;}
.x7e{left:309.043500px;}
.x7{left:310.242000px;}
.xe{left:311.289000px;}
.xf{left:315.100500px;}
.x10{left:322.572000px;}
.x2a{left:329.101500px;}
.x2b{left:332.913000px;}
.x26{left:343.938000px;}
.x58{left:346.062000px;}
.x2c{left:347.856000px;}
.x73{left:353.796000px;}
.x74{left:355.369500px;}
.x27{left:358.881000px;}
.x86{left:360.697500px;}
.x28{left:362.692500px;}
.x14{left:364.944000px;}
.x15{left:372.417000px;}
.x29{left:377.637000px;}
.x16{left:379.851000px;}
.x87{left:381.691500px;}
.x8e{left:388.515000px;}
.x17{left:394.795500px;}
.x18{left:398.395500px;}
.x3d{left:400.732500px;}
.x67{left:401.966967px;}
.x19{left:413.340000px;}
.x1a{left:420.714000px;}
.x1b{left:435.658500px;}
.x53{left:440.670000px;}
.x55{left:443.139000px;}
.x8a{left:444.618000px;}
.x5c{left:449.957988px;}
.x23{left:472.347006px;}
.x9{left:474.315000px;}
.x5d{left:475.697993px;}
.xa{left:481.786500px;}
.xb{left:489.408000px;}
.x5e{left:495.137992px;}
.xc{left:496.879500px;}
.x99{left:499.720481px;}
.x5f{left:505.577990px;}
.x56{left:519.525000px;}
.x91{left:522.189030px;}
.x61{left:524.298007px;}
.x60{left:525.738006px;}
.x6b{left:529.227030px;}
.x3e{left:531.343500px;}
.x3f{left:537.456000px;}
.x45{left:542.802000px;}
.x95{left:547.120508px;}
.x46{left:557.745000px;}
.x47{left:561.471000px;}
.x40{left:563.376000px;}
.x59{left:565.972500px;}
.x2d{left:569.401500px;}
.x50{left:570.511500px;}
.x48{left:576.414000px;}
.x57{left:578.641500px;}
.x5a{left:580.917000px;}
.x2e{left:584.346000px;}
.x51{left:585.454500px;}
.x54{left:589.695000px;}
.x2f{left:591.967500px;}
.x63{left:597.557967px;}
.x30{left:606.910500px;}
.x41{left:621.048000px;}
.x64{left:622.578025px;}
.x65{left:625.818030px;}
.x66{left:631.938033px;}
.x1c{left:638.335500px;}
.x7f{left:644.050500px;}
.x42{left:645.883500px;}
.x80{left:650.775000px;}
.x1d{left:653.280000px;}
.x43{left:655.966500px;}
.x1e{left:656.967000px;}
.x3b{left:663.714000px;}
.x44{left:666.364500px;}
.x88{left:668.113500px;}
.x1f{left:671.911500px;}
.x3c{left:680.974500px;}
.x35{left:684.241500px;}
.x4c{left:685.764000px;}
.x89{left:689.107500px;}
.x52{left:692.518500px;}
.x36{left:699.184500px;}
.x4d{left:700.707000px;}
.x4e{left:704.458500px;}
.x37{left:706.806000px;}
.x4f{left:719.403000px;}
.x38{left:721.750500px;}
.xa0{left:724.075500px;}
.x39{left:734.746500px;}
.x9e{left:744.442500px;}
.x49{left:746.199000px;}
.xa1{left:750.975000px;}
.x3a{left:753.018000px;}
.x31{left:754.722000px;}
.x4a{left:761.143500px;}
.x24{left:766.467008px;}
.x32{left:769.666500px;}
.x9f{left:771.342000px;}
.x33{left:777.288000px;}
.x4b{left:783.709500px;}
.x34{left:792.231000px;}
.x79{left:800.026500px;}
.x7a{left:808.243500px;}
.x68{left:817.698027px;}
.x7b{left:823.148998px;}
.x77{left:825.960011px;}
@media print{
.v8{vertical-align:-64.528000pt;}
.vc{vertical-align:-11.850667pt;}
.va{vertical-align:-10.938667pt;}
.ve{vertical-align:-9.909333pt;}
.vf{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.034667pt;}
.vd{vertical-align:10.879880pt;}
.v5{vertical-align:13.125333pt;}
.v9{vertical-align:21.237333pt;}
.vb{vertical-align:32.112000pt;}
.v7{vertical-align:34.357333pt;}
.v2{vertical-align:44.277333pt;}
.v3{vertical-align:48.368000pt;}
.v4{vertical-align:69.600000pt;}
.v1{vertical-align:114.240000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000015pt;}
.ls41{letter-spacing:0.000361pt;}
.ls2{letter-spacing:0.000533pt;}
.lsc{letter-spacing:0.001007pt;}
.ls21{letter-spacing:0.002114pt;}
.ls3d{letter-spacing:0.002805pt;}
.lsd{letter-spacing:0.002825pt;}
.ls3f{letter-spacing:0.004267pt;}
.ls24{letter-spacing:0.037766pt;}
.ls2d{letter-spacing:0.158720pt;}
.lsb{letter-spacing:0.158724pt;}
.ls2a{letter-spacing:0.158964pt;}
.ls32{letter-spacing:0.225512pt;}
.ls7{letter-spacing:0.230294pt;}
.ls2b{letter-spacing:0.230298pt;}
.ls27{letter-spacing:0.230418pt;}
.ls28{letter-spacing:0.235596pt;}
.ls9{letter-spacing:0.235720pt;}
.lsa{letter-spacing:0.318948pt;}
.ls8{letter-spacing:0.319004pt;}
.ls29{letter-spacing:0.319068pt;}
.ls2c{letter-spacing:0.319072pt;}
.ls1d{letter-spacing:0.596214pt;}
.ls18{letter-spacing:0.601548pt;}
.ls17{letter-spacing:0.663467pt;}
.ls19{letter-spacing:0.663552pt;}
.ls5{letter-spacing:1.133683pt;}
.ls11{letter-spacing:1.324800pt;}
.ls0{letter-spacing:1.654338pt;}
.ls25{letter-spacing:1.791314pt;}
.ls30{letter-spacing:2.223740pt;}
.ls2f{letter-spacing:2.223860pt;}
.ls31{letter-spacing:2.223984pt;}
.ls1{letter-spacing:9.298933pt;}
.ls16{letter-spacing:9.518324pt;}
.ls12{letter-spacing:9.523658pt;}
.ls4{letter-spacing:10.626533pt;}
.lse{letter-spacing:10.968429pt;}
.ls15{letter-spacing:11.635096pt;}
.ls3b{letter-spacing:11.954133pt;}
.ls3c{letter-spacing:11.959467pt;}
.ls40{letter-spacing:12.044800pt;}
.ls3e{letter-spacing:12.117601pt;}
.ls22{letter-spacing:12.964663pt;}
.ls34{letter-spacing:13.017797pt;}
.ls36{letter-spacing:13.124065pt;}
.ls39{letter-spacing:13.230333pt;}
.ls23{letter-spacing:13.283467pt;}
.ls3a{letter-spacing:13.336601pt;}
.ls38{letter-spacing:13.549136pt;}
.ls14{letter-spacing:13.649754pt;}
.ls1b{letter-spacing:15.400429pt;}
.ls1e{letter-spacing:16.025548pt;}
.ls35{letter-spacing:16.790302pt;}
.ls26{letter-spacing:17.162239pt;}
.ls33{letter-spacing:18.224916pt;}
.ls2e{letter-spacing:18.596853pt;}
.ls37{letter-spacing:19.659531pt;}
.ls10{letter-spacing:22.440429pt;}
.ls3{letter-spacing:25.292137pt;}
.lsf{letter-spacing:28.704423pt;}
.ls1f{letter-spacing:29.992429pt;}
.ls1a{letter-spacing:476.036214pt;}
.ls1c{letter-spacing:618.036214pt;}
.ls20{letter-spacing:626.814881pt;}
.ws6a{word-spacing:-53.122000pt;}
.ws6b{word-spacing:-37.121440pt;}
.ws45{word-spacing:-13.283467pt;}
.ws59{word-spacing:-13.280500pt;}
.ws33{word-spacing:-12.000500pt;}
.ws34{word-spacing:-11.955200pt;}
.ws58{word-spacing:-11.724606pt;}
.ws56{word-spacing:-11.686840pt;}
.ws32{word-spacing:-10.720400pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws50{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws57{word-spacing:-8.166717pt;}
.wsa5{word-spacing:-2.630144pt;}
.ws71{word-spacing:-2.497292pt;}
.ws7f{word-spacing:-2.391024pt;}
.ws44{word-spacing:-2.286183pt;}
.ws80{word-spacing:-2.178489pt;}
.ws25{word-spacing:-2.125355pt;}
.ws87{word-spacing:-1.965953pt;}
.ws1{word-spacing:-1.696326pt;}
.wsa4{word-spacing:-1.673728pt;}
.ws42{word-spacing:-1.594016pt;}
.ws5b{word-spacing:-1.578086pt;}
.ws8e{word-spacing:-1.482445pt;}
.ws5c{word-spacing:-1.386803pt;}
.ws8f{word-spacing:-1.291162pt;}
.ws7d{word-spacing:-1.275213pt;}
.ws9f{word-spacing:-1.243341pt;}
.ws3e{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws36{word-spacing:-1.168945pt;}
.ws35{word-spacing:-1.115811pt;}
.ws7{word-spacing:-1.041421pt;}
.ws9{word-spacing:-0.929840pt;}
.ws37{word-spacing:-0.903276pt;}
.wsa9{word-spacing:-0.860774pt;}
.ws68{word-spacing:-0.584473pt;}
.ws81{word-spacing:-0.531339pt;}
.wsa3{word-spacing:-0.334746pt;}
.ws55{word-spacing:-0.318803pt;}
.ws27{word-spacing:-0.265669pt;}
.ws99{word-spacing:-0.239104pt;}
.ws31{word-spacing:-0.212535pt;}
.ws18{word-spacing:-0.191283pt;}
.ws1f{word-spacing:-0.159402pt;}
.ws8b{word-spacing:-0.143462pt;}
.ws29{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws47{word-spacing:-0.053134pt;}
.ws91{word-spacing:-0.047821pt;}
.wsaa{word-spacing:-0.024559pt;}
.ws95{word-spacing:-0.009540pt;}
.ws9c{word-spacing:-0.008516pt;}
.ws93{word-spacing:-0.003046pt;}
.wsa6{word-spacing:-0.002978pt;}
.ws9a{word-spacing:-0.001348pt;}
.ws2b{word-spacing:-0.001229pt;}
.wsa2{word-spacing:-0.000811pt;}
.ws97{word-spacing:-0.000196pt;}
.ws3{word-spacing:0.000000pt;}
.wsa0{word-spacing:0.000256pt;}
.ws5{word-spacing:0.003685pt;}
.ws14{word-spacing:0.047821pt;}
.ws20{word-spacing:0.053134pt;}
.ws8d{word-spacing:0.095642pt;}
.ws23{word-spacing:0.106268pt;}
.ws1b{word-spacing:0.143462pt;}
.ws2f{word-spacing:0.159402pt;}
.ws1a{word-spacing:0.191283pt;}
.ws11{word-spacing:0.212536pt;}
.ws17{word-spacing:0.239104pt;}
.ws21{word-spacing:0.265669pt;}
.ws28{word-spacing:0.318803pt;}
.ws52{word-spacing:0.371937pt;}
.ws82{word-spacing:0.425071pt;}
.ws8c{word-spacing:0.573850pt;}
.ws54{word-spacing:0.584473pt;}
.ws5a{word-spacing:0.594229pt;}
.ws74{word-spacing:0.637606pt;}
.ws46{word-spacing:0.663733pt;}
.ws63{word-spacing:0.717312pt;}
.ws3f{word-spacing:0.743874pt;}
.ws3a{word-spacing:0.797008pt;}
.ws76{word-spacing:0.850142pt;}
.ws8{word-spacing:0.892646pt;}
.ws2a{word-spacing:0.903276pt;}
.ws62{word-spacing:0.956416pt;}
.ws4d{word-spacing:1.168945pt;}
.ws24{word-spacing:1.222079pt;}
.ws75{word-spacing:1.275213pt;}
.ws96{word-spacing:1.338982pt;}
.ws4a{word-spacing:1.381481pt;}
.ws79{word-spacing:1.434614pt;}
.ws5e{word-spacing:1.540882pt;}
.ws67{word-spacing:1.673728pt;}
.ws66{word-spacing:1.721549pt;}
.ws4c{word-spacing:1.753418pt;}
.ws53{word-spacing:1.806551pt;}
.ws86{word-spacing:1.859685pt;}
.ws39{word-spacing:1.912819pt;}
.ws65{word-spacing:1.960653pt;}
.ws19{word-spacing:2.104115pt;}
.ws1e{word-spacing:2.125355pt;}
.ws4f{word-spacing:2.138251pt;}
.ws4{word-spacing:2.229473pt;}
.ws3b{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws7c{word-spacing:2.497292pt;}
.ws41{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.ws7a{word-spacing:2.603559pt;}
.ws48{word-spacing:2.656693pt;}
.ws78{word-spacing:2.677965pt;}
.ws69{word-spacing:2.709827pt;}
.ws7b{word-spacing:2.816095pt;}
.ws9d{word-spacing:2.859409pt;}
.ws9e{word-spacing:2.861722pt;}
.ws1c{word-spacing:2.861926pt;}
.wsa8{word-spacing:2.862797pt;}
.wsa7{word-spacing:2.863428pt;}
.ws94{word-spacing:2.864452pt;}
.ws92{word-spacing:2.869248pt;}
.ws90{word-spacing:2.872218pt;}
.ws77{word-spacing:2.964890pt;}
.ws98{word-spacing:3.012710pt;}
.ws1d{word-spacing:3.188032pt;}
.ws5f{word-spacing:3.400567pt;}
.ws13{word-spacing:3.443098pt;}
.ws72{word-spacing:3.506835pt;}
.ws51{word-spacing:3.554193pt;}
.ws2d{word-spacing:3.559969pt;}
.ws88{word-spacing:3.719371pt;}
.ws4e{word-spacing:3.772505pt;}
.ws8a{word-spacing:3.777843pt;}
.ws61{word-spacing:3.825638pt;}
.ws15{word-spacing:3.825664pt;}
.ws60{word-spacing:3.878772pt;}
.ws9b{word-spacing:3.921306pt;}
.ws49{word-spacing:3.931906pt;}
.ws84{word-spacing:3.985040pt;}
.ws70{word-spacing:4.091308pt;}
.ws89{word-spacing:4.112589pt;}
.wsf{word-spacing:4.240070pt;}
.ws6d{word-spacing:4.250709pt;}
.ws10{word-spacing:4.314458pt;}
.ws30{word-spacing:4.463245pt;}
.ws3d{word-spacing:4.516379pt;}
.ws64{word-spacing:4.569513pt;}
.ws22{word-spacing:4.622646pt;}
.wsa1{word-spacing:4.925542pt;}
.ws6c{word-spacing:4.941450pt;}
.ws83{word-spacing:5.153985pt;}
.ws26{word-spacing:5.313387pt;}
.ws7e{word-spacing:5.685324pt;}
.ws85{word-spacing:6.004127pt;}
.ws40{word-spacing:6.057261pt;}
.ws2e{word-spacing:6.110395pt;}
.ws73{word-spacing:6.376064pt;}
.wsd{word-spacing:6.918010pt;}
.ws38{word-spacing:7.119938pt;}
.ws3c{word-spacing:7.279340pt;}
.ws43{word-spacing:7.332474pt;}
.ws4b{word-spacing:7.757545pt;}
.wsb{word-spacing:10.823338pt;}
.wsc{word-spacing:14.319536pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws5d{word-spacing:796.694528pt;}
.ws6f{word-spacing:940.109107pt;}
.ws6e{word-spacing:952.064307pt;}
._7{margin-left:-10.616218pt;}
._11{margin-left:-6.535466pt;}
._9{margin-left:-4.845821pt;}
._2{margin-left:-3.421811pt;}
._1b{margin-left:-2.149611pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._1a{width:3.187320pt;}
._1e{width:4.350571pt;}
._1d{width:5.442855pt;}
._1c{width:6.386468pt;}
._20{width:7.692335pt;}
._31{width:8.718342pt;}
._5{width:10.132188pt;}
._3{width:11.530016pt;}
._18{width:12.599450pt;}
._b{width:14.039467pt;}
._c{width:15.111373pt;}
._f{width:16.106288pt;}
._17{width:17.182418pt;}
._13{width:18.596853pt;}
._12{width:19.978334pt;}
._d{width:21.021303pt;}
._e{width:23.565209pt;}
._a{width:25.823232pt;}
._6{width:27.188522pt;}
._10{width:30.027361pt;}
._30{width:30.983771pt;}
._3a{width:32.305391pt;}
._16{width:35.227754pt;}
._21{width:39.060118pt;}
._3c{width:54.993920pt;}
._8{width:61.659125pt;}
._3b{width:78.904320pt;}
._36{width:469.648962pt;}
._35{width:543.834058pt;}
._25{width:677.319913pt;}
._28{width:720.941828pt;}
._32{width:726.788153pt;}
._2b{width:727.928218pt;}
._37{width:754.863620pt;}
._2f{width:765.897933pt;}
._22{width:767.634858pt;}
._26{width:773.554641pt;}
._23{width:804.733105pt;}
._2d{width:814.292582pt;}
._14{width:815.600199pt;}
._27{width:826.436347pt;}
._29{width:844.148682pt;}
._24{width:847.693655pt;}
._2c{width:852.740506pt;}
._2e{width:861.826458pt;}
._2a{width:880.620032pt;}
._34{width:927.510120pt;}
._33{width:940.259400pt;}
._1f{width:968.945695pt;}
._39{width:1888.336455pt;}
._19{width:1910.206071pt;}
._38{width:2296.984533pt;}
._15{width:2318.237867pt;}
.fsd{font-size:37.121440pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fsc{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.881600pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.002000pt;}
.fs9{font-size:53.122000pt;}
.fs4{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:114.229120pt;}
.y16b{bottom:-682.849280pt;}
.y25b{bottom:-672.275975pt;}
.y16a{bottom:-664.929297pt;}
.y25a{bottom:-655.155919pt;}
.y169{bottom:-646.849280pt;}
.y259{bottom:-638.035924pt;}
.y168{bottom:-628.929297pt;}
.y258{bottom:-621.075963pt;}
.y167{bottom:-610.849280pt;}
.y257{bottom:-603.955968pt;}
.y166{bottom:-592.929297pt;}
.y256{bottom:-586.835912pt;}
.y165{bottom:-574.209265pt;}
.y255{bottom:-569.715917pt;}
.y254{bottom:-552.595921pt;}
.y164{bottom:-547.649268pt;}
.y253{bottom:-535.635961pt;}
.y252{bottom:-518.515965pt;}
.y163{bottom:-515.809302pt;}
.y251{bottom:-501.395970pt;}
.y162{bottom:-498.689246pt;}
.y250{bottom:-484.275914pt;}
.y24f{bottom:-467.155919pt;}
.y161{bottom:-466.049292pt;}
.y8c{bottom:-459.865216pt;}
.y24e{bottom:-450.195958pt;}
.y1b9{bottom:-448.901324pt;}
.y160{bottom:-446.209265pt;}
.y8b{bottom:-442.745221pt;}
.y24d{bottom:-433.075963pt;}
.y1b8{bottom:-429.061236pt;}
.y8a{bottom:-425.625287pt;}
.y24c{bottom:-415.955968pt;}
.y89{bottom:-408.505292pt;}
.y24b{bottom:-398.835912pt;}
.y88{bottom:-391.545270pt;}
.y106{bottom:-389.102554pt;}
.y24a{bottom:-381.715917pt;}
.y87{bottom:-374.425275pt;}
.y105{bottom:-371.982620pt;}
.y249{bottom:-364.755956pt;}
.y86{bottom:-357.305280pt;}
.y104{bottom:-354.862625pt;}
.y248{bottom:-347.635961pt;}
.y85{bottom:-340.185285pt;}
.y103{bottom:-337.902603pt;}
.y247{bottom:-330.515965pt;}
.y84{bottom:-323.065290pt;}
.y102{bottom:-320.782608pt;}
.y246{bottom:-313.395970pt;}
.y148{bottom:-307.653299pt;}
.y83{bottom:-306.105268pt;}
.y101{bottom:-303.662613pt;}
.y245{bottom:-296.275914pt;}
.y147{bottom:-290.533304pt;}
.y82{bottom:-288.985273pt;}
.y100{bottom:-286.542618pt;}
.y244{bottom:-279.315953pt;}
.y146{bottom:-273.413248pt;}
.y81{bottom:-271.865277pt;}
.yff{bottom:-269.422623pt;}
.y243{bottom:-262.195958pt;}
.y145{bottom:-256.453287pt;}
.y80{bottom:-254.745282pt;}
.yfe{bottom:-252.462601pt;}
.y242{bottom:-245.075963pt;}
.y144{bottom:-239.333292pt;}
.y7f{bottom:-237.625287pt;}
.y18d{bottom:-237.047946pt;}
.y241{bottom:-227.955968pt;}
.y143{bottom:-222.213297pt;}
.y7e{bottom:-220.665265pt;}
.y18c{bottom:-219.127963pt;}
.yfd{bottom:-217.742630pt;}
.y240{bottom:-210.835912pt;}
.y142{bottom:-205.093302pt;}
.y7d{bottom:-203.545270pt;}
.y18b{bottom:-201.047946pt;}
.yfc{bottom:-199.822586pt;}
.y23f{bottom:-193.875951pt;}
.y7c{bottom:-186.425275pt;}
.y141{bottom:-184.133280pt;}
.y18a{bottom:-183.127963pt;}
.yfb{bottom:-181.742630pt;}
.y23e{bottom:-176.755956pt;}
.y7b{bottom:-169.305280pt;}
.y15f{bottom:-168.289282pt;}
.y189{bottom:-165.047946pt;}
.yfa{bottom:-163.822586pt;}
.y1b7{bottom:-158.341265pt;}
.y23d{bottom:-155.635961pt;}
.y7a{bottom:-152.185285pt;}
.y15e{bottom:-151.169287pt;}
.y140{bottom:-151.013285pt;}
.y188{bottom:-147.127963pt;}
.yf9{bottom:-145.742630pt;}
.y1b6{bottom:-141.221270pt;}
.y79{bottom:-135.065290pt;}
.y15d{bottom:-134.049262pt;}
.y13f{bottom:-133.893290pt;}
.y187{bottom:-128.407931pt;}
.yf8{bottom:-127.822586pt;}
.y1b5{bottom:-124.101275pt;}
.y23c{bottom:-122.515935pt;}
.y78{bottom:-118.105268pt;}
.y15c{bottom:-116.929266pt;}
.y13e{bottom:-116.773295pt;}
.yf7{bottom:-109.742630pt;}
.y1b4{bottom:-106.981280pt;}
.y23b{bottom:-105.395940pt;}
.y186{bottom:-101.847934pt;}
.y77{bottom:-100.985273pt;}
.y15b{bottom:-99.809271pt;}
.y13d{bottom:-99.653299pt;}
.yf6{bottom:-91.182632pt;}
.y1b3{bottom:-90.021258pt;}
.y23a{bottom:-88.435948pt;}
.y76{bottom:-83.865277pt;}
.y15a{bottom:-82.689276pt;}
.y13c{bottom:-82.533304pt;}
.y1b2{bottom:-72.901263pt;}
.y239{bottom:-71.315953pt;}
.y185{bottom:-70.007968pt;}
.y216{bottom:-69.614608pt;}
.y75{bottom:-66.745282pt;}
.y159{bottom:-65.729285pt;}
.y13b{bottom:-65.573282pt;}
.yf5{bottom:-64.462601pt;}
.y1b1{bottom:-55.781268pt;}
.y238{bottom:-54.195928pt;}
.y184{bottom:-52.887912pt;}
.y74{bottom:-49.625287pt;}
.y158{bottom:-48.609290pt;}
.y215{bottom:-34.414596pt;}
.yf4{bottom:-33.102615pt;}
.y13a{bottom:-32.933268pt;}
.y129{bottom:-32.105265pt;}
.y1b0{bottom:-23.141253pt;}
.y1da{bottom:-21.737190pt;}
.y237{bottom:-21.555943pt;}
.y183{bottom:-20.247958pt;}
.y214{bottom:-19.054610pt;}
.y22d{bottom:-18.905546pt;}
.yf3{bottom:-17.742630pt;}
.y139{bottom:-17.573282pt;}
.y73{bottom:-17.145246pt;}
.y128{bottom:-16.745280pt;}
.y157{bottom:-15.969275pt;}
.y1af{bottom:-3.141253pt;}
.y1d9{bottom:-1.897102pt;}
.y236{bottom:-1.555943pt;}
.y182{bottom:-0.407931pt;}
.y0{bottom:0.000000pt;}
.y125{bottom:0.160004pt;}
.y71{bottom:0.480042pt;}
.y213{bottom:0.945390pt;}
.y22c{bottom:1.094454pt;}
.yf2{bottom:2.257370pt;}
.y3{bottom:3.044747pt;}
.ye6{bottom:3.839997pt;}
.y156{bottom:4.030725pt;}
.y138{bottom:6.586752pt;}
.y72{bottom:7.014727pt;}
.y127{bottom:7.414754pt;}
.ye2{bottom:10.720001pt;}
.y2{bottom:12.578910pt;}
.y1d{bottom:14.008606pt;}
.yde{bottom:19.680008pt;}
.ydf{bottom:20.160003pt;}
.y49{bottom:28.346667pt;}
.ye0{bottom:30.240005pt;}
.y21e{bottom:81.480000pt;}
.y284{bottom:81.574667pt;}
.yd0{bottom:85.589333pt;}
.y2a8{bottom:88.309333pt;}
.y1db{bottom:90.532000pt;}
.y2e0{bottom:92.892000pt;}
.y1b{bottom:93.018667pt;}
.ya7{bottom:93.045333pt;}
.ycf{bottom:94.701333pt;}
.y21d{bottom:98.217333pt;}
.y283{bottom:98.312000pt;}
.y2a7{bottom:103.652000pt;}
.y2df{bottom:108.233333pt;}
.y1a{bottom:108.920000pt;}
.ya6{bottom:109.782667pt;}
.y1c2{bottom:110.469200pt;}
.y48{bottom:111.225333pt;}
.y21c{bottom:114.954667pt;}
.y282{bottom:115.049333pt;}
.y2a6{bottom:118.994667pt;}
.yce{bottom:119.970667pt;}
.y2de{bottom:123.576000pt;}
.y19{bottom:124.820000pt;}
.ya5{bottom:126.520000pt;}
.y47{bottom:127.962667pt;}
.y230{bottom:128.129333pt;}
.y21b{bottom:131.692000pt;}
.y281{bottom:131.786667pt;}
.y11c{bottom:132.094667pt;}
.y198{bottom:132.864000pt;}
.y2a5{bottom:134.336000pt;}
.ycd{bottom:136.708000pt;}
.y2dd{bottom:138.918667pt;}
.y18{bottom:140.720000pt;}
.ya4{bottom:143.257333pt;}
.y46{bottom:144.700000pt;}
.y22f{bottom:144.866667pt;}
.y197{bottom:147.476000pt;}
.y21a{bottom:148.429333pt;}
.y280{bottom:148.524000pt;}
.y11b{bottom:148.830667pt;}
.y2a4{bottom:149.678667pt;}
.ycc{bottom:153.445333pt;}
.y2dc{bottom:154.261333pt;}
.y17{bottom:156.621333pt;}
.y6f{bottom:158.694720pt;}
.ya3{bottom:159.994667pt;}
.y45{bottom:161.437333pt;}
.y196{bottom:162.088000pt;}
.y2a3{bottom:165.021333pt;}
.y219{bottom:165.166667pt;}
.y27f{bottom:165.261333pt;}
.y11a{bottom:165.568000pt;}
.y2db{bottom:169.604000pt;}
.ycb{bottom:170.182667pt;}
.y16{bottom:172.521333pt;}
.y22e{bottom:174.702667pt;}
.y6e{bottom:175.814715pt;}
.y195{bottom:176.700000pt;}
.ya2{bottom:176.732000pt;}
.y44{bottom:178.174667pt;}
.y2a2{bottom:180.364000pt;}
.y27e{bottom:181.998667pt;}
.y119{bottom:182.305333pt;}
.y2da{bottom:184.946667pt;}
.y15{bottom:188.421333pt;}
.yca{bottom:190.905333pt;}
.y194{bottom:191.312000pt;}
.y6d{bottom:192.934710pt;}
.ya1{bottom:193.468000pt;}
.y218{bottom:194.186667pt;}
.y21f{bottom:194.640267pt;}
.y43{bottom:194.910667pt;}
.y2a1{bottom:195.706667pt;}
.y27d{bottom:198.736000pt;}
.y118{bottom:199.042667pt;}
.y2d9{bottom:200.289333pt;}
.y14{bottom:204.322667pt;}
.y193{bottom:205.924000pt;}
.y6c{bottom:210.054736pt;}
.ya0{bottom:210.205333pt;}
.y2a0{bottom:211.049333pt;}
.y217{bottom:211.282667pt;}
.y42{bottom:211.648000pt;}
.y235{bottom:214.444057pt;}
.y27c{bottom:215.473333pt;}
.y2d8{bottom:215.632000pt;}
.y117{bottom:215.780000pt;}
.yc9{bottom:220.793333pt;}
.y29f{bottom:226.392000pt;}
.y192{bottom:226.937333pt;}
.y9f{bottom:226.942667pt;}
.y6b{bottom:227.174731pt;}
.y152{bottom:227.806667pt;}
.y155{bottom:228.350725pt;}
.y41{bottom:228.385333pt;}
.y2d7{bottom:230.974667pt;}
.y1f4{bottom:231.220000pt;}
.y234{bottom:231.564052pt;}
.y27b{bottom:232.210667pt;}
.y116{bottom:232.517333pt;}
.y154{bottom:236.830728pt;}
.yc8{bottom:237.530667pt;}
.y29e{bottom:241.734667pt;}
.y9e{bottom:243.680000pt;}
.y6a{bottom:244.134723pt;}
.y151{bottom:244.544000pt;}
.y212{bottom:244.785416pt;}
.y40{bottom:245.122667pt;}
.y2d6{bottom:246.316000pt;}
.y27a{bottom:248.948000pt;}
.y115{bottom:249.254667pt;}
.yf1{bottom:254.097397pt;}
.yc7{bottom:254.268000pt;}
.y191{bottom:255.044000pt;}
.y9d{bottom:260.417333pt;}
.y29d{bottom:261.061333pt;}
.y69{bottom:261.254718pt;}
.y150{bottom:261.281333pt;}
.y2d5{bottom:261.658667pt;}
.y3f{bottom:261.860000pt;}
.y211{bottom:261.905412pt;}
.y279{bottom:265.685333pt;}
.y131{bottom:265.980000pt;}
.y114{bottom:265.992000pt;}
.y13{bottom:266.804000pt;}
.y1ae{bottom:268.698713pt;}
.y1d8{bottom:268.822869pt;}
.yf0{bottom:271.217392pt;}
.y2d4{bottom:277.001333pt;}
.y9c{bottom:277.154667pt;}
.y181{bottom:277.512052pt;}
.y14f{bottom:278.018667pt;}
.y68{bottom:278.374713pt;}
.y3e{bottom:278.597333pt;}
.y210{bottom:278.865372pt;}
.y233{bottom:280.204059pt;}
.y278{bottom:282.422667pt;}
.y12{bottom:282.705333pt;}
.y130{bottom:282.717333pt;}
.y113{bottom:282.729333pt;}
.yc6{bottom:284.952000pt;}
.y1ad{bottom:285.818738pt;}
.y1d7{bottom:285.942864pt;}
.y190{bottom:288.025333pt;}
.yef{bottom:288.177383pt;}
.y232{bottom:288.684062pt;}
.y29c{bottom:290.949333pt;}
.y2d3{bottom:292.344000pt;}
.y9b{bottom:293.892000pt;}
.y180{bottom:294.632047pt;}
.y14e{bottom:294.756000pt;}
.y3d{bottom:295.334667pt;}
.y67{bottom:295.494738pt;}
.y20f{bottom:295.985368pt;}
.y11{bottom:298.605333pt;}
.y277{bottom:299.160000pt;}
.y12f{bottom:299.454667pt;}
.y112{bottom:299.466667pt;}
.y1ac{bottom:302.938734pt;}
.y1d6{bottom:303.062859pt;}
.y18f{bottom:304.762667pt;}
.yee{bottom:305.297379pt;}
.y29b{bottom:306.570667pt;}
.y2d2{bottom:307.686667pt;}
.y9a{bottom:310.629333pt;}
.y14d{bottom:311.493333pt;}
.y17f{bottom:311.752072pt;}
.y3c{bottom:312.072000pt;}
.y126{bottom:312.214712pt;}
.y66{bottom:312.614734pt;}
.y20e{bottom:313.105363pt;}
.y136{bottom:313.466726pt;}
.y10{bottom:314.505333pt;}
.yc5{bottom:315.637333pt;}
.y276{bottom:315.897333pt;}
.y12e{bottom:316.192000pt;}
.y111{bottom:316.204000pt;}
.y1ab{bottom:319.898725pt;}
.y1d5{bottom:320.182854pt;}
.y29a{bottom:322.192000pt;}
.yed{bottom:322.417404pt;}
.y2d1{bottom:323.029333pt;}
.y99{bottom:327.366667pt;}
.y14c{bottom:328.230667pt;}
.y3b{bottom:328.809333pt;}
.y17e{bottom:328.872068pt;}
.y65{bottom:329.574725pt;}
.y20d{bottom:330.225419pt;}
.yc4{bottom:332.374667pt;}
.y275{bottom:332.634667pt;}
.y12d{bottom:332.929333pt;}
.y18e{bottom:334.598667pt;}
.y1aa{bottom:337.018720pt;}
.y1d4{bottom:337.142876pt;}
.y2d0{bottom:338.372000pt;}
.yf{bottom:338.376000pt;}
.yec{bottom:339.537399pt;}
.y98{bottom:344.104000pt;}
.y3a{bottom:345.546667pt;}
.y299{bottom:345.784000pt;}
.y17d{bottom:345.992063pt;}
.y64{bottom:346.694720pt;}
.y20c{bottom:347.345414pt;}
.y14b{bottom:348.953333pt;}
.yc3{bottom:349.112000pt;}
.y274{bottom:349.372000pt;}
.y12c{bottom:349.666667pt;}
.y2cf{bottom:353.714667pt;}
.y1a9{bottom:354.138730pt;}
.y1d3{bottom:354.262871pt;}
.ye{bottom:354.277333pt;}
.y175{bottom:354.536000pt;}
.y110{bottom:356.614667pt;}
.yeb{bottom:356.657394pt;}
.y97{bottom:360.841333pt;}
.y39{bottom:362.284000pt;}
.y17c{bottom:363.112058pt;}
.y63{bottom:363.814730pt;}
.y20b{bottom:364.305375pt;}
.y273{bottom:366.109333pt;}
.y2ce{bottom:369.056000pt;}
.y298{bottom:369.376000pt;}
.yc2{bottom:369.834667pt;}
.yd{bottom:370.177333pt;}
.y10f{bottom:371.226667pt;}
.y1a8{bottom:371.258726pt;}
.y1d2{bottom:371.382866pt;}
.y14a{bottom:376.000000pt;}
.y96{bottom:377.578667pt;}
.yea{bottom:377.617386pt;}
.y1c1{bottom:378.700000pt;}
.y38{bottom:379.021333pt;}
.y12b{bottom:379.502667pt;}
.y17b{bottom:380.072049pt;}
.y62{bottom:380.934726pt;}
.y20a{bottom:381.425370pt;}
.y272{bottom:382.846667pt;}
.y2cd{bottom:384.398667pt;}
.y10e{bottom:385.838667pt;}
.yc1{bottom:387.766667pt;}
.y1a7{bottom:392.218732pt;}
.y297{bottom:392.966667pt;}
.y149{bottom:393.096000pt;}
.y95{bottom:394.316000pt;}
.yc{bottom:395.376000pt;}
.y1c0{bottom:395.437333pt;}
.y37{bottom:395.758667pt;}
.y12a{bottom:396.598667pt;}
.y17a{bottom:397.192044pt;}
.y61{bottom:398.054721pt;}
.y209{bottom:398.545396pt;}
.ye9{bottom:398.737396pt;}
.y271{bottom:399.584000pt;}
.y2cc{bottom:399.741333pt;}
.y10d{bottom:400.450667pt;}
.y1d1{bottom:404.022881pt;}
.y94{bottom:411.053333pt;}
.y1bf{bottom:412.174667pt;}
.y36{bottom:412.496000pt;}
.y132{bottom:413.033333pt;}
.y60{bottom:415.014727pt;}
.y10c{bottom:415.062667pt;}
.y2cb{bottom:415.084000pt;}
.y270{bottom:416.321333pt;}
.y11d{bottom:416.534667pt;}
.y296{bottom:416.558667pt;}
.yc0{bottom:417.654667pt;}
.yb{bottom:419.246667pt;}
.y208{bottom:419.665391pt;}
.y1d0{bottom:424.022881pt;}
.y1a6{bottom:425.338727pt;}
.y93{bottom:427.790667pt;}
.y1be{bottom:428.912000pt;}
.y35{bottom:429.233333pt;}
.y10b{bottom:429.674667pt;}
.y179{bottom:429.832059pt;}
.y2ca{bottom:430.426667pt;}
.ye8{bottom:431.857391pt;}
.y5f{bottom:432.134723pt;}
.y295{bottom:432.180000pt;}
.y26f{bottom:433.058667pt;}
.y137{bottom:433.540069pt;}
.ybf{bottom:434.392000pt;}
.ya{bottom:435.146667pt;}
.y1a5{bottom:442.458723pt;}
.y10a{bottom:444.286667pt;}
.y92{bottom:444.528000pt;}
.y1bd{bottom:445.649333pt;}
.y2c9{bottom:445.769333pt;}
.y34{bottom:445.970667pt;}
.y5e{bottom:449.254718pt;}
.ye7{bottom:449.617386pt;}
.y26e{bottom:449.796000pt;}
.y178{bottom:449.832059pt;}
.y9{bottom:451.048000pt;}
.ybe{bottom:451.129333pt;}
.y207{bottom:452.785386pt;}
.y294{bottom:455.772000pt;}
.y1a4{bottom:459.578718pt;}
.y2c8{bottom:461.112000pt;}
.y91{bottom:461.265333pt;}
.y1bc{bottom:462.386667pt;}
.y109{bottom:465.300000pt;}
.y26d{bottom:466.533333pt;}
.y33{bottom:466.693333pt;}
.y8{bottom:466.948000pt;}
.ybd{bottom:467.866667pt;}
.y206{bottom:469.905381pt;}
.ye3{bottom:470.897385pt;}
.y293{bottom:471.393333pt;}
.y1f3{bottom:473.872000pt;}
.y2c7{bottom:476.454667pt;}
.y90{bottom:478.002667pt;}
.y1bb{bottom:479.124000pt;}
.ye4{bottom:482.577393pt;}
.y7{bottom:482.848000pt;}
.y26c{bottom:483.270667pt;}
.ybc{bottom:484.604000pt;}
.y205{bottom:486.865403pt;}
.y292{bottom:487.014667pt;}
.ye1{bottom:490.417389pt;}
.y1f2{bottom:490.609333pt;}
.y2c6{bottom:491.797333pt;}
.y108{bottom:493.406667pt;}
.y8f{bottom:494.740000pt;}
.y5d{bottom:497.894725pt;}
.y6{bottom:498.749333pt;}
.y26b{bottom:500.008000pt;}
.ybb{bottom:501.341333pt;}
.y291{bottom:502.636000pt;}
.y204{bottom:503.985398pt;}
.y5c{bottom:506.374728pt;}
.y2c5{bottom:507.138667pt;}
.y1f1{bottom:507.346667pt;}
.y1a3{bottom:508.218725pt;}
.y1ba{bottom:508.960000pt;}
.y8e{bottom:511.477333pt;}
.y5{bottom:514.649333pt;}
.y1a2{bottom:516.698728pt;}
.y26a{bottom:516.744000pt;}
.yba{bottom:518.078667pt;}
.y290{bottom:518.257333pt;}
.y203{bottom:521.105393pt;}
.y2c4{bottom:522.481333pt;}
.y1f0{bottom:524.084000pt;}
.y107{bottom:525.113333pt;}
.y1a1{bottom:528.897333pt;}
.y4{bottom:530.549333pt;}
.y269{bottom:533.481333pt;}
.y32{bottom:533.493333pt;}
.y28f{bottom:533.878667pt;}
.yb9{bottom:534.816000pt;}
.y2c3{bottom:537.824000pt;}
.y1ef{bottom:540.821333pt;}
.y8d{bottom:541.313333pt;}
.yda{bottom:545.050667pt;}
.y1{bottom:546.450634pt;}
.ydc{bottom:547.537392pt;}
.y28e{bottom:549.500000pt;}
.y268{bottom:550.218667pt;}
.yb8{bottom:551.553333pt;}
.y2c2{bottom:553.166667pt;}
.y202{bottom:555.665391pt;}
.ydb{bottom:556.017395pt;}
.y1ee{bottom:557.558667pt;}
.y5b{bottom:561.250667pt;}
.y31{bottom:566.728000pt;}
.y267{bottom:566.956000pt;}
.yb7{bottom:568.290667pt;}
.y2c1{bottom:568.509333pt;}
.y201{bottom:573.745377pt;}
.y1ed{bottom:574.294667pt;}
.y28d{bottom:581.062667pt;}
.y70{bottom:582.185377pt;}
.y266{bottom:583.693333pt;}
.y2c0{bottom:583.852000pt;}
.y30{bottom:584.024000pt;}
.yb6{bottom:585.028000pt;}
.y1ec{bottom:591.032000pt;}
.y200{bottom:591.665391pt;}
.y28c{bottom:597.800000pt;}
.y2bf{bottom:599.194667pt;}
.y265{bottom:600.430667pt;}
.y2f{bottom:601.318667pt;}
.yb5{bottom:601.765333pt;}
.y1eb{bottom:607.769333pt;}
.y1ff{bottom:609.745377pt;}
.y123{bottom:610.454732pt;}
.y28b{bottom:614.537333pt;}
.y264{bottom:617.168000pt;}
.yb4{bottom:618.502667pt;}
.y2e{bottom:618.613333pt;}
.y1ea{bottom:624.506667pt;}
.y134{bottom:627.066725pt;}
.y122{bottom:627.574727pt;}
.y1fe{bottom:627.665391pt;}
.y174{bottom:629.397333pt;}
.y2be{bottom:629.878667pt;}
.y28a{bottom:631.274667pt;}
.y263{bottom:633.905333pt;}
.yb3{bottom:635.240000pt;}
.y133{bottom:635.546728pt;}
.y2d{bottom:635.909333pt;}
.y121{bottom:644.694723pt;}
.y2bd{bottom:645.221333pt;}
.y1e9{bottom:645.229333pt;}
.y1fd{bottom:645.745377pt;}
.y173{bottom:646.134667pt;}
.y289{bottom:648.012000pt;}
.yb2{bottom:651.977333pt;}
.y2c{bottom:653.204000pt;}
.y262{bottom:654.628000pt;}
.y2bc{bottom:660.564000pt;}
.y120{bottom:661.814718pt;}
.y172{bottom:662.872000pt;}
.y1fc{bottom:664.305390pt;}
.y288{bottom:664.749333pt;}
.yb1{bottom:668.714667pt;}
.y2b{bottom:670.500000pt;}
.y177{bottom:674.152059pt;}
.y1e8{bottom:675.117333pt;}
.y2bb{bottom:675.906667pt;}
.y171{bottom:679.609333pt;}
.y287{bottom:681.485333pt;}
.y176{bottom:682.632062pt;}
.y261{bottom:684.516000pt;}
.yb0{bottom:685.452000pt;}
.y2a{bottom:687.794667pt;}
.y1fb{bottom:691.025391pt;}
.y2ba{bottom:691.249333pt;}
.y1e7{bottom:691.854667pt;}
.y1cf{bottom:695.862847pt;}
.y170{bottom:696.346667pt;}
.y286{bottom:698.222667pt;}
.y260{bottom:701.253333pt;}
.yaf{bottom:702.189333pt;}
.y29{bottom:705.089333pt;}
.y2b9{bottom:706.592000pt;}
.y1e6{bottom:708.592000pt;}
.y11f{bottom:710.454725pt;}
.y1ce{bottom:712.982872pt;}
.y16f{bottom:713.084000pt;}
.y285{bottom:714.960000pt;}
.yae{bottom:716.500000pt;}
.yad{bottom:716.933333pt;}
.y25f{bottom:717.990667pt;}
.yac{bottom:718.926667pt;}
.y11e{bottom:718.934728pt;}
.y2b8{bottom:721.934667pt;}
.y28{bottom:722.385333pt;}
.y1fa{bottom:722.865388pt;}
.y1e5{bottom:725.329333pt;}
.y16e{bottom:729.821333pt;}
.y1cd{bottom:730.102868pt;}
.y5a{bottom:731.697333pt;}
.y25e{bottom:734.728000pt;}
.y2b7{bottom:737.277333pt;}
.y22b{bottom:737.894472pt;}
.y27{bottom:739.680000pt;}
.y1f9{bottom:739.825394pt;}
.y135{bottom:740.420074pt;}
.y1e4{bottom:742.066667pt;}
.y124{bottom:742.669392pt;}
.y16d{bottom:746.558667pt;}
.y1cc{bottom:747.062859pt;}
.yab{bottom:747.137333pt;}
.y59{bottom:748.434667pt;}
.y25d{bottom:751.465333pt;}
.y2b6{bottom:752.620000pt;}
.y22a{bottom:755.014468pt;}
.y1f8{bottom:756.945390pt;}
.y26{bottom:756.974667pt;}
.y1cb{bottom:764.182854pt;}
.y58{bottom:765.172000pt;}
.ya8{bottom:766.766667pt;}
.yaa{bottom:767.192000pt;}
.y2b5{bottom:767.961333pt;}
.y229{bottom:771.974459pt;}
.y1f7{bottom:774.065385pt;}
.ya9{bottom:775.577333pt;}
.y16c{bottom:776.394667pt;}
.y25c{bottom:781.301333pt;}
.y1ca{bottom:781.302864pt;}
.y1e3{bottom:781.661333pt;}
.y57{bottom:781.909333pt;}
.y2b4{bottom:783.304000pt;}
.y228{bottom:789.094454pt;}
.y25{bottom:791.273333pt;}
.y1e2{bottom:796.273333pt;}
.y153{bottom:796.332000pt;}
.yd9{bottom:797.053333pt;}
.y1a0{bottom:798.248000pt;}
.y1c9{bottom:798.422860pt;}
.y56{bottom:798.646667pt;}
.y231{bottom:801.238667pt;}
.y24{bottom:805.620000pt;}
.y227{bottom:806.214464pt;}
.y1e1{bottom:810.884000pt;}
.yd8{bottom:813.790667pt;}
.y2b3{bottom:813.989333pt;}
.y19f{bottom:814.985333pt;}
.y55{bottom:815.384000pt;}
.y1c8{bottom:819.382866pt;}
.y23{bottom:819.965333pt;}
.y1f6{bottom:822.705392pt;}
.y226{bottom:823.334460pt;}
.y1e0{bottom:825.496000pt;}
.y2b2{bottom:829.332000pt;}
.yd7{bottom:830.528000pt;}
.y1f5{bottom:831.185395pt;}
.y19e{bottom:831.722667pt;}
.y54{bottom:832.121333pt;}
.y1df{bottom:840.108000pt;}
.y225{bottom:840.454455pt;}
.y2b1{bottom:844.674667pt;}
.yd6{bottom:847.265333pt;}
.y19d{bottom:848.460000pt;}
.y53{bottom:848.858667pt;}
.y1c7{bottom:852.502861pt;}
.y1de{bottom:854.720000pt;}
.y224{bottom:857.414461pt;}
.y2b0{bottom:860.017333pt;}
.y22{bottom:863.536000pt;}
.yd5{bottom:864.002667pt;}
.y19c{bottom:865.197333pt;}
.y52{bottom:865.596000pt;}
.y1c6{bottom:869.622857pt;}
.y223{bottom:874.534457pt;}
.y2af{bottom:875.360000pt;}
.y1dd{bottom:875.734667pt;}
.yd4{bottom:880.740000pt;}
.y19b{bottom:881.934667pt;}
.y51{bottom:882.333333pt;}
.y1c5{bottom:886.742852pt;}
.y2ae{bottom:890.702667pt;}
.y222{bottom:891.654452pt;}
.y21{bottom:896.213333pt;}
.yd3{bottom:897.477333pt;}
.y19a{bottom:898.672000pt;}
.y50{bottom:899.070667pt;}
.y1dc{bottom:903.840000pt;}
.y2ad{bottom:906.044000pt;}
.y4f{bottom:915.808000pt;}
.yd2{bottom:918.198667pt;}
.y199{bottom:919.394667pt;}
.y20{bottom:921.320000pt;}
.y2ac{bottom:921.386667pt;}
.y4e{bottom:932.545333pt;}
.y1c4{bottom:935.382859pt;}
.yd1{bottom:936.132000pt;}
.y2ab{bottom:936.729333pt;}
.y221{bottom:940.294459pt;}
.y1c3{bottom:943.862862pt;}
.y1f{bottom:946.425333pt;}
.y220{bottom:948.774462pt;}
.y4d{bottom:949.282667pt;}
.y2aa{bottom:952.072000pt;}
.y4c{bottom:966.020000pt;}
.y2a9{bottom:967.414667pt;}
.y1e{bottom:971.530667pt;}
.y4b{bottom:982.757333pt;}
.ydd{bottom:1007.948052pt;}
.y1c{bottom:1010.186667pt;}
.ye5{bottom:1023.788063pt;}
.y4a{bottom:1038.548000pt;}
.h26{height:-247.749396pt;}
.h23{height:-231.909385pt;}
.h1c{height:2.125355pt;}
.h2c{height:13.919983pt;}
.h15{height:13.920044pt;}
.h2a{height:14.079987pt;}
.h16{height:14.400025pt;}
.h2{height:22.673858pt;}
.h19{height:25.079185pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h1d{height:29.397999pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.hc{height:30.945242pt;}
.h10{height:31.157778pt;}
.h13{height:31.302730pt;}
.h12{height:31.428360pt;}
.hd{height:34.574438pt;}
.he{height:34.813542pt;}
.h28{height:35.040522pt;}
.h34{height:35.052646pt;}
.h18{height:35.063961pt;}
.h25{height:35.762012pt;}
.hb{height:38.415786pt;}
.hf{height:38.681455pt;}
.h14{height:38.778022pt;}
.h17{height:38.803961pt;}
.h27{height:38.933653pt;}
.h9{height:38.947124pt;}
.h1e{height:40.964400pt;}
.h21{height:40.969733pt;}
.h1f{height:41.524400pt;}
.h7{height:45.272024pt;}
.h24{height:51.176614pt;}
.h1b{height:63.755332pt;}
.ha{height:69.148877pt;}
.h8{height:77.447343pt;}
.h20{height:82.638788pt;}
.h1a{height:116.365355pt;}
.h11{height:149.433333pt;}
.h33{height:194.802667pt;}
.h2d{height:199.709333pt;}
.h31{height:225.914667pt;}
.h22{height:230.988000pt;}
.h30{height:247.217467pt;}
.h2f{height:248.337333pt;}
.h2e{height:257.308000pt;}
.h29{height:579.506667pt;}
.h2b{height:583.009333pt;}
.h32{height:720.353067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w14{width:-33.384024pt;}
.w6{width:-21.784007pt;}
.w19{width:-1.014696pt;}
.w18{width:1.705335pt;}
.wd{width:2.880005pt;}
.w16{width:6.719970pt;}
.w5{width:6.720001pt;}
.we{width:8.639984pt;}
.wf{width:9.440003pt;}
.wc{width:9.920014pt;}
.w12{width:11.839966pt;}
.wa{width:11.839997pt;}
.w10{width:22.080017pt;}
.w8{width:22.720001pt;}
.wb{width:23.839996pt;}
.w13{width:23.840027pt;}
.w11{width:29.919983pt;}
.w9{width:29.920013pt;}
.w2{width:66.991004pt;}
.w3{width:153.222406pt;}
.w1a{width:320.936000pt;}
.w4{width:437.661333pt;}
.w1f{width:442.161333pt;}
.w1d{width:460.237333pt;}
.w1c{width:461.360000pt;}
.w7{width:471.600000pt;}
.w20{width:482.805333pt;}
.w1e{width:484.342667pt;}
.w1b{width:500.038667pt;}
.w17{width:511.534667pt;}
.w15{width:522.045333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x20{left:-212.874667pt;}
.x9a{left:-178.336000pt;}
.x5b{left:-177.416000pt;}
.x8f{left:-175.672000pt;}
.x75{left:-173.432000pt;}
.x8b{left:-172.309333pt;}
.x81{left:-171.329333pt;}
.x96{left:-165.724000pt;}
.x21{left:-38.954669pt;}
.x22{left:-10.634662pt;}
.x9c{left:-4.416002pt;}
.x69{left:-3.496002pt;}
.x90{left:-1.752002pt;}
.x0{left:0.000000pt;}
.x7d{left:1.189331pt;}
.x82{left:2.590665pt;}
.x98{left:8.195998pt;}
.x93{left:17.369334pt;}
.x9b{left:23.904005pt;}
.x6a{left:24.824005pt;}
.x2{left:26.021437pt;}
.x76{left:28.808005pt;}
.x8c{left:29.930672pt;}
.x83{left:30.910672pt;}
.x97{left:36.516005pt;}
.x4{left:46.689333pt;}
.x1{left:47.621398pt;}
.x3{left:53.285701pt;}
.x71{left:63.703995pt;}
.x9d{left:76.309333pt;}
.x25{left:80.885343pt;}
.x6d{left:83.863999pt;}
.x6f{left:86.263993pt;}
.x70{left:95.064011pt;}
.x6c{left:96.663987pt;}
.x6e{left:104.024002pt;}
.x94{left:122.489344pt;}
.x8d{left:124.170678pt;}
.x84{left:125.150678pt;}
.x6{left:220.912000pt;}
.x5{left:221.858667pt;}
.x7c{left:249.189346pt;}
.x8{left:250.204000pt;}
.x92{left:251.708000pt;}
.x62{left:253.304001pt;}
.x11{left:254.224000pt;}
.x12{left:260.865333pt;}
.x13{left:264.253333pt;}
.x85{left:265.506667pt;}
.xd{left:270.060000pt;}
.x72{left:272.194667pt;}
.x78{left:273.689333pt;}
.x7e{left:274.705333pt;}
.x7{left:275.770667pt;}
.xe{left:276.701333pt;}
.xf{left:280.089333pt;}
.x10{left:286.730667pt;}
.x2a{left:292.534667pt;}
.x2b{left:295.922667pt;}
.x26{left:305.722667pt;}
.x58{left:307.610667pt;}
.x2c{left:309.205333pt;}
.x73{left:314.485333pt;}
.x74{left:315.884000pt;}
.x27{left:319.005333pt;}
.x86{left:320.620000pt;}
.x28{left:322.393333pt;}
.x14{left:324.394667pt;}
.x15{left:331.037333pt;}
.x29{left:335.677333pt;}
.x16{left:337.645333pt;}
.x87{left:339.281333pt;}
.x8e{left:345.346667pt;}
.x17{left:350.929333pt;}
.x18{left:354.129333pt;}
.x3d{left:356.206667pt;}
.x67{left:357.303971pt;}
.x19{left:367.413333pt;}
.x1a{left:373.968000pt;}
.x1b{left:387.252000pt;}
.x53{left:391.706667pt;}
.x55{left:393.901333pt;}
.x8a{left:395.216000pt;}
.x5c{left:399.962656pt;}
.x23{left:419.864005pt;}
.x9{left:421.613333pt;}
.x5d{left:422.842661pt;}
.xa{left:428.254667pt;}
.xb{left:435.029333pt;}
.x5e{left:440.122660pt;}
.xc{left:441.670667pt;}
.x99{left:444.195983pt;}
.x5f{left:449.402658pt;}
.x56{left:461.800000pt;}
.x91{left:464.168027pt;}
.x61{left:466.042673pt;}
.x60{left:467.322672pt;}
.x6b{left:470.424027pt;}
.x3e{left:472.305333pt;}
.x3f{left:477.738667pt;}
.x45{left:482.490667pt;}
.x95{left:486.329340pt;}
.x46{left:495.773333pt;}
.x47{left:499.085333pt;}
.x40{left:500.778667pt;}
.x59{left:503.086667pt;}
.x2d{left:506.134667pt;}
.x50{left:507.121333pt;}
.x48{left:512.368000pt;}
.x57{left:514.348000pt;}
.x5a{left:516.370667pt;}
.x2e{left:519.418667pt;}
.x51{left:520.404000pt;}
.x54{left:524.173333pt;}
.x2f{left:526.193333pt;}
.x63{left:531.162638pt;}
.x30{left:539.476000pt;}
.x41{left:552.042667pt;}
.x64{left:553.402689pt;}
.x65{left:556.282694pt;}
.x66{left:561.722696pt;}
.x1c{left:567.409333pt;}
.x7f{left:572.489333pt;}
.x42{left:574.118667pt;}
.x80{left:578.466667pt;}
.x1d{left:580.693333pt;}
.x43{left:583.081333pt;}
.x1e{left:583.970667pt;}
.x3b{left:589.968000pt;}
.x44{left:592.324000pt;}
.x88{left:593.878667pt;}
.x1f{left:597.254667pt;}
.x3c{left:605.310667pt;}
.x35{left:608.214667pt;}
.x4c{left:609.568000pt;}
.x89{left:612.540000pt;}
.x52{left:615.572000pt;}
.x36{left:621.497333pt;}
.x4d{left:622.850667pt;}
.x4e{left:626.185333pt;}
.x37{left:628.272000pt;}
.x4f{left:639.469333pt;}
.x38{left:641.556000pt;}
.xa0{left:643.622667pt;}
.x39{left:653.108000pt;}
.x9e{left:661.726667pt;}
.x49{left:663.288000pt;}
.xa1{left:667.533333pt;}
.x3a{left:669.349333pt;}
.x31{left:670.864000pt;}
.x4a{left:676.572000pt;}
.x24{left:681.304007pt;}
.x32{left:684.148000pt;}
.x9f{left:685.637333pt;}
.x33{left:690.922667pt;}
.x4b{left:696.630667pt;}
.x34{left:704.205333pt;}
.x79{left:711.134667pt;}
.x7a{left:718.438667pt;}
.x68{left:726.842691pt;}
.x7b{left:731.687998pt;}
.x77{left:734.186677pt;}
}


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