
/* 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_5a83e9b33e3c.woff")format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_1ef8a58776ac.woff")format("woff");}.ff2{font-family:ff2;line-height:0.678000;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_74d033a6ee08.woff")format("woff");}.ff3{font-family:ff3;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_48e1fa46edcb.woff")format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_b0bb9a1eef71.woff")format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_1cfb557ec5a0.woff")format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_1129264e886e.woff")format("woff");}.ff7{font-family:ff7;line-height:1.268000;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_bc50ab230c5b.woff")format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_0c039e5d8c01.woff")format("woff");}.ff9{font-family:ff9;line-height:0.719000;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_0f670cb3a844.woff")format("woff");}.ffa{font-family:ffa;line-height:1.349000;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_df627357c406.woff")format("woff");}.ffb{font-family:ffb;line-height:1.362000;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_b0bb9a1eef71.woff")format("woff");}.ffc{font-family:ffc;line-height:0.958000;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_4208b62318cb.woff")format("woff");}.ffd{font-family:ffd;line-height:0.641000;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_d868868141f3.woff")format("woff");}.ffe{font-family:ffe;line-height:0.952148;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_e83b6f2e285f.woff")format("woff");}.fff{font-family:fff;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_20bc77269d56.woff")format("woff");}.ff10{font-family:ff10;line-height:1.392000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_1f3e274b0dc4.woff")format("woff");}.ff11{font-family:ff11;line-height:0.411000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_5bde5ec45df4.woff")format("woff");}.ff12{font-family:ff12;line-height:1.200885;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_7e9b695b6dea.woff")format("woff");}.ff13{font-family:ff13;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_a7935e5f1e4f.woff")format("woff");}.ff14{font-family:ff14;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-20.400037px;}
.v6{vertical-align:-18.563965px;}
.v7{vertical-align:-17.339996px;}
.v3{vertical-align:-3.600037px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:14.382000px;}
.v2{vertical-align:16.799927px;}
.v5{vertical-align:18.569366px;}
.v1{vertical-align:20.399963px;}
.v9{vertical-align:22.512000px;}
.va{vertical-align:44.981999px;}
.ls1a{letter-spacing:-9.180000px;}
.lsa0{letter-spacing:-5.405400px;}
.ls5b{letter-spacing:-4.860000px;}
.ls5a{letter-spacing:-4.284000px;}
.ls74{letter-spacing:-3.942000px;}
.ls92{letter-spacing:-2.226000px;}
.ls55{letter-spacing:-1.722000px;}
.ls8f{letter-spacing:-1.674000px;}
.ls51{letter-spacing:-1.638000px;}
.lsa3{letter-spacing:-1.583400px;}
.ls47{letter-spacing:-1.512000px;}
.ls8e{letter-spacing:-1.404000px;}
.ls53{letter-spacing:-1.344000px;}
.lsba{letter-spacing:-1.305000px;}
.ls8d{letter-spacing:-1.296000px;}
.ls64{letter-spacing:-1.255800px;}
.lsa5{letter-spacing:-1.201200px;}
.ls46{letter-spacing:-1.188000px;}
.lsb1{letter-spacing:-1.134000px;}
.ls88{letter-spacing:-1.092000px;}
.ls44{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-1.037400px;}
.ls3a{letter-spacing:-0.982800px;}
.ls45{letter-spacing:-0.972000px;}
.ls50{letter-spacing:-0.966000px;}
.ls48{letter-spacing:-0.928200px;}
.ls8c{letter-spacing:-0.918000px;}
.ls3e{letter-spacing:-0.873600px;}
.ls49{letter-spacing:-0.819000px;}
.lsb6{letter-spacing:-0.810000px;}
.ls91{letter-spacing:-0.798000px;}
.ls1b{letter-spacing:-0.764400px;}
.ls7f{letter-spacing:-0.756000px;}
.lsb2{letter-spacing:-0.737100px;}
.lscd{letter-spacing:-0.720000px;}
.ls59{letter-spacing:-0.714000px;}
.ls1f{letter-spacing:-0.709800px;}
.ls9f{letter-spacing:-0.702000px;}
.lsb4{letter-spacing:-0.675000px;}
.ls3f{letter-spacing:-0.655200px;}
.lsca{letter-spacing:-0.630000px;}
.ls3d{letter-spacing:-0.600600px;}
.lsa8{letter-spacing:-0.594000px;}
.ls52{letter-spacing:-0.588000px;}
.lsbb{letter-spacing:-0.585000px;}
.ls3c{letter-spacing:-0.546000px;}
.ls7e{letter-spacing:-0.540000px;}
.ls58{letter-spacing:-0.504000px;}
.lsb9{letter-spacing:-0.495000px;}
.ls20{letter-spacing:-0.491400px;}
.ls5d{letter-spacing:-0.486000px;}
.lscb{letter-spacing:-0.450000px;}
.ls1d{letter-spacing:-0.436800px;}
.ls5e{letter-spacing:-0.432000px;}
.lscf{letter-spacing:-0.405000px;}
.ls40{letter-spacing:-0.382200px;}
.lsbc{letter-spacing:-0.360000px;}
.ls4f{letter-spacing:-0.336000px;}
.ls27{letter-spacing:-0.327600px;}
.ls99{letter-spacing:-0.324000px;}
.lsb5{letter-spacing:-0.315000px;}
.ls33{letter-spacing:-0.273000px;}
.ls9d{letter-spacing:-0.270000px;}
.ls9c{letter-spacing:-0.240000px;}
.ls37{letter-spacing:-0.218400px;}
.ls5c{letter-spacing:-0.216000px;}
.ls35{letter-spacing:-0.212940px;}
.ls90{letter-spacing:-0.210000px;}
.ls84{letter-spacing:-0.180000px;}
.ls54{letter-spacing:-0.168000px;}
.ls43{letter-spacing:-0.163800px;}
.ls73{letter-spacing:-0.162000px;}
.ls38{letter-spacing:-0.141960px;}
.lscc{letter-spacing:-0.135000px;}
.lsa6{letter-spacing:-0.120000px;}
.ls24{letter-spacing:-0.109200px;}
.ls72{letter-spacing:-0.108000px;}
.lsa4{letter-spacing:-0.106470px;}
.lsbe{letter-spacing:-0.090000px;}
.ls34{letter-spacing:-0.070980px;}
.lsb0{letter-spacing:-0.070200px;}
.lsac{letter-spacing:-0.060000px;}
.ls1e{letter-spacing:-0.054600px;}
.ls98{letter-spacing:-0.054000px;}
.lsb7{letter-spacing:-0.045000px;}
.ls63{letter-spacing:-0.035490px;}
.ls19{letter-spacing:0.000000px;}
.ls93{letter-spacing:0.000084px;}
.ls5{letter-spacing:0.013223px;}
.ls6{letter-spacing:0.013772px;}
.lsf{letter-spacing:0.033295px;}
.lse{letter-spacing:0.033478px;}
.ls79{letter-spacing:0.035490px;}
.ls7{letter-spacing:0.038286px;}
.ls2{letter-spacing:0.038303px;}
.lsd0{letter-spacing:0.045000px;}
.lsd{letter-spacing:0.051000px;}
.ls67{letter-spacing:0.054000px;}
.ls96{letter-spacing:0.054595px;}
.ls21{letter-spacing:0.054600px;}
.ls87{letter-spacing:0.060000px;}
.ls30{letter-spacing:0.070978px;}
.ls2f{letter-spacing:0.070980px;}
.ls15{letter-spacing:0.076691px;}
.lsab{letter-spacing:0.105300px;}
.ls77{letter-spacing:0.106470px;}
.ls8b{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.109200px;}
.lsc7{letter-spacing:0.112500px;}
.ls56{letter-spacing:0.126000px;}
.lsc1{letter-spacing:0.135000px;}
.ls29{letter-spacing:0.153000px;}
.ls66{letter-spacing:0.162000px;}
.ls26{letter-spacing:0.163800px;}
.lsaa{letter-spacing:0.175500px;}
.lsbf{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.210000px;}
.ls41{letter-spacing:0.212940px;}
.ls94{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.218400px;}
.lsb3{letter-spacing:0.225000px;}
.ls12{letter-spacing:0.238648px;}
.ls13{letter-spacing:0.238740px;}
.ls6d{letter-spacing:0.240000px;}
.ls80{letter-spacing:0.248430px;}
.ls6f{letter-spacing:0.270001px;}
.ls4e{letter-spacing:0.273000px;}
.lsa9{letter-spacing:0.280800px;}
.ls39{letter-spacing:0.283920px;}
.lsa1{letter-spacing:0.319410px;}
.ls2e{letter-spacing:0.319412px;}
.lsa7{letter-spacing:0.324000px;}
.ls2c{letter-spacing:0.327600px;}
.ls5f{letter-spacing:0.378000px;}
.ls42{letter-spacing:0.382200px;}
.lsc2{letter-spacing:0.386945px;}
.lsc6{letter-spacing:0.405000px;}
.ls14{letter-spacing:0.408000px;}
.ls65{letter-spacing:0.420000px;}
.ls9e{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.436800px;}
.lsad{letter-spacing:0.450000px;}
.ls36{letter-spacing:0.461370px;}
.lsc0{letter-spacing:0.472456px;}
.ls11{letter-spacing:0.476777px;}
.ls95{letter-spacing:0.486000px;}
.ls78{letter-spacing:0.491400px;}
.lsbd{letter-spacing:0.495000px;}
.lsc3{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.546000px;}
.lsc4{letter-spacing:0.585000px;}
.ls6e{letter-spacing:0.594000px;}
.ls22{letter-spacing:0.600600px;}
.ls71{letter-spacing:0.627818px;}
.lsaf{letter-spacing:0.630000px;}
.lsd2{letter-spacing:0.648000px;}
.ls28{letter-spacing:0.655200px;}
.ls3b{letter-spacing:0.674310px;}
.lsc9{letter-spacing:0.675000px;}
.lsd3{letter-spacing:0.702000px;}
.ls2d{letter-spacing:0.709800px;}
.lsb8{letter-spacing:0.720000px;}
.lsae{letter-spacing:0.733570px;}
.ls9a{letter-spacing:0.756000px;}
.ls6c{letter-spacing:0.764400px;}
.ls10{letter-spacing:0.765000px;}
.ls69{letter-spacing:0.819000px;}
.ls7b{letter-spacing:0.873600px;}
.ls16{letter-spacing:0.877045px;}
.lsd5{letter-spacing:0.918000px;}
.ls8{letter-spacing:0.928200px;}
.lsce{letter-spacing:0.945000px;}
.lsd1{letter-spacing:0.972000px;}
.lsc{letter-spacing:0.980134px;}
.lsa{letter-spacing:0.980225px;}
.ls4a{letter-spacing:0.982800px;}
.ls32{letter-spacing:1.037400px;}
.lsc8{letter-spacing:1.080000px;}
.ls9b{letter-spacing:1.092000px;}
.ls6a{letter-spacing:1.146600px;}
.ls4b{letter-spacing:1.201200px;}
.ls7d{letter-spacing:1.255800px;}
.ls81{letter-spacing:1.310400px;}
.ls62{letter-spacing:1.365000px;}
.ls17{letter-spacing:1.377000px;}
.ls6b{letter-spacing:1.474200px;}
.lsc5{letter-spacing:1.503009px;}
.ls7a{letter-spacing:1.528800px;}
.lsb{letter-spacing:1.530000px;}
.ls7c{letter-spacing:1.583400px;}
.ls70{letter-spacing:1.638000px;}
.ls85{letter-spacing:1.692600px;}
.ls83{letter-spacing:1.747200px;}
.ls86{letter-spacing:1.747201px;}
.ls89{letter-spacing:1.801800px;}
.ls18{letter-spacing:1.887000px;}
.ls82{letter-spacing:1.911000px;}
.ls61{letter-spacing:1.965600px;}
.ls60{letter-spacing:2.020200px;}
.ls68{letter-spacing:2.293200px;}
.ls0{letter-spacing:2.592000px;}
.ls2b{letter-spacing:2.700000px;}
.ls76{letter-spacing:2.730000px;}
.ls1{letter-spacing:2.767500px;}
.ls2a{letter-spacing:3.108000px;}
.ls75{letter-spacing:4.313400px;}
.lsa2{letter-spacing:4.620000px;}
.lsd4{letter-spacing:4.920000px;}
.ls8a{letter-spacing:5.296200px;}
.ls97{letter-spacing:6.120000px;}
.ls3{letter-spacing:43.142388px;}
.ls4{letter-spacing:43.174219px;}
.ls4d{letter-spacing:89.670003px;}
.ls4c{letter-spacing:137.381992px;}
.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;}
}
.ws5{word-spacing:-41.640000px;}
.ws94{word-spacing:-34.234201px;}
.ws93{word-spacing:-33.906601px;}
.ws92{word-spacing:-33.360601px;}
.ws96{word-spacing:-33.306001px;}
.wsa1{word-spacing:-32.923801px;}
.wsf8{word-spacing:-32.886000px;}
.ws5d{word-spacing:-32.869201px;}
.ws9e{word-spacing:-32.760001px;}
.ws95{word-spacing:-32.541601px;}
.wsd5{word-spacing:-32.400000px;}
.wsc0{word-spacing:-32.214001px;}
.ws11e{word-spacing:-31.428000px;}
.wse5{word-spacing:-25.200000px;}
.ws3{word-spacing:-15.067500px;}
.ws27{word-spacing:-14.700000px;}
.wsd4{word-spacing:-14.414401px;}
.wsc2{word-spacing:-13.759201px;}
.ws11f{word-spacing:-13.596000px;}
.wsd2{word-spacing:-13.540801px;}
.wsc5{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.431601px;}
.wsd3{word-spacing:-13.322401px;}
.wsc4{word-spacing:-13.104001px;}
.wsa4{word-spacing:-13.049401px;}
.ws37{word-spacing:-12.940201px;}
.ws5c{word-spacing:-12.885601px;}
.wsf6{word-spacing:-12.852000px;}
.ws39{word-spacing:-12.831001px;}
.wsc3{word-spacing:-12.776401px;}
.wsb{word-spacing:-12.721801px;}
.ws9{word-spacing:-12.667201px;}
.wsa2{word-spacing:-12.612601px;}
.ws40{word-spacing:-12.558001px;}
.ws33{word-spacing:-12.503401px;}
.wsf7{word-spacing:-12.474000px;}
.ws3c{word-spacing:-12.448801px;}
.ws111{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.394201px;}
.ws77{word-spacing:-12.366000px;}
.ws38{word-spacing:-12.339601px;}
.ws34{word-spacing:-12.285001px;}
.ws3f{word-spacing:-12.258000px;}
.ws80{word-spacing:-12.230401px;}
.ws9c{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.wsc{word-spacing:-12.175801px;}
.wsb9{word-spacing:-12.150000px;}
.wsa0{word-spacing:-12.121201px;}
.ws2a{word-spacing:-12.066601px;}
.ws35{word-spacing:-12.012001px;}
.ws32{word-spacing:-11.957400px;}
.ws78{word-spacing:-11.934000px;}
.ws3b{word-spacing:-11.902800px;}
.ws102{word-spacing:-11.880000px;}
.ws3a{word-spacing:-11.848200px;}
.wsb7{word-spacing:-11.826000px;}
.ws104{word-spacing:-11.793600px;}
.ws28{word-spacing:-11.739000px;}
.ws154{word-spacing:-11.718000px;}
.ws41{word-spacing:-11.684400px;}
.ws103{word-spacing:-11.664000px;}
.ws36{word-spacing:-11.629800px;}
.wsb8{word-spacing:-11.610000px;}
.wsd{word-spacing:-11.577000px;}
.ws2f{word-spacing:-11.520600px;}
.ws5e{word-spacing:-11.356800px;}
.ws3e{word-spacing:-11.286000px;}
.ws6{word-spacing:-11.124000px;}
.wsd7{word-spacing:-11.070000px;}
.ws13d{word-spacing:-10.890000px;}
.ws10d{word-spacing:-10.810800px;}
.ws138{word-spacing:-10.800000px;}
.wsd8{word-spacing:-10.692000px;}
.ws122{word-spacing:-10.440000px;}
.ws13c{word-spacing:-10.350000px;}
.ws139{word-spacing:-10.305000px;}
.ws120{word-spacing:-10.215000px;}
.wse{word-spacing:-10.200000px;}
.ws13a{word-spacing:-10.125000px;}
.ws121{word-spacing:-10.035000px;}
.ws137{word-spacing:-9.990000px;}
.ws123{word-spacing:-9.900000px;}
.ws1{word-spacing:-9.888000px;}
.ws125{word-spacing:-9.765000px;}
.ws132{word-spacing:-9.675000px;}
.ws13b{word-spacing:-9.630000px;}
.wse1{word-spacing:-9.618000px;}
.ws2{word-spacing:-9.600000px;}
.wse4{word-spacing:-9.450000px;}
.ws124{word-spacing:-9.000000px;}
.wsdb{word-spacing:-8.904000px;}
.ws31{word-spacing:-8.730540px;}
.ws2c{word-spacing:-8.517600px;}
.ws105{word-spacing:-8.375640px;}
.ws2e{word-spacing:-8.340150px;}
.ws9d{word-spacing:-8.316000px;}
.wsc1{word-spacing:-8.304660px;}
.wse8{word-spacing:-8.274000px;}
.ws3d{word-spacing:-8.269170px;}
.ws10f{word-spacing:-8.248500px;}
.ws9f{word-spacing:-8.162700px;}
.ws110{word-spacing:-8.143200px;}
.ws30{word-spacing:-8.127210px;}
.wsa3{word-spacing:-8.091720px;}
.ws112{word-spacing:-8.073000px;}
.ws7{word-spacing:-8.056230px;}
.ws4{word-spacing:-8.034000px;}
.ws81{word-spacing:-8.020740px;}
.ws29{word-spacing:-7.985250px;}
.ws10a{word-spacing:-7.967700px;}
.ws10e{word-spacing:-7.949760px;}
.ws2d{word-spacing:-7.914270px;}
.ws11c{word-spacing:-7.897500px;}
.ws2b{word-spacing:-7.843290px;}
.ws11d{word-spacing:-7.230600px;}
.wsf9{word-spacing:-6.120000px;}
.ws60{word-spacing:-5.924100px;}
.wscf{word-spacing:-5.508000px;}
.wsec{word-spacing:-5.296200px;}
.ws155{word-spacing:-4.920000px;}
.ws10b{word-spacing:-4.620000px;}
.wsac{word-spacing:-4.313400px;}
.wsc6{word-spacing:-3.603600px;}
.wsd6{word-spacing:-3.294000px;}
.ws26{word-spacing:-3.108000px;}
.wsad{word-spacing:-2.730000px;}
.ws151{word-spacing:-2.430000px;}
.ws59{word-spacing:-2.347800px;}
.ws20{word-spacing:-2.244000px;}
.ws5a{word-spacing:-2.184000px;}
.wsf2{word-spacing:-2.160000px;}
.ws4d{word-spacing:-1.911000px;}
.ws12{word-spacing:-1.856400px;}
.ws56{word-spacing:-1.836000px;}
.wsae{word-spacing:-1.801800px;}
.ws109{word-spacing:-1.782000px;}
.ws42{word-spacing:-1.747200px;}
.wsd1{word-spacing:-1.728000px;}
.wsc9{word-spacing:-1.692600px;}
.ws116{word-spacing:-1.674000px;}
.ws50{word-spacing:-1.638000px;}
.ws11b{word-spacing:-1.620000px;}
.wsb2{word-spacing:-1.583400px;}
.ws1e{word-spacing:-1.530000px;}
.wsb0{word-spacing:-1.528800px;}
.ws9a{word-spacing:-1.474200px;}
.ws4f{word-spacing:-1.419600px;}
.ws126{word-spacing:-1.404000px;}
.ws25{word-spacing:-1.377000px;}
.ws16{word-spacing:-1.365000px;}
.ws131{word-spacing:-1.350000px;}
.ws23{word-spacing:-1.326000px;}
.ws83{word-spacing:-1.310400px;}
.ws14e{word-spacing:-1.305000px;}
.wsfa{word-spacing:-1.296000px;}
.ws128{word-spacing:-1.275000px;}
.ws147{word-spacing:-1.260000px;}
.ws18{word-spacing:-1.255800px;}
.ws58{word-spacing:-1.242000px;}
.wsb4{word-spacing:-1.201200px;}
.ws91{word-spacing:-1.188000px;}
.ws43{word-spacing:-1.146600px;}
.ws115{word-spacing:-1.134000px;}
.ws13e{word-spacing:-1.125000px;}
.wsb6{word-spacing:-1.092000px;}
.ws47{word-spacing:-1.037400px;}
.ws129{word-spacing:-1.035000px;}
.ws7f{word-spacing:-1.026000px;}
.ws4a{word-spacing:-0.982800px;}
.wsf4{word-spacing:-0.966000px;}
.ws10{word-spacing:-0.960000px;}
.ws84{word-spacing:-0.928200px;}
.ws7d{word-spacing:-0.924000px;}
.ws88{word-spacing:-0.873600px;}
.ws11{word-spacing:-0.864000px;}
.ws143{word-spacing:-0.855000px;}
.ws7a{word-spacing:-0.819000px;}
.wsfc{word-spacing:-0.810000px;}
.ws21{word-spacing:-0.765000px;}
.ws4b{word-spacing:-0.764400px;}
.ws55{word-spacing:-0.756000px;}
.ws136{word-spacing:-0.720000px;}
.ws98{word-spacing:-0.709800px;}
.wsbf{word-spacing:-0.702000px;}
.ws12a{word-spacing:-0.675000px;}
.ws1d{word-spacing:-0.655200px;}
.ws8b{word-spacing:-0.648000px;}
.ws14d{word-spacing:-0.630000px;}
.ws13{word-spacing:-0.600600px;}
.wsa6{word-spacing:-0.594000px;}
.ws142{word-spacing:-0.585000px;}
.ws52{word-spacing:-0.546000px;}
.wsa9{word-spacing:-0.540000px;}
.ws133{word-spacing:-0.495000px;}
.ws51{word-spacing:-0.491400px;}
.wsff{word-spacing:-0.486000px;}
.ws130{word-spacing:-0.450000px;}
.ws97{word-spacing:-0.436800px;}
.ws119{word-spacing:-0.432000px;}
.ws89{word-spacing:-0.420000px;}
.ws22{word-spacing:-0.408000px;}
.ws12c{word-spacing:-0.405000px;}
.ws79{word-spacing:-0.382200px;}
.wsa7{word-spacing:-0.378000px;}
.ws145{word-spacing:-0.360000px;}
.ws53{word-spacing:-0.327600px;}
.ws118{word-spacing:-0.324000px;}
.ws146{word-spacing:-0.315000px;}
.ws46{word-spacing:-0.283920px;}
.ws4c{word-spacing:-0.273000px;}
.ws156{word-spacing:-0.270000px;}
.wsa5{word-spacing:-0.240000px;}
.ws12b{word-spacing:-0.225000px;}
.ws15{word-spacing:-0.218400px;}
.ws8a{word-spacing:-0.216000px;}
.ws14{word-spacing:-0.163800px;}
.ws117{word-spacing:-0.162000px;}
.ws24{word-spacing:-0.153000px;}
.ws149{word-spacing:-0.135000px;}
.ws4e{word-spacing:-0.109200px;}
.ws48{word-spacing:-0.070980px;}
.wsef{word-spacing:-0.060000px;}
.ws19{word-spacing:-0.054600px;}
.wsfb{word-spacing:-0.054000px;}
.ws1f{word-spacing:-0.051000px;}
.wsb5{word-spacing:-0.035490px;}
.wsf{word-spacing:0.000000px;}
.ws82{word-spacing:0.035490px;}
.wsb3{word-spacing:0.054600px;}
.ws11a{word-spacing:0.060000px;}
.ws44{word-spacing:0.070980px;}
.ws12e{word-spacing:0.090000px;}
.ws113{word-spacing:0.106470px;}
.ws1a{word-spacing:0.109200px;}
.ws114{word-spacing:0.120000px;}
.ws134{word-spacing:0.135000px;}
.ws10c{word-spacing:0.162000px;}
.ws17{word-spacing:0.163800px;}
.wsce{word-spacing:0.180000px;}
.wsa8{word-spacing:0.216000px;}
.wsb1{word-spacing:0.218400px;}
.ws106{word-spacing:0.240000px;}
.ws140{word-spacing:0.270000px;}
.ws107{word-spacing:0.273000px;}
.ws141{word-spacing:0.315000px;}
.ws1c{word-spacing:0.327600px;}
.wsaf{word-spacing:0.382200px;}
.ws13f{word-spacing:0.405000px;}
.ws5b{word-spacing:0.436800px;}
.ws14c{word-spacing:0.450000px;}
.wsd0{word-spacing:0.486000px;}
.ws86{word-spacing:0.491400px;}
.ws144{word-spacing:0.495000px;}
.ws85{word-spacing:0.546000px;}
.ws12f{word-spacing:0.585000px;}
.ws152{word-spacing:0.594000px;}
.ws45{word-spacing:0.600600px;}
.ws148{word-spacing:0.630000px;}
.wscc{word-spacing:0.655200px;}
.ws150{word-spacing:0.675000px;}
.wsfd{word-spacing:0.702000px;}
.wscd{word-spacing:0.709800px;}
.ws135{word-spacing:0.720000px;}
.ws9b{word-spacing:0.764400px;}
.ws12d{word-spacing:0.765000px;}
.wsba{word-spacing:0.819000px;}
.ws127{word-spacing:0.873600px;}
.wsf3{word-spacing:0.918000px;}
.wsca{word-spacing:0.928200px;}
.wsbd{word-spacing:0.982800px;}
.ws1b{word-spacing:1.037400px;}
.ws54{word-spacing:1.080000px;}
.ws153{word-spacing:1.134000px;}
.ws7b{word-spacing:1.146600px;}
.ws157{word-spacing:1.188000px;}
.ws99{word-spacing:1.201200px;}
.wsfe{word-spacing:1.242000px;}
.ws87{word-spacing:1.255800px;}
.ws14f{word-spacing:1.305000px;}
.ws49{word-spacing:1.365000px;}
.wsc8{word-spacing:1.419600px;}
.ws57{word-spacing:1.512000px;}
.ws101{word-spacing:1.528800px;}
.ws100{word-spacing:1.583400px;}
.wsc7{word-spacing:1.638000px;}
.ws14a{word-spacing:1.710000px;}
.ws7c{word-spacing:1.801800px;}
.ws14b{word-spacing:1.890000px;}
.wseb{word-spacing:1.911000px;}
.ws8f{word-spacing:2.184000px;}
.wsf5{word-spacing:2.226000px;}
.wscb{word-spacing:2.238600px;}
.wsea{word-spacing:2.402400px;}
.wsbc{word-spacing:2.457000px;}
.wsbe{word-spacing:2.675400px;}
.wsbb{word-spacing:2.730000px;}
.wsab{word-spacing:2.839200px;}
.wsaa{word-spacing:2.893800px;}
.wsed{word-spacing:3.003000px;}
.wsee{word-spacing:3.112200px;}
.wse9{word-spacing:3.494400px;}
.ws7e{word-spacing:3.672000px;}
.ws8e{word-spacing:3.712800px;}
.ws8d{word-spacing:3.767400px;}
.ws8c{word-spacing:3.822000px;}
.ws90{word-spacing:4.477200px;}
.ws108{word-spacing:4.914000px;}
.wsf0{word-spacing:21.492000px;}
.wsf1{word-spacing:24.246000px;}
.wse6{word-spacing:44.183994px;}
.wsdd{word-spacing:84.256195px;}
.wsde{word-spacing:94.583994px;}
.wsda{word-spacing:106.217995px;}
.wse0{word-spacing:108.317995px;}
.ws76{word-spacing:113.021997px;}
.wse7{word-spacing:119.783994px;}
.ws73{word-spacing:122.518185px;}
.ws68{word-spacing:126.209997px;}
.ws67{word-spacing:132.383985px;}
.ws6a{word-spacing:141.334185px;}
.ws63{word-spacing:146.369997px;}
.ws62{word-spacing:166.529997px;}
.wsdf{word-spacing:170.183994px;}
.wsd9{word-spacing:174.803994px;}
.ws6c{word-spacing:175.895985px;}
.ws61{word-spacing:181.990185px;}
.ws6b{word-spacing:185.219985px;}
.ws5f{word-spacing:189.209985px;}
.ws6f{word-spacing:212.225985px;}
.ws70{word-spacing:213.238185px;}
.ws72{word-spacing:216.887985px;}
.ws69{word-spacing:217.816185px;}
.ws6d{word-spacing:217.895985px;}
.wse3{word-spacing:220.583994px;}
.ws6e{word-spacing:220.835985px;}
.ws66{word-spacing:223.187985px;}
.ws71{word-spacing:234.275985px;}
.ws74{word-spacing:242.171985px;}
.ws65{word-spacing:245.069985px;}
.wse2{word-spacing:245.783994px;}
.ws75{word-spacing:256.661985px;}
.ws64{word-spacing:266.993985px;}
.wsdc{word-spacing:270.983994px;}
._21{margin-left:-25.951380px;}
._26{margin-left:-14.240815px;}
._7{margin-left:-12.944669px;}
._23{margin-left:-11.767465px;}
._22{margin-left:-10.296206px;}
._33{margin-left:-9.270000px;}
._c{margin-left:-8.259406px;}
._2f{margin-left:-7.245000px;}
._a{margin-left:-6.223470px;}
._3{margin-left:-4.941603px;}
._2{margin-left:-3.821700px;}
._6{margin-left:-2.814390px;}
._1{margin-left:-1.801950px;}
._0{width:1.728000px;}
._9{width:3.041250px;}
._8{width:4.289100px;}
._1b{width:5.395650px;}
._2e{width:6.661950px;}
._31{width:8.212500px;}
._32{width:9.375450px;}
._2d{width:10.440000px;}
._2c{width:12.960000px;}
._1f{width:15.707400px;}
._30{width:17.460001px;}
._2a{width:22.734000px;}
._2b{width:25.002000px;}
._20{width:39.039455px;}
._25{width:40.076975px;}
._24{width:41.160606px;}
._4{width:42.575638px;}
._5{width:43.811460px;}
._28{width:45.045586px;}
._b{width:47.382408px;}
._29{width:48.552157px;}
._d{width:51.028179px;}
._27{width:74.545945px;}
._1c{width:157.541992px;}
._1d{width:165.773984px;}
._18{width:176.253747px;}
._1e{width:183.203997px;}
._e{width:187.171792px;}
._12{width:196.564197px;}
._f{width:198.449984px;}
._19{width:204.577935px;}
._14{width:206.471985px;}
._13{width:207.605992px;}
._17{width:213.947985px;}
._10{width:216.971997px;}
._15{width:228.403785px;}
._11{width:234.229935px;}
._16{width:237.131997px;}
._1a{width:248.675980px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(52,152,195);}
.fse{font-size:27.300001px;}
.fs9{font-size:33.150001px;}
.fsf{font-size:35.099999px;}
.fs8{font-size:35.490000px;}
.fs4{font-size:39.000000px;}
.fsd{font-size:42.000000px;}
.fs10{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:54.600002px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fs6{font-size:66.000000px;}
.fsb{font-size:84.000000px;}
.fsc{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y31{bottom:68.307899px;}
.y125{bottom:68.547295px;}
.y196{bottom:69.298651px;}
.ye5{bottom:71.741249px;}
.y154{bottom:72.295652px;}
.y339{bottom:77.053802px;}
.y24f{bottom:77.736756px;}
.y75{bottom:78.540596px;}
.y76{bottom:78.543303px;}
.y1c2{bottom:79.315832px;}
.y215{bottom:82.101300px;}
.y30{bottom:83.307899px;}
.y124{bottom:83.548645px;}
.y195{bottom:84.300001px;}
.ye4{bottom:86.742600px;}
.y153{bottom:87.296703px;}
.y2eb{bottom:88.409566px;}
.y338{bottom:92.052302px;}
.y24e{bottom:92.738107px;}
.y74{bottom:93.541947px;}
.y8e{bottom:93.916947px;}
.y1c1{bottom:94.314331px;}
.y270{bottom:96.319496px;}
.y214{bottom:97.102650px;}
.ycb{bottom:97.734902px;}
.y2f{bottom:98.307899px;}
.y123{bottom:98.549995px;}
.y2ab{bottom:99.850800px;}
.y2ea{bottom:101.155816px;}
.ye3{bottom:101.743950px;}
.y152{bottom:102.298053px;}
.y337{bottom:107.050801px;}
.y73{bottom:108.543297px;}
.y8d{bottom:108.918297px;}
.y1c0{bottom:109.312830px;}
.y26f{bottom:111.320846px;}
.y213{bottom:112.104000px;}
.yca{bottom:112.736252px;}
.y2e{bottom:113.307899px;}
.y122{bottom:113.544899px;}
.y209{bottom:113.545945px;}
.y194{bottom:113.551496px;}
.y2e9{bottom:113.902066px;}
.y2aa{bottom:114.849299px;}
.ye2{bottom:116.743950px;}
.y151{bottom:117.299403px;}
.y336{bottom:122.049300px;}
.y8c{bottom:123.915596px;}
.y1bf{bottom:124.311330px;}
.y2e8{bottom:126.648317px;}
.y212{bottom:127.105350px;}
.yc9{bottom:127.729501px;}
.y2d{bottom:128.307899px;}
.y121{bottom:128.546249px;}
.y208{bottom:128.547295px;}
.y193{bottom:128.549995px;}
.y24d{bottom:129.115358px;}
.y2a9{bottom:129.847798px;}
.ye1{bottom:131.741249px;}
.y150{bottom:132.300753px;}
.y335{bottom:137.047799px;}
.y72{bottom:137.796298px;}
.y8b{bottom:138.916947px;}
.y1be{bottom:139.309829px;}
.y2e7{bottom:139.394567px;}
.y211{bottom:142.105350px;}
.y26e{bottom:142.606648px;}
.yc8{bottom:142.730851px;}
.y2c{bottom:143.307899px;}
.y120{bottom:143.547599px;}
.y207{bottom:143.548645px;}
.y24c{bottom:144.116708px;}
.y2a8{bottom:144.846297px;}
.ye0{bottom:146.742600px;}
.y334{bottom:152.046298px;}
.y2e6{bottom:152.140817px;}
.y71{bottom:152.794798px;}
.y8a{bottom:153.918297px;}
.y1bd{bottom:154.308328px;}
.y210{bottom:157.096187px;}
.y192{bottom:157.310396px;}
.y26d{bottom:157.607998px;}
.yc7{bottom:157.732201px;}
.y11f{bottom:158.548949px;}
.y206{bottom:158.549995px;}
.y24b{bottom:159.118058px;}
.y2a7{bottom:159.844796px;}
.ydf{bottom:161.743950px;}
.y2b{bottom:162.636898px;}
.y14f{bottom:162.876755px;}
.y2e5{bottom:164.887067px;}
.y333{bottom:167.044798px;}
.y70{bottom:167.793297px;}
.y89{bottom:168.916947px;}
.y1bc{bottom:169.306827px;}
.y191{bottom:172.311746px;}
.y26c{bottom:172.609348px;}
.yc6{bottom:172.733551px;}
.y205{bottom:173.544447px;}
.y11e{bottom:173.550300px;}
.y24a{bottom:174.119408px;}
.y2a6{bottom:174.843295px;}
.yde{bottom:176.739899px;}
.y2e4{bottom:177.633317px;}
.y14e{bottom:177.871354px;}
.y332{bottom:182.043297px;}
.y88{bottom:183.916947px;}
.y1bb{bottom:184.305326px;}
.y190{bottom:187.313096px;}
.y20f{bottom:187.672189px;}
.yc5{bottom:187.734902px;}
.y204{bottom:188.545797px;}
.y11d{bottom:188.551650px;}
.y249{bottom:189.120758px;}
.y2a5{bottom:189.841795px;}
.y2e3{bottom:190.379567px;}
.ydd{bottom:191.741249px;}
.y14d{bottom:192.872704px;}
.y2a{bottom:194.181610px;}
.y331{bottom:197.043297px;}
.y87{bottom:198.918297px;}
.y6f{bottom:200.793297px;}
.y26b{bottom:201.861298px;}
.y18f{bottom:202.314446px;}
.y20e{bottom:202.673539px;}
.yc4{bottom:202.736252px;}
.y2e2{bottom:203.125817px;}
.y203{bottom:203.547147px;}
.y248{bottom:204.122109px;}
.y2a4{bottom:204.840294px;}
.ydc{bottom:206.742600px;}
.y14c{bottom:207.874054px;}
.y29{bottom:209.182961px;}
.y85{bottom:213.916947px;}
.y86{bottom:213.918297px;}
.y1ba{bottom:214.302325px;}
.y6e{bottom:215.790596px;}
.y2e1{bottom:215.872067px;}
.y26a{bottom:216.862648px;}
.y18e{bottom:217.315796px;}
.y20d{bottom:217.674889px;}
.yc3{bottom:217.736252px;}
.y202{bottom:218.548497px;}
.y11c{bottom:219.086701px;}
.y247{bottom:219.123459px;}
.ydb{bottom:221.742600px;}
.y14b{bottom:222.875405px;}
.y28{bottom:224.184311px;}
.y330{bottom:224.298266px;}
.y2e0{bottom:228.618317px;}
.y84{bottom:228.918297px;}
.y1b9{bottom:229.300824px;}
.y6d{bottom:230.791947px;}
.y269{bottom:231.863998px;}
.y18d{bottom:232.317147px;}
.y20c{bottom:232.676239px;}
.y11b{bottom:234.088051px;}
.y246{bottom:234.111586px;}
.yda{bottom:236.738998px;}
.y32f{bottom:237.044516px;}
.y14a{bottom:237.875405px;}
.y27{bottom:239.178910px;}
.y2df{bottom:241.364568px;}
.y83{bottom:243.913345px;}
.y1b8{bottom:244.299323px;}
.y6c{bottom:245.793297px;}
.y268{bottom:246.865349px;}
.y18c{bottom:247.318497px;}
.y20b{bottom:247.677590px;}
.y11a{bottom:249.089401px;}
.y201{bottom:249.288300px;}
.y2a3{bottom:249.312898px;}
.yc2{bottom:249.451348px;}
.y32e{bottom:249.790766px;}
.y149{bottom:252.876755px;}
.y2de{bottom:254.110818px;}
.y26{bottom:254.180260px;}
.y82{bottom:258.914696px;}
.y1b7{bottom:259.297822px;}
.y6b{bottom:260.791947px;}
.y18b{bottom:262.319847px;}
.y32d{bottom:262.537017px;}
.y20a{bottom:262.678940px;}
.y119{bottom:264.089401px;}
.y200{bottom:264.289650px;}
.y2a2{bottom:264.311397px;}
.yc1{bottom:264.449848px;}
.y245{bottom:264.687588px;}
.y2dd{bottom:266.857068px;}
.y148{bottom:267.876438px;}
.y25{bottom:269.181610px;}
.yd9{bottom:273.116249px;}
.y1b6{bottom:274.296322px;}
.y32c{bottom:275.283267px;}
.y6a{bottom:275.787896px;}
.y18a{bottom:277.319847px;}
.y118{bottom:279.089401px;}
.y1ff{bottom:279.291000px;}
.y2a1{bottom:279.309896px;}
.yc0{bottom:279.448347px;}
.y2dc{bottom:279.603318px;}
.y244{bottom:279.688938px;}
.y267{bottom:283.242600px;}
.y24{bottom:284.182961px;}
.y32b{bottom:288.029517px;}
.yd8{bottom:288.117600px;}
.y1b5{bottom:289.294821px;}
.y69{bottom:290.789246px;}
.y2db{bottom:292.349568px;}
.y117{bottom:294.088332px;}
.y1fe{bottom:294.285599px;}
.y2a0{bottom:294.308396px;}
.ybf{bottom:294.446846px;}
.y243{bottom:294.690288px;}
.y81{bottom:295.291947px;}
.y266{bottom:298.243950px;}
.y147{bottom:298.452439px;}
.y23{bottom:299.182961px;}
.y32a{bottom:300.775767px;}
.yd7{bottom:303.118950px;}
.y1b4{bottom:304.293320px;}
.y2da{bottom:305.095818px;}
.y68{bottom:305.790596px;}
.y189{bottom:306.068118px;}
.y116{bottom:309.089683px;}
.y1fd{bottom:309.286950px;}
.y29f{bottom:309.306895px;}
.y242{bottom:309.691638px;}
.y80{bottom:310.293297px;}
.y265{bottom:313.239899px;}
.y146{bottom:313.453789px;}
.y329{bottom:313.522017px;}
.y216{bottom:313.678940px;}
.y22{bottom:314.182961px;}
.y2d9{bottom:317.842068px;}
.yd6{bottom:318.114899px;}
.y1b3{bottom:319.291819px;}
.y67{bottom:320.791947px;}
.y188{bottom:321.069468px;}
.ybe{bottom:323.510835px;}
.y115{bottom:324.091033px;}
.y1fc{bottom:324.288300px;}
.y241{bottom:324.692988px;}
.y7f{bottom:325.286569px;}
.y328{bottom:326.268267px;}
.y264{bottom:328.241249px;}
.y145{bottom:328.455140px;}
.y21{bottom:329.184311px;}
.y2d8{bottom:330.588318px;}
.yd5{bottom:333.116249px;}
.y66{bottom:335.793297px;}
.y187{bottom:336.070819px;}
.ybd{bottom:338.512185px;}
.y327{bottom:339.014517px;}
.y114{bottom:339.092383px;}
.y1fb{bottom:339.289650px;}
.y240{bottom:339.694339px;}
.y29e{bottom:340.059896px;}
.y7e{bottom:340.287919px;}
.y263{bottom:343.242600px;}
.y2d7{bottom:343.334568px;}
.y144{bottom:343.456490px;}
.y20{bottom:344.184311px;}
.yd4{bottom:348.117600px;}
.y1b2{bottom:350.044821px;}
.y65{bottom:350.791947px;}
.y186{bottom:351.072169px;}
.y326{bottom:351.760767px;}
.ybc{bottom:353.513535px;}
.y113{bottom:354.093733px;}
.y1fa{bottom:354.291000px;}
.y29d{bottom:355.058395px;}
.y7d{bottom:355.289269px;}
.y2d6{bottom:356.080819px;}
.y262{bottom:358.243950px;}
.y143{bottom:358.457840px;}
.y1f{bottom:359.182961px;}
.yd3{bottom:363.117600px;}
.y325{bottom:364.507018px;}
.y1b1{bottom:365.043320px;}
.y64{bottom:365.793297px;}
.y185{bottom:366.073519px;}
.ybb{bottom:368.514886px;}
.y2d5{bottom:368.827069px;}
.y1f9{bottom:369.289650px;}
.y23f{bottom:370.270340px;}
.y7c{bottom:370.290619px;}
.y141{bottom:373.440287px;}
.y142{bottom:373.457840px;}
.y1e{bottom:374.182961px;}
.y324{bottom:377.253268px;}
.yd2{bottom:378.118950px;}
.y1b0{bottom:380.041819px;}
.y63{bottom:380.793297px;}
.y184{bottom:381.074869px;}
.y2d4{bottom:381.573319px;}
.yba{bottom:383.516236px;}
.y29c{bottom:383.782523px;}
.y1f8{bottom:384.291000px;}
.y112{bottom:384.627434px;}
.y23e{bottom:385.268990px;}
.y7b{bottom:385.291969px;}
.y140{bottom:388.441637px;}
.y1d{bottom:389.182961px;}
.y323{bottom:389.999518px;}
.yd1{bottom:393.117623px;}
.y2d3{bottom:394.319569px;}
.y261{bottom:394.623475px;}
.y183{bottom:396.076220px;}
.yb9{bottom:398.517586px;}
.y29b{bottom:398.781022px;}
.y111{bottom:399.628784px;}
.y23d{bottom:400.270340px;}
.y7a{bottom:400.293320px;}
.y322{bottom:402.745768px;}
.y13f{bottom:403.442988px;}
.y1c{bottom:404.184311px;}
.y2d2{bottom:407.065819px;}
.yd0{bottom:408.118973px;}
.y260{bottom:409.621974px;}
.y1af{bottom:410.794821px;}
.y182{bottom:411.077570px;}
.yb8{bottom:413.518936px;}
.y29a{bottom:413.779521px;}
.y62{bottom:413.791969px;}
.y110{bottom:414.616632px;}
.y1f7{bottom:415.043989px;}
.y79{bottom:415.290619px;}
.y321{bottom:415.492018px;}
.y13e{bottom:418.444338px;}
.y1b{bottom:419.184311px;}
.y2d1{bottom:419.812069px;}
.y25f{bottom:424.620474px;}
.y1ae{bottom:425.793320px;}
.y181{bottom:426.078920px;}
.y320{bottom:428.238268px;}
.yb7{bottom:428.514886px;}
.y299{bottom:428.778021px;}
.y61{bottom:428.793320px;}
.y10f{bottom:429.617982px;}
.y1f6{bottom:430.042488px;}
.y78{bottom:430.291969px;}
.y23c{bottom:430.849784px;}
.y2d0{bottom:432.558319px;}
.y13d{bottom:433.445688px;}
.y25e{bottom:439.618973px;}
.y31f{bottom:440.984518px;}
.y180{bottom:441.080270px;}
.yb6{bottom:443.516236px;}
.y298{bottom:443.779521px;}
.y60{bottom:443.791969px;}
.y10e{bottom:444.619333px;}
.y1f5{bottom:445.040987px;}
.y77{bottom:445.293320px;}
.y2cf{bottom:445.304569px;}
.y23b{bottom:445.848283px;}
.y13c{bottom:448.447038px;}
.y31e{bottom:453.730768px;}
.y17f{bottom:456.081620px;}
.y2ce{bottom:458.050819px;}
.yb5{bottom:458.517586px;}
.y297{bottom:458.778021px;}
.y1ad{bottom:458.783868px;}
.y5f{bottom:458.791969px;}
.ye6{bottom:459.118973px;}
.y10d{bottom:459.620683px;}
.y1f4{bottom:460.039486px;}
.y23a{bottom:460.846782px;}
.y13b{bottom:463.448388px;}
.y31d{bottom:466.477018px;}
.y2cd{bottom:470.797070px;}
.y17e{bottom:471.082971px;}
.y25d{bottom:472.614922px;}
.yb4{bottom:473.516236px;}
.y5e{bottom:473.774417px;}
.y296{bottom:473.778021px;}
.y1ac{bottom:473.785218px;}
.y10c{bottom:474.622033px;}
.y1f3{bottom:475.037986px;}
.y239{bottom:475.845281px;}
.y13a{bottom:478.449739px;}
.y1a{bottom:478.470311px;}
.y31c{bottom:479.223269px;}
.y2cc{bottom:483.543320px;}
.y17d{bottom:486.084321px;}
.y25c{bottom:487.616272px;}
.yb3{bottom:488.517586px;}
.y5d{bottom:488.775767px;}
.y295{bottom:488.781022px;}
.y1ab{bottom:488.786569px;}
.y10b{bottom:489.623383px;}
.y1f2{bottom:490.036485px;}
.y238{bottom:490.843781px;}
.y31b{bottom:491.969519px;}
.y139{bottom:493.451089px;}
.y19{bottom:494.967311px;}
.y2cb{bottom:496.293320px;}
.yb1{bottom:496.299323px;}
.y17c{bottom:501.085671px;}
.y25b{bottom:502.617623px;}
.yb2{bottom:503.518936px;}
.y5c{bottom:503.777117px;}
.y294{bottom:503.779521px;}
.y1aa{bottom:503.787919px;}
.y10a{bottom:504.624734px;}
.y31a{bottom:504.715769px;}
.y1f1{bottom:505.034984px;}
.y138{bottom:508.452439px;}
.yb0{bottom:511.297822px;}
.y18{bottom:511.464311px;}
.y17b{bottom:516.087021px;}
.y319{bottom:517.462019px;}
.y25a{bottom:517.618973px;}
.y293{bottom:518.778021px;}
.y5b{bottom:518.778467px;}
.y1a9{bottom:518.789269px;}
.y237{bottom:518.952897px;}
.y109{bottom:519.626084px;}
.y1f0{bottom:520.033483px;}
.y137{bottom:523.453789px;}
.yaf{bottom:526.296321px;}
.y17{bottom:527.961311px;}
.y2ca{bottom:529.299320px;}
.y318{bottom:530.208269px;}
.y17a{bottom:531.088371px;}
.y259{bottom:532.618973px;}
.y292{bottom:533.779521px;}
.y5a{bottom:533.779818px;}
.y1a8{bottom:533.790619px;}
.y236{bottom:533.954247px;}
.y108{bottom:534.627434px;}
.y1ef{bottom:535.031982px;}
.y136{bottom:538.455140px;}
.yae{bottom:541.294821px;}
.y317{bottom:542.954519px;}
.y2c9{bottom:544.293320px;}
.y16{bottom:544.458311px;}
.y179{bottom:546.089722px;}
.y291{bottom:548.778021px;}
.y59{bottom:548.781168px;}
.y1a7{bottom:548.791969px;}
.y235{bottom:548.955597px;}
.y107{bottom:549.628784px;}
.y135{bottom:553.456490px;}
.ycf{bottom:554.523439px;}
.y316{bottom:555.700769px;}
.yad{bottom:556.293320px;}
.y15{bottom:560.955311px;}
.y178{bottom:561.087021px;}
.y1ee{bottom:563.282227px;}
.y290{bottom:563.778021px;}
.y58{bottom:563.782518px;}
.y1a6{bottom:563.793320px;}
.y234{bottom:563.956948px;}
.y106{bottom:564.620683px;}
.y258{bottom:565.618973px;}
.y315{bottom:568.447019px;}
.y134{bottom:568.457840px;}
.yce{bottom:569.521938px;}
.y2c8{bottom:572.044821px;}
.y177{bottom:576.088371px;}
.y14{bottom:577.452311px;}
.y1ed{bottom:578.283578px;}
.y1a5{bottom:578.774820px;}
.y28f{bottom:578.779521px;}
.y57{bottom:578.783868px;}
.y233{bottom:578.958298px;}
.y105{bottom:579.622033px;}
.y257{bottom:580.609521px;}
.y314{bottom:581.193269px;}
.y133{bottom:583.460269px;}
.ycd{bottom:584.520437px;}
.yac{bottom:586.393771px;}
.y2c7{bottom:587.043320px;}
.y176{bottom:591.089722px;}
.y1ec{bottom:593.284928px;}
.y1a4{bottom:593.776171px;}
.y28e{bottom:593.778021px;}
.y56{bottom:593.785218px;}
.y313{bottom:593.939520px;}
.y13{bottom:593.949311px;}
.y232{bottom:593.956948px;}
.y104{bottom:594.623383px;}
.y256{bottom:595.610871px;}
.ycc{bottom:599.518936px;}
.y2c6{bottom:602.043320px;}
.yab{bottom:603.834271px;}
.y175{bottom:606.089722px;}
.y312{bottom:606.685770px;}
.y1eb{bottom:608.286278px;}
.y28d{bottom:608.776520px;}
.y1a3{bottom:608.777521px;}
.y55{bottom:608.786569px;}
.y231{bottom:608.933060px;}
.y103{bottom:609.624734px;}
.y12{bottom:610.446311px;}
.y255{bottom:610.612222px;}
.y132{bottom:614.036271px;}
.y311{bottom:619.432020px;}
.y174{bottom:621.082047px;}
.yaa{bottom:621.274771px;}
.y1ea{bottom:623.287628px;}
.y1a2{bottom:623.778871px;}
.y54{bottom:623.787919px;}
.y230{bottom:623.934411px;}
.y102{bottom:624.626084px;}
.y254{bottom:625.613572px;}
.y11{bottom:626.943311px;}
.y131{bottom:629.037621px;}
.y310{bottom:632.178270px;}
.y2c5{bottom:635.043320px;}
.y173{bottom:636.083397px;}
.y28c{bottom:637.511107px;}
.y1e9{bottom:638.287628px;}
.ya9{bottom:638.715271px;}
.y1a1{bottom:638.780221px;}
.y53{bottom:638.789269px;}
.y22f{bottom:638.935761px;}
.y101{bottom:639.627434px;}
.y253{bottom:640.614922px;}
.y10{bottom:643.440311px;}
.y130{bottom:644.038971px;}
.y30f{bottom:644.924520px;}
.y2c4{bottom:650.037919px;}
.y28b{bottom:652.509606px;}
.y1e8{bottom:653.287628px;}
.y52{bottom:653.790619px;}
.y22e{bottom:653.937111px;}
.y100{bottom:654.628784px;}
.y252{bottom:655.616272px;}
.ya8{bottom:656.155771px;}
.y30e{bottom:657.670770px;}
.y12f{bottom:659.026819px;}
.yf{bottom:659.937311px;}
.y2c3{bottom:665.039269px;}
.y172{bottom:667.437447px;}
.y28a{bottom:667.508106px;}
.y51{bottom:668.791969px;}
.yff{bottom:669.627434px;}
.y30d{bottom:670.417020px;}
.y251{bottom:670.617623px;}
.ya7{bottom:673.596271px;}
.y12e{bottom:674.028169px;}
.y1a0{bottom:675.157472px;}
.ye{bottom:676.434311px;}
.y2c2{bottom:680.040619px;}
.y34f{bottom:680.806781px;}
.y171{bottom:682.438797px;}
.y289{bottom:682.506605px;}
.y30c{bottom:683.163270px;}
.y50{bottom:683.791969px;}
.y22d{bottom:684.513112px;}
.yfe{bottom:684.628784px;}
.y250{bottom:685.618973px;}
.y12d{bottom:689.029519px;}
.y19f{bottom:690.158822px;}
.ya6{bottom:691.036771px;}
.y2c1{bottom:695.041969px;}
.y34e{bottom:695.805280px;}
.y30b{bottom:695.909520px;}
.y1e7{bottom:697.317287px;}
.y170{bottom:697.440148px;}
.y288{bottom:697.505104px;}
.y4f{bottom:698.793320px;}
.y22c{bottom:699.514462px;}
.yfd{bottom:699.625946px;}
.y12c{bottom:704.030870px;}
.y19e{bottom:705.160173px;}
.ya5{bottom:708.477272px;}
.y30a{bottom:708.655771px;}
.y2c0{bottom:710.043320px;}
.y34d{bottom:710.803780px;}
.y1e6{bottom:712.315786px;}
.yc{bottom:712.434310px;}
.y16f{bottom:712.438797px;}
.y287{bottom:712.503603px;}
.y4e{bottom:713.789269px;}
.y22b{bottom:714.515813px;}
.yfc{bottom:714.627297px;}
.yd{bottom:717.534302px;}
.y12b{bottom:719.032220px;}
.y19d{bottom:720.161523px;}
.y309{bottom:721.402021px;}
.y2bf{bottom:725.053780px;}
.y34c{bottom:725.802279px;}
.ya4{bottom:725.917772px;}
.y1e5{bottom:727.314285px;}
.y16e{bottom:727.440148px;}
.y286{bottom:727.502102px;}
.y4d{bottom:728.790619px;}
.y22a{bottom:729.517163px;}
.yfb{bottom:729.628647px;}
.ya{bottom:730.434310px;}
.y12a{bottom:734.033570px;}
.y308{bottom:734.148271px;}
.y19c{bottom:735.162873px;}
.yb{bottom:735.534302px;}
.y272{bottom:736.620474px;}
.y2be{bottom:740.052279px;}
.y34b{bottom:740.800778px;}
.y1e4{bottom:742.312785px;}
.y16d{bottom:742.441498px;}
.y285{bottom:742.500602px;}
.ya3{bottom:743.358272px;}
.y4c{bottom:743.791969px;}
.y229{bottom:744.518513px;}
.yfa{bottom:744.630278px;}
.y307{bottom:746.894521px;}
.y8{bottom:748.434311px;}
.y129{bottom:749.034920px;}
.y19b{bottom:750.164223px;}
.y271{bottom:751.618973px;}
.y9{bottom:753.534302px;}
.y2bd{bottom:755.050778px;}
.y34a{bottom:755.799277px;}
.y1e3{bottom:757.311284px;}
.y16c{bottom:757.441498px;}
.y284{bottom:757.499101px;}
.y4b{bottom:758.791924px;}
.y228{bottom:759.519863px;}
.y306{bottom:759.640771px;}
.ya2{bottom:760.798772px;}
.y128{bottom:764.036271px;}
.y19a{bottom:765.165573px;}
.y2bc{bottom:770.049277px;}
.y349{bottom:770.797776px;}
.y1e2{bottom:772.309783px;}
.y305{bottom:772.387021px;}
.y16b{bottom:772.420321px;}
.y283{bottom:772.497600px;}
.y4a{bottom:773.790573px;}
.y227{bottom:774.521214px;}
.yf9{bottom:775.165329px;}
.ya1{bottom:778.239272px;}
.y127{bottom:779.037621px;}
.y199{bottom:780.166924px;}
.y7{bottom:781.416260px;}
.y2bb{bottom:785.047776px;}
.y304{bottom:785.133271px;}
.y348{bottom:785.796276px;}
.y1e1{bottom:787.308282px;}
.y16a{bottom:787.421671px;}
.y282{bottom:787.496099px;}
.y49{bottom:788.791924px;}
.y226{bottom:789.522564px;}
.yf8{bottom:790.166680px;}
.y126{bottom:794.038971px;}
.y198{bottom:795.168274px;}
.ya0{bottom:795.679772px;}
.y303{bottom:797.879521px;}
.y2ba{bottom:800.046276px;}
.y347{bottom:800.794775px;}
.y1e0{bottom:802.306781px;}
.y169{bottom:802.423021px;}
.y281{bottom:802.494598px;}
.y48{bottom:803.791924px;}
.y225{bottom:804.523914px;}
.yf7{bottom:805.165329px;}
.y197{bottom:810.168274px;}
.y302{bottom:810.625771px;}
.y9f{bottom:813.120272px;}
.y2b9{bottom:815.044775px;}
.y346{bottom:815.793274px;}
.y1df{bottom:817.305281px;}
.y47{bottom:818.790573px;}
.y224{bottom:819.525264px;}
.yf6{bottom:820.166680px;}
.y301{bottom:823.372022px;}
.y6{bottom:826.422262px;}
.y2b8{bottom:830.043274px;}
.y9e{bottom:830.560772px;}
.y280{bottom:831.212677px;}
.y1de{bottom:832.303780px;}
.y168{bottom:833.777071px;}
.y46{bottom:833.791924px;}
.yf5{bottom:835.163979px;}
.y300{bottom:836.118272px;}
.y345{bottom:837.547776px;}
.y158{bottom:845.043473px;}
.y27f{bottom:846.209977px;}
.y1dd{bottom:847.302279px;}
.y9d{bottom:848.001272px;}
.y167{bottom:848.778422px;}
.y45{bottom:848.793274px;}
.y2ff{bottom:848.864522px;}
.y223{bottom:850.101266px;}
.yf4{bottom:850.165329px;}
.y344{bottom:852.546276px;}
.y157{bottom:860.041973px;}
.y1cf{bottom:861.168274px;}
.y27e{bottom:861.211327px;}
.y2fe{bottom:861.610772px;}
.y166{bottom:863.779772px;}
.y44{bottom:863.791924px;}
.y222{bottom:865.102616px;}
.yf3{bottom:865.166680px;}
.y9c{bottom:865.441773px;}
.y32{bottom:871.199432px;}
.y5{bottom:871.428264px;}
.y343{bottom:874.294775px;}
.y2fd{bottom:874.357022px;}
.y156{bottom:875.040472px;}
.y27d{bottom:876.212677px;}
.y1dc{bottom:878.055280px;}
.y165{bottom:878.781122px;}
.y43{bottom:878.787873px;}
.y2b7{bottom:878.809783px;}
.y221{bottom:880.103966px;}
.yf2{bottom:880.168030px;}
.y9b{bottom:882.882273px;}
.y2fc{bottom:887.103272px;}
.y155{bottom:890.038971px;}
.y27c{bottom:891.211327px;}
.y1ce{bottom:891.397770px;}
.y1db{bottom:893.053780px;}
.y164{bottom:893.782472px;}
.y42{bottom:893.789223px;}
.y2b6{bottom:893.808282px;}
.y220{bottom:895.105316px;}
.yf1{bottom:895.165329px;}
.y342{bottom:896.043274px;}
.y2fb{bottom:899.849522px;}
.y9a{bottom:900.322773px;}
.y27b{bottom:906.211327px;}
.y1da{bottom:908.052279px;}
.y163{bottom:908.783822px;}
.y41{bottom:908.790573px;}
.y2b5{bottom:908.806781px;}
.y1cd{bottom:908.838270px;}
.y21f{bottom:910.111319px;}
.yf0{bottom:910.166680px;}
.y341{bottom:911.043274px;}
.y2fa{bottom:912.595772px;}
.y1cc{bottom:914.455770px;}
.y4{bottom:916.434265px;}
.y99{bottom:917.763273px;}
.y27a{bottom:921.214519px;}
.y1d9{bottom:923.050778px;}
.y162{bottom:923.785173px;}
.y40{bottom:923.791924px;}
.y2b4{bottom:923.805280px;}
.y21e{bottom:925.109819px;}
.yef{bottom:925.163979px;}
.y2f9{bottom:925.342022px;}
.y33{bottom:926.409576px;}
.y98{bottom:935.203773px;}
.y279{bottom:936.215869px;}
.y1d8{bottom:938.049277px;}
.y2f8{bottom:938.088273px;}
.y161{bottom:938.786523px;}
.y3f{bottom:938.793274px;}
.y2b3{bottom:938.803780px;}
.y21d{bottom:940.108318px;}
.yee{bottom:940.165329px;}
.y1cb{bottom:943.141771px;}
.y340{bottom:944.793274px;}
.y1ca{bottom:948.759271px;}
.y2f7{bottom:950.834523px;}
.y278{bottom:951.217219px;}
.y97{bottom:952.644273px;}
.y1d7{bottom:953.047776px;}
.y160{bottom:953.787873px;}
.y3e{bottom:953.791924px;}
.y2b2{bottom:953.802279px;}
.y21c{bottom:955.106817px;}
.yed{bottom:955.166680px;}
.y33f{bottom:959.793274px;}
.y2f6{bottom:963.580773px;}
.y1d6{bottom:968.046276px;}
.y15f{bottom:968.789223px;}
.y3d{bottom:968.793274px;}
.y2b1{bottom:968.800778px;}
.y96{bottom:970.084773px;}
.y21b{bottom:970.105316px;}
.yec{bottom:970.168030px;}
.y2f5{bottom:976.327023px;}
.y1c9{bottom:977.445272px;}
.y277{bottom:982.503021px;}
.y1d5{bottom:983.044775px;}
.y15e{bottom:983.790573px;}
.y3c{bottom:983.791924px;}
.y2b0{bottom:983.799277px;}
.y33e{bottom:986.793274px;}
.y95{bottom:987.525273px;}
.y2f4{bottom:989.073273px;}
.y1c8{bottom:994.885772px;}
.y276{bottom:997.500321px;}
.y1d4{bottom:998.046276px;}
.y21a{bottom:998.211872px;}
.y15d{bottom:998.791924px;}
.y3b{bottom:998.793274px;}
.y2af{bottom:998.797776px;}
.yeb{bottom:1000.711961px;}
.y33d{bottom:1001.793274px;}
.y2f3{bottom:1001.819523px;}
.y94{bottom:1004.965773px;}
.y1c7{bottom:1006.131272px;}
.y275{bottom:1012.501671px;}
.y1d3{bottom:1013.044775px;}
.y219{bottom:1013.213222px;}
.y3a{bottom:1013.789223px;}
.y15c{bottom:1013.793274px;}
.y2ae{bottom:1013.796276px;}
.y2f2{bottom:1014.565773px;}
.yea{bottom:1015.710460px;}
.y93{bottom:1022.406273px;}
.y2f1{bottom:1027.312023px;}
.y274{bottom:1027.503021px;}
.y1d2{bottom:1028.043274px;}
.y218{bottom:1028.214572px;}
.y39{bottom:1028.790573px;}
.y15b{bottom:1028.791924px;}
.y2ad{bottom:1028.794775px;}
.y33c{bottom:1028.797776px;}
.ye9{bottom:1030.708959px;}
.y1c6{bottom:1034.817273px;}
.y92{bottom:1039.846774px;}
.y2f0{bottom:1040.058273px;}
.y1c5{bottom:1040.434772px;}
.y273{bottom:1042.507472px;}
.y38{bottom:1043.791924px;}
.y15a{bottom:1043.793274px;}
.y2ac{bottom:1043.794775px;}
.y33b{bottom:1043.796276px;}
.ye8{bottom:1045.707458px;}
.y2ef{bottom:1052.804524px;}
.y91{bottom:1057.287274px;}
.y217{bottom:1058.790573px;}
.y159{bottom:1058.791924px;}
.y37{bottom:1058.793274px;}
.y33a{bottom:1058.794775px;}
.y1d1{bottom:1058.796276px;}
.y1c4{bottom:1063.492773px;}
.y2ee{bottom:1065.550774px;}
.y1c3{bottom:1069.110273px;}
.ye7{bottom:1073.791924px;}
.y36{bottom:1073.793274px;}
.y1d0{bottom:1073.794775px;}
.y90{bottom:1074.727774px;}
.y2ed{bottom:1078.297024px;}
.y35{bottom:1088.793274px;}
.y2ec{bottom:1091.043274px;}
.y8f{bottom:1092.168274px;}
.y34{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.h11{height:23.842749px;}
.h9{height:28.050293px;}
.h2f{height:28.485352px;}
.h37{height:35.394000px;}
.h14{height:36.681152px;}
.hc{height:38.838867px;}
.h31{height:39.900000px;}
.h12{height:41.158746px;}
.h8{height:41.399963px;}
.h1f{height:41.538000px;}
.h2e{height:42.084000px;}
.h20{height:43.008000px;}
.h2{height:43.140000px;}
.hb{height:43.154297px;}
.h1e{height:43.344000px;}
.h4{height:44.218500px;}
.h3a{height:44.505000px;}
.h38{height:45.090000px;}
.h3{height:45.744000px;}
.h39{height:46.080000px;}
.hd{height:47.469727px;}
.ha{height:48.450259px;}
.h13{height:52.608000px;}
.h36{height:53.387990px;}
.h1c{height:53.406000px;}
.he{height:53.999402px;}
.h26{height:54.003678px;}
.hf{height:54.004803px;}
.h19{height:54.010204px;}
.h28{height:54.010227px;}
.h17{height:54.015605px;}
.h1d{height:54.019208px;}
.h27{height:54.019789px;}
.h18{height:54.021006px;}
.h33{height:54.021597px;}
.h23{height:54.026407px;}
.h2a{height:54.030103px;}
.h35{height:54.037208px;}
.h25{height:54.048010px;}
.h2b{height:54.073400px;}
.h1a{height:54.075014px;}
.h29{height:54.084111px;}
.h32{height:54.095993px;}
.h34{height:54.100352px;}
.h22{height:54.108000px;}
.h10{height:54.709202px;}
.h1b{height:54.714603px;}
.h24{height:54.720004px;}
.h21{height:55.296000px;}
.h15{height:60.416016px;}
.h7{height:61.799927px;}
.h2c{height:64.050000px;}
.h30{height:64.596000px;}
.h16{height:71.928000px;}
.h2d{height:86.519999px;}
.h5{height:112.201172px;}
.h6{height:149.760000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:23.780700px;}
.x2{left:61.191450px;}
.xd{left:140.952747px;}
.x4{left:233.456406px;}
.xf{left:238.143745px;}
.xb{left:251.459557px;}
.x15{left:254.463001px;}
.x11{left:260.452809px;}
.x12{left:280.702791px;}
.x17{left:300.594589px;}
.x9{left:362.744110px;}
.x13{left:372.470398px;}
.xa{left:485.927856px;}
.x5{left:528.800995px;}
.x7{left:566.678696px;}
.x3{left:604.783493px;}
.x8{left:674.146042px;}
.x6{left:698.968781px;}
.x14{left:816.003571px;}
.x16{left:817.278168px;}
.x10{left:824.207428px;}
.x1{left:825.232819px;}
.xe{left:831.956726px;}
@media print{
.v4{vertical-align:-18.133366pt;}
.v6{vertical-align:-16.501302pt;}
.v7{vertical-align:-15.413330pt;}
.v3{vertical-align:-3.200033pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:12.784000pt;}
.v2{vertical-align:14.933268pt;}
.v5{vertical-align:16.506103pt;}
.v1{vertical-align:18.133301pt;}
.v9{vertical-align:20.010667pt;}
.va{vertical-align:39.983999pt;}
.ls1a{letter-spacing:-8.160000pt;}
.lsa0{letter-spacing:-4.804800pt;}
.ls5b{letter-spacing:-4.320000pt;}
.ls5a{letter-spacing:-3.808000pt;}
.ls74{letter-spacing:-3.504000pt;}
.ls92{letter-spacing:-1.978667pt;}
.ls55{letter-spacing:-1.530667pt;}
.ls8f{letter-spacing:-1.488000pt;}
.ls51{letter-spacing:-1.456000pt;}
.lsa3{letter-spacing:-1.407467pt;}
.ls47{letter-spacing:-1.344000pt;}
.ls8e{letter-spacing:-1.248000pt;}
.ls53{letter-spacing:-1.194667pt;}
.lsba{letter-spacing:-1.160000pt;}
.ls8d{letter-spacing:-1.152000pt;}
.ls64{letter-spacing:-1.116267pt;}
.lsa5{letter-spacing:-1.067733pt;}
.ls46{letter-spacing:-1.056000pt;}
.lsb1{letter-spacing:-1.008000pt;}
.ls88{letter-spacing:-0.970667pt;}
.ls44{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.922133pt;}
.ls3a{letter-spacing:-0.873600pt;}
.ls45{letter-spacing:-0.864000pt;}
.ls50{letter-spacing:-0.858667pt;}
.ls48{letter-spacing:-0.825067pt;}
.ls8c{letter-spacing:-0.816000pt;}
.ls3e{letter-spacing:-0.776533pt;}
.ls49{letter-spacing:-0.728000pt;}
.lsb6{letter-spacing:-0.720000pt;}
.ls91{letter-spacing:-0.709333pt;}
.ls1b{letter-spacing:-0.679467pt;}
.ls7f{letter-spacing:-0.672000pt;}
.lsb2{letter-spacing:-0.655200pt;}
.lscd{letter-spacing:-0.640000pt;}
.ls59{letter-spacing:-0.634667pt;}
.ls1f{letter-spacing:-0.630933pt;}
.ls9f{letter-spacing:-0.624000pt;}
.lsb4{letter-spacing:-0.600000pt;}
.ls3f{letter-spacing:-0.582400pt;}
.lsca{letter-spacing:-0.560000pt;}
.ls3d{letter-spacing:-0.533867pt;}
.lsa8{letter-spacing:-0.528000pt;}
.ls52{letter-spacing:-0.522667pt;}
.lsbb{letter-spacing:-0.520000pt;}
.ls3c{letter-spacing:-0.485333pt;}
.ls7e{letter-spacing:-0.480000pt;}
.ls58{letter-spacing:-0.448000pt;}
.lsb9{letter-spacing:-0.440000pt;}
.ls20{letter-spacing:-0.436800pt;}
.ls5d{letter-spacing:-0.432000pt;}
.lscb{letter-spacing:-0.400000pt;}
.ls1d{letter-spacing:-0.388267pt;}
.ls5e{letter-spacing:-0.384000pt;}
.lscf{letter-spacing:-0.360000pt;}
.ls40{letter-spacing:-0.339733pt;}
.lsbc{letter-spacing:-0.320000pt;}
.ls4f{letter-spacing:-0.298667pt;}
.ls27{letter-spacing:-0.291200pt;}
.ls99{letter-spacing:-0.288000pt;}
.lsb5{letter-spacing:-0.280000pt;}
.ls33{letter-spacing:-0.242667pt;}
.ls9d{letter-spacing:-0.240000pt;}
.ls9c{letter-spacing:-0.213333pt;}
.ls37{letter-spacing:-0.194133pt;}
.ls5c{letter-spacing:-0.192000pt;}
.ls35{letter-spacing:-0.189280pt;}
.ls90{letter-spacing:-0.186667pt;}
.ls84{letter-spacing:-0.160000pt;}
.ls54{letter-spacing:-0.149333pt;}
.ls43{letter-spacing:-0.145600pt;}
.ls73{letter-spacing:-0.144000pt;}
.ls38{letter-spacing:-0.126187pt;}
.lscc{letter-spacing:-0.120000pt;}
.lsa6{letter-spacing:-0.106667pt;}
.ls24{letter-spacing:-0.097067pt;}
.ls72{letter-spacing:-0.096000pt;}
.lsa4{letter-spacing:-0.094640pt;}
.lsbe{letter-spacing:-0.080000pt;}
.ls34{letter-spacing:-0.063093pt;}
.lsb0{letter-spacing:-0.062400pt;}
.lsac{letter-spacing:-0.053333pt;}
.ls1e{letter-spacing:-0.048533pt;}
.ls98{letter-spacing:-0.048000pt;}
.lsb7{letter-spacing:-0.040000pt;}
.ls63{letter-spacing:-0.031547pt;}
.ls19{letter-spacing:0.000000pt;}
.ls93{letter-spacing:0.000074pt;}
.ls5{letter-spacing:0.011754pt;}
.ls6{letter-spacing:0.012242pt;}
.lsf{letter-spacing:0.029596pt;}
.lse{letter-spacing:0.029759pt;}
.ls79{letter-spacing:0.031547pt;}
.ls7{letter-spacing:0.034032pt;}
.ls2{letter-spacing:0.034047pt;}
.lsd0{letter-spacing:0.040000pt;}
.lsd{letter-spacing:0.045333pt;}
.ls67{letter-spacing:0.048000pt;}
.ls96{letter-spacing:0.048529pt;}
.ls21{letter-spacing:0.048533pt;}
.ls87{letter-spacing:0.053333pt;}
.ls30{letter-spacing:0.063091pt;}
.ls2f{letter-spacing:0.063093pt;}
.ls15{letter-spacing:0.068170pt;}
.lsab{letter-spacing:0.093600pt;}
.ls77{letter-spacing:0.094640pt;}
.ls8b{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.097067pt;}
.lsc7{letter-spacing:0.100000pt;}
.ls56{letter-spacing:0.112000pt;}
.lsc1{letter-spacing:0.120000pt;}
.ls29{letter-spacing:0.136000pt;}
.ls66{letter-spacing:0.144000pt;}
.ls26{letter-spacing:0.145600pt;}
.lsaa{letter-spacing:0.156000pt;}
.lsbf{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.186667pt;}
.ls41{letter-spacing:0.189280pt;}
.ls94{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.194133pt;}
.lsb3{letter-spacing:0.200000pt;}
.ls12{letter-spacing:0.212132pt;}
.ls13{letter-spacing:0.212213pt;}
.ls6d{letter-spacing:0.213333pt;}
.ls80{letter-spacing:0.220827pt;}
.ls6f{letter-spacing:0.240000pt;}
.ls4e{letter-spacing:0.242667pt;}
.lsa9{letter-spacing:0.249600pt;}
.ls39{letter-spacing:0.252373pt;}
.lsa1{letter-spacing:0.283920pt;}
.ls2e{letter-spacing:0.283922pt;}
.lsa7{letter-spacing:0.288000pt;}
.ls2c{letter-spacing:0.291200pt;}
.ls5f{letter-spacing:0.336000pt;}
.ls42{letter-spacing:0.339733pt;}
.lsc2{letter-spacing:0.343951pt;}
.lsc6{letter-spacing:0.360000pt;}
.ls14{letter-spacing:0.362667pt;}
.ls65{letter-spacing:0.373333pt;}
.ls9e{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.388267pt;}
.lsad{letter-spacing:0.400000pt;}
.ls36{letter-spacing:0.410107pt;}
.lsc0{letter-spacing:0.419961pt;}
.ls11{letter-spacing:0.423802pt;}
.ls95{letter-spacing:0.432000pt;}
.ls78{letter-spacing:0.436800pt;}
.lsbd{letter-spacing:0.440000pt;}
.lsc3{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.485333pt;}
.lsc4{letter-spacing:0.520000pt;}
.ls6e{letter-spacing:0.528000pt;}
.ls22{letter-spacing:0.533867pt;}
.ls71{letter-spacing:0.558061pt;}
.lsaf{letter-spacing:0.560000pt;}
.lsd2{letter-spacing:0.576000pt;}
.ls28{letter-spacing:0.582400pt;}
.ls3b{letter-spacing:0.599387pt;}
.lsc9{letter-spacing:0.600000pt;}
.lsd3{letter-spacing:0.624000pt;}
.ls2d{letter-spacing:0.630933pt;}
.lsb8{letter-spacing:0.640000pt;}
.lsae{letter-spacing:0.652062pt;}
.ls9a{letter-spacing:0.672000pt;}
.ls6c{letter-spacing:0.679467pt;}
.ls10{letter-spacing:0.680000pt;}
.ls69{letter-spacing:0.728000pt;}
.ls7b{letter-spacing:0.776533pt;}
.ls16{letter-spacing:0.779596pt;}
.lsd5{letter-spacing:0.816000pt;}
.ls8{letter-spacing:0.825067pt;}
.lsce{letter-spacing:0.840000pt;}
.lsd1{letter-spacing:0.864000pt;}
.lsc{letter-spacing:0.871230pt;}
.lsa{letter-spacing:0.871311pt;}
.ls4a{letter-spacing:0.873600pt;}
.ls32{letter-spacing:0.922133pt;}
.lsc8{letter-spacing:0.960000pt;}
.ls9b{letter-spacing:0.970667pt;}
.ls6a{letter-spacing:1.019200pt;}
.ls4b{letter-spacing:1.067733pt;}
.ls7d{letter-spacing:1.116267pt;}
.ls81{letter-spacing:1.164800pt;}
.ls62{letter-spacing:1.213333pt;}
.ls17{letter-spacing:1.224000pt;}
.ls6b{letter-spacing:1.310400pt;}
.lsc5{letter-spacing:1.336008pt;}
.ls7a{letter-spacing:1.358933pt;}
.lsb{letter-spacing:1.360000pt;}
.ls7c{letter-spacing:1.407467pt;}
.ls70{letter-spacing:1.456000pt;}
.ls85{letter-spacing:1.504533pt;}
.ls83{letter-spacing:1.553067pt;}
.ls86{letter-spacing:1.553068pt;}
.ls89{letter-spacing:1.601600pt;}
.ls18{letter-spacing:1.677333pt;}
.ls82{letter-spacing:1.698667pt;}
.ls61{letter-spacing:1.747200pt;}
.ls60{letter-spacing:1.795733pt;}
.ls68{letter-spacing:2.038400pt;}
.ls0{letter-spacing:2.304000pt;}
.ls2b{letter-spacing:2.400000pt;}
.ls76{letter-spacing:2.426667pt;}
.ls1{letter-spacing:2.460000pt;}
.ls2a{letter-spacing:2.762667pt;}
.ls75{letter-spacing:3.834133pt;}
.lsa2{letter-spacing:4.106667pt;}
.lsd4{letter-spacing:4.373333pt;}
.ls8a{letter-spacing:4.707734pt;}
.ls97{letter-spacing:5.440000pt;}
.ls3{letter-spacing:38.348789pt;}
.ls4{letter-spacing:38.377083pt;}
.ls4d{letter-spacing:79.706669pt;}
.ls4c{letter-spacing:122.117327pt;}
.ws5{word-spacing:-37.013333pt;}
.ws94{word-spacing:-30.430401pt;}
.ws93{word-spacing:-30.139201pt;}
.ws92{word-spacing:-29.653868pt;}
.ws96{word-spacing:-29.605335pt;}
.wsa1{word-spacing:-29.265601pt;}
.wsf8{word-spacing:-29.232000pt;}
.ws5d{word-spacing:-29.217068pt;}
.ws9e{word-spacing:-29.120001pt;}
.ws95{word-spacing:-28.925868pt;}
.wsd5{word-spacing:-28.800000pt;}
.wsc0{word-spacing:-28.634668pt;}
.ws11e{word-spacing:-27.936000pt;}
.wse5{word-spacing:-22.400000pt;}
.ws3{word-spacing:-13.393333pt;}
.ws27{word-spacing:-13.066667pt;}
.wsd4{word-spacing:-12.812801pt;}
.wsc2{word-spacing:-12.230401pt;}
.ws11f{word-spacing:-12.085333pt;}
.wsd2{word-spacing:-12.036267pt;}
.wsc5{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.939200pt;}
.wsd3{word-spacing:-11.842134pt;}
.wsc4{word-spacing:-11.648000pt;}
.wsa4{word-spacing:-11.599467pt;}
.ws37{word-spacing:-11.502400pt;}
.ws5c{word-spacing:-11.453867pt;}
.wsf6{word-spacing:-11.424000pt;}
.ws39{word-spacing:-11.405334pt;}
.wsc3{word-spacing:-11.356800pt;}
.wsb{word-spacing:-11.308267pt;}
.ws9{word-spacing:-11.259734pt;}
.wsa2{word-spacing:-11.211200pt;}
.ws40{word-spacing:-11.162667pt;}
.ws33{word-spacing:-11.114134pt;}
.wsf7{word-spacing:-11.088000pt;}
.ws3c{word-spacing:-11.065600pt;}
.ws111{word-spacing:-11.040000pt;}
.ws8{word-spacing:-11.017067pt;}
.ws77{word-spacing:-10.992000pt;}
.ws38{word-spacing:-10.968534pt;}
.ws34{word-spacing:-10.920000pt;}
.ws3f{word-spacing:-10.896000pt;}
.ws80{word-spacing:-10.871467pt;}
.ws9c{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.wsc{word-spacing:-10.822934pt;}
.wsb9{word-spacing:-10.800000pt;}
.wsa0{word-spacing:-10.774400pt;}
.ws2a{word-spacing:-10.725867pt;}
.ws35{word-spacing:-10.677334pt;}
.ws32{word-spacing:-10.628800pt;}
.ws78{word-spacing:-10.608000pt;}
.ws3b{word-spacing:-10.580267pt;}
.ws102{word-spacing:-10.560000pt;}
.ws3a{word-spacing:-10.531734pt;}
.wsb7{word-spacing:-10.512000pt;}
.ws104{word-spacing:-10.483200pt;}
.ws28{word-spacing:-10.434667pt;}
.ws154{word-spacing:-10.416000pt;}
.ws41{word-spacing:-10.386134pt;}
.ws103{word-spacing:-10.368000pt;}
.ws36{word-spacing:-10.337600pt;}
.wsb8{word-spacing:-10.320000pt;}
.wsd{word-spacing:-10.290667pt;}
.ws2f{word-spacing:-10.240534pt;}
.ws5e{word-spacing:-10.094934pt;}
.ws3e{word-spacing:-10.032000pt;}
.ws6{word-spacing:-9.888000pt;}
.wsd7{word-spacing:-9.840000pt;}
.ws13d{word-spacing:-9.680000pt;}
.ws10d{word-spacing:-9.609600pt;}
.ws138{word-spacing:-9.600000pt;}
.wsd8{word-spacing:-9.504000pt;}
.ws122{word-spacing:-9.280000pt;}
.ws13c{word-spacing:-9.200000pt;}
.ws139{word-spacing:-9.160000pt;}
.ws120{word-spacing:-9.080000pt;}
.wse{word-spacing:-9.066667pt;}
.ws13a{word-spacing:-9.000000pt;}
.ws121{word-spacing:-8.920000pt;}
.ws137{word-spacing:-8.880000pt;}
.ws123{word-spacing:-8.800000pt;}
.ws1{word-spacing:-8.789333pt;}
.ws125{word-spacing:-8.680000pt;}
.ws132{word-spacing:-8.600000pt;}
.ws13b{word-spacing:-8.560000pt;}
.wse1{word-spacing:-8.549333pt;}
.ws2{word-spacing:-8.533333pt;}
.wse4{word-spacing:-8.400000pt;}
.ws124{word-spacing:-8.000000pt;}
.wsdb{word-spacing:-7.914667pt;}
.ws31{word-spacing:-7.760480pt;}
.ws2c{word-spacing:-7.571200pt;}
.ws105{word-spacing:-7.445013pt;}
.ws2e{word-spacing:-7.413467pt;}
.ws9d{word-spacing:-7.392000pt;}
.wsc1{word-spacing:-7.381920pt;}
.wse8{word-spacing:-7.354667pt;}
.ws3d{word-spacing:-7.350373pt;}
.ws10f{word-spacing:-7.332000pt;}
.ws9f{word-spacing:-7.255733pt;}
.ws110{word-spacing:-7.238400pt;}
.ws30{word-spacing:-7.224187pt;}
.wsa3{word-spacing:-7.192640pt;}
.ws112{word-spacing:-7.176000pt;}
.ws7{word-spacing:-7.161093pt;}
.ws4{word-spacing:-7.141333pt;}
.ws81{word-spacing:-7.129547pt;}
.ws29{word-spacing:-7.098000pt;}
.ws10a{word-spacing:-7.082400pt;}
.ws10e{word-spacing:-7.066453pt;}
.ws2d{word-spacing:-7.034907pt;}
.ws11c{word-spacing:-7.020000pt;}
.ws2b{word-spacing:-6.971813pt;}
.ws11d{word-spacing:-6.427200pt;}
.wsf9{word-spacing:-5.440000pt;}
.ws60{word-spacing:-5.265867pt;}
.wscf{word-spacing:-4.896000pt;}
.wsec{word-spacing:-4.707734pt;}
.ws155{word-spacing:-4.373333pt;}
.ws10b{word-spacing:-4.106667pt;}
.wsac{word-spacing:-3.834133pt;}
.wsc6{word-spacing:-3.203200pt;}
.wsd6{word-spacing:-2.928000pt;}
.ws26{word-spacing:-2.762667pt;}
.wsad{word-spacing:-2.426667pt;}
.ws151{word-spacing:-2.160000pt;}
.ws59{word-spacing:-2.086933pt;}
.ws20{word-spacing:-1.994667pt;}
.ws5a{word-spacing:-1.941333pt;}
.wsf2{word-spacing:-1.920000pt;}
.ws4d{word-spacing:-1.698667pt;}
.ws12{word-spacing:-1.650133pt;}
.ws56{word-spacing:-1.632000pt;}
.wsae{word-spacing:-1.601600pt;}
.ws109{word-spacing:-1.584000pt;}
.ws42{word-spacing:-1.553067pt;}
.wsd1{word-spacing:-1.536000pt;}
.wsc9{word-spacing:-1.504533pt;}
.ws116{word-spacing:-1.488000pt;}
.ws50{word-spacing:-1.456000pt;}
.ws11b{word-spacing:-1.440000pt;}
.wsb2{word-spacing:-1.407467pt;}
.ws1e{word-spacing:-1.360000pt;}
.wsb0{word-spacing:-1.358933pt;}
.ws9a{word-spacing:-1.310400pt;}
.ws4f{word-spacing:-1.261867pt;}
.ws126{word-spacing:-1.248000pt;}
.ws25{word-spacing:-1.224000pt;}
.ws16{word-spacing:-1.213333pt;}
.ws131{word-spacing:-1.200000pt;}
.ws23{word-spacing:-1.178667pt;}
.ws83{word-spacing:-1.164800pt;}
.ws14e{word-spacing:-1.160000pt;}
.wsfa{word-spacing:-1.152000pt;}
.ws128{word-spacing:-1.133333pt;}
.ws147{word-spacing:-1.120000pt;}
.ws18{word-spacing:-1.116267pt;}
.ws58{word-spacing:-1.104000pt;}
.wsb4{word-spacing:-1.067733pt;}
.ws91{word-spacing:-1.056000pt;}
.ws43{word-spacing:-1.019200pt;}
.ws115{word-spacing:-1.008000pt;}
.ws13e{word-spacing:-1.000000pt;}
.wsb6{word-spacing:-0.970667pt;}
.ws47{word-spacing:-0.922133pt;}
.ws129{word-spacing:-0.920000pt;}
.ws7f{word-spacing:-0.912000pt;}
.ws4a{word-spacing:-0.873600pt;}
.wsf4{word-spacing:-0.858667pt;}
.ws10{word-spacing:-0.853333pt;}
.ws84{word-spacing:-0.825067pt;}
.ws7d{word-spacing:-0.821333pt;}
.ws88{word-spacing:-0.776533pt;}
.ws11{word-spacing:-0.768000pt;}
.ws143{word-spacing:-0.760000pt;}
.ws7a{word-spacing:-0.728000pt;}
.wsfc{word-spacing:-0.720000pt;}
.ws21{word-spacing:-0.680000pt;}
.ws4b{word-spacing:-0.679467pt;}
.ws55{word-spacing:-0.672000pt;}
.ws136{word-spacing:-0.640000pt;}
.ws98{word-spacing:-0.630933pt;}
.wsbf{word-spacing:-0.624000pt;}
.ws12a{word-spacing:-0.600000pt;}
.ws1d{word-spacing:-0.582400pt;}
.ws8b{word-spacing:-0.576000pt;}
.ws14d{word-spacing:-0.560000pt;}
.ws13{word-spacing:-0.533867pt;}
.wsa6{word-spacing:-0.528000pt;}
.ws142{word-spacing:-0.520000pt;}
.ws52{word-spacing:-0.485333pt;}
.wsa9{word-spacing:-0.480000pt;}
.ws133{word-spacing:-0.440000pt;}
.ws51{word-spacing:-0.436800pt;}
.wsff{word-spacing:-0.432000pt;}
.ws130{word-spacing:-0.400000pt;}
.ws97{word-spacing:-0.388267pt;}
.ws119{word-spacing:-0.384000pt;}
.ws89{word-spacing:-0.373333pt;}
.ws22{word-spacing:-0.362667pt;}
.ws12c{word-spacing:-0.360000pt;}
.ws79{word-spacing:-0.339733pt;}
.wsa7{word-spacing:-0.336000pt;}
.ws145{word-spacing:-0.320000pt;}
.ws53{word-spacing:-0.291200pt;}
.ws118{word-spacing:-0.288000pt;}
.ws146{word-spacing:-0.280000pt;}
.ws46{word-spacing:-0.252373pt;}
.ws4c{word-spacing:-0.242667pt;}
.ws156{word-spacing:-0.240000pt;}
.wsa5{word-spacing:-0.213333pt;}
.ws12b{word-spacing:-0.200000pt;}
.ws15{word-spacing:-0.194133pt;}
.ws8a{word-spacing:-0.192000pt;}
.ws14{word-spacing:-0.145600pt;}
.ws117{word-spacing:-0.144000pt;}
.ws24{word-spacing:-0.136000pt;}
.ws149{word-spacing:-0.120000pt;}
.ws4e{word-spacing:-0.097067pt;}
.ws48{word-spacing:-0.063093pt;}
.wsef{word-spacing:-0.053333pt;}
.ws19{word-spacing:-0.048533pt;}
.wsfb{word-spacing:-0.048000pt;}
.ws1f{word-spacing:-0.045333pt;}
.wsb5{word-spacing:-0.031547pt;}
.wsf{word-spacing:0.000000pt;}
.ws82{word-spacing:0.031547pt;}
.wsb3{word-spacing:0.048533pt;}
.ws11a{word-spacing:0.053333pt;}
.ws44{word-spacing:0.063093pt;}
.ws12e{word-spacing:0.080000pt;}
.ws113{word-spacing:0.094640pt;}
.ws1a{word-spacing:0.097067pt;}
.ws114{word-spacing:0.106667pt;}
.ws134{word-spacing:0.120000pt;}
.ws10c{word-spacing:0.144000pt;}
.ws17{word-spacing:0.145600pt;}
.wsce{word-spacing:0.160000pt;}
.wsa8{word-spacing:0.192000pt;}
.wsb1{word-spacing:0.194133pt;}
.ws106{word-spacing:0.213333pt;}
.ws140{word-spacing:0.240000pt;}
.ws107{word-spacing:0.242667pt;}
.ws141{word-spacing:0.280000pt;}
.ws1c{word-spacing:0.291200pt;}
.wsaf{word-spacing:0.339733pt;}
.ws13f{word-spacing:0.360000pt;}
.ws5b{word-spacing:0.388267pt;}
.ws14c{word-spacing:0.400000pt;}
.wsd0{word-spacing:0.432000pt;}
.ws86{word-spacing:0.436800pt;}
.ws144{word-spacing:0.440000pt;}
.ws85{word-spacing:0.485333pt;}
.ws12f{word-spacing:0.520000pt;}
.ws152{word-spacing:0.528000pt;}
.ws45{word-spacing:0.533867pt;}
.ws148{word-spacing:0.560000pt;}
.wscc{word-spacing:0.582400pt;}
.ws150{word-spacing:0.600000pt;}
.wsfd{word-spacing:0.624000pt;}
.wscd{word-spacing:0.630933pt;}
.ws135{word-spacing:0.640000pt;}
.ws9b{word-spacing:0.679467pt;}
.ws12d{word-spacing:0.680000pt;}
.wsba{word-spacing:0.728000pt;}
.ws127{word-spacing:0.776533pt;}
.wsf3{word-spacing:0.816000pt;}
.wsca{word-spacing:0.825067pt;}
.wsbd{word-spacing:0.873600pt;}
.ws1b{word-spacing:0.922133pt;}
.ws54{word-spacing:0.960000pt;}
.ws153{word-spacing:1.008000pt;}
.ws7b{word-spacing:1.019200pt;}
.ws157{word-spacing:1.056000pt;}
.ws99{word-spacing:1.067733pt;}
.wsfe{word-spacing:1.104000pt;}
.ws87{word-spacing:1.116267pt;}
.ws14f{word-spacing:1.160000pt;}
.ws49{word-spacing:1.213333pt;}
.wsc8{word-spacing:1.261867pt;}
.ws57{word-spacing:1.344000pt;}
.ws101{word-spacing:1.358933pt;}
.ws100{word-spacing:1.407467pt;}
.wsc7{word-spacing:1.456000pt;}
.ws14a{word-spacing:1.520000pt;}
.ws7c{word-spacing:1.601600pt;}
.ws14b{word-spacing:1.680000pt;}
.wseb{word-spacing:1.698667pt;}
.ws8f{word-spacing:1.941333pt;}
.wsf5{word-spacing:1.978667pt;}
.wscb{word-spacing:1.989867pt;}
.wsea{word-spacing:2.135467pt;}
.wsbc{word-spacing:2.184000pt;}
.wsbe{word-spacing:2.378133pt;}
.wsbb{word-spacing:2.426667pt;}
.wsab{word-spacing:2.523733pt;}
.wsaa{word-spacing:2.572267pt;}
.wsed{word-spacing:2.669333pt;}
.wsee{word-spacing:2.766400pt;}
.wse9{word-spacing:3.106133pt;}
.ws7e{word-spacing:3.264000pt;}
.ws8e{word-spacing:3.300267pt;}
.ws8d{word-spacing:3.348800pt;}
.ws8c{word-spacing:3.397333pt;}
.ws90{word-spacing:3.979733pt;}
.ws108{word-spacing:4.368000pt;}
.wsf0{word-spacing:19.104000pt;}
.wsf1{word-spacing:21.552000pt;}
.wse6{word-spacing:39.274661pt;}
.wsdd{word-spacing:74.894396pt;}
.wsde{word-spacing:84.074661pt;}
.wsda{word-spacing:94.415996pt;}
.wse0{word-spacing:96.282662pt;}
.ws76{word-spacing:100.463997pt;}
.wse7{word-spacing:106.474661pt;}
.ws73{word-spacing:108.905053pt;}
.ws68{word-spacing:112.186664pt;}
.ws67{word-spacing:117.674653pt;}
.ws6a{word-spacing:125.630387pt;}
.ws63{word-spacing:130.106664pt;}
.ws62{word-spacing:148.026664pt;}
.wsdf{word-spacing:151.274661pt;}
.wsd9{word-spacing:155.381328pt;}
.ws6c{word-spacing:156.351987pt;}
.ws61{word-spacing:161.769053pt;}
.ws6b{word-spacing:164.639987pt;}
.ws5f{word-spacing:168.186653pt;}
.ws6f{word-spacing:188.645320pt;}
.ws70{word-spacing:189.545053pt;}
.ws72{word-spacing:192.789320pt;}
.ws69{word-spacing:193.614387pt;}
.ws6d{word-spacing:193.685320pt;}
.wse3{word-spacing:196.074661pt;}
.ws6e{word-spacing:196.298653pt;}
.ws66{word-spacing:198.389320pt;}
.ws71{word-spacing:208.245320pt;}
.ws74{word-spacing:215.263987pt;}
.ws65{word-spacing:217.839987pt;}
.wse2{word-spacing:218.474661pt;}
.ws75{word-spacing:228.143987pt;}
.ws64{word-spacing:237.327987pt;}
.wsdc{word-spacing:240.874661pt;}
._21{margin-left:-23.067894pt;}
._26{margin-left:-12.658502pt;}
._7{margin-left:-11.506373pt;}
._23{margin-left:-10.459969pt;}
._22{margin-left:-9.152183pt;}
._33{margin-left:-8.240000pt;}
._c{margin-left:-7.341694pt;}
._2f{margin-left:-6.440000pt;}
._a{margin-left:-5.531974pt;}
._3{margin-left:-4.392536pt;}
._2{margin-left:-3.397067pt;}
._6{margin-left:-2.501680pt;}
._1{margin-left:-1.601733pt;}
._0{width:1.536000pt;}
._9{width:2.703333pt;}
._8{width:3.812533pt;}
._1b{width:4.796133pt;}
._2e{width:5.921733pt;}
._31{width:7.300000pt;}
._32{width:8.333733pt;}
._2d{width:9.280000pt;}
._2c{width:11.520000pt;}
._1f{width:13.962134pt;}
._30{width:15.520001pt;}
._2a{width:20.208000pt;}
._2b{width:22.224000pt;}
._20{width:34.701738pt;}
._25{width:35.623978pt;}
._24{width:36.587206pt;}
._4{width:37.845012pt;}
._5{width:38.943520pt;}
._28{width:40.040520pt;}
._b{width:42.117696pt;}
._29{width:43.157473pt;}
._d{width:45.358381pt;}
._27{width:66.263062pt;}
._1c{width:140.037327pt;}
._1d{width:147.354653pt;}
._18{width:156.669997pt;}
._1e{width:162.847997pt;}
._e{width:166.374927pt;}
._12{width:174.723730pt;}
._f{width:176.399986pt;}
._19{width:181.847053pt;}
._14{width:183.530653pt;}
._13{width:184.538660pt;}
._17{width:190.175987pt;}
._10{width:192.863997pt;}
._15{width:203.025586pt;}
._11{width:208.204387pt;}
._16{width:210.783997pt;}
._1a{width:221.045316pt;}
.fse{font-size:24.266668pt;}
.fs9{font-size:29.466667pt;}
.fsf{font-size:31.199999pt;}
.fs8{font-size:31.546666pt;}
.fs4{font-size:34.666667pt;}
.fsd{font-size:37.333333pt;}
.fs10{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:48.533335pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fs6{font-size:58.666667pt;}
.fsb{font-size:74.666667pt;}
.fsc{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y31{bottom:60.718132pt;}
.y125{bottom:60.930929pt;}
.y196{bottom:61.598801pt;}
.ye5{bottom:63.770000pt;}
.y154{bottom:64.262802pt;}
.y339{bottom:68.492269pt;}
.y24f{bottom:69.099339pt;}
.y75{bottom:69.813863pt;}
.y76{bottom:69.816269pt;}
.y1c2{bottom:70.502962pt;}
.y215{bottom:72.978933pt;}
.y30{bottom:74.051466pt;}
.y124{bottom:74.265462pt;}
.y195{bottom:74.933334pt;}
.ye4{bottom:77.104533pt;}
.y153{bottom:77.597069pt;}
.y2eb{bottom:78.586281pt;}
.y338{bottom:81.824268pt;}
.y24e{bottom:82.433873pt;}
.y74{bottom:83.148397pt;}
.y8e{bottom:83.481730pt;}
.y1c1{bottom:83.834961pt;}
.y270{bottom:85.617330pt;}
.y214{bottom:86.313467pt;}
.ycb{bottom:86.875468pt;}
.y2f{bottom:87.384799pt;}
.y123{bottom:87.599996pt;}
.y2ab{bottom:88.756266pt;}
.y2ea{bottom:89.916281pt;}
.ye3{bottom:90.439067pt;}
.y152{bottom:90.931603pt;}
.y337{bottom:95.156267pt;}
.y73{bottom:96.482930pt;}
.y8d{bottom:96.816264pt;}
.y1c0{bottom:97.166960pt;}
.y26f{bottom:98.951863pt;}
.y213{bottom:99.648000pt;}
.yca{bottom:100.210002pt;}
.y2e{bottom:100.718132pt;}
.y122{bottom:100.928799pt;}
.y209{bottom:100.929729pt;}
.y194{bottom:100.934663pt;}
.y2e9{bottom:101.246281pt;}
.y2aa{bottom:102.088266pt;}
.ye2{bottom:103.772400pt;}
.y151{bottom:104.266136pt;}
.y336{bottom:108.488267pt;}
.y8c{bottom:110.147197pt;}
.y1bf{bottom:110.498960pt;}
.y2e8{bottom:112.576281pt;}
.y212{bottom:112.982534pt;}
.yc9{bottom:113.537334pt;}
.y2d{bottom:114.051466pt;}
.y121{bottom:114.263332pt;}
.y208{bottom:114.264262pt;}
.y193{bottom:114.266663pt;}
.y24d{bottom:114.769207pt;}
.y2a9{bottom:115.420265pt;}
.ye1{bottom:117.103333pt;}
.y150{bottom:117.600670pt;}
.y335{bottom:121.820266pt;}
.y72{bottom:122.485599pt;}
.y8b{bottom:123.481730pt;}
.y1be{bottom:123.830959pt;}
.y2e7{bottom:123.906281pt;}
.y211{bottom:126.315867pt;}
.y26e{bottom:126.761465pt;}
.yc8{bottom:126.871868pt;}
.y2c{bottom:127.384799pt;}
.y120{bottom:127.597866pt;}
.y207{bottom:127.598796pt;}
.y24c{bottom:128.103740pt;}
.y2a8{bottom:128.752264pt;}
.ye0{bottom:130.437866pt;}
.y334{bottom:135.152265pt;}
.y2e6{bottom:135.236282pt;}
.y71{bottom:135.817598pt;}
.y8a{bottom:136.816264pt;}
.y1bd{bottom:137.162958pt;}
.y210{bottom:139.641056pt;}
.y192{bottom:139.831463pt;}
.y26d{bottom:140.095998pt;}
.yc7{bottom:140.206401pt;}
.y11f{bottom:140.932399pt;}
.y206{bottom:140.933329pt;}
.y24b{bottom:141.438274pt;}
.y2a7{bottom:142.084263pt;}
.ydf{bottom:143.772400pt;}
.y2b{bottom:144.566132pt;}
.y14f{bottom:144.779338pt;}
.y2e5{bottom:146.566282pt;}
.y333{bottom:148.484265pt;}
.y70{bottom:149.149597pt;}
.y89{bottom:150.148397pt;}
.y1bc{bottom:150.494958pt;}
.y191{bottom:153.165996pt;}
.y26c{bottom:153.430532pt;}
.yc6{bottom:153.540935pt;}
.y205{bottom:154.261730pt;}
.y11e{bottom:154.266933pt;}
.y24a{bottom:154.772807pt;}
.y2a6{bottom:155.416263pt;}
.yde{bottom:157.102133pt;}
.y2e4{bottom:157.896282pt;}
.y14e{bottom:158.107870pt;}
.y332{bottom:161.816264pt;}
.y88{bottom:163.481730pt;}
.y1bb{bottom:163.826957pt;}
.y190{bottom:166.500530pt;}
.y20f{bottom:166.819723pt;}
.yc5{bottom:166.875468pt;}
.y204{bottom:167.596264pt;}
.y11d{bottom:167.601466pt;}
.y249{bottom:168.107341pt;}
.y2a5{bottom:168.748262pt;}
.y2e3{bottom:169.226282pt;}
.ydd{bottom:170.436666pt;}
.y14d{bottom:171.442404pt;}
.y2a{bottom:172.605876pt;}
.y331{bottom:175.149597pt;}
.y87{bottom:176.816264pt;}
.y6f{bottom:178.482930pt;}
.y26b{bottom:179.432265pt;}
.y18f{bottom:179.835063pt;}
.y20e{bottom:180.154257pt;}
.yc4{bottom:180.210002pt;}
.y2e2{bottom:180.556282pt;}
.y203{bottom:180.930797pt;}
.y248{bottom:181.441874pt;}
.y2a4{bottom:182.080261pt;}
.ydc{bottom:183.771200pt;}
.y14c{bottom:184.776937pt;}
.y29{bottom:185.940410pt;}
.y85{bottom:190.148397pt;}
.y86{bottom:190.149597pt;}
.y1ba{bottom:190.490955pt;}
.y6e{bottom:191.813863pt;}
.y2e1{bottom:191.886282pt;}
.y26a{bottom:192.766798pt;}
.y18e{bottom:193.169597pt;}
.y20d{bottom:193.488790pt;}
.yc3{bottom:193.543335pt;}
.y202{bottom:194.265331pt;}
.y11c{bottom:194.743734pt;}
.y247{bottom:194.776408pt;}
.ydb{bottom:197.104533pt;}
.y14b{bottom:198.111471pt;}
.y28{bottom:199.274943pt;}
.y330{bottom:199.376237pt;}
.y2e0{bottom:203.216282pt;}
.y84{bottom:203.482930pt;}
.y1b9{bottom:203.822955pt;}
.y6d{bottom:205.148397pt;}
.y269{bottom:206.101332pt;}
.y18d{bottom:206.504130pt;}
.y20c{bottom:206.823324pt;}
.y11b{bottom:208.078268pt;}
.y246{bottom:208.099188pt;}
.yda{bottom:210.434665pt;}
.y32f{bottom:210.706237pt;}
.y14a{bottom:211.444804pt;}
.y27{bottom:212.603476pt;}
.y2df{bottom:214.546282pt;}
.y83{bottom:216.811863pt;}
.y1b8{bottom:217.154954pt;}
.y6c{bottom:218.482930pt;}
.y268{bottom:219.435866pt;}
.y18c{bottom:219.838664pt;}
.y20b{bottom:220.157857pt;}
.y11a{bottom:221.412801pt;}
.y201{bottom:221.589600pt;}
.y2a3{bottom:221.611465pt;}
.yc2{bottom:221.734532pt;}
.y32e{bottom:222.036237pt;}
.y149{bottom:224.779338pt;}
.y2de{bottom:225.876282pt;}
.y26{bottom:225.938009pt;}
.y82{bottom:230.146396pt;}
.y1b7{bottom:230.486953pt;}
.y6b{bottom:231.815064pt;}
.y18b{bottom:233.173197pt;}
.y32d{bottom:233.366237pt;}
.y20a{bottom:233.492391pt;}
.y119{bottom:234.746134pt;}
.y200{bottom:234.924133pt;}
.y2a2{bottom:234.943464pt;}
.yc1{bottom:235.066531pt;}
.y245{bottom:235.277856pt;}
.y2dd{bottom:237.206282pt;}
.y148{bottom:238.112389pt;}
.y25{bottom:239.272543pt;}
.yd9{bottom:242.770000pt;}
.y1b6{bottom:243.818953pt;}
.y32c{bottom:244.696237pt;}
.y6a{bottom:245.144796pt;}
.y18a{bottom:246.506531pt;}
.y118{bottom:248.079468pt;}
.y1ff{bottom:248.258667pt;}
.y2a1{bottom:248.275463pt;}
.yc0{bottom:248.398530pt;}
.y2dc{bottom:248.536283pt;}
.y244{bottom:248.612389pt;}
.y267{bottom:251.771200pt;}
.y24{bottom:252.607076pt;}
.y32b{bottom:256.026237pt;}
.yd8{bottom:256.104533pt;}
.y1b5{bottom:257.150952pt;}
.y69{bottom:258.479330pt;}
.y2db{bottom:259.866283pt;}
.y117{bottom:261.411851pt;}
.y1fe{bottom:261.587200pt;}
.y2a0{bottom:261.607463pt;}
.ybf{bottom:261.730530pt;}
.y243{bottom:261.946923pt;}
.y81{bottom:262.481730pt;}
.y266{bottom:265.105733pt;}
.y147{bottom:265.291057pt;}
.y23{bottom:265.940410pt;}
.y32a{bottom:267.356237pt;}
.yd7{bottom:269.439067pt;}
.y1b4{bottom:270.482951pt;}
.y2da{bottom:271.196283pt;}
.y68{bottom:271.813863pt;}
.y189{bottom:272.060550pt;}
.y116{bottom:274.746384pt;}
.y1fd{bottom:274.921733pt;}
.y29f{bottom:274.939462pt;}
.y242{bottom:275.281456pt;}
.y80{bottom:275.816264pt;}
.y265{bottom:278.435466pt;}
.y146{bottom:278.625591pt;}
.y329{bottom:278.686237pt;}
.y216{bottom:278.825724pt;}
.y22{bottom:279.273743pt;}
.y2d9{bottom:282.526283pt;}
.yd6{bottom:282.768799pt;}
.y1b3{bottom:283.814950pt;}
.y67{bottom:285.148397pt;}
.y188{bottom:285.395083pt;}
.ybe{bottom:287.565187pt;}
.y115{bottom:288.080918pt;}
.y1fc{bottom:288.256267pt;}
.y241{bottom:288.615990pt;}
.y7f{bottom:289.143617pt;}
.y328{bottom:290.016237pt;}
.y264{bottom:291.770000pt;}
.y145{bottom:291.960124pt;}
.y21{bottom:292.608276pt;}
.y2d8{bottom:293.856283pt;}
.yd5{bottom:296.103333pt;}
.y66{bottom:298.482930pt;}
.y187{bottom:298.729617pt;}
.ybd{bottom:300.899720pt;}
.y327{bottom:301.346238pt;}
.y114{bottom:301.415452pt;}
.y1fb{bottom:301.590800pt;}
.y240{bottom:301.950523pt;}
.y29e{bottom:302.275463pt;}
.y7e{bottom:302.478150pt;}
.y263{bottom:305.104533pt;}
.y2d7{bottom:305.186283pt;}
.y144{bottom:305.294658pt;}
.y20{bottom:305.941610pt;}
.yd4{bottom:309.437866pt;}
.y1b2{bottom:311.150952pt;}
.y65{bottom:311.815064pt;}
.y186{bottom:312.064150pt;}
.y326{bottom:312.676238pt;}
.ybc{bottom:314.234254pt;}
.y113{bottom:314.749985pt;}
.y1fa{bottom:314.925334pt;}
.y29d{bottom:315.607463pt;}
.y7d{bottom:315.812684pt;}
.y2d6{bottom:316.516283pt;}
.y262{bottom:318.439067pt;}
.y143{bottom:318.629191pt;}
.y1f{bottom:319.273743pt;}
.yd3{bottom:322.771200pt;}
.y325{bottom:324.006238pt;}
.y1b1{bottom:324.482951pt;}
.y64{bottom:325.149597pt;}
.y185{bottom:325.398684pt;}
.ybb{bottom:327.568787pt;}
.y2d5{bottom:327.846283pt;}
.y1f9{bottom:328.257467pt;}
.y23f{bottom:329.129191pt;}
.y7c{bottom:329.147217pt;}
.y141{bottom:331.946922pt;}
.y142{bottom:331.962524pt;}
.y1e{bottom:332.607076pt;}
.y324{bottom:335.336238pt;}
.yd2{bottom:336.105733pt;}
.y1b0{bottom:337.814950pt;}
.y63{bottom:338.482930pt;}
.y184{bottom:338.733217pt;}
.y2d4{bottom:339.176283pt;}
.yba{bottom:340.903321pt;}
.y29c{bottom:341.140020pt;}
.y1f8{bottom:341.592000pt;}
.y112{bottom:341.891052pt;}
.y23e{bottom:342.461324pt;}
.y7b{bottom:342.481751pt;}
.y140{bottom:345.281455pt;}
.y1d{bottom:345.940410pt;}
.y323{bottom:346.666238pt;}
.yd1{bottom:349.437887pt;}
.y2d3{bottom:350.506283pt;}
.y261{bottom:350.776422pt;}
.y183{bottom:352.067751pt;}
.yb9{bottom:354.237854pt;}
.y29b{bottom:354.472020pt;}
.y111{bottom:355.225586pt;}
.y23d{bottom:355.795858pt;}
.y7a{bottom:355.816284pt;}
.y322{bottom:357.996238pt;}
.y13f{bottom:358.615989pt;}
.y1c{bottom:359.274943pt;}
.y2d2{bottom:361.836284pt;}
.yd0{bottom:362.772420pt;}
.y260{bottom:364.108422pt;}
.y1af{bottom:365.150952pt;}
.y182{bottom:365.402284pt;}
.yb8{bottom:367.572388pt;}
.y29a{bottom:367.804019pt;}
.y62{bottom:367.815084pt;}
.y110{bottom:368.548118pt;}
.y1f7{bottom:368.927990pt;}
.y79{bottom:369.147217pt;}
.y321{bottom:369.326238pt;}
.y13e{bottom:371.950522pt;}
.y1b{bottom:372.608276pt;}
.y2d1{bottom:373.166284pt;}
.y25f{bottom:377.440421pt;}
.y1ae{bottom:378.482951pt;}
.y181{bottom:378.736818pt;}
.y320{bottom:380.656238pt;}
.yb7{bottom:380.902120pt;}
.y299{bottom:381.136018pt;}
.y61{bottom:381.149618pt;}
.y10f{bottom:381.882651pt;}
.y1f6{bottom:382.259989pt;}
.y78{bottom:382.481751pt;}
.y23c{bottom:382.977586pt;}
.y2d0{bottom:384.496284pt;}
.y13d{bottom:385.285056pt;}
.y25e{bottom:390.772420pt;}
.y31f{bottom:391.986238pt;}
.y180{bottom:392.071351pt;}
.yb6{bottom:394.236654pt;}
.y298{bottom:394.470686pt;}
.y60{bottom:394.481751pt;}
.y10e{bottom:395.217185pt;}
.y1f5{bottom:395.591989pt;}
.y77{bottom:395.816284pt;}
.y2cf{bottom:395.826284pt;}
.y23b{bottom:396.309585pt;}
.y13c{bottom:398.619590pt;}
.y31e{bottom:403.316238pt;}
.y17f{bottom:405.405885pt;}
.y2ce{bottom:407.156284pt;}
.yb5{bottom:407.571188pt;}
.y297{bottom:407.802685pt;}
.y1ad{bottom:407.807883pt;}
.y5f{bottom:407.815084pt;}
.ye6{bottom:408.105754pt;}
.y10d{bottom:408.551718pt;}
.y1f4{bottom:408.923988pt;}
.y23a{bottom:409.641584pt;}
.y13b{bottom:411.954123pt;}
.y31d{bottom:414.646239pt;}
.y2cd{bottom:418.486284pt;}
.y17e{bottom:418.740418pt;}
.y25d{bottom:420.102153pt;}
.yb4{bottom:420.903321pt;}
.y5e{bottom:421.132815pt;}
.y296{bottom:421.136018pt;}
.y1ac{bottom:421.142416pt;}
.y10c{bottom:421.886252pt;}
.y1f3{bottom:422.255987pt;}
.y239{bottom:422.973583pt;}
.y13a{bottom:425.288657pt;}
.y1a{bottom:425.306943pt;}
.y31c{bottom:425.976239pt;}
.y2cc{bottom:429.816284pt;}
.y17d{bottom:432.074952pt;}
.y25c{bottom:433.436687pt;}
.yb3{bottom:434.237854pt;}
.y5d{bottom:434.467348pt;}
.y295{bottom:434.472020pt;}
.y1ab{bottom:434.476950pt;}
.y10b{bottom:435.220785pt;}
.y1f2{bottom:435.587987pt;}
.y238{bottom:436.305583pt;}
.y31b{bottom:437.306239pt;}
.y139{bottom:438.623190pt;}
.y19{bottom:439.970943pt;}
.y2cb{bottom:441.149618pt;}
.yb1{bottom:441.154954pt;}
.y17c{bottom:445.409485pt;}
.y25b{bottom:446.771220pt;}
.yb2{bottom:447.572388pt;}
.y5c{bottom:447.801882pt;}
.y294{bottom:447.804019pt;}
.y1aa{bottom:447.811483pt;}
.y10a{bottom:448.555319pt;}
.y31a{bottom:448.636239pt;}
.y1f1{bottom:448.919986pt;}
.y138{bottom:451.957724pt;}
.yb0{bottom:454.486953pt;}
.y18{bottom:454.634943pt;}
.y17b{bottom:458.744019pt;}
.y319{bottom:459.966239pt;}
.y25a{bottom:460.105754pt;}
.y293{bottom:461.136018pt;}
.y5b{bottom:461.136415pt;}
.y1a9{bottom:461.146017pt;}
.y237{bottom:461.291464pt;}
.y109{bottom:461.889852pt;}
.y1f0{bottom:462.251985pt;}
.y137{bottom:465.292257pt;}
.yaf{bottom:467.818952pt;}
.y17{bottom:469.298943pt;}
.y2ca{bottom:470.488284pt;}
.y318{bottom:471.296239pt;}
.y17a{bottom:472.078552pt;}
.y259{bottom:473.439087pt;}
.y292{bottom:474.470686pt;}
.y5a{bottom:474.470949pt;}
.y1a8{bottom:474.480550pt;}
.y236{bottom:474.625997pt;}
.y108{bottom:475.224386pt;}
.y1ef{bottom:475.583984pt;}
.y136{bottom:478.626791pt;}
.yae{bottom:481.150952pt;}
.y317{bottom:482.626239pt;}
.y2c9{bottom:483.816284pt;}
.y16{bottom:483.962943pt;}
.y179{bottom:485.413086pt;}
.y291{bottom:487.802685pt;}
.y59{bottom:487.805482pt;}
.y1a7{bottom:487.815084pt;}
.y235{bottom:487.960531pt;}
.y107{bottom:488.558919pt;}
.y135{bottom:491.961324pt;}
.ycf{bottom:492.909723pt;}
.y316{bottom:493.956239pt;}
.yad{bottom:494.482951pt;}
.y15{bottom:498.626943pt;}
.y178{bottom:498.744019pt;}
.y1ee{bottom:500.695313pt;}
.y290{bottom:501.136018pt;}
.y58{bottom:501.140016pt;}
.y1a6{bottom:501.149618pt;}
.y234{bottom:501.295064pt;}
.y106{bottom:501.885051pt;}
.y258{bottom:502.772420pt;}
.y315{bottom:505.286239pt;}
.y134{bottom:505.295858pt;}
.yce{bottom:506.241722pt;}
.y2c8{bottom:508.484285pt;}
.y177{bottom:512.078552pt;}
.y14{bottom:513.290943pt;}
.y1ed{bottom:514.029847pt;}
.y1a5{bottom:514.466507pt;}
.y28f{bottom:514.470686pt;}
.y57{bottom:514.474549pt;}
.y233{bottom:514.629598pt;}
.y105{bottom:515.219585pt;}
.y257{bottom:516.097352pt;}
.y314{bottom:516.616239pt;}
.y133{bottom:518.631350pt;}
.ycd{bottom:519.573722pt;}
.yac{bottom:521.238907pt;}
.y2c7{bottom:521.816284pt;}
.y176{bottom:525.413086pt;}
.y1ec{bottom:527.364380pt;}
.y1a4{bottom:527.801040pt;}
.y28e{bottom:527.802685pt;}
.y56{bottom:527.809083pt;}
.y313{bottom:527.946240pt;}
.y13{bottom:527.954943pt;}
.y232{bottom:527.961731pt;}
.y104{bottom:528.554118pt;}
.y256{bottom:529.431886pt;}
.ycc{bottom:532.905721pt;}
.y2c6{bottom:535.149618pt;}
.yab{bottom:536.741574pt;}
.y175{bottom:538.746419pt;}
.y312{bottom:539.276240pt;}
.y1eb{bottom:540.698914pt;}
.y28d{bottom:541.134684pt;}
.y1a3{bottom:541.135574pt;}
.y55{bottom:541.143617pt;}
.y231{bottom:541.273831pt;}
.y103{bottom:541.888652pt;}
.y12{bottom:542.618943pt;}
.y255{bottom:542.766419pt;}
.y132{bottom:545.810018pt;}
.y311{bottom:550.606240pt;}
.y174{bottom:552.072930pt;}
.yaa{bottom:552.244241pt;}
.y1ea{bottom:554.033447pt;}
.y1a2{bottom:554.470108pt;}
.y54{bottom:554.478150pt;}
.y230{bottom:554.608365pt;}
.y102{bottom:555.223186pt;}
.y254{bottom:556.100953pt;}
.y11{bottom:557.282943pt;}
.y131{bottom:559.144552pt;}
.y310{bottom:561.936240pt;}
.y2c5{bottom:564.482951pt;}
.y173{bottom:565.407464pt;}
.y28c{bottom:566.676540pt;}
.y1e9{bottom:567.366781pt;}
.ya9{bottom:567.746908pt;}
.y1a1{bottom:567.804641pt;}
.y53{bottom:567.812684pt;}
.y22f{bottom:567.942898pt;}
.y101{bottom:568.557719pt;}
.y253{bottom:569.435486pt;}
.y10{bottom:571.946943pt;}
.y130{bottom:572.479085pt;}
.y30f{bottom:573.266240pt;}
.y2c4{bottom:577.811483pt;}
.y28b{bottom:580.008539pt;}
.y1e8{bottom:580.700114pt;}
.y52{bottom:581.147217pt;}
.y22e{bottom:581.277432pt;}
.y100{bottom:581.892253pt;}
.y252{bottom:582.770020pt;}
.ya8{bottom:583.249574pt;}
.y30e{bottom:584.596240pt;}
.y12f{bottom:585.801617pt;}
.yf{bottom:586.610943pt;}
.y2c3{bottom:591.146017pt;}
.y172{bottom:593.277731pt;}
.y28a{bottom:593.340538pt;}
.y51{bottom:594.481751pt;}
.yff{bottom:595.224386pt;}
.y30d{bottom:595.926240pt;}
.y251{bottom:596.104553pt;}
.ya7{bottom:598.752241pt;}
.y12e{bottom:599.136150pt;}
.y1a0{bottom:600.139975pt;}
.ye{bottom:601.274943pt;}
.y2c2{bottom:604.480550pt;}
.y34f{bottom:605.161583pt;}
.y171{bottom:606.612264pt;}
.y289{bottom:606.672538pt;}
.y30c{bottom:607.256240pt;}
.y50{bottom:607.815084pt;}
.y22d{bottom:608.456100pt;}
.yfe{bottom:608.558919pt;}
.y250{bottom:609.439087pt;}
.y12d{bottom:612.470684pt;}
.y19f{bottom:613.474509pt;}
.ya6{bottom:614.254908pt;}
.y2c1{bottom:617.815084pt;}
.y34e{bottom:618.493583pt;}
.y30b{bottom:618.586240pt;}
.y1e7{bottom:619.837588pt;}
.y170{bottom:619.946798pt;}
.y288{bottom:620.004537pt;}
.y4f{bottom:621.149618pt;}
.y22c{bottom:621.790633pt;}
.yfd{bottom:621.889730pt;}
.y12c{bottom:625.805217pt;}
.y19e{bottom:626.809042pt;}
.ya5{bottom:629.757575pt;}
.y30a{bottom:629.916240pt;}
.y2c0{bottom:631.149618pt;}
.y34d{bottom:631.825582pt;}
.y1e6{bottom:633.169588pt;}
.yc{bottom:633.274942pt;}
.y16f{bottom:633.278931pt;}
.y287{bottom:633.336536pt;}
.y4e{bottom:634.479350pt;}
.y22b{bottom:635.125167pt;}
.yfc{bottom:635.224264pt;}
.yd{bottom:637.808268pt;}
.y12b{bottom:639.139751pt;}
.y19d{bottom:640.143576pt;}
.y309{bottom:641.246241pt;}
.y2bf{bottom:644.492249pt;}
.y34c{bottom:645.157581pt;}
.ya4{bottom:645.260242pt;}
.y1e5{bottom:646.501587pt;}
.y16e{bottom:646.613465pt;}
.y286{bottom:646.668535pt;}
.y4d{bottom:647.813884pt;}
.y22a{bottom:648.459700pt;}
.yfb{bottom:648.558797pt;}
.ya{bottom:649.274942pt;}
.y12a{bottom:652.474285pt;}
.y308{bottom:652.576241pt;}
.y19c{bottom:653.478109pt;}
.yb{bottom:653.808268pt;}
.y272{bottom:654.773754pt;}
.y2be{bottom:657.824248pt;}
.y34b{bottom:658.489580pt;}
.y1e4{bottom:659.833586pt;}
.y16d{bottom:659.947998pt;}
.y285{bottom:660.000535pt;}
.ya3{bottom:660.762908pt;}
.y4c{bottom:661.148417pt;}
.y229{bottom:661.794234pt;}
.yfa{bottom:661.893581pt;}
.y307{bottom:663.906241pt;}
.y8{bottom:665.274943pt;}
.y129{bottom:665.808818pt;}
.y19b{bottom:666.812643pt;}
.y271{bottom:668.105754pt;}
.y9{bottom:669.808268pt;}
.y2bd{bottom:671.156247pt;}
.y34a{bottom:671.821580pt;}
.y1e3{bottom:673.165586pt;}
.y16c{bottom:673.281331pt;}
.y284{bottom:673.332534pt;}
.y4b{bottom:674.481710pt;}
.y228{bottom:675.128767pt;}
.y306{bottom:675.236241pt;}
.ya2{bottom:676.265575pt;}
.y128{bottom:679.143352pt;}
.y19a{bottom:680.147176pt;}
.y2bc{bottom:684.488246pt;}
.y349{bottom:685.153579pt;}
.y1e2{bottom:686.497585pt;}
.y305{bottom:686.566241pt;}
.y16b{bottom:686.595840pt;}
.y283{bottom:686.664533pt;}
.y4a{bottom:687.813843pt;}
.y227{bottom:688.463301pt;}
.yf9{bottom:689.035848pt;}
.ya1{bottom:691.768242pt;}
.y127{bottom:692.477885pt;}
.y199{bottom:693.481710pt;}
.y7{bottom:694.592232pt;}
.y2bb{bottom:697.820246pt;}
.y304{bottom:697.896241pt;}
.y348{bottom:698.485578pt;}
.y1e1{bottom:699.829584pt;}
.y16a{bottom:699.930374pt;}
.y282{bottom:699.996533pt;}
.y49{bottom:701.148377pt;}
.y226{bottom:701.797834pt;}
.yf8{bottom:702.370382pt;}
.y126{bottom:705.812419pt;}
.y198{bottom:706.816243pt;}
.ya0{bottom:707.270909pt;}
.y303{bottom:709.226241pt;}
.y2ba{bottom:711.152245pt;}
.y347{bottom:711.817578pt;}
.y1e0{bottom:713.161583pt;}
.y169{bottom:713.264908pt;}
.y281{bottom:713.328532pt;}
.y48{bottom:714.481710pt;}
.y225{bottom:715.132368pt;}
.yf7{bottom:715.702515pt;}
.y197{bottom:720.149577pt;}
.y302{bottom:720.556241pt;}
.y9f{bottom:722.773575pt;}
.y2b9{bottom:724.484244pt;}
.y346{bottom:725.149577pt;}
.y1df{bottom:726.493583pt;}
.y47{bottom:727.813843pt;}
.y224{bottom:728.466902pt;}
.yf6{bottom:729.037049pt;}
.y301{bottom:731.886241pt;}
.y6{bottom:734.597566pt;}
.y2b8{bottom:737.816243pt;}
.y9e{bottom:738.276242pt;}
.y280{bottom:738.855713pt;}
.y1de{bottom:739.825582pt;}
.y168{bottom:741.135174pt;}
.y46{bottom:741.148377pt;}
.yf5{bottom:742.367981pt;}
.y300{bottom:743.216241pt;}
.y345{bottom:744.486912pt;}
.y158{bottom:751.149754pt;}
.y27f{bottom:752.186646pt;}
.y1dd{bottom:753.157581pt;}
.y9d{bottom:753.778909pt;}
.y167{bottom:754.469708pt;}
.y45{bottom:754.482910pt;}
.y2ff{bottom:754.546242pt;}
.y223{bottom:755.645569pt;}
.yf4{bottom:755.702515pt;}
.y344{bottom:757.818912pt;}
.y157{bottom:764.481753pt;}
.y1cf{bottom:765.482910pt;}
.y27e{bottom:765.521179pt;}
.y2fe{bottom:765.876242pt;}
.y166{bottom:767.804242pt;}
.y44{bottom:767.815043pt;}
.y222{bottom:768.980103pt;}
.yf3{bottom:769.037049pt;}
.y9c{bottom:769.281576pt;}
.y32{bottom:774.399495pt;}
.y5{bottom:774.602901pt;}
.y343{bottom:777.150911pt;}
.y2fd{bottom:777.206242pt;}
.y156{bottom:777.813753pt;}
.y27d{bottom:778.855713pt;}
.y1dc{bottom:780.493583pt;}
.y165{bottom:781.138775pt;}
.y43{bottom:781.144776pt;}
.y2b7{bottom:781.164251pt;}
.y221{bottom:782.314636pt;}
.yf2{bottom:782.371582pt;}
.y9b{bottom:784.784242pt;}
.y2fc{bottom:788.536242pt;}
.y155{bottom:791.145752pt;}
.y27c{bottom:792.187846pt;}
.y1ce{bottom:792.353573pt;}
.y1db{bottom:793.825582pt;}
.y164{bottom:794.473309pt;}
.y42{bottom:794.479310pt;}
.y2b6{bottom:794.496251pt;}
.y220{bottom:795.649170pt;}
.yf1{bottom:795.702515pt;}
.y342{bottom:796.482910pt;}
.y2fb{bottom:799.866242pt;}
.y9a{bottom:800.286909pt;}
.y27b{bottom:805.521179pt;}
.y1da{bottom:807.157581pt;}
.y163{bottom:807.807842pt;}
.y41{bottom:807.813843pt;}
.y2b5{bottom:807.828250pt;}
.y1cd{bottom:807.856240pt;}
.y21f{bottom:808.987839pt;}
.yf0{bottom:809.037049pt;}
.y341{bottom:809.816243pt;}
.y2fa{bottom:811.196242pt;}
.y1cc{bottom:812.849573pt;}
.y4{bottom:814.608236pt;}
.y99{bottom:815.789576pt;}
.y27a{bottom:818.857350pt;}
.y1d9{bottom:820.489580pt;}
.y162{bottom:821.142376pt;}
.y40{bottom:821.148377pt;}
.y2b4{bottom:821.160249pt;}
.y21e{bottom:822.319839pt;}
.yef{bottom:822.367981pt;}
.y2f9{bottom:822.526242pt;}
.y33{bottom:823.475179pt;}
.y98{bottom:831.292243pt;}
.y279{bottom:832.191884pt;}
.y1d8{bottom:833.821580pt;}
.y2f8{bottom:833.856242pt;}
.y161{bottom:834.476909pt;}
.y3f{bottom:834.482910pt;}
.y2b3{bottom:834.492249pt;}
.y21d{bottom:835.651838pt;}
.yee{bottom:835.702515pt;}
.y1cb{bottom:838.348241pt;}
.y340{bottom:839.816243pt;}
.y1ca{bottom:843.341574pt;}
.y2f7{bottom:845.186242pt;}
.y278{bottom:845.526417pt;}
.y97{bottom:846.794909pt;}
.y1d7{bottom:847.153579pt;}
.y160{bottom:847.811443pt;}
.y3e{bottom:847.815043pt;}
.y2b2{bottom:847.824248pt;}
.y21c{bottom:848.983837pt;}
.yed{bottom:849.037049pt;}
.y33f{bottom:853.149577pt;}
.y2f6{bottom:856.516242pt;}
.y1d6{bottom:860.485578pt;}
.y15f{bottom:861.145976pt;}
.y3d{bottom:861.149577pt;}
.y2b1{bottom:861.156247pt;}
.y96{bottom:862.297576pt;}
.y21b{bottom:862.315837pt;}
.yec{bottom:862.371582pt;}
.y2f5{bottom:867.846243pt;}
.y1c9{bottom:868.840242pt;}
.y277{bottom:873.336019pt;}
.y1d5{bottom:873.817578pt;}
.y15e{bottom:874.480510pt;}
.y3c{bottom:874.481710pt;}
.y2b0{bottom:874.488246pt;}
.y33e{bottom:877.149577pt;}
.y95{bottom:877.800243pt;}
.y2f4{bottom:879.176243pt;}
.y1c8{bottom:884.342908pt;}
.y276{bottom:886.666952pt;}
.y1d4{bottom:887.152245pt;}
.y21a{bottom:887.299442pt;}
.y15d{bottom:887.815043pt;}
.y3b{bottom:887.816243pt;}
.y2af{bottom:887.820246pt;}
.yeb{bottom:889.521743pt;}
.y33d{bottom:890.482910pt;}
.y2f3{bottom:890.506243pt;}
.y94{bottom:893.302910pt;}
.y1c7{bottom:894.338908pt;}
.y275{bottom:900.001485pt;}
.y1d3{bottom:900.484244pt;}
.y219{bottom:900.633975pt;}
.y3a{bottom:901.145976pt;}
.y15c{bottom:901.149577pt;}
.y2ae{bottom:901.152245pt;}
.y2f2{bottom:901.836243pt;}
.yea{bottom:902.853742pt;}
.y93{bottom:908.805576pt;}
.y2f1{bottom:913.166243pt;}
.y274{bottom:913.336019pt;}
.y1d2{bottom:913.816244pt;}
.y218{bottom:913.968509pt;}
.y39{bottom:914.480510pt;}
.y15b{bottom:914.481710pt;}
.y2ad{bottom:914.484244pt;}
.y33c{bottom:914.486912pt;}
.ye9{bottom:916.185742pt;}
.y1c6{bottom:919.837576pt;}
.y92{bottom:924.308243pt;}
.y2f0{bottom:924.496243pt;}
.y1c5{bottom:924.830909pt;}
.y273{bottom:926.673308pt;}
.y38{bottom:927.815043pt;}
.y15a{bottom:927.816243pt;}
.y2ac{bottom:927.817578pt;}
.y33b{bottom:927.818912pt;}
.ye8{bottom:929.517741pt;}
.y2ef{bottom:935.826243pt;}
.y91{bottom:939.810910pt;}
.y217{bottom:941.147176pt;}
.y159{bottom:941.148377pt;}
.y37{bottom:941.149577pt;}
.y33a{bottom:941.150911pt;}
.y1d1{bottom:941.152245pt;}
.y1c4{bottom:945.326910pt;}
.y2ee{bottom:947.156243pt;}
.y1c3{bottom:950.320243pt;}
.ye7{bottom:954.481710pt;}
.y36{bottom:954.482910pt;}
.y1d0{bottom:954.484244pt;}
.y90{bottom:955.313577pt;}
.y2ed{bottom:958.486243pt;}
.y35{bottom:967.816243pt;}
.y2ec{bottom:969.816243pt;}
.y8f{bottom:970.816243pt;}
.y34{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.h11{height:21.193555pt;}
.h9{height:24.933594pt;}
.h2f{height:25.320312pt;}
.h37{height:31.461333pt;}
.h14{height:32.605469pt;}
.hc{height:34.523438pt;}
.h31{height:35.466667pt;}
.h12{height:36.585552pt;}
.h8{height:36.799967pt;}
.h1f{height:36.922667pt;}
.h2e{height:37.408000pt;}
.h20{height:38.229333pt;}
.h2{height:38.346667pt;}
.hb{height:38.359375pt;}
.h1e{height:38.528000pt;}
.h4{height:39.305333pt;}
.h3a{height:39.560000pt;}
.h38{height:40.080000pt;}
.h3{height:40.661333pt;}
.h39{height:40.960000pt;}
.hd{height:42.195312pt;}
.ha{height:43.066897pt;}
.h13{height:46.762667pt;}
.h36{height:47.455991pt;}
.h1c{height:47.472000pt;}
.he{height:47.999469pt;}
.h26{height:48.003269pt;}
.hf{height:48.004269pt;}
.h19{height:48.009070pt;}
.h28{height:48.009091pt;}
.h17{height:48.013871pt;}
.h1d{height:48.017074pt;}
.h27{height:48.017590pt;}
.h18{height:48.018672pt;}
.h33{height:48.019198pt;}
.h23{height:48.023473pt;}
.h2a{height:48.026758pt;}
.h35{height:48.033074pt;}
.h25{height:48.042676pt;}
.h2b{height:48.065244pt;}
.h1a{height:48.066679pt;}
.h29{height:48.074766pt;}
.h32{height:48.085327pt;}
.h34{height:48.089202pt;}
.h22{height:48.096000pt;}
.h10{height:48.630402pt;}
.h1b{height:48.635203pt;}
.h24{height:48.640004pt;}
.h21{height:49.152000pt;}
.h15{height:53.703125pt;}
.h7{height:54.933268pt;}
.h2c{height:56.933334pt;}
.h30{height:57.418667pt;}
.h16{height:63.936000pt;}
.h2d{height:76.906666pt;}
.h5{height:99.734375pt;}
.h6{height:133.120000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:21.138400pt;}
.x2{left:54.392400pt;}
.xd{left:125.291331pt;}
.x4{left:207.516805pt;}
.xf{left:211.683329pt;}
.xb{left:223.519606pt;}
.x15{left:226.189334pt;}
.x11{left:231.513608pt;}
.x12{left:249.513592pt;}
.x17{left:267.195190pt;}
.x9{left:322.439209pt;}
.x13{left:331.084798pt;}
.xa{left:431.935872pt;}
.x5{left:470.045329pt;}
.x7{left:503.714396pt;}
.x3{left:537.585327pt;}
.x8{left:599.240926pt;}
.x6{left:621.305583pt;}
.x14{left:725.336507pt;}
.x16{left:726.469482pt;}
.x10{left:732.628825pt;}
.x1{left:733.540283pt;}
.xe{left:739.517090pt;}
}


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