
/* 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_518ed13105df.woff")format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_f49191f41b9b.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_eeeaab13cb0a.woff")format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight: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_338b224ff9f5.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_31102d4eaa64.woff")format("woff");}.ff5{font-family:ff5;line-height:1.151000;font-style:normal;font-weight: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_7f6c12ee7c33.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_1ae56354975e.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_d01e2dc69a1d.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_ab5b41bc422e.woff")format("woff");}.ff9{font-family:ff9;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_d4d5fb50e787.woff")format("woff");}.ffa{font-family:ffa;line-height:0.665000;font-style:normal;font-weight: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_1dc8a9494f6f.woff")format("woff");}.ffb{font-family:ffb;line-height:0.963000;font-style:normal;font-weight: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_2a06ca3d214c.woff")format("woff");}.ffc{font-family:ffc;line-height:2.041000;font-style:normal;font-weight: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_adcb1ae709b4.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_3758168a718f.woff")format("woff");}.ffe{font-family:ffe;line-height:1.004883;font-style:normal;font-weight: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_c02d6edde7f0.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_87db3f675954.woff")format("woff");}.ff10{font-family:ff10;line-height:1.004883;font-style:normal;font-weight: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_6a8b7c4dcd33.woff")format("woff");}.ff11{font-family:ff11;line-height:0.995117;font-style:normal;font-weight: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_845636069357.woff")format("woff");}.ff12{font-family:ff12;line-height:0.900391;font-style:normal;font-weight: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_7c48a86027cc.woff")format("woff");}.ff13{font-family:ff13;line-height:1.172852;font-style:normal;font-weight: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_3758168a718f.woff")format("woff");}.ff14{font-family:ff14;line-height:1.004883;font-style:normal;font-weight: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_b532e34a014f.woff")format("woff");}.ff15{font-family:ff15;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:ff16;src:url("fonts/font_0021_87db3f675954.woff")format("woff");}.ff16{font-family:ff16;line-height:1.004883;font-style:normal;font-weight: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_6a8b7c4dcd33.woff")format("woff");}.ff17{font-family:ff17;line-height:0.995117;font-style:normal;font-weight: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_845636069357.woff")format("woff");}.ff18{font-family:ff18;line-height:0.900391;font-style:normal;font-weight: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_7c48a86027cc.woff")format("woff");}.ff19{font-family:ff19;line-height:1.172852;font-style:normal;font-weight: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_3758168a718f.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.004883;font-style:normal;font-weight: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_09a1464f186a.woff")format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url("fonts/font_0027_87db3f675954.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.004883;font-style:normal;font-weight: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_6a8b7c4dcd33.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.995117;font-style:normal;font-weight: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_845636069357.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.900391;font-style:normal;font-weight: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_2d071c421821.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.172852;font-style:normal;font-weight: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_02128aa77fde.woff")format("woff");}.ff20{font-family:ff20;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:ff21;src:url("fonts/font_0032_256be171b0e0.woff")format("woff");}.ff21{font-family:ff21;line-height:1.004883;font-style:normal;font-weight: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_67294affea67.woff")format("woff");}.ff22{font-family:ff22;line-height:0.995117;font-style:normal;font-weight: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_9c644a438e0f.woff")format("woff");}.ff23{font-family:ff23;line-height:0.900391;font-style:normal;font-weight: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_471872158e53.woff")format("woff");}.ff24{font-family:ff24;line-height:1.172852;font-style:normal;font-weight: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_310b4a32ae35.woff")format("woff");}.ff25{font-family:ff25;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;}
@font-face{font-family:ff26;src:url("fonts/font_0037_18d8fa6557f2.woff")format("woff");}.ff26{font-family:ff26;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:ff27;src:url("fonts/font_0038_972f5fa92914.woff")format("woff");}.ff27{font-family:ff27;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m23{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);}
.m1b{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);}
.m16{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);}
.m24{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);}
.m1d{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);}
.m17{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);}
.m28{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);}
.m25{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);}
.m3{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);}
.m15{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);}
.mf{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);}
.m2{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);}
.m1f{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);}
.m20{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);}
.m11{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);}
.me{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);}
.m10{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);}
.m6{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);}
.m9{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);}
.m26{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);}
.m1a{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);}
.m19{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);}
.m18{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);}
.m5{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);}
.m29{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);}
.m1e{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);}
.mc{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);}
.m21{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);}
.m27{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);}
.m13{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);}
.m22{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);}
.mb{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);}
.ma{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);}
.m8{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);}
.m4{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);}
.m14{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);}
.m1c{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);}
.m12{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);}
.m7{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);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v17{vertical-align:-17.358000px;}
.vb{vertical-align:-14.676000px;}
.v3{vertical-align:-11.190000px;}
.va{vertical-align:-8.586000px;}
.vc{vertical-align:-6.816000px;}
.v15{vertical-align:-1.452600px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:1.452600px;}
.ve{vertical-align:6.762000px;}
.vd{vertical-align:12.846000px;}
.vf{vertical-align:14.616000px;}
.v16{vertical-align:16.124400px;}
.v13{vertical-align:17.571600px;}
.v1{vertical-align:21.702000px;}
.v12{vertical-align:26.832600px;}
.v18{vertical-align:29.586600px;}
.v7{vertical-align:30.924000px;}
.v8{vertical-align:32.046000px;}
.v11{vertical-align:33.145200px;}
.v5{vertical-align:40.464000px;}
.v10{vertical-align:53.100000px;}
.v9{vertical-align:62.166000px;}
.v4{vertical-align:73.674000px;}
.v6{vertical-align:114.684000px;}
.ls58{letter-spacing:-0.364800px;}
.ls56{letter-spacing:-0.306240px;}
.ls57{letter-spacing:-0.191040px;}
.ls6{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.000154px;}
.ls4b{letter-spacing:0.000435px;}
.ls80{letter-spacing:0.000447px;}
.ls4a{letter-spacing:0.001075px;}
.lse{letter-spacing:0.001117px;}
.ls24{letter-spacing:0.001200px;}
.lsf{letter-spacing:0.001518px;}
.ls60{letter-spacing:0.001771px;}
.lsa{letter-spacing:0.001979px;}
.ls36{letter-spacing:0.002016px;}
.ls79{letter-spacing:0.002168px;}
.ls65{letter-spacing:0.002338px;}
.ls7e{letter-spacing:0.002573px;}
.ls38{letter-spacing:0.002583px;}
.ls7f{letter-spacing:0.002693px;}
.ls62{letter-spacing:0.002818px;}
.ls6b{letter-spacing:0.002832px;}
.ls71{letter-spacing:0.002841px;}
.ls46{letter-spacing:0.002870px;}
.ls76{letter-spacing:0.003028px;}
.ls5c{letter-spacing:0.003161px;}
.ls9{letter-spacing:0.003226px;}
.ls77{letter-spacing:0.003404px;}
.ls5b{letter-spacing:0.003449px;}
.ls5{letter-spacing:0.003488px;}
.ls8{letter-spacing:0.003494px;}
.lsc{letter-spacing:0.003741px;}
.ls1b{letter-spacing:0.004200px;}
.ls66{letter-spacing:0.004800px;}
.lsb{letter-spacing:0.004951px;}
.ls63{letter-spacing:0.008486px;}
.ls64{letter-spacing:0.014590px;}
.ls2a{letter-spacing:0.508407px;}
.ls21{letter-spacing:0.514407px;}
.ls68{letter-spacing:0.524565px;}
.ls83{letter-spacing:0.528363px;}
.ls7b{letter-spacing:0.530186px;}
.ls69{letter-spacing:0.530447px;}
.ls75{letter-spacing:0.534040px;}
.ls78{letter-spacing:0.535979px;}
.ls7d{letter-spacing:0.537659px;}
.ls6e{letter-spacing:0.537859px;}
.ls7c{letter-spacing:0.543714px;}
.ls73{letter-spacing:0.545617px;}
.ls81{letter-spacing:0.547738px;}
.ls26{letter-spacing:0.548815px;}
.ls74{letter-spacing:0.551721px;}
.ls20{letter-spacing:0.569488px;}
.ls55{letter-spacing:0.576000px;}
.ls7{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls1a{letter-spacing:2.983200px;}
.ls27{letter-spacing:2.988221px;}
.ls18{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls2c{letter-spacing:3.552221px;}
.ls22{letter-spacing:3.553200px;}
.ls28{letter-spacing:3.558221px;}
.ls2b{letter-spacing:3.559200px;}
.ls53{letter-spacing:4.032000px;}
.ls13{letter-spacing:7.175108px;}
.ls33{letter-spacing:9.363185px;}
.ls32{letter-spacing:9.363220px;}
.ls50{letter-spacing:11.138596px;}
.ls4f{letter-spacing:11.144106px;}
.ls72{letter-spacing:11.603461px;}
.ls4{letter-spacing:11.954850px;}
.ls39{letter-spacing:12.103983px;}
.ls48{letter-spacing:12.109383px;}
.ls1c{letter-spacing:12.339483px;}
.ls29{letter-spacing:12.370200px;}
.ls2f{letter-spacing:12.504001px;}
.ls2e{letter-spacing:12.510124px;}
.ls7a{letter-spacing:13.078971px;}
.ls67{letter-spacing:13.158070px;}
.ls5f{letter-spacing:13.448400px;}
.ls5e{letter-spacing:13.454400px;}
.ls70{letter-spacing:13.497459px;}
.ls6a{letter-spacing:13.505265px;}
.ls85{letter-spacing:13.681364px;}
.ls5d{letter-spacing:13.690930px;}
.ls6d{letter-spacing:13.709224px;}
.ls84{letter-spacing:13.833481px;}
.ls30{letter-spacing:13.950835px;}
.ls6f{letter-spacing:13.989859px;}
.ls45{letter-spacing:14.585246px;}
.ls44{letter-spacing:14.645022px;}
.ls61{letter-spacing:14.762165px;}
.ls42{letter-spacing:14.941200px;}
.ls52{letter-spacing:14.943900px;}
.ls43{letter-spacing:14.947200px;}
.ls82{letter-spacing:14.950400px;}
.ls31{letter-spacing:15.123227px;}
.ls51{letter-spacing:15.183002px;}
.ls16{letter-spacing:15.355200px;}
.ls19{letter-spacing:15.361200px;}
.ls25{letter-spacing:15.488815px;}
.ls23{letter-spacing:15.494815px;}
.lsd{letter-spacing:15.741814px;}
.ls59{letter-spacing:16.438290px;}
.ls4c{letter-spacing:17.121888px;}
.ls35{letter-spacing:17.210124px;}
.ls34{letter-spacing:17.218082px;}
.ls15{letter-spacing:17.325483px;}
.ls14{letter-spacing:17.349067px;}
.ls1e{letter-spacing:17.351108px;}
.ls6c{letter-spacing:18.830400px;}
.ls5a{letter-spacing:20.263928px;}
.ls11{letter-spacing:26.566200px;}
.ls12{letter-spacing:26.568124px;}
.ls17{letter-spacing:27.285483px;}
.ls10{letter-spacing:68.679067px;}
.ls1{letter-spacing:70.236600px;}
.ls2{letter-spacing:72.353510px;}
.ls49{letter-spacing:74.853720px;}
.ls1f{letter-spacing:98.433483px;}
.ls4e{letter-spacing:104.964120px;}
.ls3d{letter-spacing:123.142140px;}
.ls3c{letter-spacing:123.147540px;}
.ls47{letter-spacing:124.404120px;}
.ls40{letter-spacing:129.200940px;}
.ls41{letter-spacing:135.248940px;}
.ls3e{letter-spacing:153.403740px;}
.ls54{letter-spacing:251.836800px;}
.ls3a{letter-spacing:295.247583px;}
.ls3f{letter-spacing:327.202740px;}
.ls37{letter-spacing:330.262998px;}
.ls3b{letter-spacing:333.396540px;}
.ls1d{letter-spacing:604.483973px;}
.ls2d{letter-spacing:897.034407px;}
.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;}
}
.ws7e{word-spacing:-342.367638px;}
.wsbf{word-spacing:-43.776000px;}
.ws60{word-spacing:-41.603818px;}
.ws61{word-spacing:-31.681068px;}
.ws62{word-spacing:-31.619002px;}
.ws28{word-spacing:-17.394700px;}
.ws63{word-spacing:-16.107202px;}
.ws8f{word-spacing:-15.655334px;}
.ws16{word-spacing:-14.943900px;}
.ws9f{word-spacing:-14.089801px;}
.ws8e{word-spacing:-13.449600px;}
.ws84{word-spacing:-12.104640px;}
.ws1d{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.wsbe{word-spacing:-10.944000px;}
.wsc3{word-spacing:-9.893376px;}
.ws8c{word-spacing:-4.602721px;}
.ws33{word-spacing:-4.423394px;}
.ws1b{word-spacing:-4.244068px;}
.ws67{word-spacing:-4.184292px;}
.ws36{word-spacing:-4.064741px;}
.ws20{word-spacing:-3.885414px;}
.ws55{word-spacing:-3.825638px;}
.ws53{word-spacing:-3.765863px;}
.ws76{word-spacing:-3.706087px;}
.ws32{word-spacing:-3.646312px;}
.wsc7{word-spacing:-3.550694px;}
.ws153{word-spacing:-3.496896px;}
.wsdd{word-spacing:-3.466985px;}
.wsc8{word-spacing:-3.335501px;}
.wse4{word-spacing:-3.227882px;}
.ws77{word-spacing:-2.988780px;}
.ws6b{word-spacing:-2.929004px;}
.wsd9{word-spacing:-2.809453px;}
.wse5{word-spacing:-2.797517px;}
.ws7{word-spacing:-2.749678px;}
.wsce{word-spacing:-2.689902px;}
.wsdb{word-spacing:-2.630126px;}
.wse6{word-spacing:-2.582323px;}
.ws4d{word-spacing:-2.570351px;}
.ws144{word-spacing:-2.474726px;}
.ws70{word-spacing:-2.450800px;}
.ws71{word-spacing:-2.436165px;}
.ws5e{word-spacing:-2.391024px;}
.ws11d{word-spacing:-2.367130px;}
.wsaa{word-spacing:-2.331248px;}
.ws8{word-spacing:-2.092146px;}
.ws150{word-spacing:-1.990541px;}
.wsa9{word-spacing:-1.912819px;}
.ws6{word-spacing:-1.908367px;}
.wsab{word-spacing:-1.853044px;}
.wse9{word-spacing:-1.829146px;}
.wsd5{word-spacing:-1.673717px;}
.ws65{word-spacing:-1.613941px;}
.wseb{word-spacing:-1.560154px;}
.ws52{word-spacing:-1.554166px;}
.ws39{word-spacing:-1.494390px;}
.ws3c{word-spacing:-1.434614px;}
.ws5{word-spacing:-1.322630px;}
.ws2f{word-spacing:-1.315063px;}
.ws64{word-spacing:-1.255288px;}
.wscc{word-spacing:-1.195512px;}
.wsd7{word-spacing:-1.135736px;}
.ws10e{word-spacing:-1.075968px;}
.ws21{word-spacing:-1.075961px;}
.ws15a{word-spacing:-1.022170px;}
.wsa{word-spacing:-1.016185px;}
.ws72{word-spacing:-1.002399px;}
.ws141{word-spacing:-0.968371px;}
.wsae{word-spacing:-0.964030px;}
.wsaf{word-spacing:-0.959797px;}
.ws74{word-spacing:-0.956410px;}
.ws142{word-spacing:-0.914573px;}
.ws12{word-spacing:-0.896634px;}
.wsb{word-spacing:-0.836858px;}
.wsc{word-spacing:-0.777083px;}
.wse{word-spacing:-0.717307px;}
.ws102{word-spacing:-0.699379px;}
.ws23{word-spacing:-0.657532px;}
.ws9{word-spacing:-0.597756px;}
.ws3{word-spacing:-0.591782px;}
.ws134{word-spacing:-0.537984px;}
.ws24{word-spacing:-0.537980px;}
.ws3a{word-spacing:-0.478205px;}
.ws121{word-spacing:-0.430387px;}
.ws47{word-spacing:-0.418429px;}
.ws135{word-spacing:-0.376589px;}
.ws29{word-spacing:-0.358654px;}
.wsf3{word-spacing:-0.322790px;}
.ws26{word-spacing:-0.298878px;}
.ws107{word-spacing:-0.268992px;}
.ws2a{word-spacing:-0.239102px;}
.ws100{word-spacing:-0.215194px;}
.ws1a{word-spacing:-0.179327px;}
.wsfc{word-spacing:-0.161395px;}
.ws57{word-spacing:-0.119551px;}
.wsef{word-spacing:-0.107597px;}
.wsed{word-spacing:-0.061735px;}
.ws4e{word-spacing:-0.059776px;}
.ws93{word-spacing:-0.053798px;}
.wsa0{word-spacing:-0.048419px;}
.wsc0{word-spacing:-0.043776px;}
.wsfd{word-spacing:-0.027456px;}
.ws9b{word-spacing:-0.018213px;}
.ws145{word-spacing:-0.009994px;}
.ws14b{word-spacing:-0.009907px;}
.ws10c{word-spacing:-0.008966px;}
.ws9c{word-spacing:-0.006385px;}
.ws14e{word-spacing:-0.006202px;}
.ws14f{word-spacing:-0.005654px;}
.ws98{word-spacing:-0.004260px;}
.ws97{word-spacing:-0.004044px;}
.ws155{word-spacing:-0.003907px;}
.ws10f{word-spacing:-0.003466px;}
.ws105{word-spacing:-0.003302px;}
.ws88{word-spacing:-0.002160px;}
.ws8b{word-spacing:-0.001080px;}
.ws12f{word-spacing:-0.000470px;}
.ws82{word-spacing:-0.000130px;}
.ws0{word-spacing:0.000000px;}
.wsa1{word-spacing:0.000112px;}
.ws89{word-spacing:0.003240px;}
.ws110{word-spacing:0.053798px;}
.ws34{word-spacing:0.059776px;}
.wsf7{word-spacing:0.107597px;}
.ws25{word-spacing:0.119551px;}
.ws115{word-spacing:0.161395px;}
.ws2d{word-spacing:0.179327px;}
.wsec{word-spacing:0.215194px;}
.ws15{word-spacing:0.239102px;}
.wsf9{word-spacing:0.268992px;}
.ws31{word-spacing:0.298878px;}
.wsfe{word-spacing:0.322790px;}
.ws37{word-spacing:0.358654px;}
.wsff{word-spacing:0.376589px;}
.wse2{word-spacing:0.418429px;}
.ws131{word-spacing:0.430387px;}
.ws2c{word-spacing:0.478205px;}
.ws14d{word-spacing:0.484186px;}
.wsb7{word-spacing:0.537980px;}
.ws112{word-spacing:0.537984px;}
.ws12d{word-spacing:0.591782px;}
.wsd0{word-spacing:0.597756px;}
.wsbc{word-spacing:0.657532px;}
.ws104{word-spacing:0.699379px;}
.ws5d{word-spacing:0.717307px;}
.ws5f{word-spacing:0.777083px;}
.ws5a{word-spacing:0.836858px;}
.ws158{word-spacing:0.860774px;}
.ws56{word-spacing:0.896634px;}
.ws157{word-spacing:0.914573px;}
.wsd4{word-spacing:0.956410px;}
.wse8{word-spacing:0.968371px;}
.ws6e{word-spacing:1.016185px;}
.wsf4{word-spacing:1.022170px;}
.wsd1{word-spacing:1.075961px;}
.ws12e{word-spacing:1.129766px;}
.wse1{word-spacing:1.135736px;}
.wsb9{word-spacing:1.195512px;}
.ws119{word-spacing:1.237363px;}
.ws7a{word-spacing:1.255288px;}
.wsf5{word-spacing:1.291162px;}
.ws12a{word-spacing:1.343021px;}
.ws154{word-spacing:1.344960px;}
.ws19{word-spacing:1.374839px;}
.ws42{word-spacing:1.434614px;}
.wscd{word-spacing:1.494390px;}
.ws46{word-spacing:1.554166px;}
.ws10b{word-spacing:1.560154px;}
.ws1f{word-spacing:1.613941px;}
.ws114{word-spacing:1.613952px;}
.ws14a{word-spacing:1.667750px;}
.wsdc{word-spacing:1.673717px;}
.wsd2{word-spacing:1.793268px;}
.ws149{word-spacing:1.829146px;}
.wsd{word-spacing:1.853044px;}
.ws108{word-spacing:1.882944px;}
.wsb8{word-spacing:1.912819px;}
.ws109{word-spacing:1.936742px;}
.ws54{word-spacing:1.972595px;}
.ws38{word-spacing:2.032370px;}
.ws4c{word-spacing:2.092146px;}
.ws41{word-spacing:2.151922px;}
.wsa7{word-spacing:2.170854px;}
.ws127{word-spacing:2.205734px;}
.ws128{word-spacing:2.259533px;}
.ws3f{word-spacing:2.271473px;}
.ws30{word-spacing:2.331248px;}
.ws2b{word-spacing:2.391024px;}
.ws40{word-spacing:2.450800px;}
.ws152{word-spacing:2.474726px;}
.wsd3{word-spacing:2.510575px;}
.ws18{word-spacing:2.630126px;}
.ws5c{word-spacing:2.749678px;}
.ws14{word-spacing:2.809453px;}
.ws15c{word-spacing:2.851315px;}
.ws143{word-spacing:2.905114px;}
.ws6f{word-spacing:2.929004px;}
.ws120{word-spacing:2.958912px;}
.ws73{word-spacing:2.988780px;}
.ws11e{word-spacing:3.012710px;}
.ws69{word-spacing:3.048556px;}
.ws13a{word-spacing:3.120307px;}
.ws5b{word-spacing:3.227882px;}
.wsdf{word-spacing:3.287658px;}
.ws156{word-spacing:3.443098px;}
.wsda{word-spacing:3.466985px;}
.ws14c{word-spacing:3.496896px;}
.ws79{word-spacing:3.526760px;}
.ws132{word-spacing:3.550694px;}
.ws27{word-spacing:3.586536px;}
.ws133{word-spacing:3.604493px;}
.ws43{word-spacing:3.646312px;}
.ws123{word-spacing:3.658291px;}
.ws2e{word-spacing:3.706087px;}
.ws3e{word-spacing:3.765863px;}
.wsd6{word-spacing:3.825638px;}
.wsf{word-spacing:3.885414px;}
.ws51{word-spacing:3.945190px;}
.ws148{word-spacing:4.034880px;}
.ws7b{word-spacing:4.064741px;}
.ws137{word-spacing:4.088678px;}
.ws68{word-spacing:4.124516px;}
.wse3{word-spacing:4.244068px;}
.ws138{word-spacing:4.250074px;}
.ws111{word-spacing:4.411469px;}
.ws3d{word-spacing:4.423394px;}
.wsde{word-spacing:4.483170px;}
.ws11{word-spacing:4.542946px;}
.wsf6{word-spacing:4.680461px;}
.wsbb{word-spacing:4.722272px;}
.ws1c{word-spacing:4.782060px;}
.ws10d{word-spacing:4.788058px;}
.wsa8{word-spacing:4.841824px;}
.ws139{word-spacing:4.841856px;}
.wsd8{word-spacing:4.901599px;}
.ws11b{word-spacing:4.949453px;}
.ws48{word-spacing:4.961375px;}
.ws106{word-spacing:5.057050px;}
.wsca{word-spacing:5.080926px;}
.ws15d{word-spacing:5.110848px;}
.wsbd{word-spacing:5.140702px;}
.ws124{word-spacing:5.153644px;}
.ws126{word-spacing:5.164646px;}
.ws4b{word-spacing:5.200477px;}
.ws125{word-spacing:5.218445px;}
.wscf{word-spacing:5.320028px;}
.wsf8{word-spacing:5.373398px;}
.wsf2{word-spacing:5.374406px;}
.ws10a{word-spacing:5.375568px;}
.wsfb{word-spacing:5.376864px;}
.wsf1{word-spacing:5.377296px;}
.ws118{word-spacing:5.379014px;}
.wscb{word-spacing:5.379804px;}
.ws4{word-spacing:5.379840px;}
.ws130{word-spacing:5.380714px;}
.ws122{word-spacing:5.381213px;}
.ws129{word-spacing:5.381530px;}
.wsfa{word-spacing:5.382211px;}
.ws113{word-spacing:5.433638px;}
.ws6d{word-spacing:5.499355px;}
.ws12c{word-spacing:5.541235px;}
.ws4f{word-spacing:5.559131px;}
.ws146{word-spacing:5.595034px;}
.ws13d{word-spacing:5.702630px;}
.wsee{word-spacing:5.756429px;}
.ws49{word-spacing:5.858009px;}
.ws10{word-spacing:5.977560px;}
.ws50{word-spacing:6.037336px;}
.ws116{word-spacing:6.240614px;}
.ws6a{word-spacing:6.276438px;}
.ws117{word-spacing:6.294413px;}
.ws15e{word-spacing:6.509606px;}
.ws15b{word-spacing:6.671002px;}
.ws136{word-spacing:6.724800px;}
.ws22{word-spacing:6.933970px;}
.ws58{word-spacing:7.053521px;}
.ws13c{word-spacing:7.155187px;}
.ws75{word-spacing:7.232848px;}
.ws6c{word-spacing:7.412174px;}
.ws78{word-spacing:7.531726px;}
.ws11c{word-spacing:7.585574px;}
.ws4a{word-spacing:7.591501px;}
.ws13b{word-spacing:7.746970px;}
.ws12b{word-spacing:8.015962px;}
.ws140{word-spacing:8.338752px;}
.ws59{word-spacing:8.368584px;}
.ws159{word-spacing:8.500147px;}
.wsea{word-spacing:8.769139px;}
.wse0{word-spacing:8.966340px;}
.ws13{word-spacing:9.205442px;}
.ws151{word-spacing:9.253325px;}
.ws35{word-spacing:9.324994px;}
.ws3b{word-spacing:9.444545px;}
.wsba{word-spacing:9.623872px;}
.wsf0{word-spacing:9.683712px;}
.ws45{word-spacing:9.922750px;}
.ws17{word-spacing:10.042301px;}
.wse7{word-spacing:10.329293px;}
.ws103{word-spacing:10.383091px;}
.ws11f{word-spacing:10.652083px;}
.ws147{word-spacing:10.759680px;}
.ws11a{word-spacing:10.974874px;}
.ws13e{word-spacing:13.933786px;}
.ws66{word-spacing:14.764573px;}
.ws44{word-spacing:15.422105px;}
.ws101{word-spacing:19.259827px;}
.wsc6{word-spacing:20.981376px;}
.wsc5{word-spacing:21.626957px;}
.ws13f{word-spacing:30.503693px;}
.wsa4{word-spacing:46.135749px;}
.ws9e{word-spacing:46.161440px;}
.wsb0{word-spacing:52.727812px;}
.ws9d{word-spacing:54.725976px;}
.ws2{word-spacing:54.988186px;}
.wsb5{word-spacing:59.476499px;}
.wsb3{word-spacing:62.411524px;}
.wsc2{word-spacing:65.402880px;}
.ws99{word-spacing:66.527101px;}
.wsa3{word-spacing:66.830616px;}
.wsc9{word-spacing:68.291904px;}
.wsa6{word-spacing:73.838304px;}
.wsac{word-spacing:76.404488px;}
.ws96{word-spacing:78.583323px;}
.ws9a{word-spacing:85.942944px;}
.wsb1{word-spacing:89.186988px;}
.wsad{word-spacing:105.407205px;}
.wsb4{word-spacing:125.649809px;}
.ws90{word-spacing:177.749914px;}
.ws92{word-spacing:195.522000px;}
.ws8d{word-spacing:200.130048px;}
.ws87{word-spacing:202.486418px;}
.wsc4{word-spacing:212.282880px;}
.ws8a{word-spacing:214.591058px;}
.ws85{word-spacing:216.624637px;}
.wsc1{word-spacing:217.706880px;}
.ws94{word-spacing:218.098714px;}
.wsb2{word-spacing:225.220910px;}
.ws95{word-spacing:231.494515px;}
.wsa2{word-spacing:241.742068px;}
.ws81{word-spacing:248.726143px;}
.ws86{word-spacing:250.904978px;}
.ws80{word-spacing:260.830783px;}
.ws83{word-spacing:272.935423px;}
.ws7f{word-spacing:357.601945px;}
.ws91{word-spacing:402.051034px;}
.ws1e{word-spacing:430.815785px;}
.ws7d{word-spacing:661.010181px;}
.wsb6{word-spacing:749.123813px;}
.wsa5{word-spacing:787.998413px;}
.ws7c{word-spacing:1338.531091px;}
._23{margin-left:-330.166161px;}
._2{margin-left:-11.943245px;}
._17{margin-left:-7.460785px;}
._e{margin-left:-6.290707px;}
._5{margin-left:-5.057050px;}
._6{margin-left:-3.981082px;}
._8{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._9{width:1.091170px;}
._3{width:2.998404px;}
._1e{width:4.229359px;}
._63{width:5.313197px;}
._61{width:6.430419px;}
._62{width:7.761720px;}
._13{width:8.807142px;}
._0{width:10.165172px;}
._14{width:11.955150px;}
._a{width:13.890484px;}
._b{width:15.394256px;}
._71{width:16.462310px;}
._1d{width:17.509139px;}
._7{width:18.829440px;}
._c{width:20.178956px;}
._f{width:21.734435px;}
._16{width:23.407742px;}
._1a{width:24.859051px;}
._10{width:26.203806px;}
._11{width:27.485622px;}
._d{width:29.254585px;}
._6f{width:30.353068px;}
._12{width:31.762937px;}
._18{width:32.975695px;}
._21{width:34.571939px;}
._1f{width:35.673322px;}
._1b{width:37.346813px;}
._1c{width:39.498735px;}
._73{width:40.940582px;}
._19{width:44.148294px;}
._20{width:45.227619px;}
._72{width:51.323674px;}
._4{width:54.410676px;}
._70{width:61.868160px;}
._66{width:63.701280px;}
._46{width:64.832452px;}
._6d{width:66.998515px;}
._45{width:73.838304px;}
._4e{width:77.980781px;}
._57{width:79.234284px;}
._48{width:85.942944px;}
._68{width:87.356544px;}
._6c{width:88.790554px;}
._67{width:90.015379px;}
._52{width:92.199698px;}
._4f{width:93.302565px;}
._6e{width:95.247379px;}
._42{width:97.176050px;}
._49{width:98.919118px;}
._40{width:103.083114px;}
._43{width:105.407205px;}
._3e{width:107.924970px;}
._6b{width:108.963902px;}
._54{width:110.103805px;}
._3f{width:111.615540px;}
._56{width:114.078362px;}
._65{width:115.903091px;}
._58{width:117.560264px;}
._53{width:122.498957px;}
._5a{width:127.155629px;}
._3d{width:129.713322px;}
._4b{width:143.658636px;}
._59{width:158.231854px;}
._38{width:163.942115px;}
._4a{width:175.226769px;}
._33{width:178.011043px;}
._2a{width:181.375926px;}
._47{width:189.223967px;}
._2b{width:193.480566px;}
._55{width:204.751290px;}
._6a{width:210.686016px;}
._34{width:213.755518px;}
._35{width:215.475016px;}
._5e{width:221.175982px;}
._41{width:224.191290px;}
._69{width:232.718208px;}
._64{width:238.094208px;}
._50{width:240.640243px;}
._39{width:244.535247px;}
._24{width:246.353633px;}
._2e{width:249.456214px;}
._31{width:253.261374px;}
._25{width:260.830783px;}
._5d{width:268.287241px;}
._27{width:269.885053px;}
._28{width:272.983841px;}
._26{width:285.088481px;}
._30{width:288.354044px;}
._44{width:289.542989px;}
._29{width:295.256379px;}
._2c{width:297.047866px;}
._2f{width:302.325489px;}
._2d{width:309.247183px;}
._37{width:362.924006px;}
._5c{width:384.975971px;}
._3a{width:389.823206px;}
._4d{width:404.391813px;}
._3b{width:433.506307px;}
._36{width:453.839596px;}
._5b{width:485.299227px;}
._4c{width:504.715069px;}
._5f{width:512.074691px;}
._32{width:615.109386px;}
._51{width:842.773455px;}
._3c{width:866.446425px;}
._60{width:1515.546193px;}
._15{width:1539.456493px;}
._22{width:3019.150829px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc8{color:rgb(127,127,127);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fsc{font-size:35.865600px;}
.fse{font-size:37.658520px;}
.fs11{font-size:38.016000px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fs10{font-size:43.776000px;}
.fs12{font-size:43.891200px;}
.fs4{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs9{font-size:47.820600px;}
.fsf{font-size:48.384000px;}
.fsd{font-size:48.418560px;}
.fs6{font-size:53.798400px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fsa{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.y1f0{bottom:-719.556000px;}
.y178{bottom:-579.129600px;}
.y177{bottom:-563.001600px;}
.y18e{bottom:-424.442400px;}
.y18d{bottom:-405.410400px;}
.y19b{bottom:-394.322400px;}
.y18c{bottom:-385.826400px;}
.y1a6{bottom:-375.637200px;}
.y198{bottom:-370.382400px;}
.y18b{bottom:-366.242400px;}
.y1a5{bottom:-359.509200px;}
.y18a{bottom:-346.658400px;}
.y196{bottom:-334.766400px;}
.y199{bottom:-334.154400px;}
.y189{bottom:-327.074400px;}
.y188{bottom:-301.982400px;}
.y197{bottom:-290.378400px;}
.y19a{bottom:-289.802400px;}
.y187{bottom:-271.742400px;}
.y186{bottom:-241.790400px;}
.y185{bottom:-226.238400px;}
.y1bc{bottom:-220.950000px;}
.y184{bottom:-203.174400px;}
.y1bb{bottom:-201.918000px;}
.y1c3{bottom:-190.830000px;}
.y1a1{bottom:-189.698400px;}
.y1ba{bottom:-182.334000px;}
.y1ce{bottom:-175.507200px;}
.y19e{bottom:-173.246400px;}
.y1c0{bottom:-166.890000px;}
.y1b9{bottom:-162.750000px;}
.y1cd{bottom:-159.379200px;}
.y1b8{bottom:-143.166000px;}
.y19c{bottom:-134.342400px;}
.y19f{bottom:-133.742400px;}
.y1be{bottom:-131.274000px;}
.y1c1{bottom:-130.662000px;}
.y1b7{bottom:-123.582000px;}
.y1b6{bottom:-98.490000px;}
.y1bf{bottom:-86.886000px;}
.y1c2{bottom:-86.310000px;}
.y19d{bottom:-83.366400px;}
.y1a0{bottom:-82.790400px;}
.y1b5{bottom:-68.250000px;}
.y1f2{bottom:-56.980800px;}
.y1b4{bottom:-38.298000px;}
.y183{bottom:-29.486400px;}
.y1f1{bottom:-26.716800px;}
.y1b3{bottom:-22.746000px;}
.y1e4{bottom:-20.820000px;}
.y182{bottom:-13.934400px;}
.y1e3{bottom:-1.788000px;}
.y0{bottom:0.000000px;}
.y1b2{bottom:0.318000px;}
.y1ca{bottom:0.372000px;}
.y195{bottom:2.856000px;}
.y15{bottom:3.425340px;}
.y181{bottom:5.649600px;}
.y4{bottom:6.350457px;}
.y1f8{bottom:6.895200px;}
.y1eb{bottom:9.300000px;}
.y14{bottom:14.151273px;}
.y1c7{bottom:16.824000px;}
.y1e2{bottom:17.796000px;}
.y192{bottom:17.856000px;}
.y3{bottom:20.308195px;}
.y1f5{bottom:30.823200px;}
.y1e8{bottom:33.240000px;}
.y2{bottom:37.114269px;}
.y1e1{bottom:37.380000px;}
.y1c5{bottom:55.728000px;}
.y190{bottom:56.280000px;}
.y1c8{bottom:56.328000px;}
.y1e0{bottom:56.964000px;}
.y193{bottom:57.228000px;}
.y34{bottom:63.780000px;}
.y1f3{bottom:66.739200px;}
.y1f6{bottom:67.351200px;}
.y1e6{bottom:68.856000px;}
.y1e9{bottom:69.468000px;}
.y1df{bottom:76.548000px;}
.y1de{bottom:101.640000px;}
.y191{bottom:106.248000px;}
.y1c6{bottom:106.704000px;}
.y194{bottom:107.196000px;}
.y1c9{bottom:107.280000px;}
.y33{bottom:108.612000px;}
.yeb{bottom:110.895000px;}
.y95{bottom:110.898000px;}
.y175{bottom:111.645000px;}
.y1f4{bottom:111.727200px;}
.y1f7{bottom:112.303200px;}
.y1e7{bottom:113.244000px;}
.y1ea{bottom:113.820000px;}
.y213{bottom:116.607000px;}
.y148{bottom:117.891000px;}
.ybc{bottom:119.058000px;}
.y269{bottom:119.239500px;}
.y66{bottom:119.863500px;}
.y21e{bottom:127.903500px;}
.y29c{bottom:128.325000px;}
.y32{bottom:128.875500px;}
.yea{bottom:131.160000px;}
.y94{bottom:131.161500px;}
.y1dd{bottom:131.880000px;}
.y174{bottom:131.910000px;}
.y212{bottom:136.870500px;}
.y147{bottom:138.156000px;}
.y268{bottom:138.606000px;}
.ybb{bottom:139.321500px;}
.y65{bottom:140.128500px;}
.y29b{bottom:147.691500px;}
.y21d{bottom:148.168500px;}
.y31{bottom:149.139000px;}
.ye9{bottom:151.423500px;}
.y93{bottom:151.426500px;}
.y173{bottom:152.173500px;}
.y211{bottom:157.134000px;}
.y267{bottom:157.974000px;}
.y146{bottom:158.419500px;}
.yba{bottom:159.585000px;}
.y64{bottom:160.392000px;}
.y1dc{bottom:161.832000px;}
.y1ef{bottom:162.247200px;}
.y29a{bottom:167.059500px;}
.y21c{bottom:168.432000px;}
.y30{bottom:169.404000px;}
.y180{bottom:169.869600px;}
.ye8{bottom:171.687000px;}
.y92{bottom:171.690000px;}
.y172{bottom:172.438500px;}
.y1b1{bottom:174.006000px;}
.y266{bottom:177.340500px;}
.y1db{bottom:177.384000px;}
.y210{bottom:177.399000px;}
.y145{bottom:178.684500px;}
.yb9{bottom:179.850000px;}
.y63{bottom:180.657000px;}
.y17f{bottom:185.709600px;}
.y299{bottom:186.427500px;}
.y235{bottom:188.293500px;}
.y21b{bottom:188.697000px;}
.y1b0{bottom:189.558000px;}
.y2f{bottom:189.667500px;}
.ye7{bottom:191.952000px;}
.y91{bottom:191.953500px;}
.y171{bottom:192.702000px;}
.y265{bottom:196.708500px;}
.y20f{bottom:197.662500px;}
.y144{bottom:198.948000px;}
.yb8{bottom:200.113500px;}
.y1da{bottom:200.448000px;}
.y62{bottom:200.920500px;}
.y17e{bottom:201.261600px;}
.y234{bottom:203.491500px;}
.y298{bottom:205.794000px;}
.y21a{bottom:208.960500px;}
.y1af{bottom:209.142000px;}
.y2e{bottom:209.932500px;}
.ye6{bottom:212.215500px;}
.y90{bottom:212.218500px;}
.y170{bottom:212.965500px;}
.y264{bottom:216.076500px;}
.y17d{bottom:216.813600px;}
.y20e{bottom:217.927500px;}
.y233{bottom:218.689500px;}
.y143{bottom:219.211500px;}
.yb7{bottom:220.378500px;}
.y61{bottom:221.184000px;}
.y297{bottom:225.162000px;}
.y2d{bottom:227.398500px;}
.y2c{bottom:230.196000px;}
.y17c{bottom:232.401600px;}
.ye5{bottom:232.480500px;}
.y8f{bottom:232.482000px;}
.y16f{bottom:233.230500px;}
.y263{bottom:235.443000px;}
.y20d{bottom:238.191000px;}
.y142{bottom:239.476500px;}
.y60{bottom:241.449000px;}
.y232{bottom:242.853000px;}
.y296{bottom:244.528500px;}
.y1f9{bottom:244.761000px;}
.y17b{bottom:247.953600px;}
.yb6{bottom:249.609000px;}
.y2b{bottom:250.459500px;}
.ye4{bottom:252.744000px;}
.y8e{bottom:252.747000px;}
.y16e{bottom:253.494000px;}
.y262{bottom:254.811000px;}
.y231{bottom:258.051000px;}
.y20c{bottom:258.454500px;}
.y141{bottom:259.740000px;}
.y5f{bottom:261.712500px;}
.y17a{bottom:263.505600px;}
.y295{bottom:263.896500px;}
.y1ee{bottom:267.190500px;}
.y10b{bottom:267.421500px;}
.y2a{bottom:270.724500px;}
.ye3{bottom:273.007500px;}
.y8d{bottom:273.010500px;}
.y16d{bottom:273.759000px;}
.y261{bottom:274.177500px;}
.y20b{bottom:278.719500px;}
.y179{bottom:279.345600px;}
.y140{bottom:280.005000px;}
.y5e{bottom:281.977500px;}
.y230{bottom:282.216000px;}
.y294{bottom:283.264500px;}
.yb5{bottom:284.428500px;}
.y10a{bottom:287.685000px;}
.y29{bottom:290.988000px;}
.ye2{bottom:293.272500px;}
.y8c{bottom:293.274000px;}
.y260{bottom:293.545500px;}
.y16c{bottom:294.022500px;}
.y22f{bottom:297.414000px;}
.y20a{bottom:298.983000px;}
.y13f{bottom:300.268500px;}
.y5d{bottom:302.241000px;}
.y293{bottom:302.631000px;}
.yb4{bottom:304.692000px;}
.y109{bottom:307.950000px;}
.y28{bottom:311.253000px;}
.y25f{bottom:312.913500px;}
.ye1{bottom:313.536000px;}
.y8b{bottom:313.539000px;}
.y16b{bottom:314.286000px;}
.y209{bottom:319.248000px;}
.y13e{bottom:320.532000px;}
.y22e{bottom:321.579000px;}
.y292{bottom:321.999000px;}
.y5c{bottom:322.504500px;}
.yb3{bottom:324.955500px;}
.y108{bottom:328.213500px;}
.y27{bottom:331.516500px;}
.y25e{bottom:332.280000px;}
.ye0{bottom:333.799500px;}
.y8a{bottom:333.802500px;}
.y16a{bottom:334.551000px;}
.y22d{bottom:336.777000px;}
.y208{bottom:339.511500px;}
.y13d{bottom:340.797000px;}
.y291{bottom:341.367000px;}
.y5b{bottom:342.769500px;}
.yb2{bottom:345.220500px;}
.y107{bottom:345.681000px;}
.y106{bottom:348.478500px;}
.y25d{bottom:351.648000px;}
.y26{bottom:351.780000px;}
.y22c{bottom:351.975000px;}
.ydf{bottom:354.064500px;}
.y89{bottom:354.067500px;}
.y169{bottom:354.814500px;}
.y123{bottom:355.867500px;}
.y207{bottom:359.775000px;}
.y290{bottom:360.733500px;}
.y13c{bottom:361.060500px;}
.y5a{bottom:363.033000px;}
.yb1{bottom:365.484000px;}
.y22b{bottom:367.173000px;}
.y105{bottom:368.742000px;}
.y25c{bottom:371.014500px;}
.y122{bottom:372.721500px;}
.y1ae{bottom:373.362000px;}
.y1d9{bottom:374.136000px;}
.yde{bottom:374.328000px;}
.y88{bottom:374.331000px;}
.y2a1{bottom:379.896000px;}
.y206{bottom:380.040000px;}
.y28f{bottom:380.101500px;}
.y25{bottom:381.010500px;}
.y13b{bottom:381.325500px;}
.yb0{bottom:382.951500px;}
.y59{bottom:383.298000px;}
.y168{bottom:384.045000px;}
.yaf{bottom:385.749000px;}
.y121{bottom:387.879300px;}
.y104{bottom:389.005500px;}
.y1ad{bottom:389.202000px;}
.y1d8{bottom:389.688000px;}
.y25b{bottom:390.382500px;}
.ydd{bottom:394.593000px;}
.y87{bottom:394.594500px;}
.y2a0{bottom:399.262500px;}
.y28e{bottom:399.468000px;}
.y205{bottom:400.303500px;}
.yae{bottom:403.215000px;}
.y58{bottom:403.561500px;}
.y120{bottom:403.763400px;}
.y1ac{bottom:404.754000px;}
.yad{bottom:406.012500px;}
.y103{bottom:409.270500px;}
.y1d7{bottom:409.272000px;}
.y25a{bottom:409.750500px;}
.ydc{bottom:414.856500px;}
.y86{bottom:414.859500px;}
.y29f{bottom:418.630500px;}
.y28d{bottom:418.836000px;}
.y167{bottom:418.864500px;}
.y11f{bottom:418.922550px;}
.y1ab{bottom:420.306000px;}
.y204{bottom:420.568500px;}
.y13a{bottom:422.899500px;}
.y57{bottom:423.825000px;}
.yac{bottom:426.276000px;}
.y259{bottom:429.117000px;}
.y102{bottom:429.534000px;}
.y1ed{bottom:430.404000px;}
.y11e{bottom:434.764800px;}
.ydb{bottom:435.120000px;}
.y85{bottom:435.123000px;}
.y1aa{bottom:435.894000px;}
.y28c{bottom:438.204000px;}
.y166{bottom:439.129500px;}
.y203{bottom:440.832000px;}
.y139{bottom:444.050700px;}
.y56{bottom:444.090000px;}
.yab{bottom:446.541000px;}
.y29e{bottom:447.976500px;}
.y258{bottom:448.485000px;}
.y101{bottom:449.799000px;}
.y1a9{bottom:451.446000px;}
.y1cc{bottom:452.833500px;}
.yda{bottom:455.385000px;}
.y219{bottom:455.388000px;}
.y11d{bottom:456.363450px;}
.y24{bottom:457.426500px;}
.y28b{bottom:457.570500px;}
.y138{bottom:459.166650px;}
.y165{bottom:459.393000px;}
.y202{bottom:461.095500px;}
.y29d{bottom:463.174500px;}
.y55{bottom:464.353500px;}
.yaa{bottom:466.804500px;}
.y1a8{bottom:466.998000px;}
.y257{bottom:467.851500px;}
.y100{bottom:470.062500px;}
.y137{bottom:474.282600px;}
.yd9{bottom:475.648500px;}
.y28a{bottom:476.938500px;}
.y23{bottom:477.691500px;}
.y11c{bottom:477.960750px;}
.y164{bottom:479.656500px;}
.y201{bottom:481.360500px;}
.y1a7{bottom:482.838000px;}
.y54{bottom:484.618500px;}
.y11b{bottom:486.369900px;}
.ya9{bottom:487.069500px;}
.y256{bottom:487.219500px;}
.y136{bottom:489.398550px;}
.yff{bottom:490.326000px;}
.yd8{bottom:495.913500px;}
.y289{bottom:496.305000px;}
.y84{bottom:499.173000px;}
.y163{bottom:499.921500px;}
.y200{bottom:501.624000px;}
.y135{bottom:504.514500px;}
.y53{bottom:504.882000px;}
.y255{bottom:506.587500px;}
.ya8{bottom:507.333000px;}
.yfe{bottom:510.591000px;}
.y11a{bottom:514.675350px;}
.y288{bottom:515.673000px;}
.y22{bottom:515.887500px;}
.yd7{bottom:516.177000px;}
.y83{bottom:519.438000px;}
.y134{bottom:519.630450px;}
.y162{bottom:520.185000px;}
.y1ff{bottom:521.889000px;}
.y218{bottom:525.145500px;}
.y254{bottom:525.954000px;}
.ya7{bottom:527.596500px;}
.y119{bottom:529.565850px;}
.yfd{bottom:530.854500px;}
.y52{bottom:534.112500px;}
.y133{bottom:534.746400px;}
.y287{bottom:535.041000px;}
.y21{bottom:536.152500px;}
.yd6{bottom:536.440500px;}
.y82{bottom:539.701500px;}
.y161{bottom:540.450000px;}
.y1fe{bottom:542.152500px;}
.y253{bottom:545.322000px;}
.y217{bottom:545.410500px;}
.ya6{bottom:547.861500px;}
.yfc{bottom:548.322000px;}
.y132{bottom:549.541050px;}
.yfb{bottom:551.119500px;}
.y286{bottom:554.407500px;}
.y20{bottom:556.416000px;}
.yd5{bottom:556.705500px;}
.y131{bottom:556.939050px;}
.y118{bottom:557.871300px;}
.y81{bottom:559.965000px;}
.y160{bottom:560.713500px;}
.y22a{bottom:562.416000px;}
.y252{bottom:564.688500px;}
.y216{bottom:565.674000px;}
.ya5{bottom:568.125000px;}
.y51{bottom:568.932000px;}
.yfa{bottom:571.383000px;}
.y1d6{bottom:573.492000px;}
.y285{bottom:573.775500px;}
.y1f{bottom:576.679500px;}
.yd4{bottom:576.969000px;}
.y117{bottom:579.469950px;}
.y80{bottom:580.230000px;}
.y15f{bottom:580.977000px;}
.y229{bottom:582.681000px;}
.y251{bottom:584.056500px;}
.y130{bottom:585.934350px;}
.y215{bottom:585.939000px;}
.y114{bottom:588.200400px;}
.y50{bottom:589.195500px;}
.y1d5{bottom:589.332000px;}
.yf9{bottom:591.646500px;}
.y284{bottom:593.142000px;}
.y116{bottom:594.585900px;}
.y1e{bottom:596.944500px;}
.yd3{bottom:597.234000px;}
.ya4{bottom:597.355500px;}
.y7f{bottom:600.493500px;}
.y15e{bottom:601.242000px;}
.y228{bottom:602.944500px;}
.y250{bottom:603.424500px;}
.y1d4{bottom:604.884000px;}
.y1fd{bottom:606.202500px;}
.y4f{bottom:609.460500px;}
.y115{bottom:609.701850px;}
.yf8{bottom:611.911500px;}
.y283{bottom:612.510000px;}
.y12f{bottom:615.865500px;}
.y1cb{bottom:616.888500px;}
.y1d{bottom:617.208000px;}
.yd2{bottom:617.497500px;}
.y1d3{bottom:620.436000px;}
.y7e{bottom:620.758500px;}
.y15d{bottom:621.505500px;}
.y24f{bottom:622.791000px;}
.y227{bottom:623.209500px;}
.y1fc{bottom:626.466000px;}
.y4e{bottom:629.724000px;}
.y113{bottom:631.300500px;}
.y282{bottom:631.878000px;}
.ya3{bottom:632.175000px;}
.y1d2{bottom:636.024000px;}
.y1c{bottom:637.473000px;}
.yd1{bottom:637.761000px;}
.y1a4{bottom:639.318000px;}
.y7d{bottom:641.022000px;}
.y15c{bottom:641.770500px;}
.y24e{bottom:642.159000px;}
.y226{bottom:643.473000px;}
.y112{bottom:644.611500px;}
.y1fb{bottom:646.731000px;}
.y4d{bottom:649.987500px;}
.y281{bottom:651.244500px;}
.y1d1{bottom:651.576000px;}
.yf7{bottom:652.438500px;}
.y1c4{bottom:652.740000px;}
.y214{bottom:655.696500px;}
.y1b{bottom:657.736500px;}
.y12e{bottom:657.811500px;}
.yd0{bottom:658.026000px;}
.y7c{bottom:661.285500px;}
.y24d{bottom:661.527000px;}
.y15b{bottom:662.034000px;}
.y225{bottom:663.736500px;}
.y1ec{bottom:666.385500px;}
.ya2{bottom:666.994500px;}
.y1d0{bottom:667.128000px;}
.y4c{bottom:670.252500px;}
.y280{bottom:670.612500px;}
.yf6{bottom:672.703500px;}
.y111{bottom:674.496450px;}
.y12d{bottom:674.607000px;}
.y1a{bottom:678.000000px;}
.ycf{bottom:678.289500px;}
.y24c{bottom:680.893500px;}
.y7b{bottom:681.550500px;}
.y15a{bottom:682.297500px;}
.y1cf{bottom:682.968000px;}
.y224{bottom:684.001500px;}
.ya1{bottom:687.258000px;}
.y27f{bottom:689.979000px;}
.y4b{bottom:690.516000px;}
.y12c{bottom:691.402500px;}
.yf5{bottom:692.967000px;}
.y10e{bottom:695.000250px;}
.y110{bottom:696.093750px;}
.y19{bottom:698.265000px;}
.yce{bottom:698.554500px;}
.y24b{bottom:700.261500px;}
.y7a{bottom:701.814000px;}
.y159{bottom:702.562500px;}
.y223{bottom:704.265000px;}
.ya0{bottom:707.523000px;}
.y12b{bottom:708.198000px;}
.y27e{bottom:709.347000px;}
.y4a{bottom:710.781000px;}
.yf4{bottom:713.232000px;}
.y10f{bottom:717.692400px;}
.y18{bottom:718.528500px;}
.ycd{bottom:718.818000px;}
.y24a{bottom:719.628000px;}
.y79{bottom:722.077500px;}
.y158{bottom:722.826000px;}
.y12a{bottom:724.993500px;}
.y9f{bottom:727.786500px;}
.y27d{bottom:728.715000px;}
.y49{bottom:731.044500px;}
.yf3{bottom:733.495500px;}
.y17{bottom:738.793500px;}
.y249{bottom:738.996000px;}
.ycc{bottom:739.081500px;}
.y129{bottom:741.789000px;}
.y78{bottom:742.342500px;}
.y157{bottom:743.091000px;}
.y10d{bottom:747.622500px;}
.y9e{bottom:748.051500px;}
.y27c{bottom:748.081500px;}
.y48{bottom:751.308000px;}
.yf2{bottom:753.759000px;}
.y248{bottom:758.364000px;}
.y128{bottom:758.584500px;}
.y16{bottom:759.057000px;}
.ycb{bottom:759.346500px;}
.y77{bottom:762.606000px;}
.y156{bottom:763.354500px;}
.y27b{bottom:767.449500px;}
.y9d{bottom:768.315000px;}
.y47{bottom:771.573000px;}
.yf1{bottom:774.024000px;}
.y127{bottom:775.023000px;}
.y247{bottom:777.730500px;}
.yca{bottom:779.610000px;}
.y76{bottom:782.871000px;}
.y155{bottom:783.618000px;}
.y27a{bottom:786.816000px;}
.y9c{bottom:788.578500px;}
.y126{bottom:791.461500px;}
.y46{bottom:791.836500px;}
.y13{bottom:793.211964px;}
.y12{bottom:793.978500px;}
.yf0{bottom:794.287500px;}
.y246{bottom:797.098500px;}
.y1fa{bottom:797.545500px;}
.y10c{bottom:798.445500px;}
.yc9{bottom:799.875000px;}
.y75{bottom:803.134500px;}
.y279{bottom:806.184000px;}
.y9b{bottom:808.843500px;}
.y1a3{bottom:810.940500px;}
.y45{bottom:812.101500px;}
.yef{bottom:814.552500px;}
.y125{bottom:815.460000px;}
.y245{bottom:816.465000px;}
.yc8{bottom:820.138500px;}
.y74{bottom:823.398000px;}
.y154{bottom:825.193500px;}
.y278{bottom:825.552000px;}
.y9a{bottom:829.107000px;}
.y1a2{bottom:830.173500px;}
.y44{bottom:832.365000px;}
.y11{bottom:832.984500px;}
.yee{bottom:834.816000px;}
.y244{bottom:835.833000px;}
.yc7{bottom:840.402000px;}
.y73{bottom:843.663000px;}
.y277{bottom:844.918500px;}
.y153{bottom:846.344700px;}
.y124{bottom:847.080000px;}
.y1bd{bottom:848.868000px;}
.y99{bottom:849.372000px;}
.y10{bottom:851.140500px;}
.y176{bottom:852.603000px;}
.y43{bottom:852.628500px;}
.y243{bottom:855.201000px;}
.y18f{bottom:858.660600px;}
.yc6{bottom:860.667000px;}
.y152{bottom:861.460650px;}
.y1e5{bottom:862.513500px;}
.y72{bottom:863.926500px;}
.yed{bottom:864.046500px;}
.y276{bottom:864.286500px;}
.y98{bottom:869.635500px;}
.y42{bottom:872.893500px;}
.yf{bottom:874.180500px;}
.y242{bottom:874.567500px;}
.y151{bottom:876.576600px;}
.yc5{bottom:880.930500px;}
.y275{bottom:883.653000px;}
.y71{bottom:884.191500px;}
.ye{bottom:887.455500px;}
.y97{bottom:889.899000px;}
.y150{bottom:891.692550px;}
.y41{bottom:893.157000px;}
.y241{bottom:893.935500px;}
.yec{bottom:898.866000px;}
.yc4{bottom:901.195500px;}
.y274{bottom:903.021000px;}
.y70{bottom:904.455000px;}
.y14f{bottom:906.808500px;}
.y222{bottom:910.164000px;}
.yd{bottom:910.494000px;}
.y240{bottom:913.302000px;}
.y40{bottom:913.422000px;}
.y96{bottom:919.129500px;}
.yc3{bottom:921.459000px;}
.y14e{bottom:921.924450px;}
.y273{bottom:922.389000px;}
.yc{bottom:923.769000px;}
.y6f{bottom:924.718500px;}
.y221{bottom:930.427500px;}
.y23f{bottom:932.670000px;}
.y3f{bottom:933.685500px;}
.y14d{bottom:937.040400px;}
.yc2{bottom:941.722500px;}
.y272{bottom:941.755500px;}
.yb{bottom:941.926500px;}
.y6e{bottom:944.983500px;}
.ya{bottom:946.807500px;}
.y220{bottom:950.692500px;}
.y14c{bottom:951.835050px;}
.y23e{bottom:952.038000px;}
.y3e{bottom:953.949000px;}
.y14b{bottom:959.233050px;}
.y271{bottom:961.123500px;}
.yc1{bottom:961.987500px;}
.y6d{bottom:965.247000px;}
.y9{bottom:967.771500px;}
.y23d{bottom:971.404500px;}
.y3d{bottom:974.214000px;}
.y21f{bottom:979.923000px;}
.y270{bottom:980.490000px;}
.y6c{bottom:985.512000px;}
.yc0{bottom:985.516500px;}
.y14a{bottom:988.228350px;}
.y23c{bottom:990.772500px;}
.y3c{bottom:994.477500px;}
.ybf{bottom:998.793000px;}
.y26f{bottom:999.858000px;}
.y6b{bottom:1005.775500px;}
.y23b{bottom:1010.139000px;}
.y8{bottom:1010.451000px;}
.y3b{bottom:1014.742500px;}
.y149{bottom:1018.158000px;}
.y26e{bottom:1019.226000px;}
.y6a{bottom:1026.039000px;}
.y23a{bottom:1029.507000px;}
.y3a{bottom:1035.006000px;}
.y26d{bottom:1038.592500px;}
.y7{bottom:1040.848500px;}
.ybe{bottom:1042.545000px;}
.y69{bottom:1046.304000px;}
.y239{bottom:1048.875000px;}
.ybd{bottom:1052.797500px;}
.y39{bottom:1055.269500px;}
.y26c{bottom:1057.960500px;}
.y68{bottom:1066.567500px;}
.y238{bottom:1068.241500px;}
.y6{bottom:1071.244500px;}
.y38{bottom:1075.534500px;}
.y26b{bottom:1077.327000px;}
.y67{bottom:1086.832500px;}
.y237{bottom:1087.609500px;}
.y37{bottom:1095.798000px;}
.y26a{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y236{bottom:1115.943000px;}
.y36{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y35{bottom:1168.366500px;}
.h37{height:-261.685200px;}
.h30{height:-250.838400px;}
.h38{height:-65.557200px;}
.h33{height:-53.988000px;}
.h34{height:-47.346000px;}
.h31{height:-44.918400px;}
.ha{height:25.508090px;}
.h3a{height:27.862313px;}
.h26{height:29.244810px;}
.h22{height:31.131341px;}
.h29{height:31.677750px;}
.h2b{height:31.848750px;}
.h2a{height:32.083875px;}
.hc{height:33.112997px;}
.h2d{height:33.922125px;}
.hb{height:34.199443px;}
.h19{height:35.006619px;}
.h28{height:35.012250px;}
.h11{height:36.104462px;}
.h8{height:36.319550px;}
.h2f{height:37.811813px;}
.h3d{height:37.927872px;}
.h3c{height:38.412058px;}
.h23{height:38.896243px;}
.h3{height:39.402747px;}
.hf{height:39.432893px;}
.h12{height:40.647408px;}
.h4{height:41.001535px;}
.h10{height:41.508281px;}
.h1b{height:42.027310px;}
.hd{height:43.217759px;}
.h2e{height:43.540875px;}
.h3b{height:43.655456px;}
.h5{height:43.875290px;}
.h9{height:46.697011px;}
.h21{height:48.806595px;}
.h1f{height:48.811995px;}
.h1e{height:50.259195px;}
.h20{height:50.264595px;}
.h2{height:50.931027px;}
.he{height:51.885221px;}
.h7{height:54.547601px;}
.h1d{height:68.854510px;}
.h1c{height:68.859910px;}
.h24{height:71.613910px;}
.h25{height:71.619310px;}
.h1a{height:75.172510px;}
.h6{height:77.792486px;}
.h13{height:84.339290px;}
.h15{height:97.669200px;}
.h16{height:104.985221px;}
.h14{height:118.210760px;}
.h35{height:142.140000px;}
.h2c{height:146.592000px;}
.h39{height:147.153600px;}
.h36{height:147.994800px;}
.h32{height:155.562000px;}
.h27{height:158.925600px;}
.h17{height:892.914000px;}
.h18{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w8{width:453.312000px;}
.wd{width:460.800000px;}
.w7{width:529.344000px;}
.w9{width:536.256000px;}
.wc{width:709.701684px;}
.w6{width:709.701925px;}
.wb{width:710.543125px;}
.wa{width:711.383989px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.xb1{left:1.843200px;}
.xa0{left:3.427200px;}
.xaa{left:7.896000px;}
.xa1{left:17.856000px;}
.x7{left:29.274117px;}
.xab{left:45.336000px;}
.xa9{left:47.544000px;}
.x2{left:59.014071px;}
.xb7{left:60.648000px;}
.xa2{left:67.044000px;}
.xa4{left:70.128000px;}
.xb8{left:84.876000px;}
.xb4{left:88.537284px;}
.x97{left:91.059925px;}
.xa5{left:106.296000px;}
.xb5{left:110.166084px;}
.x2e{left:112.561500px;}
.x1{left:114.802500px;}
.x99{left:116.720725px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x9f{left:125.544000px;}
.x80{left:126.880800px;}
.xb2{left:129.024000px;}
.x8f{left:131.740800px;}
.x81{left:136.549500px;}
.x93{left:139.198500px;}
.x64{left:140.252700px;}
.x91{left:141.409500px;}
.x95{left:144.721500px;}
.x4{left:145.885500px;}
.x82{left:147.741000px;}
.x94{left:149.196000px;}
.x6b{left:151.793850px;}
.x6d{left:153.596100px;}
.x72{left:155.704800px;}
.x70{left:157.254600px;}
.x73{left:158.748000px;}
.x29{left:163.666500px;}
.xad{left:164.712000px;}
.xb3{left:171.645000px;}
.xc4{left:172.653000px;}
.x37{left:174.345000px;}
.x83{left:176.397450px;}
.x2a{left:178.312500px;}
.x7c{left:180.550050px;}
.x71{left:181.890750px;}
.x68{left:184.184400px;}
.x2b{left:185.568000px;}
.x8{left:186.784500px;}
.x38{left:189.289500px;}
.x39{left:190.591500px;}
.xac{left:192.298500px;}
.xa{left:193.680000px;}
.xd8{left:195.180000px;}
.xb{left:201.148500px;}
.x9{left:204.157500px;}
.x3a{left:205.536000px;}
.xc{left:208.471500px;}
.xc5{left:210.163500px;}
.x4f{left:212.436000px;}
.x2c{left:214.663500px;}
.x15{left:218.727000px;}
.xd2{left:221.349000px;}
.x50{left:222.894000px;}
.x5c{left:224.886000px;}
.x16{left:226.152000px;}
.x2d{left:229.606500px;}
.x79{left:231.138000px;}
.xb9{left:232.392000px;}
.x86{left:235.414500px;}
.x5d{left:239.530500px;}
.x17{left:240.798000px;}
.x5e{left:243.189000px;}
.x3d{left:244.332000px;}
.x6f{left:248.486250px;}
.xef{left:251.667000px;}
.xd3{left:254.262000px;}
.x53{left:255.370500px;}
.x5f{left:257.835000px;}
.xb6{left:264.654900px;}
.x9b{left:268.188000px;}
.x54{left:269.382000px;}
.x9a{left:271.752000px;}
.xa3{left:278.698500px;}
.x58{left:282.601500px;}
.xa6{left:284.400000px;}
.x78{left:292.185000px;}
.x89{left:295.270350px;}
.x4c{left:298.957500px;}
.x59{left:302.655000px;}
.x85{left:304.203000px;}
.x90{left:305.854350px;}
.x6a{left:309.288900px;}
.xd1{left:310.675500px;}
.x4d{left:313.602000px;}
.x75{left:319.992000px;}
.x76{left:322.285500px;}
.xcc{left:326.275500px;}
.x22{left:328.944000px;}
.x67{left:331.422150px;}
.x77{left:332.958000px;}
.x69{left:334.732350px;}
.x6c{left:335.887950px;}
.xae{left:336.936000px;}
.xa7{left:338.280000px;}
.x74{left:339.642000px;}
.xcd{left:341.220000px;}
.x23{left:343.590000px;}
.x5a{left:350.080500px;}
.x96{left:353.255125px;}
.x40{left:355.279500px;}
.x9d{left:358.728000px;}
.xe0{left:362.953500px;}
.x9c{left:367.404000px;}
.x41{left:370.224000px;}
.xbb{left:372.900000px;}
.xaf{left:375.924000px;}
.xe1{left:377.898000px;}
.xec{left:379.938000px;}
.x5b{left:385.521000px;}
.xd9{left:388.050000px;}
.xa8{left:393.924000px;}
.xba{left:395.196000px;}
.x2f{left:401.151000px;}
.x35{left:402.682500px;}
.xda{left:406.354500px;}
.x63{left:412.023000px;}
.x1a{left:414.903000px;}
.x30{left:416.095500px;}
.x1e{left:417.297000px;}
.x8a{left:419.922600px;}
.x36{left:421.344000px;}
.x6e{left:422.651100px;}
.x33{left:427.512000px;}
.x1b{left:429.547500px;}
.x1f{left:431.943000px;}
.x1c{left:436.965000px;}
.xbc{left:438.016500px;}
.x20{left:439.411500px;}
.x34{left:442.456500px;}
.x1d{left:451.611000px;}
.x3f{left:452.904000px;}
.x21{left:454.056000px;}
.xbd{left:456.637500px;}
.xd4{left:458.629500px;}
.xb0{left:462.588000px;}
.x8b{left:468.571200px;}
.x9e{left:471.516000px;}
.x7d{left:473.431200px;}
.x66{left:475.912650px;}
.xbe{left:490.201500px;}
.xbf{left:493.878000px;}
.x46{left:501.021000px;}
.xdb{left:505.678500px;}
.xc0{left:508.821000px;}
.xdd{left:509.928000px;}
.xc1{left:512.497500px;}
.x8c{left:513.704400px;}
.x47{left:515.665500px;}
.x55{left:519.075000px;}
.xdc{left:520.324500px;}
.xde{left:524.872500px;}
.xc2{left:527.442000px;}
.xc3{left:531.118500px;}
.xdf{left:532.381500px;}
.xe2{left:541.017000px;}
.x3b{left:546.804000px;}
.x61{left:550.633500px;}
.xe3{left:555.961500px;}
.x65{left:558.142500px;}
.x24{left:559.716000px;}
.x3c{left:561.747000px;}
.x92{left:564.186300px;}
.x8d{left:568.693950px;}
.x25{left:574.362000px;}
.x7e{left:583.272600px;}
.x45{left:589.834500px;}
.x4e{left:599.566500px;}
.x18{left:603.769500px;}
.xd5{left:605.368500px;}
.x11{left:607.482000px;}
.xd6{left:609.180000px;}
.x19{left:613.774500px;}
.x87{left:617.206200px;}
.x98{left:620.315125px;}
.x12{left:622.126500px;}
.xd7{left:624.123000px;}
.x13{left:625.785000px;}
.x7a{left:631.784850px;}
.xed{left:636.895500px;}
.x14{left:640.431000px;}
.x48{left:642.498000px;}
.xeb{left:644.356500px;}
.xce{left:646.531500px;}
.x31{left:648.288000px;}
.x62{left:651.510000px;}
.x56{left:653.713500px;}
.x60{left:655.605000px;}
.x49{left:657.144000px;}
.x4a{left:660.658500px;}
.x32{left:663.231000px;}
.xcf{left:664.834500px;}
.x8e{left:666.664800px;}
.x57{left:669.298500px;}
.x88{left:670.714800px;}
.x51{left:672.225000px;}
.x4b{left:675.303000px;}
.xe4{left:676.555500px;}
.x84{left:678.675750px;}
.x7b{left:680.433450px;}
.x52{left:683.290500px;}
.xd0{left:686.949000px;}
.xc6{left:693.009000px;}
.xe9{left:695.235000px;}
.xc7{left:696.820500px;}
.xe5{left:698.971500px;}
.x6{left:701.339982px;}
.xe8{left:703.332000px;}
.xc8{left:711.765000px;}
.xe6{left:714.631500px;}
.xc9{left:719.385000px;}
.xea{left:722.134500px;}
.xee{left:728.502000px;}
.x7f{left:732.184350px;}
.x42{left:734.488500px;}
.x26{left:735.864000px;}
.xca{left:738.141000px;}
.x43{left:749.133000px;}
.x27{left:750.510000px;}
.xcb{left:753.084000px;}
.xd{left:754.734000px;}
.x44{left:756.601500px;}
.x28{left:757.686000px;}
.xe{left:762.057000px;}
.xf{left:765.715500px;}
.x3e{left:771.838500px;}
.x10{left:773.037000px;}
.xe7{left:776.362500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v17{vertical-align:-15.429333pt;}
.vb{vertical-align:-13.045333pt;}
.v3{vertical-align:-9.946667pt;}
.va{vertical-align:-7.632000pt;}
.vc{vertical-align:-6.058667pt;}
.v15{vertical-align:-1.291200pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:1.291200pt;}
.ve{vertical-align:6.010667pt;}
.vd{vertical-align:11.418667pt;}
.vf{vertical-align:12.992000pt;}
.v16{vertical-align:14.332800pt;}
.v13{vertical-align:15.619200pt;}
.v1{vertical-align:19.290667pt;}
.v12{vertical-align:23.851200pt;}
.v18{vertical-align:26.299200pt;}
.v7{vertical-align:27.488000pt;}
.v8{vertical-align:28.485333pt;}
.v11{vertical-align:29.462400pt;}
.v5{vertical-align:35.968000pt;}
.v10{vertical-align:47.200000pt;}
.v9{vertical-align:55.258667pt;}
.v4{vertical-align:65.488000pt;}
.v6{vertical-align:101.941333pt;}
.ls58{letter-spacing:-0.324267pt;}
.ls56{letter-spacing:-0.272213pt;}
.ls57{letter-spacing:-0.169813pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.000137pt;}
.ls4b{letter-spacing:0.000387pt;}
.ls80{letter-spacing:0.000397pt;}
.ls4a{letter-spacing:0.000956pt;}
.lse{letter-spacing:0.000993pt;}
.ls24{letter-spacing:0.001067pt;}
.lsf{letter-spacing:0.001349pt;}
.ls60{letter-spacing:0.001574pt;}
.lsa{letter-spacing:0.001759pt;}
.ls36{letter-spacing:0.001792pt;}
.ls79{letter-spacing:0.001928pt;}
.ls65{letter-spacing:0.002078pt;}
.ls7e{letter-spacing:0.002287pt;}
.ls38{letter-spacing:0.002296pt;}
.ls7f{letter-spacing:0.002394pt;}
.ls62{letter-spacing:0.002505pt;}
.ls6b{letter-spacing:0.002517pt;}
.ls71{letter-spacing:0.002525pt;}
.ls46{letter-spacing:0.002551pt;}
.ls76{letter-spacing:0.002692pt;}
.ls5c{letter-spacing:0.002809pt;}
.ls9{letter-spacing:0.002868pt;}
.ls77{letter-spacing:0.003026pt;}
.ls5b{letter-spacing:0.003065pt;}
.ls5{letter-spacing:0.003100pt;}
.ls8{letter-spacing:0.003106pt;}
.lsc{letter-spacing:0.003325pt;}
.ls1b{letter-spacing:0.003733pt;}
.ls66{letter-spacing:0.004267pt;}
.lsb{letter-spacing:0.004401pt;}
.ls63{letter-spacing:0.007543pt;}
.ls64{letter-spacing:0.012969pt;}
.ls2a{letter-spacing:0.451918pt;}
.ls21{letter-spacing:0.457251pt;}
.ls68{letter-spacing:0.466280pt;}
.ls83{letter-spacing:0.469656pt;}
.ls7b{letter-spacing:0.471276pt;}
.ls69{letter-spacing:0.471509pt;}
.ls75{letter-spacing:0.474702pt;}
.ls78{letter-spacing:0.476425pt;}
.ls7d{letter-spacing:0.477919pt;}
.ls6e{letter-spacing:0.478097pt;}
.ls7c{letter-spacing:0.483301pt;}
.ls73{letter-spacing:0.484993pt;}
.ls81{letter-spacing:0.486878pt;}
.ls26{letter-spacing:0.487835pt;}
.ls74{letter-spacing:0.490419pt;}
.ls20{letter-spacing:0.506211pt;}
.ls55{letter-spacing:0.512000pt;}
.ls7{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls1a{letter-spacing:2.651733pt;}
.ls27{letter-spacing:2.656196pt;}
.ls18{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls2c{letter-spacing:3.157530pt;}
.ls22{letter-spacing:3.158400pt;}
.ls28{letter-spacing:3.162863pt;}
.ls2b{letter-spacing:3.163733pt;}
.ls53{letter-spacing:3.584000pt;}
.ls13{letter-spacing:6.377874pt;}
.ls33{letter-spacing:8.322831pt;}
.ls32{letter-spacing:8.322863pt;}
.ls50{letter-spacing:9.900974pt;}
.ls4f{letter-spacing:9.905872pt;}
.ls72{letter-spacing:10.314188pt;}
.ls4{letter-spacing:10.626533pt;}
.ls39{letter-spacing:10.759096pt;}
.ls48{letter-spacing:10.763896pt;}
.ls1c{letter-spacing:10.968429pt;}
.ls29{letter-spacing:10.995733pt;}
.ls2f{letter-spacing:11.114668pt;}
.ls2e{letter-spacing:11.120110pt;}
.ls7a{letter-spacing:11.625752pt;}
.ls67{letter-spacing:11.696062pt;}
.ls5f{letter-spacing:11.954133pt;}
.ls5e{letter-spacing:11.959467pt;}
.ls70{letter-spacing:11.997741pt;}
.ls6a{letter-spacing:12.004680pt;}
.ls85{letter-spacing:12.161213pt;}
.ls5d{letter-spacing:12.169715pt;}
.ls6d{letter-spacing:12.185976pt;}
.ls84{letter-spacing:12.296428pt;}
.ls30{letter-spacing:12.400742pt;}
.ls6f{letter-spacing:12.435430pt;}
.ls45{letter-spacing:12.964663pt;}
.ls44{letter-spacing:13.017797pt;}
.ls61{letter-spacing:13.121924pt;}
.ls42{letter-spacing:13.281067pt;}
.ls52{letter-spacing:13.283467pt;}
.ls43{letter-spacing:13.286400pt;}
.ls82{letter-spacing:13.289244pt;}
.ls31{letter-spacing:13.442868pt;}
.ls51{letter-spacing:13.496002pt;}
.ls16{letter-spacing:13.649067pt;}
.ls19{letter-spacing:13.654400pt;}
.ls25{letter-spacing:13.767835pt;}
.ls23{letter-spacing:13.773169pt;}
.lsd{letter-spacing:13.992724pt;}
.ls59{letter-spacing:14.611813pt;}
.ls4c{letter-spacing:15.219456pt;}
.ls35{letter-spacing:15.297888pt;}
.ls34{letter-spacing:15.304962pt;}
.ls15{letter-spacing:15.400429pt;}
.ls14{letter-spacing:15.421393pt;}
.ls1e{letter-spacing:15.423207pt;}
.ls6c{letter-spacing:16.738133pt;}
.ls5a{letter-spacing:18.012381pt;}
.ls11{letter-spacing:23.614400pt;}
.ls12{letter-spacing:23.616110pt;}
.ls17{letter-spacing:24.253762pt;}
.ls10{letter-spacing:61.048060pt;}
.ls1{letter-spacing:62.432533pt;}
.ls2{letter-spacing:64.314231pt;}
.ls49{letter-spacing:66.536640pt;}
.ls1f{letter-spacing:87.496429pt;}
.ls4e{letter-spacing:93.301440pt;}
.ls3d{letter-spacing:109.459680pt;}
.ls3c{letter-spacing:109.464480pt;}
.ls47{letter-spacing:110.581440pt;}
.ls40{letter-spacing:114.845280pt;}
.ls41{letter-spacing:120.221280pt;}
.ls3e{letter-spacing:136.358880pt;}
.ls54{letter-spacing:223.854933pt;}
.ls3a{letter-spacing:262.442296pt;}
.ls3f{letter-spacing:290.846880pt;}
.ls37{letter-spacing:293.567109pt;}
.ls3b{letter-spacing:296.352480pt;}
.ls1d{letter-spacing:537.319087pt;}
.ls2d{letter-spacing:797.363918pt;}
.ws7e{word-spacing:-304.326789pt;}
.wsbf{word-spacing:-38.912000pt;}
.ws60{word-spacing:-36.981171pt;}
.ws61{word-spacing:-28.160949pt;}
.ws62{word-spacing:-28.105779pt;}
.ws28{word-spacing:-15.461955pt;}
.ws63{word-spacing:-14.317513pt;}
.ws8f{word-spacing:-13.915853pt;}
.ws16{word-spacing:-13.283467pt;}
.ws9f{word-spacing:-12.524268pt;}
.ws8e{word-spacing:-11.955200pt;}
.ws84{word-spacing:-10.759680pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.wsbe{word-spacing:-9.728000pt;}
.wsc3{word-spacing:-8.794112pt;}
.ws8c{word-spacing:-4.091308pt;}
.ws33{word-spacing:-3.931906pt;}
.ws1b{word-spacing:-3.772505pt;}
.ws67{word-spacing:-3.719371pt;}
.ws36{word-spacing:-3.613103pt;}
.ws20{word-spacing:-3.453701pt;}
.ws55{word-spacing:-3.400567pt;}
.ws53{word-spacing:-3.347434pt;}
.ws76{word-spacing:-3.294300pt;}
.ws32{word-spacing:-3.241166pt;}
.wsc7{word-spacing:-3.156173pt;}
.ws153{word-spacing:-3.108352pt;}
.wsdd{word-spacing:-3.081764pt;}
.wsc8{word-spacing:-2.964890pt;}
.wse4{word-spacing:-2.869229pt;}
.ws77{word-spacing:-2.656693pt;}
.ws6b{word-spacing:-2.603559pt;}
.wsd9{word-spacing:-2.497292pt;}
.wse5{word-spacing:-2.486682pt;}
.ws7{word-spacing:-2.444158pt;}
.wsce{word-spacing:-2.391024pt;}
.wsdb{word-spacing:-2.337890pt;}
.wse6{word-spacing:-2.295398pt;}
.ws4d{word-spacing:-2.284756pt;}
.ws144{word-spacing:-2.199757pt;}
.ws70{word-spacing:-2.178489pt;}
.ws71{word-spacing:-2.165480pt;}
.ws5e{word-spacing:-2.125355pt;}
.ws11d{word-spacing:-2.104115pt;}
.wsaa{word-spacing:-2.072221pt;}
.ws8{word-spacing:-1.859685pt;}
.ws150{word-spacing:-1.769370pt;}
.wsa9{word-spacing:-1.700284pt;}
.ws6{word-spacing:-1.696326pt;}
.wsab{word-spacing:-1.647150pt;}
.wse9{word-spacing:-1.625907pt;}
.wsd5{word-spacing:-1.487748pt;}
.ws65{word-spacing:-1.434614pt;}
.wseb{word-spacing:-1.386803pt;}
.ws52{word-spacing:-1.381481pt;}
.ws39{word-spacing:-1.328347pt;}
.ws3c{word-spacing:-1.275213pt;}
.ws5{word-spacing:-1.175671pt;}
.ws2f{word-spacing:-1.168945pt;}
.ws64{word-spacing:-1.115811pt;}
.wscc{word-spacing:-1.062677pt;}
.wsd7{word-spacing:-1.009543pt;}
.ws10e{word-spacing:-0.956416pt;}
.ws21{word-spacing:-0.956410pt;}
.ws15a{word-spacing:-0.908595pt;}
.wsa{word-spacing:-0.903276pt;}
.ws72{word-spacing:-0.891021pt;}
.ws141{word-spacing:-0.860774pt;}
.wsae{word-spacing:-0.856915pt;}
.wsaf{word-spacing:-0.853153pt;}
.ws74{word-spacing:-0.850142pt;}
.ws142{word-spacing:-0.812954pt;}
.ws12{word-spacing:-0.797008pt;}
.wsb{word-spacing:-0.743874pt;}
.wsc{word-spacing:-0.690740pt;}
.wse{word-spacing:-0.637606pt;}
.ws102{word-spacing:-0.621670pt;}
.ws23{word-spacing:-0.584473pt;}
.ws9{word-spacing:-0.531339pt;}
.ws3{word-spacing:-0.526029pt;}
.ws134{word-spacing:-0.478208pt;}
.ws24{word-spacing:-0.478205pt;}
.ws3a{word-spacing:-0.425071pt;}
.ws121{word-spacing:-0.382566pt;}
.ws47{word-spacing:-0.371937pt;}
.ws135{word-spacing:-0.334746pt;}
.ws29{word-spacing:-0.318803pt;}
.wsf3{word-spacing:-0.286925pt;}
.ws26{word-spacing:-0.265669pt;}
.ws107{word-spacing:-0.239104pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws100{word-spacing:-0.191283pt;}
.ws1a{word-spacing:-0.159402pt;}
.wsfc{word-spacing:-0.143462pt;}
.ws57{word-spacing:-0.106268pt;}
.wsef{word-spacing:-0.095642pt;}
.wsed{word-spacing:-0.054875pt;}
.ws4e{word-spacing:-0.053134pt;}
.ws93{word-spacing:-0.047821pt;}
.wsa0{word-spacing:-0.043039pt;}
.wsc0{word-spacing:-0.038912pt;}
.wsfd{word-spacing:-0.024405pt;}
.ws9b{word-spacing:-0.016189pt;}
.ws145{word-spacing:-0.008883pt;}
.ws14b{word-spacing:-0.008806pt;}
.ws10c{word-spacing:-0.007970pt;}
.ws9c{word-spacing:-0.005676pt;}
.ws14e{word-spacing:-0.005513pt;}
.ws14f{word-spacing:-0.005026pt;}
.ws98{word-spacing:-0.003786pt;}
.ws97{word-spacing:-0.003594pt;}
.ws155{word-spacing:-0.003473pt;}
.ws10f{word-spacing:-0.003081pt;}
.ws105{word-spacing:-0.002935pt;}
.ws88{word-spacing:-0.001920pt;}
.ws8b{word-spacing:-0.000960pt;}
.ws12f{word-spacing:-0.000418pt;}
.ws82{word-spacing:-0.000115pt;}
.ws0{word-spacing:0.000000pt;}
.wsa1{word-spacing:0.000100pt;}
.ws89{word-spacing:0.002880pt;}
.ws110{word-spacing:0.047821pt;}
.ws34{word-spacing:0.053134pt;}
.wsf7{word-spacing:0.095642pt;}
.ws25{word-spacing:0.106268pt;}
.ws115{word-spacing:0.143462pt;}
.ws2d{word-spacing:0.159402pt;}
.wsec{word-spacing:0.191283pt;}
.ws15{word-spacing:0.212535pt;}
.wsf9{word-spacing:0.239104pt;}
.ws31{word-spacing:0.265669pt;}
.wsfe{word-spacing:0.286925pt;}
.ws37{word-spacing:0.318803pt;}
.wsff{word-spacing:0.334746pt;}
.wse2{word-spacing:0.371937pt;}
.ws131{word-spacing:0.382566pt;}
.ws2c{word-spacing:0.425071pt;}
.ws14d{word-spacing:0.430387pt;}
.wsb7{word-spacing:0.478205pt;}
.ws112{word-spacing:0.478208pt;}
.ws12d{word-spacing:0.526029pt;}
.wsd0{word-spacing:0.531339pt;}
.wsbc{word-spacing:0.584473pt;}
.ws104{word-spacing:0.621670pt;}
.ws5d{word-spacing:0.637606pt;}
.ws5f{word-spacing:0.690740pt;}
.ws5a{word-spacing:0.743874pt;}
.ws158{word-spacing:0.765133pt;}
.ws56{word-spacing:0.797008pt;}
.ws157{word-spacing:0.812954pt;}
.wsd4{word-spacing:0.850142pt;}
.wse8{word-spacing:0.860774pt;}
.ws6e{word-spacing:0.903276pt;}
.wsf4{word-spacing:0.908595pt;}
.wsd1{word-spacing:0.956410pt;}
.ws12e{word-spacing:1.004237pt;}
.wse1{word-spacing:1.009543pt;}
.wsb9{word-spacing:1.062677pt;}
.ws119{word-spacing:1.099878pt;}
.ws7a{word-spacing:1.115811pt;}
.wsf5{word-spacing:1.147699pt;}
.ws12a{word-spacing:1.193796pt;}
.ws154{word-spacing:1.195520pt;}
.ws19{word-spacing:1.222079pt;}
.ws42{word-spacing:1.275213pt;}
.wscd{word-spacing:1.328347pt;}
.ws46{word-spacing:1.381481pt;}
.ws10b{word-spacing:1.386803pt;}
.ws1f{word-spacing:1.434614pt;}
.ws114{word-spacing:1.434624pt;}
.ws14a{word-spacing:1.482445pt;}
.wsdc{word-spacing:1.487748pt;}
.wsd2{word-spacing:1.594016pt;}
.ws149{word-spacing:1.625907pt;}
.wsd{word-spacing:1.647150pt;}
.ws108{word-spacing:1.673728pt;}
.wsb8{word-spacing:1.700284pt;}
.ws109{word-spacing:1.721549pt;}
.ws54{word-spacing:1.753418pt;}
.ws38{word-spacing:1.806551pt;}
.ws4c{word-spacing:1.859685pt;}
.ws41{word-spacing:1.912819pt;}
.wsa7{word-spacing:1.929648pt;}
.ws127{word-spacing:1.960653pt;}
.ws128{word-spacing:2.008474pt;}
.ws3f{word-spacing:2.019087pt;}
.ws30{word-spacing:2.072221pt;}
.ws2b{word-spacing:2.125355pt;}
.ws40{word-spacing:2.178489pt;}
.ws152{word-spacing:2.199757pt;}
.wsd3{word-spacing:2.231622pt;}
.ws18{word-spacing:2.337890pt;}
.ws5c{word-spacing:2.444158pt;}
.ws14{word-spacing:2.497292pt;}
.ws15c{word-spacing:2.534502pt;}
.ws143{word-spacing:2.582323pt;}
.ws6f{word-spacing:2.603559pt;}
.ws120{word-spacing:2.630144pt;}
.ws73{word-spacing:2.656693pt;}
.ws11e{word-spacing:2.677965pt;}
.ws69{word-spacing:2.709827pt;}
.ws13a{word-spacing:2.773606pt;}
.ws5b{word-spacing:2.869229pt;}
.wsdf{word-spacing:2.922363pt;}
.ws156{word-spacing:3.060531pt;}
.wsda{word-spacing:3.081764pt;}
.ws14c{word-spacing:3.108352pt;}
.ws79{word-spacing:3.134898pt;}
.ws132{word-spacing:3.156173pt;}
.ws27{word-spacing:3.188032pt;}
.ws133{word-spacing:3.203994pt;}
.ws43{word-spacing:3.241166pt;}
.ws123{word-spacing:3.251814pt;}
.ws2e{word-spacing:3.294300pt;}
.ws3e{word-spacing:3.347434pt;}
.wsd6{word-spacing:3.400567pt;}
.wsf{word-spacing:3.453701pt;}
.ws51{word-spacing:3.506835pt;}
.ws148{word-spacing:3.586560pt;}
.ws7b{word-spacing:3.613103pt;}
.ws137{word-spacing:3.634381pt;}
.ws68{word-spacing:3.666237pt;}
.wse3{word-spacing:3.772505pt;}
.ws138{word-spacing:3.777843pt;}
.ws111{word-spacing:3.921306pt;}
.ws3d{word-spacing:3.931906pt;}
.wsde{word-spacing:3.985040pt;}
.ws11{word-spacing:4.038174pt;}
.wsf6{word-spacing:4.160410pt;}
.wsbb{word-spacing:4.197575pt;}
.ws1c{word-spacing:4.250720pt;}
.ws10d{word-spacing:4.256051pt;}
.wsa8{word-spacing:4.303843pt;}
.ws139{word-spacing:4.303872pt;}
.wsd8{word-spacing:4.356977pt;}
.ws11b{word-spacing:4.399514pt;}
.ws48{word-spacing:4.410111pt;}
.ws106{word-spacing:4.495155pt;}
.wsca{word-spacing:4.516379pt;}
.ws15d{word-spacing:4.542976pt;}
.wsbd{word-spacing:4.569513pt;}
.ws124{word-spacing:4.581017pt;}
.ws126{word-spacing:4.590797pt;}
.ws4b{word-spacing:4.622646pt;}
.ws125{word-spacing:4.638618pt;}
.wscf{word-spacing:4.728914pt;}
.wsf8{word-spacing:4.776354pt;}
.wsf2{word-spacing:4.777250pt;}
.ws10a{word-spacing:4.778283pt;}
.wsfb{word-spacing:4.779435pt;}
.wsf1{word-spacing:4.779819pt;}
.ws118{word-spacing:4.781346pt;}
.wscb{word-spacing:4.782048pt;}
.ws4{word-spacing:4.782080pt;}
.ws130{word-spacing:4.782857pt;}
.ws122{word-spacing:4.783300pt;}
.ws129{word-spacing:4.783582pt;}
.wsfa{word-spacing:4.784188pt;}
.ws113{word-spacing:4.829901pt;}
.ws6d{word-spacing:4.888316pt;}
.ws12c{word-spacing:4.925542pt;}
.ws4f{word-spacing:4.941450pt;}
.ws146{word-spacing:4.973363pt;}
.ws13d{word-spacing:5.069005pt;}
.wsee{word-spacing:5.116826pt;}
.ws49{word-spacing:5.207119pt;}
.ws10{word-spacing:5.313387pt;}
.ws50{word-spacing:5.366521pt;}
.ws116{word-spacing:5.547213pt;}
.ws6a{word-spacing:5.579056pt;}
.ws117{word-spacing:5.595034pt;}
.ws15e{word-spacing:5.786317pt;}
.ws15b{word-spacing:5.929779pt;}
.ws136{word-spacing:5.977600pt;}
.ws22{word-spacing:6.163529pt;}
.ws58{word-spacing:6.269796pt;}
.ws13c{word-spacing:6.360166pt;}
.ws75{word-spacing:6.429198pt;}
.ws6c{word-spacing:6.588599pt;}
.ws78{word-spacing:6.694867pt;}
.ws11c{word-spacing:6.742733pt;}
.ws4a{word-spacing:6.748001pt;}
.ws13b{word-spacing:6.886195pt;}
.ws12b{word-spacing:7.125299pt;}
.ws140{word-spacing:7.412224pt;}
.ws59{word-spacing:7.438741pt;}
.ws159{word-spacing:7.555686pt;}
.wsea{word-spacing:7.794790pt;}
.wse0{word-spacing:7.970080pt;}
.ws13{word-spacing:8.182615pt;}
.ws151{word-spacing:8.225178pt;}
.ws35{word-spacing:8.288883pt;}
.ws3b{word-spacing:8.395151pt;}
.wsba{word-spacing:8.554553pt;}
.wsf0{word-spacing:8.607744pt;}
.ws45{word-spacing:8.820222pt;}
.ws17{word-spacing:8.926490pt;}
.wse7{word-spacing:9.181594pt;}
.ws103{word-spacing:9.229414pt;}
.ws11f{word-spacing:9.468518pt;}
.ws147{word-spacing:9.564160pt;}
.ws11a{word-spacing:9.755443pt;}
.ws13e{word-spacing:12.385587pt;}
.ws66{word-spacing:13.124065pt;}
.ws44{word-spacing:13.708538pt;}
.ws101{word-spacing:17.119846pt;}
.wsc6{word-spacing:18.650112pt;}
.wsc5{word-spacing:19.223962pt;}
.ws13f{word-spacing:27.114394pt;}
.wsa4{word-spacing:41.009554pt;}
.ws9e{word-spacing:41.032391pt;}
.wsb0{word-spacing:46.869166pt;}
.ws9d{word-spacing:48.645312pt;}
.ws2{word-spacing:48.878387pt;}
.wsb5{word-spacing:52.867999pt;}
.wsb3{word-spacing:55.476910pt;}
.wsc2{word-spacing:58.135893pt;}
.ws99{word-spacing:59.135201pt;}
.wsa3{word-spacing:59.404992pt;}
.wsc9{word-spacing:60.703915pt;}
.wsa6{word-spacing:65.634048pt;}
.wsac{word-spacing:67.915100pt;}
.ws96{word-spacing:69.851843pt;}
.ws9a{word-spacing:76.393728pt;}
.wsb1{word-spacing:79.277322pt;}
.wsad{word-spacing:93.695293pt;}
.wsb4{word-spacing:111.688719pt;}
.ws90{word-spacing:157.999923pt;}
.ws92{word-spacing:173.797333pt;}
.ws8d{word-spacing:177.893376pt;}
.ws87{word-spacing:179.987927pt;}
.wsc4{word-spacing:188.695893pt;}
.ws8a{word-spacing:190.747607pt;}
.ws85{word-spacing:192.555233pt;}
.wsc1{word-spacing:193.517227pt;}
.ws94{word-spacing:193.865523pt;}
.wsb2{word-spacing:200.196365pt;}
.ws95{word-spacing:205.772902pt;}
.wsa2{word-spacing:214.881838pt;}
.ws81{word-spacing:221.089905pt;}
.ws86{word-spacing:223.026647pt;}
.ws80{word-spacing:231.849585pt;}
.ws83{word-spacing:242.609265pt;}
.ws7f{word-spacing:317.868396pt;}
.ws91{word-spacing:357.378697pt;}
.ws1e{word-spacing:382.947365pt;}
.ws7d{word-spacing:587.564605pt;}
.wsb6{word-spacing:665.887834pt;}
.wsa5{word-spacing:700.443034pt;}
.ws7c{word-spacing:1189.805414pt;}
._23{margin-left:-293.481032pt;}
._2{margin-left:-10.616218pt;}
._17{margin-left:-6.631809pt;}
._e{margin-left:-5.591739pt;}
._5{margin-left:-4.495155pt;}
._6{margin-left:-3.538739pt;}
._8{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._9{width:0.969929pt;}
._3{width:2.665248pt;}
._1e{width:3.759430pt;}
._63{width:4.722842pt;}
._61{width:5.715928pt;}
._62{width:6.899306pt;}
._13{width:7.828570pt;}
._0{width:9.035708pt;}
._14{width:10.626800pt;}
._a{width:12.347097pt;}
._b{width:13.683783pt;}
._71{width:14.633165pt;}
._1d{width:15.563679pt;}
._7{width:16.737280pt;}
._c{width:17.936850pt;}
._f{width:19.319498pt;}
._16{width:20.806881pt;}
._1a{width:22.096934pt;}
._10{width:23.292272pt;}
._11{width:24.431664pt;}
._d{width:26.004076pt;}
._6f{width:26.980505pt;}
._12{width:28.233722pt;}
._18{width:29.311729pt;}
._21{width:30.730612pt;}
._1f{width:31.709619pt;}
._1b{width:33.197167pt;}
._1c{width:35.109986pt;}
._73{width:36.391629pt;}
._19{width:39.242928pt;}
._20{width:40.202328pt;}
._72{width:45.621043pt;}
._4{width:48.365045pt;}
._70{width:54.993920pt;}
._66{width:56.623360pt;}
._46{width:57.628846pt;}
._6d{width:59.554236pt;}
._45{width:65.634048pt;}
._4e{width:69.316250pt;}
._57{width:70.430474pt;}
._48{width:76.393728pt;}
._68{width:77.650261pt;}
._6c{width:78.924937pt;}
._67{width:80.013670pt;}
._52{width:81.955287pt;}
._4f{width:82.935613pt;}
._6e{width:84.664337pt;}
._42{width:86.378711pt;}
._49{width:87.928105pt;}
._40{width:91.629435pt;}
._43{width:93.695293pt;}
._3e{width:95.933307pt;}
._6b{width:96.856802pt;}
._54{width:97.870049pt;}
._3f{width:99.213814pt;}
._56{width:101.402988pt;}
._65{width:103.024970pt;}
._58{width:104.498012pt;}
._53{width:108.887962pt;}
._5a{width:113.027226pt;}
._3d{width:115.300731pt;}
._4b{width:127.696566pt;}
._59{width:140.650537pt;}
._38{width:145.726324pt;}
._4a{width:155.757128pt;}
._33{width:158.232038pt;}
._2a{width:161.223045pt;}
._47{width:168.199082pt;}
._2b{width:171.982725pt;}
._55{width:182.001147pt;}
._6a{width:187.276459pt;}
._34{width:190.004905pt;}
._35{width:191.533348pt;}
._5e{width:196.600873pt;}
._41{width:199.281147pt;}
._69{width:206.860629pt;}
._64{width:211.639296pt;}
._50{width:213.902438pt;}
._39{width:217.364664pt;}
._24{width:218.981007pt;}
._2e{width:221.738857pt;}
._31{width:225.121221pt;}
._25{width:231.849585pt;}
._5d{width:238.477548pt;}
._27{width:239.897825pt;}
._28{width:242.652303pt;}
._26{width:253.411983pt;}
._30{width:256.314706pt;}
._44{width:257.371546pt;}
._29{width:262.450115pt;}
._2c{width:264.042547pt;}
._2f{width:268.733768pt;}
._2d{width:274.886385pt;}
._37{width:322.599117pt;}
._5c{width:342.200863pt;}
._3a{width:346.509517pt;}
._4d{width:359.459389pt;}
._3b{width:385.338940pt;}
._36{width:403.412974pt;}
._5b{width:431.377091pt;}
._4c{width:448.635617pt;}
._5f{width:455.177503pt;}
._32{width:546.763899pt;}
._51{width:749.131960pt;}
._3c{width:770.174600pt;}
._60{width:1347.152171pt;}
._15{width:1368.405771pt;}
._22{width:2683.689626pt;}
.fsc{font-size:31.880533pt;}
.fse{font-size:33.474240pt;}
.fs11{font-size:33.792000pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fs10{font-size:38.912000pt;}
.fs12{font-size:39.014400pt;}
.fs4{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs9{font-size:42.507200pt;}
.fsf{font-size:43.008000pt;}
.fsd{font-size:43.038720pt;}
.fs6{font-size:47.820800pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fsa{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.y1f0{bottom:-639.605333pt;}
.y178{bottom:-514.781867pt;}
.y177{bottom:-500.445867pt;}
.y18e{bottom:-377.282133pt;}
.y18d{bottom:-360.364800pt;}
.y19b{bottom:-350.508800pt;}
.y18c{bottom:-342.956800pt;}
.y1a6{bottom:-333.899733pt;}
.y198{bottom:-329.228800pt;}
.y18b{bottom:-325.548800pt;}
.y1a5{bottom:-319.563733pt;}
.y18a{bottom:-308.140800pt;}
.y196{bottom:-297.570133pt;}
.y199{bottom:-297.026133pt;}
.y189{bottom:-290.732800pt;}
.y188{bottom:-268.428800pt;}
.y197{bottom:-258.114133pt;}
.y19a{bottom:-257.602133pt;}
.y187{bottom:-241.548800pt;}
.y186{bottom:-214.924800pt;}
.y185{bottom:-201.100800pt;}
.y1bc{bottom:-196.400000pt;}
.y184{bottom:-180.599467pt;}
.y1bb{bottom:-179.482667pt;}
.y1c3{bottom:-169.626667pt;}
.y1a1{bottom:-168.620800pt;}
.y1ba{bottom:-162.074667pt;}
.y1ce{bottom:-156.006400pt;}
.y19e{bottom:-153.996800pt;}
.y1c0{bottom:-148.346667pt;}
.y1b9{bottom:-144.666667pt;}
.y1cd{bottom:-141.670400pt;}
.y1b8{bottom:-127.258667pt;}
.y19c{bottom:-119.415467pt;}
.y19f{bottom:-118.882133pt;}
.y1be{bottom:-116.688000pt;}
.y1c1{bottom:-116.144000pt;}
.y1b7{bottom:-109.850667pt;}
.y1b6{bottom:-87.546667pt;}
.y1bf{bottom:-77.232000pt;}
.y1c2{bottom:-76.720000pt;}
.y19d{bottom:-74.103467pt;}
.y1a0{bottom:-73.591467pt;}
.y1b5{bottom:-60.666667pt;}
.y1f2{bottom:-50.649600pt;}
.y1b4{bottom:-34.042667pt;}
.y183{bottom:-26.210133pt;}
.y1f1{bottom:-23.748267pt;}
.y1b3{bottom:-20.218667pt;}
.y1e4{bottom:-18.506667pt;}
.y182{bottom:-12.386133pt;}
.y1e3{bottom:-1.589333pt;}
.y0{bottom:0.000000pt;}
.y1b2{bottom:0.282667pt;}
.y1ca{bottom:0.330667pt;}
.y195{bottom:2.538667pt;}
.y15{bottom:3.044747pt;}
.y181{bottom:5.021867pt;}
.y4{bottom:5.644850pt;}
.y1f8{bottom:6.129067pt;}
.y1eb{bottom:8.266667pt;}
.y14{bottom:12.578910pt;}
.y1c7{bottom:14.954667pt;}
.y1e2{bottom:15.818667pt;}
.y192{bottom:15.872000pt;}
.y3{bottom:18.051729pt;}
.y1f5{bottom:27.398400pt;}
.y1e8{bottom:29.546667pt;}
.y2{bottom:32.990462pt;}
.y1e1{bottom:33.226667pt;}
.y1c5{bottom:49.536000pt;}
.y190{bottom:50.026667pt;}
.y1c8{bottom:50.069333pt;}
.y1e0{bottom:50.634667pt;}
.y193{bottom:50.869333pt;}
.y34{bottom:56.693333pt;}
.y1f3{bottom:59.323733pt;}
.y1f6{bottom:59.867733pt;}
.y1e6{bottom:61.205333pt;}
.y1e9{bottom:61.749333pt;}
.y1df{bottom:68.042667pt;}
.y1de{bottom:90.346667pt;}
.y191{bottom:94.442667pt;}
.y1c6{bottom:94.848000pt;}
.y194{bottom:95.285333pt;}
.y1c9{bottom:95.360000pt;}
.y33{bottom:96.544000pt;}
.yeb{bottom:98.573333pt;}
.y95{bottom:98.576000pt;}
.y175{bottom:99.240000pt;}
.y1f4{bottom:99.313067pt;}
.y1f7{bottom:99.825067pt;}
.y1e7{bottom:100.661333pt;}
.y1ea{bottom:101.173333pt;}
.y213{bottom:103.650667pt;}
.y148{bottom:104.792000pt;}
.ybc{bottom:105.829333pt;}
.y269{bottom:105.990667pt;}
.y66{bottom:106.545333pt;}
.y21e{bottom:113.692000pt;}
.y29c{bottom:114.066667pt;}
.y32{bottom:114.556000pt;}
.yea{bottom:116.586667pt;}
.y94{bottom:116.588000pt;}
.y1dd{bottom:117.226667pt;}
.y174{bottom:117.253333pt;}
.y212{bottom:121.662667pt;}
.y147{bottom:122.805333pt;}
.y268{bottom:123.205333pt;}
.ybb{bottom:123.841333pt;}
.y65{bottom:124.558667pt;}
.y29b{bottom:131.281333pt;}
.y21d{bottom:131.705333pt;}
.y31{bottom:132.568000pt;}
.ye9{bottom:134.598667pt;}
.y93{bottom:134.601333pt;}
.y173{bottom:135.265333pt;}
.y211{bottom:139.674667pt;}
.y267{bottom:140.421333pt;}
.y146{bottom:140.817333pt;}
.yba{bottom:141.853333pt;}
.y64{bottom:142.570667pt;}
.y1dc{bottom:143.850667pt;}
.y1ef{bottom:144.219733pt;}
.y29a{bottom:148.497333pt;}
.y21c{bottom:149.717333pt;}
.y30{bottom:150.581333pt;}
.y180{bottom:150.995200pt;}
.ye8{bottom:152.610667pt;}
.y92{bottom:152.613333pt;}
.y172{bottom:153.278667pt;}
.y1b1{bottom:154.672000pt;}
.y266{bottom:157.636000pt;}
.y1db{bottom:157.674667pt;}
.y210{bottom:157.688000pt;}
.y145{bottom:158.830667pt;}
.yb9{bottom:159.866667pt;}
.y63{bottom:160.584000pt;}
.y17f{bottom:165.075200pt;}
.y299{bottom:165.713333pt;}
.y235{bottom:167.372000pt;}
.y21b{bottom:167.730667pt;}
.y1b0{bottom:168.496000pt;}
.y2f{bottom:168.593333pt;}
.ye7{bottom:170.624000pt;}
.y91{bottom:170.625333pt;}
.y171{bottom:171.290667pt;}
.y265{bottom:174.852000pt;}
.y20f{bottom:175.700000pt;}
.y144{bottom:176.842667pt;}
.yb8{bottom:177.878667pt;}
.y1da{bottom:178.176000pt;}
.y62{bottom:178.596000pt;}
.y17e{bottom:178.899200pt;}
.y234{bottom:180.881333pt;}
.y298{bottom:182.928000pt;}
.y21a{bottom:185.742667pt;}
.y1af{bottom:185.904000pt;}
.y2e{bottom:186.606667pt;}
.ye6{bottom:188.636000pt;}
.y90{bottom:188.638667pt;}
.y170{bottom:189.302667pt;}
.y264{bottom:192.068000pt;}
.y17d{bottom:192.723200pt;}
.y20e{bottom:193.713333pt;}
.y233{bottom:194.390667pt;}
.y143{bottom:194.854667pt;}
.yb7{bottom:195.892000pt;}
.y61{bottom:196.608000pt;}
.y297{bottom:200.144000pt;}
.y2d{bottom:202.132000pt;}
.y2c{bottom:204.618667pt;}
.y17c{bottom:206.579200pt;}
.ye5{bottom:206.649333pt;}
.y8f{bottom:206.650667pt;}
.y16f{bottom:207.316000pt;}
.y263{bottom:209.282667pt;}
.y20d{bottom:211.725333pt;}
.y142{bottom:212.868000pt;}
.y60{bottom:214.621333pt;}
.y232{bottom:215.869333pt;}
.y296{bottom:217.358667pt;}
.y1f9{bottom:217.565333pt;}
.y17b{bottom:220.403200pt;}
.yb6{bottom:221.874667pt;}
.y2b{bottom:222.630667pt;}
.ye4{bottom:224.661333pt;}
.y8e{bottom:224.664000pt;}
.y16e{bottom:225.328000pt;}
.y262{bottom:226.498667pt;}
.y231{bottom:229.378667pt;}
.y20c{bottom:229.737333pt;}
.y141{bottom:230.880000pt;}
.y5f{bottom:232.633333pt;}
.y17a{bottom:234.227200pt;}
.y295{bottom:234.574667pt;}
.y1ee{bottom:237.502667pt;}
.y10b{bottom:237.708000pt;}
.y2a{bottom:240.644000pt;}
.ye3{bottom:242.673333pt;}
.y8d{bottom:242.676000pt;}
.y16d{bottom:243.341333pt;}
.y261{bottom:243.713333pt;}
.y20b{bottom:247.750667pt;}
.y179{bottom:248.307200pt;}
.y140{bottom:248.893333pt;}
.y5e{bottom:250.646667pt;}
.y230{bottom:250.858667pt;}
.y294{bottom:251.790667pt;}
.yb5{bottom:252.825333pt;}
.y10a{bottom:255.720000pt;}
.y29{bottom:258.656000pt;}
.ye2{bottom:260.686667pt;}
.y8c{bottom:260.688000pt;}
.y260{bottom:260.929333pt;}
.y16c{bottom:261.353333pt;}
.y22f{bottom:264.368000pt;}
.y20a{bottom:265.762667pt;}
.y13f{bottom:266.905333pt;}
.y5d{bottom:268.658667pt;}
.y293{bottom:269.005333pt;}
.yb4{bottom:270.837333pt;}
.y109{bottom:273.733333pt;}
.y28{bottom:276.669333pt;}
.y25f{bottom:278.145333pt;}
.ye1{bottom:278.698667pt;}
.y8b{bottom:278.701333pt;}
.y16b{bottom:279.365333pt;}
.y209{bottom:283.776000pt;}
.y13e{bottom:284.917333pt;}
.y22e{bottom:285.848000pt;}
.y292{bottom:286.221333pt;}
.y5c{bottom:286.670667pt;}
.yb3{bottom:288.849333pt;}
.y108{bottom:291.745333pt;}
.y27{bottom:294.681333pt;}
.y25e{bottom:295.360000pt;}
.ye0{bottom:296.710667pt;}
.y8a{bottom:296.713333pt;}
.y16a{bottom:297.378667pt;}
.y22d{bottom:299.357333pt;}
.y208{bottom:301.788000pt;}
.y13d{bottom:302.930667pt;}
.y291{bottom:303.437333pt;}
.y5b{bottom:304.684000pt;}
.yb2{bottom:306.862667pt;}
.y107{bottom:307.272000pt;}
.y106{bottom:309.758667pt;}
.y25d{bottom:312.576000pt;}
.y26{bottom:312.693333pt;}
.y22c{bottom:312.866667pt;}
.ydf{bottom:314.724000pt;}
.y89{bottom:314.726667pt;}
.y169{bottom:315.390667pt;}
.y123{bottom:316.326667pt;}
.y207{bottom:319.800000pt;}
.y290{bottom:320.652000pt;}
.y13c{bottom:320.942667pt;}
.y5a{bottom:322.696000pt;}
.yb1{bottom:324.874667pt;}
.y22b{bottom:326.376000pt;}
.y105{bottom:327.770667pt;}
.y25c{bottom:329.790667pt;}
.y122{bottom:331.308000pt;}
.y1ae{bottom:331.877333pt;}
.y1d9{bottom:332.565333pt;}
.yde{bottom:332.736000pt;}
.y88{bottom:332.738667pt;}
.y2a1{bottom:337.685333pt;}
.y206{bottom:337.813333pt;}
.y28f{bottom:337.868000pt;}
.y25{bottom:338.676000pt;}
.y13b{bottom:338.956000pt;}
.yb0{bottom:340.401333pt;}
.y59{bottom:340.709333pt;}
.y168{bottom:341.373333pt;}
.yaf{bottom:342.888000pt;}
.y121{bottom:344.781600pt;}
.y104{bottom:345.782667pt;}
.y1ad{bottom:345.957333pt;}
.y1d8{bottom:346.389333pt;}
.y25b{bottom:347.006667pt;}
.ydd{bottom:350.749333pt;}
.y87{bottom:350.750667pt;}
.y2a0{bottom:354.900000pt;}
.y28e{bottom:355.082667pt;}
.y205{bottom:355.825333pt;}
.yae{bottom:358.413333pt;}
.y58{bottom:358.721333pt;}
.y120{bottom:358.900800pt;}
.y1ac{bottom:359.781333pt;}
.yad{bottom:360.900000pt;}
.y103{bottom:363.796000pt;}
.y1d7{bottom:363.797333pt;}
.y25a{bottom:364.222667pt;}
.ydc{bottom:368.761333pt;}
.y86{bottom:368.764000pt;}
.y29f{bottom:372.116000pt;}
.y28d{bottom:372.298667pt;}
.y167{bottom:372.324000pt;}
.y11f{bottom:372.375600pt;}
.y1ab{bottom:373.605333pt;}
.y204{bottom:373.838667pt;}
.y13a{bottom:375.910667pt;}
.y57{bottom:376.733333pt;}
.yac{bottom:378.912000pt;}
.y259{bottom:381.437333pt;}
.y102{bottom:381.808000pt;}
.y1ed{bottom:382.581333pt;}
.y11e{bottom:386.457600pt;}
.ydb{bottom:386.773333pt;}
.y85{bottom:386.776000pt;}
.y1aa{bottom:387.461333pt;}
.y28c{bottom:389.514667pt;}
.y166{bottom:390.337333pt;}
.y203{bottom:391.850667pt;}
.y139{bottom:394.711733pt;}
.y56{bottom:394.746667pt;}
.yab{bottom:396.925333pt;}
.y29e{bottom:398.201333pt;}
.y258{bottom:398.653333pt;}
.y101{bottom:399.821333pt;}
.y1a9{bottom:401.285333pt;}
.y1cc{bottom:402.518667pt;}
.yda{bottom:404.786667pt;}
.y219{bottom:404.789333pt;}
.y11d{bottom:405.656400pt;}
.y24{bottom:406.601333pt;}
.y28b{bottom:406.729333pt;}
.y138{bottom:408.148133pt;}
.y165{bottom:408.349333pt;}
.y202{bottom:409.862667pt;}
.y29d{bottom:411.710667pt;}
.y55{bottom:412.758667pt;}
.yaa{bottom:414.937333pt;}
.y1a8{bottom:415.109333pt;}
.y257{bottom:415.868000pt;}
.y100{bottom:417.833333pt;}
.y137{bottom:421.584533pt;}
.yd9{bottom:422.798667pt;}
.y28a{bottom:423.945333pt;}
.y23{bottom:424.614667pt;}
.y11c{bottom:424.854000pt;}
.y164{bottom:426.361333pt;}
.y201{bottom:427.876000pt;}
.y1a7{bottom:429.189333pt;}
.y54{bottom:430.772000pt;}
.y11b{bottom:432.328800pt;}
.ya9{bottom:432.950667pt;}
.y256{bottom:433.084000pt;}
.y136{bottom:435.020933pt;}
.yff{bottom:435.845333pt;}
.yd8{bottom:440.812000pt;}
.y289{bottom:441.160000pt;}
.y84{bottom:443.709333pt;}
.y163{bottom:444.374667pt;}
.y200{bottom:445.888000pt;}
.y135{bottom:448.457333pt;}
.y53{bottom:448.784000pt;}
.y255{bottom:450.300000pt;}
.ya8{bottom:450.962667pt;}
.yfe{bottom:453.858667pt;}
.y11a{bottom:457.489200pt;}
.y288{bottom:458.376000pt;}
.y22{bottom:458.566667pt;}
.yd7{bottom:458.824000pt;}
.y83{bottom:461.722667pt;}
.y134{bottom:461.893733pt;}
.y162{bottom:462.386667pt;}
.y1ff{bottom:463.901333pt;}
.y218{bottom:466.796000pt;}
.y254{bottom:467.514667pt;}
.ya7{bottom:468.974667pt;}
.y119{bottom:470.725200pt;}
.yfd{bottom:471.870667pt;}
.y52{bottom:474.766667pt;}
.y133{bottom:475.330133pt;}
.y287{bottom:475.592000pt;}
.y21{bottom:476.580000pt;}
.yd6{bottom:476.836000pt;}
.y82{bottom:479.734667pt;}
.y161{bottom:480.400000pt;}
.y1fe{bottom:481.913333pt;}
.y253{bottom:484.730667pt;}
.y217{bottom:484.809333pt;}
.ya6{bottom:486.988000pt;}
.yfc{bottom:487.397333pt;}
.y132{bottom:488.480933pt;}
.yfb{bottom:489.884000pt;}
.y286{bottom:492.806667pt;}
.y20{bottom:494.592000pt;}
.yd5{bottom:494.849333pt;}
.y131{bottom:495.056933pt;}
.y118{bottom:495.885600pt;}
.y81{bottom:497.746667pt;}
.y160{bottom:498.412000pt;}
.y22a{bottom:499.925333pt;}
.y252{bottom:501.945333pt;}
.y216{bottom:502.821333pt;}
.ya5{bottom:505.000000pt;}
.y51{bottom:505.717333pt;}
.yfa{bottom:507.896000pt;}
.y1d6{bottom:509.770667pt;}
.y285{bottom:510.022667pt;}
.y1f{bottom:512.604000pt;}
.yd4{bottom:512.861333pt;}
.y117{bottom:515.084400pt;}
.y80{bottom:515.760000pt;}
.y15f{bottom:516.424000pt;}
.y229{bottom:517.938667pt;}
.y251{bottom:519.161333pt;}
.y130{bottom:520.830533pt;}
.y215{bottom:520.834667pt;}
.y114{bottom:522.844800pt;}
.y50{bottom:523.729333pt;}
.y1d5{bottom:523.850667pt;}
.yf9{bottom:525.908000pt;}
.y284{bottom:527.237333pt;}
.y116{bottom:528.520800pt;}
.y1e{bottom:530.617333pt;}
.yd3{bottom:530.874667pt;}
.ya4{bottom:530.982667pt;}
.y7f{bottom:533.772000pt;}
.y15e{bottom:534.437333pt;}
.y228{bottom:535.950667pt;}
.y250{bottom:536.377333pt;}
.y1d4{bottom:537.674667pt;}
.y1fd{bottom:538.846667pt;}
.y4f{bottom:541.742667pt;}
.y115{bottom:541.957200pt;}
.yf8{bottom:543.921333pt;}
.y283{bottom:544.453333pt;}
.y12f{bottom:547.436000pt;}
.y1cb{bottom:548.345333pt;}
.y1d{bottom:548.629333pt;}
.yd2{bottom:548.886667pt;}
.y1d3{bottom:551.498667pt;}
.y7e{bottom:551.785333pt;}
.y15d{bottom:552.449333pt;}
.y24f{bottom:553.592000pt;}
.y227{bottom:553.964000pt;}
.y1fc{bottom:556.858667pt;}
.y4e{bottom:559.754667pt;}
.y113{bottom:561.156000pt;}
.y282{bottom:561.669333pt;}
.ya3{bottom:561.933333pt;}
.y1d2{bottom:565.354667pt;}
.y1c{bottom:566.642667pt;}
.yd1{bottom:566.898667pt;}
.y1a4{bottom:568.282667pt;}
.y7d{bottom:569.797333pt;}
.y15c{bottom:570.462667pt;}
.y24e{bottom:570.808000pt;}
.y226{bottom:571.976000pt;}
.y112{bottom:572.988000pt;}
.y1fb{bottom:574.872000pt;}
.y4d{bottom:577.766667pt;}
.y281{bottom:578.884000pt;}
.y1d1{bottom:579.178667pt;}
.yf7{bottom:579.945333pt;}
.y1c4{bottom:580.213333pt;}
.y214{bottom:582.841333pt;}
.y1b{bottom:584.654667pt;}
.y12e{bottom:584.721333pt;}
.yd0{bottom:584.912000pt;}
.y7c{bottom:587.809333pt;}
.y24d{bottom:588.024000pt;}
.y15b{bottom:588.474667pt;}
.y225{bottom:589.988000pt;}
.y1ec{bottom:592.342667pt;}
.ya2{bottom:592.884000pt;}
.y1d0{bottom:593.002667pt;}
.y4c{bottom:595.780000pt;}
.y280{bottom:596.100000pt;}
.yf6{bottom:597.958667pt;}
.y111{bottom:599.552400pt;}
.y12d{bottom:599.650667pt;}
.y1a{bottom:602.666667pt;}
.ycf{bottom:602.924000pt;}
.y24c{bottom:605.238667pt;}
.y7b{bottom:605.822667pt;}
.y15a{bottom:606.486667pt;}
.y1cf{bottom:607.082667pt;}
.y224{bottom:608.001333pt;}
.ya1{bottom:610.896000pt;}
.y27f{bottom:613.314667pt;}
.y4b{bottom:613.792000pt;}
.y12c{bottom:614.580000pt;}
.yf5{bottom:615.970667pt;}
.y10e{bottom:617.778000pt;}
.y110{bottom:618.750000pt;}
.y19{bottom:620.680000pt;}
.yce{bottom:620.937333pt;}
.y24b{bottom:622.454667pt;}
.y7a{bottom:623.834667pt;}
.y159{bottom:624.500000pt;}
.y223{bottom:626.013333pt;}
.ya0{bottom:628.909333pt;}
.y12b{bottom:629.509333pt;}
.y27e{bottom:630.530667pt;}
.y4a{bottom:631.805333pt;}
.yf4{bottom:633.984000pt;}
.y10f{bottom:637.948800pt;}
.y18{bottom:638.692000pt;}
.ycd{bottom:638.949333pt;}
.y24a{bottom:639.669333pt;}
.y79{bottom:641.846667pt;}
.y158{bottom:642.512000pt;}
.y12a{bottom:644.438667pt;}
.y9f{bottom:646.921333pt;}
.y27d{bottom:647.746667pt;}
.y49{bottom:649.817333pt;}
.yf3{bottom:651.996000pt;}
.y17{bottom:656.705333pt;}
.y249{bottom:656.885333pt;}
.ycc{bottom:656.961333pt;}
.y129{bottom:659.368000pt;}
.y78{bottom:659.860000pt;}
.y157{bottom:660.525333pt;}
.y10d{bottom:664.553333pt;}
.y9e{bottom:664.934667pt;}
.y27c{bottom:664.961333pt;}
.y48{bottom:667.829333pt;}
.yf2{bottom:670.008000pt;}
.y248{bottom:674.101333pt;}
.y128{bottom:674.297333pt;}
.y16{bottom:674.717333pt;}
.ycb{bottom:674.974667pt;}
.y77{bottom:677.872000pt;}
.y156{bottom:678.537333pt;}
.y27b{bottom:682.177333pt;}
.y9d{bottom:682.946667pt;}
.y47{bottom:685.842667pt;}
.yf1{bottom:688.021333pt;}
.y127{bottom:688.909333pt;}
.y247{bottom:691.316000pt;}
.yca{bottom:692.986667pt;}
.y76{bottom:695.885333pt;}
.y155{bottom:696.549333pt;}
.y27a{bottom:699.392000pt;}
.y9c{bottom:700.958667pt;}
.y126{bottom:703.521333pt;}
.y46{bottom:703.854667pt;}
.y13{bottom:705.077301pt;}
.y12{bottom:705.758667pt;}
.yf0{bottom:706.033333pt;}
.y246{bottom:708.532000pt;}
.y1fa{bottom:708.929333pt;}
.y10c{bottom:709.729333pt;}
.yc9{bottom:711.000000pt;}
.y75{bottom:713.897333pt;}
.y279{bottom:716.608000pt;}
.y9b{bottom:718.972000pt;}
.y1a3{bottom:720.836000pt;}
.y45{bottom:721.868000pt;}
.yef{bottom:724.046667pt;}
.y125{bottom:724.853333pt;}
.y245{bottom:725.746667pt;}
.yc8{bottom:729.012000pt;}
.y74{bottom:731.909333pt;}
.y154{bottom:733.505333pt;}
.y278{bottom:733.824000pt;}
.y9a{bottom:736.984000pt;}
.y1a2{bottom:737.932000pt;}
.y44{bottom:739.880000pt;}
.y11{bottom:740.430667pt;}
.yee{bottom:742.058667pt;}
.y244{bottom:742.962667pt;}
.yc7{bottom:747.024000pt;}
.y73{bottom:749.922667pt;}
.y277{bottom:751.038667pt;}
.y153{bottom:752.306400pt;}
.y124{bottom:752.960000pt;}
.y1bd{bottom:754.549333pt;}
.y99{bottom:754.997333pt;}
.y10{bottom:756.569333pt;}
.y176{bottom:757.869333pt;}
.y43{bottom:757.892000pt;}
.y243{bottom:760.178667pt;}
.y18f{bottom:763.253867pt;}
.yc6{bottom:765.037333pt;}
.y152{bottom:765.742800pt;}
.y1e5{bottom:766.678667pt;}
.y72{bottom:767.934667pt;}
.yed{bottom:768.041333pt;}
.y276{bottom:768.254667pt;}
.y98{bottom:773.009333pt;}
.y42{bottom:775.905333pt;}
.yf{bottom:777.049333pt;}
.y242{bottom:777.393333pt;}
.y151{bottom:779.179200pt;}
.yc5{bottom:783.049333pt;}
.y275{bottom:785.469333pt;}
.y71{bottom:785.948000pt;}
.ye{bottom:788.849333pt;}
.y97{bottom:791.021333pt;}
.y150{bottom:792.615600pt;}
.y41{bottom:793.917333pt;}
.y241{bottom:794.609333pt;}
.yec{bottom:798.992000pt;}
.yc4{bottom:801.062667pt;}
.y274{bottom:802.685333pt;}
.y70{bottom:803.960000pt;}
.y14f{bottom:806.052000pt;}
.y222{bottom:809.034667pt;}
.yd{bottom:809.328000pt;}
.y240{bottom:811.824000pt;}
.y40{bottom:811.930667pt;}
.y96{bottom:817.004000pt;}
.yc3{bottom:819.074667pt;}
.y14e{bottom:819.488400pt;}
.y273{bottom:819.901333pt;}
.yc{bottom:821.128000pt;}
.y6f{bottom:821.972000pt;}
.y221{bottom:827.046667pt;}
.y23f{bottom:829.040000pt;}
.y3f{bottom:829.942667pt;}
.y14d{bottom:832.924800pt;}
.yc2{bottom:837.086667pt;}
.y272{bottom:837.116000pt;}
.yb{bottom:837.268000pt;}
.y6e{bottom:839.985333pt;}
.ya{bottom:841.606667pt;}
.y220{bottom:845.060000pt;}
.y14c{bottom:846.075600pt;}
.y23e{bottom:846.256000pt;}
.y3e{bottom:847.954667pt;}
.y14b{bottom:852.651600pt;}
.y271{bottom:854.332000pt;}
.yc1{bottom:855.100000pt;}
.y6d{bottom:857.997333pt;}
.y9{bottom:860.241333pt;}
.y23d{bottom:863.470667pt;}
.y3d{bottom:865.968000pt;}
.y21f{bottom:871.042667pt;}
.y270{bottom:871.546667pt;}
.y6c{bottom:876.010667pt;}
.yc0{bottom:876.014667pt;}
.y14a{bottom:878.425200pt;}
.y23c{bottom:880.686667pt;}
.y3c{bottom:883.980000pt;}
.ybf{bottom:887.816000pt;}
.y26f{bottom:888.762667pt;}
.y6b{bottom:894.022667pt;}
.y23b{bottom:897.901333pt;}
.y8{bottom:898.178667pt;}
.y3b{bottom:901.993333pt;}
.y149{bottom:905.029333pt;}
.y26e{bottom:905.978667pt;}
.y6a{bottom:912.034667pt;}
.y23a{bottom:915.117333pt;}
.y3a{bottom:920.005333pt;}
.y26d{bottom:923.193333pt;}
.y7{bottom:925.198667pt;}
.ybe{bottom:926.706667pt;}
.y69{bottom:930.048000pt;}
.y239{bottom:932.333333pt;}
.ybd{bottom:935.820000pt;}
.y39{bottom:938.017333pt;}
.y26c{bottom:940.409333pt;}
.y68{bottom:948.060000pt;}
.y238{bottom:949.548000pt;}
.y6{bottom:952.217333pt;}
.y38{bottom:956.030667pt;}
.y26b{bottom:957.624000pt;}
.y67{bottom:966.073333pt;}
.y237{bottom:966.764000pt;}
.y37{bottom:974.042667pt;}
.y26a{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y236{bottom:991.949333pt;}
.y36{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y35{bottom:1038.548000pt;}
.h37{height:-232.609067pt;}
.h30{height:-222.967467pt;}
.h38{height:-58.273067pt;}
.h33{height:-47.989333pt;}
.h34{height:-42.085333pt;}
.h31{height:-39.927467pt;}
.ha{height:22.673858pt;}
.h3a{height:24.766500pt;}
.h26{height:25.995387pt;}
.h22{height:27.672303pt;}
.h29{height:28.158000pt;}
.h2b{height:28.310000pt;}
.h2a{height:28.519000pt;}
.hc{height:29.433775pt;}
.h2d{height:30.153000pt;}
.hb{height:30.399505pt;}
.h19{height:31.116995pt;}
.h28{height:31.122000pt;}
.h11{height:32.092855pt;}
.h8{height:32.284045pt;}
.h2f{height:33.610500pt;}
.h3d{height:33.713664pt;}
.h3c{height:34.144051pt;}
.h23{height:34.574438pt;}
.h3{height:35.024664pt;}
.hf{height:35.051460pt;}
.h12{height:36.131029pt;}
.h4{height:36.445809pt;}
.h10{height:36.896250pt;}
.h1b{height:37.357609pt;}
.hd{height:38.415786pt;}
.h2e{height:38.703000pt;}
.h3b{height:38.804850pt;}
.h5{height:39.000258pt;}
.h9{height:41.508454pt;}
.h21{height:43.383640pt;}
.h1f{height:43.388440pt;}
.h1e{height:44.674840pt;}
.h20{height:44.679640pt;}
.h2{height:45.272024pt;}
.he{height:46.120196pt;}
.h7{height:48.486756pt;}
.h1d{height:61.204009pt;}
.h1c{height:61.208809pt;}
.h24{height:63.656809pt;}
.h25{height:63.661609pt;}
.h1a{height:66.820009pt;}
.h6{height:69.148877pt;}
.h13{height:74.968258pt;}
.h15{height:86.817067pt;}
.h16{height:93.320196pt;}
.h14{height:105.076231pt;}
.h35{height:126.346667pt;}
.h2c{height:130.304000pt;}
.h39{height:130.803200pt;}
.h36{height:131.550933pt;}
.h32{height:138.277333pt;}
.h27{height:141.267200pt;}
.h17{height:793.701333pt;}
.h18{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w8{width:402.944000pt;}
.wd{width:409.600000pt;}
.w7{width:470.528000pt;}
.w9{width:476.672000pt;}
.wc{width:630.845941pt;}
.w6{width:630.846156pt;}
.wb{width:631.593889pt;}
.wa{width:632.341324pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xb1{left:1.638400pt;}
.xa0{left:3.046400pt;}
.xaa{left:7.018667pt;}
.xa1{left:15.872000pt;}
.x7{left:26.021437pt;}
.xab{left:40.298667pt;}
.xa9{left:42.261333pt;}
.x2{left:52.456952pt;}
.xb7{left:53.909333pt;}
.xa2{left:59.594667pt;}
.xa4{left:62.336000pt;}
.xb8{left:75.445333pt;}
.xb4{left:78.699808pt;}
.x97{left:80.942156pt;}
.xa5{left:94.485333pt;}
.xb5{left:97.925408pt;}
.x2e{left:100.054667pt;}
.x1{left:102.046667pt;}
.x99{left:103.751756pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x9f{left:111.594667pt;}
.x80{left:112.782933pt;}
.xb2{left:114.688000pt;}
.x8f{left:117.102933pt;}
.x81{left:121.377333pt;}
.x93{left:123.732000pt;}
.x64{left:124.669067pt;}
.x91{left:125.697333pt;}
.x95{left:128.641333pt;}
.x4{left:129.676000pt;}
.x82{left:131.325333pt;}
.x94{left:132.618667pt;}
.x6b{left:134.927867pt;}
.x6d{left:136.529867pt;}
.x72{left:138.404267pt;}
.x70{left:139.781867pt;}
.x73{left:141.109333pt;}
.x29{left:145.481333pt;}
.xad{left:146.410667pt;}
.xb3{left:152.573333pt;}
.xc4{left:153.469333pt;}
.x37{left:154.973333pt;}
.x83{left:156.797733pt;}
.x2a{left:158.500000pt;}
.x7c{left:160.488933pt;}
.x71{left:161.680667pt;}
.x68{left:163.719467pt;}
.x2b{left:164.949333pt;}
.x8{left:166.030667pt;}
.x38{left:168.257333pt;}
.x39{left:169.414667pt;}
.xac{left:170.932000pt;}
.xa{left:172.160000pt;}
.xd8{left:173.493333pt;}
.xb{left:178.798667pt;}
.x9{left:181.473333pt;}
.x3a{left:182.698667pt;}
.xc{left:185.308000pt;}
.xc5{left:186.812000pt;}
.x4f{left:188.832000pt;}
.x2c{left:190.812000pt;}
.x15{left:194.424000pt;}
.xd2{left:196.754667pt;}
.x50{left:198.128000pt;}
.x5c{left:199.898667pt;}
.x16{left:201.024000pt;}
.x2d{left:204.094667pt;}
.x79{left:205.456000pt;}
.xb9{left:206.570667pt;}
.x86{left:209.257333pt;}
.x5d{left:212.916000pt;}
.x17{left:214.042667pt;}
.x5e{left:216.168000pt;}
.x3d{left:217.184000pt;}
.x6f{left:220.876667pt;}
.xef{left:223.704000pt;}
.xd3{left:226.010667pt;}
.x53{left:226.996000pt;}
.x5f{left:229.186667pt;}
.xb6{left:235.248800pt;}
.x9b{left:238.389333pt;}
.x54{left:239.450667pt;}
.x9a{left:241.557333pt;}
.xa3{left:247.732000pt;}
.x58{left:251.201333pt;}
.xa6{left:252.800000pt;}
.x78{left:259.720000pt;}
.x89{left:262.462533pt;}
.x4c{left:265.740000pt;}
.x59{left:269.026667pt;}
.x85{left:270.402667pt;}
.x90{left:271.870533pt;}
.x6a{left:274.923467pt;}
.xd1{left:276.156000pt;}
.x4d{left:278.757333pt;}
.x75{left:284.437333pt;}
.x76{left:286.476000pt;}
.xcc{left:290.022667pt;}
.x22{left:292.394667pt;}
.x67{left:294.597467pt;}
.x77{left:295.962667pt;}
.x69{left:297.539867pt;}
.x6c{left:298.567067pt;}
.xae{left:299.498667pt;}
.xa7{left:300.693333pt;}
.x74{left:301.904000pt;}
.xcd{left:303.306667pt;}
.x23{left:305.413333pt;}
.x5a{left:311.182667pt;}
.x96{left:314.004556pt;}
.x40{left:315.804000pt;}
.x9d{left:318.869333pt;}
.xe0{left:322.625333pt;}
.x9c{left:326.581333pt;}
.x41{left:329.088000pt;}
.xbb{left:331.466667pt;}
.xaf{left:334.154667pt;}
.xe1{left:335.909333pt;}
.xec{left:337.722667pt;}
.x5b{left:342.685333pt;}
.xd9{left:344.933333pt;}
.xa8{left:350.154667pt;}
.xba{left:351.285333pt;}
.x2f{left:356.578667pt;}
.x35{left:357.940000pt;}
.xda{left:361.204000pt;}
.x63{left:366.242667pt;}
.x1a{left:368.802667pt;}
.x30{left:369.862667pt;}
.x1e{left:370.930667pt;}
.x8a{left:373.264533pt;}
.x36{left:374.528000pt;}
.x6e{left:375.689867pt;}
.x33{left:380.010667pt;}
.x1b{left:381.820000pt;}
.x1f{left:383.949333pt;}
.x1c{left:388.413333pt;}
.xbc{left:389.348000pt;}
.x20{left:390.588000pt;}
.x34{left:393.294667pt;}
.x1d{left:401.432000pt;}
.x3f{left:402.581333pt;}
.x21{left:403.605333pt;}
.xbd{left:405.900000pt;}
.xd4{left:407.670667pt;}
.xb0{left:411.189333pt;}
.x8b{left:416.507733pt;}
.x9e{left:419.125333pt;}
.x7d{left:420.827733pt;}
.x66{left:423.033467pt;}
.xbe{left:435.734667pt;}
.xbf{left:439.002667pt;}
.x46{left:445.352000pt;}
.xdb{left:449.492000pt;}
.xc0{left:452.285333pt;}
.xdd{left:453.269333pt;}
.xc1{left:455.553333pt;}
.x8c{left:456.626133pt;}
.x47{left:458.369333pt;}
.x55{left:461.400000pt;}
.xdc{left:462.510667pt;}
.xde{left:466.553333pt;}
.xc2{left:468.837333pt;}
.xc3{left:472.105333pt;}
.xdf{left:473.228000pt;}
.xe2{left:480.904000pt;}
.x3b{left:486.048000pt;}
.x61{left:489.452000pt;}
.xe3{left:494.188000pt;}
.x65{left:496.126667pt;}
.x24{left:497.525333pt;}
.x3c{left:499.330667pt;}
.x92{left:501.498933pt;}
.x8d{left:505.505733pt;}
.x25{left:510.544000pt;}
.x7e{left:518.464533pt;}
.x45{left:524.297333pt;}
.x4e{left:532.948000pt;}
.x18{left:536.684000pt;}
.xd5{left:538.105333pt;}
.x11{left:539.984000pt;}
.xd6{left:541.493333pt;}
.x19{left:545.577333pt;}
.x87{left:548.627733pt;}
.x98{left:551.391222pt;}
.x12{left:553.001333pt;}
.xd7{left:554.776000pt;}
.x13{left:556.253333pt;}
.x7a{left:561.586533pt;}
.xed{left:566.129333pt;}
.x14{left:569.272000pt;}
.x48{left:571.109333pt;}
.xeb{left:572.761333pt;}
.xce{left:574.694667pt;}
.x31{left:576.256000pt;}
.x62{left:579.120000pt;}
.x56{left:581.078667pt;}
.x60{left:582.760000pt;}
.x49{left:584.128000pt;}
.x4a{left:587.252000pt;}
.x32{left:589.538667pt;}
.xcf{left:590.964000pt;}
.x8e{left:592.590933pt;}
.x57{left:594.932000pt;}
.x88{left:596.190933pt;}
.x51{left:597.533333pt;}
.x4b{left:600.269333pt;}
.xe4{left:601.382667pt;}
.x84{left:603.267333pt;}
.x7b{left:604.829733pt;}
.x52{left:607.369333pt;}
.xd0{left:610.621333pt;}
.xc6{left:616.008000pt;}
.xe9{left:617.986667pt;}
.xc7{left:619.396000pt;}
.xe5{left:621.308000pt;}
.x6{left:623.413317pt;}
.xe8{left:625.184000pt;}
.xc8{left:632.680000pt;}
.xe6{left:635.228000pt;}
.xc9{left:639.453333pt;}
.xea{left:641.897333pt;}
.xee{left:647.557333pt;}
.x7f{left:650.830533pt;}
.x42{left:652.878667pt;}
.x26{left:654.101333pt;}
.xca{left:656.125333pt;}
.x43{left:665.896000pt;}
.x27{left:667.120000pt;}
.xcb{left:669.408000pt;}
.xd{left:670.874667pt;}
.x44{left:672.534667pt;}
.x28{left:673.498667pt;}
.xe{left:677.384000pt;}
.xf{left:680.636000pt;}
.x3e{left:686.078667pt;}
.x10{left:687.144000pt;}
.xe7{left:690.100000pt;}
}


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