
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_be775222c1ee.woff")format("woff");}.ff1{font-family:ff1;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_e63f290de20d.woff")format("woff");}.ff2{font-family:ff2;line-height:1.065581;font-style:normal;font-weight: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_6a46f0ae73cc.woff")format("woff");}.ff3{font-family:ff3;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_546b63f7777c.woff")format("woff");}.ff4{font-family:ff4;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_7039f3216b79.woff")format("woff");}.ff5{font-family:ff5;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_dc95ed900b46.woff")format("woff");}.ff6{font-family:ff6;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_60846502d88e.woff")format("woff");}.ff7{font-family:ff7;line-height:1.142000;font-style:normal;font-weight: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_71be14f5a5c9.woff")format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_e63f290de20d.woff")format("woff");}.ff9{font-family:ff9;line-height:1.065581;font-style:normal;font-weight: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_9fd93319c1b1.woff")format("woff");}.ffa{font-family:ffa;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_cb10150d53b5.woff")format("woff");}.ffb{font-family:ffb;line-height:0.705000;font-style:normal;font-weight: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_cf9b1f744a4b.woff")format("woff");}.ffc{font-family:ffc;line-height:0.884000;font-style:normal;font-weight: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_b465c02ec311.woff")format("woff");}.ffd{font-family:ffd;line-height:0.901000;font-style:normal;font-weight: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_f16b3693f6ed.woff")format("woff");}.ffe{font-family:ffe;line-height:0.932000;font-style:normal;font-weight: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_906c42ca457f.woff")format("woff");}.fff{font-family:fff;line-height:1.230000;font-style:normal;font-weight: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_2dcee783e021.woff")format("woff");}.ff10{font-family:ff10;line-height:0.686000;font-style:normal;font-weight: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_026dea4a348f.woff")format("woff");}.ff11{font-family:ff11;line-height:0.824000;font-style:normal;font-weight: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_dc747d063a7e.woff")format("woff");}.ff12{font-family:ff12;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:ff13;src:url("fonts/font_0018_31fbe273f821.woff")format("woff");}.ff13{font-family:ff13;line-height:0.391000;font-style:normal;font-weight: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_e0a4bbde5e29.woff")format("woff");}.ff14{font-family:ff14;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_8d8cebc4bceb.woff")format("woff");}.ff15{font-family:ff15;line-height:0.679000;font-style:normal;font-weight: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_309a6df62597.woff")format("woff");}.ff16{font-family:ff16;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-24.000000px;}
.v2{vertical-align:-20.400055px;}
.v3{vertical-align:-15.000000px;}
.v6{vertical-align:-12.750000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.403110px;}
.v1{vertical-align:24.000000px;}
.v7{vertical-align:48.011998px;}
.ls4d{letter-spacing:-1.785000px;}
.ls4f{letter-spacing:-0.918000px;}
.ls5b{letter-spacing:-0.480120px;}
.ls17{letter-spacing:-0.420000px;}
.ls33{letter-spacing:-0.360000px;}
.lsa8{letter-spacing:-0.357000px;}
.lsbd{letter-spacing:-0.306000px;}
.ls34{letter-spacing:-0.300000px;}
.lsbb{letter-spacing:-0.255000px;}
.ls32{letter-spacing:-0.240000px;}
.ls4e{letter-spacing:-0.204000px;}
.ls31{letter-spacing:-0.180000px;}
.lsaa{letter-spacing:-0.153000px;}
.ls18{letter-spacing:-0.120000px;}
.lsbc{letter-spacing:-0.102000px;}
.ls19{letter-spacing:-0.060000px;}
.lsa9{letter-spacing:-0.051000px;}
.ls16{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.000037px;}
.ls1{letter-spacing:0.000085px;}
.ls28{letter-spacing:0.030000px;}
.ls95{letter-spacing:0.051000px;}
.ls1a{letter-spacing:0.060000px;}
.ls97{letter-spacing:0.102000px;}
.ls27{letter-spacing:0.120000px;}
.ls9d{letter-spacing:0.127500px;}
.ls5e{letter-spacing:0.150000px;}
.lsb3{letter-spacing:0.153000px;}
.ls14{letter-spacing:0.178791px;}
.lsa{letter-spacing:0.180000px;}
.ls5f{letter-spacing:0.198029px;}
.ls8a{letter-spacing:0.204000px;}
.ls61{letter-spacing:0.209930px;}
.ls8{letter-spacing:0.210000px;}
.ls38{letter-spacing:0.210022px;}
.ls53{letter-spacing:0.210571px;}
.lsb5{letter-spacing:0.229500px;}
.ls1c{letter-spacing:0.234000px;}
.ls2{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.255000px;}
.ls94{letter-spacing:0.264000px;}
.ls25{letter-spacing:0.270000px;}
.ls79{letter-spacing:0.274857px;}
.ls1f{letter-spacing:0.275992px;}
.ls54{letter-spacing:0.285645px;}
.ls3d{letter-spacing:0.287986px;}
.ls98{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.300000px;}
.ls7a{letter-spacing:0.306000px;}
.ls40{letter-spacing:0.314941px;}
.ls1d{letter-spacing:0.329981px;}
.ls3{letter-spacing:0.330000px;}
.lsb9{letter-spacing:0.331500px;}
.ls90{letter-spacing:0.357000px;}
.ls9{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.372000px;}
.ls2a{letter-spacing:0.389973px;}
.ls46{letter-spacing:0.390000px;}
.ls9f{letter-spacing:0.408000px;}
.ls5{letter-spacing:0.418757px;}
.ls26{letter-spacing:0.419861px;}
.ls10{letter-spacing:0.420000px;}
.ls2c{letter-spacing:0.425974px;}
.lsa6{letter-spacing:0.433500px;}
.ls7d{letter-spacing:0.443290px;}
.ls36{letter-spacing:0.450000px;}
.ls96{letter-spacing:0.459000px;}
.ls13{letter-spacing:0.480000px;}
.lsb8{letter-spacing:0.484500px;}
.lsac{letter-spacing:0.510000px;}
.ls1e{letter-spacing:0.540000px;}
.ls39{letter-spacing:0.545380px;}
.ls3b{letter-spacing:0.546021px;}
.ls52{letter-spacing:0.546661px;}
.ls51{letter-spacing:0.547211px;}
.ls8e{letter-spacing:0.561000px;}
.ls5d{letter-spacing:0.565798px;}
.ls2b{letter-spacing:0.570000px;}
.ls88{letter-spacing:0.576599px;}
.ls60{letter-spacing:0.577789px;}
.ls47{letter-spacing:0.582000px;}
.ls4{letter-spacing:0.600000px;}
.ls8f{letter-spacing:0.612000px;}
.ls2f{letter-spacing:0.630000px;}
.lsd{letter-spacing:0.660000px;}
.ls8b{letter-spacing:0.663000px;}
.ls5a{letter-spacing:0.690000px;}
.lse{letter-spacing:0.708000px;}
.ls99{letter-spacing:0.714000px;}
.ls12{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.729034px;}
.ls29{letter-spacing:0.738000px;}
.ls3e{letter-spacing:0.750000px;}
.lsa2{letter-spacing:0.765000px;}
.ls3a{letter-spacing:0.779399px;}
.ls7{letter-spacing:0.780000px;}
.ls42{letter-spacing:0.784790px;}
.lsba{letter-spacing:0.790500px;}
.ls5c{letter-spacing:0.808791px;}
.ls8d{letter-spacing:0.816000px;}
.ls1b{letter-spacing:0.840000px;}
.ls50{letter-spacing:0.841217px;}
.lsa7{letter-spacing:0.867000px;}
.ls2d{letter-spacing:0.870000px;}
.ls24{letter-spacing:0.877213px;}
.ls11{letter-spacing:0.900000px;}
.lsb7{letter-spacing:0.918000px;}
.ls55{letter-spacing:0.930000px;}
.lsc{letter-spacing:0.960000px;}
.ls91{letter-spacing:0.969000px;}
.ls7f{letter-spacing:1.008245px;}
.ls21{letter-spacing:1.020000px;}
.ls72{letter-spacing:1.049927px;}
.ls9a{letter-spacing:1.071000px;}
.ls2e{letter-spacing:1.080000px;}
.ls45{letter-spacing:1.082886px;}
.ls8c{letter-spacing:1.122000px;}
.ls41{letter-spacing:1.140000px;}
.ls7e{letter-spacing:1.146000px;}
.ls3c{letter-spacing:1.157946px;}
.lsad{letter-spacing:1.173000px;}
.lsb{letter-spacing:1.200000px;}
.lsb1{letter-spacing:1.224000px;}
.ls23{letter-spacing:1.260000px;}
.ls93{letter-spacing:1.275000px;}
.ls6f{letter-spacing:1.276794px;}
.ls30{letter-spacing:1.320000px;}
.lsa1{letter-spacing:1.326000px;}
.lsab{letter-spacing:1.377000px;}
.ls3f{letter-spacing:1.380000px;}
.ls81{letter-spacing:1.380345px;}
.ls6c{letter-spacing:1.410000px;}
.ls9b{letter-spacing:1.428000px;}
.ls62{letter-spacing:1.440000px;}
.ls78{letter-spacing:1.441818px;}
.ls9c{letter-spacing:1.479000px;}
.ls20{letter-spacing:1.500000px;}
.ls92{letter-spacing:1.530000px;}
.ls44{letter-spacing:1.560000px;}
.lsb4{letter-spacing:1.581000px;}
.ls37{letter-spacing:1.620000px;}
.lsb0{letter-spacing:1.632000px;}
.ls7b{letter-spacing:1.650000px;}
.ls77{letter-spacing:1.670929px;}
.ls35{letter-spacing:1.680000px;}
.lsae{letter-spacing:1.683000px;}
.lsa3{letter-spacing:1.734000px;}
.ls7c{letter-spacing:1.740000px;}
.lsa4{letter-spacing:1.759500px;}
.lsb6{letter-spacing:1.785000px;}
.ls6e{letter-spacing:1.800000px;}
.ls75{letter-spacing:1.860000px;}
.ls9e{letter-spacing:1.887000px;}
.ls6b{letter-spacing:1.890000px;}
.ls89{letter-spacing:1.920000px;}
.ls73{letter-spacing:1.932000px;}
.ls67{letter-spacing:1.980000px;}
.lsaf{letter-spacing:1.989000px;}
.ls6a{letter-spacing:2.010000px;}
.ls43{letter-spacing:2.040000px;}
.lsa0{letter-spacing:2.091000px;}
.ls66{letter-spacing:2.160000px;}
.ls70{letter-spacing:2.220000px;}
.lsa5{letter-spacing:2.244000px;}
.lsb2{letter-spacing:2.295000px;}
.ls63{letter-spacing:2.310000px;}
.ls69{letter-spacing:2.340000px;}
.ls6d{letter-spacing:2.400000px;}
.ls83{letter-spacing:2.400600px;}
.ls87{letter-spacing:2.520000px;}
.ls68{letter-spacing:2.580000px;}
.ls64{letter-spacing:2.640000px;}
.ls71{letter-spacing:2.741989px;}
.ls74{letter-spacing:2.820000px;}
.ls76{letter-spacing:2.940000px;}
.ls80{letter-spacing:2.971458px;}
.ls85{letter-spacing:2.971463px;}
.ls84{letter-spacing:3.000792px;}
.ls86{letter-spacing:3.000975px;}
.ls57{letter-spacing:3.024838px;}
.ls65{letter-spacing:3.120000px;}
.ls0{letter-spacing:3.990000px;}
.ls82{letter-spacing:10.022505px;}
.ls56{letter-spacing:13.323329px;}
.ls58{letter-spacing:16.684169px;}
.ls59{letter-spacing:24.666164px;}
.ls49{letter-spacing:49.089698px;}
.ls4b{letter-spacing:49.090247px;}
.ls4c{letter-spacing:49.090796px;}
.ls48{letter-spacing:107.308814px;}
.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;}
}
.ws2{word-spacing:-18.432000px;}
.ws96{word-spacing:-16.260000px;}
.wsa1{word-spacing:-16.080000px;}
.ws21{word-spacing:-15.900000px;}
.ws1e{word-spacing:-15.300000px;}
.ws43{word-spacing:-15.000000px;}
.ws20{word-spacing:-14.940000px;}
.wsb5{word-spacing:-14.832000px;}
.ws8b{word-spacing:-14.640000px;}
.ws9e{word-spacing:-14.580000px;}
.ws55{word-spacing:-14.544000px;}
.wsd6{word-spacing:-13.719000px;}
.wsa9{word-spacing:-13.005000px;}
.ws8{word-spacing:-12.750000px;}
.ws5f{word-spacing:-12.546000px;}
.ws56{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws61{word-spacing:-11.832000px;}
.ws6{word-spacing:-11.520000px;}
.wsaa{word-spacing:-10.761000px;}
.ws1f{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.ws7{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws29{word-spacing:-7.500000px;}
.ws8a{word-spacing:-2.220000px;}
.ws8e{word-spacing:-2.160000px;}
.ws88{word-spacing:-1.920000px;}
.ws9{word-spacing:-1.890000px;}
.ws95{word-spacing:-1.800000px;}
.ws9a{word-spacing:-1.740000px;}
.ws99{word-spacing:-1.620000px;}
.ws2c{word-spacing:-1.560000px;}
.wsf{word-spacing:-1.500000px;}
.ws34{word-spacing:-1.440000px;}
.ws13{word-spacing:-1.380000px;}
.wsd8{word-spacing:-1.377000px;}
.ws39{word-spacing:-1.320000px;}
.wsba{word-spacing:-1.275000px;}
.ws98{word-spacing:-1.260000px;}
.wsc3{word-spacing:-1.224000px;}
.ws44{word-spacing:-1.200000px;}
.ws5d{word-spacing:-1.140000px;}
.ws63{word-spacing:-1.080000px;}
.wsbc{word-spacing:-1.071000px;}
.ws38{word-spacing:-1.020000px;}
.wsb9{word-spacing:-0.969000px;}
.ws15{word-spacing:-0.960000px;}
.ws2b{word-spacing:-0.900000px;}
.ws3e{word-spacing:-0.840000px;}
.wsf4{word-spacing:-0.816000px;}
.ws23{word-spacing:-0.780000px;}
.wsbd{word-spacing:-0.765000px;}
.ws16{word-spacing:-0.720000px;}
.wsbe{word-spacing:-0.714000px;}
.wsda{word-spacing:-0.663000px;}
.ws3a{word-spacing:-0.660000px;}
.ws1d{word-spacing:-0.612000px;}
.ws3d{word-spacing:-0.600000px;}
.wsb{word-spacing:-0.570000px;}
.wsd5{word-spacing:-0.561000px;}
.ws3c{word-spacing:-0.540000px;}
.wsef{word-spacing:-0.510000px;}
.ws30{word-spacing:-0.480000px;}
.ws11{word-spacing:-0.420000px;}
.wscd{word-spacing:-0.408000px;}
.ws47{word-spacing:-0.360000px;}
.wsdd{word-spacing:-0.357000px;}
.wsed{word-spacing:-0.306000px;}
.ws24{word-spacing:-0.300000px;}
.wsb6{word-spacing:-0.264000px;}
.wsb4{word-spacing:-0.255000px;}
.ws76{word-spacing:-0.240000px;}
.wsde{word-spacing:-0.204000px;}
.ws4e{word-spacing:-0.180000px;}
.ws42{word-spacing:-0.120000px;}
.wsc0{word-spacing:-0.102000px;}
.ws6a{word-spacing:-0.060015px;}
.ws12{word-spacing:-0.060000px;}
.wscb{word-spacing:-0.051000px;}
.ws9f{word-spacing:-0.042010px;}
.wsa{word-spacing:0.000000px;}
.wsdc{word-spacing:0.051000px;}
.ws45{word-spacing:0.060000px;}
.ws4d{word-spacing:0.120000px;}
.wsc5{word-spacing:0.153000px;}
.ws10{word-spacing:0.180000px;}
.wsd{word-spacing:0.240000px;}
.wsc1{word-spacing:0.255000px;}
.ws3f{word-spacing:0.300000px;}
.wsf5{word-spacing:0.306000px;}
.wsb7{word-spacing:0.357000px;}
.ws35{word-spacing:0.360000px;}
.wsa6{word-spacing:0.420000px;}
.ws6c{word-spacing:0.420105px;}
.wsb8{word-spacing:0.459000px;}
.ws74{word-spacing:0.480000px;}
.wsc4{word-spacing:0.510000px;}
.ws14{word-spacing:0.540000px;}
.ws78{word-spacing:0.600000px;}
.wsd0{word-spacing:0.612000px;}
.ws26{word-spacing:0.660000px;}
.wsc2{word-spacing:0.663000px;}
.wsce{word-spacing:0.765000px;}
.ws2e{word-spacing:0.780000px;}
.wsee{word-spacing:0.816000px;}
.ws7a{word-spacing:0.840000px;}
.wse1{word-spacing:0.867000px;}
.ws4a{word-spacing:0.900000px;}
.ws22{word-spacing:0.960000px;}
.ws3b{word-spacing:1.020000px;}
.ws7c{word-spacing:1.080000px;}
.ws1b{word-spacing:1.140000px;}
.wsbb{word-spacing:1.173000px;}
.ws79{word-spacing:1.200000px;}
.ws2f{word-spacing:1.260000px;}
.wsae{word-spacing:1.275000px;}
.ws75{word-spacing:1.320000px;}
.wsd3{word-spacing:1.326000px;}
.ws5b{word-spacing:1.380000px;}
.wse7{word-spacing:1.428000px;}
.ws51{word-spacing:1.440000px;}
.wsaf{word-spacing:1.479000px;}
.wsc{word-spacing:1.500000px;}
.wsa8{word-spacing:1.530000px;}
.ws25{word-spacing:1.560000px;}
.wsd1{word-spacing:1.581000px;}
.ws2d{word-spacing:1.620000px;}
.wsbf{word-spacing:1.632000px;}
.ws1a{word-spacing:1.680000px;}
.wse{word-spacing:1.740000px;}
.ws69{word-spacing:1.785000px;}
.ws4c{word-spacing:1.800000px;}
.wsd4{word-spacing:1.836000px;}
.ws54{word-spacing:1.860000px;}
.wsd9{word-spacing:1.887000px;}
.ws90{word-spacing:1.920000px;}
.ws50{word-spacing:1.980000px;}
.ws80{word-spacing:2.040000px;}
.wsea{word-spacing:2.091000px;}
.ws31{word-spacing:2.100000px;}
.wsec{word-spacing:2.142000px;}
.ws33{word-spacing:2.160000px;}
.ws5c{word-spacing:2.220000px;}
.wsb2{word-spacing:2.244000px;}
.ws67{word-spacing:2.280000px;}
.wscc{word-spacing:2.295000px;}
.ws36{word-spacing:2.340000px;}
.ws19{word-spacing:2.400000px;}
.ws40{word-spacing:2.460000px;}
.ws85{word-spacing:2.520000px;}
.wse2{word-spacing:2.550000px;}
.ws8d{word-spacing:2.580000px;}
.wseb{word-spacing:2.601000px;}
.ws46{word-spacing:2.640000px;}
.ws7b{word-spacing:2.700000px;}
.wsf2{word-spacing:2.703000px;}
.wsf0{word-spacing:2.754000px;}
.ws37{word-spacing:2.760000px;}
.wse0{word-spacing:2.805000px;}
.ws57{word-spacing:2.820000px;}
.ws68{word-spacing:2.856000px;}
.ws91{word-spacing:2.880000px;}
.ws59{word-spacing:2.940000px;}
.ws28{word-spacing:3.000000px;}
.wsa2{word-spacing:3.060000px;}
.wsdf{word-spacing:3.111000px;}
.ws64{word-spacing:3.120000px;}
.ws32{word-spacing:3.180000px;}
.wscf{word-spacing:3.213000px;}
.wsab{word-spacing:3.240000px;}
.ws82{word-spacing:3.300000px;}
.wsc8{word-spacing:3.315000px;}
.ws62{word-spacing:3.360000px;}
.wsc6{word-spacing:3.366000px;}
.ws77{word-spacing:3.420000px;}
.ws86{word-spacing:3.480000px;}
.wsf1{word-spacing:3.519000px;}
.ws58{word-spacing:3.540000px;}
.ws18{word-spacing:3.600000px;}
.wsf3{word-spacing:3.621000px;}
.ws89{word-spacing:3.660000px;}
.wsb1{word-spacing:3.672000px;}
.ws5a{word-spacing:3.720000px;}
.ws4b{word-spacing:3.840000px;}
.ws87{word-spacing:3.876000px;}
.wsa4{word-spacing:3.900000px;}
.ws9c{word-spacing:3.960000px;}
.ws2a{word-spacing:4.020000px;}
.ws4f{word-spacing:4.080000px;}
.wse3{word-spacing:4.182000px;}
.wsb3{word-spacing:4.284000px;}
.ws94{word-spacing:4.380000px;}
.wsd2{word-spacing:4.437000px;}
.ws41{word-spacing:4.440000px;}
.wse5{word-spacing:4.488000px;}
.ws52{word-spacing:4.560000px;}
.wsc7{word-spacing:4.590000px;}
.ws81{word-spacing:4.680000px;}
.ws9b{word-spacing:4.740000px;}
.ws53{word-spacing:4.800000px;}
.ws7f{word-spacing:4.860000px;}
.ws83{word-spacing:4.920000px;}
.wsd7{word-spacing:5.049000px;}
.ws7e{word-spacing:5.100000px;}
.ws93{word-spacing:5.160000px;}
.ws27{word-spacing:5.220000px;}
.wsa7{word-spacing:5.280000px;}
.wsc9{word-spacing:5.304000px;}
.wsca{word-spacing:5.406000px;}
.ws66{word-spacing:5.460000px;}
.wsb0{word-spacing:5.610000px;}
.ws7d{word-spacing:5.640000px;}
.wsdb{word-spacing:5.712000px;}
.ws49{word-spacing:5.820000px;}
.wse6{word-spacing:5.865000px;}
.ws8c{word-spacing:5.880000px;}
.ws48{word-spacing:6.060000px;}
.wsa3{word-spacing:6.180000px;}
.wse9{word-spacing:6.222000px;}
.ws8f{word-spacing:6.420000px;}
.wsad{word-spacing:6.840000px;}
.wse8{word-spacing:6.885000px;}
.ws92{word-spacing:7.038000px;}
.ws9d{word-spacing:7.140000px;}
.wsac{word-spacing:7.260000px;}
.ws84{word-spacing:7.440000px;}
.ws65{word-spacing:7.860000px;}
.wse4{word-spacing:9.486000px;}
.wsa5{word-spacing:10.380000px;}
.wsf6{word-spacing:13.668000px;}
.ws6b{word-spacing:14.967740px;}
.wsa0{word-spacing:17.500374px;}
.wsf7{word-spacing:17.799000px;}
.ws17{word-spacing:21.456000px;}
.ws60{word-spacing:36.362994px;}
.ws5e{word-spacing:36.363000px;}
.ws1c{word-spacing:72.267000px;}
.ws72{word-spacing:80.682000px;}
.ws70{word-spacing:80.936989px;}
.ws6d{word-spacing:80.937000px;}
.ws6f{word-spacing:80.988000px;}
.ws6e{word-spacing:84.558000px;}
.ws97{word-spacing:87.873000px;}
.ws71{word-spacing:87.975000px;}
.ws73{word-spacing:101.949000px;}
._56{margin-left:-21.420000px;}
._54{margin-left:-19.890000px;}
._57{margin-left:-18.615000px;}
._55{margin-left:-17.595000px;}
._6{margin-left:-16.575000px;}
._52{margin-left:-15.045000px;}
._51{margin-left:-13.617000px;}
._f{margin-left:-12.374400px;}
._17{margin-left:-10.608009px;}
._d{margin-left:-9.468000px;}
._2d{margin-left:-7.596648px;}
._4{margin-left:-5.640000px;}
._5{margin-left:-3.924000px;}
._3{margin-left:-2.797765px;}
._0{margin-left:-1.632000px;}
._1{width:1.814400px;}
._41{width:2.961617px;}
._c{width:4.014000px;}
._14{width:5.472000px;}
._40{width:6.492000px;}
._42{width:7.575600px;}
._4c{width:8.721000px;}
._45{width:11.172000px;}
._13{width:12.797400px;}
._11{width:13.816800px;}
._15{width:15.606000px;}
._16{width:16.617900px;}
._7{width:18.360000px;}
._2e{width:20.526000px;}
._50{width:21.798600px;}
._53{width:22.851000px;}
._4f{width:24.261000px;}
._4d{width:25.689000px;}
._4b{width:27.024000px;}
._4e{width:28.659000px;}
._44{width:29.994000px;}
._4a{width:31.152000px;}
._12{width:33.000000px;}
._49{width:34.560000px;}
._10{width:36.000000px;}
._2{width:39.540585px;}
._e{width:41.310000px;}
._1e{width:48.290067px;}
._1f{width:49.673989px;}
._24{width:51.714000px;}
._20{width:53.346000px;}
._9{width:54.621000px;}
._28{width:57.069000px;}
._25{width:68.391000px;}
._8{width:72.267000px;}
._29{width:77.214000px;}
._21{width:82.569000px;}
._2b{width:83.691000px;}
._23{width:93.023994px;}
._b{width:98.226000px;}
._3e{width:99.450000px;}
._48{width:100.575000px;}
._30{width:101.589000px;}
._39{width:106.131000px;}
._18{width:107.967000px;}
._22{width:109.191000px;}
._2a{width:117.707989px;}
._3a{width:119.238000px;}
._34{width:124.950000px;}
._33{width:131.631000px;}
._38{width:133.620000px;}
._3d{width:140.454000px;}
._19{width:144.329992px;}
._1a{width:150.450000px;}
._1d{width:152.592000px;}
._3c{width:157.488000px;}
._2f{width:163.149000px;}
._37{width:164.525991px;}
._32{width:175.848000px;}
._47{width:181.356000px;}
._1b{width:195.329992px;}
._27{width:204.305989px;}
._1c{width:209.967613px;}
._31{width:214.149000px;}
._3b{width:223.532995px;}
._46{width:246.789000px;}
._35{width:249.032995px;}
._3f{width:257.549995px;}
._36{width:264.842992px;}
._26{width:284.784000px;}
._2c{width:309.875994px;}
._43{width:497.802550px;}
._a{width:1518.983977px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fsb{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:60.014997px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1f1{bottom:0.091736px;}
.y1f3{bottom:0.429108px;}
.y13e{bottom:5.520447px;}
.y1f0{bottom:9.420410px;}
.y141{bottom:11.527313px;}
.y140{bottom:17.521500px;}
.y1f4{bottom:18.479187px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y3d{bottom:112.944300px;}
.y220{bottom:113.215797px;}
.y73{bottom:113.415298px;}
.y9c{bottom:113.415344px;}
.y1f5{bottom:113.449802px;}
.y1be{bottom:113.509804px;}
.y1bd{bottom:113.635795px;}
.y1dd{bottom:113.695796px;}
.y21e{bottom:114.132294px;}
.y1d8{bottom:114.169796px;}
.y1a2{bottom:114.564297px;}
.y19e{bottom:114.564308px;}
.y103{bottom:114.735168px;}
.yd2{bottom:114.735306px;}
.y18c{bottom:114.874786px;}
.y194{bottom:114.874809px;}
.y2a7{bottom:116.859263px;}
.y152{bottom:118.768948px;}
.y2d{bottom:122.461349px;}
.y128{bottom:123.178949px;}
.y3c{bottom:127.938300px;}
.y21f{bottom:128.209797px;}
.y1bc{bottom:128.629795px;}
.y1dc{bottom:128.689796px;}
.y2a6{bottom:131.853263px;}
.y72{bottom:132.165298px;}
.y9b{bottom:132.165344px;}
.y21d{bottom:132.882294px;}
.y1a1{bottom:133.314297px;}
.y19d{bottom:133.314308px;}
.y102{bottom:133.485168px;}
.yd1{bottom:133.485306px;}
.y18b{bottom:133.624786px;}
.y193{bottom:133.624809px;}
.y1ad{bottom:133.624947px;}
.y22b{bottom:137.509191px;}
.y265{bottom:140.663538px;}
.y2c{bottom:141.211349px;}
.y127{bottom:141.972449px;}
.y15b{bottom:142.616093px;}
.y2a5{bottom:146.847263px;}
.y3b{bottom:148.032303px;}
.y71{bottom:150.915298px;}
.y9a{bottom:150.915344px;}
.y21c{bottom:151.632294px;}
.y1a0{bottom:152.064297px;}
.y19c{bottom:152.064308px;}
.y101{bottom:152.235168px;}
.yd0{bottom:152.235306px;}
.y18a{bottom:152.374786px;}
.y192{bottom:152.374809px;}
.y1ac{bottom:152.374947px;}
.y22a{bottom:152.503191px;}
.y264{bottom:155.657538px;}
.y2b{bottom:159.961349px;}
.y126{bottom:160.689449px;}
.y15a{bottom:161.409593px;}
.y2a4{bottom:161.841263px;}
.y3a{bottom:165.485553px;}
.y70{bottom:169.665298px;}
.y99{bottom:169.665344px;}
.y21b{bottom:170.382294px;}
.y263{bottom:170.651538px;}
.y19f{bottom:170.814297px;}
.y19b{bottom:170.814308px;}
.y100{bottom:170.985168px;}
.ycf{bottom:170.985306px;}
.y189{bottom:171.124786px;}
.y191{bottom:171.124809px;}
.y1ab{bottom:171.124947px;}
.y2a3{bottom:176.835263px;}
.y2a{bottom:178.711349px;}
.y123{bottom:179.617521px;}
.y159{bottom:180.126593px;}
.y39{bottom:185.579556px;}
.y262{bottom:185.645538px;}
.y229{bottom:186.214191px;}
.y6f{bottom:188.415298px;}
.y98{bottom:188.415344px;}
.y125{bottom:188.783710px;}
.y21a{bottom:189.132294px;}
.y19a{bottom:189.564308px;}
.yff{bottom:189.735168px;}
.yce{bottom:189.735306px;}
.y188{bottom:189.874786px;}
.y190{bottom:189.874809px;}
.y1aa{bottom:189.874947px;}
.y2a2{bottom:191.829263px;}
.y122{bottom:194.611521px;}
.y29{bottom:197.461349px;}
.y158{bottom:198.843593px;}
.y261{bottom:200.639538px;}
.y228{bottom:201.208191px;}
.y38{bottom:203.038794px;}
.y124{bottom:203.777710px;}
.y2a1{bottom:206.823263px;}
.y6e{bottom:207.165298px;}
.y97{bottom:207.165344px;}
.y219{bottom:207.882294px;}
.y199{bottom:208.314308px;}
.yfe{bottom:208.485168px;}
.ycd{bottom:208.485306px;}
.y187{bottom:208.624786px;}
.y18f{bottom:208.624809px;}
.y1a9{bottom:208.624947px;}
.y121{bottom:209.605521px;}
.y260{bottom:215.633538px;}
.y227{bottom:216.202191px;}
.y28{bottom:216.211349px;}
.y157{bottom:217.560593px;}
.y37{bottom:218.032794px;}
.y2a0{bottom:221.817263px;}
.y6d{bottom:225.915298px;}
.y96{bottom:225.915344px;}
.y198{bottom:227.064308px;}
.yfd{bottom:227.235168px;}
.ycc{bottom:227.235306px;}
.y186{bottom:227.374786px;}
.y18e{bottom:227.374809px;}
.y1a8{bottom:227.374947px;}
.y25f{bottom:230.627538px;}
.y226{bottom:231.196191px;}
.y27{bottom:234.961349px;}
.y156{bottom:236.277593px;}
.y2e1{bottom:236.563361px;}
.y29f{bottom:236.811263px;}
.y1a5{bottom:237.750298px;}
.y36{bottom:238.126808px;}
.y6c{bottom:244.665298px;}
.y95{bottom:244.665344px;}
.y218{bottom:245.382294px;}
.y25e{bottom:245.621538px;}
.y197{bottom:245.814308px;}
.yfc{bottom:245.985168px;}
.ycb{bottom:245.985306px;}
.y185{bottom:246.124786px;}
.y18d{bottom:246.124809px;}
.y225{bottom:246.190191px;}
.y2e0{bottom:251.557361px;}
.y29e{bottom:251.805263px;}
.y26{bottom:253.711349px;}
.y155{bottom:254.994593px;}
.y25d{bottom:260.615538px;}
.y224{bottom:261.184191px;}
.y35{bottom:263.161046px;}
.y6b{bottom:263.415298px;}
.y94{bottom:263.415344px;}
.y10c{bottom:264.564308px;}
.yfb{bottom:264.735168px;}
.yca{bottom:264.735306px;}
.y184{bottom:264.874786px;}
.y11a{bottom:264.874809px;}
.y2df{bottom:266.551361px;}
.y29d{bottom:266.799263px;}
.y25{bottom:272.461349px;}
.y25c{bottom:275.609538px;}
.y223{bottom:276.178191px;}
.y34{bottom:278.155046px;}
.y2de{bottom:281.545361px;}
.y29c{bottom:281.793263px;}
.y6a{bottom:282.165298px;}
.y93{bottom:282.165344px;}
.y154{bottom:283.082843px;}
.y10b{bottom:283.314308px;}
.yfa{bottom:283.485168px;}
.yc9{bottom:283.485306px;}
.y183{bottom:283.624786px;}
.y119{bottom:283.624809px;}
.y151{bottom:288.908092px;}
.y25b{bottom:290.603538px;}
.y222{bottom:291.172191px;}
.y24{bottom:291.211349px;}
.y2dd{bottom:296.539361px;}
.y29b{bottom:296.787263px;}
.y1a4{bottom:297.330299px;}
.y153{bottom:298.076843px;}
.y33{bottom:300.697046px;}
.y69{bottom:300.915298px;}
.y92{bottom:300.915344px;}
.y10a{bottom:302.064308px;}
.yf9{bottom:302.235168px;}
.yc8{bottom:302.235306px;}
.y182{bottom:302.374786px;}
.y118{bottom:302.374809px;}
.y150{bottom:303.902092px;}
.y25a{bottom:305.597538px;}
.y221{bottom:306.166191px;}
.y23{bottom:309.961349px;}
.y217{bottom:311.308823px;}
.y2dc{bottom:311.533361px;}
.y29a{bottom:311.781263px;}
.y32{bottom:315.691046px;}
.y68{bottom:319.665298px;}
.y91{bottom:319.665344px;}
.y259{bottom:320.591538px;}
.y109{bottom:320.814285px;}
.yf8{bottom:320.985168px;}
.yc7{bottom:320.985306px;}
.y181{bottom:321.124786px;}
.y117{bottom:321.124809px;}
.y314{bottom:326.017337px;}
.y2db{bottom:326.527361px;}
.y299{bottom:326.775263px;}
.y22{bottom:328.711349px;}
.y216{bottom:330.058823px;}
.y258{bottom:335.585538px;}
.y31{bottom:338.233046px;}
.y67{bottom:338.415298px;}
.y90{bottom:338.415344px;}
.y108{bottom:339.564285px;}
.yf7{bottom:339.735168px;}
.yc6{bottom:339.735306px;}
.y180{bottom:339.874786px;}
.y116{bottom:339.874809px;}
.y313{bottom:341.011337px;}
.y2da{bottom:341.521361px;}
.y298{bottom:341.769263px;}
.y21{bottom:347.461349px;}
.y215{bottom:348.808823px;}
.y257{bottom:350.579538px;}
.y30{bottom:353.227046px;}
.y2d9{bottom:356.515361px;}
.y297{bottom:356.763263px;}
.y66{bottom:357.165298px;}
.y8f{bottom:357.165344px;}
.y107{bottom:358.314285px;}
.yf6{bottom:358.485168px;}
.yc5{bottom:358.485306px;}
.y14d{bottom:358.624786px;}
.y115{bottom:358.624809px;}
.y256{bottom:365.573538px;}
.y20{bottom:366.211349px;}
.y214{bottom:367.558823px;}
.y13b{bottom:368.149796px;}
.y2d8{bottom:371.509361px;}
.y296{bottom:371.757263px;}
.y312{bottom:371.853587px;}
.y2f{bottom:375.769046px;}
.y65{bottom:375.915298px;}
.y8e{bottom:375.915344px;}
.y106{bottom:377.064285px;}
.yf5{bottom:377.235168px;}
.yc4{bottom:377.235306px;}
.y114{bottom:377.374786px;}
.y255{bottom:380.567538px;}
.y1f{bottom:384.961349px;}
.y213{bottom:386.308823px;}
.y2d7{bottom:386.503361px;}
.y295{bottom:386.751263px;}
.y311{bottom:386.847587px;}
.y13a{bottom:386.899796px;}
.y2e{bottom:390.763046px;}
.y64{bottom:394.665298px;}
.y8d{bottom:394.665344px;}
.y254{bottom:395.561538px;}
.y105{bottom:395.814285px;}
.yf4{bottom:395.985168px;}
.yc3{bottom:395.985306px;}
.y113{bottom:396.124786px;}
.y2d6{bottom:401.497361px;}
.y294{bottom:401.745263px;}
.y310{bottom:401.841587px;}
.y1e{bottom:403.711349px;}
.y212{bottom:405.058823px;}
.y139{bottom:405.649796px;}
.y253{bottom:410.555538px;}
.y63{bottom:413.415298px;}
.y8c{bottom:413.415344px;}
.y104{bottom:414.564285px;}
.yf3{bottom:414.735168px;}
.yc2{bottom:414.735260px;}
.y16d{bottom:414.735306px;}
.y112{bottom:414.874786px;}
.y2d5{bottom:416.491361px;}
.y293{bottom:416.739263px;}
.y30f{bottom:416.835587px;}
.y211{bottom:423.808823px;}
.y138{bottom:424.399796px;}
.y252{bottom:425.549538px;}
.y2d4{bottom:431.485361px;}
.y292{bottom:431.733263px;}
.y30e{bottom:431.829587px;}
.y62{bottom:432.165298px;}
.y8b{bottom:432.165344px;}
.yf2{bottom:433.485168px;}
.yc1{bottom:433.485260px;}
.y16c{bottom:433.485306px;}
.y14c{bottom:433.624786px;}
.y251{bottom:440.543538px;}
.y1d{bottom:441.211349px;}
.y210{bottom:442.558823px;}
.y137{bottom:443.149796px;}
.y2d3{bottom:446.479361px;}
.y291{bottom:446.727263px;}
.y30d{bottom:446.823587px;}
.y61{bottom:450.915298px;}
.y8a{bottom:450.915344px;}
.yf1{bottom:452.235168px;}
.yc0{bottom:452.235260px;}
.y16b{bottom:452.235306px;}
.y111{bottom:452.374786px;}
.y250{bottom:455.537538px;}
.y1db{bottom:460.384635px;}
.y20f{bottom:461.308777px;}
.y2d2{bottom:461.473361px;}
.y290{bottom:461.721263px;}
.y30c{bottom:461.817587px;}
.y136{bottom:461.899796px;}
.y11e{bottom:468.909302px;}
.y60{bottom:469.665298px;}
.y89{bottom:469.665344px;}
.y24f{bottom:470.531538px;}
.yf0{bottom:470.985168px;}
.ybf{bottom:470.985260px;}
.y16a{bottom:470.985306px;}
.y14b{bottom:471.124786px;}
.y2d1{bottom:476.467361px;}
.y28f{bottom:476.715263px;}
.y30b{bottom:476.811587px;}
.y20e{bottom:480.058777px;}
.y135{bottom:480.649796px;}
.y24e{bottom:485.525538px;}
.y5f{bottom:488.415298px;}
.y88{bottom:488.415344px;}
.y1da{bottom:488.472885px;}
.y1ba{bottom:489.694794px;}
.yef{bottom:489.735168px;}
.ybe{bottom:489.735260px;}
.y169{bottom:489.735306px;}
.y14a{bottom:489.874786px;}
.y110{bottom:489.879308px;}
.y2d0{bottom:491.461361px;}
.y28e{bottom:491.709263px;}
.y30a{bottom:491.805587px;}
.y120{bottom:492.463477px;}
.y1c{bottom:497.461395px;}
.y20d{bottom:498.808777px;}
.y134{bottom:499.399796px;}
.y24d{bottom:500.519538px;}
.y2cf{bottom:506.455361px;}
.y28d{bottom:506.703263px;}
.y309{bottom:506.799587px;}
.y5e{bottom:507.165298px;}
.y87{bottom:507.165344px;}
.y1b9{bottom:508.444794px;}
.yee{bottom:508.485168px;}
.ybd{bottom:508.485260px;}
.y168{bottom:508.485306px;}
.y149{bottom:508.624786px;}
.y10f{bottom:508.629308px;}
.y1d9{bottom:513.958796px;}
.y24c{bottom:515.513538px;}
.y1b{bottom:516.211395px;}
.y20c{bottom:517.558777px;}
.y133{bottom:518.149796px;}
.y11f{bottom:520.551727px;}
.y2ce{bottom:521.449361px;}
.y28c{bottom:521.697263px;}
.y308{bottom:521.793587px;}
.y5d{bottom:525.915298px;}
.y86{bottom:525.915344px;}
.y1b8{bottom:527.194794px;}
.yed{bottom:527.235168px;}
.ybc{bottom:527.235260px;}
.y167{bottom:527.235306px;}
.y148{bottom:527.374786px;}
.y10e{bottom:527.379308px;}
.y24b{bottom:530.507538px;}
.y20b{bottom:536.308777px;}
.y2cd{bottom:536.443361px;}
.y28b{bottom:536.691263px;}
.y307{bottom:536.787587px;}
.y132{bottom:536.899796px;}
.y5c{bottom:544.665298px;}
.y85{bottom:544.665344px;}
.y24a{bottom:545.501538px;}
.y1b7{bottom:545.944794px;}
.yec{bottom:545.985168px;}
.ybb{bottom:545.985260px;}
.y166{bottom:545.985306px;}
.y11d{bottom:546.046062px;}
.y147{bottom:546.124786px;}
.y10d{bottom:546.129308px;}
.y2cc{bottom:551.437361px;}
.y28a{bottom:551.685263px;}
.y306{bottom:551.781587px;}
.y1a{bottom:553.711395px;}
.y20a{bottom:555.058777px;}
.y131{bottom:555.649796px;}
.y249{bottom:560.495538px;}
.y5b{bottom:563.415298px;}
.y84{bottom:563.415344px;}
.y1b6{bottom:564.694931px;}
.yeb{bottom:564.735168px;}
.yba{bottom:564.735260px;}
.y165{bottom:564.735306px;}
.y146{bottom:564.874786px;}
.y2cb{bottom:566.431361px;}
.y289{bottom:566.679263px;}
.y305{bottom:566.775587px;}
.y19{bottom:572.461395px;}
.y209{bottom:573.808777px;}
.y130{bottom:574.399796px;}
.y248{bottom:575.489538px;}
.y1d7{bottom:581.283325px;}
.y2ca{bottom:581.425361px;}
.y288{bottom:581.673263px;}
.y304{bottom:581.769587px;}
.y5a{bottom:582.165298px;}
.y83{bottom:582.165344px;}
.y1b5{bottom:583.444931px;}
.yb9{bottom:583.485260px;}
.y164{bottom:583.485306px;}
.y1a7{bottom:583.624786px;}
.y247{bottom:590.483538px;}
.y18{bottom:591.211395px;}
.y208{bottom:592.558777px;}
.y12f{bottom:593.149796px;}
.y11c{bottom:594.916812px;}
.y2c9{bottom:596.419361px;}
.y287{bottom:596.667263px;}
.y303{bottom:596.763587px;}
.y1d6{bottom:600.033325px;}
.y59{bottom:600.915298px;}
.y82{bottom:600.915344px;}
.y1a3{bottom:602.170807px;}
.y1b4{bottom:602.194931px;}
.yea{bottom:602.235168px;}
.yb8{bottom:602.235260px;}
.y163{bottom:602.235306px;}
.y145{bottom:602.374786px;}
.y1ed{bottom:604.710306px;}
.y246{bottom:605.477538px;}
.y11b{bottom:609.910812px;}
.y17{bottom:609.961395px;}
.y207{bottom:611.308777px;}
.y2c8{bottom:611.413361px;}
.y286{bottom:611.661263px;}
.y302{bottom:611.757587px;}
.y12e{bottom:611.899790px;}
.y196{bottom:614.176807px;}
.y1d5{bottom:618.783325px;}
.y58{bottom:619.665344px;}
.y245{bottom:620.471538px;}
.y1b3{bottom:620.944931px;}
.yb7{bottom:620.985260px;}
.y162{bottom:620.985306px;}
.y1a6{bottom:621.124786px;}
.y1ec{bottom:623.460306px;}
.y2c7{bottom:626.407361px;}
.y285{bottom:626.655263px;}
.y301{bottom:626.751587px;}
.y16{bottom:628.711395px;}
.y195{bottom:629.170807px;}
.y206{bottom:630.058777px;}
.y12d{bottom:630.649790px;}
.y244{bottom:635.465538px;}
.y1d4{bottom:637.533325px;}
.y57{bottom:638.415344px;}
.y1b2{bottom:639.694931px;}
.ye9{bottom:639.735168px;}
.yb6{bottom:639.735260px;}
.y161{bottom:639.735306px;}
.y144{bottom:639.874786px;}
.y2c6{bottom:641.401361px;}
.y284{bottom:641.649263px;}
.y300{bottom:641.745587px;}
.y1eb{bottom:642.210306px;}
.y15{bottom:647.461395px;}
.y205{bottom:648.808777px;}
.y243{bottom:650.459538px;}
.y1d3{bottom:656.283325px;}
.y2c5{bottom:656.395361px;}
.y283{bottom:656.643263px;}
.y2ff{bottom:656.739587px;}
.y56{bottom:657.165344px;}
.y1b1{bottom:658.444931px;}
.yb5{bottom:658.485260px;}
.y160{bottom:658.485306px;}
.y143{bottom:658.624786px;}
.y13d{bottom:658.774521px;}
.y1ea{bottom:660.960306px;}
.y13c{bottom:662.449796px;}
.y13f{bottom:664.294968px;}
.y242{bottom:665.453538px;}
.y14{bottom:666.211395px;}
.y204{bottom:667.558777px;}
.y2c4{bottom:671.389361px;}
.y282{bottom:671.637263px;}
.y2fe{bottom:671.733587px;}
.y1d2{bottom:675.033325px;}
.y55{bottom:675.915344px;}
.y1b0{bottom:677.194931px;}
.yb4{bottom:677.235260px;}
.y15f{bottom:677.235306px;}
.y142{bottom:677.374786px;}
.y1e9{bottom:679.710306px;}
.y241{bottom:680.447538px;}
.y13{bottom:684.961395px;}
.y22c{bottom:686.230820px;}
.y203{bottom:686.308777px;}
.y2c3{bottom:686.383361px;}
.y281{bottom:686.631263px;}
.y2fd{bottom:686.727587px;}
.y1d1{bottom:693.783325px;}
.y54{bottom:694.665344px;}
.y240{bottom:695.441538px;}
.y1af{bottom:695.944931px;}
.ye8{bottom:695.985168px;}
.yb3{bottom:695.985260px;}
.y15e{bottom:695.985306px;}
.y12c{bottom:696.124786px;}
.y1e8{bottom:698.460306px;}
.y2c2{bottom:701.377361px;}
.y280{bottom:701.625263px;}
.y2fc{bottom:701.721587px;}
.y12{bottom:703.711395px;}
.y202{bottom:705.058777px;}
.y23f{bottom:710.435538px;}
.y1d0{bottom:712.533325px;}
.y53{bottom:713.415344px;}
.ye7{bottom:714.735168px;}
.yb2{bottom:714.735260px;}
.y15d{bottom:714.735306px;}
.y12b{bottom:714.874786px;}
.y2c1{bottom:716.371361px;}
.y27f{bottom:716.619263px;}
.y2fb{bottom:716.715587px;}
.y1e7{bottom:717.210306px;}
.y11{bottom:722.461395px;}
.y201{bottom:723.808777px;}
.y23e{bottom:725.429538px;}
.y1cf{bottom:731.283325px;}
.y2c0{bottom:731.365361px;}
.y27e{bottom:731.613263px;}
.y2fa{bottom:731.709587px;}
.y52{bottom:732.165344px;}
.y1ae{bottom:733.444931px;}
.ye6{bottom:733.485168px;}
.yb1{bottom:733.485260px;}
.y17f{bottom:733.485306px;}
.y12a{bottom:733.624786px;}
.y1e6{bottom:735.960306px;}
.y23d{bottom:740.423538px;}
.y10{bottom:741.211395px;}
.y200{bottom:742.558777px;}
.y2bf{bottom:746.359361px;}
.y27d{bottom:746.607263px;}
.y2f9{bottom:746.703587px;}
.y1ce{bottom:750.033325px;}
.y51{bottom:750.915344px;}
.ye5{bottom:752.235168px;}
.yb0{bottom:752.235260px;}
.y15c{bottom:752.235306px;}
.y129{bottom:752.374786px;}
.y1e5{bottom:754.710306px;}
.yf{bottom:759.961395px;}
.y1ff{bottom:761.308777px;}
.y2be{bottom:761.353361px;}
.y27c{bottom:761.601263px;}
.y2f8{bottom:761.697587px;}
.y1cd{bottom:768.783325px;}
.y50{bottom:769.665344px;}
.ye4{bottom:770.985168px;}
.yaf{bottom:770.985260px;}
.y17e{bottom:770.985306px;}
.y1e4{bottom:773.460306px;}
.y23c{bottom:774.173584px;}
.y2bd{bottom:776.347361px;}
.y27b{bottom:776.595263px;}
.y2f7{bottom:776.691587px;}
.ye{bottom:778.711395px;}
.y1fe{bottom:780.058777px;}
.y1bb{bottom:781.810913px;}
.y1cc{bottom:787.533325px;}
.y4f{bottom:788.415344px;}
.ye3{bottom:789.735168px;}
.yae{bottom:789.735260px;}
.y17d{bottom:789.735306px;}
.y2bc{bottom:791.341361px;}
.y27a{bottom:791.589263px;}
.y2f6{bottom:791.685587px;}
.y1e3{bottom:792.210306px;}
.yd{bottom:797.461395px;}
.y1fd{bottom:798.808777px;}
.y1cb{bottom:806.283325px;}
.y2bb{bottom:806.335361px;}
.y279{bottom:806.583263px;}
.y2f5{bottom:806.679587px;}
.y4e{bottom:807.165344px;}
.ye2{bottom:808.485168px;}
.yad{bottom:808.485260px;}
.y17c{bottom:808.485306px;}
.y1e2{bottom:810.960306px;}
.yc{bottom:816.211395px;}
.y1fc{bottom:817.558777px;}
.y2ba{bottom:821.329361px;}
.y278{bottom:821.577263px;}
.y2f4{bottom:821.673587px;}
.y1ca{bottom:825.033325px;}
.y4d{bottom:825.915344px;}
.ye1{bottom:827.235168px;}
.yac{bottom:827.235260px;}
.y17b{bottom:827.235306px;}
.y1e1{bottom:829.710306px;}
.yb{bottom:834.961395px;}
.y1fb{bottom:836.308777px;}
.y2b9{bottom:836.323361px;}
.y277{bottom:836.571263px;}
.y2f3{bottom:836.667587px;}
.y23b{bottom:841.155342px;}
.y1c9{bottom:843.783325px;}
.y81{bottom:844.665298px;}
.y4c{bottom:844.665344px;}
.ye0{bottom:845.985168px;}
.yab{bottom:845.985260px;}
.y17a{bottom:845.985306px;}
.y1e0{bottom:848.460306px;}
.y2b8{bottom:851.317361px;}
.y276{bottom:851.565263px;}
.y2f2{bottom:851.661587px;}
.y1fa{bottom:855.058777px;}
.y23a{bottom:856.149342px;}
.y1c8{bottom:862.533325px;}
.y80{bottom:863.415298px;}
.y4b{bottom:863.415344px;}
.ydf{bottom:864.735168px;}
.yaa{bottom:864.735260px;}
.y179{bottom:864.735306px;}
.y2b7{bottom:866.311361px;}
.y275{bottom:866.559263px;}
.y2f1{bottom:866.655587px;}
.y1df{bottom:867.210306px;}
.y239{bottom:871.143342px;}
.y1f9{bottom:873.808777px;}
.ya{bottom:879.144153px;}
.y1c7{bottom:881.283325px;}
.y2b6{bottom:881.305361px;}
.y274{bottom:881.553263px;}
.y2f0{bottom:881.649587px;}
.y7f{bottom:882.165298px;}
.y4a{bottom:882.165344px;}
.yde{bottom:883.485168px;}
.ya9{bottom:883.485260px;}
.y178{bottom:883.485306px;}
.y1de{bottom:885.960306px;}
.y238{bottom:886.137342px;}
.y1f8{bottom:892.558777px;}
.y9{bottom:894.138153px;}
.y2b5{bottom:896.299361px;}
.y273{bottom:896.547263px;}
.y2ef{bottom:896.643587px;}
.y1c6{bottom:900.033325px;}
.y7e{bottom:900.915298px;}
.y49{bottom:900.915344px;}
.y237{bottom:901.131342px;}
.ydd{bottom:902.235168px;}
.ya8{bottom:902.235260px;}
.y177{bottom:902.235306px;}
.y2b4{bottom:911.293361px;}
.y1f7{bottom:911.308777px;}
.y272{bottom:911.541263px;}
.y2ee{bottom:911.637587px;}
.y1ef{bottom:914.085022px;}
.y236{bottom:916.125342px;}
.y1c5{bottom:918.783325px;}
.y7d{bottom:919.665298px;}
.y48{bottom:919.665344px;}
.ydc{bottom:920.985168px;}
.ya7{bottom:920.985260px;}
.y176{bottom:920.985306px;}
.y1ee{bottom:921.285299px;}
.y1f2{bottom:923.505432px;}
.y2b3{bottom:926.287361px;}
.y271{bottom:926.535263px;}
.y2ed{bottom:926.631587px;}
.y235{bottom:931.119342px;}
.y8{bottom:936.738190px;}
.y1c4{bottom:937.533325px;}
.y7c{bottom:938.415298px;}
.y47{bottom:938.415344px;}
.ydb{bottom:939.735168px;}
.ya6{bottom:939.735260px;}
.y175{bottom:939.735306px;}
.y2b2{bottom:941.281361px;}
.y270{bottom:941.529263px;}
.y2ec{bottom:941.625587px;}
.y234{bottom:946.113342px;}
.y1f6{bottom:948.808777px;}
.y2b1{bottom:956.275361px;}
.y1c3{bottom:956.283325px;}
.y26f{bottom:956.523263px;}
.y2eb{bottom:956.619587px;}
.y7b{bottom:957.165298px;}
.y46{bottom:957.165344px;}
.yda{bottom:958.485168px;}
.ya5{bottom:958.485260px;}
.y174{bottom:958.485306px;}
.y233{bottom:961.107342px;}
.y2b0{bottom:971.269361px;}
.y26e{bottom:971.517263px;}
.y2ea{bottom:971.613587px;}
.y1c2{bottom:975.033325px;}
.y7a{bottom:975.915298px;}
.y45{bottom:975.915344px;}
.y232{bottom:976.101342px;}
.yd9{bottom:977.235168px;}
.ya4{bottom:977.235260px;}
.y173{bottom:977.235306px;}
.y7{bottom:981.424622px;}
.y2af{bottom:986.263361px;}
.y26d{bottom:986.511263px;}
.y2e9{bottom:986.607587px;}
.y231{bottom:991.095342px;}
.y79{bottom:994.665298px;}
.y44{bottom:994.665344px;}
.yd8{bottom:995.985168px;}
.ya3{bottom:995.985260px;}
.y172{bottom:995.985306px;}
.y2ae{bottom:1001.257361px;}
.y26c{bottom:1001.505263px;}
.y2e8{bottom:1001.601587px;}
.y230{bottom:1006.089342px;}
.y6{bottom:1008.424622px;}
.y1c1{bottom:1012.533325px;}
.y78{bottom:1013.415298px;}
.y43{bottom:1013.415344px;}
.yd7{bottom:1014.735168px;}
.ya2{bottom:1014.735260px;}
.y171{bottom:1014.735306px;}
.y2ad{bottom:1016.251361px;}
.y26b{bottom:1016.499263px;}
.y2e7{bottom:1016.595587px;}
.y2ac{bottom:1031.245361px;}
.y26a{bottom:1031.493263px;}
.y2e6{bottom:1031.589587px;}
.y77{bottom:1032.165298px;}
.y42{bottom:1032.165344px;}
.yd6{bottom:1033.485168px;}
.ya1{bottom:1033.485260px;}
.y170{bottom:1033.485306px;}
.y22f{bottom:1039.800342px;}
.y2ab{bottom:1046.239361px;}
.y269{bottom:1046.487263px;}
.y2e5{bottom:1046.583587px;}
.y1c0{bottom:1050.033325px;}
.y76{bottom:1050.915298px;}
.y41{bottom:1050.915344px;}
.yd5{bottom:1052.235168px;}
.ya0{bottom:1052.235260px;}
.y16f{bottom:1052.235306px;}
.y22e{bottom:1054.794342px;}
.y2aa{bottom:1061.233361px;}
.y268{bottom:1061.481263px;}
.y2e4{bottom:1061.577587px;}
.y75{bottom:1069.665298px;}
.y40{bottom:1069.665344px;}
.yd4{bottom:1070.985168px;}
.y9f{bottom:1070.985260px;}
.y16e{bottom:1070.985306px;}
.y14f{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y2a9{bottom:1076.227361px;}
.y267{bottom:1076.475263px;}
.y2e3{bottom:1076.571587px;}
.y1bf{bottom:1087.533325px;}
.y74{bottom:1088.415298px;}
.y3f{bottom:1088.415344px;}
.y22d{bottom:1088.544342px;}
.y9e{bottom:1089.735260px;}
.yd3{bottom:1089.735306px;}
.y14e{bottom:1090.102844px;}
.y2a8{bottom:1091.221361px;}
.y266{bottom:1091.469263px;}
.y2e2{bottom:1091.565587px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3e{bottom:1127.482361px;}
.y9d{bottom:1127.482544px;}
.h19{height:3.960990px;}
.h16{height:18.599999px;}
.h22{height:25.650000px;}
.h23{height:28.482916px;}
.h1a{height:28.692967px;}
.hd{height:32.986799px;}
.h1b{height:40.090018px;}
.h17{height:40.990243px;}
.h2{height:42.048000px;}
.h18{height:42.610648px;}
.h4{height:44.676000px;}
.hc{height:47.124000px;}
.h20{height:47.843971px;}
.h24{height:51.965751px;}
.h1d{height:53.160000px;}
.h14{height:53.362759px;}
.h1c{height:53.362854px;}
.h13{height:53.386759px;}
.h12{height:53.389909px;}
.h3{height:54.862258px;}
.h9{height:55.440000px;}
.h21{height:55.440183px;}
.h5{height:55.461000px;}
.h10{height:59.004000px;}
.h8{height:59.340000px;}
.h1f{height:62.807451px;}
.he{height:62.807817px;}
.ha{height:62.808000px;}
.h15{height:62.808023px;}
.h25{height:62.808046px;}
.h11{height:62.808092px;}
.hf{height:62.808183px;}
.h1e{height:62.808641px;}
.h7{height:64.866000px;}
.hb{height:71.208000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w3{width:253.889992px;}
.w2{width:253.964996px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x7{left:78.746400px;}
.x4{left:85.181849px;}
.x8{left:93.530404px;}
.x6{left:97.796100px;}
.x1d{left:100.535402px;}
.x1f{left:102.048152px;}
.xe{left:111.501904px;}
.x1a{left:117.314392px;}
.xf{left:119.732397px;}
.x11{left:160.313261px;}
.x10{left:203.288544px;}
.x13{left:245.499144px;}
.x1c{left:248.912247px;}
.x12{left:256.546050px;}
.xb{left:267.873894px;}
.xd{left:416.207274px;}
.x5{left:459.212723px;}
.x14{left:469.898399px;}
.x9{left:476.227778px;}
.x19{left:478.947922px;}
.x1e{left:483.215389px;}
.x20{left:484.726671px;}
.x15{left:538.531648px;}
.x1b{left:600.313202px;}
.x16{left:617.492396px;}
.x17{left:701.629669px;}
.xa{left:707.685745px;}
.x1{left:728.220612px;}
.xc{left:749.207533px;}
.x2{left:755.489868px;}
.x18{left:798.885730px;}
@media print{
.v4{vertical-align:-21.333333pt;}
.v2{vertical-align:-18.133382pt;}
.v3{vertical-align:-13.333333pt;}
.v6{vertical-align:-11.333333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.136098pt;}
.v1{vertical-align:21.333333pt;}
.v7{vertical-align:42.677332pt;}
.ls4d{letter-spacing:-1.586667pt;}
.ls4f{letter-spacing:-0.816000pt;}
.ls5b{letter-spacing:-0.426773pt;}
.ls17{letter-spacing:-0.373333pt;}
.ls33{letter-spacing:-0.320000pt;}
.lsa8{letter-spacing:-0.317333pt;}
.lsbd{letter-spacing:-0.272000pt;}
.ls34{letter-spacing:-0.266667pt;}
.lsbb{letter-spacing:-0.226667pt;}
.ls32{letter-spacing:-0.213333pt;}
.ls4e{letter-spacing:-0.181333pt;}
.ls31{letter-spacing:-0.160000pt;}
.lsaa{letter-spacing:-0.136000pt;}
.ls18{letter-spacing:-0.106667pt;}
.lsbc{letter-spacing:-0.090667pt;}
.ls19{letter-spacing:-0.053333pt;}
.lsa9{letter-spacing:-0.045333pt;}
.ls16{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.000033pt;}
.ls1{letter-spacing:0.000076pt;}
.ls28{letter-spacing:0.026667pt;}
.ls95{letter-spacing:0.045333pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls97{letter-spacing:0.090667pt;}
.ls27{letter-spacing:0.106667pt;}
.ls9d{letter-spacing:0.113333pt;}
.ls5e{letter-spacing:0.133333pt;}
.lsb3{letter-spacing:0.136000pt;}
.ls14{letter-spacing:0.158926pt;}
.lsa{letter-spacing:0.160000pt;}
.ls5f{letter-spacing:0.176025pt;}
.ls8a{letter-spacing:0.181333pt;}
.ls61{letter-spacing:0.186605pt;}
.ls8{letter-spacing:0.186667pt;}
.ls38{letter-spacing:0.186686pt;}
.ls53{letter-spacing:0.187174pt;}
.lsb5{letter-spacing:0.204000pt;}
.ls1c{letter-spacing:0.208000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.226667pt;}
.ls94{letter-spacing:0.234667pt;}
.ls25{letter-spacing:0.240000pt;}
.ls79{letter-spacing:0.244317pt;}
.ls1f{letter-spacing:0.245326pt;}
.ls54{letter-spacing:0.253906pt;}
.ls3d{letter-spacing:0.255988pt;}
.ls98{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.266667pt;}
.ls7a{letter-spacing:0.272000pt;}
.ls40{letter-spacing:0.279948pt;}
.ls1d{letter-spacing:0.293316pt;}
.ls3{letter-spacing:0.293333pt;}
.lsb9{letter-spacing:0.294667pt;}
.ls90{letter-spacing:0.317333pt;}
.ls9{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.330667pt;}
.ls2a{letter-spacing:0.346643pt;}
.ls46{letter-spacing:0.346667pt;}
.ls9f{letter-spacing:0.362667pt;}
.ls5{letter-spacing:0.372228pt;}
.ls26{letter-spacing:0.373210pt;}
.ls10{letter-spacing:0.373333pt;}
.ls2c{letter-spacing:0.378644pt;}
.lsa6{letter-spacing:0.385333pt;}
.ls7d{letter-spacing:0.394036pt;}
.ls36{letter-spacing:0.400000pt;}
.ls96{letter-spacing:0.408000pt;}
.ls13{letter-spacing:0.426667pt;}
.lsb8{letter-spacing:0.430667pt;}
.lsac{letter-spacing:0.453333pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls39{letter-spacing:0.484782pt;}
.ls3b{letter-spacing:0.485352pt;}
.ls52{letter-spacing:0.485921pt;}
.ls51{letter-spacing:0.486410pt;}
.ls8e{letter-spacing:0.498667pt;}
.ls5d{letter-spacing:0.502931pt;}
.ls2b{letter-spacing:0.506667pt;}
.ls88{letter-spacing:0.512533pt;}
.ls60{letter-spacing:0.513590pt;}
.ls47{letter-spacing:0.517333pt;}
.ls4{letter-spacing:0.533333pt;}
.ls8f{letter-spacing:0.544000pt;}
.ls2f{letter-spacing:0.560000pt;}
.lsd{letter-spacing:0.586667pt;}
.ls8b{letter-spacing:0.589333pt;}
.ls5a{letter-spacing:0.613333pt;}
.lse{letter-spacing:0.629333pt;}
.ls99{letter-spacing:0.634667pt;}
.ls12{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.648031pt;}
.ls29{letter-spacing:0.656000pt;}
.ls3e{letter-spacing:0.666667pt;}
.lsa2{letter-spacing:0.680000pt;}
.ls3a{letter-spacing:0.692799pt;}
.ls7{letter-spacing:0.693333pt;}
.ls42{letter-spacing:0.697591pt;}
.lsba{letter-spacing:0.702667pt;}
.ls5c{letter-spacing:0.718925pt;}
.ls8d{letter-spacing:0.725333pt;}
.ls1b{letter-spacing:0.746667pt;}
.ls50{letter-spacing:0.747748pt;}
.lsa7{letter-spacing:0.770667pt;}
.ls2d{letter-spacing:0.773333pt;}
.ls24{letter-spacing:0.779744pt;}
.ls11{letter-spacing:0.800000pt;}
.lsb7{letter-spacing:0.816000pt;}
.ls55{letter-spacing:0.826667pt;}
.lsc{letter-spacing:0.853333pt;}
.ls91{letter-spacing:0.861333pt;}
.ls7f{letter-spacing:0.896218pt;}
.ls21{letter-spacing:0.906667pt;}
.ls72{letter-spacing:0.933268pt;}
.ls9a{letter-spacing:0.952000pt;}
.ls2e{letter-spacing:0.960000pt;}
.ls45{letter-spacing:0.962565pt;}
.ls8c{letter-spacing:0.997333pt;}
.ls41{letter-spacing:1.013333pt;}
.ls7e{letter-spacing:1.018667pt;}
.ls3c{letter-spacing:1.029285pt;}
.lsad{letter-spacing:1.042667pt;}
.lsb{letter-spacing:1.066667pt;}
.lsb1{letter-spacing:1.088000pt;}
.ls23{letter-spacing:1.120000pt;}
.ls93{letter-spacing:1.133333pt;}
.ls6f{letter-spacing:1.134928pt;}
.ls30{letter-spacing:1.173333pt;}
.lsa1{letter-spacing:1.178667pt;}
.lsab{letter-spacing:1.224000pt;}
.ls3f{letter-spacing:1.226667pt;}
.ls81{letter-spacing:1.226973pt;}
.ls6c{letter-spacing:1.253333pt;}
.ls9b{letter-spacing:1.269333pt;}
.ls62{letter-spacing:1.280000pt;}
.ls78{letter-spacing:1.281616pt;}
.ls9c{letter-spacing:1.314667pt;}
.ls20{letter-spacing:1.333333pt;}
.ls92{letter-spacing:1.360000pt;}
.ls44{letter-spacing:1.386667pt;}
.lsb4{letter-spacing:1.405333pt;}
.ls37{letter-spacing:1.440000pt;}
.lsb0{letter-spacing:1.450667pt;}
.ls7b{letter-spacing:1.466667pt;}
.ls77{letter-spacing:1.485270pt;}
.ls35{letter-spacing:1.493333pt;}
.lsae{letter-spacing:1.496000pt;}
.lsa3{letter-spacing:1.541333pt;}
.ls7c{letter-spacing:1.546667pt;}
.lsa4{letter-spacing:1.564000pt;}
.lsb6{letter-spacing:1.586667pt;}
.ls6e{letter-spacing:1.600000pt;}
.ls75{letter-spacing:1.653333pt;}
.ls9e{letter-spacing:1.677333pt;}
.ls6b{letter-spacing:1.680000pt;}
.ls89{letter-spacing:1.706667pt;}
.ls73{letter-spacing:1.717333pt;}
.ls67{letter-spacing:1.760000pt;}
.lsaf{letter-spacing:1.768000pt;}
.ls6a{letter-spacing:1.786667pt;}
.ls43{letter-spacing:1.813333pt;}
.lsa0{letter-spacing:1.858667pt;}
.ls66{letter-spacing:1.920000pt;}
.ls70{letter-spacing:1.973333pt;}
.lsa5{letter-spacing:1.994667pt;}
.lsb2{letter-spacing:2.040000pt;}
.ls63{letter-spacing:2.053333pt;}
.ls69{letter-spacing:2.080000pt;}
.ls6d{letter-spacing:2.133333pt;}
.ls83{letter-spacing:2.133867pt;}
.ls87{letter-spacing:2.240000pt;}
.ls68{letter-spacing:2.293333pt;}
.ls64{letter-spacing:2.346667pt;}
.ls71{letter-spacing:2.437324pt;}
.ls74{letter-spacing:2.506667pt;}
.ls76{letter-spacing:2.613333pt;}
.ls80{letter-spacing:2.641296pt;}
.ls85{letter-spacing:2.641300pt;}
.ls84{letter-spacing:2.667370pt;}
.ls86{letter-spacing:2.667533pt;}
.ls57{letter-spacing:2.688745pt;}
.ls65{letter-spacing:2.773333pt;}
.ls0{letter-spacing:3.546667pt;}
.ls82{letter-spacing:8.908893pt;}
.ls56{letter-spacing:11.842960pt;}
.ls58{letter-spacing:14.830373pt;}
.ls59{letter-spacing:21.925479pt;}
.ls49{letter-spacing:43.635287pt;}
.ls4b{letter-spacing:43.635775pt;}
.ls4c{letter-spacing:43.636264pt;}
.ls48{letter-spacing:95.385612pt;}
.ws2{word-spacing:-16.384000pt;}
.ws96{word-spacing:-14.453333pt;}
.wsa1{word-spacing:-14.293333pt;}
.ws21{word-spacing:-14.133333pt;}
.ws1e{word-spacing:-13.600000pt;}
.ws43{word-spacing:-13.333333pt;}
.ws20{word-spacing:-13.280000pt;}
.wsb5{word-spacing:-13.184000pt;}
.ws8b{word-spacing:-13.013333pt;}
.ws9e{word-spacing:-12.960000pt;}
.ws55{word-spacing:-12.928000pt;}
.wsd6{word-spacing:-12.194667pt;}
.wsa9{word-spacing:-11.560000pt;}
.ws8{word-spacing:-11.333333pt;}
.ws5f{word-spacing:-11.152000pt;}
.ws56{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws61{word-spacing:-10.517333pt;}
.ws6{word-spacing:-10.240000pt;}
.wsaa{word-spacing:-9.565333pt;}
.ws1f{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws7{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws29{word-spacing:-6.666667pt;}
.ws8a{word-spacing:-1.973333pt;}
.ws8e{word-spacing:-1.920000pt;}
.ws88{word-spacing:-1.706667pt;}
.ws9{word-spacing:-1.680000pt;}
.ws95{word-spacing:-1.600000pt;}
.ws9a{word-spacing:-1.546667pt;}
.ws99{word-spacing:-1.440000pt;}
.ws2c{word-spacing:-1.386667pt;}
.wsf{word-spacing:-1.333333pt;}
.ws34{word-spacing:-1.280000pt;}
.ws13{word-spacing:-1.226667pt;}
.wsd8{word-spacing:-1.224000pt;}
.ws39{word-spacing:-1.173333pt;}
.wsba{word-spacing:-1.133333pt;}
.ws98{word-spacing:-1.120000pt;}
.wsc3{word-spacing:-1.088000pt;}
.ws44{word-spacing:-1.066667pt;}
.ws5d{word-spacing:-1.013333pt;}
.ws63{word-spacing:-0.960000pt;}
.wsbc{word-spacing:-0.952000pt;}
.ws38{word-spacing:-0.906667pt;}
.wsb9{word-spacing:-0.861333pt;}
.ws15{word-spacing:-0.853333pt;}
.ws2b{word-spacing:-0.800000pt;}
.ws3e{word-spacing:-0.746667pt;}
.wsf4{word-spacing:-0.725333pt;}
.ws23{word-spacing:-0.693333pt;}
.wsbd{word-spacing:-0.680000pt;}
.ws16{word-spacing:-0.640000pt;}
.wsbe{word-spacing:-0.634667pt;}
.wsda{word-spacing:-0.589333pt;}
.ws3a{word-spacing:-0.586667pt;}
.ws1d{word-spacing:-0.544000pt;}
.ws3d{word-spacing:-0.533333pt;}
.wsb{word-spacing:-0.506667pt;}
.wsd5{word-spacing:-0.498667pt;}
.ws3c{word-spacing:-0.480000pt;}
.wsef{word-spacing:-0.453333pt;}
.ws30{word-spacing:-0.426667pt;}
.ws11{word-spacing:-0.373333pt;}
.wscd{word-spacing:-0.362667pt;}
.ws47{word-spacing:-0.320000pt;}
.wsdd{word-spacing:-0.317333pt;}
.wsed{word-spacing:-0.272000pt;}
.ws24{word-spacing:-0.266667pt;}
.wsb6{word-spacing:-0.234667pt;}
.wsb4{word-spacing:-0.226667pt;}
.ws76{word-spacing:-0.213333pt;}
.wsde{word-spacing:-0.181333pt;}
.ws4e{word-spacing:-0.160000pt;}
.ws42{word-spacing:-0.106667pt;}
.wsc0{word-spacing:-0.090667pt;}
.ws6a{word-spacing:-0.053347pt;}
.ws12{word-spacing:-0.053333pt;}
.wscb{word-spacing:-0.045333pt;}
.ws9f{word-spacing:-0.037342pt;}
.wsa{word-spacing:0.000000pt;}
.wsdc{word-spacing:0.045333pt;}
.ws45{word-spacing:0.053333pt;}
.ws4d{word-spacing:0.106667pt;}
.wsc5{word-spacing:0.136000pt;}
.ws10{word-spacing:0.160000pt;}
.wsd{word-spacing:0.213333pt;}
.wsc1{word-spacing:0.226667pt;}
.ws3f{word-spacing:0.266667pt;}
.wsf5{word-spacing:0.272000pt;}
.wsb7{word-spacing:0.317333pt;}
.ws35{word-spacing:0.320000pt;}
.wsa6{word-spacing:0.373333pt;}
.ws6c{word-spacing:0.373427pt;}
.wsb8{word-spacing:0.408000pt;}
.ws74{word-spacing:0.426667pt;}
.wsc4{word-spacing:0.453333pt;}
.ws14{word-spacing:0.480000pt;}
.ws78{word-spacing:0.533333pt;}
.wsd0{word-spacing:0.544000pt;}
.ws26{word-spacing:0.586667pt;}
.wsc2{word-spacing:0.589333pt;}
.wsce{word-spacing:0.680000pt;}
.ws2e{word-spacing:0.693333pt;}
.wsee{word-spacing:0.725333pt;}
.ws7a{word-spacing:0.746667pt;}
.wse1{word-spacing:0.770667pt;}
.ws4a{word-spacing:0.800000pt;}
.ws22{word-spacing:0.853333pt;}
.ws3b{word-spacing:0.906667pt;}
.ws7c{word-spacing:0.960000pt;}
.ws1b{word-spacing:1.013333pt;}
.wsbb{word-spacing:1.042667pt;}
.ws79{word-spacing:1.066667pt;}
.ws2f{word-spacing:1.120000pt;}
.wsae{word-spacing:1.133333pt;}
.ws75{word-spacing:1.173333pt;}
.wsd3{word-spacing:1.178667pt;}
.ws5b{word-spacing:1.226667pt;}
.wse7{word-spacing:1.269333pt;}
.ws51{word-spacing:1.280000pt;}
.wsaf{word-spacing:1.314667pt;}
.wsc{word-spacing:1.333333pt;}
.wsa8{word-spacing:1.360000pt;}
.ws25{word-spacing:1.386667pt;}
.wsd1{word-spacing:1.405333pt;}
.ws2d{word-spacing:1.440000pt;}
.wsbf{word-spacing:1.450667pt;}
.ws1a{word-spacing:1.493333pt;}
.wse{word-spacing:1.546667pt;}
.ws69{word-spacing:1.586667pt;}
.ws4c{word-spacing:1.600000pt;}
.wsd4{word-spacing:1.632000pt;}
.ws54{word-spacing:1.653333pt;}
.wsd9{word-spacing:1.677333pt;}
.ws90{word-spacing:1.706667pt;}
.ws50{word-spacing:1.760000pt;}
.ws80{word-spacing:1.813333pt;}
.wsea{word-spacing:1.858667pt;}
.ws31{word-spacing:1.866667pt;}
.wsec{word-spacing:1.904000pt;}
.ws33{word-spacing:1.920000pt;}
.ws5c{word-spacing:1.973333pt;}
.wsb2{word-spacing:1.994667pt;}
.ws67{word-spacing:2.026667pt;}
.wscc{word-spacing:2.040000pt;}
.ws36{word-spacing:2.080000pt;}
.ws19{word-spacing:2.133333pt;}
.ws40{word-spacing:2.186667pt;}
.ws85{word-spacing:2.240000pt;}
.wse2{word-spacing:2.266667pt;}
.ws8d{word-spacing:2.293333pt;}
.wseb{word-spacing:2.312000pt;}
.ws46{word-spacing:2.346667pt;}
.ws7b{word-spacing:2.400000pt;}
.wsf2{word-spacing:2.402667pt;}
.wsf0{word-spacing:2.448000pt;}
.ws37{word-spacing:2.453333pt;}
.wse0{word-spacing:2.493333pt;}
.ws57{word-spacing:2.506667pt;}
.ws68{word-spacing:2.538667pt;}
.ws91{word-spacing:2.560000pt;}
.ws59{word-spacing:2.613333pt;}
.ws28{word-spacing:2.666667pt;}
.wsa2{word-spacing:2.720000pt;}
.wsdf{word-spacing:2.765333pt;}
.ws64{word-spacing:2.773333pt;}
.ws32{word-spacing:2.826667pt;}
.wscf{word-spacing:2.856000pt;}
.wsab{word-spacing:2.880000pt;}
.ws82{word-spacing:2.933333pt;}
.wsc8{word-spacing:2.946667pt;}
.ws62{word-spacing:2.986667pt;}
.wsc6{word-spacing:2.992000pt;}
.ws77{word-spacing:3.040000pt;}
.ws86{word-spacing:3.093333pt;}
.wsf1{word-spacing:3.128000pt;}
.ws58{word-spacing:3.146667pt;}
.ws18{word-spacing:3.200000pt;}
.wsf3{word-spacing:3.218667pt;}
.ws89{word-spacing:3.253333pt;}
.wsb1{word-spacing:3.264000pt;}
.ws5a{word-spacing:3.306667pt;}
.ws4b{word-spacing:3.413333pt;}
.ws87{word-spacing:3.445333pt;}
.wsa4{word-spacing:3.466667pt;}
.ws9c{word-spacing:3.520000pt;}
.ws2a{word-spacing:3.573333pt;}
.ws4f{word-spacing:3.626667pt;}
.wse3{word-spacing:3.717333pt;}
.wsb3{word-spacing:3.808000pt;}
.ws94{word-spacing:3.893333pt;}
.wsd2{word-spacing:3.944000pt;}
.ws41{word-spacing:3.946667pt;}
.wse5{word-spacing:3.989333pt;}
.ws52{word-spacing:4.053333pt;}
.wsc7{word-spacing:4.080000pt;}
.ws81{word-spacing:4.160000pt;}
.ws9b{word-spacing:4.213333pt;}
.ws53{word-spacing:4.266667pt;}
.ws7f{word-spacing:4.320000pt;}
.ws83{word-spacing:4.373333pt;}
.wsd7{word-spacing:4.488000pt;}
.ws7e{word-spacing:4.533333pt;}
.ws93{word-spacing:4.586667pt;}
.ws27{word-spacing:4.640000pt;}
.wsa7{word-spacing:4.693333pt;}
.wsc9{word-spacing:4.714667pt;}
.wsca{word-spacing:4.805333pt;}
.ws66{word-spacing:4.853333pt;}
.wsb0{word-spacing:4.986667pt;}
.ws7d{word-spacing:5.013333pt;}
.wsdb{word-spacing:5.077333pt;}
.ws49{word-spacing:5.173333pt;}
.wse6{word-spacing:5.213333pt;}
.ws8c{word-spacing:5.226667pt;}
.ws48{word-spacing:5.386667pt;}
.wsa3{word-spacing:5.493333pt;}
.wse9{word-spacing:5.530667pt;}
.ws8f{word-spacing:5.706667pt;}
.wsad{word-spacing:6.080000pt;}
.wse8{word-spacing:6.120000pt;}
.ws92{word-spacing:6.256000pt;}
.ws9d{word-spacing:6.346667pt;}
.wsac{word-spacing:6.453333pt;}
.ws84{word-spacing:6.613333pt;}
.ws65{word-spacing:6.986667pt;}
.wse4{word-spacing:8.432000pt;}
.wsa5{word-spacing:9.226667pt;}
.wsf6{word-spacing:12.149333pt;}
.ws6b{word-spacing:13.304658pt;}
.wsa0{word-spacing:15.555888pt;}
.wsf7{word-spacing:15.821333pt;}
.ws17{word-spacing:19.072000pt;}
.ws60{word-spacing:32.322661pt;}
.ws5e{word-spacing:32.322667pt;}
.ws1c{word-spacing:64.237333pt;}
.ws72{word-spacing:71.717333pt;}
.ws70{word-spacing:71.943990pt;}
.ws6d{word-spacing:71.944000pt;}
.ws6f{word-spacing:71.989333pt;}
.ws6e{word-spacing:75.162667pt;}
.ws97{word-spacing:78.109333pt;}
.ws71{word-spacing:78.200000pt;}
.ws73{word-spacing:90.621333pt;}
._56{margin-left:-19.040000pt;}
._54{margin-left:-17.680000pt;}
._57{margin-left:-16.546667pt;}
._55{margin-left:-15.640000pt;}
._6{margin-left:-14.733333pt;}
._52{margin-left:-13.373333pt;}
._51{margin-left:-12.104000pt;}
._f{margin-left:-10.999467pt;}
._17{margin-left:-9.429341pt;}
._d{margin-left:-8.416000pt;}
._2d{margin-left:-6.752576pt;}
._4{margin-left:-5.013333pt;}
._5{margin-left:-3.488000pt;}
._3{margin-left:-2.486902pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.612800pt;}
._41{width:2.632549pt;}
._c{width:3.568000pt;}
._14{width:4.864000pt;}
._40{width:5.770667pt;}
._42{width:6.733867pt;}
._4c{width:7.752000pt;}
._45{width:9.930667pt;}
._13{width:11.375466pt;}
._11{width:12.281600pt;}
._15{width:13.872000pt;}
._16{width:14.771466pt;}
._7{width:16.320000pt;}
._2e{width:18.245333pt;}
._50{width:19.376533pt;}
._53{width:20.312000pt;}
._4f{width:21.565333pt;}
._4d{width:22.834667pt;}
._4b{width:24.021333pt;}
._4e{width:25.474667pt;}
._44{width:26.661333pt;}
._4a{width:27.690667pt;}
._12{width:29.333333pt;}
._49{width:30.720000pt;}
._10{width:32.000000pt;}
._2{width:35.147187pt;}
._e{width:36.720000pt;}
._1e{width:42.924504pt;}
._1f{width:44.154657pt;}
._24{width:45.968000pt;}
._20{width:47.418667pt;}
._9{width:48.552000pt;}
._28{width:50.728000pt;}
._25{width:60.792000pt;}
._8{width:64.237333pt;}
._29{width:68.634667pt;}
._21{width:73.394667pt;}
._2b{width:74.392000pt;}
._23{width:82.687995pt;}
._b{width:87.312000pt;}
._3e{width:88.400000pt;}
._48{width:89.400000pt;}
._30{width:90.301333pt;}
._39{width:94.338667pt;}
._18{width:95.970667pt;}
._22{width:97.058667pt;}
._2a{width:104.629324pt;}
._3a{width:105.989333pt;}
._34{width:111.066667pt;}
._33{width:117.005333pt;}
._38{width:118.773333pt;}
._3d{width:124.848000pt;}
._19{width:128.293326pt;}
._1a{width:133.733333pt;}
._1d{width:135.637333pt;}
._3c{width:139.989333pt;}
._2f{width:145.021333pt;}
._37{width:146.245326pt;}
._32{width:156.309333pt;}
._47{width:161.205333pt;}
._1b{width:173.626660pt;}
._27{width:181.605324pt;}
._1c{width:186.637878pt;}
._31{width:190.354667pt;}
._3b{width:198.695995pt;}
._46{width:219.368000pt;}
._35{width:221.362662pt;}
._3f{width:228.933329pt;}
._36{width:235.415993pt;}
._26{width:253.141333pt;}
._2c{width:275.445328pt;}
._43{width:442.491155pt;}
._a{width:1350.207979pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fsb{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:53.346664pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1f1{bottom:0.081543pt;}
.y1f3{bottom:0.381429pt;}
.y13e{bottom:4.907064pt;}
.y1f0{bottom:8.373698pt;}
.y141{bottom:10.246501pt;}
.y140{bottom:15.574666pt;}
.y1f4{bottom:16.425944pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y3d{bottom:100.394933pt;}
.y220{bottom:100.636264pt;}
.y73{bottom:100.813599pt;}
.y9c{bottom:100.813639pt;}
.y1f5{bottom:100.844269pt;}
.y1be{bottom:100.897603pt;}
.y1bd{bottom:101.009596pt;}
.y1dd{bottom:101.062930pt;}
.y21e{bottom:101.450928pt;}
.y1d8{bottom:101.484263pt;}
.y1a2{bottom:101.834930pt;}
.y19e{bottom:101.834941pt;}
.y103{bottom:101.986816pt;}
.yd2{bottom:101.986938pt;}
.y18c{bottom:102.110921pt;}
.y194{bottom:102.110942pt;}
.y2a7{bottom:103.874901pt;}
.y152{bottom:105.572398pt;}
.y2d{bottom:108.854533pt;}
.y128{bottom:109.492399pt;}
.y3c{bottom:113.722933pt;}
.y21f{bottom:113.964264pt;}
.y1bc{bottom:114.337596pt;}
.y1dc{bottom:114.390930pt;}
.y2a6{bottom:117.202901pt;}
.y72{bottom:117.480265pt;}
.y9b{bottom:117.480306pt;}
.y21d{bottom:118.117594pt;}
.y1a1{bottom:118.501597pt;}
.y19d{bottom:118.501607pt;}
.y102{bottom:118.653483pt;}
.yd1{bottom:118.653605pt;}
.y18b{bottom:118.777588pt;}
.y193{bottom:118.777608pt;}
.y1ad{bottom:118.777730pt;}
.y22b{bottom:122.230392pt;}
.y265{bottom:125.034256pt;}
.y2c{bottom:125.521200pt;}
.y127{bottom:126.197732pt;}
.y15b{bottom:126.769861pt;}
.y2a5{bottom:130.530901pt;}
.y3b{bottom:131.584269pt;}
.y71{bottom:134.146932pt;}
.y9a{bottom:134.146973pt;}
.y21c{bottom:134.784261pt;}
.y1a0{bottom:135.168264pt;}
.y19c{bottom:135.168274pt;}
.y101{bottom:135.320150pt;}
.yd0{bottom:135.320272pt;}
.y18a{bottom:135.444255pt;}
.y192{bottom:135.444275pt;}
.y1ac{bottom:135.444397pt;}
.y22a{bottom:135.558392pt;}
.y264{bottom:138.362256pt;}
.y2b{bottom:142.187866pt;}
.y126{bottom:142.835065pt;}
.y15a{bottom:143.475194pt;}
.y2a4{bottom:143.858901pt;}
.y3a{bottom:147.098270pt;}
.y70{bottom:150.813599pt;}
.y99{bottom:150.813639pt;}
.y21b{bottom:151.450928pt;}
.y263{bottom:151.690256pt;}
.y19f{bottom:151.834930pt;}
.y19b{bottom:151.834941pt;}
.y100{bottom:151.986816pt;}
.ycf{bottom:151.986938pt;}
.y189{bottom:152.110921pt;}
.y191{bottom:152.110942pt;}
.y1ab{bottom:152.111064pt;}
.y2a3{bottom:157.186901pt;}
.y2a{bottom:158.854533pt;}
.y123{bottom:159.660018pt;}
.y159{bottom:160.112527pt;}
.y39{bottom:164.959605pt;}
.y262{bottom:165.018256pt;}
.y229{bottom:165.523725pt;}
.y6f{bottom:167.480265pt;}
.y98{bottom:167.480306pt;}
.y125{bottom:167.807742pt;}
.y21a{bottom:168.117594pt;}
.y19a{bottom:168.501607pt;}
.yff{bottom:168.653483pt;}
.yce{bottom:168.653605pt;}
.y188{bottom:168.777588pt;}
.y190{bottom:168.777608pt;}
.y1aa{bottom:168.777730pt;}
.y2a2{bottom:170.514901pt;}
.y122{bottom:172.988018pt;}
.y29{bottom:175.521200pt;}
.y158{bottom:176.749861pt;}
.y261{bottom:178.346256pt;}
.y228{bottom:178.851725pt;}
.y38{bottom:180.478928pt;}
.y124{bottom:181.135742pt;}
.y2a1{bottom:183.842901pt;}
.y6e{bottom:184.146932pt;}
.y97{bottom:184.146973pt;}
.y219{bottom:184.784261pt;}
.y199{bottom:185.168274pt;}
.yfe{bottom:185.320150pt;}
.ycd{bottom:185.320272pt;}
.y187{bottom:185.444255pt;}
.y18f{bottom:185.444275pt;}
.y1a9{bottom:185.444397pt;}
.y121{bottom:186.316018pt;}
.y260{bottom:191.674256pt;}
.y227{bottom:192.179725pt;}
.y28{bottom:192.187866pt;}
.y157{bottom:193.387194pt;}
.y37{bottom:193.806928pt;}
.y2a0{bottom:197.170901pt;}
.y6d{bottom:200.813599pt;}
.y96{bottom:200.813639pt;}
.y198{bottom:201.834941pt;}
.yfd{bottom:201.986816pt;}
.ycc{bottom:201.986938pt;}
.y186{bottom:202.110921pt;}
.y18e{bottom:202.110942pt;}
.y1a8{bottom:202.111064pt;}
.y25f{bottom:205.002256pt;}
.y226{bottom:205.507725pt;}
.y27{bottom:208.854533pt;}
.y156{bottom:210.024527pt;}
.y2e1{bottom:210.278543pt;}
.y29f{bottom:210.498901pt;}
.y1a5{bottom:211.333598pt;}
.y36{bottom:211.668274pt;}
.y6c{bottom:217.480265pt;}
.y95{bottom:217.480306pt;}
.y218{bottom:218.117594pt;}
.y25e{bottom:218.330256pt;}
.y197{bottom:218.501607pt;}
.yfc{bottom:218.653483pt;}
.ycb{bottom:218.653605pt;}
.y185{bottom:218.777588pt;}
.y18d{bottom:218.777608pt;}
.y225{bottom:218.835725pt;}
.y2e0{bottom:223.606543pt;}
.y29e{bottom:223.826901pt;}
.y26{bottom:225.521200pt;}
.y155{bottom:226.661861pt;}
.y25d{bottom:231.658256pt;}
.y224{bottom:232.163725pt;}
.y35{bottom:233.920930pt;}
.y6b{bottom:234.146932pt;}
.y94{bottom:234.146973pt;}
.y10c{bottom:235.168274pt;}
.yfb{bottom:235.320150pt;}
.yca{bottom:235.320272pt;}
.y184{bottom:235.444255pt;}
.y11a{bottom:235.444275pt;}
.y2df{bottom:236.934543pt;}
.y29d{bottom:237.154901pt;}
.y25{bottom:242.187866pt;}
.y25c{bottom:244.986256pt;}
.y223{bottom:245.491725pt;}
.y34{bottom:247.248930pt;}
.y2de{bottom:250.262543pt;}
.y29c{bottom:250.482901pt;}
.y6a{bottom:250.813599pt;}
.y93{bottom:250.813639pt;}
.y154{bottom:251.629194pt;}
.y10b{bottom:251.834941pt;}
.yfa{bottom:251.986816pt;}
.yc9{bottom:251.986938pt;}
.y183{bottom:252.110921pt;}
.y119{bottom:252.110942pt;}
.y151{bottom:256.807193pt;}
.y25b{bottom:258.314256pt;}
.y222{bottom:258.819725pt;}
.y24{bottom:258.854533pt;}
.y2dd{bottom:263.590543pt;}
.y29b{bottom:263.810901pt;}
.y1a4{bottom:264.293599pt;}
.y153{bottom:264.957194pt;}
.y33{bottom:267.286263pt;}
.y69{bottom:267.480265pt;}
.y92{bottom:267.480306pt;}
.y10a{bottom:268.501607pt;}
.yf9{bottom:268.653483pt;}
.yc8{bottom:268.653605pt;}
.y182{bottom:268.777588pt;}
.y118{bottom:268.777608pt;}
.y150{bottom:270.135193pt;}
.y25a{bottom:271.642256pt;}
.y221{bottom:272.147725pt;}
.y23{bottom:275.521200pt;}
.y217{bottom:276.718953pt;}
.y2dc{bottom:276.918543pt;}
.y29a{bottom:277.138901pt;}
.y32{bottom:280.614263pt;}
.y68{bottom:284.146932pt;}
.y91{bottom:284.146973pt;}
.y259{bottom:284.970256pt;}
.y109{bottom:285.168254pt;}
.yf8{bottom:285.320150pt;}
.yc7{bottom:285.320272pt;}
.y181{bottom:285.444255pt;}
.y117{bottom:285.444275pt;}
.y314{bottom:289.793188pt;}
.y2db{bottom:290.246543pt;}
.y299{bottom:290.466901pt;}
.y22{bottom:292.187866pt;}
.y216{bottom:293.385620pt;}
.y258{bottom:298.298256pt;}
.y31{bottom:300.651597pt;}
.y67{bottom:300.813599pt;}
.y90{bottom:300.813639pt;}
.y108{bottom:301.834920pt;}
.yf7{bottom:301.986816pt;}
.yc6{bottom:301.986938pt;}
.y180{bottom:302.110921pt;}
.y116{bottom:302.110942pt;}
.y313{bottom:303.121188pt;}
.y2da{bottom:303.574543pt;}
.y298{bottom:303.794901pt;}
.y21{bottom:308.854533pt;}
.y215{bottom:310.052287pt;}
.y257{bottom:311.626256pt;}
.y30{bottom:313.979597pt;}
.y2d9{bottom:316.902543pt;}
.y297{bottom:317.122901pt;}
.y66{bottom:317.480265pt;}
.y8f{bottom:317.480306pt;}
.y107{bottom:318.501587pt;}
.yf6{bottom:318.653483pt;}
.yc5{bottom:318.653605pt;}
.y14d{bottom:318.777588pt;}
.y115{bottom:318.777608pt;}
.y256{bottom:324.954256pt;}
.y20{bottom:325.521200pt;}
.y214{bottom:326.718953pt;}
.y13b{bottom:327.244263pt;}
.y2d8{bottom:330.230543pt;}
.y296{bottom:330.450901pt;}
.y312{bottom:330.536522pt;}
.y2f{bottom:334.016930pt;}
.y65{bottom:334.146932pt;}
.y8e{bottom:334.146973pt;}
.y106{bottom:335.168254pt;}
.yf5{bottom:335.320150pt;}
.yc4{bottom:335.320272pt;}
.y114{bottom:335.444255pt;}
.y255{bottom:338.282256pt;}
.y1f{bottom:342.187866pt;}
.y213{bottom:343.385620pt;}
.y2d7{bottom:343.558543pt;}
.y295{bottom:343.778901pt;}
.y311{bottom:343.864522pt;}
.y13a{bottom:343.910929pt;}
.y2e{bottom:347.344930pt;}
.y64{bottom:350.813599pt;}
.y8d{bottom:350.813639pt;}
.y254{bottom:351.610256pt;}
.y105{bottom:351.834920pt;}
.yf4{bottom:351.986816pt;}
.yc3{bottom:351.986938pt;}
.y113{bottom:352.110921pt;}
.y2d6{bottom:356.886543pt;}
.y294{bottom:357.106901pt;}
.y310{bottom:357.192522pt;}
.y1e{bottom:358.854533pt;}
.y212{bottom:360.052287pt;}
.y139{bottom:360.577596pt;}
.y253{bottom:364.938256pt;}
.y63{bottom:367.480265pt;}
.y8c{bottom:367.480306pt;}
.y104{bottom:368.501587pt;}
.yf3{bottom:368.653483pt;}
.yc2{bottom:368.653564pt;}
.y16d{bottom:368.653605pt;}
.y112{bottom:368.777588pt;}
.y2d5{bottom:370.214543pt;}
.y293{bottom:370.434901pt;}
.y30f{bottom:370.520522pt;}
.y211{bottom:376.718953pt;}
.y138{bottom:377.244263pt;}
.y252{bottom:378.266256pt;}
.y2d4{bottom:383.542543pt;}
.y292{bottom:383.762901pt;}
.y30e{bottom:383.848522pt;}
.y62{bottom:384.146932pt;}
.y8b{bottom:384.146973pt;}
.yf2{bottom:385.320150pt;}
.yc1{bottom:385.320231pt;}
.y16c{bottom:385.320272pt;}
.y14c{bottom:385.444255pt;}
.y251{bottom:391.594256pt;}
.y1d{bottom:392.187866pt;}
.y210{bottom:393.385620pt;}
.y137{bottom:393.910929pt;}
.y2d3{bottom:396.870543pt;}
.y291{bottom:397.090901pt;}
.y30d{bottom:397.176522pt;}
.y61{bottom:400.813599pt;}
.y8a{bottom:400.813639pt;}
.yf1{bottom:401.986816pt;}
.yc0{bottom:401.986898pt;}
.y16b{bottom:401.986938pt;}
.y111{bottom:402.110921pt;}
.y250{bottom:404.922256pt;}
.y1db{bottom:409.230787pt;}
.y20f{bottom:410.052246pt;}
.y2d2{bottom:410.198543pt;}
.y290{bottom:410.418901pt;}
.y30c{bottom:410.504522pt;}
.y136{bottom:410.577596pt;}
.y11e{bottom:416.808268pt;}
.y60{bottom:417.480265pt;}
.y89{bottom:417.480306pt;}
.y24f{bottom:418.250256pt;}
.yf0{bottom:418.653483pt;}
.ybf{bottom:418.653564pt;}
.y16a{bottom:418.653605pt;}
.y14b{bottom:418.777588pt;}
.y2d1{bottom:423.526543pt;}
.y28f{bottom:423.746901pt;}
.y30b{bottom:423.832522pt;}
.y20e{bottom:426.718913pt;}
.y135{bottom:427.244263pt;}
.y24e{bottom:431.578256pt;}
.y5f{bottom:434.146932pt;}
.y88{bottom:434.146973pt;}
.y1da{bottom:434.198120pt;}
.y1ba{bottom:435.284261pt;}
.yef{bottom:435.320150pt;}
.ybe{bottom:435.320231pt;}
.y169{bottom:435.320272pt;}
.y14a{bottom:435.444255pt;}
.y110{bottom:435.448274pt;}
.y2d0{bottom:436.854543pt;}
.y28e{bottom:437.074901pt;}
.y30a{bottom:437.160522pt;}
.y120{bottom:437.745313pt;}
.y1c{bottom:442.187907pt;}
.y20d{bottom:443.385579pt;}
.y134{bottom:443.910929pt;}
.y24d{bottom:444.906256pt;}
.y2cf{bottom:450.182543pt;}
.y28d{bottom:450.402901pt;}
.y309{bottom:450.488522pt;}
.y5e{bottom:450.813599pt;}
.y87{bottom:450.813639pt;}
.y1b9{bottom:451.950928pt;}
.yee{bottom:451.986816pt;}
.ybd{bottom:451.986898pt;}
.y168{bottom:451.986938pt;}
.y149{bottom:452.110921pt;}
.y10f{bottom:452.114941pt;}
.y1d9{bottom:456.852263pt;}
.y24c{bottom:458.234256pt;}
.y1b{bottom:458.854574pt;}
.y20c{bottom:460.052246pt;}
.y133{bottom:460.577596pt;}
.y11f{bottom:462.712646pt;}
.y2ce{bottom:463.510543pt;}
.y28c{bottom:463.730901pt;}
.y308{bottom:463.816522pt;}
.y5d{bottom:467.480265pt;}
.y86{bottom:467.480306pt;}
.y1b8{bottom:468.617594pt;}
.yed{bottom:468.653483pt;}
.ybc{bottom:468.653564pt;}
.y167{bottom:468.653605pt;}
.y148{bottom:468.777588pt;}
.y10e{bottom:468.781607pt;}
.y24b{bottom:471.562256pt;}
.y20b{bottom:476.718913pt;}
.y2cd{bottom:476.838543pt;}
.y28b{bottom:477.058901pt;}
.y307{bottom:477.144522pt;}
.y132{bottom:477.244263pt;}
.y5c{bottom:484.146932pt;}
.y85{bottom:484.146973pt;}
.y24a{bottom:484.890256pt;}
.y1b7{bottom:485.284261pt;}
.yec{bottom:485.320150pt;}
.ybb{bottom:485.320231pt;}
.y166{bottom:485.320272pt;}
.y11d{bottom:485.374278pt;}
.y147{bottom:485.444255pt;}
.y10d{bottom:485.448274pt;}
.y2cc{bottom:490.166543pt;}
.y28a{bottom:490.386901pt;}
.y306{bottom:490.472522pt;}
.y1a{bottom:492.187907pt;}
.y20a{bottom:493.385579pt;}
.y131{bottom:493.910929pt;}
.y249{bottom:498.218256pt;}
.y5b{bottom:500.813599pt;}
.y84{bottom:500.813639pt;}
.y1b6{bottom:501.951050pt;}
.yeb{bottom:501.986816pt;}
.yba{bottom:501.986898pt;}
.y165{bottom:501.986938pt;}
.y146{bottom:502.110921pt;}
.y2cb{bottom:503.494543pt;}
.y289{bottom:503.714901pt;}
.y305{bottom:503.800522pt;}
.y19{bottom:508.854574pt;}
.y209{bottom:510.052246pt;}
.y130{bottom:510.577596pt;}
.y248{bottom:511.546256pt;}
.y1d7{bottom:516.696289pt;}
.y2ca{bottom:516.822543pt;}
.y288{bottom:517.042901pt;}
.y304{bottom:517.128522pt;}
.y5a{bottom:517.480265pt;}
.y83{bottom:517.480306pt;}
.y1b5{bottom:518.617716pt;}
.yb9{bottom:518.653564pt;}
.y164{bottom:518.653605pt;}
.y1a7{bottom:518.777588pt;}
.y247{bottom:524.874256pt;}
.y18{bottom:525.521240pt;}
.y208{bottom:526.718913pt;}
.y12f{bottom:527.244263pt;}
.y11c{bottom:528.814944pt;}
.y2c9{bottom:530.150543pt;}
.y287{bottom:530.370901pt;}
.y303{bottom:530.456522pt;}
.y1d6{bottom:533.362956pt;}
.y59{bottom:534.146932pt;}
.y82{bottom:534.146973pt;}
.y1a3{bottom:535.262939pt;}
.y1b4{bottom:535.284383pt;}
.yea{bottom:535.320150pt;}
.yb8{bottom:535.320231pt;}
.y163{bottom:535.320272pt;}
.y145{bottom:535.444255pt;}
.y1ed{bottom:537.520272pt;}
.y246{bottom:538.202256pt;}
.y11b{bottom:542.142944pt;}
.y17{bottom:542.187907pt;}
.y207{bottom:543.385579pt;}
.y2c8{bottom:543.478543pt;}
.y286{bottom:543.698901pt;}
.y302{bottom:543.784522pt;}
.y12e{bottom:543.910924pt;}
.y196{bottom:545.934939pt;}
.y1d5{bottom:550.029622pt;}
.y58{bottom:550.813639pt;}
.y245{bottom:551.530256pt;}
.y1b3{bottom:551.951050pt;}
.yb7{bottom:551.986898pt;}
.y162{bottom:551.986938pt;}
.y1a6{bottom:552.110921pt;}
.y1ec{bottom:554.186938pt;}
.y2c7{bottom:556.806543pt;}
.y285{bottom:557.026901pt;}
.y301{bottom:557.112522pt;}
.y16{bottom:558.854574pt;}
.y195{bottom:559.262939pt;}
.y206{bottom:560.052246pt;}
.y12d{bottom:560.577591pt;}
.y244{bottom:564.858256pt;}
.y1d4{bottom:566.696289pt;}
.y57{bottom:567.480306pt;}
.y1b2{bottom:568.617716pt;}
.ye9{bottom:568.653483pt;}
.yb6{bottom:568.653564pt;}
.y161{bottom:568.653605pt;}
.y144{bottom:568.777588pt;}
.y2c6{bottom:570.134543pt;}
.y284{bottom:570.354901pt;}
.y300{bottom:570.440522pt;}
.y1eb{bottom:570.853605pt;}
.y15{bottom:575.521240pt;}
.y205{bottom:576.718913pt;}
.y243{bottom:578.186256pt;}
.y1d3{bottom:583.362956pt;}
.y2c5{bottom:583.462543pt;}
.y283{bottom:583.682901pt;}
.y2ff{bottom:583.768522pt;}
.y56{bottom:584.146973pt;}
.y1b1{bottom:585.284383pt;}
.yb5{bottom:585.320231pt;}
.y160{bottom:585.320272pt;}
.y143{bottom:585.444255pt;}
.y13d{bottom:585.577352pt;}
.y1ea{bottom:587.520272pt;}
.y13c{bottom:588.844263pt;}
.y13f{bottom:590.484416pt;}
.y242{bottom:591.514256pt;}
.y14{bottom:592.187907pt;}
.y204{bottom:593.385579pt;}
.y2c4{bottom:596.790543pt;}
.y282{bottom:597.010901pt;}
.y2fe{bottom:597.096522pt;}
.y1d2{bottom:600.029622pt;}
.y55{bottom:600.813639pt;}
.y1b0{bottom:601.951050pt;}
.yb4{bottom:601.986898pt;}
.y15f{bottom:601.986938pt;}
.y142{bottom:602.110921pt;}
.y1e9{bottom:604.186938pt;}
.y241{bottom:604.842256pt;}
.y13{bottom:608.854574pt;}
.y22c{bottom:609.982951pt;}
.y203{bottom:610.052246pt;}
.y2c3{bottom:610.118543pt;}
.y281{bottom:610.338901pt;}
.y2fd{bottom:610.424522pt;}
.y1d1{bottom:616.696289pt;}
.y54{bottom:617.480306pt;}
.y240{bottom:618.170256pt;}
.y1af{bottom:618.617716pt;}
.ye8{bottom:618.653483pt;}
.yb3{bottom:618.653564pt;}
.y15e{bottom:618.653605pt;}
.y12c{bottom:618.777588pt;}
.y1e8{bottom:620.853605pt;}
.y2c2{bottom:623.446543pt;}
.y280{bottom:623.666901pt;}
.y2fc{bottom:623.752522pt;}
.y12{bottom:625.521240pt;}
.y202{bottom:626.718913pt;}
.y23f{bottom:631.498256pt;}
.y1d0{bottom:633.362956pt;}
.y53{bottom:634.146973pt;}
.ye7{bottom:635.320150pt;}
.yb2{bottom:635.320231pt;}
.y15d{bottom:635.320272pt;}
.y12b{bottom:635.444255pt;}
.y2c1{bottom:636.774543pt;}
.y27f{bottom:636.994901pt;}
.y2fb{bottom:637.080522pt;}
.y1e7{bottom:637.520272pt;}
.y11{bottom:642.187907pt;}
.y201{bottom:643.385579pt;}
.y23e{bottom:644.826256pt;}
.y1cf{bottom:650.029622pt;}
.y2c0{bottom:650.102543pt;}
.y27e{bottom:650.322901pt;}
.y2fa{bottom:650.408522pt;}
.y52{bottom:650.813639pt;}
.y1ae{bottom:651.951050pt;}
.ye6{bottom:651.986816pt;}
.yb1{bottom:651.986898pt;}
.y17f{bottom:651.986938pt;}
.y12a{bottom:652.110921pt;}
.y1e6{bottom:654.186938pt;}
.y23d{bottom:658.154256pt;}
.y10{bottom:658.854574pt;}
.y200{bottom:660.052246pt;}
.y2bf{bottom:663.430543pt;}
.y27d{bottom:663.650901pt;}
.y2f9{bottom:663.736522pt;}
.y1ce{bottom:666.696289pt;}
.y51{bottom:667.480306pt;}
.ye5{bottom:668.653483pt;}
.yb0{bottom:668.653564pt;}
.y15c{bottom:668.653605pt;}
.y129{bottom:668.777588pt;}
.y1e5{bottom:670.853605pt;}
.yf{bottom:675.521240pt;}
.y1ff{bottom:676.718913pt;}
.y2be{bottom:676.758543pt;}
.y27c{bottom:676.978901pt;}
.y2f8{bottom:677.064522pt;}
.y1cd{bottom:683.362956pt;}
.y50{bottom:684.146973pt;}
.ye4{bottom:685.320150pt;}
.yaf{bottom:685.320231pt;}
.y17e{bottom:685.320272pt;}
.y1e4{bottom:687.520272pt;}
.y23c{bottom:688.154297pt;}
.y2bd{bottom:690.086543pt;}
.y27b{bottom:690.306901pt;}
.y2f7{bottom:690.392522pt;}
.ye{bottom:692.187907pt;}
.y1fe{bottom:693.385579pt;}
.y1bb{bottom:694.943034pt;}
.y1cc{bottom:700.029622pt;}
.y4f{bottom:700.813639pt;}
.ye3{bottom:701.986816pt;}
.yae{bottom:701.986898pt;}
.y17d{bottom:701.986938pt;}
.y2bc{bottom:703.414543pt;}
.y27a{bottom:703.634901pt;}
.y2f6{bottom:703.720522pt;}
.y1e3{bottom:704.186938pt;}
.yd{bottom:708.854574pt;}
.y1fd{bottom:710.052246pt;}
.y1cb{bottom:716.696289pt;}
.y2bb{bottom:716.742543pt;}
.y279{bottom:716.962901pt;}
.y2f5{bottom:717.048522pt;}
.y4e{bottom:717.480306pt;}
.ye2{bottom:718.653483pt;}
.yad{bottom:718.653564pt;}
.y17c{bottom:718.653605pt;}
.y1e2{bottom:720.853605pt;}
.yc{bottom:725.521240pt;}
.y1fc{bottom:726.718913pt;}
.y2ba{bottom:730.070543pt;}
.y278{bottom:730.290901pt;}
.y2f4{bottom:730.376522pt;}
.y1ca{bottom:733.362956pt;}
.y4d{bottom:734.146973pt;}
.ye1{bottom:735.320150pt;}
.yac{bottom:735.320231pt;}
.y17b{bottom:735.320272pt;}
.y1e1{bottom:737.520272pt;}
.yb{bottom:742.187907pt;}
.y1fb{bottom:743.385579pt;}
.y2b9{bottom:743.398543pt;}
.y277{bottom:743.618901pt;}
.y2f3{bottom:743.704522pt;}
.y23b{bottom:747.693637pt;}
.y1c9{bottom:750.029622pt;}
.y81{bottom:750.813599pt;}
.y4c{bottom:750.813639pt;}
.ye0{bottom:751.986816pt;}
.yab{bottom:751.986898pt;}
.y17a{bottom:751.986938pt;}
.y1e0{bottom:754.186938pt;}
.y2b8{bottom:756.726543pt;}
.y276{bottom:756.946901pt;}
.y2f2{bottom:757.032522pt;}
.y1fa{bottom:760.052246pt;}
.y23a{bottom:761.021637pt;}
.y1c8{bottom:766.696289pt;}
.y80{bottom:767.480265pt;}
.y4b{bottom:767.480306pt;}
.ydf{bottom:768.653483pt;}
.yaa{bottom:768.653564pt;}
.y179{bottom:768.653605pt;}
.y2b7{bottom:770.054543pt;}
.y275{bottom:770.274901pt;}
.y2f1{bottom:770.360522pt;}
.y1df{bottom:770.853605pt;}
.y239{bottom:774.349637pt;}
.y1f9{bottom:776.718913pt;}
.ya{bottom:781.461469pt;}
.y1c7{bottom:783.362956pt;}
.y2b6{bottom:783.382543pt;}
.y274{bottom:783.602901pt;}
.y2f0{bottom:783.688522pt;}
.y7f{bottom:784.146932pt;}
.y4a{bottom:784.146973pt;}
.yde{bottom:785.320150pt;}
.ya9{bottom:785.320231pt;}
.y178{bottom:785.320272pt;}
.y1de{bottom:787.520272pt;}
.y238{bottom:787.677637pt;}
.y1f8{bottom:793.385579pt;}
.y9{bottom:794.789469pt;}
.y2b5{bottom:796.710543pt;}
.y273{bottom:796.930901pt;}
.y2ef{bottom:797.016522pt;}
.y1c6{bottom:800.029622pt;}
.y7e{bottom:800.813599pt;}
.y49{bottom:800.813639pt;}
.y237{bottom:801.005637pt;}
.ydd{bottom:801.986816pt;}
.ya8{bottom:801.986898pt;}
.y177{bottom:801.986938pt;}
.y2b4{bottom:810.038543pt;}
.y1f7{bottom:810.052246pt;}
.y272{bottom:810.258901pt;}
.y2ee{bottom:810.344522pt;}
.y1ef{bottom:812.520020pt;}
.y236{bottom:814.333637pt;}
.y1c5{bottom:816.696289pt;}
.y7d{bottom:817.480265pt;}
.y48{bottom:817.480306pt;}
.ydc{bottom:818.653483pt;}
.ya7{bottom:818.653564pt;}
.y176{bottom:818.653605pt;}
.y1ee{bottom:818.920266pt;}
.y1f2{bottom:820.893717pt;}
.y2b3{bottom:823.366543pt;}
.y271{bottom:823.586901pt;}
.y2ed{bottom:823.672522pt;}
.y235{bottom:827.661637pt;}
.y8{bottom:832.656169pt;}
.y1c4{bottom:833.362956pt;}
.y7c{bottom:834.146932pt;}
.y47{bottom:834.146973pt;}
.ydb{bottom:835.320150pt;}
.ya6{bottom:835.320231pt;}
.y175{bottom:835.320272pt;}
.y2b2{bottom:836.694543pt;}
.y270{bottom:836.914901pt;}
.y2ec{bottom:837.000522pt;}
.y234{bottom:840.989637pt;}
.y1f6{bottom:843.385579pt;}
.y2b1{bottom:850.022543pt;}
.y1c3{bottom:850.029622pt;}
.y26f{bottom:850.242901pt;}
.y2eb{bottom:850.328522pt;}
.y7b{bottom:850.813599pt;}
.y46{bottom:850.813639pt;}
.yda{bottom:851.986816pt;}
.ya5{bottom:851.986898pt;}
.y174{bottom:851.986938pt;}
.y233{bottom:854.317637pt;}
.y2b0{bottom:863.350543pt;}
.y26e{bottom:863.570901pt;}
.y2ea{bottom:863.656522pt;}
.y1c2{bottom:866.696289pt;}
.y7a{bottom:867.480265pt;}
.y45{bottom:867.480306pt;}
.y232{bottom:867.645637pt;}
.yd9{bottom:868.653483pt;}
.ya4{bottom:868.653564pt;}
.y173{bottom:868.653605pt;}
.y7{bottom:872.377441pt;}
.y2af{bottom:876.678543pt;}
.y26d{bottom:876.898901pt;}
.y2e9{bottom:876.984522pt;}
.y231{bottom:880.973637pt;}
.y79{bottom:884.146932pt;}
.y44{bottom:884.146973pt;}
.yd8{bottom:885.320150pt;}
.ya3{bottom:885.320231pt;}
.y172{bottom:885.320272pt;}
.y2ae{bottom:890.006543pt;}
.y26c{bottom:890.226901pt;}
.y2e8{bottom:890.312522pt;}
.y230{bottom:894.301637pt;}
.y6{bottom:896.377441pt;}
.y1c1{bottom:900.029622pt;}
.y78{bottom:900.813599pt;}
.y43{bottom:900.813639pt;}
.yd7{bottom:901.986816pt;}
.ya2{bottom:901.986898pt;}
.y171{bottom:901.986938pt;}
.y2ad{bottom:903.334543pt;}
.y26b{bottom:903.554901pt;}
.y2e7{bottom:903.640522pt;}
.y2ac{bottom:916.662543pt;}
.y26a{bottom:916.882901pt;}
.y2e6{bottom:916.968522pt;}
.y77{bottom:917.480265pt;}
.y42{bottom:917.480306pt;}
.yd6{bottom:918.653483pt;}
.ya1{bottom:918.653564pt;}
.y170{bottom:918.653605pt;}
.y22f{bottom:924.266971pt;}
.y2ab{bottom:929.990543pt;}
.y269{bottom:930.210901pt;}
.y2e5{bottom:930.296522pt;}
.y1c0{bottom:933.362956pt;}
.y76{bottom:934.146932pt;}
.y41{bottom:934.146973pt;}
.yd5{bottom:935.320150pt;}
.ya0{bottom:935.320231pt;}
.y16f{bottom:935.320272pt;}
.y22e{bottom:937.594971pt;}
.y2aa{bottom:943.318543pt;}
.y268{bottom:943.538901pt;}
.y2e4{bottom:943.624522pt;}
.y75{bottom:950.813599pt;}
.y40{bottom:950.813639pt;}
.yd4{bottom:951.986816pt;}
.y9f{bottom:951.986898pt;}
.y16e{bottom:951.986938pt;}
.y14f{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y2a9{bottom:956.646543pt;}
.y267{bottom:956.866901pt;}
.y2e3{bottom:956.952522pt;}
.y1bf{bottom:966.696289pt;}
.y74{bottom:967.480265pt;}
.y3f{bottom:967.480306pt;}
.y22d{bottom:967.594971pt;}
.y9e{bottom:968.653564pt;}
.yd3{bottom:968.653605pt;}
.y14e{bottom:968.980306pt;}
.y2a8{bottom:969.974543pt;}
.y266{bottom:970.194901pt;}
.y2e2{bottom:970.280522pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3e{bottom:1002.206543pt;}
.y9d{bottom:1002.206706pt;}
.h19{height:3.520880pt;}
.h16{height:16.533333pt;}
.h22{height:22.800000pt;}
.h23{height:25.318147pt;}
.h1a{height:25.504859pt;}
.hd{height:29.321599pt;}
.h1b{height:35.635572pt;}
.h17{height:36.435772pt;}
.h2{height:37.376000pt;}
.h18{height:37.876132pt;}
.h4{height:39.712000pt;}
.hc{height:41.888000pt;}
.h20{height:42.527974pt;}
.h24{height:46.191778pt;}
.h1d{height:47.253333pt;}
.h14{height:47.433564pt;}
.h1c{height:47.433648pt;}
.h13{height:47.454897pt;}
.h12{height:47.457697pt;}
.h3{height:48.766452pt;}
.h9{height:49.280000pt;}
.h21{height:49.280163pt;}
.h5{height:49.298667pt;}
.h10{height:52.448000pt;}
.h8{height:52.746667pt;}
.h1f{height:55.828845pt;}
.he{height:55.829171pt;}
.ha{height:55.829333pt;}
.h15{height:55.829354pt;}
.h25{height:55.829374pt;}
.h11{height:55.829415pt;}
.hf{height:55.829496pt;}
.h1e{height:55.829903pt;}
.h7{height:57.658667pt;}
.hb{height:63.296000pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w3{width:225.679993pt;}
.w2{width:225.746663pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x7{left:69.996800pt;}
.x4{left:75.717199pt;}
.x8{left:83.138137pt;}
.x6{left:86.929867pt;}
.x1d{left:89.364802pt;}
.x1f{left:90.709469pt;}
.xe{left:99.112803pt;}
.x1a{left:104.279460pt;}
.xf{left:106.428797pt;}
.x11{left:142.500676pt;}
.x10{left:180.700928pt;}
.x13{left:218.221461pt;}
.x1c{left:221.255330pt;}
.x12{left:228.040933pt;}
.xb{left:238.110128pt;}
.xd{left:369.962021pt;}
.x5{left:408.189087pt;}
.x14{left:417.687466pt;}
.x9{left:423.313581pt;}
.x19{left:425.731486pt;}
.x1e{left:429.524790pt;}
.x20{left:430.868152pt;}
.x15{left:478.694798pt;}
.x1b{left:533.611735pt;}
.x16{left:548.882129pt;}
.x17{left:623.670817pt;}
.xa{left:629.053996pt;}
.x1{left:647.307210pt;}
.xc{left:665.962251pt;}
.x2{left:671.546549pt;}
.x18{left:710.120649pt;}
}


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