
/* 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_58e5840f2c3b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_2dc72dd84909.woff")format("woff");}.ff4{font-family:ff4;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_449df528b617.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_6f9fad8c7b52.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_7c6167ab1c97.woff")format("woff");}.ff7{font-family:ff7;line-height:1.179000;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_28b970b235f1.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_00faeb844081.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_d7074df7042b.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_00faeb844081.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_479db089623a.woff")format("woff");}.ffc{font-family:ffc;line-height:1.328000;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_30a71fa62f84.woff")format("woff");}.ffd{font-family:ffd;line-height:0.827000;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_4f6d5643f635.woff")format("woff");}.ffe{font-family:ffe;line-height:0.862000;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_0e41ba38ce94.woff")format("woff");}.fff{font-family:fff;line-height:0.693000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.241768,-0.063441,0.063427,0.241820,0,0);-ms-transform:matrix(0.241768,-0.063441,0.063427,0.241820,0,0);-webkit-transform:matrix(0.241768,-0.063441,0.063427,0.241820,0,0);}
.m2{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-24.000000px;}
.v2{vertical-align:-20.400055px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.348869px;}
.v1{vertical-align:24.000000px;}
.ls7b{letter-spacing:-1.800000px;}
.ls7e{letter-spacing:-1.740000px;}
.ls7c{letter-spacing:-1.440000px;}
.ls67{letter-spacing:-1.200000px;}
.ls7a{letter-spacing:-1.140000px;}
.ls66{letter-spacing:-0.960000px;}
.ls81{letter-spacing:-0.900000px;}
.ls68{letter-spacing:-0.840000px;}
.ls82{letter-spacing:-0.780000px;}
.ls70{letter-spacing:-0.739704px;}
.ls80{letter-spacing:-0.720000px;}
.ls7f{letter-spacing:-0.660000px;}
.ls7d{letter-spacing:-0.600000px;}
.ls6d{letter-spacing:-0.565656px;}
.ls65{letter-spacing:-0.540000px;}
.ls28{letter-spacing:-0.480000px;}
.lsa1{letter-spacing:-0.459000px;}
.ls3a{letter-spacing:-0.420000px;}
.lsaf{letter-spacing:-0.408000px;}
.ls6e{letter-spacing:-0.391608px;}
.ls11{letter-spacing:-0.360000px;}
.ls83{letter-spacing:-0.357000px;}
.lsa0{letter-spacing:-0.306000px;}
.ls13{letter-spacing:-0.300000px;}
.ls9f{letter-spacing:-0.255000px;}
.ls27{letter-spacing:-0.240000px;}
.ls9d{letter-spacing:-0.204000px;}
.ls29{letter-spacing:-0.180000px;}
.ls6b{letter-spacing:-0.174048px;}
.lsaa{letter-spacing:-0.153000px;}
.ls6a{letter-spacing:-0.130536px;}
.ls12{letter-spacing:-0.120000px;}
.ls9e{letter-spacing:-0.102000px;}
.ls69{letter-spacing:-0.087024px;}
.ls10{letter-spacing:-0.060000px;}
.lsa2{letter-spacing:-0.051000px;}
.ls6f{letter-spacing:-0.043512px;}
.lsf{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000085px;}
.ls5d{letter-spacing:0.030000px;}
.ls5f{letter-spacing:0.043512px;}
.ls79{letter-spacing:0.051000px;}
.ls15{letter-spacing:0.060000px;}
.ls60{letter-spacing:0.087024px;}
.ls33{letter-spacing:0.090000px;}
.ls86{letter-spacing:0.102000px;}
.ls14{letter-spacing:0.120000px;}
.lsae{letter-spacing:0.127500px;}
.ls6c{letter-spacing:0.130536px;}
.ls3{letter-spacing:0.150000px;}
.ls9c{letter-spacing:0.153000px;}
.ls5c{letter-spacing:0.168000px;}
.lsd{letter-spacing:0.178791px;}
.ls38{letter-spacing:0.179944px;}
.ls21{letter-spacing:0.180000px;}
.ls9b{letter-spacing:0.204000px;}
.ls63{letter-spacing:0.217559px;}
.ls5b{letter-spacing:0.227973px;}
.ls1{letter-spacing:0.240000px;}
.ls36{letter-spacing:0.245975px;}
.lse{letter-spacing:0.255000px;}
.ls5e{letter-spacing:0.257978px;}
.ls78{letter-spacing:0.264000px;}
.ls3c{letter-spacing:0.270000px;}
.ls31{letter-spacing:0.275976px;}
.ls2f{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls35{letter-spacing:0.306000px;}
.ls45{letter-spacing:0.330000px;}
.lsad{letter-spacing:0.331500px;}
.ls73{letter-spacing:0.357000px;}
.ls1f{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.365991px;}
.ls58{letter-spacing:0.390000px;}
.ls99{letter-spacing:0.408000px;}
.ls1c{letter-spacing:0.420000px;}
.ls47{letter-spacing:0.450000px;}
.ls74{letter-spacing:0.459000px;}
.ls24{letter-spacing:0.480000px;}
.ls98{letter-spacing:0.484500px;}
.ls59{letter-spacing:0.510000px;}
.ls19{letter-spacing:0.522000px;}
.ls26{letter-spacing:0.528000px;}
.ls34{letter-spacing:0.540000px;}
.lsa4{letter-spacing:0.561000px;}
.ls3b{letter-spacing:0.570000px;}
.ls5{letter-spacing:0.600000px;}
.ls8f{letter-spacing:0.612000px;}
.ls55{letter-spacing:0.624000px;}
.ls23{letter-spacing:0.630000px;}
.ls57{letter-spacing:0.635980px;}
.lsc{letter-spacing:0.660000px;}
.ls88{letter-spacing:0.663000px;}
.ls56{letter-spacing:0.690000px;}
.lsa3{letter-spacing:0.714000px;}
.ls7{letter-spacing:0.720000px;}
.lsa8{letter-spacing:0.739500px;}
.ls46{letter-spacing:0.750000px;}
.ls92{letter-spacing:0.765000px;}
.ls8{letter-spacing:0.768000px;}
.ls1d{letter-spacing:0.780000px;}
.ls93{letter-spacing:0.816000px;}
.ls6{letter-spacing:0.840000px;}
.lsa5{letter-spacing:0.841500px;}
.ls84{letter-spacing:0.867000px;}
.ls54{letter-spacing:0.870000px;}
.ls16{letter-spacing:0.900000px;}
.ls75{letter-spacing:0.918000px;}
.ls4d{letter-spacing:0.930000px;}
.lsa{letter-spacing:0.960000px;}
.ls77{letter-spacing:0.969000px;}
.ls37{letter-spacing:0.990000px;}
.ls17{letter-spacing:1.020000px;}
.ls5a{letter-spacing:1.050000px;}
.ls1e{letter-spacing:1.055944px;}
.ls8e{letter-spacing:1.071000px;}
.ls1a{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.086000px;}
.lsa7{letter-spacing:1.096500px;}
.ls2b{letter-spacing:1.109990px;}
.lsa6{letter-spacing:1.122000px;}
.ls18{letter-spacing:1.140000px;}
.ls97{letter-spacing:1.147500px;}
.ls3d{letter-spacing:1.170000px;}
.ls89{letter-spacing:1.173000px;}
.ls87{letter-spacing:1.198500px;}
.ls20{letter-spacing:1.200000px;}
.ls9a{letter-spacing:1.224000px;}
.ls32{letter-spacing:1.230000px;}
.ls8c{letter-spacing:1.249500px;}
.ls1b{letter-spacing:1.260000px;}
.ls85{letter-spacing:1.275000px;}
.ls9{letter-spacing:1.320000px;}
.lsa9{letter-spacing:1.326000px;}
.lsb0{letter-spacing:1.377000px;}
.ls4{letter-spacing:1.380000px;}
.ls91{letter-spacing:1.428000px;}
.ls2c{letter-spacing:1.440000px;}
.ls25{letter-spacing:1.446000px;}
.ls2d{letter-spacing:1.470000px;}
.ls96{letter-spacing:1.479000px;}
.ls39{letter-spacing:1.500000px;}
.ls30{letter-spacing:1.530000px;}
.ls44{letter-spacing:1.560000px;}
.lsb2{letter-spacing:1.581000px;}
.ls3e{letter-spacing:1.590000px;}
.ls2a{letter-spacing:1.620000px;}
.ls95{letter-spacing:1.632000px;}
.ls41{letter-spacing:1.680000px;}
.ls8a{letter-spacing:1.683000px;}
.lsac{letter-spacing:1.734000px;}
.ls72{letter-spacing:1.740000px;}
.ls8b{letter-spacing:1.785000px;}
.ls48{letter-spacing:1.800000px;}
.ls43{letter-spacing:1.830000px;}
.ls94{letter-spacing:1.836000px;}
.ls49{letter-spacing:1.860000px;}
.ls4c{letter-spacing:1.890000px;}
.ls22{letter-spacing:1.920000px;}
.ls8d{letter-spacing:1.938000px;}
.ls50{letter-spacing:1.980000px;}
.ls76{letter-spacing:1.989000px;}
.ls40{letter-spacing:2.040000px;}
.ls90{letter-spacing:2.091000px;}
.ls4b{letter-spacing:2.100000px;}
.ls4a{letter-spacing:2.160000px;}
.ls3f{letter-spacing:2.220000px;}
.ls51{letter-spacing:2.280000px;}
.ls4e{letter-spacing:2.340000px;}
.lsab{letter-spacing:2.346000px;}
.lsb1{letter-spacing:2.448000px;}
.ls53{letter-spacing:2.460000px;}
.ls42{letter-spacing:2.520000px;}
.ls4f{letter-spacing:2.640000px;}
.ls52{letter-spacing:2.760000px;}
.ls71{letter-spacing:2.820000px;}
.ls64{letter-spacing:9.877200px;}
.ls61{letter-spacing:9.964224px;}
.ls62{letter-spacing:134.190682px;}
.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;}
}
.ws89{word-spacing:-16.500000px;}
.ws92{word-spacing:-16.320000px;}
.ws9d{word-spacing:-16.140000px;}
.ws9e{word-spacing:-15.960000px;}
.ws6a{word-spacing:-15.900000px;}
.ws50{word-spacing:-15.840000px;}
.ws8a{word-spacing:-15.720000px;}
.ws24{word-spacing:-15.660000px;}
.ws6b{word-spacing:-15.300000px;}
.ws69{word-spacing:-15.180000px;}
.ws9a{word-spacing:-15.030000px;}
.ws23{word-spacing:-15.000000px;}
.ws68{word-spacing:-14.880000px;}
.wsbf{word-spacing:-14.832000px;}
.ws4f{word-spacing:-14.820000px;}
.ws3c{word-spacing:-14.544000px;}
.wsc9{word-spacing:-13.719000px;}
.ws6{word-spacing:-13.005000px;}
.ws8{word-spacing:-12.750000px;}
.ws73{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws5{word-spacing:-11.520000px;}
.wsb2{word-spacing:-10.761000px;}
.ws81{word-spacing:-10.500000px;}
.wsb1{word-spacing:-10.149000px;}
.ws1{word-spacing:-9.996000px;}
.wsb0{word-spacing:-9.750000px;}
.ws7{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws8e{word-spacing:-2.640000px;}
.wsc{word-spacing:-2.160000px;}
.ws77{word-spacing:-2.040000px;}
.wsa{word-spacing:-1.989000px;}
.ws9{word-spacing:-1.890000px;}
.ws79{word-spacing:-1.680000px;}
.ws8b{word-spacing:-1.620000px;}
.ws46{word-spacing:-1.560000px;}
.wse{word-spacing:-1.500000px;}
.ws14{word-spacing:-1.440000px;}
.ws11{word-spacing:-1.380000px;}
.wscf{word-spacing:-1.377000px;}
.wsc3{word-spacing:-1.326000px;}
.ws7b{word-spacing:-1.320000px;}
.wsb6{word-spacing:-1.275000px;}
.ws10{word-spacing:-1.260000px;}
.ws107{word-spacing:-1.224000px;}
.ws41{word-spacing:-1.200000px;}
.ws29{word-spacing:-1.140000px;}
.wsfe{word-spacing:-1.122000px;}
.ws4b{word-spacing:-1.080000px;}
.wsc0{word-spacing:-1.071000px;}
.ws66{word-spacing:-1.020000px;}
.wsbd{word-spacing:-0.969000px;}
.ws20{word-spacing:-0.960000px;}
.ws10a{word-spacing:-0.918000px;}
.ws49{word-spacing:-0.900000px;}
.ws113{word-spacing:-0.867000px;}
.ws33{word-spacing:-0.840000px;}
.wsf1{word-spacing:-0.816000px;}
.ws32{word-spacing:-0.780000px;}
.wsc1{word-spacing:-0.765000px;}
.ws16{word-spacing:-0.720000px;}
.wsc2{word-spacing:-0.714000px;}
.ws10d{word-spacing:-0.663000px;}
.ws3e{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.612000px;}
.ws56{word-spacing:-0.600000px;}
.wsde{word-spacing:-0.561000px;}
.ws1e{word-spacing:-0.540000px;}
.wsff{word-spacing:-0.510000px;}
.ws64{word-spacing:-0.480000px;}
.wsc8{word-spacing:-0.459000px;}
.ws34{word-spacing:-0.420000px;}
.wsb5{word-spacing:-0.408000px;}
.ws63{word-spacing:-0.360000px;}
.wsdd{word-spacing:-0.357000px;}
.wse4{word-spacing:-0.306000px;}
.ws2d{word-spacing:-0.300000px;}
.wsbc{word-spacing:-0.264000px;}
.wsba{word-spacing:-0.255000px;}
.ws44{word-spacing:-0.240000px;}
.ws117{word-spacing:-0.204000px;}
.ws13{word-spacing:-0.180000px;}
.wsa7{word-spacing:-0.174048px;}
.wse1{word-spacing:-0.153000px;}
.ws65{word-spacing:-0.120000px;}
.wsc4{word-spacing:-0.102000px;}
.wsa5{word-spacing:-0.087024px;}
.ws54{word-spacing:-0.060000px;}
.wsd7{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.wsaa{word-spacing:-0.043512px;}
.wsb{word-spacing:0.000000px;}
.wsa6{word-spacing:0.043512px;}
.ws47{word-spacing:0.060000px;}
.wsa9{word-spacing:0.087024px;}
.ws115{word-spacing:0.102000px;}
.ws55{word-spacing:0.120000px;}
.wsad{word-spacing:0.130536px;}
.wsf2{word-spacing:0.153000px;}
.wsae{word-spacing:0.174048px;}
.ws5c{word-spacing:0.180000px;}
.ws2c{word-spacing:0.240000px;}
.wseb{word-spacing:0.255000px;}
.ws25{word-spacing:0.300000px;}
.ws111{word-spacing:0.306000px;}
.ws10c{word-spacing:0.357000px;}
.ws86{word-spacing:0.360000px;}
.wsaf{word-spacing:0.391608px;}
.wsd5{word-spacing:0.408000px;}
.ws40{word-spacing:0.420000px;}
.ws35{word-spacing:0.480000px;}
.wse6{word-spacing:0.510000px;}
.wsa8{word-spacing:0.522144px;}
.wsa0{word-spacing:0.540000px;}
.wscd{word-spacing:0.561000px;}
.ws7f{word-spacing:0.600000px;}
.ws100{word-spacing:0.612000px;}
.ws3f{word-spacing:0.660000px;}
.ws10f{word-spacing:0.663000px;}
.wsab{word-spacing:0.696192px;}
.wsc7{word-spacing:0.714000px;}
.ws78{word-spacing:0.720000px;}
.wsd1{word-spacing:0.765000px;}
.ws4d{word-spacing:0.780000px;}
.wse7{word-spacing:0.816000px;}
.wsa2{word-spacing:0.840000px;}
.ws106{word-spacing:0.867000px;}
.wsd{word-spacing:0.900000px;}
.wscc{word-spacing:0.918000px;}
.ws2e{word-spacing:0.960000px;}
.ws101{word-spacing:0.969000px;}
.ws12{word-spacing:1.020000px;}
.ws116{word-spacing:1.071000px;}
.ws18{word-spacing:1.080000px;}
.wsdf{word-spacing:1.122000px;}
.ws75{word-spacing:1.140000px;}
.wsbe{word-spacing:1.173000px;}
.ws15{word-spacing:1.200000px;}
.wse8{word-spacing:1.224000px;}
.ws37{word-spacing:1.260000px;}
.wsb4{word-spacing:1.275000px;}
.ws72{word-spacing:1.320000px;}
.wse2{word-spacing:1.326000px;}
.wsda{word-spacing:1.377000px;}
.ws5f{word-spacing:1.380000px;}
.wsf9{word-spacing:1.428000px;}
.wsf{word-spacing:1.440000px;}
.wsef{word-spacing:1.479000px;}
.ws1a{word-spacing:1.500000px;}
.ws104{word-spacing:1.530000px;}
.ws52{word-spacing:1.560000px;}
.wse0{word-spacing:1.581000px;}
.ws43{word-spacing:1.620000px;}
.wsd0{word-spacing:1.632000px;}
.ws31{word-spacing:1.680000px;}
.wsdb{word-spacing:1.683000px;}
.ws10b{word-spacing:1.734000px;}
.ws67{word-spacing:1.740000px;}
.wsd4{word-spacing:1.785000px;}
.ws5a{word-spacing:1.800000px;}
.ws102{word-spacing:1.836000px;}
.ws26{word-spacing:1.860000px;}
.ws11c{word-spacing:1.887000px;}
.ws7c{word-spacing:1.920000px;}
.ws6d{word-spacing:1.980000px;}
.wse5{word-spacing:1.989000px;}
.ws1d{word-spacing:2.040000px;}
.wsf4{word-spacing:2.091000px;}
.ws1b{word-spacing:2.100000px;}
.wsfb{word-spacing:2.142000px;}
.ws6c{word-spacing:2.160000px;}
.ws114{word-spacing:2.193000px;}
.ws2b{word-spacing:2.220000px;}
.wsd2{word-spacing:2.244000px;}
.ws6f{word-spacing:2.280000px;}
.wsb8{word-spacing:2.295000px;}
.ws48{word-spacing:2.340000px;}
.wsee{word-spacing:2.346000px;}
.ws27{word-spacing:2.400000px;}
.wse9{word-spacing:2.448000px;}
.ws91{word-spacing:2.460000px;}
.ws112{word-spacing:2.499000px;}
.ws1f{word-spacing:2.520000px;}
.ws103{word-spacing:2.550000px;}
.ws53{word-spacing:2.580000px;}
.wsb7{word-spacing:2.601000px;}
.ws62{word-spacing:2.640000px;}
.wsea{word-spacing:2.652000px;}
.ws42{word-spacing:2.700000px;}
.wse3{word-spacing:2.703000px;}
.ws109{word-spacing:2.754000px;}
.ws51{word-spacing:2.760000px;}
.wsc6{word-spacing:2.805000px;}
.ws82{word-spacing:2.820000px;}
.wsb9{word-spacing:2.856000px;}
.ws28{word-spacing:2.880000px;}
.wscb{word-spacing:2.907000px;}
.ws57{word-spacing:2.940000px;}
.wsfa{word-spacing:2.958000px;}
.ws4a{word-spacing:3.000000px;}
.ws8d{word-spacing:3.060000px;}
.ws108{word-spacing:3.111000px;}
.ws84{word-spacing:3.120000px;}
.wsd9{word-spacing:3.162000px;}
.ws59{word-spacing:3.180000px;}
.wsed{word-spacing:3.213000px;}
.ws45{word-spacing:3.240000px;}
.wsd8{word-spacing:3.264000px;}
.ws2f{word-spacing:3.300000px;}
.ws9f{word-spacing:3.360000px;}
.wsdc{word-spacing:3.366000px;}
.ws2a{word-spacing:3.420000px;}
.ws105{word-spacing:3.468000px;}
.ws60{word-spacing:3.480000px;}
.ws71{word-spacing:3.540000px;}
.wsca{word-spacing:3.570000px;}
.ws74{word-spacing:3.600000px;}
.wsd3{word-spacing:3.621000px;}
.ws3a{word-spacing:3.660000px;}
.ws4c{word-spacing:3.720000px;}
.ws119{word-spacing:3.723000px;}
.wsfd{word-spacing:3.774000px;}
.ws9b{word-spacing:3.780000px;}
.wsf5{word-spacing:3.825000px;}
.ws3b{word-spacing:3.840000px;}
.ws36{word-spacing:3.900000px;}
.ws30{word-spacing:3.960000px;}
.ws5d{word-spacing:4.020000px;}
.wsd6{word-spacing:4.029000px;}
.ws118{word-spacing:4.080000px;}
.wsfc{word-spacing:4.131000px;}
.ws90{word-spacing:4.140000px;}
.wsf7{word-spacing:4.182000px;}
.ws95{word-spacing:4.200000px;}
.ws110{word-spacing:4.233000px;}
.wsa1{word-spacing:4.260000px;}
.wsbb{word-spacing:4.284000px;}
.ws61{word-spacing:4.320000px;}
.ws1c{word-spacing:4.380000px;}
.wsf8{word-spacing:4.386000px;}
.wsec{word-spacing:4.437000px;}
.ws97{word-spacing:4.440000px;}
.ws76{word-spacing:4.500000px;}
.ws19{word-spacing:4.560000px;}
.wsc5{word-spacing:4.590000px;}
.ws58{word-spacing:4.620000px;}
.wsac{word-spacing:4.680000px;}
.ws38{word-spacing:4.740000px;}
.wsf0{word-spacing:4.794000px;}
.ws8c{word-spacing:4.860000px;}
.ws70{word-spacing:4.920000px;}
.ws5b{word-spacing:5.040000px;}
.wsce{word-spacing:5.049000px;}
.ws85{word-spacing:5.100000px;}
.ws83{word-spacing:5.160000px;}
.ws9c{word-spacing:5.220000px;}
.ws5e{word-spacing:5.400000px;}
.ws99{word-spacing:5.520000px;}
.ws8f{word-spacing:5.580000px;}
.ws7d{word-spacing:5.640000px;}
.ws4e{word-spacing:5.700000px;}
.ws80{word-spacing:5.820000px;}
.ws11b{word-spacing:5.865000px;}
.ws96{word-spacing:5.940000px;}
.ws7a{word-spacing:6.000000px;}
.ws7e{word-spacing:6.060000px;}
.ws39{word-spacing:6.120000px;}
.wsf3{word-spacing:6.324000px;}
.wsa3{word-spacing:6.660000px;}
.ws10e{word-spacing:6.681000px;}
.wsf6{word-spacing:6.732000px;}
.ws98{word-spacing:6.900000px;}
.ws93{word-spacing:7.020000px;}
.ws94{word-spacing:7.080000px;}
.ws6e{word-spacing:7.380000px;}
.ws3d{word-spacing:7.440000px;}
.ws11a{word-spacing:7.701000px;}
.wsb3{word-spacing:7.740000px;}
.ws88{word-spacing:8.058000px;}
.ws87{word-spacing:8.466000px;}
.wsa4{word-spacing:9.360000px;}
.ws11d{word-spacing:14.178000px;}
.ws11e{word-spacing:18.462000px;}
.ws17{word-spacing:21.456000px;}
.ws21{word-spacing:72.267000px;}
._2c{margin-left:-21.879000px;}
._2b{margin-left:-18.258000px;}
._7{margin-left:-16.575000px;}
._2a{margin-left:-15.351000px;}
._12{margin-left:-13.614000px;}
._11{margin-left:-12.474000px;}
._15{margin-left:-11.400000px;}
._3{margin-left:-6.108600px;}
._5{margin-left:-4.848000px;}
._2{margin-left:-3.468000px;}
._0{margin-left:-1.632000px;}
._1{width:1.983900px;}
._e{width:3.167977px;}
._d{width:5.080188px;}
._13{width:6.480000px;}
._23{width:8.721000px;}
._28{width:9.792000px;}
._16{width:10.950000px;}
._14{width:12.767400px;}
._f{width:14.211900px;}
._17{width:15.606000px;}
._25{width:16.983900px;}
._8{width:18.360000px;}
._10{width:20.526000px;}
._27{width:21.629100px;}
._29{width:22.865100px;}
._6{width:29.964000px;}
._c{width:32.880000px;}
._b{width:35.036100px;}
._26{width:37.383000px;}
._24{width:38.658000px;}
._4{width:40.695000px;}
._9{width:54.621000px;}
._1e{width:71.123979px;}
._1d{width:87.242995px;}
._18{width:346.202979px;}
._19{width:429.696000px;}
._1a{width:436.176000px;}
._20{width:450.794979px;}
._21{width:490.229979px;}
._1b{width:501.071978px;}
._22{width:557.387979px;}
._1f{width:570.413979px;}
._1c{width:597.401979px;}
._a{width:2355.639000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fsb{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:43.511894px;}
.fs9{font-size:43.511999px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y18e{bottom:112.914438px;}
.y184{bottom:112.932300px;}
.y3c{bottom:112.938300px;}
.y112{bottom:112.944300px;}
.y71{bottom:113.415344px;}
.y164{bottom:113.683823px;}
.y10f{bottom:114.555244px;}
.y146{bottom:114.555267px;}
.ydd{bottom:114.735260px;}
.y1b5{bottom:114.735294px;}
.ya4{bottom:114.735306px;}
.y226{bottom:116.530823px;}
.y2e2{bottom:116.614823px;}
.y2e1{bottom:116.997307px;}
.y324{bottom:117.010073px;}
.y1e8{bottom:118.588949px;}
.y2b{bottom:122.973450px;}
.y111{bottom:127.938300px;}
.y225{bottom:131.524823px;}
.y29f{bottom:131.608823px;}
.y267{bottom:131.920073px;}
.y365{bottom:131.991275px;}
.y2e0{bottom:131.991307px;}
.y323{bottom:132.004073px;}
.y70{bottom:132.165344px;}
.y163{bottom:132.433823px;}
.y3b{bottom:133.032303px;}
.y10e{bottom:133.305244px;}
.y145{bottom:133.305267px;}
.ydc{bottom:133.485260px;}
.y1b4{bottom:133.485294px;}
.ya3{bottom:133.485306px;}
.y1e7{bottom:133.582949px;}
.y2a{bottom:141.723450px;}
.y224{bottom:146.518823px;}
.y29e{bottom:146.602823px;}
.y266{bottom:146.914073px;}
.y364{bottom:146.985275px;}
.y2df{bottom:146.985307px;}
.y322{bottom:146.998073px;}
.y110{bottom:148.032303px;}
.y1e6{bottom:148.576949px;}
.y6f{bottom:150.915344px;}
.y162{bottom:151.183823px;}
.y10d{bottom:152.055244px;}
.y144{bottom:152.055267px;}
.ydb{bottom:152.235260px;}
.y1b3{bottom:152.235294px;}
.ya2{bottom:152.235306px;}
.y3a{bottom:155.579556px;}
.y29{bottom:160.473450px;}
.y223{bottom:161.512823px;}
.y29d{bottom:161.596823px;}
.y265{bottom:161.908073px;}
.y363{bottom:161.979275px;}
.y2de{bottom:161.979307px;}
.y321{bottom:161.992073px;}
.y6e{bottom:169.665344px;}
.y161{bottom:169.933823px;}
.y10c{bottom:170.805244px;}
.y143{bottom:170.805267px;}
.yda{bottom:170.985260px;}
.ya1{bottom:170.985306px;}
.y1b0{bottom:172.857429px;}
.y1a7{bottom:172.867167px;}
.y1a2{bottom:172.876921px;}
.y19b{bottom:172.886677px;}
.y194{bottom:172.896430px;}
.y186{bottom:172.915936px;}
.y185{bottom:172.925697px;}
.y39{bottom:173.032794px;}
.y222{bottom:176.506823px;}
.y29c{bottom:176.590823px;}
.y264{bottom:176.902073px;}
.y362{bottom:176.973275px;}
.y2dd{bottom:176.973307px;}
.y320{bottom:176.986073px;}
.y28{bottom:179.223450px;}
.y18f{bottom:181.905437px;}
.y1e5{bottom:182.287949px;}
.y6d{bottom:188.415344px;}
.y160{bottom:188.683823px;}
.y10b{bottom:189.555244px;}
.y142{bottom:189.555267px;}
.yd9{bottom:189.735260px;}
.y1b2{bottom:189.735294px;}
.ya0{bottom:189.735306px;}
.y221{bottom:191.500823px;}
.y29b{bottom:191.584823px;}
.y263{bottom:191.896073px;}
.y361{bottom:191.967275px;}
.y2dc{bottom:191.967307px;}
.y31f{bottom:191.980073px;}
.y38{bottom:193.126808px;}
.y27{bottom:197.973450px;}
.y220{bottom:206.494823px;}
.y29a{bottom:206.578823px;}
.y262{bottom:206.890073px;}
.y360{bottom:206.961275px;}
.y2db{bottom:206.961307px;}
.y31e{bottom:206.974073px;}
.y6c{bottom:207.165344px;}
.y15f{bottom:207.433823px;}
.y10a{bottom:208.305244px;}
.y141{bottom:208.305267px;}
.yd8{bottom:208.485260px;}
.y9f{bottom:208.485306px;}
.y37{bottom:210.586059px;}
.y1e4{bottom:216.037949px;}
.y26{bottom:216.723450px;}
.y367{bottom:221.101057px;}
.y21f{bottom:221.488823px;}
.y299{bottom:221.572823px;}
.y261{bottom:221.884073px;}
.y35f{bottom:221.955275px;}
.y2da{bottom:221.955307px;}
.y31d{bottom:221.968073px;}
.y36{bottom:225.580059px;}
.y6b{bottom:225.915344px;}
.y15e{bottom:226.183823px;}
.y109{bottom:227.055244px;}
.y140{bottom:227.055267px;}
.yd7{bottom:227.235260px;}
.y9e{bottom:227.235306px;}
.y25{bottom:235.473450px;}
.y366{bottom:236.095057px;}
.y21e{bottom:236.482823px;}
.y298{bottom:236.566823px;}
.y260{bottom:236.878073px;}
.y35e{bottom:236.949275px;}
.y2d9{bottom:236.949307px;}
.y31c{bottom:236.962073px;}
.y6a{bottom:244.665344px;}
.y15d{bottom:244.933823px;}
.y35{bottom:245.674049px;}
.y108{bottom:245.805244px;}
.y13f{bottom:245.805267px;}
.yd6{bottom:245.985260px;}
.y9d{bottom:245.985306px;}
.y21d{bottom:251.476823px;}
.y297{bottom:251.560823px;}
.y25f{bottom:251.872073px;}
.y35d{bottom:251.943275px;}
.y2d8{bottom:251.943307px;}
.y31b{bottom:251.956073px;}
.y1e3{bottom:253.625688px;}
.y24{bottom:254.223450px;}
.y34{bottom:263.127300px;}
.y69{bottom:263.415344px;}
.y15c{bottom:263.683823px;}
.y107{bottom:264.555244px;}
.y13e{bottom:264.555267px;}
.yd5{bottom:264.735260px;}
.y9c{bottom:264.735306px;}
.y21c{bottom:266.470823px;}
.y296{bottom:266.554823px;}
.y25e{bottom:266.866073px;}
.y35c{bottom:266.937275px;}
.y2d7{bottom:266.937307px;}
.y31a{bottom:266.950073px;}
.y1e2{bottom:268.619688px;}
.y21b{bottom:281.464823px;}
.y295{bottom:281.548823px;}
.y25d{bottom:281.860073px;}
.y35b{bottom:281.931275px;}
.y2d6{bottom:281.931307px;}
.y319{bottom:281.944073px;}
.y68{bottom:282.165344px;}
.y15b{bottom:282.433823px;}
.y33{bottom:283.221291px;}
.y106{bottom:283.305244px;}
.y13d{bottom:283.305267px;}
.yd4{bottom:283.485260px;}
.y9b{bottom:283.485306px;}
.y23{bottom:291.723450px;}
.y21a{bottom:296.458823px;}
.y294{bottom:296.542823px;}
.y25c{bottom:296.854073px;}
.y35a{bottom:296.925275px;}
.y2d5{bottom:296.925307px;}
.y318{bottom:296.938073px;}
.y67{bottom:300.915344px;}
.y15a{bottom:301.183823px;}
.y105{bottom:302.055244px;}
.y13c{bottom:302.055267px;}
.yd3{bottom:302.235260px;}
.y9a{bottom:302.235306px;}
.y1e1{bottom:302.330688px;}
.y32{bottom:305.768555px;}
.y22{bottom:310.473450px;}
.y219{bottom:311.452823px;}
.y293{bottom:311.536823px;}
.y25b{bottom:311.848073px;}
.y359{bottom:311.919275px;}
.y2d4{bottom:311.919307px;}
.y317{bottom:311.932073px;}
.y1e0{bottom:317.324688px;}
.y66{bottom:319.665344px;}
.y159{bottom:319.933823px;}
.y104{bottom:320.805244px;}
.y13b{bottom:320.805267px;}
.yd2{bottom:320.985260px;}
.y99{bottom:320.985306px;}
.y218{bottom:326.446823px;}
.y292{bottom:326.530823px;}
.y25a{bottom:326.842073px;}
.y358{bottom:326.913275px;}
.y2d3{bottom:326.913307px;}
.y316{bottom:326.926073px;}
.y31{bottom:328.315796px;}
.y21{bottom:329.223450px;}
.y1df{bottom:332.318688px;}
.y65{bottom:338.415344px;}
.y158{bottom:338.683823px;}
.y103{bottom:339.555244px;}
.y13a{bottom:339.555267px;}
.yd1{bottom:339.735260px;}
.y98{bottom:339.735306px;}
.y217{bottom:341.440823px;}
.y291{bottom:341.524823px;}
.y259{bottom:341.836073px;}
.y357{bottom:341.907275px;}
.y2d2{bottom:341.907307px;}
.y315{bottom:341.920073px;}
.y30{bottom:345.775046px;}
.y1de{bottom:347.312688px;}
.y20{bottom:347.973450px;}
.y216{bottom:356.434823px;}
.y290{bottom:356.518823px;}
.y258{bottom:356.830073px;}
.y356{bottom:356.901275px;}
.y2d1{bottom:356.901307px;}
.y314{bottom:356.914073px;}
.y64{bottom:357.165344px;}
.y157{bottom:357.433823px;}
.y102{bottom:358.305244px;}
.y139{bottom:358.305267px;}
.yd0{bottom:358.485260px;}
.y97{bottom:358.485306px;}
.y2f{bottom:360.769046px;}
.y1a9{bottom:361.783162px;}
.y1a3{bottom:361.792915px;}
.y19d{bottom:361.802672px;}
.y196{bottom:361.812425px;}
.y190{bottom:361.822178px;}
.y1dd{bottom:362.306688px;}
.y1f{bottom:366.723450px;}
.y1b1{bottom:370.772674px;}
.y1a8{bottom:370.782412px;}
.y1a4{bottom:370.792165px;}
.y19c{bottom:370.801922px;}
.y195{bottom:370.811675px;}
.y191{bottom:370.821428px;}
.y187{bottom:370.831173px;}
.y215{bottom:371.428823px;}
.y28f{bottom:371.512823px;}
.y257{bottom:371.824073px;}
.y355{bottom:371.895275px;}
.y2d0{bottom:371.895307px;}
.y313{bottom:371.908073px;}
.y63{bottom:375.915344px;}
.y156{bottom:376.183823px;}
.y101{bottom:377.055244px;}
.y138{bottom:377.055267px;}
.ycf{bottom:377.235260px;}
.y96{bottom:377.235306px;}
.y1dc{bottom:377.300688px;}
.y2e{bottom:380.863060px;}
.y1e{bottom:385.473450px;}
.y214{bottom:386.422823px;}
.y28e{bottom:386.506823px;}
.y256{bottom:386.818073px;}
.y354{bottom:386.889275px;}
.y2cf{bottom:386.889307px;}
.y312{bottom:386.902073px;}
.y1db{bottom:392.294688px;}
.y62{bottom:394.665344px;}
.y155{bottom:394.933823px;}
.y100{bottom:395.805244px;}
.y137{bottom:395.805267px;}
.yce{bottom:395.985260px;}
.y95{bottom:395.985306px;}
.y213{bottom:401.416823px;}
.y28d{bottom:401.500823px;}
.y255{bottom:401.812073px;}
.y353{bottom:401.883275px;}
.y2ce{bottom:401.883307px;}
.y311{bottom:401.896073px;}
.y1d{bottom:404.223450px;}
.y2d{bottom:405.863529px;}
.y1da{bottom:407.288688px;}
.y61{bottom:413.415344px;}
.y154{bottom:413.683823px;}
.yff{bottom:414.555244px;}
.y136{bottom:414.555267px;}
.ycd{bottom:414.735260px;}
.y94{bottom:414.735306px;}
.y212{bottom:416.410823px;}
.y28c{bottom:416.494823px;}
.y254{bottom:416.806073px;}
.y352{bottom:416.877275px;}
.y2cd{bottom:416.877307px;}
.y310{bottom:416.890073px;}
.y2c{bottom:420.857529px;}
.y1d9{bottom:422.282688px;}
.y211{bottom:431.404823px;}
.y28b{bottom:431.488823px;}
.y253{bottom:431.800073px;}
.y351{bottom:431.871275px;}
.y2cc{bottom:431.871307px;}
.y30f{bottom:431.884073px;}
.y60{bottom:432.165344px;}
.y153{bottom:432.433823px;}
.yfe{bottom:433.305244px;}
.y135{bottom:433.305267px;}
.ycc{bottom:433.485260px;}
.y93{bottom:433.485306px;}
.y1d8{bottom:437.276688px;}
.y1c{bottom:441.723450px;}
.y210{bottom:446.398823px;}
.y28a{bottom:446.482823px;}
.y252{bottom:446.794073px;}
.y350{bottom:446.865275px;}
.y2cb{bottom:446.865307px;}
.y30e{bottom:446.878073px;}
.y5f{bottom:450.915344px;}
.y152{bottom:451.183823px;}
.yfd{bottom:452.055244px;}
.y134{bottom:452.055267px;}
.ycb{bottom:452.235260px;}
.y92{bottom:452.235306px;}
.y20f{bottom:461.392823px;}
.y289{bottom:461.476823px;}
.y251{bottom:461.788073px;}
.y34f{bottom:461.859275px;}
.y2ca{bottom:461.859307px;}
.y30d{bottom:461.872073px;}
.y5e{bottom:469.665344px;}
.y151{bottom:469.933823px;}
.yfc{bottom:470.805244px;}
.y133{bottom:470.805267px;}
.yca{bottom:470.985260px;}
.y1d7{bottom:470.985294px;}
.y91{bottom:470.985306px;}
.y20e{bottom:476.386823px;}
.y288{bottom:476.470823px;}
.y250{bottom:476.782073px;}
.y34e{bottom:476.853275px;}
.y2c9{bottom:476.853307px;}
.y30c{bottom:476.866073px;}
.y5d{bottom:488.415344px;}
.y150{bottom:488.683823px;}
.yfb{bottom:489.555244px;}
.y132{bottom:489.555267px;}
.yc9{bottom:489.735260px;}
.y1d6{bottom:489.735294px;}
.y90{bottom:489.735306px;}
.y20d{bottom:491.380823px;}
.y287{bottom:491.464823px;}
.y24f{bottom:491.776073px;}
.y34d{bottom:491.847275px;}
.y2c8{bottom:491.847307px;}
.y30b{bottom:491.860073px;}
.y1b{bottom:497.973450px;}
.y20c{bottom:506.374823px;}
.y286{bottom:506.458823px;}
.y24e{bottom:506.770073px;}
.y34c{bottom:506.841275px;}
.y2c7{bottom:506.841307px;}
.y30a{bottom:506.854073px;}
.y5c{bottom:507.165344px;}
.y14f{bottom:507.433823px;}
.yfa{bottom:508.305244px;}
.y131{bottom:508.305267px;}
.yc8{bottom:508.485260px;}
.y1d5{bottom:508.485294px;}
.yc3{bottom:508.485306px;}
.y1a{bottom:516.723450px;}
.y20b{bottom:521.368823px;}
.y285{bottom:521.452823px;}
.y24d{bottom:521.764073px;}
.y34b{bottom:521.835275px;}
.y2c6{bottom:521.835307px;}
.y309{bottom:521.848073px;}
.y5b{bottom:525.915344px;}
.y14e{bottom:526.183823px;}
.yf9{bottom:527.055244px;}
.y130{bottom:527.055267px;}
.y8f{bottom:527.229306px;}
.yc7{bottom:527.235260px;}
.y1d4{bottom:527.235294px;}
.yc2{bottom:527.235306px;}
.y20a{bottom:536.362823px;}
.y284{bottom:536.446823px;}
.y24c{bottom:536.758073px;}
.y34a{bottom:536.829275px;}
.y2c5{bottom:536.829307px;}
.y308{bottom:536.842073px;}
.y5a{bottom:544.665344px;}
.y14d{bottom:544.933823px;}
.yf8{bottom:545.805244px;}
.y12f{bottom:545.805267px;}
.yc6{bottom:545.985260px;}
.y1d3{bottom:545.985294px;}
.y8e{bottom:545.985306px;}
.y209{bottom:551.356823px;}
.y283{bottom:551.440823px;}
.y24b{bottom:551.752073px;}
.y349{bottom:551.823275px;}
.y2c4{bottom:551.823307px;}
.y307{bottom:551.836073px;}
.y1aa{bottom:551.898412px;}
.y1a5{bottom:551.908165px;}
.y19e{bottom:551.917922px;}
.y197{bottom:551.927675px;}
.y192{bottom:551.937428px;}
.y188{bottom:551.947173px;}
.y19{bottom:554.223450px;}
.y1ab{bottom:560.897662px;}
.y1a6{bottom:560.907415px;}
.y19f{bottom:560.917172px;}
.y198{bottom:560.926925px;}
.y193{bottom:560.936678px;}
.y189{bottom:560.946423px;}
.y59{bottom:563.415344px;}
.y14c{bottom:563.683823px;}
.yf7{bottom:564.555244px;}
.y12e{bottom:564.555267px;}
.yc5{bottom:564.735260px;}
.y1d2{bottom:564.735294px;}
.yc1{bottom:564.735306px;}
.y208{bottom:566.350823px;}
.y282{bottom:566.434823px;}
.y24a{bottom:566.746073px;}
.y348{bottom:566.817275px;}
.y2c3{bottom:566.817307px;}
.y306{bottom:566.830073px;}
.y18{bottom:572.973450px;}
.y207{bottom:581.344823px;}
.y281{bottom:581.428823px;}
.y249{bottom:581.740073px;}
.y347{bottom:581.811275px;}
.y2c2{bottom:581.811307px;}
.y305{bottom:581.824073px;}
.y58{bottom:582.165344px;}
.y14b{bottom:582.433823px;}
.yf6{bottom:583.305244px;}
.y12d{bottom:583.305267px;}
.yc4{bottom:583.485260px;}
.y1d1{bottom:583.485294px;}
.yc0{bottom:583.485306px;}
.y17{bottom:591.723450px;}
.y206{bottom:596.338823px;}
.y280{bottom:596.422823px;}
.y248{bottom:596.734073px;}
.y346{bottom:596.805275px;}
.y2c1{bottom:596.805307px;}
.y304{bottom:596.818073px;}
.y57{bottom:600.915344px;}
.y14a{bottom:601.183823px;}
.yf5{bottom:602.055244px;}
.y12c{bottom:602.055267px;}
.y8d{bottom:602.235260px;}
.y1d0{bottom:602.235294px;}
.ybf{bottom:602.235306px;}
.y16{bottom:610.473450px;}
.y205{bottom:611.332823px;}
.y27f{bottom:611.416823px;}
.y247{bottom:611.728073px;}
.y345{bottom:611.799275px;}
.y2c0{bottom:611.799307px;}
.y303{bottom:611.812073px;}
.y72{bottom:619.665344px;}
.y149{bottom:619.933823px;}
.yf4{bottom:620.805244px;}
.y12b{bottom:620.805267px;}
.y8c{bottom:620.985260px;}
.y1cf{bottom:620.985294px;}
.ybe{bottom:620.985306px;}
.y204{bottom:626.326823px;}
.y27e{bottom:626.410823px;}
.y246{bottom:626.722073px;}
.y344{bottom:626.793275px;}
.y2bf{bottom:626.793307px;}
.y302{bottom:626.806073px;}
.y15{bottom:629.223450px;}
.y56{bottom:638.415344px;}
.y148{bottom:638.683823px;}
.yf3{bottom:639.555244px;}
.y12a{bottom:639.555267px;}
.y8b{bottom:639.735260px;}
.y1ce{bottom:639.735294px;}
.ybd{bottom:639.735306px;}
.y203{bottom:641.320823px;}
.y27d{bottom:641.404823px;}
.y245{bottom:641.716073px;}
.y343{bottom:641.787275px;}
.y2be{bottom:641.787307px;}
.y301{bottom:641.800073px;}
.y14{bottom:647.973450px;}
.y202{bottom:656.314823px;}
.y27c{bottom:656.398823px;}
.y244{bottom:656.710073px;}
.y342{bottom:656.781275px;}
.y2bd{bottom:656.781307px;}
.y300{bottom:656.794073px;}
.y55{bottom:657.165344px;}
.yf2{bottom:658.305244px;}
.y129{bottom:658.305267px;}
.y8a{bottom:658.485260px;}
.y1cd{bottom:658.485294px;}
.ybc{bottom:658.485306px;}
.y13{bottom:666.723450px;}
.y201{bottom:671.308823px;}
.y27b{bottom:671.392823px;}
.y243{bottom:671.704073px;}
.y341{bottom:671.775275px;}
.y2bc{bottom:671.775307px;}
.y2ff{bottom:671.788073px;}
.y54{bottom:675.915344px;}
.y147{bottom:676.183823px;}
.yf1{bottom:677.055244px;}
.y128{bottom:677.055267px;}
.y89{bottom:677.235260px;}
.y1cc{bottom:677.235294px;}
.ybb{bottom:677.235306px;}
.y12{bottom:685.473450px;}
.y200{bottom:686.302823px;}
.y27a{bottom:686.386823px;}
.y242{bottom:686.698073px;}
.y340{bottom:686.769275px;}
.y2bb{bottom:686.769307px;}
.y2fe{bottom:686.782073px;}
.y53{bottom:694.665344px;}
.yf0{bottom:695.805244px;}
.y127{bottom:695.805267px;}
.y88{bottom:695.985260px;}
.y1cb{bottom:695.985294px;}
.yba{bottom:695.985306px;}
.y1ff{bottom:701.296823px;}
.y279{bottom:701.380823px;}
.y241{bottom:701.692073px;}
.y33f{bottom:701.763275px;}
.y2ba{bottom:701.763307px;}
.y2fd{bottom:701.776073px;}
.y11{bottom:704.223450px;}
.y52{bottom:713.415344px;}
.yef{bottom:714.555244px;}
.y126{bottom:714.555267px;}
.y87{bottom:714.735260px;}
.y1ca{bottom:714.735294px;}
.yb9{bottom:714.735306px;}
.y1fe{bottom:716.290823px;}
.y278{bottom:716.374823px;}
.y240{bottom:716.686073px;}
.y33e{bottom:716.757275px;}
.y2b9{bottom:716.757307px;}
.y2fc{bottom:716.770073px;}
.y10{bottom:722.973450px;}
.y1fd{bottom:731.284823px;}
.y277{bottom:731.368823px;}
.y23f{bottom:731.680073px;}
.y33d{bottom:731.751275px;}
.y2b8{bottom:731.751307px;}
.y2fb{bottom:731.764073px;}
.y51{bottom:732.165344px;}
.y125{bottom:733.305267px;}
.y183{bottom:733.386154px;}
.y86{bottom:733.485260px;}
.y1c9{bottom:733.485294px;}
.yb8{bottom:733.485306px;}
.y1ac{bottom:740.804659px;}
.y1a0{bottom:740.824169px;}
.y199{bottom:740.833922px;}
.y18a{bottom:740.853420px;}
.yf{bottom:741.723450px;}
.y1fc{bottom:746.278823px;}
.y276{bottom:746.362823px;}
.y23e{bottom:746.674073px;}
.y33c{bottom:746.745275px;}
.y2b7{bottom:746.745307px;}
.y2fa{bottom:746.758073px;}
.y1ad{bottom:749.803909px;}
.y1a1{bottom:749.823419px;}
.y19a{bottom:749.833172px;}
.y18b{bottom:749.852670px;}
.y50{bottom:750.915344px;}
.yee{bottom:752.055244px;}
.y124{bottom:752.055267px;}
.y85{bottom:752.235260px;}
.y1c8{bottom:752.235294px;}
.yb7{bottom:752.235306px;}
.ye{bottom:760.473450px;}
.y1fb{bottom:761.272823px;}
.y275{bottom:761.356823px;}
.y23d{bottom:761.668073px;}
.y33b{bottom:761.739275px;}
.y2b6{bottom:761.739307px;}
.y2f9{bottom:761.752073px;}
.y4f{bottom:769.665344px;}
.y123{bottom:770.805267px;}
.y84{bottom:770.985260px;}
.y1c7{bottom:770.985294px;}
.yb6{bottom:770.985306px;}
.y1fa{bottom:776.266823px;}
.y274{bottom:776.350823px;}
.y23c{bottom:776.662073px;}
.y33a{bottom:776.733275px;}
.y2b5{bottom:776.733307px;}
.y2f8{bottom:776.746073px;}
.yd{bottom:779.223450px;}
.y4e{bottom:788.415344px;}
.yed{bottom:789.555244px;}
.y122{bottom:789.555267px;}
.y83{bottom:789.735260px;}
.y1c6{bottom:789.735294px;}
.yb5{bottom:789.735306px;}
.y1f9{bottom:791.260823px;}
.y273{bottom:791.344823px;}
.y23b{bottom:791.656073px;}
.y339{bottom:791.727275px;}
.y2b4{bottom:791.727307px;}
.y2f7{bottom:791.740073px;}
.yc{bottom:797.973450px;}
.y1f8{bottom:806.254823px;}
.y272{bottom:806.338823px;}
.y23a{bottom:806.650073px;}
.y338{bottom:806.721275px;}
.y2b3{bottom:806.721307px;}
.y2f6{bottom:806.734073px;}
.y4d{bottom:807.165344px;}
.yec{bottom:808.305244px;}
.y121{bottom:808.305267px;}
.y82{bottom:808.485260px;}
.y1c5{bottom:808.485294px;}
.yb4{bottom:808.485306px;}
.yb{bottom:816.723450px;}
.y1f7{bottom:821.248823px;}
.y271{bottom:821.332823px;}
.y239{bottom:821.644073px;}
.y337{bottom:821.715275px;}
.y2b2{bottom:821.715307px;}
.y2f5{bottom:821.728073px;}
.y4c{bottom:825.915344px;}
.yeb{bottom:827.055244px;}
.y120{bottom:827.055267px;}
.y81{bottom:827.235260px;}
.y1c4{bottom:827.235294px;}
.yb3{bottom:827.235306px;}
.y1f6{bottom:836.242823px;}
.y270{bottom:836.326823px;}
.y238{bottom:836.638073px;}
.y336{bottom:836.709275px;}
.y2b1{bottom:836.709307px;}
.y2f4{bottom:836.722073px;}
.y4b{bottom:844.665344px;}
.yea{bottom:845.805244px;}
.y11f{bottom:845.805267px;}
.y80{bottom:845.985260px;}
.y1c3{bottom:845.985294px;}
.yb2{bottom:845.985306px;}
.y1f5{bottom:851.236823px;}
.y26f{bottom:851.320823px;}
.y237{bottom:851.632073px;}
.y335{bottom:851.703275px;}
.y2b0{bottom:851.703307px;}
.y2f3{bottom:851.716073px;}
.y17b{bottom:857.290954px;}
.y174{bottom:859.694992px;}
.ya{bottom:860.906208px;}
.y181{bottom:862.727602px;}
.y4a{bottom:863.415344px;}
.ye9{bottom:864.555244px;}
.y11e{bottom:864.555267px;}
.y7f{bottom:864.735260px;}
.y1c2{bottom:864.735294px;}
.yb1{bottom:864.735306px;}
.y1f4{bottom:866.230823px;}
.y26e{bottom:866.314823px;}
.y236{bottom:866.626073px;}
.y334{bottom:866.697275px;}
.y2af{bottom:866.697307px;}
.y2f2{bottom:866.710073px;}
.y17a{bottom:870.583870px;}
.y173{bottom:872.389618px;}
.y180{bottom:875.433105px;}
.y9{bottom:875.900208px;}
.y17d{bottom:879.648436px;}
.y1f3{bottom:881.224823px;}
.y26d{bottom:881.308823px;}
.y235{bottom:881.620073px;}
.y333{bottom:881.691275px;}
.y2ae{bottom:881.691307px;}
.y2f1{bottom:881.704073px;}
.y49{bottom:882.165344px;}
.y179{bottom:883.267618px;}
.ye8{bottom:883.305244px;}
.y11d{bottom:883.305267px;}
.y7e{bottom:883.485260px;}
.y1c1{bottom:883.485294px;}
.yb0{bottom:883.485306px;}
.y16d{bottom:883.491260px;}
.y17c{bottom:892.332184px;}
.y26c{bottom:896.302823px;}
.y234{bottom:896.614073px;}
.y332{bottom:896.685275px;}
.y2ad{bottom:896.685307px;}
.y2f0{bottom:896.698073px;}
.y171{bottom:900.231639px;}
.y48{bottom:900.915344px;}
.ye7{bottom:902.055244px;}
.y11c{bottom:902.055267px;}
.y7d{bottom:902.235260px;}
.y1c0{bottom:902.235294px;}
.yaf{bottom:902.235306px;}
.y26b{bottom:911.296823px;}
.y233{bottom:911.608073px;}
.y331{bottom:911.679275px;}
.y2ac{bottom:911.679307px;}
.y2ef{bottom:911.692073px;}
.y17f{bottom:912.274111px;}
.y1f2{bottom:914.974823px;}
.y8{bottom:918.500244px;}
.y47{bottom:919.665344px;}
.ye6{bottom:920.805244px;}
.y11b{bottom:920.805267px;}
.y7c{bottom:920.985260px;}
.y1bf{bottom:920.985294px;}
.yae{bottom:920.985306px;}
.y16f{bottom:924.978043px;}
.y17e{bottom:924.979614px;}
.y26a{bottom:926.290823px;}
.y232{bottom:926.602073px;}
.y330{bottom:926.673275px;}
.y2ab{bottom:926.673307px;}
.y2ee{bottom:926.686073px;}
.y1ae{bottom:929.145403px;}
.y18c{bottom:929.194161px;}
.y182{bottom:932.863770px;}
.y172{bottom:934.682265px;}
.y7{bottom:937.250244px;}
.y16e{bottom:937.672668px;}
.y1af{bottom:938.144653px;}
.y18d{bottom:938.193411px;}
.y46{bottom:938.415344px;}
.ye5{bottom:939.555244px;}
.y11a{bottom:939.555267px;}
.y7b{bottom:939.735260px;}
.y1be{bottom:939.735294px;}
.yad{bottom:939.735306px;}
.y269{bottom:941.284823px;}
.y231{bottom:941.596073px;}
.y32f{bottom:941.667275px;}
.y2aa{bottom:941.667307px;}
.y2ed{bottom:941.680073px;}
.y268{bottom:956.278823px;}
.y230{bottom:956.590073px;}
.y32e{bottom:956.661275px;}
.y2a9{bottom:956.661307px;}
.y2ec{bottom:956.674073px;}
.y45{bottom:957.165344px;}
.ye4{bottom:958.305244px;}
.y119{bottom:958.305267px;}
.y16c{bottom:958.483818px;}
.y7a{bottom:958.485260px;}
.y1bd{bottom:958.485294px;}
.yac{bottom:958.485306px;}
.y1f1{bottom:971.272823px;}
.y22f{bottom:971.584073px;}
.y32d{bottom:971.655275px;}
.y2a8{bottom:971.655307px;}
.y2eb{bottom:971.668073px;}
.y170{bottom:975.159302px;}
.y44{bottom:975.915344px;}
.ye3{bottom:977.055244px;}
.y118{bottom:977.055267px;}
.y16b{bottom:977.233818px;}
.y79{bottom:977.235260px;}
.y1bc{bottom:977.235294px;}
.yab{bottom:977.235306px;}
.y178{bottom:980.016548px;}
.y6{bottom:981.936768px;}
.y1f0{bottom:986.266823px;}
.y22e{bottom:986.578073px;}
.y32c{bottom:986.649275px;}
.y2a7{bottom:986.649307px;}
.y2ea{bottom:986.662073px;}
.y176{bottom:987.261296px;}
.y177{bottom:992.700296px;}
.y43{bottom:994.665344px;}
.ye2{bottom:995.805244px;}
.y117{bottom:995.805267px;}
.y16a{bottom:995.983818px;}
.y78{bottom:995.985260px;}
.y1bb{bottom:995.985294px;}
.yaa{bottom:995.985306px;}
.y175{bottom:999.955921px;}
.y1ef{bottom:1001.260823px;}
.y22d{bottom:1001.572073px;}
.y32b{bottom:1001.643275px;}
.y2a6{bottom:1001.643307px;}
.y2e9{bottom:1001.656073px;}
.y5{bottom:1008.936768px;}
.y42{bottom:1013.415344px;}
.ye1{bottom:1014.555244px;}
.y116{bottom:1014.555267px;}
.y169{bottom:1014.733818px;}
.y77{bottom:1014.735260px;}
.y1ba{bottom:1014.735294px;}
.ya9{bottom:1014.735306px;}
.y1ee{bottom:1016.254823px;}
.y22c{bottom:1016.566073px;}
.y32a{bottom:1016.637275px;}
.y2a5{bottom:1016.637307px;}
.y2e8{bottom:1016.650073px;}
.y1ed{bottom:1031.248823px;}
.y22b{bottom:1031.560073px;}
.y329{bottom:1031.631275px;}
.y2a4{bottom:1031.631307px;}
.y2e7{bottom:1031.644073px;}
.y41{bottom:1032.165344px;}
.ye0{bottom:1033.305244px;}
.y115{bottom:1033.305267px;}
.y168{bottom:1033.483818px;}
.y76{bottom:1033.485260px;}
.y1b9{bottom:1033.485294px;}
.ya8{bottom:1033.485306px;}
.y1ec{bottom:1046.242823px;}
.y22a{bottom:1046.554073px;}
.y328{bottom:1046.625275px;}
.y2a3{bottom:1046.625307px;}
.y2e6{bottom:1046.638073px;}
.y40{bottom:1050.915344px;}
.ydf{bottom:1052.055244px;}
.y114{bottom:1052.055267px;}
.y167{bottom:1052.233818px;}
.y75{bottom:1052.235260px;}
.y1b8{bottom:1052.235294px;}
.ya7{bottom:1052.235306px;}
.y1eb{bottom:1061.236823px;}
.y229{bottom:1061.548073px;}
.y327{bottom:1061.619275px;}
.y2a2{bottom:1061.619307px;}
.y2e5{bottom:1061.632073px;}
.y3f{bottom:1069.665344px;}
.y166{bottom:1070.983818px;}
.y74{bottom:1070.985260px;}
.y1b7{bottom:1070.985294px;}
.ya6{bottom:1070.985306px;}
.y1ea{bottom:1076.230823px;}
.y228{bottom:1076.542073px;}
.y326{bottom:1076.613275px;}
.y2a1{bottom:1076.613307px;}
.y2e4{bottom:1076.626073px;}
.y3e{bottom:1088.415344px;}
.yde{bottom:1089.555244px;}
.y113{bottom:1089.555267px;}
.y165{bottom:1089.733818px;}
.y73{bottom:1089.735260px;}
.y1b6{bottom:1089.735294px;}
.ya5{bottom:1089.735306px;}
.y1e9{bottom:1091.224823px;}
.y227{bottom:1091.536073px;}
.y325{bottom:1091.607275px;}
.y2a0{bottom:1091.607307px;}
.y2e3{bottom:1091.620073px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3d{bottom:1127.482361px;}
.h10{height:29.762207px;}
.h11{height:30.632373px;}
.h2{height:33.840000px;}
.hb{height:34.307699px;}
.h12{height:37.479000px;}
.h13{height:37.791000px;}
.h4{height:44.676000px;}
.ha{height:49.011000px;}
.he{height:53.160000px;}
.h3{height:54.862258px;}
.h8{height:57.660000px;}
.hc{height:59.004000px;}
.h7{height:59.340000px;}
.hd{height:61.380000px;}
.hf{height:64.362000px;}
.h6{height:64.866000px;}
.h9{height:71.208000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x7{left:78.746400px;}
.x9{left:93.566400px;}
.xb{left:95.525402px;}
.x6{left:97.796100px;}
.x8{left:106.871395px;}
.xd{left:113.343303px;}
.xe{left:134.085903px;}
.x1e{left:138.397202px;}
.x1f{left:161.637600px;}
.x16{left:163.943198px;}
.x19{left:184.302602px;}
.x20{left:187.475100px;}
.x18{left:191.774243px;}
.x17{left:194.253914px;}
.x21{left:199.477350px;}
.x22{left:211.479600px;}
.x23{left:223.481851px;}
.xf{left:235.769257px;}
.x10{left:237.444122px;}
.x24{left:240.027602px;}
.x25{left:251.951852px;}
.x1d{left:259.152740px;}
.x26{left:263.954102px;}
.x27{left:275.956352px;}
.x12{left:278.867249px;}
.x28{left:287.958602px;}
.x13{left:291.330858px;}
.x14{left:297.714923px;}
.x15{left:300.216346px;}
.x29{left:311.963102px;}
.x2a{left:323.965352px;}
.x2b{left:335.987104px;}
.x2c{left:347.989354px;}
.x11{left:349.736241px;}
.x1c{left:360.302261px;}
.x1b{left:366.234568px;}
.x2d{left:371.993854px;}
.x1a{left:379.611740px;}
.x2e{left:388.451854px;}
.x2f{left:400.454104px;}
.x30{left:412.456354px;}
.x31{left:424.458604px;}
.x32{left:436.460854px;}
.x33{left:448.463104px;}
.x4{left:459.212723px;}
.x34{left:460.475106px;}
.x35{left:472.477356px;}
.xa{left:476.222540px;}
.x36{left:484.479606px;}
.x5{left:489.542723px;}
.xc{left:496.021339px;}
.x37{left:508.484106px;}
.x38{left:524.951859px;}
.x39{left:536.954109px;}
.x3a{left:548.956359px;}
.x3b{left:560.958609px;}
.x3c{left:577.426359px;}
.x3d{left:589.428609px;}
.x3e{left:601.430859px;}
.x3f{left:617.888860px;}
.x40{left:629.891110px;}
.x41{left:641.893360px;}
.x42{left:653.895610px;}
.x43{left:665.897860px;}
.x44{left:677.900110px;}
.x45{left:689.902360px;}
.x46{left:701.904610px;}
.x47{left:713.906860px;}
.x48{left:725.909110px;}
.x1{left:728.220612px;}
.x49{left:742.484116px;}
.x4a{left:754.486366px;}
.x2{left:755.489868px;}
@media print{
.v3{vertical-align:-21.333333pt;}
.v2{vertical-align:-18.133382pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.198994pt;}
.v1{vertical-align:21.333333pt;}
.ls7b{letter-spacing:-1.600000pt;}
.ls7e{letter-spacing:-1.546667pt;}
.ls7c{letter-spacing:-1.280000pt;}
.ls67{letter-spacing:-1.066667pt;}
.ls7a{letter-spacing:-1.013333pt;}
.ls66{letter-spacing:-0.853333pt;}
.ls81{letter-spacing:-0.800000pt;}
.ls68{letter-spacing:-0.746667pt;}
.ls82{letter-spacing:-0.693333pt;}
.ls70{letter-spacing:-0.657515pt;}
.ls80{letter-spacing:-0.640000pt;}
.ls7f{letter-spacing:-0.586667pt;}
.ls7d{letter-spacing:-0.533333pt;}
.ls6d{letter-spacing:-0.502805pt;}
.ls65{letter-spacing:-0.480000pt;}
.ls28{letter-spacing:-0.426667pt;}
.lsa1{letter-spacing:-0.408000pt;}
.ls3a{letter-spacing:-0.373333pt;}
.lsaf{letter-spacing:-0.362667pt;}
.ls6e{letter-spacing:-0.348096pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls83{letter-spacing:-0.317333pt;}
.lsa0{letter-spacing:-0.272000pt;}
.ls13{letter-spacing:-0.266667pt;}
.ls9f{letter-spacing:-0.226667pt;}
.ls27{letter-spacing:-0.213333pt;}
.ls9d{letter-spacing:-0.181333pt;}
.ls29{letter-spacing:-0.160000pt;}
.ls6b{letter-spacing:-0.154709pt;}
.lsaa{letter-spacing:-0.136000pt;}
.ls6a{letter-spacing:-0.116032pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls9e{letter-spacing:-0.090667pt;}
.ls69{letter-spacing:-0.077355pt;}
.ls10{letter-spacing:-0.053333pt;}
.lsa2{letter-spacing:-0.045333pt;}
.ls6f{letter-spacing:-0.038677pt;}
.lsf{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000076pt;}
.ls5d{letter-spacing:0.026667pt;}
.ls5f{letter-spacing:0.038677pt;}
.ls79{letter-spacing:0.045333pt;}
.ls15{letter-spacing:0.053333pt;}
.ls60{letter-spacing:0.077354pt;}
.ls33{letter-spacing:0.080000pt;}
.ls86{letter-spacing:0.090667pt;}
.ls14{letter-spacing:0.106667pt;}
.lsae{letter-spacing:0.113333pt;}
.ls6c{letter-spacing:0.116032pt;}
.ls3{letter-spacing:0.133333pt;}
.ls9c{letter-spacing:0.136000pt;}
.ls5c{letter-spacing:0.149333pt;}
.lsd{letter-spacing:0.158926pt;}
.ls38{letter-spacing:0.159950pt;}
.ls21{letter-spacing:0.160000pt;}
.ls9b{letter-spacing:0.181333pt;}
.ls63{letter-spacing:0.193386pt;}
.ls5b{letter-spacing:0.202643pt;}
.ls1{letter-spacing:0.213333pt;}
.ls36{letter-spacing:0.218645pt;}
.lse{letter-spacing:0.226667pt;}
.ls5e{letter-spacing:0.229314pt;}
.ls78{letter-spacing:0.234667pt;}
.ls3c{letter-spacing:0.240000pt;}
.ls31{letter-spacing:0.245312pt;}
.ls2f{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls35{letter-spacing:0.272000pt;}
.ls45{letter-spacing:0.293333pt;}
.lsad{letter-spacing:0.294667pt;}
.ls73{letter-spacing:0.317333pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.325325pt;}
.ls58{letter-spacing:0.346667pt;}
.ls99{letter-spacing:0.362667pt;}
.ls1c{letter-spacing:0.373333pt;}
.ls47{letter-spacing:0.400000pt;}
.ls74{letter-spacing:0.408000pt;}
.ls24{letter-spacing:0.426667pt;}
.ls98{letter-spacing:0.430667pt;}
.ls59{letter-spacing:0.453333pt;}
.ls19{letter-spacing:0.464000pt;}
.ls26{letter-spacing:0.469333pt;}
.ls34{letter-spacing:0.480000pt;}
.lsa4{letter-spacing:0.498667pt;}
.ls3b{letter-spacing:0.506667pt;}
.ls5{letter-spacing:0.533333pt;}
.ls8f{letter-spacing:0.544000pt;}
.ls55{letter-spacing:0.554667pt;}
.ls23{letter-spacing:0.560000pt;}
.ls57{letter-spacing:0.565316pt;}
.lsc{letter-spacing:0.586667pt;}
.ls88{letter-spacing:0.589333pt;}
.ls56{letter-spacing:0.613333pt;}
.lsa3{letter-spacing:0.634667pt;}
.ls7{letter-spacing:0.640000pt;}
.lsa8{letter-spacing:0.657333pt;}
.ls46{letter-spacing:0.666667pt;}
.ls92{letter-spacing:0.680000pt;}
.ls8{letter-spacing:0.682667pt;}
.ls1d{letter-spacing:0.693333pt;}
.ls93{letter-spacing:0.725333pt;}
.ls6{letter-spacing:0.746667pt;}
.lsa5{letter-spacing:0.748000pt;}
.ls84{letter-spacing:0.770667pt;}
.ls54{letter-spacing:0.773333pt;}
.ls16{letter-spacing:0.800000pt;}
.ls75{letter-spacing:0.816000pt;}
.ls4d{letter-spacing:0.826667pt;}
.lsa{letter-spacing:0.853333pt;}
.ls77{letter-spacing:0.861333pt;}
.ls37{letter-spacing:0.880000pt;}
.ls17{letter-spacing:0.906667pt;}
.ls5a{letter-spacing:0.933333pt;}
.ls1e{letter-spacing:0.938617pt;}
.ls8e{letter-spacing:0.952000pt;}
.ls1a{letter-spacing:0.960000pt;}
.lsb{letter-spacing:0.965333pt;}
.lsa7{letter-spacing:0.974667pt;}
.ls2b{letter-spacing:0.986658pt;}
.lsa6{letter-spacing:0.997333pt;}
.ls18{letter-spacing:1.013333pt;}
.ls97{letter-spacing:1.020000pt;}
.ls3d{letter-spacing:1.040000pt;}
.ls89{letter-spacing:1.042667pt;}
.ls87{letter-spacing:1.065333pt;}
.ls20{letter-spacing:1.066667pt;}
.ls9a{letter-spacing:1.088000pt;}
.ls32{letter-spacing:1.093333pt;}
.ls8c{letter-spacing:1.110667pt;}
.ls1b{letter-spacing:1.120000pt;}
.ls85{letter-spacing:1.133333pt;}
.ls9{letter-spacing:1.173333pt;}
.lsa9{letter-spacing:1.178667pt;}
.lsb0{letter-spacing:1.224000pt;}
.ls4{letter-spacing:1.226667pt;}
.ls91{letter-spacing:1.269333pt;}
.ls2c{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.285333pt;}
.ls2d{letter-spacing:1.306667pt;}
.ls96{letter-spacing:1.314667pt;}
.ls39{letter-spacing:1.333333pt;}
.ls30{letter-spacing:1.360000pt;}
.ls44{letter-spacing:1.386667pt;}
.lsb2{letter-spacing:1.405333pt;}
.ls3e{letter-spacing:1.413333pt;}
.ls2a{letter-spacing:1.440000pt;}
.ls95{letter-spacing:1.450667pt;}
.ls41{letter-spacing:1.493333pt;}
.ls8a{letter-spacing:1.496000pt;}
.lsac{letter-spacing:1.541333pt;}
.ls72{letter-spacing:1.546667pt;}
.ls8b{letter-spacing:1.586667pt;}
.ls48{letter-spacing:1.600000pt;}
.ls43{letter-spacing:1.626667pt;}
.ls94{letter-spacing:1.632000pt;}
.ls49{letter-spacing:1.653333pt;}
.ls4c{letter-spacing:1.680000pt;}
.ls22{letter-spacing:1.706667pt;}
.ls8d{letter-spacing:1.722667pt;}
.ls50{letter-spacing:1.760000pt;}
.ls76{letter-spacing:1.768000pt;}
.ls40{letter-spacing:1.813333pt;}
.ls90{letter-spacing:1.858667pt;}
.ls4b{letter-spacing:1.866667pt;}
.ls4a{letter-spacing:1.920000pt;}
.ls3f{letter-spacing:1.973333pt;}
.ls51{letter-spacing:2.026667pt;}
.ls4e{letter-spacing:2.080000pt;}
.lsab{letter-spacing:2.085333pt;}
.lsb1{letter-spacing:2.176000pt;}
.ls53{letter-spacing:2.186667pt;}
.ls42{letter-spacing:2.240000pt;}
.ls4f{letter-spacing:2.346667pt;}
.ls52{letter-spacing:2.453333pt;}
.ls71{letter-spacing:2.506667pt;}
.ls64{letter-spacing:8.779733pt;}
.ls61{letter-spacing:8.857088pt;}
.ls62{letter-spacing:119.280606pt;}
.ws89{word-spacing:-14.666667pt;}
.ws92{word-spacing:-14.506667pt;}
.ws9d{word-spacing:-14.346667pt;}
.ws9e{word-spacing:-14.186667pt;}
.ws6a{word-spacing:-14.133333pt;}
.ws50{word-spacing:-14.080000pt;}
.ws8a{word-spacing:-13.973333pt;}
.ws24{word-spacing:-13.920000pt;}
.ws6b{word-spacing:-13.600000pt;}
.ws69{word-spacing:-13.493333pt;}
.ws9a{word-spacing:-13.360000pt;}
.ws23{word-spacing:-13.333333pt;}
.ws68{word-spacing:-13.226667pt;}
.wsbf{word-spacing:-13.184000pt;}
.ws4f{word-spacing:-13.173333pt;}
.ws3c{word-spacing:-12.928000pt;}
.wsc9{word-spacing:-12.194667pt;}
.ws6{word-spacing:-11.560000pt;}
.ws8{word-spacing:-11.333333pt;}
.ws73{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws5{word-spacing:-10.240000pt;}
.wsb2{word-spacing:-9.565333pt;}
.ws81{word-spacing:-9.333333pt;}
.wsb1{word-spacing:-9.021333pt;}
.ws1{word-spacing:-8.885333pt;}
.wsb0{word-spacing:-8.666667pt;}
.ws7{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws8e{word-spacing:-2.346667pt;}
.wsc{word-spacing:-1.920000pt;}
.ws77{word-spacing:-1.813333pt;}
.wsa{word-spacing:-1.768000pt;}
.ws9{word-spacing:-1.680000pt;}
.ws79{word-spacing:-1.493333pt;}
.ws8b{word-spacing:-1.440000pt;}
.ws46{word-spacing:-1.386667pt;}
.wse{word-spacing:-1.333333pt;}
.ws14{word-spacing:-1.280000pt;}
.ws11{word-spacing:-1.226667pt;}
.wscf{word-spacing:-1.224000pt;}
.wsc3{word-spacing:-1.178667pt;}
.ws7b{word-spacing:-1.173333pt;}
.wsb6{word-spacing:-1.133333pt;}
.ws10{word-spacing:-1.120000pt;}
.ws107{word-spacing:-1.088000pt;}
.ws41{word-spacing:-1.066667pt;}
.ws29{word-spacing:-1.013333pt;}
.wsfe{word-spacing:-0.997333pt;}
.ws4b{word-spacing:-0.960000pt;}
.wsc0{word-spacing:-0.952000pt;}
.ws66{word-spacing:-0.906667pt;}
.wsbd{word-spacing:-0.861333pt;}
.ws20{word-spacing:-0.853333pt;}
.ws10a{word-spacing:-0.816000pt;}
.ws49{word-spacing:-0.800000pt;}
.ws113{word-spacing:-0.770667pt;}
.ws33{word-spacing:-0.746667pt;}
.wsf1{word-spacing:-0.725333pt;}
.ws32{word-spacing:-0.693333pt;}
.wsc1{word-spacing:-0.680000pt;}
.ws16{word-spacing:-0.640000pt;}
.wsc2{word-spacing:-0.634667pt;}
.ws10d{word-spacing:-0.589333pt;}
.ws3e{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.544000pt;}
.ws56{word-spacing:-0.533333pt;}
.wsde{word-spacing:-0.498667pt;}
.ws1e{word-spacing:-0.480000pt;}
.wsff{word-spacing:-0.453333pt;}
.ws64{word-spacing:-0.426667pt;}
.wsc8{word-spacing:-0.408000pt;}
.ws34{word-spacing:-0.373333pt;}
.wsb5{word-spacing:-0.362667pt;}
.ws63{word-spacing:-0.320000pt;}
.wsdd{word-spacing:-0.317333pt;}
.wse4{word-spacing:-0.272000pt;}
.ws2d{word-spacing:-0.266667pt;}
.wsbc{word-spacing:-0.234667pt;}
.wsba{word-spacing:-0.226667pt;}
.ws44{word-spacing:-0.213333pt;}
.ws117{word-spacing:-0.181333pt;}
.ws13{word-spacing:-0.160000pt;}
.wsa7{word-spacing:-0.154709pt;}
.wse1{word-spacing:-0.136000pt;}
.ws65{word-spacing:-0.106667pt;}
.wsc4{word-spacing:-0.090667pt;}
.wsa5{word-spacing:-0.077355pt;}
.ws54{word-spacing:-0.053333pt;}
.wsd7{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.wsaa{word-spacing:-0.038677pt;}
.wsb{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.038677pt;}
.ws47{word-spacing:0.053333pt;}
.wsa9{word-spacing:0.077355pt;}
.ws115{word-spacing:0.090667pt;}
.ws55{word-spacing:0.106667pt;}
.wsad{word-spacing:0.116032pt;}
.wsf2{word-spacing:0.136000pt;}
.wsae{word-spacing:0.154709pt;}
.ws5c{word-spacing:0.160000pt;}
.ws2c{word-spacing:0.213333pt;}
.wseb{word-spacing:0.226667pt;}
.ws25{word-spacing:0.266667pt;}
.ws111{word-spacing:0.272000pt;}
.ws10c{word-spacing:0.317333pt;}
.ws86{word-spacing:0.320000pt;}
.wsaf{word-spacing:0.348096pt;}
.wsd5{word-spacing:0.362667pt;}
.ws40{word-spacing:0.373333pt;}
.ws35{word-spacing:0.426667pt;}
.wse6{word-spacing:0.453333pt;}
.wsa8{word-spacing:0.464128pt;}
.wsa0{word-spacing:0.480000pt;}
.wscd{word-spacing:0.498667pt;}
.ws7f{word-spacing:0.533333pt;}
.ws100{word-spacing:0.544000pt;}
.ws3f{word-spacing:0.586667pt;}
.ws10f{word-spacing:0.589333pt;}
.wsab{word-spacing:0.618837pt;}
.wsc7{word-spacing:0.634667pt;}
.ws78{word-spacing:0.640000pt;}
.wsd1{word-spacing:0.680000pt;}
.ws4d{word-spacing:0.693333pt;}
.wse7{word-spacing:0.725333pt;}
.wsa2{word-spacing:0.746667pt;}
.ws106{word-spacing:0.770667pt;}
.wsd{word-spacing:0.800000pt;}
.wscc{word-spacing:0.816000pt;}
.ws2e{word-spacing:0.853333pt;}
.ws101{word-spacing:0.861333pt;}
.ws12{word-spacing:0.906667pt;}
.ws116{word-spacing:0.952000pt;}
.ws18{word-spacing:0.960000pt;}
.wsdf{word-spacing:0.997333pt;}
.ws75{word-spacing:1.013333pt;}
.wsbe{word-spacing:1.042667pt;}
.ws15{word-spacing:1.066667pt;}
.wse8{word-spacing:1.088000pt;}
.ws37{word-spacing:1.120000pt;}
.wsb4{word-spacing:1.133333pt;}
.ws72{word-spacing:1.173333pt;}
.wse2{word-spacing:1.178667pt;}
.wsda{word-spacing:1.224000pt;}
.ws5f{word-spacing:1.226667pt;}
.wsf9{word-spacing:1.269333pt;}
.wsf{word-spacing:1.280000pt;}
.wsef{word-spacing:1.314667pt;}
.ws1a{word-spacing:1.333333pt;}
.ws104{word-spacing:1.360000pt;}
.ws52{word-spacing:1.386667pt;}
.wse0{word-spacing:1.405333pt;}
.ws43{word-spacing:1.440000pt;}
.wsd0{word-spacing:1.450667pt;}
.ws31{word-spacing:1.493333pt;}
.wsdb{word-spacing:1.496000pt;}
.ws10b{word-spacing:1.541333pt;}
.ws67{word-spacing:1.546667pt;}
.wsd4{word-spacing:1.586667pt;}
.ws5a{word-spacing:1.600000pt;}
.ws102{word-spacing:1.632000pt;}
.ws26{word-spacing:1.653333pt;}
.ws11c{word-spacing:1.677333pt;}
.ws7c{word-spacing:1.706667pt;}
.ws6d{word-spacing:1.760000pt;}
.wse5{word-spacing:1.768000pt;}
.ws1d{word-spacing:1.813333pt;}
.wsf4{word-spacing:1.858667pt;}
.ws1b{word-spacing:1.866667pt;}
.wsfb{word-spacing:1.904000pt;}
.ws6c{word-spacing:1.920000pt;}
.ws114{word-spacing:1.949333pt;}
.ws2b{word-spacing:1.973333pt;}
.wsd2{word-spacing:1.994667pt;}
.ws6f{word-spacing:2.026667pt;}
.wsb8{word-spacing:2.040000pt;}
.ws48{word-spacing:2.080000pt;}
.wsee{word-spacing:2.085333pt;}
.ws27{word-spacing:2.133333pt;}
.wse9{word-spacing:2.176000pt;}
.ws91{word-spacing:2.186667pt;}
.ws112{word-spacing:2.221333pt;}
.ws1f{word-spacing:2.240000pt;}
.ws103{word-spacing:2.266667pt;}
.ws53{word-spacing:2.293333pt;}
.wsb7{word-spacing:2.312000pt;}
.ws62{word-spacing:2.346667pt;}
.wsea{word-spacing:2.357333pt;}
.ws42{word-spacing:2.400000pt;}
.wse3{word-spacing:2.402667pt;}
.ws109{word-spacing:2.448000pt;}
.ws51{word-spacing:2.453333pt;}
.wsc6{word-spacing:2.493333pt;}
.ws82{word-spacing:2.506667pt;}
.wsb9{word-spacing:2.538667pt;}
.ws28{word-spacing:2.560000pt;}
.wscb{word-spacing:2.584000pt;}
.ws57{word-spacing:2.613333pt;}
.wsfa{word-spacing:2.629333pt;}
.ws4a{word-spacing:2.666667pt;}
.ws8d{word-spacing:2.720000pt;}
.ws108{word-spacing:2.765333pt;}
.ws84{word-spacing:2.773333pt;}
.wsd9{word-spacing:2.810667pt;}
.ws59{word-spacing:2.826667pt;}
.wsed{word-spacing:2.856000pt;}
.ws45{word-spacing:2.880000pt;}
.wsd8{word-spacing:2.901333pt;}
.ws2f{word-spacing:2.933333pt;}
.ws9f{word-spacing:2.986667pt;}
.wsdc{word-spacing:2.992000pt;}
.ws2a{word-spacing:3.040000pt;}
.ws105{word-spacing:3.082667pt;}
.ws60{word-spacing:3.093333pt;}
.ws71{word-spacing:3.146667pt;}
.wsca{word-spacing:3.173333pt;}
.ws74{word-spacing:3.200000pt;}
.wsd3{word-spacing:3.218667pt;}
.ws3a{word-spacing:3.253333pt;}
.ws4c{word-spacing:3.306667pt;}
.ws119{word-spacing:3.309333pt;}
.wsfd{word-spacing:3.354667pt;}
.ws9b{word-spacing:3.360000pt;}
.wsf5{word-spacing:3.400000pt;}
.ws3b{word-spacing:3.413333pt;}
.ws36{word-spacing:3.466667pt;}
.ws30{word-spacing:3.520000pt;}
.ws5d{word-spacing:3.573333pt;}
.wsd6{word-spacing:3.581333pt;}
.ws118{word-spacing:3.626667pt;}
.wsfc{word-spacing:3.672000pt;}
.ws90{word-spacing:3.680000pt;}
.wsf7{word-spacing:3.717333pt;}
.ws95{word-spacing:3.733333pt;}
.ws110{word-spacing:3.762667pt;}
.wsa1{word-spacing:3.786667pt;}
.wsbb{word-spacing:3.808000pt;}
.ws61{word-spacing:3.840000pt;}
.ws1c{word-spacing:3.893333pt;}
.wsf8{word-spacing:3.898667pt;}
.wsec{word-spacing:3.944000pt;}
.ws97{word-spacing:3.946667pt;}
.ws76{word-spacing:4.000000pt;}
.ws19{word-spacing:4.053333pt;}
.wsc5{word-spacing:4.080000pt;}
.ws58{word-spacing:4.106667pt;}
.wsac{word-spacing:4.160000pt;}
.ws38{word-spacing:4.213333pt;}
.wsf0{word-spacing:4.261333pt;}
.ws8c{word-spacing:4.320000pt;}
.ws70{word-spacing:4.373333pt;}
.ws5b{word-spacing:4.480000pt;}
.wsce{word-spacing:4.488000pt;}
.ws85{word-spacing:4.533333pt;}
.ws83{word-spacing:4.586667pt;}
.ws9c{word-spacing:4.640000pt;}
.ws5e{word-spacing:4.800000pt;}
.ws99{word-spacing:4.906667pt;}
.ws8f{word-spacing:4.960000pt;}
.ws7d{word-spacing:5.013333pt;}
.ws4e{word-spacing:5.066667pt;}
.ws80{word-spacing:5.173333pt;}
.ws11b{word-spacing:5.213333pt;}
.ws96{word-spacing:5.280000pt;}
.ws7a{word-spacing:5.333333pt;}
.ws7e{word-spacing:5.386667pt;}
.ws39{word-spacing:5.440000pt;}
.wsf3{word-spacing:5.621333pt;}
.wsa3{word-spacing:5.920000pt;}
.ws10e{word-spacing:5.938667pt;}
.wsf6{word-spacing:5.984000pt;}
.ws98{word-spacing:6.133333pt;}
.ws93{word-spacing:6.240000pt;}
.ws94{word-spacing:6.293333pt;}
.ws6e{word-spacing:6.560000pt;}
.ws3d{word-spacing:6.613333pt;}
.ws11a{word-spacing:6.845333pt;}
.wsb3{word-spacing:6.880000pt;}
.ws88{word-spacing:7.162667pt;}
.ws87{word-spacing:7.525333pt;}
.wsa4{word-spacing:8.320000pt;}
.ws11d{word-spacing:12.602667pt;}
.ws11e{word-spacing:16.410667pt;}
.ws17{word-spacing:19.072000pt;}
.ws21{word-spacing:64.237333pt;}
._2c{margin-left:-19.448000pt;}
._2b{margin-left:-16.229333pt;}
._7{margin-left:-14.733333pt;}
._2a{margin-left:-13.645333pt;}
._12{margin-left:-12.101333pt;}
._11{margin-left:-11.088000pt;}
._15{margin-left:-10.133333pt;}
._3{margin-left:-5.429867pt;}
._5{margin-left:-4.309333pt;}
._2{margin-left:-3.082667pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.763467pt;}
._e{width:2.815979pt;}
._d{width:4.515723pt;}
._13{width:5.760000pt;}
._23{width:7.752000pt;}
._28{width:8.704000pt;}
._16{width:9.733333pt;}
._14{width:11.348800pt;}
._f{width:12.632800pt;}
._17{width:13.872000pt;}
._25{width:15.096800pt;}
._8{width:16.320000pt;}
._10{width:18.245333pt;}
._27{width:19.225867pt;}
._29{width:20.324533pt;}
._6{width:26.634667pt;}
._c{width:29.226667pt;}
._b{width:31.143200pt;}
._26{width:33.229333pt;}
._24{width:34.362667pt;}
._4{width:36.173333pt;}
._9{width:48.552000pt;}
._1e{width:63.221314pt;}
._1d{width:77.549329pt;}
._18{width:307.735981pt;}
._19{width:381.952000pt;}
._1a{width:387.712000pt;}
._20{width:400.706648pt;}
._21{width:435.759981pt;}
._1b{width:445.397314pt;}
._22{width:495.455981pt;}
._1f{width:507.034648pt;}
._1c{width:531.023981pt;}
._a{width:2093.901333pt;}
.fs7{font-size:31.733332pt;}
.fsb{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:38.677239pt;}
.fs9{font-size:38.677333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y18e{bottom:100.368390pt;}
.y184{bottom:100.384267pt;}
.y3c{bottom:100.389600pt;}
.y112{bottom:100.394933pt;}
.y71{bottom:100.813639pt;}
.y164{bottom:101.052287pt;}
.y10f{bottom:101.826884pt;}
.y146{bottom:101.826904pt;}
.ydd{bottom:101.986898pt;}
.y1b5{bottom:101.986928pt;}
.ya4{bottom:101.986938pt;}
.y226{bottom:103.582954pt;}
.y2e2{bottom:103.657620pt;}
.y2e1{bottom:103.997606pt;}
.y324{bottom:104.008954pt;}
.y1e8{bottom:105.412399pt;}
.y2b{bottom:109.309733pt;}
.y111{bottom:113.722933pt;}
.y225{bottom:116.910954pt;}
.y29f{bottom:116.985620pt;}
.y267{bottom:117.262287pt;}
.y365{bottom:117.325578pt;}
.y2e0{bottom:117.325606pt;}
.y323{bottom:117.336954pt;}
.y70{bottom:117.480306pt;}
.y163{bottom:117.718953pt;}
.y3b{bottom:118.250936pt;}
.y10e{bottom:118.493551pt;}
.y145{bottom:118.493571pt;}
.ydc{bottom:118.653564pt;}
.y1b4{bottom:118.653595pt;}
.ya3{bottom:118.653605pt;}
.y1e7{bottom:118.740399pt;}
.y2a{bottom:125.976400pt;}
.y224{bottom:130.238954pt;}
.y29e{bottom:130.313620pt;}
.y266{bottom:130.590287pt;}
.y364{bottom:130.653578pt;}
.y2df{bottom:130.653606pt;}
.y322{bottom:130.664954pt;}
.y110{bottom:131.584269pt;}
.y1e6{bottom:132.068399pt;}
.y6f{bottom:134.146973pt;}
.y162{bottom:134.385620pt;}
.y10d{bottom:135.160217pt;}
.y144{bottom:135.160238pt;}
.ydb{bottom:135.320231pt;}
.y1b3{bottom:135.320262pt;}
.ya2{bottom:135.320272pt;}
.y3a{bottom:138.292938pt;}
.y29{bottom:142.643066pt;}
.y223{bottom:143.566954pt;}
.y29d{bottom:143.641620pt;}
.y265{bottom:143.918287pt;}
.y363{bottom:143.981578pt;}
.y2de{bottom:143.981606pt;}
.y321{bottom:143.992954pt;}
.y6e{bottom:150.813639pt;}
.y161{bottom:151.052287pt;}
.y10c{bottom:151.826884pt;}
.y143{bottom:151.826904pt;}
.yda{bottom:151.986898pt;}
.ya1{bottom:151.986938pt;}
.y1b0{bottom:153.651048pt;}
.y1a7{bottom:153.659704pt;}
.y1a2{bottom:153.668374pt;}
.y19b{bottom:153.677046pt;}
.y194{bottom:153.685716pt;}
.y186{bottom:153.703055pt;}
.y185{bottom:153.711731pt;}
.y39{bottom:153.806928pt;}
.y222{bottom:156.894954pt;}
.y29c{bottom:156.969620pt;}
.y264{bottom:157.246287pt;}
.y362{bottom:157.309578pt;}
.y2dd{bottom:157.309606pt;}
.y320{bottom:157.320954pt;}
.y28{bottom:159.309733pt;}
.y18f{bottom:161.693722pt;}
.y1e5{bottom:162.033732pt;}
.y6d{bottom:167.480306pt;}
.y160{bottom:167.718953pt;}
.y10b{bottom:168.493551pt;}
.y142{bottom:168.493571pt;}
.yd9{bottom:168.653564pt;}
.y1b2{bottom:168.653595pt;}
.ya0{bottom:168.653605pt;}
.y221{bottom:170.222954pt;}
.y29b{bottom:170.297620pt;}
.y263{bottom:170.574287pt;}
.y361{bottom:170.637578pt;}
.y2dc{bottom:170.637606pt;}
.y31f{bottom:170.648954pt;}
.y38{bottom:171.668274pt;}
.y27{bottom:175.976400pt;}
.y220{bottom:183.550954pt;}
.y29a{bottom:183.625620pt;}
.y262{bottom:183.902287pt;}
.y360{bottom:183.965578pt;}
.y2db{bottom:183.965606pt;}
.y31e{bottom:183.976954pt;}
.y6c{bottom:184.146973pt;}
.y15f{bottom:184.385620pt;}
.y10a{bottom:185.160217pt;}
.y141{bottom:185.160238pt;}
.yd8{bottom:185.320231pt;}
.y9f{bottom:185.320272pt;}
.y37{bottom:187.187608pt;}
.y1e4{bottom:192.033732pt;}
.y26{bottom:192.643066pt;}
.y367{bottom:196.534273pt;}
.y21f{bottom:196.878954pt;}
.y299{bottom:196.953620pt;}
.y261{bottom:197.230287pt;}
.y35f{bottom:197.293578pt;}
.y2da{bottom:197.293606pt;}
.y31d{bottom:197.304954pt;}
.y36{bottom:200.515608pt;}
.y6b{bottom:200.813639pt;}
.y15e{bottom:201.052287pt;}
.y109{bottom:201.826884pt;}
.y140{bottom:201.826904pt;}
.yd7{bottom:201.986898pt;}
.y9e{bottom:201.986938pt;}
.y25{bottom:209.309733pt;}
.y366{bottom:209.862273pt;}
.y21e{bottom:210.206954pt;}
.y298{bottom:210.281620pt;}
.y260{bottom:210.558287pt;}
.y35e{bottom:210.621578pt;}
.y2d9{bottom:210.621606pt;}
.y31c{bottom:210.632954pt;}
.y6a{bottom:217.480306pt;}
.y15d{bottom:217.718953pt;}
.y35{bottom:218.376933pt;}
.y108{bottom:218.493551pt;}
.y13f{bottom:218.493571pt;}
.yd6{bottom:218.653564pt;}
.y9d{bottom:218.653605pt;}
.y21d{bottom:223.534954pt;}
.y297{bottom:223.609620pt;}
.y25f{bottom:223.886287pt;}
.y35d{bottom:223.949578pt;}
.y2d8{bottom:223.949606pt;}
.y31b{bottom:223.960954pt;}
.y1e3{bottom:225.445056pt;}
.y24{bottom:225.976400pt;}
.y34{bottom:233.890933pt;}
.y69{bottom:234.146973pt;}
.y15c{bottom:234.385620pt;}
.y107{bottom:235.160217pt;}
.y13e{bottom:235.160238pt;}
.yd5{bottom:235.320231pt;}
.y9c{bottom:235.320272pt;}
.y21c{bottom:236.862954pt;}
.y296{bottom:236.937620pt;}
.y25e{bottom:237.214287pt;}
.y35c{bottom:237.277578pt;}
.y2d7{bottom:237.277606pt;}
.y31a{bottom:237.288954pt;}
.y1e2{bottom:238.773056pt;}
.y21b{bottom:250.190954pt;}
.y295{bottom:250.265620pt;}
.y25d{bottom:250.542287pt;}
.y35b{bottom:250.605578pt;}
.y2d6{bottom:250.605606pt;}
.y319{bottom:250.616954pt;}
.y68{bottom:250.813639pt;}
.y15b{bottom:251.052287pt;}
.y33{bottom:251.752258pt;}
.y106{bottom:251.826884pt;}
.y13d{bottom:251.826904pt;}
.yd4{bottom:251.986898pt;}
.y9b{bottom:251.986938pt;}
.y23{bottom:259.309733pt;}
.y21a{bottom:263.518954pt;}
.y294{bottom:263.593620pt;}
.y25c{bottom:263.870287pt;}
.y35a{bottom:263.933578pt;}
.y2d5{bottom:263.933606pt;}
.y318{bottom:263.944954pt;}
.y67{bottom:267.480306pt;}
.y15a{bottom:267.718953pt;}
.y105{bottom:268.493551pt;}
.y13c{bottom:268.493571pt;}
.yd3{bottom:268.653564pt;}
.y9a{bottom:268.653605pt;}
.y1e1{bottom:268.738389pt;}
.y32{bottom:271.794271pt;}
.y22{bottom:275.976400pt;}
.y219{bottom:276.846954pt;}
.y293{bottom:276.921620pt;}
.y25b{bottom:277.198287pt;}
.y359{bottom:277.261578pt;}
.y2d4{bottom:277.261606pt;}
.y317{bottom:277.272954pt;}
.y1e0{bottom:282.066389pt;}
.y66{bottom:284.146973pt;}
.y159{bottom:284.385620pt;}
.y104{bottom:285.160217pt;}
.y13b{bottom:285.160238pt;}
.yd2{bottom:285.320231pt;}
.y99{bottom:285.320272pt;}
.y218{bottom:290.174954pt;}
.y292{bottom:290.249620pt;}
.y25a{bottom:290.526287pt;}
.y358{bottom:290.589578pt;}
.y2d3{bottom:290.589606pt;}
.y316{bottom:290.600954pt;}
.y31{bottom:291.836263pt;}
.y21{bottom:292.643066pt;}
.y1df{bottom:295.394389pt;}
.y65{bottom:300.813639pt;}
.y158{bottom:301.052287pt;}
.y103{bottom:301.826884pt;}
.y13a{bottom:301.826904pt;}
.yd1{bottom:301.986898pt;}
.y98{bottom:301.986938pt;}
.y217{bottom:303.502954pt;}
.y291{bottom:303.577620pt;}
.y259{bottom:303.854287pt;}
.y357{bottom:303.917578pt;}
.y2d2{bottom:303.917606pt;}
.y315{bottom:303.928954pt;}
.y30{bottom:307.355597pt;}
.y1de{bottom:308.722389pt;}
.y20{bottom:309.309733pt;}
.y216{bottom:316.830954pt;}
.y290{bottom:316.905620pt;}
.y258{bottom:317.182287pt;}
.y356{bottom:317.245578pt;}
.y2d1{bottom:317.245606pt;}
.y314{bottom:317.256954pt;}
.y64{bottom:317.480306pt;}
.y157{bottom:317.718953pt;}
.y102{bottom:318.493551pt;}
.y139{bottom:318.493571pt;}
.yd0{bottom:318.653564pt;}
.y97{bottom:318.653605pt;}
.y2f{bottom:320.683597pt;}
.y1a9{bottom:321.585033pt;}
.y1a3{bottom:321.593702pt;}
.y19d{bottom:321.602375pt;}
.y196{bottom:321.611045pt;}
.y190{bottom:321.619714pt;}
.y1dd{bottom:322.050389pt;}
.y1f{bottom:325.976400pt;}
.y1b1{bottom:329.575710pt;}
.y1a8{bottom:329.584366pt;}
.y1a4{bottom:329.593036pt;}
.y19c{bottom:329.601708pt;}
.y195{bottom:329.610378pt;}
.y191{bottom:329.619047pt;}
.y187{bottom:329.627709pt;}
.y215{bottom:330.158954pt;}
.y28f{bottom:330.233620pt;}
.y257{bottom:330.510287pt;}
.y355{bottom:330.573578pt;}
.y2d0{bottom:330.573606pt;}
.y313{bottom:330.584954pt;}
.y63{bottom:334.146973pt;}
.y156{bottom:334.385620pt;}
.y101{bottom:335.160217pt;}
.y138{bottom:335.160238pt;}
.ycf{bottom:335.320231pt;}
.y96{bottom:335.320272pt;}
.y1dc{bottom:335.378389pt;}
.y2e{bottom:338.544942pt;}
.y1e{bottom:342.643066pt;}
.y214{bottom:343.486954pt;}
.y28e{bottom:343.561620pt;}
.y256{bottom:343.838287pt;}
.y354{bottom:343.901578pt;}
.y2cf{bottom:343.901606pt;}
.y312{bottom:343.912954pt;}
.y1db{bottom:348.706389pt;}
.y62{bottom:350.813639pt;}
.y155{bottom:351.052287pt;}
.y100{bottom:351.826884pt;}
.y137{bottom:351.826904pt;}
.yce{bottom:351.986898pt;}
.y95{bottom:351.986938pt;}
.y213{bottom:356.814954pt;}
.y28d{bottom:356.889620pt;}
.y255{bottom:357.166287pt;}
.y353{bottom:357.229578pt;}
.y2ce{bottom:357.229606pt;}
.y311{bottom:357.240954pt;}
.y1d{bottom:359.309733pt;}
.y2d{bottom:360.767581pt;}
.y1da{bottom:362.034389pt;}
.y61{bottom:367.480306pt;}
.y154{bottom:367.718953pt;}
.yff{bottom:368.493551pt;}
.y136{bottom:368.493571pt;}
.ycd{bottom:368.653564pt;}
.y94{bottom:368.653605pt;}
.y212{bottom:370.142954pt;}
.y28c{bottom:370.217620pt;}
.y254{bottom:370.494287pt;}
.y352{bottom:370.557578pt;}
.y2cd{bottom:370.557606pt;}
.y310{bottom:370.568954pt;}
.y2c{bottom:374.095581pt;}
.y1d9{bottom:375.362389pt;}
.y211{bottom:383.470954pt;}
.y28b{bottom:383.545620pt;}
.y253{bottom:383.822287pt;}
.y351{bottom:383.885578pt;}
.y2cc{bottom:383.885606pt;}
.y30f{bottom:383.896954pt;}
.y60{bottom:384.146973pt;}
.y153{bottom:384.385620pt;}
.yfe{bottom:385.160217pt;}
.y135{bottom:385.160238pt;}
.ycc{bottom:385.320231pt;}
.y93{bottom:385.320272pt;}
.y1d8{bottom:388.690389pt;}
.y1c{bottom:392.643066pt;}
.y210{bottom:396.798954pt;}
.y28a{bottom:396.873620pt;}
.y252{bottom:397.150287pt;}
.y350{bottom:397.213578pt;}
.y2cb{bottom:397.213606pt;}
.y30e{bottom:397.224954pt;}
.y5f{bottom:400.813639pt;}
.y152{bottom:401.052287pt;}
.yfd{bottom:401.826884pt;}
.y134{bottom:401.826904pt;}
.ycb{bottom:401.986898pt;}
.y92{bottom:401.986938pt;}
.y20f{bottom:410.126954pt;}
.y289{bottom:410.201620pt;}
.y251{bottom:410.478287pt;}
.y34f{bottom:410.541578pt;}
.y2ca{bottom:410.541606pt;}
.y30d{bottom:410.552954pt;}
.y5e{bottom:417.480306pt;}
.y151{bottom:417.718953pt;}
.yfc{bottom:418.493551pt;}
.y133{bottom:418.493571pt;}
.yca{bottom:418.653564pt;}
.y1d7{bottom:418.653595pt;}
.y91{bottom:418.653605pt;}
.y20e{bottom:423.454954pt;}
.y288{bottom:423.529620pt;}
.y250{bottom:423.806287pt;}
.y34e{bottom:423.869578pt;}
.y2c9{bottom:423.869606pt;}
.y30c{bottom:423.880954pt;}
.y5d{bottom:434.146973pt;}
.y150{bottom:434.385620pt;}
.yfb{bottom:435.160217pt;}
.y132{bottom:435.160238pt;}
.yc9{bottom:435.320231pt;}
.y1d6{bottom:435.320262pt;}
.y90{bottom:435.320272pt;}
.y20d{bottom:436.782954pt;}
.y287{bottom:436.857620pt;}
.y24f{bottom:437.134287pt;}
.y34d{bottom:437.197578pt;}
.y2c8{bottom:437.197606pt;}
.y30b{bottom:437.208954pt;}
.y1b{bottom:442.643066pt;}
.y20c{bottom:450.110954pt;}
.y286{bottom:450.185620pt;}
.y24e{bottom:450.462287pt;}
.y34c{bottom:450.525578pt;}
.y2c7{bottom:450.525606pt;}
.y30a{bottom:450.536954pt;}
.y5c{bottom:450.813639pt;}
.y14f{bottom:451.052287pt;}
.yfa{bottom:451.826884pt;}
.y131{bottom:451.826904pt;}
.yc8{bottom:451.986898pt;}
.y1d5{bottom:451.986928pt;}
.yc3{bottom:451.986938pt;}
.y1a{bottom:459.309733pt;}
.y20b{bottom:463.438954pt;}
.y285{bottom:463.513620pt;}
.y24d{bottom:463.790287pt;}
.y34b{bottom:463.853578pt;}
.y2c6{bottom:463.853606pt;}
.y309{bottom:463.864954pt;}
.y5b{bottom:467.480306pt;}
.y14e{bottom:467.718953pt;}
.yf9{bottom:468.493551pt;}
.y130{bottom:468.493571pt;}
.y8f{bottom:468.648272pt;}
.yc7{bottom:468.653564pt;}
.y1d4{bottom:468.653595pt;}
.yc2{bottom:468.653605pt;}
.y20a{bottom:476.766954pt;}
.y284{bottom:476.841620pt;}
.y24c{bottom:477.118287pt;}
.y34a{bottom:477.181578pt;}
.y2c5{bottom:477.181606pt;}
.y308{bottom:477.192954pt;}
.y5a{bottom:484.146973pt;}
.y14d{bottom:484.385620pt;}
.yf8{bottom:485.160217pt;}
.y12f{bottom:485.160238pt;}
.yc6{bottom:485.320231pt;}
.y1d3{bottom:485.320262pt;}
.y8e{bottom:485.320272pt;}
.y209{bottom:490.094954pt;}
.y283{bottom:490.169620pt;}
.y24b{bottom:490.446287pt;}
.y349{bottom:490.509578pt;}
.y2c4{bottom:490.509606pt;}
.y307{bottom:490.520954pt;}
.y1aa{bottom:490.576366pt;}
.y1a5{bottom:490.585036pt;}
.y19e{bottom:490.593708pt;}
.y197{bottom:490.602378pt;}
.y192{bottom:490.611047pt;}
.y188{bottom:490.619709pt;}
.y19{bottom:492.643066pt;}
.y1ab{bottom:498.575700pt;}
.y1a6{bottom:498.584369pt;}
.y19f{bottom:498.593042pt;}
.y198{bottom:498.601711pt;}
.y193{bottom:498.610381pt;}
.y189{bottom:498.619043pt;}
.y59{bottom:500.813639pt;}
.y14c{bottom:501.052287pt;}
.yf7{bottom:501.826884pt;}
.y12e{bottom:501.826904pt;}
.yc5{bottom:501.986898pt;}
.y1d2{bottom:501.986928pt;}
.yc1{bottom:501.986938pt;}
.y208{bottom:503.422954pt;}
.y282{bottom:503.497620pt;}
.y24a{bottom:503.774287pt;}
.y348{bottom:503.837578pt;}
.y2c3{bottom:503.837606pt;}
.y306{bottom:503.848954pt;}
.y18{bottom:509.309733pt;}
.y207{bottom:516.750954pt;}
.y281{bottom:516.825620pt;}
.y249{bottom:517.102287pt;}
.y347{bottom:517.165578pt;}
.y2c2{bottom:517.165606pt;}
.y305{bottom:517.176954pt;}
.y58{bottom:517.480306pt;}
.y14b{bottom:517.718953pt;}
.yf6{bottom:518.493551pt;}
.y12d{bottom:518.493571pt;}
.yc4{bottom:518.653564pt;}
.y1d1{bottom:518.653595pt;}
.yc0{bottom:518.653605pt;}
.y17{bottom:525.976400pt;}
.y206{bottom:530.078954pt;}
.y280{bottom:530.153620pt;}
.y248{bottom:530.430287pt;}
.y346{bottom:530.493578pt;}
.y2c1{bottom:530.493606pt;}
.y304{bottom:530.504954pt;}
.y57{bottom:534.146973pt;}
.y14a{bottom:534.385620pt;}
.yf5{bottom:535.160217pt;}
.y12c{bottom:535.160238pt;}
.y8d{bottom:535.320231pt;}
.y1d0{bottom:535.320262pt;}
.ybf{bottom:535.320272pt;}
.y16{bottom:542.643066pt;}
.y205{bottom:543.406954pt;}
.y27f{bottom:543.481620pt;}
.y247{bottom:543.758287pt;}
.y345{bottom:543.821578pt;}
.y2c0{bottom:543.821606pt;}
.y303{bottom:543.832954pt;}
.y72{bottom:550.813639pt;}
.y149{bottom:551.052287pt;}
.yf4{bottom:551.826884pt;}
.y12b{bottom:551.826904pt;}
.y8c{bottom:551.986898pt;}
.y1cf{bottom:551.986928pt;}
.ybe{bottom:551.986938pt;}
.y204{bottom:556.734954pt;}
.y27e{bottom:556.809620pt;}
.y246{bottom:557.086287pt;}
.y344{bottom:557.149578pt;}
.y2bf{bottom:557.149606pt;}
.y302{bottom:557.160954pt;}
.y15{bottom:559.309733pt;}
.y56{bottom:567.480306pt;}
.y148{bottom:567.718953pt;}
.yf3{bottom:568.493551pt;}
.y12a{bottom:568.493571pt;}
.y8b{bottom:568.653564pt;}
.y1ce{bottom:568.653595pt;}
.ybd{bottom:568.653605pt;}
.y203{bottom:570.062954pt;}
.y27d{bottom:570.137620pt;}
.y245{bottom:570.414287pt;}
.y343{bottom:570.477578pt;}
.y2be{bottom:570.477606pt;}
.y301{bottom:570.488954pt;}
.y14{bottom:575.976400pt;}
.y202{bottom:583.390954pt;}
.y27c{bottom:583.465620pt;}
.y244{bottom:583.742287pt;}
.y342{bottom:583.805578pt;}
.y2bd{bottom:583.805606pt;}
.y300{bottom:583.816954pt;}
.y55{bottom:584.146973pt;}
.yf2{bottom:585.160217pt;}
.y129{bottom:585.160238pt;}
.y8a{bottom:585.320231pt;}
.y1cd{bottom:585.320262pt;}
.ybc{bottom:585.320272pt;}
.y13{bottom:592.643066pt;}
.y201{bottom:596.718954pt;}
.y27b{bottom:596.793620pt;}
.y243{bottom:597.070287pt;}
.y341{bottom:597.133578pt;}
.y2bc{bottom:597.133606pt;}
.y2ff{bottom:597.144954pt;}
.y54{bottom:600.813639pt;}
.y147{bottom:601.052287pt;}
.yf1{bottom:601.826884pt;}
.y128{bottom:601.826904pt;}
.y89{bottom:601.986898pt;}
.y1cc{bottom:601.986928pt;}
.ybb{bottom:601.986938pt;}
.y12{bottom:609.309733pt;}
.y200{bottom:610.046954pt;}
.y27a{bottom:610.121620pt;}
.y242{bottom:610.398287pt;}
.y340{bottom:610.461578pt;}
.y2bb{bottom:610.461606pt;}
.y2fe{bottom:610.472954pt;}
.y53{bottom:617.480306pt;}
.yf0{bottom:618.493551pt;}
.y127{bottom:618.493571pt;}
.y88{bottom:618.653564pt;}
.y1cb{bottom:618.653595pt;}
.yba{bottom:618.653605pt;}
.y1ff{bottom:623.374954pt;}
.y279{bottom:623.449620pt;}
.y241{bottom:623.726287pt;}
.y33f{bottom:623.789578pt;}
.y2ba{bottom:623.789606pt;}
.y2fd{bottom:623.800954pt;}
.y11{bottom:625.976400pt;}
.y52{bottom:634.146973pt;}
.yef{bottom:635.160217pt;}
.y126{bottom:635.160238pt;}
.y87{bottom:635.320231pt;}
.y1ca{bottom:635.320262pt;}
.yb9{bottom:635.320272pt;}
.y1fe{bottom:636.702954pt;}
.y278{bottom:636.777620pt;}
.y240{bottom:637.054287pt;}
.y33e{bottom:637.117578pt;}
.y2b9{bottom:637.117606pt;}
.y2fc{bottom:637.128954pt;}
.y10{bottom:642.643066pt;}
.y1fd{bottom:650.030954pt;}
.y277{bottom:650.105620pt;}
.y23f{bottom:650.382287pt;}
.y33d{bottom:650.445578pt;}
.y2b8{bottom:650.445606pt;}
.y2fb{bottom:650.456954pt;}
.y51{bottom:650.813639pt;}
.y125{bottom:651.826904pt;}
.y183{bottom:651.898804pt;}
.y86{bottom:651.986898pt;}
.y1c9{bottom:651.986928pt;}
.yb8{bottom:651.986938pt;}
.y1ac{bottom:658.493030pt;}
.y1a0{bottom:658.510372pt;}
.y199{bottom:658.519042pt;}
.y18a{bottom:658.536373pt;}
.yf{bottom:659.309733pt;}
.y1fc{bottom:663.358954pt;}
.y276{bottom:663.433620pt;}
.y23e{bottom:663.710287pt;}
.y33c{bottom:663.773578pt;}
.y2b7{bottom:663.773606pt;}
.y2fa{bottom:663.784954pt;}
.y1ad{bottom:666.492363pt;}
.y1a1{bottom:666.509705pt;}
.y19a{bottom:666.518375pt;}
.y18b{bottom:666.535706pt;}
.y50{bottom:667.480306pt;}
.yee{bottom:668.493551pt;}
.y124{bottom:668.493571pt;}
.y85{bottom:668.653564pt;}
.y1c8{bottom:668.653595pt;}
.yb7{bottom:668.653605pt;}
.ye{bottom:675.976400pt;}
.y1fb{bottom:676.686954pt;}
.y275{bottom:676.761620pt;}
.y23d{bottom:677.038287pt;}
.y33b{bottom:677.101578pt;}
.y2b6{bottom:677.101606pt;}
.y2f9{bottom:677.112954pt;}
.y4f{bottom:684.146973pt;}
.y123{bottom:685.160238pt;}
.y84{bottom:685.320231pt;}
.y1c7{bottom:685.320262pt;}
.yb6{bottom:685.320272pt;}
.y1fa{bottom:690.014954pt;}
.y274{bottom:690.089620pt;}
.y23c{bottom:690.366287pt;}
.y33a{bottom:690.429578pt;}
.y2b5{bottom:690.429606pt;}
.y2f8{bottom:690.440954pt;}
.yd{bottom:692.643066pt;}
.y4e{bottom:700.813639pt;}
.yed{bottom:701.826884pt;}
.y122{bottom:701.826904pt;}
.y83{bottom:701.986898pt;}
.y1c6{bottom:701.986928pt;}
.yb5{bottom:701.986938pt;}
.y1f9{bottom:703.342954pt;}
.y273{bottom:703.417620pt;}
.y23b{bottom:703.694287pt;}
.y339{bottom:703.757578pt;}
.y2b4{bottom:703.757606pt;}
.y2f7{bottom:703.768954pt;}
.yc{bottom:709.309733pt;}
.y1f8{bottom:716.670954pt;}
.y272{bottom:716.745620pt;}
.y23a{bottom:717.022287pt;}
.y338{bottom:717.085578pt;}
.y2b3{bottom:717.085606pt;}
.y2f6{bottom:717.096954pt;}
.y4d{bottom:717.480306pt;}
.yec{bottom:718.493551pt;}
.y121{bottom:718.493571pt;}
.y82{bottom:718.653564pt;}
.y1c5{bottom:718.653595pt;}
.yb4{bottom:718.653605pt;}
.yb{bottom:725.976400pt;}
.y1f7{bottom:729.998954pt;}
.y271{bottom:730.073620pt;}
.y239{bottom:730.350287pt;}
.y337{bottom:730.413578pt;}
.y2b2{bottom:730.413606pt;}
.y2f5{bottom:730.424954pt;}
.y4c{bottom:734.146973pt;}
.yeb{bottom:735.160217pt;}
.y120{bottom:735.160238pt;}
.y81{bottom:735.320231pt;}
.y1c4{bottom:735.320262pt;}
.yb3{bottom:735.320272pt;}
.y1f6{bottom:743.326954pt;}
.y270{bottom:743.401620pt;}
.y238{bottom:743.678287pt;}
.y336{bottom:743.741578pt;}
.y2b1{bottom:743.741606pt;}
.y2f4{bottom:743.752954pt;}
.y4b{bottom:750.813639pt;}
.yea{bottom:751.826884pt;}
.y11f{bottom:751.826904pt;}
.y80{bottom:751.986898pt;}
.y1c3{bottom:751.986928pt;}
.yb2{bottom:751.986938pt;}
.y1f5{bottom:756.654954pt;}
.y26f{bottom:756.729620pt;}
.y237{bottom:757.006287pt;}
.y335{bottom:757.069578pt;}
.y2b0{bottom:757.069606pt;}
.y2f3{bottom:757.080954pt;}
.y17b{bottom:762.036404pt;}
.y174{bottom:764.173326pt;}
.ya{bottom:765.249962pt;}
.y181{bottom:766.868979pt;}
.y4a{bottom:767.480306pt;}
.ye9{bottom:768.493551pt;}
.y11e{bottom:768.493571pt;}
.y7f{bottom:768.653564pt;}
.y1c2{bottom:768.653595pt;}
.yb1{bottom:768.653605pt;}
.y1f4{bottom:769.982954pt;}
.y26e{bottom:770.057620pt;}
.y236{bottom:770.334287pt;}
.y334{bottom:770.397578pt;}
.y2af{bottom:770.397606pt;}
.y2f2{bottom:770.408954pt;}
.y17a{bottom:773.852329pt;}
.y173{bottom:775.457438pt;}
.y180{bottom:778.162760pt;}
.y9{bottom:778.577962pt;}
.y17d{bottom:781.909721pt;}
.y1f3{bottom:783.310954pt;}
.y26d{bottom:783.385620pt;}
.y235{bottom:783.662287pt;}
.y333{bottom:783.725578pt;}
.y2ae{bottom:783.725606pt;}
.y2f1{bottom:783.736954pt;}
.y49{bottom:784.146973pt;}
.y179{bottom:785.126771pt;}
.ye8{bottom:785.160217pt;}
.y11d{bottom:785.160238pt;}
.y7e{bottom:785.320231pt;}
.y1c1{bottom:785.320262pt;}
.yb0{bottom:785.320272pt;}
.y16d{bottom:785.325564pt;}
.y17c{bottom:793.184163pt;}
.y26c{bottom:796.713620pt;}
.y234{bottom:796.990287pt;}
.y332{bottom:797.053578pt;}
.y2ad{bottom:797.053606pt;}
.y2f0{bottom:797.064954pt;}
.y171{bottom:800.205902pt;}
.y48{bottom:800.813639pt;}
.ye7{bottom:801.826884pt;}
.y11c{bottom:801.826904pt;}
.y7d{bottom:801.986898pt;}
.y1c0{bottom:801.986928pt;}
.yaf{bottom:801.986938pt;}
.y26b{bottom:810.041620pt;}
.y233{bottom:810.318287pt;}
.y331{bottom:810.381578pt;}
.y2ac{bottom:810.381606pt;}
.y2ef{bottom:810.392954pt;}
.y17f{bottom:810.910320pt;}
.y1f2{bottom:813.310954pt;}
.y8{bottom:816.444661pt;}
.y47{bottom:817.480306pt;}
.ye6{bottom:818.493551pt;}
.y11b{bottom:818.493571pt;}
.y7c{bottom:818.653564pt;}
.y1bf{bottom:818.653595pt;}
.yae{bottom:818.653605pt;}
.y16f{bottom:822.202705pt;}
.y17e{bottom:822.204102pt;}
.y26a{bottom:823.369620pt;}
.y232{bottom:823.646287pt;}
.y330{bottom:823.709578pt;}
.y2ab{bottom:823.709606pt;}
.y2ee{bottom:823.720954pt;}
.y1ae{bottom:825.907025pt;}
.y18c{bottom:825.950365pt;}
.y182{bottom:829.212240pt;}
.y172{bottom:830.828680pt;}
.y7{bottom:833.111328pt;}
.y16e{bottom:833.486816pt;}
.y1af{bottom:833.906358pt;}
.y18d{bottom:833.949699pt;}
.y46{bottom:834.146973pt;}
.ye5{bottom:835.160217pt;}
.y11a{bottom:835.160238pt;}
.y7b{bottom:835.320231pt;}
.y1be{bottom:835.320262pt;}
.yad{bottom:835.320272pt;}
.y269{bottom:836.697620pt;}
.y231{bottom:836.974287pt;}
.y32f{bottom:837.037578pt;}
.y2aa{bottom:837.037606pt;}
.y2ed{bottom:837.048954pt;}
.y268{bottom:850.025620pt;}
.y230{bottom:850.302287pt;}
.y32e{bottom:850.365578pt;}
.y2a9{bottom:850.365606pt;}
.y2ec{bottom:850.376954pt;}
.y45{bottom:850.813639pt;}
.ye4{bottom:851.826884pt;}
.y119{bottom:851.826904pt;}
.y16c{bottom:851.985616pt;}
.y7a{bottom:851.986898pt;}
.y1bd{bottom:851.986928pt;}
.yac{bottom:851.986938pt;}
.y1f1{bottom:863.353620pt;}
.y22f{bottom:863.630287pt;}
.y32d{bottom:863.693578pt;}
.y2a8{bottom:863.693606pt;}
.y2eb{bottom:863.704954pt;}
.y170{bottom:866.808268pt;}
.y44{bottom:867.480306pt;}
.ye3{bottom:868.493551pt;}
.y118{bottom:868.493571pt;}
.y16b{bottom:868.652283pt;}
.y79{bottom:868.653564pt;}
.y1bc{bottom:868.653595pt;}
.yab{bottom:868.653605pt;}
.y178{bottom:871.125820pt;}
.y6{bottom:872.832682pt;}
.y1f0{bottom:876.681620pt;}
.y22e{bottom:876.958287pt;}
.y32c{bottom:877.021578pt;}
.y2a7{bottom:877.021606pt;}
.y2ea{bottom:877.032954pt;}
.y176{bottom:877.565596pt;}
.y177{bottom:882.400263pt;}
.y43{bottom:884.146973pt;}
.ye2{bottom:885.160217pt;}
.y117{bottom:885.160238pt;}
.y16a{bottom:885.318949pt;}
.y78{bottom:885.320231pt;}
.y1bb{bottom:885.320262pt;}
.yaa{bottom:885.320272pt;}
.y175{bottom:888.849708pt;}
.y1ef{bottom:890.009620pt;}
.y22d{bottom:890.286287pt;}
.y32b{bottom:890.349578pt;}
.y2a6{bottom:890.349606pt;}
.y2e9{bottom:890.360954pt;}
.y5{bottom:896.832682pt;}
.y42{bottom:900.813639pt;}
.ye1{bottom:901.826884pt;}
.y116{bottom:901.826904pt;}
.y169{bottom:901.985616pt;}
.y77{bottom:901.986898pt;}
.y1ba{bottom:901.986928pt;}
.ya9{bottom:901.986938pt;}
.y1ee{bottom:903.337620pt;}
.y22c{bottom:903.614287pt;}
.y32a{bottom:903.677578pt;}
.y2a5{bottom:903.677606pt;}
.y2e8{bottom:903.688954pt;}
.y1ed{bottom:916.665620pt;}
.y22b{bottom:916.942287pt;}
.y329{bottom:917.005578pt;}
.y2a4{bottom:917.005606pt;}
.y2e7{bottom:917.016954pt;}
.y41{bottom:917.480306pt;}
.ye0{bottom:918.493551pt;}
.y115{bottom:918.493571pt;}
.y168{bottom:918.652283pt;}
.y76{bottom:918.653564pt;}
.y1b9{bottom:918.653595pt;}
.ya8{bottom:918.653605pt;}
.y1ec{bottom:929.993620pt;}
.y22a{bottom:930.270287pt;}
.y328{bottom:930.333578pt;}
.y2a3{bottom:930.333606pt;}
.y2e6{bottom:930.344954pt;}
.y40{bottom:934.146973pt;}
.ydf{bottom:935.160217pt;}
.y114{bottom:935.160238pt;}
.y167{bottom:935.318949pt;}
.y75{bottom:935.320231pt;}
.y1b8{bottom:935.320262pt;}
.ya7{bottom:935.320272pt;}
.y1eb{bottom:943.321620pt;}
.y229{bottom:943.598287pt;}
.y327{bottom:943.661578pt;}
.y2a2{bottom:943.661606pt;}
.y2e5{bottom:943.672954pt;}
.y3f{bottom:950.813639pt;}
.y166{bottom:951.985616pt;}
.y74{bottom:951.986898pt;}
.y1b7{bottom:951.986928pt;}
.ya6{bottom:951.986938pt;}
.y1ea{bottom:956.649620pt;}
.y228{bottom:956.926287pt;}
.y326{bottom:956.989578pt;}
.y2a1{bottom:956.989606pt;}
.y2e4{bottom:957.000954pt;}
.y3e{bottom:967.480306pt;}
.yde{bottom:968.493551pt;}
.y113{bottom:968.493571pt;}
.y165{bottom:968.652283pt;}
.y73{bottom:968.653564pt;}
.y1b6{bottom:968.653595pt;}
.ya5{bottom:968.653605pt;}
.y1e9{bottom:969.977620pt;}
.y227{bottom:970.254287pt;}
.y325{bottom:970.317578pt;}
.y2a0{bottom:970.317606pt;}
.y2e3{bottom:970.328954pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3d{bottom:1002.206543pt;}
.h10{height:26.455295pt;}
.h11{height:27.228776pt;}
.h2{height:30.080000pt;}
.hb{height:30.495732pt;}
.h12{height:33.314667pt;}
.h13{height:33.592000pt;}
.h4{height:39.712000pt;}
.ha{height:43.565333pt;}
.he{height:47.253333pt;}
.h3{height:48.766452pt;}
.h8{height:51.253333pt;}
.hc{height:52.448000pt;}
.h7{height:52.746667pt;}
.hd{height:54.560000pt;}
.hf{height:57.210667pt;}
.h6{height:57.658667pt;}
.h9{height:63.296000pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x7{left:69.996800pt;}
.x9{left:83.170133pt;}
.xb{left:84.911469pt;}
.x6{left:86.929867pt;}
.x8{left:94.996796pt;}
.xd{left:100.749602pt;}
.xe{left:119.187469pt;}
.x1e{left:123.019735pt;}
.x1f{left:143.677867pt;}
.x16{left:145.727287pt;}
.x19{left:163.824535pt;}
.x20{left:166.644533pt;}
.x18{left:170.465993pt;}
.x17{left:172.670145pt;}
.x21{left:177.313200pt;}
.x22{left:187.981867pt;}
.x23{left:198.650534pt;}
.xf{left:209.572673pt;}
.x10{left:211.061442pt;}
.x24{left:213.357869pt;}
.x25{left:223.957202pt;}
.x1d{left:230.357992pt;}
.x26{left:234.625869pt;}
.x27{left:245.294535pt;}
.x12{left:247.881999pt;}
.x28{left:255.963202pt;}
.x13{left:258.960763pt;}
.x14{left:264.635487pt;}
.x15{left:266.858974pt;}
.x29{left:277.300535pt;}
.x2a{left:287.969202pt;}
.x2b{left:298.655204pt;}
.x2c{left:309.323871pt;}
.x11{left:310.876659pt;}
.x1c{left:320.268677pt;}
.x1b{left:325.541838pt;}
.x2d{left:330.661204pt;}
.x1a{left:337.432658pt;}
.x2e{left:345.290537pt;}
.x2f{left:355.959204pt;}
.x30{left:366.627871pt;}
.x31{left:377.296537pt;}
.x32{left:387.965204pt;}
.x33{left:398.633871pt;}
.x4{left:408.189087pt;}
.x34{left:409.311206pt;}
.x35{left:419.979872pt;}
.xa{left:423.308924pt;}
.x36{left:430.648539pt;}
.x5{left:435.149087pt;}
.xc{left:440.907857pt;}
.x37{left:451.985872pt;}
.x38{left:466.623874pt;}
.x39{left:477.292541pt;}
.x3a{left:487.961208pt;}
.x3b{left:498.629874pt;}
.x3c{left:513.267874pt;}
.x3d{left:523.936541pt;}
.x3e{left:534.605208pt;}
.x3f{left:549.234542pt;}
.x40{left:559.903209pt;}
.x41{left:570.571875pt;}
.x42{left:581.240542pt;}
.x43{left:591.909209pt;}
.x44{left:602.577875pt;}
.x45{left:613.246542pt;}
.x46{left:623.915209pt;}
.x47{left:634.583875pt;}
.x48{left:645.252542pt;}
.x1{left:647.307210pt;}
.x49{left:659.985881pt;}
.x4a{left:670.654547pt;}
.x2{left:671.546549pt;}
}


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