
/* 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_1616701b566b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_7e2e92132ae3.woff")format("woff");}.ff2{font-family:ff2;line-height:0.996000;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_6c118dbaebf5.woff")format("woff");}.ff3{font-family:ff3;line-height:0.966000;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_9794f8b5ac6d.woff")format("woff");}.ff4{font-family:ff4;line-height:0.876000;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_586475d439f6.woff")format("woff");}.ff5{font-family:ff5;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_0e849c336cdb.woff")format("woff");}.ff6{font-family:ff6;line-height:0.668000;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_dd40fe48e8b7.woff")format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_5df81991c783.woff")format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_fb1ecf8e2dad.woff")format("woff");}.ff9{font-family:ff9;line-height:0.456000;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_00f4b6128ecd.woff")format("woff");}.ffa{font-family:ffa;line-height:0.873000;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_6fc4b32f7acf.woff")format("woff");}.ffb{font-family:ffb;line-height:0.668000;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_6ee8275e77bc.woff")format("woff");}.ffc{font-family:ffc;line-height:0.673000;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_a210705889fa.woff")format("woff");}.ffd{font-family:ffd;line-height:0.657000;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_25a92ff02583.woff")format("woff");}.ffe{font-family:ffe;line-height:1.026000;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_23f7d7471279.woff")format("woff");}.fff{font-family:fff;line-height:0.956000;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_248b8a3bf221.woff")format("woff");}.ff10{font-family:ff10;line-height:0.873000;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_57bec9a8714d.woff")format("woff");}.ff11{font-family:ff11;line-height:1.056000;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_c5a1a7a620f0.woff")format("woff");}.ff12{font-family:ff12;line-height:1.047000;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_07b4707c9532.woff")format("woff");}.ff13{font-family:ff13;line-height:0.894000;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_ff41951c665a.woff")format("woff");}.ff14{font-family:ff14;line-height:0.841000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_dbe543fa91de.woff")format("woff");}.ff15{font-family:ff15;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_2b00180f3385.woff")format("woff");}.ff16{font-family:ff16;line-height:0.280000;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);}
.m3{transform:matrix(0.281293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281293,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281294,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281305,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-34.356000px;}
.vb{vertical-align:-22.680000px;}
.v9{vertical-align:-21.430200px;}
.v10{vertical-align:-19.980000px;}
.v6{vertical-align:-15.649409px;}
.v8{vertical-align:-13.266282px;}
.vc{vertical-align:-6.657643px;}
.v5{vertical-align:-1.362897px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.443748px;}
.vd{vertical-align:6.660000px;}
.v7{vertical-align:9.524400px;}
.va{vertical-align:17.345375px;}
.ve{vertical-align:19.985530px;}
.v4{vertical-align:21.770050px;}
.vf{vertical-align:26.640000px;}
.v2{vertical-align:34.358493px;}
.ls1a{letter-spacing:-13.691379px;}
.ls1b{letter-spacing:-13.350515px;}
.ls3b{letter-spacing:-1.984570px;}
.lseb{letter-spacing:-1.800000px;}
.ls3c{letter-spacing:-1.536248px;}
.lsae{letter-spacing:-1.415965px;}
.lsb8{letter-spacing:-1.072800px;}
.lsb7{letter-spacing:-0.856800px;}
.lsad{letter-spacing:-0.758409px;}
.lsdd{letter-spacing:-0.648013px;}
.lsc9{letter-spacing:-0.648000px;}
.lsca{letter-spacing:-0.576000px;}
.lsf2{letter-spacing:-0.494388px;}
.lsb2{letter-spacing:-0.480010px;}
.lsf5{letter-spacing:-0.422389px;}
.lsf6{letter-spacing:-0.417590px;}
.lsaf{letter-spacing:-0.398390px;}
.lsc3{letter-spacing:-0.360000px;}
.lsf3{letter-spacing:-0.335992px;}
.lse1{letter-spacing:-0.330007px;}
.lse3{letter-spacing:-0.306000px;}
.lscc{letter-spacing:-0.288000px;}
.lsc4{letter-spacing:-0.180004px;}
.lsf8{letter-spacing:-0.158396px;}
.lsd8{letter-spacing:-0.150003px;}
.lsc6{letter-spacing:-0.144000px;}
.lsf7{letter-spacing:-0.139197px;}
.lsc2{letter-spacing:-0.120002px;}
.lsf4{letter-spacing:-0.119997px;}
.lsc8{letter-spacing:-0.108000px;}
.lsc7{letter-spacing:-0.096002px;}
.lsd9{letter-spacing:-0.090002px;}
.lse5{letter-spacing:-0.084002px;}
.lsb9{letter-spacing:-0.078002px;}
.lsc1{letter-spacing:-0.072001px;}
.lsb4{letter-spacing:-0.067199px;}
.lsc5{letter-spacing:-0.066001px;}
.lsbc{letter-spacing:-0.060001px;}
.lsc0{letter-spacing:-0.054001px;}
.lsba{letter-spacing:-0.048001px;}
.lsb0{letter-spacing:-0.047999px;}
.lsb1{letter-spacing:-0.042001px;}
.lsbe{letter-spacing:-0.036001px;}
.lsb3{letter-spacing:-0.030001px;}
.lsb6{letter-spacing:-0.025200px;}
.lsbf{letter-spacing:-0.024000px;}
.ls17{letter-spacing:-0.019128px;}
.lsbd{letter-spacing:-0.018000px;}
.lsbb{letter-spacing:-0.012000px;}
.ls3e{letter-spacing:-0.009565px;}
.lse2{letter-spacing:-0.006000px;}
.ls1c{letter-spacing:-0.005978px;}
.ls3f{letter-spacing:-0.005380px;}
.ls40{letter-spacing:-0.005081px;}
.ls16{letter-spacing:-0.004782px;}
.ls18{letter-spacing:-0.004184px;}
.ls3d{letter-spacing:-0.003188px;}
.ls19{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.003825px;}
.ls8e{letter-spacing:0.006000px;}
.ls13{letter-spacing:0.006277px;}
.ls0{letter-spacing:0.007173px;}
.lse{letter-spacing:0.011955px;}
.ls9f{letter-spacing:0.012000px;}
.ls2b{letter-spacing:0.014347px;}
.ls88{letter-spacing:0.016800px;}
.ls85{letter-spacing:0.018000px;}
.ls7c{letter-spacing:0.018360px;}
.ls9{letter-spacing:0.023910px;}
.lsa0{letter-spacing:0.024000px;}
.ls91{letter-spacing:0.030001px;}
.ls51{letter-spacing:0.030486px;}
.ls89{letter-spacing:0.033600px;}
.ls87{letter-spacing:0.036001px;}
.lsa4{letter-spacing:0.042001px;}
.ls72{letter-spacing:0.043041px;}
.ls80{letter-spacing:0.047823px;}
.lsef{letter-spacing:0.047999px;}
.lsd0{letter-spacing:0.048001px;}
.lsb5{letter-spacing:0.050399px;}
.lse0{letter-spacing:0.054001px;}
.ls57{letter-spacing:0.055890px;}
.lsaa{letter-spacing:0.056387px;}
.lsd2{letter-spacing:0.057380px;}
.lsab{letter-spacing:0.057522px;}
.lsa9{letter-spacing:0.058129px;}
.ls97{letter-spacing:0.058669px;}
.ls8c{letter-spacing:0.058799px;}
.lscf{letter-spacing:0.058864px;}
.ls96{letter-spacing:0.059000px;}
.lsa8{letter-spacing:0.059215px;}
.ls99{letter-spacing:0.059626px;}
.ls11{letter-spacing:0.059776px;}
.ls86{letter-spacing:0.060001px;}
.lsa6{letter-spacing:0.060880px;}
.lsa7{letter-spacing:0.060940px;}
.lsa5{letter-spacing:0.061496px;}
.lsd1{letter-spacing:0.061876px;}
.lsea{letter-spacing:0.066001px;}
.ls94{letter-spacing:0.072001px;}
.lsd7{letter-spacing:0.078002px;}
.ls47{letter-spacing:0.083687px;}
.ls93{letter-spacing:0.084002px;}
.lse6{letter-spacing:0.090002px;}
.lse9{letter-spacing:0.096002px;}
.ls8b{letter-spacing:0.100799px;}
.lse8{letter-spacing:0.102002px;}
.ls90{letter-spacing:0.108002px;}
.ls8d{letter-spacing:0.109198px;}
.ls55{letter-spacing:0.111780px;}
.lsce{letter-spacing:0.114002px;}
.lsa1{letter-spacing:0.119932px;}
.ls95{letter-spacing:0.120002px;}
.lsa3{letter-spacing:0.120739px;}
.ls33{letter-spacing:0.124340px;}
.lscd{letter-spacing:0.132003px;}
.lsa2{letter-spacing:0.138003px;}
.ls9d{letter-spacing:0.144003px;}
.ls36{letter-spacing:0.146450px;}
.lsac{letter-spacing:0.150003px;}
.ls9e{letter-spacing:0.156003px;}
.ls8a{letter-spacing:0.159598px;}
.lsde{letter-spacing:0.162003px;}
.ls8f{letter-spacing:0.168003px;}
.ls14{letter-spacing:0.172128px;}
.ls32{letter-spacing:0.172163px;}
.ls9b{letter-spacing:0.174003px;}
.lsd5{letter-spacing:0.177664px;}
.lsd6{letter-spacing:0.178124px;}
.lsd4{letter-spacing:0.178398px;}
.lsd3{letter-spacing:0.178557px;}
.ls92{letter-spacing:0.180004px;}
.ls10{letter-spacing:0.185306px;}
.lscb{letter-spacing:0.186004px;}
.ls4a{letter-spacing:0.191284px;}
.lsda{letter-spacing:0.198004px;}
.lse7{letter-spacing:0.204004px;}
.ls21{letter-spacing:0.209217px;}
.lsdf{letter-spacing:0.210004px;}
.lsec{letter-spacing:0.216004px;}
.ls62{letter-spacing:0.221172px;}
.lsed{letter-spacing:0.222004px;}
.ls70{letter-spacing:0.225958px;}
.lsdb{letter-spacing:0.228005px;}
.lsa{letter-spacing:0.233127px;}
.lsdc{letter-spacing:0.234005px;}
.ls9a{letter-spacing:0.239784px;}
.ls98{letter-spacing:0.240005px;}
.ls30{letter-spacing:0.253462px;}
.lsc{letter-spacing:0.257038px;}
.ls9c{letter-spacing:0.270005px;}
.ls81{letter-spacing:0.282156px;}
.ls58{letter-spacing:0.294693px;}
.lsd{letter-spacing:0.302854px;}
.lsb{letter-spacing:0.304859px;}
.ls5{letter-spacing:0.306056px;}
.ls63{letter-spacing:0.316814px;}
.lsf{letter-spacing:0.328769px;}
.ls6d{letter-spacing:0.333558px;}
.ls84{letter-spacing:0.351480px;}
.ls48{letter-spacing:0.352680px;}
.ls1d{letter-spacing:0.400501px;}
.ls7f{letter-spacing:0.870379px;}
.ls7e{letter-spacing:1.817274px;}
.ls78{letter-spacing:2.927700px;}
.ls2f{letter-spacing:2.962800px;}
.ls4{letter-spacing:2.974363px;}
.ls8{letter-spacing:3.008532px;}
.ls1f{letter-spacing:3.009132px;}
.ls26{letter-spacing:3.064500px;}
.ls60{letter-spacing:3.449087px;}
.ls7{letter-spacing:3.535717px;}
.ls5e{letter-spacing:3.789811px;}
.ls1{letter-spacing:4.556681px;}
.ls6{letter-spacing:4.895608px;}
.ls6a{letter-spacing:6.228680px;}
.ls6b{letter-spacing:6.762610px;}
.ls37{letter-spacing:6.937536px;}
.ls38{letter-spacing:7.276463px;}
.ls15{letter-spacing:7.591577px;}
.ls31{letter-spacing:7.838190px;}
.ls42{letter-spacing:8.177733px;}
.ls35{letter-spacing:9.280733px;}
.ls39{letter-spacing:9.330944px;}
.ls3a{letter-spacing:9.619660px;}
.ls34{letter-spacing:9.669871px;}
.ls23{letter-spacing:10.054357px;}
.ls53{letter-spacing:10.563233px;}
.ls54{letter-spacing:10.837602px;}
.ls52{letter-spacing:10.918897px;}
.ls76{letter-spacing:12.395722px;}
.ls49{letter-spacing:12.481271px;}
.ls4d{letter-spacing:12.505181px;}
.ls2d{letter-spacing:13.322172px;}
.ls68{letter-spacing:13.348025px;}
.ls2{letter-spacing:13.967127px;}
.ls7d{letter-spacing:14.012139px;}
.ls79{letter-spacing:14.069527px;}
.ls3{letter-spacing:14.080102px;}
.ls5c{letter-spacing:14.202825px;}
.ls71{letter-spacing:14.213854px;}
.ls74{letter-spacing:14.222560px;}
.ls7b{letter-spacing:14.227342px;}
.ls77{letter-spacing:14.284730px;}
.ls83{letter-spacing:14.356465px;}
.ls75{letter-spacing:14.461675px;}
.ls73{letter-spacing:14.562103px;}
.ls67{letter-spacing:14.698968px;}
.ls6f{letter-spacing:14.891729px;}
.ls61{letter-spacing:15.224998px;}
.ls5b{letter-spacing:15.237679px;}
.ls2e{letter-spacing:15.238396px;}
.ls5a{letter-spacing:15.303731px;}
.ls59{letter-spacing:15.339297px;}
.ls22{letter-spacing:15.410304px;}
.ls4e{letter-spacing:15.565722px;}
.ls20{letter-spacing:15.751029px;}
.ls6c{letter-spacing:15.913922px;}
.ls27{letter-spacing:15.918402px;}
.ls64{letter-spacing:16.223261px;}
.ls6e{letter-spacing:16.252859px;}
.ls69{letter-spacing:16.331100px;}
.ls45{letter-spacing:17.896994px;}
.ls29{letter-spacing:17.944815px;}
.ls5d{letter-spacing:18.285540px;}
.ls5f{letter-spacing:18.626264px;}
.ls56{letter-spacing:18.662219px;}
.ls65{letter-spacing:30.037540px;}
.ls4b{letter-spacing:31.215132px;}
.ls2a{letter-spacing:31.585200px;}
.ls4f{letter-spacing:31.925400px;}
.ls24{letter-spacing:34.120255px;}
.ls66{letter-spacing:34.460979px;}
.ls4c{letter-spacing:34.616397px;}
.ls25{letter-spacing:37.180796px;}
.ls12{letter-spacing:37.688894px;}
.ls46{letter-spacing:42.775849px;}
.ls28{letter-spacing:52.148757px;}
.ls2c{letter-spacing:71.580894px;}
.ls43{letter-spacing:128.414320px;}
.ls44{letter-spacing:150.862436px;}
.ls82{letter-spacing:302.365700px;}
.ls41{letter-spacing:305.297250px;}
.lsf1{letter-spacing:315.360307px;}
.lse4{letter-spacing:527.398548px;}
.lsee{letter-spacing:713.445600px;}
.ls7a{letter-spacing:794.057874px;}
.ls50{letter-spacing:923.342573px;}
.lsf0{letter-spacing:946.350927px;}
.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;}
}
.ws238{word-spacing:-961.351227px;}
.ws201{word-spacing:-512.158243px;}
.ws23a{word-spacing:-330.360607px;}
.ws9b{word-spacing:-305.345073px;}
.ws9f{word-spacing:-150.910259px;}
.ws9e{word-spacing:-128.462143px;}
.ws1b1{word-spacing:-65.351066px;}
.wsb8{word-spacing:-56.464599px;}
.ws1fe{word-spacing:-46.350927px;}
.ws1a9{word-spacing:-46.200924px;}
.ws1f9{word-spacing:-46.032921px;}
.ws135{word-spacing:-27.036775px;}
.ws188{word-spacing:-25.236197px;}
.ws1ae{word-spacing:-23.460865px;}
.ws1ab{word-spacing:-23.452465px;}
.ws1ac{word-spacing:-23.410466px;}
.ws1af{word-spacing:-23.402066px;}
.ws1b0{word-spacing:-23.326467px;}
.ws1bd{word-spacing:-16.860337px;}
.ws1b5{word-spacing:-16.752335px;}
.ws1bf{word-spacing:-16.698334px;}
.ws1b9{word-spacing:-16.686334px;}
.ws1bb{word-spacing:-16.680334px;}
.ws1b7{word-spacing:-16.626333px;}
.ws1b8{word-spacing:-16.608332px;}
.ws1be{word-spacing:-16.602332px;}
.ws1bc{word-spacing:-16.560331px;}
.ws1c0{word-spacing:-15.240305px;}
.ws1c2{word-spacing:-15.180304px;}
.ws1c7{word-spacing:-15.156303px;}
.ws23c{word-spacing:-15.120302px;}
.ws1f4{word-spacing:-15.060301px;}
.ws1aa{word-spacing:-15.036301px;}
.ws1b3{word-spacing:-15.030301px;}
.ws1b2{word-spacing:-15.000300px;}
.ws1f3{word-spacing:-14.982300px;}
.ws1b4{word-spacing:-14.976300px;}
.ws1c5{word-spacing:-14.958299px;}
.ws1c6{word-spacing:-14.940299px;}
.ws1cb{word-spacing:-14.934299px;}
.ws23b{word-spacing:-14.916298px;}
.ws1f5{word-spacing:-14.910298px;}
.ws1f6{word-spacing:-14.880298px;}
.ws1c4{word-spacing:-14.820296px;}
.ws25{word-spacing:-14.089250px;}
.ws24{word-spacing:-13.688750px;}
.ws23{word-spacing:-13.682772px;}
.ws1a8{word-spacing:-13.295668px;}
.ws143{word-spacing:-12.320108px;}
.ws243{word-spacing:-11.999700px;}
.ws117{word-spacing:-11.635307px;}
.ws17a{word-spacing:-10.951467px;}
.ws18d{word-spacing:-10.946685px;}
.ws99{word-spacing:-10.941902px;}
.ws70{word-spacing:-10.114133px;}
.ws1ba{word-spacing:-10.008000px;}
.wsa6{word-spacing:-9.582001px;}
.ws1c1{word-spacing:-9.000000px;}
.ws200{word-spacing:-8.856000px;}
.ws1ca{word-spacing:-8.712000px;}
.ws1ff{word-spacing:-8.694000px;}
.ws1c3{word-spacing:-8.640000px;}
.ws1c9{word-spacing:-8.424000px;}
.ws1c8{word-spacing:-8.352000px;}
.ws9d{word-spacing:-8.225556px;}
.ws9a{word-spacing:-7.886013px;}
.ws1d6{word-spacing:-3.679200px;}
.ws153{word-spacing:-1.958305px;}
.ws4d{word-spacing:-1.512338px;}
.ws154{word-spacing:-1.501009px;}
.wsd1{word-spacing:-1.374853px;}
.ws100{word-spacing:-1.207479px;}
.wsdc{word-spacing:-1.171614px;}
.ws156{word-spacing:-1.156691px;}
.ws116{word-spacing:-1.133045px;}
.ws101{word-spacing:-1.117815px;}
.ws92{word-spacing:-1.111837px;}
.wsd2{word-spacing:-1.016195px;}
.ws73{word-spacing:-0.974352px;}
.ws8f{word-spacing:-0.956419px;}
.wsda{word-spacing:-0.926531px;}
.ws10f{word-spacing:-0.919647px;}
.ws10e{word-spacing:-0.909485px;}
.ws32{word-spacing:-0.878710px;}
.wsff{word-spacing:-0.854800px;}
.ws90{word-spacing:-0.830889px;}
.ws115{word-spacing:-0.807866px;}
.ws103{word-spacing:-0.783068px;}
.ws110{word-spacing:-0.782462px;}
.wsba{word-spacing:-0.771113px;}
.ws34{word-spacing:-0.663516px;}
.ws2d{word-spacing:-0.603740px;}
.ws136{word-spacing:-0.233127px;}
.ws1e3{word-spacing:-0.138003px;}
.ws1fd{word-spacing:-0.114002px;}
.ws19e{word-spacing:-0.108791px;}
.ws1fc{word-spacing:-0.108002px;}
.ws230{word-spacing:-0.102002px;}
.ws22f{word-spacing:-0.096002px;}
.ws12{word-spacing:-0.095642px;}
.ws218{word-spacing:-0.090002px;}
.ws222{word-spacing:-0.084002px;}
.ws1ad{word-spacing:-0.083999px;}
.ws1d8{word-spacing:-0.078002px;}
.ws1ee{word-spacing:-0.066001px;}
.ws1b6{word-spacing:-0.060001px;}
.ws1d{word-spacing:-0.059776px;}
.ws1e4{word-spacing:-0.054001px;}
.ws14b{word-spacing:-0.053800px;}
.ws7c{word-spacing:-0.053799px;}
.ws111{word-spacing:-0.050809px;}
.ws144{word-spacing:-0.048420px;}
.ws1dd{word-spacing:-0.048001px;}
.ws178{word-spacing:-0.047823px;}
.ws4{word-spacing:-0.043041px;}
.ws215{word-spacing:-0.042001px;}
.wsa3{word-spacing:-0.041843px;}
.ws96{word-spacing:-0.038258px;}
.wse9{word-spacing:-0.038251px;}
.ws1e9{word-spacing:-0.036001px;}
.ws18b{word-spacing:-0.030601px;}
.ws1f2{word-spacing:-0.030001px;}
.ws19f{word-spacing:-0.025106px;}
.ws1e8{word-spacing:-0.024000px;}
.ws1ed{word-spacing:-0.018000px;}
.ws1ef{word-spacing:-0.012000px;}
.ws1d5{word-spacing:-0.008400px;}
.ws50{word-spacing:0.000000px;}
.ws1f1{word-spacing:0.006000px;}
.ws1de{word-spacing:0.012000px;}
.ws1ce{word-spacing:0.014400px;}
.ws1d4{word-spacing:0.016800px;}
.ws223{word-spacing:0.018000px;}
.ws22b{word-spacing:0.024000px;}
.ws221{word-spacing:0.030001px;}
.ws1d3{word-spacing:0.033600px;}
.ws217{word-spacing:0.036001px;}
.ws247{word-spacing:0.038399px;}
.ws1f8{word-spacing:0.042001px;}
.ws225{word-spacing:0.048001px;}
.ws22c{word-spacing:0.054001px;}
.ws1d2{word-spacing:0.060001px;}
.ws224{word-spacing:0.066001px;}
.ws219{word-spacing:0.072001px;}
.ws1e5{word-spacing:0.078002px;}
.ws1f7{word-spacing:0.084002px;}
.ws1fa{word-spacing:0.090002px;}
.ws1ec{word-spacing:0.096002px;}
.ws1d1{word-spacing:0.102002px;}
.ws1eb{word-spacing:0.108002px;}
.ws1dc{word-spacing:0.114002px;}
.ws1cf{word-spacing:0.119999px;}
.ws214{word-spacing:0.120002px;}
.ws216{word-spacing:0.126003px;}
.ws1df{word-spacing:0.132003px;}
.ws1e1{word-spacing:0.138003px;}
.ws1e7{word-spacing:0.144003px;}
.ws1db{word-spacing:0.150003px;}
.ws1e2{word-spacing:0.156003px;}
.ws1d0{word-spacing:0.162003px;}
.ws1da{word-spacing:0.168003px;}
.ws1e6{word-spacing:0.174003px;}
.ws1e0{word-spacing:0.180004px;}
.ws78{word-spacing:0.185306px;}
.ws1f0{word-spacing:0.186004px;}
.ws1fb{word-spacing:0.192004px;}
.ws1d9{word-spacing:0.198004px;}
.ws5b{word-spacing:0.203239px;}
.ws14e{word-spacing:0.204438px;}
.ws1ea{word-spacing:0.216004px;}
.ws246{word-spacing:0.297593px;}
.ws245{word-spacing:0.302392px;}
.ws79{word-spacing:0.310836px;}
.ws1cc{word-spacing:0.345604px;}
.ws244{word-spacing:0.374391px;}
.ws1d7{word-spacing:0.496800px;}
.ws15f{word-spacing:0.543376px;}
.wsd9{word-spacing:0.591784px;}
.ws5f{word-spacing:0.699382px;}
.ws12a{word-spacing:0.818934px;}
.ws197{word-spacing:0.851249px;}
.wsee{word-spacing:0.884688px;}
.ws11a{word-spacing:0.974352px;}
.ws60{word-spacing:0.986307px;}
.ws17b{word-spacing:0.999501px;}
.wsa0{word-spacing:1.119058px;}
.wse5{word-spacing:1.129770px;}
.ws66{word-spacing:1.207479px;}
.wse6{word-spacing:1.225412px;}
.ws11b{word-spacing:1.237367px;}
.ws132{word-spacing:1.315076px;}
.ws1cd{word-spacing:1.391965px;}
.ws122{word-spacing:1.392785px;}
.ws6b{word-spacing:1.422674px;}
.ws87{word-spacing:1.488427px;}
.wse8{word-spacing:1.512338px;}
.wseb{word-spacing:1.548204px;}
.wsd6{word-spacing:1.560159px;}
.ws16a{word-spacing:1.560188px;}
.wsc2{word-spacing:1.566136px;}
.ws6c{word-spacing:1.578092px;}
.wsf1{word-spacing:1.584069px;}
.wsc3{word-spacing:1.643846px;}
.wse2{word-spacing:1.655801px;}
.ws40{word-spacing:1.661778px;}
.ws43{word-spacing:1.691666px;}
.wsef{word-spacing:1.703622px;}
.ws120{word-spacing:1.733510px;}
.wsf0{word-spacing:1.888928px;}
.wsc4{word-spacing:1.900883px;}
.ws76{word-spacing:1.918816px;}
.wse4{word-spacing:1.930771px;}
.ws53{word-spacing:1.984570px;}
.ws52{word-spacing:2.163898px;}
.ws15a{word-spacing:2.173504px;}
.ws108{word-spacing:2.181831px;}
.ws1c{word-spacing:2.229652px;}
.ws109{word-spacing:2.241607px;}
.ws8a{word-spacing:2.325294px;}
.ws4c{word-spacing:2.504623px;}
.ws12e{word-spacing:2.564399px;}
.ws150{word-spacing:2.566241px;}
.ws8e{word-spacing:2.570377px;}
.ws12f{word-spacing:2.582332px;}
.ws163{word-spacing:2.582381px;}
.wsdf{word-spacing:2.755683px;}
.ws2f{word-spacing:2.785571px;}
.wsa1{word-spacing:2.845310px;}
.wsde{word-spacing:2.845347px;}
.ws1a5{word-spacing:2.899706px;}
.ws3a{word-spacing:2.911101px;}
.ws17c{word-spacing:2.912421px;}
.wsa2{word-spacing:2.945733px;}
.ws1a7{word-spacing:2.954102px;}
.ws176{word-spacing:2.979373px;}
.wsa5{word-spacing:2.991760px;}
.ws194{word-spacing:2.993720px;}
.ws72{word-spacing:3.000765px;}
.ws181{word-spacing:3.012849px;}
.ws186{word-spacing:3.017631px;}
.ws1e{word-spacing:3.030653px;}
.ws175{word-spacing:3.036760px;}
.ws177{word-spacing:3.094148px;}
.wsa4{word-spacing:3.104736px;}
.ws17f{word-spacing:3.118060px;}
.ws196{word-spacing:3.122842px;}
.ws193{word-spacing:3.146753px;}
.ws185{word-spacing:3.170665px;}
.ws192{word-spacing:3.199359px;}
.ws191{word-spacing:3.204141px;}
.ws180{word-spacing:3.213706px;}
.ws18a{word-spacing:3.232835px;}
.ws179{word-spacing:3.242399px;}
.ws6e{word-spacing:3.251825px;}
.ws18f{word-spacing:3.256746px;}
.ws183{word-spacing:3.275876px;}
.ws184{word-spacing:3.280658px;}
.ws189{word-spacing:3.333263px;}
.ws187{word-spacing:3.357175px;}
.ws149{word-spacing:3.367855px;}
.ws190{word-spacing:3.438474px;}
.ws17e{word-spacing:3.500644px;}
.ws18e{word-spacing:3.562814px;}
.ws2e{word-spacing:3.586572px;}
.ws141{word-spacing:3.604573px;}
.ws118{word-spacing:3.612534px;}
.ws119{word-spacing:3.648101px;}
.ws1a4{word-spacing:3.665429px;}
.ws161{word-spacing:3.685273px;}
.ws16d{word-spacing:3.755212px;}
.ws160{word-spacing:3.771352px;}
.wsae{word-spacing:3.800528px;}
.ws16c{word-spacing:3.819772px;}
.ws15b{word-spacing:3.895091px;}
.ws146{word-spacing:3.900471px;}
.wsb5{word-spacing:3.927296px;}
.ws140{word-spacing:3.943511px;}
.ws98{word-spacing:3.952956px;}
.wsb2{word-spacing:4.022938px;}
.ws174{word-spacing:4.029170px;}
.ws169{word-spacing:4.083390px;}
.ws16e{word-spacing:4.094150px;}
.ws54{word-spacing:4.148468px;}
.ws13b{word-spacing:4.184334px;}
.ws91{word-spacing:4.190312px;}
.ws85{word-spacing:4.208244px;}
.ws13f{word-spacing:4.220200px;}
.wsb1{word-spacing:4.238133px;}
.ws158{word-spacing:4.244788px;}
.ws56{word-spacing:4.268021px;}
.ws35{word-spacing:4.285954px;}
.ws5c{word-spacing:4.387573px;}
.ws5d{word-spacing:4.471260px;}
.wse0{word-spacing:4.501148px;}
.ws21{word-spacing:4.548969px;}
.ws88{word-spacing:4.584835px;}
.ws11e{word-spacing:4.608745px;}
.wsa8{word-spacing:4.613475px;}
.ws93{word-spacing:4.626678px;}
.ws13c{word-spacing:4.752208px;}
.wsaa{word-spacing:4.786227px;}
.ws80{word-spacing:4.794051px;}
.ws75{word-spacing:4.841872px;}
.ws157{word-spacing:4.890384px;}
.ws27{word-spacing:4.949469px;}
.ws11f{word-spacing:4.985335px;}
.ws11d{word-spacing:5.009246px;}
.ws133{word-spacing:5.218462px;}
.ws7a{word-spacing:5.290194px;}
.ws1a{word-spacing:5.302149px;}
.wsd4{word-spacing:5.487455px;}
.ws134{word-spacing:5.583097px;}
.wsd3{word-spacing:5.612985px;}
.wsbf{word-spacing:5.630918px;}
.ws19c{word-spacing:5.673884px;}
.wsbd{word-spacing:5.696672px;}
.ws198{word-spacing:5.761754px;}
.wsbe{word-spacing:5.786336px;}
.ws124{word-spacing:5.816224px;}
.wsea{word-spacing:5.971642px;}
.wsad{word-spacing:5.975162px;}
.ws145{word-spacing:5.982516px;}
.ws19a{word-spacing:6.016995px;}
.ws3c{word-spacing:6.031419px;}
.ws12b{word-spacing:6.264546px;}
.wsb0{word-spacing:6.312367px;}
.ws10b{word-spacing:6.324322px;}
.ws6d{word-spacing:6.449852px;}
.wsc8{word-spacing:6.653091px;}
.wsfa{word-spacing:6.700912px;}
.ws58{word-spacing:6.742755px;}
.ws10a{word-spacing:6.760688px;}
.ws65{word-spacing:6.928062px;}
.wsc6{word-spacing:6.945994px;}
.ws113{word-spacing:6.955779px;}
.ws57{word-spacing:7.005771px;}
.ws112{word-spacing:7.006589px;}
.ws114{word-spacing:7.026912px;}
.wsac{word-spacing:7.250473px;}
.wsf7{word-spacing:7.328562px;}
.wsbc{word-spacing:7.394316px;}
.ws13a{word-spacing:7.669286px;}
.ws126{word-spacing:7.687219px;}
.ws171{word-spacing:7.698723px;}
.ws22{word-spacing:7.950235px;}
.ws139{word-spacing:7.980123px;}
.ws130{word-spacing:8.027944px;}
.wsed{word-spacing:8.225205px;}
.ws77{word-spacing:8.231183px;}
.ws59{word-spacing:8.302914px;}
.ws2c{word-spacing:8.350735px;}
.ws131{word-spacing:8.362690px;}
.ws63{word-spacing:8.380623px;}
.wsec{word-spacing:8.416489px;}
.ws5a{word-spacing:8.458332px;}
.ws137{word-spacing:8.542019px;}
.ws2a{word-spacing:8.703415px;}
.ws84{word-spacing:8.781124px;}
.wsab{word-spacing:8.820477px;}
.ws6a{word-spacing:8.894699px;}
.ws7b{word-spacing:8.906654px;}
.ws7d{word-spacing:8.972408px;}
.ws68{word-spacing:8.996318px;}
.wsc1{word-spacing:9.032184px;}
.ws42{word-spacing:9.056094px;}
.ws8b{word-spacing:9.127826px;}
.wsc5{word-spacing:9.187602px;}
.ws4e{word-spacing:9.265311px;}
.ws86{word-spacing:9.372908px;}
.ws1a0{word-spacing:9.556896px;}
.ws3d{word-spacing:9.558214px;}
.ws15d{word-spacing:9.657028px;}
.ws1a1{word-spacing:9.736820px;}
.ws128{word-spacing:9.803297px;}
.wsf2{word-spacing:9.982625px;}
.ws19d{word-spacing:10.146879px;}
.ws14c{word-spacing:10.404843px;}
.ws41{word-spacing:10.454857px;}
.wsd7{word-spacing:10.592343px;}
.wsd8{word-spacing:10.705917px;}
.wsf8{word-spacing:10.729828px;}
.ws155{word-spacing:10.840619px;}
.wse7{word-spacing:11.088485px;}
.wsc9{word-spacing:11.584628px;}
.ws37{word-spacing:11.704180px;}
.ws47{word-spacing:11.769934px;}
.wsca{word-spacing:11.895464px;}
.ws13e{word-spacing:11.967195px;}
.ws49{word-spacing:12.092725px;}
.ws81{word-spacing:12.385629px;}
.ws48{word-spacing:12.409539px;}
.ws1a3{word-spacing:12.473339px;}
.ws1a2{word-spacing:12.502629px;}
.wsdb{word-spacing:12.612778px;}
.ws46{word-spacing:12.774174px;}
.ws1a6{word-spacing:12.937794px;}
.ws67{word-spacing:13.049144px;}
.ws33{word-spacing:13.102943px;}
.ws64{word-spacing:13.204563px;}
.ws14{word-spacing:13.287392px;}
.ws13{word-spacing:13.628256px;}
.wsb{word-spacing:13.707701px;}
.wsdd{word-spacing:13.748526px;}
.ws107{word-spacing:13.826235px;}
.ws106{word-spacing:13.844168px;}
.ws18{word-spacing:13.849967px;}
.ws105{word-spacing:13.850146px;}
.ws8{word-spacing:13.879257px;}
.wsc{word-spacing:13.900178px;}
.ws10{word-spacing:13.912731px;}
.ws7{word-spacing:13.946205px;}
.wsd{word-spacing:13.979679px;}
.wsf{word-spacing:14.025707px;}
.ws51{word-spacing:14.071317px;}
.ws182{word-spacing:14.093438px;}
.ws45{word-spacing:14.131094px;}
.wse{word-spacing:14.142866px;}
.ws4f{word-spacing:14.180525px;}
.ws17{word-spacing:14.184709px;}
.ws195{word-spacing:14.241689px;}
.ws19{word-spacing:14.251658px;}
.wsa{word-spacing:14.322790px;}
.ws9{word-spacing:14.335343px;}
.ws125{word-spacing:14.394109px;}
.wscc{word-spacing:14.657124px;}
.ws61{word-spacing:14.920140px;}
.wsce{word-spacing:15.153267px;}
.ws19b{word-spacing:15.427440px;}
.ws3{word-spacing:15.427700px;}
.ws10c{word-spacing:15.432482px;}
.ws121{word-spacing:15.488013px;}
.wsd0{word-spacing:15.493991px;}
.wscd{word-spacing:15.553767px;}
.ws151{word-spacing:15.574984px;}
.ws28{word-spacing:15.589633px;}
.ws164{word-spacing:15.607264px;}
.ws94{word-spacing:15.628556px;}
.ws2{word-spacing:15.671597px;}
.ws10d{word-spacing:15.681162px;}
.ws3e{word-spacing:15.786894px;}
.ws199{word-spacing:15.791473px;}
.ws5{word-spacing:15.858107px;}
.ws159{word-spacing:15.881642px;}
.ws14a{word-spacing:15.924682px;}
.ws148{word-spacing:15.946201px;}
.ws15e{word-spacing:16.016141px;}
.ws95{word-spacing:16.020705px;}
.ws147{word-spacing:16.026901px;}
.ws152{word-spacing:16.086080px;}
.ws162{word-spacing:16.123740px;}
.ws3b{word-spacing:16.127619px;}
.ws15c{word-spacing:16.182920px;}
.ws142{word-spacing:16.220579px;}
.ws14f{word-spacing:16.365838px;}
.ws165{word-spacing:16.371218px;}
.wsa9{word-spacing:16.411372px;}
.ws16b{word-spacing:16.489577px;}
.ws7f{word-spacing:16.791135px;}
.ws7e{word-spacing:16.868844px;}
.ws12d{word-spacing:17.287277px;}
.ws12c{word-spacing:17.490516px;}
.ws62{word-spacing:17.598113px;}
.wsa7{word-spacing:17.710828px;}
.wsb6{word-spacing:17.717666px;}
.ws173{word-spacing:17.845327px;}
.wsf4{word-spacing:17.891017px;}
.ws55{word-spacing:18.052412px;}
.wsb4{word-spacing:18.165987px;}
.ws97{word-spacing:18.184265px;}
.ws39{word-spacing:18.213808px;}
.ws83{word-spacing:18.913190px;}
.ws3f{word-spacing:19.235981px;}
.wsd5{word-spacing:19.415310px;}
.ws8d{word-spacing:19.528885px;}
.ws29{word-spacing:19.857654px;}
.ws16{word-spacing:19.899497px;}
.ws168{word-spacing:19.932752px;}
.ws138{word-spacing:20.013072px;}
.ws166{word-spacing:20.158710px;}
.ws1b{word-spacing:20.258154px;}
.wse1{word-spacing:20.342461px;}
.ws172{word-spacing:20.347009px;}
.wsb3{word-spacing:20.474269px;}
.ws5e{word-spacing:20.537035px;}
.ws89{word-spacing:20.568418px;}
.wsfd{word-spacing:20.676588px;}
.ws36{word-spacing:20.681397px;}
.wsfb{word-spacing:20.760274px;}
.ws123{word-spacing:20.769269px;}
.wsc7{word-spacing:20.778207px;}
.ws4b{word-spacing:21.077088px;}
.wsc0{word-spacing:21.136864px;}
.wsb9{word-spacing:21.274350px;}
.wsf5{word-spacing:21.710716px;}
.wsaf{word-spacing:22.248702px;}
.ws2b{word-spacing:22.356299px;}
.ws38{word-spacing:22.469874px;}
.ws69{word-spacing:22.493784px;}
.ws8c{word-spacing:22.637247px;}
.ws14d{word-spacing:22.724951px;}
.ws44{word-spacing:22.732889px;}
.wsf3{word-spacing:23.498024px;}
.ws16f{word-spacing:23.671824px;}
.ws129{word-spacing:24.000144px;}
.ws30{word-spacing:24.215339px;}
.ws31{word-spacing:24.615839px;}
.ws26{word-spacing:24.681593px;}
.ws13d{word-spacing:24.992429px;}
.ws127{word-spacing:25.327176px;}
.wscb{word-spacing:25.536393px;}
.ws4a{word-spacing:26.474879px;}
.ws11{word-spacing:28.597078px;}
.wsb7{word-spacing:28.853972px;}
.wscf{word-spacing:28.937658px;}
.ws1f{word-spacing:29.439779px;}
.ws20{word-spacing:29.457711px;}
.ws6f{word-spacing:30.754855px;}
.ws74{word-spacing:30.987982px;}
.ws71{word-spacing:31.322729px;}
.ws6{word-spacing:31.456785px;}
.ws15{word-spacing:32.001947px;}
.ws82{word-spacing:32.440544px;}
.wsf6{word-spacing:32.566074px;}
.ws167{word-spacing:32.780096px;}
.wsf9{word-spacing:34.287628px;}
.wsfc{word-spacing:34.538688px;}
.ws170{word-spacing:35.852053px;}
.ws104{word-spacing:46.227062px;}
.ws102{word-spacing:46.228730px;}
.ws11c{word-spacing:46.247293px;}
.wsfe{word-spacing:46.473857px;}
.wse3{word-spacing:49.261566px;}
.ws0{word-spacing:71.599320px;}
.wsbb{word-spacing:86.866774px;}
.ws9c{word-spacing:125.965782px;}
.ws20b{word-spacing:257.651153px;}
.ws21b{word-spacing:257.735155px;}
.ws210{word-spacing:257.903158px;}
.ws205{word-spacing:258.287166px;}
.ws21c{word-spacing:261.071221px;}
.ws20d{word-spacing:261.167223px;}
.ws212{word-spacing:261.191224px;}
.ws20c{word-spacing:261.203224px;}
.ws211{word-spacing:261.209224px;}
.ws21e{word-spacing:261.239225px;}
.ws207{word-spacing:261.551231px;}
.ws206{word-spacing:261.599232px;}
.ws239{word-spacing:278.783576px;}
.ws21a{word-spacing:300.540011px;}
.ws208{word-spacing:300.564011px;}
.ws213{word-spacing:300.792016px;}
.ws203{word-spacing:300.852017px;}
.ws209{word-spacing:300.924018px;}
.ws20e{word-spacing:301.068021px;}
.ws20f{word-spacing:301.080021px;}
.ws21f{word-spacing:301.104022px;}
.ws20a{word-spacing:301.116022px;}
.ws220{word-spacing:301.128022px;}
.ws204{word-spacing:301.500030px;}
.ws202{word-spacing:303.636073px;}
.ws21d{word-spacing:313.512270px;}
.ws228{word-spacing:351.562800px;}
.ws227{word-spacing:351.922200px;}
.ws231{word-spacing:355.753115px;}
.ws226{word-spacing:355.882200px;}
.ws235{word-spacing:356.857137px;}
.ws236{word-spacing:360.037201px;}
.ws22a{word-spacing:385.042800px;}
.ws229{word-spacing:386.122200px;}
.ws232{word-spacing:395.605912px;}
.ws233{word-spacing:398.917978px;}
.ws237{word-spacing:400.046001px;}
.ws22d{word-spacing:407.612152px;}
.ws22e{word-spacing:407.972159px;}
.ws234{word-spacing:437.432748px;}
.ws18c{word-spacing:463.519645px;}
.ws17d{word-spacing:617.614916px;}
.ws23f{word-spacing:684.861600px;}
.ws241{word-spacing:685.581600px;}
.ws242{word-spacing:687.669600px;}
.ws23e{word-spacing:694.581600px;}
.ws23d{word-spacing:694.941600px;}
.ws240{word-spacing:695.301600px;}
.ws1{word-spacing:1304.683175px;}
._8c{margin-left:-946.590931px;}
._8d{margin-left:-315.510310px;}
._1e{margin-left:-305.383331px;}
._20{margin-left:-151.450659px;}
._1f{margin-left:-129.083842px;}
._25{margin-left:-42.781826px;}
._2c{margin-left:-13.354003px;}
._19{margin-left:-9.681313px;}
._1d{margin-left:-8.000788px;}
._4{margin-left:-6.402031px;}
._3{margin-left:-4.451642px;}
._d{margin-left:-3.310386px;}
._0{margin-left:-1.645111px;}
._1{width:1.564921px;}
._1a{width:2.811913px;}
._3c{width:10.669914px;}
._b{width:11.997083px;}
._16{width:13.256676px;}
._2{width:14.979722px;}
._18{width:16.043932px;}
._7{width:17.170156px;}
._e{width:19.105689px;}
._5{width:20.323908px;}
._17{width:21.758537px;}
._9{width:22.762777px;}
._12{width:24.454443px;}
._f{width:26.619608px;}
._14{width:27.999122px;}
._13{width:29.093077px;}
._a{width:30.276645px;}
._1c{width:31.345497px;}
._11{width:33.241545px;}
._6{width:35.082652px;}
._26{width:36.373818px;}
._10{width:37.479677px;}
._c{width:39.078133px;}
._15{width:41.366346px;}
._24{width:43.636626px;}
._8{width:44.772374px;}
._2b{width:47.641631px;}
._29{width:59.221497px;}
._2a{width:61.035046px;}
._28{width:62.586897px;}
._27{width:101.565741px;}
._21{width:107.453499px;}
._60{width:127.682554px;}
._5e{width:129.362587px;}
._55{width:132.488650px;}
._23{width:134.330025px;}
._22{width:137.390697px;}
._5b{width:157.419148px;}
._51{width:158.776916px;}
._53{width:159.921198px;}
._52{width:160.988558px;}
._56{width:162.363457px;}
._61{width:163.923278px;}
._62{width:187.777445px;}
._59{width:189.057931px;}
._57{width:190.103329px;}
._58{width:192.609852px;}
._5a{width:193.824246px;}
._5c{width:195.375246px;}
._63{width:218.620372px;}
._91{width:220.372407px;}
._5f{width:221.384387px;}
._54{width:222.562451px;}
._5d{width:224.112009px;}
._3b{width:243.768178px;}
._90{width:249.057120px;}
._8e{width:250.159974px;}
._45{width:272.591452px;}
._3f{width:274.427488px;}
._48{width:276.456607px;}
._2e{width:281.691817px;}
._89{width:291.311826px;}
._8a{width:293.027323px;}
._87{width:294.595958px;}
._84{width:296.040011px;}
._83{width:297.695954px;}
._85{width:299.515068px;}
._81{width:300.886337px;}
._44{width:302.010040px;}
._3e{width:303.810076px;}
._49{width:305.016576px;}
._50{width:308.513568px;}
._4a{width:316.344327px;}
._42{width:319.398388px;}
._3d{width:320.971498px;}
._46{width:327.618552px;}
._40{width:329.035659px;}
._4e{width:332.160643px;}
._4d{width:333.318666px;}
._4b{width:334.686694px;}
._4f{width:335.700714px;}
._43{width:358.196242px;}
._41{width:359.917198px;}
._47{width:361.099222px;}
._4c{width:363.937279px;}
._69{width:365.682203px;}
._66{width:367.390937px;}
._7e{width:368.824823px;}
._78{width:370.029049px;}
._7c{width:372.073441px;}
._7f{width:373.298576px;}
._76{width:374.387579px;}
._35{width:389.236179px;}
._88{width:392.000828px;}
._82{width:393.608950px;}
._39{width:395.209272px;}
._80{width:410.229315px;}
._7d{width:412.010240px;}
._79{width:414.374287px;}
._70{width:421.350048px;}
._64{width:423.256374px;}
._8b{width:425.928452px;}
._86{width:426.992540px;}
._77{width:452.518731px;}
._74{width:454.330165px;}
._7b{width:455.762545px;}
._7a{width:456.868248px;}
._3a{width:458.656046px;}
._75{width:460.070599px;}
._73{width:461.805744px;}
._37{width:470.348770px;}
._2d{width:475.284103px;}
._34{width:478.650842px;}
._36{width:487.273329px;}
._2f{width:490.998062px;}
._38{width:507.162915px;}
._33{width:533.537300px;}
._71{width:571.903151px;}
._6b{width:573.768428px;}
._6e{width:575.063501px;}
._6c{width:577.146653px;}
._6f{width:578.459569px;}
._6a{width:616.238703px;}
._67{width:617.480728px;}
._68{width:618.492370px;}
._65{width:619.567502px;}
._6d{width:621.090422px;}
._30{width:622.095931px;}
._72{width:631.410628px;}
._32{width:691.831429px;}
._8f{width:723.656473px;}
._31{width:731.233341px;}
._1b{width:923.093893px;}
.fc4{color:rgb(164,44,120);}
.fc6{color:rgb(170,170,170);}
.fc5{color:rgb(102,102,102);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(77,77,77);}
.fc1{color:rgb(164,46,121);}
.fc0{color:rgb(103,102,103);}
.fs9{font-size:23.910000px;}
.fse{font-size:30.600600px;}
.fsf{font-size:31.561800px;}
.fsa{font-size:31.876200px;}
.fsd{font-size:33.532800px;}
.fs16{font-size:36.000000px;}
.fs7{font-size:38.250600px;}
.fs6{font-size:39.451800px;}
.fs3{font-size:41.842800px;}
.fs1{font-size:47.823000px;}
.fs12{font-size:47.998800px;}
.fsc{font-size:50.809200px;}
.fsb{font-size:53.799600px;}
.fs5{font-size:59.776200px;}
.fs11{font-size:60.001200px;}
.fs8{font-size:62.766000px;}
.fs4{font-size:63.123000px;}
.fs0{font-size:71.732400px;}
.fs15{font-size:72.000000px;}
.fs14{font-size:83.998800px;}
.fs2{font-size:95.642400px;}
.fs10{font-size:96.001200px;}
.fs13{font-size:119.998800px;}
.y0{bottom:0.000000px;}
.y8e{bottom:31.889850px;}
.y1{bottom:33.930750px;}
.y1b4{bottom:65.970000px;}
.y1b5{bottom:66.240000px;}
.y113{bottom:66.330900px;}
.yc9{bottom:68.711937px;}
.y112{bottom:68.711958px;}
.y114{bottom:68.712000px;}
.y8d{bottom:68.712264px;}
.ybb{bottom:68.713664px;}
.y4e{bottom:70.753164px;}
.yba{bottom:82.914836px;}
.yc8{bottom:86.655258px;}
.y111{bottom:86.655279px;}
.y8c{bottom:86.655585px;}
.y4d{bottom:88.696485px;}
.yb9{bottom:97.116007px;}
.yc7{bottom:104.598579px;}
.y8b{bottom:104.598906px;}
.y4c{bottom:106.639806px;}
.yb8{bottom:111.317179px;}
.yc6{bottom:122.541900px;}
.yc4{bottom:122.542139px;}
.y8a{bottom:122.542227px;}
.y110{bottom:122.542320px;}
.y1f5{bottom:123.238709px;}
.y1ef{bottom:123.240209px;}
.y4b{bottom:124.583127px;}
.yb7{bottom:125.518350px;}
.yc5{bottom:128.919900px;}
.y132{bottom:131.641200px;}
.y170{bottom:134.020979px;}
.y131{bottom:134.022279px;}
.y133{bottom:134.022300px;}
.yb6{bottom:139.719900px;}
.yc3{bottom:140.400279px;}
.y89{bottom:140.400367px;}
.y10f{bottom:140.400460px;}
.y1f4{bottom:140.519054px;}
.y1ee{bottom:140.520554px;}
.y2e0{bottom:141.199502px;}
.y4a{bottom:142.526448px;}
.y16f{bottom:148.988028px;}
.y12f{bottom:149.584500px;}
.y2ba{bottom:150.616542px;}
.y130{bottom:151.965600px;}
.y12e{bottom:151.965823px;}
.y28d{bottom:154.871576px;}
.y32d{bottom:154.871726px;}
.y30e{bottom:154.874426px;}
.y25d{bottom:155.444448px;}
.y1f3{bottom:157.799400px;}
.y1ed{bottom:157.800554px;}
.yc2{bottom:158.343600px;}
.y88{bottom:158.343687px;}
.y10e{bottom:158.343781px;}
.y49{bottom:160.469769px;}
.y2df{bottom:160.639891px;}
.y16e{bottom:163.955076px;}
.y230{bottom:163.991909px;}
.y12c{bottom:169.909144px;}
.y2b9{bottom:170.056931px;}
.y12d{bottom:173.821496px;}
.y28c{bottom:174.311965px;}
.y32c{bottom:174.312115px;}
.y30d{bottom:174.314815px;}
.y25c{bottom:174.884837px;}
.y1f2{bottom:175.079746px;}
.y1ec{bottom:175.080554px;}
.y87{bottom:176.287008px;}
.y10d{bottom:176.287102px;}
.y47{bottom:178.327908px;}
.y48{bottom:178.668633px;}
.y16d{bottom:178.837391px;}
.y2de{bottom:180.080280px;}
.y22f{bottom:181.272254px;}
.yc1{bottom:182.239650px;}
.y12b{bottom:187.852464px;}
.y2b8{bottom:189.497320px;}
.y1f1{bottom:192.360091px;}
.y1eb{bottom:192.360900px;}
.y28b{bottom:193.752354px;}
.y32b{bottom:193.752504px;}
.y30c{bottom:193.755204px;}
.y16c{bottom:193.804439px;}
.y85{bottom:194.230329px;}
.y10c{bottom:194.230423px;}
.y25b{bottom:194.325226px;}
.y46{bottom:196.271229px;}
.y86{bottom:198.142681px;}
.y22e{bottom:198.552600px;}
.y2dd{bottom:199.520669px;}
.y12a{bottom:205.795785px;}
.y16b{bottom:208.771488px;}
.y2b7{bottom:208.937708px;}
.y1ea{bottom:209.639472px;}
.y1f0{bottom:209.640437px;}
.y43{bottom:211.833450px;}
.y84{bottom:212.173650px;}
.y10b{bottom:212.173744px;}
.y28a{bottom:213.192743px;}
.y32a{bottom:213.192893px;}
.y30b{bottom:213.195593px;}
.y25a{bottom:213.765614px;}
.y44{bottom:214.214550px;}
.y42{bottom:214.214617px;}
.y22d{bottom:215.832946px;}
.y2dc{bottom:218.961058px;}
.y45{bottom:220.592400px;}
.y16a{bottom:223.653803px;}
.y129{bottom:223.653925px;}
.y2b6{bottom:228.378097px;}
.y10a{bottom:230.117064px;}
.y41{bottom:232.157937px;}
.y289{bottom:232.633132px;}
.y329{bottom:232.633282px;}
.y30a{bottom:232.635982px;}
.y1e9{bottom:232.918438px;}
.y22c{bottom:233.113291px;}
.y259{bottom:233.206003px;}
.y83{bottom:236.069700px;}
.yc0{bottom:236.239998px;}
.y2db{bottom:238.401446px;}
.y169{bottom:238.620851px;}
.y128{bottom:241.597246px;}
.y2b5{bottom:247.818486px;}
.y109{bottom:248.060385px;}
.y40{bottom:250.101258px;}
.y22b{bottom:250.393637px;}
.y288{bottom:252.073520px;}
.y328{bottom:252.073670px;}
.y309{bottom:252.076370px;}
.y258{bottom:252.646392px;}
.y168{bottom:253.581952px;}
.ybf{bottom:254.183319px;}
.y2da{bottom:257.841835px;}
.y1e8{bottom:259.198963px;}
.y1df{bottom:259.199309px;}
.y127{bottom:259.540567px;}
.y108{bottom:266.003706px;}
.y2b4{bottom:267.258875px;}
.y22a{bottom:267.673982px;}
.y3f{bottom:268.044579px;}
.y167{bottom:268.549000px;}
.y287{bottom:271.513909px;}
.y327{bottom:271.514059px;}
.y308{bottom:271.516759px;}
.y257{bottom:272.086781px;}
.ybe{bottom:272.126639px;}
.y1e7{bottom:276.479309px;}
.y1de{bottom:276.479654px;}
.y2d9{bottom:277.282224px;}
.y126{bottom:277.483887px;}
.y166{bottom:283.431315px;}
.y107{bottom:283.861846px;}
.y229{bottom:284.954328px;}
.y3c{bottom:285.987879px;}
.y3e{bottom:285.987900px;}
.y2b3{bottom:286.699264px;}
.ybd{bottom:290.069960px;}
.y286{bottom:290.954298px;}
.y326{bottom:290.954448px;}
.y307{bottom:290.957148px;}
.y256{bottom:291.527170px;}
.y3d{bottom:292.365750px;}
.y1e6{bottom:293.759654px;}
.y1dd{bottom:293.760000px;}
.y125{bottom:295.427208px;}
.y2d8{bottom:296.722613px;}
.y165{bottom:298.398363px;}
.y82{bottom:300.275029px;}
.y3a{bottom:301.550100px;}
.y106{bottom:301.805167px;}
.y228{bottom:302.234674px;}
.y3b{bottom:303.931200px;}
.y39{bottom:303.931464px;}
.y2b2{bottom:306.139652px;}
.ybc{bottom:307.928100px;}
.y285{bottom:310.394687px;}
.y325{bottom:310.394837px;}
.y306{bottom:310.397537px;}
.y255{bottom:310.967558px;}
.y1dc{bottom:311.037370px;}
.y1e5{bottom:311.039654px;}
.y164{bottom:313.365412px;}
.y124{bottom:313.370529px;}
.y2d7{bottom:316.163002px;}
.y81{bottom:318.218350px;}
.y227{bottom:319.515019px;}
.y105{bottom:319.748487px;}
.y38{bottom:321.789604px;}
.y2b1{bottom:325.580041px;}
.y1db{bottom:328.317715px;}
.y1e4{bottom:328.318618px;}
.y163{bottom:328.332461px;}
.y284{bottom:329.835076px;}
.y324{bottom:329.835226px;}
.y305{bottom:329.837926px;}
.y254{bottom:330.407947px;}
.y123{bottom:331.313850px;}
.y2d6{bottom:335.603390px;}
.y80{bottom:336.161670px;}
.y226{bottom:336.795365px;}
.y104{bottom:337.691808px;}
.y37{bottom:339.732925px;}
.y162{bottom:343.214775px;}
.y2b0{bottom:345.020430px;}
.y1da{bottom:345.598061px;}
.y1e3{bottom:345.598963px;}
.y11a{bottom:347.813264px;}
.y283{bottom:349.275464px;}
.y323{bottom:349.275614px;}
.y304{bottom:349.278314px;}
.y253{bottom:349.848336px;}
.y225{bottom:354.075710px;}
.y7f{bottom:354.104991px;}
.y2d5{bottom:355.043779px;}
.y122{bottom:355.210050px;}
.y103{bottom:355.635129px;}
.y36{bottom:357.676246px;}
.y161{bottom:358.181824px;}
.y119{bottom:362.014436px;}
.y1d9{bottom:362.878406px;}
.y1e2{bottom:362.879309px;}
.y2af{bottom:364.460819px;}
.y282{bottom:368.715853px;}
.y322{bottom:368.716003px;}
.y303{bottom:368.718703px;}
.y252{bottom:369.288725px;}
.y101{bottom:371.197500px;}
.y224{bottom:371.356056px;}
.y7e{bottom:372.048312px;}
.y160{bottom:373.148873px;}
.y102{bottom:373.578450px;}
.y100{bottom:373.578579px;}
.y2d4{bottom:374.484168px;}
.y35{bottom:375.619567px;}
.y118{bottom:376.215607px;}
.y1d8{bottom:380.158752px;}
.y1e1{bottom:380.159654px;}
.y2ae{bottom:383.901208px;}
.y15f{bottom:388.115921px;}
.y281{bottom:388.156242px;}
.y321{bottom:388.156392px;}
.y302{bottom:388.159092px;}
.y223{bottom:388.636402px;}
.y251{bottom:388.729114px;}
.yfe{bottom:389.140800px;}
.y7d{bottom:389.991633px;}
.y117{bottom:390.416779px;}
.yff{bottom:391.521900px;}
.yfd{bottom:391.522056px;}
.y34{bottom:393.562887px;}
.y2d3{bottom:393.924557px;}
.y1e0{bottom:397.439074px;}
.y1d7{bottom:397.439098px;}
.y11f{bottom:400.621050px;}
.y15e{bottom:402.998236px;}
.y120{bottom:403.002150px;}
.y11e{bottom:403.002279px;}
.y2ad{bottom:403.341596px;}
.y116{bottom:404.617950px;}
.y222{bottom:405.916747px;}
.y280{bottom:407.596631px;}
.y320{bottom:407.596781px;}
.y301{bottom:407.599481px;}
.y7c{bottom:407.934954px;}
.y250{bottom:408.169502px;}
.y121{bottom:409.380150px;}
.yfc{bottom:409.465377px;}
.y33{bottom:411.506208px;}
.y2d2{bottom:413.364946px;}
.y15d{bottom:417.965284px;}
.y115{bottom:418.819650px;}
.y1d6{bottom:420.719563px;}
.y11d{bottom:420.945579px;}
.y2ac{bottom:422.781985px;}
.y221{bottom:423.197093px;}
.y7b{bottom:425.793094px;}
.y27f{bottom:427.037020px;}
.y31f{bottom:427.037170px;}
.y300{bottom:427.039870px;}
.yfb{bottom:427.323517px;}
.y24f{bottom:427.609891px;}
.y32{bottom:429.449529px;}
.y2d1{bottom:432.805334px;}
.y15c{bottom:432.932333px;}
.y11c{bottom:436.507800px;}
.y11b{bottom:438.888900px;}
.y220{bottom:440.477438px;}
.y2ab{bottom:442.222374px;}
.y7a{bottom:443.736414px;}
.yfa{bottom:445.266837px;}
.y27e{bottom:446.477408px;}
.y31e{bottom:446.477558px;}
.y2ff{bottom:446.480258px;}
.y24e{bottom:447.050280px;}
.y31{bottom:447.392850px;}
.y15b{bottom:447.814647px;}
.y66{bottom:450.284473px;}
.y2d0{bottom:452.245723px;}
.y1d5{bottom:453.000209px;}
.y1cc{bottom:453.000900px;}
.y21f{bottom:457.757784px;}
.y2aa{bottom:461.662763px;}
.y79{bottom:461.679735px;}
.y15a{bottom:462.781696px;}
.yf9{bottom:463.210158px;}
.y27d{bottom:465.917797px;}
.y31d{bottom:465.917947px;}
.y2fe{bottom:465.920647px;}
.y24d{bottom:466.490669px;}
.y64{bottom:468.227794px;}
.y1cb{bottom:470.279518px;}
.y1d4{bottom:470.280554px;}
.y30{bottom:471.288900px;}
.y2cf{bottom:471.686112px;}
.y65{bottom:472.054965px;}
.y21e{bottom:475.038130px;}
.y159{bottom:477.748745px;}
.y78{bottom:479.623056px;}
.y2a9{bottom:481.103152px;}
.yf8{bottom:481.153479px;}
.y27c{bottom:485.358186px;}
.y31c{bottom:485.358336px;}
.y2fd{bottom:485.361036px;}
.y24c{bottom:485.931058px;}
.y63{bottom:486.171114px;}
.y1ca{bottom:487.559863px;}
.y1d3{bottom:487.560900px;}
.y1b2{bottom:488.467573px;}
.y2ce{bottom:491.126501px;}
.y21d{bottom:492.318475px;}
.y158{bottom:492.715794px;}
.y77{bottom:497.566377px;}
.yf7{bottom:499.096800px;}
.yf5{bottom:499.096908px;}
.y1b1{bottom:500.457627px;}
.y2a8{bottom:500.543540px;}
.y62{bottom:504.029254px;}
.y27b{bottom:504.798575px;}
.y31b{bottom:504.798725px;}
.y2fc{bottom:504.801425px;}
.y1d2{bottom:504.839863px;}
.y1c9{bottom:504.840209px;}
.y24b{bottom:505.371446px;}
.yf6{bottom:505.474800px;}
.y157{bottom:507.598108px;}
.y21c{bottom:509.598821px;}
.y2cd{bottom:510.566890px;}
.y1b0{bottom:512.362950px;}
.y76{bottom:515.509698px;}
.yf4{bottom:517.040229px;}
.y2a7{bottom:519.983929px;}
.y342{bottom:521.339850px;}
.y60{bottom:521.972575px;}
.y1d1{bottom:522.120209px;}
.y1c8{bottom:522.120554px;}
.y156{bottom:522.565157px;}
.y27a{bottom:524.238964px;}
.y31a{bottom:524.239114px;}
.y2fb{bottom:524.241814px;}
.y24a{bottom:524.811835px;}
.y61{bottom:525.884927px;}
.y21b{bottom:526.879166px;}
.y2cc{bottom:530.007278px;}
.y75{bottom:533.453019px;}
.yf3{bottom:534.983748px;}
.y155{bottom:537.532205px;}
.y1d0{bottom:539.400554px;}
.y1c7{bottom:539.400900px;}
.y2a6{bottom:539.424318px;}
.y1af{bottom:539.491520px;}
.y5f{bottom:539.915896px;}
.y279{bottom:543.679352px;}
.y319{bottom:543.679502px;}
.y2fa{bottom:543.682202px;}
.y21a{bottom:544.159512px;}
.y249{bottom:544.252224px;}
.y2cb{bottom:549.447667px;}
.y74{bottom:551.396339px;}
.y154{bottom:552.499254px;}
.yf2{bottom:552.927069px;}
.y1ae{bottom:553.012278px;}
.y1c6{bottom:556.680554px;}
.y1cf{bottom:556.680900px;}
.y5e{bottom:557.859217px;}
.y2a5{bottom:558.864707px;}
.y341{bottom:561.389461px;}
.y219{bottom:561.439858px;}
.y278{bottom:563.119741px;}
.y318{bottom:563.119891px;}
.y2f9{bottom:563.122591px;}
.y248{bottom:563.692613px;}
.y2f{bottom:564.152344px;}
.y1ad{bottom:566.448150px;}
.y1ab{bottom:566.448906px;}
.y152{bottom:567.381568px;}
.y153{bottom:567.721851px;}
.y2ca{bottom:568.888056px;}
.y72{bottom:569.254479px;}
.yf1{bottom:570.785208px;}
.y1ac{bottom:571.550550px;}
.y73{bottom:573.166831px;}
.y1ce{bottom:573.960319px;}
.y1c5{bottom:573.960554px;}
.y5d{bottom:575.802537px;}
.y2a4{bottom:578.305096px;}
.y218{bottom:578.720203px;}
.y1aa{bottom:579.884778px;}
.y340{bottom:580.829461px;}
.y2e{bottom:582.095664px;}
.y151{bottom:582.348617px;}
.y277{bottom:582.560130px;}
.y317{bottom:582.560280px;}
.y2f8{bottom:582.562980px;}
.y247{bottom:583.133002px;}
.y71{bottom:587.197867px;}
.y2c9{bottom:588.328445px;}
.yf0{bottom:588.728529px;}
.y1c4{bottom:591.240311px;}
.y1cd{bottom:591.240665px;}
.y1a6{bottom:591.449700px;}
.y1a7{bottom:593.320650px;}
.y1a5{bottom:593.322494px;}
.y5c{bottom:593.745858px;}
.y217{bottom:596.000549px;}
.y1a8{bottom:596.467403px;}
.y150{bottom:597.315666px;}
.y2a3{bottom:597.745484px;}
.y1a9{bottom:598.423050px;}
.y2d{bottom:600.038985px;}
.y33f{bottom:600.268684px;}
.y276{bottom:602.000519px;}
.y316{bottom:602.000669px;}
.y2f7{bottom:602.003369px;}
.y246{bottom:602.573390px;}
.y6f{bottom:605.141187px;}
.yef{bottom:606.671850px;}
.y1a4{bottom:606.758366px;}
.y2c8{bottom:607.768834px;}
.y70{bottom:609.053540px;}
.y5b{bottom:611.689179px;}
.y14f{bottom:612.197980px;}
.y216{bottom:613.280894px;}
.y1c3{bottom:614.519276px;}
.y2a2{bottom:617.185873px;}
.y2c{bottom:617.982306px;}
.y33e{bottom:619.709072px;}
.y1a3{bottom:620.194237px;}
.y275{bottom:621.440908px;}
.y315{bottom:621.441058px;}
.y2f6{bottom:621.443758px;}
.y245{bottom:622.013779px;}
.y6d{bottom:623.084508px;}
.y6e{bottom:626.996861px;}
.y14e{bottom:627.165029px;}
.y5a{bottom:627.166350px;}
.y2c7{bottom:627.209222px;}
.y59{bottom:629.632500px;}
.y215{bottom:630.561240px;}
.yee{bottom:630.567900px;}
.y1a2{bottom:633.630109px;}
.y2b{bottom:635.925627px;}
.y2a1{bottom:636.626262px;}
.y33d{bottom:639.149461px;}
.y274{bottom:640.881296px;}
.y314{bottom:640.881446px;}
.y6c{bottom:641.027829px;}
.y244{bottom:641.454168px;}
.y14d{bottom:642.132078px;}
.y2c6{bottom:646.649611px;}
.y1a1{bottom:647.152063px;}
.y214{bottom:647.841586px;}
.y1c2{bottom:650.699954px;}
.y58{bottom:653.528550px;}
.y2a{bottom:653.783767px;}
.y2a0{bottom:656.066651px;}
.y14c{bottom:657.099126px;}
.y33c{bottom:658.589072px;}
.y6b{bottom:658.972153px;}
.yf{bottom:659.054083px;}
.y273{bottom:660.321685px;}
.y313{bottom:660.321835px;}
.y2f5{bottom:660.323035px;}
.y1a0{bottom:660.587934px;}
.y243{bottom:660.894557px;}
.y213{bottom:665.121931px;}
.y2c5{bottom:666.090000px;}
.y29{bottom:671.727087px;}
.y14b{bottom:671.981441px;}
.ye{bottom:674.021252px;}
.y19f{bottom:674.023806px;}
.y29f{bottom:675.507040px;}
.y1c1{bottom:675.509936px;}
.y69{bottom:676.915474px;}
.y33b{bottom:678.029461px;}
.yed{bottom:678.445179px;}
.y272{bottom:679.762074px;}
.y312{bottom:679.762224px;}
.y242{bottom:680.334946px;}
.y6a{bottom:680.742645px;}
.y212{bottom:682.402277px;}
.y14a{bottom:686.948489px;}
.y19e{bottom:687.459678px;}
.y28{bottom:689.670408px;}
.y68{bottom:694.858795px;}
.y29e{bottom:694.947428px;}
.yec{bottom:696.388567px;}
.y33a{bottom:697.468295px;}
.y2c4{bottom:698.370450px;}
.y2f4{bottom:699.202313px;}
.y271{bottom:699.202463px;}
.y311{bottom:699.202613px;}
.y211{bottom:699.682622px;}
.y241{bottom:699.775334px;}
.y19d{bottom:700.895550px;}
.y19b{bottom:700.895653px;}
.y57{bottom:701.490858px;}
.y149{bottom:701.915538px;}
.yd{bottom:705.401260px;}
.y19c{bottom:705.997950px;}
.y27{bottom:707.613729px;}
.y1c0{bottom:708.420594px;}
.y67{bottom:712.716935px;}
.y19a{bottom:714.331525px;}
.yeb{bottom:714.331887px;}
.y29d{bottom:714.387817px;}
.y148{bottom:716.882587px;}
.y339{bottom:716.908684px;}
.y210{bottom:716.962968px;}
.y2f3{bottom:718.642702px;}
.y270{bottom:718.642852px;}
.y310{bottom:718.643002px;}
.y240{bottom:719.215723px;}
.y56{bottom:719.434179px;}
.y25{bottom:723.175950px;}
.y24{bottom:725.557029px;}
.y26{bottom:725.557050px;}
.y1bf{bottom:731.699560px;}
.y147{bottom:731.764901px;}
.yea{bottom:732.275208px;}
.y29c{bottom:733.828206px;}
.y20f{bottom:734.243314px;}
.y338{bottom:736.349072px;}
.y55{bottom:737.377739px;}
.y2f2{bottom:738.083090px;}
.y26f{bottom:738.083240px;}
.y30f{bottom:738.083390px;}
.yc{bottom:738.226937px;}
.y23f{bottom:738.656112px;}
.y196{bottom:739.333350px;}
.y22{bottom:741.119250px;}
.y197{bottom:741.289350px;}
.y195{bottom:741.289728px;}
.y23{bottom:743.500350px;}
.y21{bottom:743.500479px;}
.y198{bottom:744.351218px;}
.y199{bottom:746.391750px;}
.y146{bottom:746.731950px;}
.ye9{bottom:750.218529px;}
.y20e{bottom:751.523659px;}
.y193{bottom:752.769600px;}
.yb{bottom:753.194106px;}
.y29b{bottom:753.268595px;}
.y192{bottom:754.725389px;}
.y194{bottom:754.725600px;}
.y1be{bottom:754.980025px;}
.y54{bottom:755.321060px;}
.yb5{bottom:755.746050px;}
.y337{bottom:755.789461px;}
.y2f1{bottom:757.523479px;}
.y26e{bottom:757.523629px;}
.y2c3{bottom:757.523779px;}
.y23e{bottom:758.096501px;}
.y1e{bottom:761.443779px;}
.y20{bottom:761.443800px;}
.ye7{bottom:765.780750px;}
.y1f{bottom:767.821650px;}
.ya{bottom:768.161276px;}
.ye8{bottom:768.161850px;}
.ye6{bottom:768.162069px;}
.y191{bottom:768.162456px;}
.y145{bottom:768.417000px;}
.y20d{bottom:768.804005px;}
.y29a{bottom:772.708984px;}
.y53{bottom:773.179200px;}
.y336{bottom:775.228684px;}
.y2f0{bottom:776.963868px;}
.y26d{bottom:776.964018px;}
.y2c2{bottom:776.964168px;}
.y23d{bottom:777.536890px;}
.y1bd{bottom:778.260491px;}
.y1d{bottom:779.387189px;}
.y190{bottom:781.598328px;}
.yb4{bottom:782.873700px;}
.yb2{bottom:782.874078px;}
.y9{bottom:783.042668px;}
.y20c{bottom:786.084350px;}
.ye5{bottom:786.105389px;}
.yb3{bottom:787.975950px;}
.y299{bottom:792.149372px;}
.y18e{bottom:793.163400px;}
.y335{bottom:794.669072px;}
.y18f{bottom:795.034200px;}
.y18d{bottom:795.034620px;}
.yb1{bottom:796.309950px;}
.yaf{bottom:796.310178px;}
.y2ef{bottom:796.404257px;}
.y26c{bottom:796.404407px;}
.y2c1{bottom:796.404557px;}
.y23c{bottom:796.977278px;}
.y1c{bottom:797.245329px;}
.y8{bottom:798.009837px;}
.yb0{bottom:801.412200px;}
.y1bc{bottom:801.539456px;}
.y20b{bottom:803.364696px;}
.ye4{bottom:803.963529px;}
.y18c{bottom:808.556573px;}
.yae{bottom:809.746050px;}
.yac{bottom:809.746153px;}
.y144{bottom:810.086317px;}
.y298{bottom:811.589761px;}
.y334{bottom:814.109461px;}
.yad{bottom:814.848600px;}
.y1b{bottom:815.188737px;}
.y2ee{bottom:815.844646px;}
.y26b{bottom:815.844796px;}
.y2c0{bottom:815.844946px;}
.y23b{bottom:816.417667px;}
.ye2{bottom:819.525750px;}
.y20a{bottom:820.645042px;}
.ye1{bottom:821.906808px;}
.ye3{bottom:821.906850px;}
.y18b{bottom:821.992445px;}
.yab{bottom:823.268106px;}
.y143{bottom:828.029637px;}
.y1bb{bottom:828.720000px;}
.y7{bottom:830.920246px;}
.y297{bottom:831.030150px;}
.y1a{bottom:833.132058px;}
.y333{bottom:833.548684px;}
.y2ed{bottom:835.285034px;}
.y26a{bottom:835.285184px;}
.y2bf{bottom:835.285334px;}
.y18a{bottom:835.428317px;}
.y23a{bottom:835.858056px;}
.yaa{bottom:836.703978px;}
.y209{bottom:837.925387px;}
.ye0{bottom:839.850129px;}
.y6{bottom:844.526478px;}
.y5{bottom:845.887415px;}
.y142{bottom:845.972958px;}
.y189{bottom:848.864189px;}
.ya9{bottom:850.139850px;}
.ya7{bottom:850.140606px;}
.y19{bottom:851.075379px;}
.y332{bottom:852.989072px;}
.y296{bottom:854.610150px;}
.y2ec{bottom:854.725423px;}
.y269{bottom:854.725573px;}
.y2be{bottom:854.725723px;}
.y208{bottom:855.205733px;}
.ya8{bottom:855.242250px;}
.y239{bottom:855.298445px;}
.yde{bottom:855.412350px;}
.ydd{bottom:857.793429px;}
.ydf{bottom:857.793450px;}
.ya6{bottom:863.576478px;}
.y140{bottom:863.916279px;}
.y141{bottom:864.257004px;}
.y18{bottom:869.018700px;}
.y1ba{bottom:869.430900px;}
.y331{bottom:872.429461px;}
.y207{bottom:872.486078px;}
.ydb{bottom:873.355650px;}
.y2eb{bottom:874.165812px;}
.y268{bottom:874.165962px;}
.y2bd{bottom:874.166112px;}
.y238{bottom:874.738834px;}
.ydc{bottom:875.736750px;}
.yda{bottom:875.736858px;}
.y188{bottom:875.737128px;}
.ya5{bottom:877.012350px;}
.ya3{bottom:877.012831px;}
.y13f{bottom:881.859600px;}
.ya4{bottom:882.114750px;}
.y295{bottom:886.890900px;}
.y187{bottom:889.173000px;}
.y185{bottom:889.174299px;}
.y206{bottom:889.766424px;}
.ya2{bottom:890.448703px;}
.y330{bottom:891.869850px;}
.y2ea{bottom:893.606201px;}
.y267{bottom:893.606351px;}
.y2bc{bottom:893.606501px;}
.yd9{bottom:893.680179px;}
.y237{bottom:894.179222px;}
.y186{bottom:894.275400px;}
.y4{bottom:896.656330px;}
.y184{bottom:902.695056px;}
.ya1{bottom:903.970656px;}
.y13e{bottom:905.755800px;}
.y205{bottom:907.046770px;}
.y17{bottom:908.647608px;}
.yd8{bottom:909.242400px;}
.y1b9{bottom:910.921062px;}
.yd7{bottom:911.623479px;}
.y3{bottom:911.623500px;}
.y2e9{bottom:913.046590px;}
.y266{bottom:913.046740px;}
.y2bb{bottom:913.046890px;}
.y236{bottom:913.619611px;}
.y32f{bottom:915.449850px;}
.y183{bottom:916.130928px;}
.ya0{bottom:917.406528px;}
.y15{bottom:922.253841px;}
.y16{bottom:922.338572px;}
.y14{bottom:923.529000px;}
.y204{bottom:924.327115px;}
.yd5{bottom:927.100650px;}
.yd6{bottom:929.566800px;}
.yd4{bottom:929.566935px;}
.y180{bottom:929.567178px;}
.y9f{bottom:930.842400px;}
.y9d{bottom:930.843534px;}
.y2e8{bottom:932.486978px;}
.y265{bottom:932.487128px;}
.y294{bottom:932.487278px;}
.y181{bottom:932.629046px;}
.y235{bottom:933.060000px;}
.y182{bottom:934.669200px;}
.y9e{bottom:935.944800px;}
.y203{bottom:941.607461px;}
.y17f{bottom:943.003806px;}
.y1b8{bottom:943.290000px;}
.y9c{bottom:944.279406px;}
.yd3{bottom:947.425075px;}
.y13d{bottom:947.425117px;}
.y32e{bottom:947.730900px;}
.y2e7{bottom:951.927367px;}
.y264{bottom:951.927517px;}
.y293{bottom:951.927667px;}
.y234{bottom:954.975150px;}
.y17d{bottom:956.439678px;}
.y233{bottom:956.640150px;}
.y9b{bottom:957.715278px;}
.y202{bottom:958.887806px;}
.y17e{bottom:959.586432px;}
.y13{bottom:962.051850px;}
.yd2{bottom:965.368396px;}
.y13c{bottom:965.368437px;}
.y17c{bottom:969.875550px;}
.y9a{bottom:971.151150px;}
.y98{bottom:971.152449px;}
.y2e6{bottom:971.367756px;}
.y263{bottom:971.367906px;}
.y292{bottom:971.368056px;}
.y201{bottom:976.168152px;}
.y99{bottom:976.253400px;}
.y17b{bottom:981.440850px;}
.y1b7{bottom:982.050450px;}
.yd1{bottom:983.311717px;}
.y13b{bottom:983.311758px;}
.y17a{bottom:983.397228px;}
.y97{bottom:984.588320px;}
.y232{bottom:988.920600px;}
.y2e5{bottom:990.808145px;}
.y262{bottom:990.808295px;}
.y291{bottom:990.808445px;}
.y200{bottom:993.448498px;}
.y178{bottom:994.877100px;}
.y179{bottom:996.833100px;}
.y177{bottom:996.833478px;}
.y96{bottom:998.109078px;}
.y1fc{bottom:999.449309px;}
.y1fa{bottom:999.449504px;}
.yd0{bottom:1001.255037px;}
.y13a{bottom:1001.255079px;}
.y4f{bottom:1004.826750px;}
.y175{bottom:1008.313350px;}
.y2e4{bottom:1010.248534px;}
.y261{bottom:1010.248684px;}
.y290{bottom:1010.248834px;}
.y176{bottom:1010.269350px;}
.y174{bottom:1010.269578px;}
.y1ff{bottom:1010.728843px;}
.y93{bottom:1011.544589px;}
.y95{bottom:1011.544950px;}
.y12{bottom:1013.245027px;}
.y94{bottom:1016.647200px;}
.y1f9{bottom:1016.729654px;}
.ycf{bottom:1019.198358px;}
.y138{bottom:1019.201719px;}
.y172{bottom:1021.834650px;}
.y173{bottom:1023.705450px;}
.y171{bottom:1023.705978px;}
.y139{bottom:1024.555950px;}
.y1fe{bottom:1028.009189px;}
.y2e3{bottom:1029.688922px;}
.y260{bottom:1029.689072px;}
.y28f{bottom:1029.689222px;}
.y231{bottom:1033.919307px;}
.y1f8{bottom:1034.009654px;}
.y52{bottom:1037.141679px;}
.y92{bottom:1037.141850px;}
.y137{bottom:1037.145040px;}
.y11{bottom:1040.117527px;}
.y1fd{bottom:1045.289534px;}
.y2e2{bottom:1049.129311px;}
.y25f{bottom:1049.129461px;}
.y28e{bottom:1049.129611px;}
.y1f7{bottom:1051.289654px;}
.y1fb{bottom:1051.290000px;}
.yce{bottom:1052.704050px;}
.y1b6{bottom:1053.360000px;}
.ycd{bottom:1055.085000px;}
.y51{bottom:1055.085129px;}
.y136{bottom:1055.088361px;}
.y90{bottom:1059.762300px;}
.ycc{bottom:1061.463000px;}
.y91{bottom:1063.078871px;}
.y10{bottom:1066.990650px;}
.y2e1{bottom:1068.569700px;}
.y25e{bottom:1068.569850px;}
.y1f6{bottom:1068.570000px;}
.ycb{bottom:1070.562300px;}
.y50{bottom:1073.028450px;}
.y134{bottom:1073.031682px;}
.yca{bottom:1073.032795px;}
.y8f{bottom:1073.963850px;}
.y135{bottom:1076.858853px;}
.y1b3{bottom:1114.920000px;}
.y2{bottom:1118.779650px;}
.h29{height:17.840150px;}
.h1a{height:21.328618px;}
.h23{height:23.000399px;}
.h16{height:24.321541px;}
.h1c{height:25.436649px;}
.hd{height:26.660668px;}
.h1b{height:29.164432px;}
.h26{height:31.802295px;}
.h4{height:31.926056px;}
.h28{height:32.089233px;}
.h19{height:33.332631px;}
.h18{height:35.414012px;}
.h27{height:35.745904px;}
.h2c{height:36.239094px;}
.h15{height:36.488949px;}
.h9{height:36.687767px;}
.h8{height:37.026694px;}
.h5{height:37.369805px;}
.h24{height:37.498321px;}
.h25{height:37.522115px;}
.h17{height:39.596506px;}
.hf{height:39.751173px;}
.h22{height:40.109830px;}
.h3a{height:40.318992px;}
.ha{height:41.664011px;}
.h21{height:41.664095px;}
.h20{height:42.345460px;}
.h7{height:43.995283px;}
.h13{height:44.425986px;}
.h1f{height:44.429208px;}
.hc{height:44.429642px;}
.he{height:44.429999px;}
.h11{height:44.430083px;}
.h12{height:44.430166px;}
.h1d{height:44.430333px;}
.h14{height:44.769933px;}
.h1e{height:44.770283px;}
.hb{height:44.770449px;}
.h2b{height:45.300906px;}
.h10{height:46.195776px;}
.h33{height:49.860185px;}
.h31{height:49.860997px;}
.h32{height:49.862057px;}
.h34{height:49.863354px;}
.h35{height:49.906522px;}
.h2e{height:50.401008px;}
.h37{height:50.402390px;}
.h38{height:50.403780px;}
.h36{height:50.404714px;}
.h2{height:52.795046px;}
.h30{height:54.360000px;}
.h39{height:57.061008px;}
.h2f{height:63.419094px;}
.h3{height:70.392806px;}
.h6{height:71.159202px;}
.h2a{height:72.480906px;}
.h2d{height:90.599094px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w1{width:914.250000px;}
.w0{width:914.512500px;}
.x0{left:0.000000px;}
.x1{left:67.266300px;}
.xc7{left:74.664750px;}
.xc0{left:77.641050px;}
.xc9{left:79.170738px;}
.x3c{left:82.233150px;}
.xcf{left:83.253600px;}
.xc3{left:86.229511px;}
.xc8{left:88.015950px;}
.xdb{left:90.000000px;}
.xc4{left:92.437950px;}
.xac{left:95.669400px;}
.xd0{left:97.965450px;}
.xc5{left:101.622150px;}
.xdd{left:104.998950px;}
.xad{left:106.299450px;}
.xc2{left:107.659997px;}
.xc6{left:112.252200px;}
.xa8{left:116.589150px;}
.xa9{left:120.586050px;}
.xca{left:126.453750px;}
.x3e{left:130.874151px;}
.xcb{left:133.936854px;}
.xd1{left:137.168700px;}
.xcc{left:140.145150px;}
.xe0{left:148.460700px;}
.xcd{left:150.775050px;}
.xd2{left:153.751325px;}
.xd3{left:159.959250px;}
.xd4{left:170.589300px;}
.x3f{left:177.641555px;}
.xce{left:181.219200px;}
.xdf{left:195.210000px;}
.x2{left:239.471389px;}
.x95{left:244.148400px;}
.x96{left:249.080700px;}
.x97{left:260.135850px;}
.x98{left:270.000450px;}
.xc1{left:273.742200px;}
.x59{left:275.953200px;}
.x99{left:279.184650px;}
.x5a{left:283.776750px;}
.xbd{left:285.731839px;}
.x9a{left:289.049250px;}
.xb1{left:291.600450px;}
.xb2{left:295.682400px;}
.x9b{left:298.233600px;}
.xbe{left:299.254050px;}
.x9c{left:303.165900px;}
.xb3{left:307.928100px;}
.x3{left:309.373650px;}
.x5b{left:313.370550px;}
.xb4{left:316.006800px;}
.x9d{left:317.962650px;}
.x9e{left:321.194250px;}
.x5c{left:325.105950px;}
.x9f{left:326.126550px;}
.xb5{left:333.269850px;}
.xa0{left:337.181700px;}
.xbf{left:338.542200px;}
.xa1{left:342.113850px;}
.x4{left:346.621064px;}
.xaa{left:349.172250px;}
.xa2{left:351.298200px;}
.x33{left:352.318650px;}
.xb6{left:355.125000px;}
.x5d{left:356.995800px;}
.xb7{left:359.121900px;}
.x6{left:360.567450px;}
.x34{left:363.799050px;}
.x7{left:365.584800px;}
.xb8{left:367.540800px;}
.x2f{left:369.071400px;}
.xa3{left:371.027400px;}
.xd5{left:374.088750px;}
.xa7{left:375.534450px;}
.x30{left:380.126550px;}
.x3d{left:382.677750px;}
.xb9{left:383.868300px;}
.x35{left:385.483950px;}
.xa4{left:386.674650px;}
.x31{left:389.480850px;}
.x36{left:390.926550px;}
.xba{left:393.052500px;}
.x37{left:395.943900px;}
.xbb{left:397.049400px;}
.x38{left:400.621050px;}
.x32{left:402.832050px;}
.xd6{left:404.277750px;}
.xbc{left:406.233750px;}
.xab{left:407.509350px;}
.xd7{left:409.125000px;}
.x39{left:410.740800px;}
.x8{left:412.101450px;}
.x9{left:417.203700px;}
.xa5{left:427.493550px;}
.xd8{left:428.854200px;}
.x5e{left:430.555050px;}
.xa6{left:432.425850px;}
.xd9{left:435.487200px;}
.x5f{left:438.378600px;}
.xdc{left:457.514850px;}
.x40{left:470.688398px;}
.xde{left:472.514394px;}
.x94{left:477.751950px;}
.x7f{left:480.728250px;}
.xaf{left:482.684286px;}
.x41{left:485.738551px;}
.x93{left:489.317250px;}
.x16{left:490.422750px;}
.x5{left:494.165054px;}
.x17{left:495.440100px;}
.x60{left:498.246450px;}
.x80{left:502.328400px;}
.x89{left:508.621200px;}
.x43{left:509.895809px;}
.x18{left:510.917250px;}
.x81{left:513.893700px;}
.x82{left:518.911050px;}
.x19{left:520.951950px;}
.xae{left:524.525128px;}
.x6b{left:531.411900px;}
.x1a{left:532.517400px;}
.x6c{left:536.429100px;}
.x3a{left:538.555765px;}
.x6d{left:541.106400px;}
.x1b{left:542.637000px;}
.x6e{left:546.208650px;}
.x1c{left:553.522050px;}
.x8a{left:554.967750px;}
.x83{left:556.753650px;}
.x1d{left:558.539400px;}
.x8b{left:559.985100px;}
.x84{left:561.770850px;}
.x61{left:563.982000px;}
.x57{left:565.257600px;}
.x1e{left:570.104850px;}
.xb0{left:573.424036px;}
.x1f{left:575.122200px;}
.x46{left:577.163100px;}
.x20{left:580.649700px;}
.x21{left:585.667050px;}
.xda{left:587.160000px;}
.x8c{left:590.259150px;}
.x6f{left:593.065500px;}
.x62{left:594.256050px;}
.x8d{left:595.276500px;}
.x58{left:598.848150px;}
.x22{left:601.144200px;}
.x23{left:606.161550px;}
.x70{left:609.648150px;}
.x3b{left:611.434908px;}
.x71{left:614.665500px;}
.x42{left:616.706912px;}
.x24{left:617.727000px;}
.x25{left:622.744200px;}
.x72{left:624.785250px;}
.x47{left:627.421500px;}
.x8e{left:628.526850px;}
.x63{left:632.438850px;}
.x26{left:634.309650px;}
.x48{left:636.605700px;}
.x27{left:639.327000px;}
.x73{left:641.027700px;}
.x49{left:646.555350px;}
.x8f{left:650.977350px;}
.x4a{left:655.739550px;}
.x4b{left:660.671850px;}
.x28{left:661.777350px;}
.x29{left:666.794700px;}
.xa{left:668.155350px;}
.x4c{left:670.451400px;}
.x64{left:671.982150px;}
.xb{left:673.257750px;}
.x4d{left:675.383700px;}
.x2e{left:677.509800px;}
.x4e{left:678.615150px;}
.x65{left:679.805850px;}
.x4f{left:683.547450px;}
.xc{left:684.823050px;}
.xd{left:689.925450px;}
.x50{left:694.602600px;}
.x51{left:699.534900px;}
.xe{left:704.977500px;}
.x52{left:708.719250px;}
.xf{left:709.994850px;}
.x2a{left:711.100350px;}
.x53{left:713.736450px;}
.x2b{left:716.202600px;}
.x74{left:719.944500px;}
.x85{left:721.730250px;}
.x54{left:723.516150px;}
.x75{left:725.046750px;}
.x86{left:726.832650px;}
.x10{left:727.853100px;}
.x66{left:729.808950px;}
.x11{left:732.955500px;}
.x67{left:734.826300px;}
.x76{left:736.527150px;}
.x87{left:738.312900px;}
.x77{left:741.629400px;}
.x12{left:744.520800px;}
.x68{left:746.391600px;}
.x88{left:748.177500px;}
.x13{left:749.623200px;}
.x69{left:751.408950px;}
.x78{left:753.109800px;}
.x90{left:756.256200px;}
.x2c{left:757.446750px;}
.x6a{left:762.974400px;}
.x14{left:764.590050px;}
.x2d{left:767.141400px;}
.x79{left:768.331950px;}
.x15{left:769.692600px;}
.x91{left:772.839000px;}
.x45{left:777.347059px;}
.x7a{left:780.237450px;}
.x55{left:784.914600px;}
.x56{left:789.846900px;}
.x7b{left:806.939700px;}
.x7c{left:812.042250px;}
.x92{left:816.889500px;}
.x7d{left:821.991900px;}
.x7e{left:827.009250px;}
.x44{left:836.109116px;}
@media print{
.v3{vertical-align:-30.538667pt;}
.vb{vertical-align:-20.160000pt;}
.v9{vertical-align:-19.049067pt;}
.v10{vertical-align:-17.760000pt;}
.v6{vertical-align:-13.910586pt;}
.v8{vertical-align:-11.792251pt;}
.vc{vertical-align:-5.917905pt;}
.v5{vertical-align:-1.211464pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.838887pt;}
.vd{vertical-align:5.920000pt;}
.v7{vertical-align:8.466133pt;}
.va{vertical-align:15.418111pt;}
.ve{vertical-align:17.764915pt;}
.v4{vertical-align:19.351156pt;}
.vf{vertical-align:23.680000pt;}
.v2{vertical-align:30.540883pt;}
.ls1a{letter-spacing:-12.170114pt;}
.ls1b{letter-spacing:-11.867124pt;}
.ls3b{letter-spacing:-1.764062pt;}
.lseb{letter-spacing:-1.600000pt;}
.ls3c{letter-spacing:-1.365554pt;}
.lsae{letter-spacing:-1.258635pt;}
.lsb8{letter-spacing:-0.953600pt;}
.lsb7{letter-spacing:-0.761600pt;}
.lsad{letter-spacing:-0.674142pt;}
.lsdd{letter-spacing:-0.576012pt;}
.lsc9{letter-spacing:-0.576000pt;}
.lsca{letter-spacing:-0.512000pt;}
.lsf2{letter-spacing:-0.439456pt;}
.lsb2{letter-spacing:-0.426675pt;}
.lsf5{letter-spacing:-0.375457pt;}
.lsf6{letter-spacing:-0.371191pt;}
.lsaf{letter-spacing:-0.354124pt;}
.lsc3{letter-spacing:-0.320000pt;}
.lsf3{letter-spacing:-0.298659pt;}
.lse1{letter-spacing:-0.293339pt;}
.lse3{letter-spacing:-0.272000pt;}
.lscc{letter-spacing:-0.256000pt;}
.lsc4{letter-spacing:-0.160003pt;}
.lsf8{letter-spacing:-0.140796pt;}
.lsd8{letter-spacing:-0.133336pt;}
.lsc6{letter-spacing:-0.128000pt;}
.lsf7{letter-spacing:-0.123730pt;}
.lsc2{letter-spacing:-0.106669pt;}
.lsf4{letter-spacing:-0.106664pt;}
.lsc8{letter-spacing:-0.096000pt;}
.lsc7{letter-spacing:-0.085335pt;}
.lsd9{letter-spacing:-0.080002pt;}
.lse5{letter-spacing:-0.074668pt;}
.lsb9{letter-spacing:-0.069335pt;}
.lsc1{letter-spacing:-0.064001pt;}
.lsb4{letter-spacing:-0.059732pt;}
.lsc5{letter-spacing:-0.058668pt;}
.lsbc{letter-spacing:-0.053334pt;}
.lsc0{letter-spacing:-0.048001pt;}
.lsba{letter-spacing:-0.042668pt;}
.lsb0{letter-spacing:-0.042666pt;}
.lsb1{letter-spacing:-0.037334pt;}
.lsbe{letter-spacing:-0.032001pt;}
.lsb3{letter-spacing:-0.026667pt;}
.lsb6{letter-spacing:-0.022400pt;}
.lsbf{letter-spacing:-0.021334pt;}
.ls17{letter-spacing:-0.017003pt;}
.lsbd{letter-spacing:-0.016000pt;}
.lsbb{letter-spacing:-0.010667pt;}
.ls3e{letter-spacing:-0.008502pt;}
.lse2{letter-spacing:-0.005333pt;}
.ls1c{letter-spacing:-0.005313pt;}
.ls3f{letter-spacing:-0.004782pt;}
.ls40{letter-spacing:-0.004516pt;}
.ls16{letter-spacing:-0.004251pt;}
.ls18{letter-spacing:-0.003719pt;}
.ls3d{letter-spacing:-0.002833pt;}
.ls19{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.003400pt;}
.ls8e{letter-spacing:0.005333pt;}
.ls13{letter-spacing:0.005579pt;}
.ls0{letter-spacing:0.006376pt;}
.lse{letter-spacing:0.010627pt;}
.ls9f{letter-spacing:0.010667pt;}
.ls2b{letter-spacing:0.012753pt;}
.ls88{letter-spacing:0.014933pt;}
.ls85{letter-spacing:0.016000pt;}
.ls7c{letter-spacing:0.016320pt;}
.ls9{letter-spacing:0.021254pt;}
.lsa0{letter-spacing:0.021334pt;}
.ls91{letter-spacing:0.026667pt;}
.ls51{letter-spacing:0.027098pt;}
.ls89{letter-spacing:0.029866pt;}
.ls87{letter-spacing:0.032001pt;}
.lsa4{letter-spacing:0.037334pt;}
.ls72{letter-spacing:0.038258pt;}
.ls80{letter-spacing:0.042509pt;}
.lsef{letter-spacing:0.042666pt;}
.lsd0{letter-spacing:0.042668pt;}
.lsb5{letter-spacing:0.044799pt;}
.lse0{letter-spacing:0.048001pt;}
.ls57{letter-spacing:0.049680pt;}
.lsaa{letter-spacing:0.050122pt;}
.lsd2{letter-spacing:0.051005pt;}
.lsab{letter-spacing:0.051131pt;}
.lsa9{letter-spacing:0.051670pt;}
.ls97{letter-spacing:0.052150pt;}
.ls8c{letter-spacing:0.052266pt;}
.lscf{letter-spacing:0.052323pt;}
.ls96{letter-spacing:0.052445pt;}
.lsa8{letter-spacing:0.052635pt;}
.ls99{letter-spacing:0.053001pt;}
.ls11{letter-spacing:0.053134pt;}
.ls86{letter-spacing:0.053334pt;}
.lsa6{letter-spacing:0.054115pt;}
.lsa7{letter-spacing:0.054169pt;}
.lsa5{letter-spacing:0.054663pt;}
.lsd1{letter-spacing:0.055001pt;}
.lsea{letter-spacing:0.058668pt;}
.ls94{letter-spacing:0.064001pt;}
.lsd7{letter-spacing:0.069335pt;}
.ls47{letter-spacing:0.074388pt;}
.ls93{letter-spacing:0.074668pt;}
.lse6{letter-spacing:0.080002pt;}
.lse9{letter-spacing:0.085335pt;}
.ls8b{letter-spacing:0.089599pt;}
.lse8{letter-spacing:0.090668pt;}
.ls90{letter-spacing:0.096002pt;}
.ls8d{letter-spacing:0.097065pt;}
.ls55{letter-spacing:0.099360pt;}
.lsce{letter-spacing:0.101335pt;}
.lsa1{letter-spacing:0.106606pt;}
.ls95{letter-spacing:0.106669pt;}
.lsa3{letter-spacing:0.107324pt;}
.ls33{letter-spacing:0.110524pt;}
.lscd{letter-spacing:0.117336pt;}
.lsa2{letter-spacing:0.122669pt;}
.ls9d{letter-spacing:0.128003pt;}
.ls36{letter-spacing:0.130178pt;}
.lsac{letter-spacing:0.133336pt;}
.ls9e{letter-spacing:0.138669pt;}
.ls8a{letter-spacing:0.141865pt;}
.lsde{letter-spacing:0.144003pt;}
.ls8f{letter-spacing:0.149336pt;}
.ls14{letter-spacing:0.153002pt;}
.ls32{letter-spacing:0.153034pt;}
.ls9b{letter-spacing:0.154670pt;}
.lsd5{letter-spacing:0.157923pt;}
.lsd6{letter-spacing:0.158333pt;}
.lsd4{letter-spacing:0.158576pt;}
.lsd3{letter-spacing:0.158717pt;}
.ls92{letter-spacing:0.160003pt;}
.ls10{letter-spacing:0.164717pt;}
.lscb{letter-spacing:0.165337pt;}
.ls4a{letter-spacing:0.170030pt;}
.lsda{letter-spacing:0.176004pt;}
.lse7{letter-spacing:0.181337pt;}
.ls21{letter-spacing:0.185970pt;}
.lsdf{letter-spacing:0.186670pt;}
.lsec{letter-spacing:0.192004pt;}
.ls62{letter-spacing:0.196597pt;}
.lsed{letter-spacing:0.197337pt;}
.ls70{letter-spacing:0.200852pt;}
.lsdb{letter-spacing:0.202671pt;}
.lsa{letter-spacing:0.207224pt;}
.lsdc{letter-spacing:0.208004pt;}
.ls9a{letter-spacing:0.213141pt;}
.ls98{letter-spacing:0.213338pt;}
.ls30{letter-spacing:0.225299pt;}
.lsc{letter-spacing:0.228478pt;}
.ls9c{letter-spacing:0.240005pt;}
.ls81{letter-spacing:0.250805pt;}
.ls58{letter-spacing:0.261950pt;}
.lsd{letter-spacing:0.269204pt;}
.lsb{letter-spacing:0.270985pt;}
.ls5{letter-spacing:0.272049pt;}
.ls63{letter-spacing:0.281612pt;}
.lsf{letter-spacing:0.292239pt;}
.ls6d{letter-spacing:0.296496pt;}
.ls84{letter-spacing:0.312426pt;}
.ls48{letter-spacing:0.313493pt;}
.ls1d{letter-spacing:0.356000pt;}
.ls7f{letter-spacing:0.773670pt;}
.ls7e{letter-spacing:1.615355pt;}
.ls78{letter-spacing:2.602400pt;}
.ls2f{letter-spacing:2.633600pt;}
.ls4{letter-spacing:2.643878pt;}
.ls8{letter-spacing:2.674251pt;}
.ls1f{letter-spacing:2.674784pt;}
.ls26{letter-spacing:2.724000pt;}
.ls60{letter-spacing:3.065855pt;}
.ls7{letter-spacing:3.142859pt;}
.ls5e{letter-spacing:3.368721pt;}
.ls1{letter-spacing:4.050383pt;}
.ls6{letter-spacing:4.351651pt;}
.ls6a{letter-spacing:5.536604pt;}
.ls6b{letter-spacing:6.011209pt;}
.ls37{letter-spacing:6.166699pt;}
.ls38{letter-spacing:6.467967pt;}
.ls15{letter-spacing:6.748069pt;}
.ls31{letter-spacing:6.967280pt;}
.ls42{letter-spacing:7.269096pt;}
.ls35{letter-spacing:8.249540pt;}
.ls39{letter-spacing:8.294173pt;}
.ls3a{letter-spacing:8.550809pt;}
.ls34{letter-spacing:8.595441pt;}
.ls23{letter-spacing:8.937206pt;}
.ls53{letter-spacing:9.389540pt;}
.ls54{letter-spacing:9.633424pt;}
.ls52{letter-spacing:9.705686pt;}
.ls76{letter-spacing:11.018419pt;}
.ls49{letter-spacing:11.094463pt;}
.ls4d{letter-spacing:11.115716pt;}
.ls2d{letter-spacing:11.841931pt;}
.ls68{letter-spacing:11.864912pt;}
.ls2{letter-spacing:12.415224pt;}
.ls7d{letter-spacing:12.455235pt;}
.ls79{letter-spacing:12.506246pt;}
.ls3{letter-spacing:12.515646pt;}
.ls5c{letter-spacing:12.624733pt;}
.ls71{letter-spacing:12.634537pt;}
.ls74{letter-spacing:12.642276pt;}
.ls7b{letter-spacing:12.646527pt;}
.ls77{letter-spacing:12.697538pt;}
.ls83{letter-spacing:12.761302pt;}
.ls75{letter-spacing:12.854822pt;}
.ls73{letter-spacing:12.944092pt;}
.ls67{letter-spacing:13.065749pt;}
.ls6f{letter-spacing:13.237093pt;}
.ls61{letter-spacing:13.533332pt;}
.ls5b{letter-spacing:13.544604pt;}
.ls2e{letter-spacing:13.545241pt;}
.ls5a{letter-spacing:13.603316pt;}
.ls59{letter-spacing:13.634931pt;}
.ls22{letter-spacing:13.698048pt;}
.ls4e{letter-spacing:13.836198pt;}
.ls20{letter-spacing:14.000914pt;}
.ls6c{letter-spacing:14.145708pt;}
.ls27{letter-spacing:14.149691pt;}
.ls64{letter-spacing:14.420676pt;}
.ls6e{letter-spacing:14.446986pt;}
.ls69{letter-spacing:14.516533pt;}
.ls45{letter-spacing:15.908439pt;}
.ls29{letter-spacing:15.950947pt;}
.ls5d{letter-spacing:16.253813pt;}
.ls5f{letter-spacing:16.556679pt;}
.ls56{letter-spacing:16.588639pt;}
.ls65{letter-spacing:26.700036pt;}
.ls4b{letter-spacing:27.746784pt;}
.ls2a{letter-spacing:28.075733pt;}
.ls4f{letter-spacing:28.378133pt;}
.ls24{letter-spacing:30.329116pt;}
.ls66{letter-spacing:30.631982pt;}
.ls4c{letter-spacing:30.770131pt;}
.ls25{letter-spacing:33.049597pt;}
.ls12{letter-spacing:33.501239pt;}
.ls46{letter-spacing:38.022977pt;}
.ls28{letter-spacing:46.354451pt;}
.ls2c{letter-spacing:63.627461pt;}
.ls43{letter-spacing:114.146062pt;}
.ls44{letter-spacing:134.099943pt;}
.ls82{letter-spacing:268.769511pt;}
.ls41{letter-spacing:271.375333pt;}
.lsf1{letter-spacing:280.320273pt;}
.lse4{letter-spacing:468.798709pt;}
.lsee{letter-spacing:634.173867pt;}
.ls7a{letter-spacing:705.829222pt;}
.ls50{letter-spacing:820.748953pt;}
.lsf0{letter-spacing:841.200824pt;}
.ws238{word-spacing:-854.534424pt;}
.ws201{word-spacing:-455.251772pt;}
.ws23a{word-spacing:-293.653873pt;}
.ws9b{word-spacing:-271.417842pt;}
.ws9f{word-spacing:-134.142452pt;}
.ws9e{word-spacing:-114.188571pt;}
.ws1b1{word-spacing:-58.089837pt;}
.wsb8{word-spacing:-50.190754pt;}
.ws1fe{word-spacing:-41.200824pt;}
.ws1a9{word-spacing:-41.067488pt;}
.ws1f9{word-spacing:-40.918152pt;}
.ws135{word-spacing:-24.032689pt;}
.ws188{word-spacing:-22.432175pt;}
.ws1ae{word-spacing:-20.854102pt;}
.ws1ab{word-spacing:-20.846636pt;}
.ws1ac{word-spacing:-20.809303pt;}
.ws1af{word-spacing:-20.801836pt;}
.ws1b0{word-spacing:-20.734637pt;}
.ws1bd{word-spacing:-14.986966pt;}
.ws1b5{word-spacing:-14.890964pt;}
.ws1bf{word-spacing:-14.842964pt;}
.ws1b9{word-spacing:-14.832297pt;}
.ws1bb{word-spacing:-14.826963pt;}
.ws1b7{word-spacing:-14.778962pt;}
.ws1b8{word-spacing:-14.762962pt;}
.ws1be{word-spacing:-14.757628pt;}
.ws1bc{word-spacing:-14.720294pt;}
.ws1c0{word-spacing:-13.546938pt;}
.ws1c2{word-spacing:-13.493603pt;}
.ws1c7{word-spacing:-13.472269pt;}
.ws23c{word-spacing:-13.440269pt;}
.ws1f4{word-spacing:-13.386934pt;}
.ws1aa{word-spacing:-13.365601pt;}
.ws1b3{word-spacing:-13.360267pt;}
.ws1b2{word-spacing:-13.333600pt;}
.ws1f3{word-spacing:-13.317600pt;}
.ws1b4{word-spacing:-13.312266pt;}
.ws1c5{word-spacing:-13.296266pt;}
.ws1c6{word-spacing:-13.280266pt;}
.ws1cb{word-spacing:-13.274932pt;}
.ws23b{word-spacing:-13.258932pt;}
.ws1f5{word-spacing:-13.253598pt;}
.ws1f6{word-spacing:-13.226931pt;}
.ws1c4{word-spacing:-13.173597pt;}
.ws25{word-spacing:-12.523778pt;}
.ws24{word-spacing:-12.167778pt;}
.ws23{word-spacing:-12.162464pt;}
.ws1a8{word-spacing:-11.818371pt;}
.ws143{word-spacing:-10.951207pt;}
.ws243{word-spacing:-10.666400pt;}
.ws117{word-spacing:-10.342495pt;}
.ws17a{word-spacing:-9.734637pt;}
.ws18d{word-spacing:-9.730386pt;}
.ws99{word-spacing:-9.726135pt;}
.ws70{word-spacing:-8.990340pt;}
.ws1ba{word-spacing:-8.896000pt;}
.wsa6{word-spacing:-8.517334pt;}
.ws1c1{word-spacing:-8.000000pt;}
.ws200{word-spacing:-7.872000pt;}
.ws1ca{word-spacing:-7.744000pt;}
.ws1ff{word-spacing:-7.728000pt;}
.ws1c3{word-spacing:-7.680000pt;}
.ws1c9{word-spacing:-7.488000pt;}
.ws1c8{word-spacing:-7.424000pt;}
.ws9d{word-spacing:-7.311605pt;}
.ws9a{word-spacing:-7.009789pt;}
.ws1d6{word-spacing:-3.270400pt;}
.ws153{word-spacing:-1.740716pt;}
.ws4d{word-spacing:-1.344300pt;}
.ws154{word-spacing:-1.334230pt;}
.wsd1{word-spacing:-1.222091pt;}
.ws100{word-spacing:-1.073315pt;}
.wsdc{word-spacing:-1.041434pt;}
.ws156{word-spacing:-1.028170pt;}
.ws116{word-spacing:-1.007151pt;}
.ws101{word-spacing:-0.993613pt;}
.ws92{word-spacing:-0.988300pt;}
.wsd2{word-spacing:-0.903285pt;}
.ws73{word-spacing:-0.866091pt;}
.ws8f{word-spacing:-0.850150pt;}
.wsda{word-spacing:-0.823583pt;}
.ws10f{word-spacing:-0.817464pt;}
.ws10e{word-spacing:-0.808431pt;}
.ws32{word-spacing:-0.781076pt;}
.wsff{word-spacing:-0.759822pt;}
.ws90{word-spacing:-0.738568pt;}
.ws115{word-spacing:-0.718103pt;}
.ws103{word-spacing:-0.696061pt;}
.ws110{word-spacing:-0.695521pt;}
.wsba{word-spacing:-0.685434pt;}
.ws34{word-spacing:-0.589792pt;}
.ws2d{word-spacing:-0.536657pt;}
.ws136{word-spacing:-0.207224pt;}
.ws1e3{word-spacing:-0.122669pt;}
.ws1fd{word-spacing:-0.101335pt;}
.ws19e{word-spacing:-0.096703pt;}
.ws1fc{word-spacing:-0.096002pt;}
.ws230{word-spacing:-0.090668pt;}
.ws22f{word-spacing:-0.085335pt;}
.ws12{word-spacing:-0.085015pt;}
.ws218{word-spacing:-0.080002pt;}
.ws222{word-spacing:-0.074668pt;}
.ws1ad{word-spacing:-0.074666pt;}
.ws1d8{word-spacing:-0.069335pt;}
.ws1ee{word-spacing:-0.058668pt;}
.ws1b6{word-spacing:-0.053334pt;}
.ws1d{word-spacing:-0.053134pt;}
.ws1e4{word-spacing:-0.048001pt;}
.ws14b{word-spacing:-0.047822pt;}
.ws7c{word-spacing:-0.047821pt;}
.ws111{word-spacing:-0.045164pt;}
.ws144{word-spacing:-0.043040pt;}
.ws1dd{word-spacing:-0.042668pt;}
.ws178{word-spacing:-0.042509pt;}
.ws4{word-spacing:-0.038258pt;}
.ws215{word-spacing:-0.037334pt;}
.wsa3{word-spacing:-0.037194pt;}
.ws96{word-spacing:-0.034007pt;}
.wse9{word-spacing:-0.034001pt;}
.ws1e9{word-spacing:-0.032001pt;}
.ws18b{word-spacing:-0.027201pt;}
.ws1f2{word-spacing:-0.026667pt;}
.ws19f{word-spacing:-0.022316pt;}
.ws1e8{word-spacing:-0.021334pt;}
.ws1ed{word-spacing:-0.016000pt;}
.ws1ef{word-spacing:-0.010667pt;}
.ws1d5{word-spacing:-0.007467pt;}
.ws50{word-spacing:0.000000pt;}
.ws1f1{word-spacing:0.005333pt;}
.ws1de{word-spacing:0.010667pt;}
.ws1ce{word-spacing:0.012800pt;}
.ws1d4{word-spacing:0.014933pt;}
.ws223{word-spacing:0.016000pt;}
.ws22b{word-spacing:0.021334pt;}
.ws221{word-spacing:0.026667pt;}
.ws1d3{word-spacing:0.029866pt;}
.ws217{word-spacing:0.032001pt;}
.ws247{word-spacing:0.034132pt;}
.ws1f8{word-spacing:0.037334pt;}
.ws225{word-spacing:0.042668pt;}
.ws22c{word-spacing:0.048001pt;}
.ws1d2{word-spacing:0.053334pt;}
.ws224{word-spacing:0.058668pt;}
.ws219{word-spacing:0.064001pt;}
.ws1e5{word-spacing:0.069335pt;}
.ws1f7{word-spacing:0.074668pt;}
.ws1fa{word-spacing:0.080002pt;}
.ws1ec{word-spacing:0.085335pt;}
.ws1d1{word-spacing:0.090668pt;}
.ws1eb{word-spacing:0.096002pt;}
.ws1dc{word-spacing:0.101335pt;}
.ws1cf{word-spacing:0.106666pt;}
.ws214{word-spacing:0.106669pt;}
.ws216{word-spacing:0.112002pt;}
.ws1df{word-spacing:0.117336pt;}
.ws1e1{word-spacing:0.122669pt;}
.ws1e7{word-spacing:0.128003pt;}
.ws1db{word-spacing:0.133336pt;}
.ws1e2{word-spacing:0.138669pt;}
.ws1d0{word-spacing:0.144003pt;}
.ws1da{word-spacing:0.149336pt;}
.ws1e6{word-spacing:0.154670pt;}
.ws1e0{word-spacing:0.160003pt;}
.ws78{word-spacing:0.164717pt;}
.ws1f0{word-spacing:0.165337pt;}
.ws1fb{word-spacing:0.170670pt;}
.ws1d9{word-spacing:0.176004pt;}
.ws5b{word-spacing:0.180657pt;}
.ws14e{word-spacing:0.181723pt;}
.ws1ea{word-spacing:0.192004pt;}
.ws246{word-spacing:0.264527pt;}
.ws245{word-spacing:0.268793pt;}
.ws79{word-spacing:0.276299pt;}
.ws1cc{word-spacing:0.307204pt;}
.ws244{word-spacing:0.332792pt;}
.ws1d7{word-spacing:0.441600pt;}
.ws15f{word-spacing:0.483001pt;}
.wsd9{word-spacing:0.526031pt;}
.ws5f{word-spacing:0.621672pt;}
.ws12a{word-spacing:0.727941pt;}
.ws197{word-spacing:0.756666pt;}
.wsee{word-spacing:0.786389pt;}
.ws11a{word-spacing:0.866091pt;}
.ws60{word-spacing:0.876718pt;}
.ws17b{word-spacing:0.888445pt;}
.wsa0{word-spacing:0.994718pt;}
.wse5{word-spacing:1.004240pt;}
.ws66{word-spacing:1.073315pt;}
.wse6{word-spacing:1.089255pt;}
.ws11b{word-spacing:1.099882pt;}
.ws132{word-spacing:1.168957pt;}
.ws1cd{word-spacing:1.237302pt;}
.ws122{word-spacing:1.238032pt;}
.ws6b{word-spacing:1.264599pt;}
.ws87{word-spacing:1.323047pt;}
.wse8{word-spacing:1.344300pt;}
.wseb{word-spacing:1.376181pt;}
.wsd6{word-spacing:1.386808pt;}
.ws16a{word-spacing:1.386834pt;}
.wsc2{word-spacing:1.392121pt;}
.ws6c{word-spacing:1.402748pt;}
.wsf1{word-spacing:1.408062pt;}
.wsc3{word-spacing:1.461196pt;}
.wse2{word-spacing:1.471823pt;}
.ws40{word-spacing:1.477136pt;}
.ws43{word-spacing:1.503704pt;}
.wsef{word-spacing:1.514330pt;}
.ws120{word-spacing:1.540898pt;}
.wsf0{word-spacing:1.679047pt;}
.wsc4{word-spacing:1.689674pt;}
.ws76{word-spacing:1.705614pt;}
.wse4{word-spacing:1.716241pt;}
.ws53{word-spacing:1.764062pt;}
.ws52{word-spacing:1.923465pt;}
.ws15a{word-spacing:1.932003pt;}
.ws108{word-spacing:1.939406pt;}
.ws1c{word-spacing:1.981913pt;}
.ws109{word-spacing:1.992540pt;}
.ws8a{word-spacing:2.066928pt;}
.ws4c{word-spacing:2.226331pt;}
.ws12e{word-spacing:2.279466pt;}
.ws150{word-spacing:2.281103pt;}
.ws8e{word-spacing:2.284779pt;}
.ws12f{word-spacing:2.295406pt;}
.ws163{word-spacing:2.295450pt;}
.wsdf{word-spacing:2.449496pt;}
.ws2f{word-spacing:2.476063pt;}
.wsa1{word-spacing:2.529165pt;}
.wsde{word-spacing:2.529197pt;}
.ws1a5{word-spacing:2.577516pt;}
.ws3a{word-spacing:2.587645pt;}
.ws17c{word-spacing:2.588818pt;}
.wsa2{word-spacing:2.618429pt;}
.ws1a7{word-spacing:2.625868pt;}
.ws176{word-spacing:2.648331pt;}
.wsa5{word-spacing:2.659342pt;}
.ws194{word-spacing:2.661084pt;}
.ws72{word-spacing:2.667347pt;}
.ws181{word-spacing:2.678088pt;}
.ws186{word-spacing:2.682339pt;}
.ws1e{word-spacing:2.693914pt;}
.ws175{word-spacing:2.699343pt;}
.ws177{word-spacing:2.750354pt;}
.wsa4{word-spacing:2.759765pt;}
.ws17f{word-spacing:2.771609pt;}
.ws196{word-spacing:2.775859pt;}
.ws193{word-spacing:2.797114pt;}
.ws185{word-spacing:2.818369pt;}
.ws192{word-spacing:2.843874pt;}
.ws191{word-spacing:2.848125pt;}
.ws180{word-spacing:2.856627pt;}
.ws18a{word-spacing:2.873631pt;}
.ws179{word-spacing:2.882133pt;}
.ws6e{word-spacing:2.890511pt;}
.ws18f{word-spacing:2.894886pt;}
.ws183{word-spacing:2.911889pt;}
.ws184{word-spacing:2.916140pt;}
.ws189{word-spacing:2.962901pt;}
.ws187{word-spacing:2.984155pt;}
.ws149{word-spacing:2.993649pt;}
.ws190{word-spacing:3.056421pt;}
.ws17e{word-spacing:3.111683pt;}
.ws18e{word-spacing:3.166945pt;}
.ws2e{word-spacing:3.188064pt;}
.ws141{word-spacing:3.204065pt;}
.ws118{word-spacing:3.211141pt;}
.ws119{word-spacing:3.242756pt;}
.ws1a4{word-spacing:3.258159pt;}
.ws161{word-spacing:3.275798pt;}
.ws16d{word-spacing:3.337966pt;}
.ws160{word-spacing:3.352313pt;}
.wsae{word-spacing:3.378247pt;}
.ws16c{word-spacing:3.395353pt;}
.ws15b{word-spacing:3.462303pt;}
.ws146{word-spacing:3.467085pt;}
.wsb5{word-spacing:3.490930pt;}
.ws140{word-spacing:3.505343pt;}
.ws98{word-spacing:3.513738pt;}
.wsb2{word-spacing:3.575945pt;}
.ws174{word-spacing:3.581484pt;}
.ws169{word-spacing:3.629680pt;}
.ws16e{word-spacing:3.639244pt;}
.ws54{word-spacing:3.687527pt;}
.ws13b{word-spacing:3.719408pt;}
.ws91{word-spacing:3.724721pt;}
.ws85{word-spacing:3.740662pt;}
.ws13f{word-spacing:3.751289pt;}
.wsb1{word-spacing:3.767229pt;}
.ws158{word-spacing:3.773145pt;}
.ws56{word-spacing:3.793796pt;}
.ws35{word-spacing:3.809736pt;}
.ws5c{word-spacing:3.900065pt;}
.ws5d{word-spacing:3.974453pt;}
.wse0{word-spacing:4.001020pt;}
.ws21{word-spacing:4.043528pt;}
.ws88{word-spacing:4.075408pt;}
.ws11e{word-spacing:4.096662pt;}
.wsa8{word-spacing:4.100867pt;}
.ws93{word-spacing:4.112603pt;}
.ws13c{word-spacing:4.224185pt;}
.wsaa{word-spacing:4.254424pt;}
.ws80{word-spacing:4.261379pt;}
.ws75{word-spacing:4.303886pt;}
.ws157{word-spacing:4.347008pt;}
.ws27{word-spacing:4.399528pt;}
.ws11f{word-spacing:4.431409pt;}
.ws11d{word-spacing:4.452663pt;}
.ws133{word-spacing:4.638633pt;}
.ws7a{word-spacing:4.702394pt;}
.ws1a{word-spacing:4.713021pt;}
.wsd4{word-spacing:4.877738pt;}
.ws134{word-spacing:4.962753pt;}
.wsd3{word-spacing:4.989320pt;}
.wsbf{word-spacing:5.005260pt;}
.ws19c{word-spacing:5.043452pt;}
.wsbd{word-spacing:5.063708pt;}
.ws198{word-spacing:5.121559pt;}
.wsbe{word-spacing:5.143410pt;}
.ws124{word-spacing:5.169977pt;}
.wsea{word-spacing:5.308127pt;}
.wsad{word-spacing:5.311255pt;}
.ws145{word-spacing:5.317792pt;}
.ws19a{word-spacing:5.348440pt;}
.ws3c{word-spacing:5.361261pt;}
.ws12b{word-spacing:5.568485pt;}
.wsb0{word-spacing:5.610993pt;}
.ws10b{word-spacing:5.621620pt;}
.ws6d{word-spacing:5.733202pt;}
.wsc8{word-spacing:5.913859pt;}
.wsfa{word-spacing:5.956366pt;}
.ws58{word-spacing:5.993560pt;}
.ws10a{word-spacing:6.009501pt;}
.ws65{word-spacing:6.158277pt;}
.wsc6{word-spacing:6.174217pt;}
.ws113{word-spacing:6.182915pt;}
.ws57{word-spacing:6.227352pt;}
.ws112{word-spacing:6.228079pt;}
.ws114{word-spacing:6.246144pt;}
.wsac{word-spacing:6.444865pt;}
.wsf7{word-spacing:6.514277pt;}
.wsbc{word-spacing:6.572725pt;}
.ws13a{word-spacing:6.817144pt;}
.ws126{word-spacing:6.833084pt;}
.ws171{word-spacing:6.843309pt;}
.ws22{word-spacing:7.066875pt;}
.ws139{word-spacing:7.093442pt;}
.ws130{word-spacing:7.135950pt;}
.wsed{word-spacing:7.311293pt;}
.ws77{word-spacing:7.316607pt;}
.ws59{word-spacing:7.380368pt;}
.ws2c{word-spacing:7.422876pt;}
.ws131{word-spacing:7.433503pt;}
.ws63{word-spacing:7.449443pt;}
.wsec{word-spacing:7.481324pt;}
.ws5a{word-spacing:7.518518pt;}
.ws137{word-spacing:7.592906pt;}
.ws2a{word-spacing:7.736369pt;}
.ws84{word-spacing:7.805443pt;}
.wsab{word-spacing:7.840424pt;}
.ws6a{word-spacing:7.906399pt;}
.ws7b{word-spacing:7.917026pt;}
.ws7d{word-spacing:7.975473pt;}
.ws68{word-spacing:7.996727pt;}
.wsc1{word-spacing:8.028608pt;}
.ws42{word-spacing:8.049862pt;}
.ws8b{word-spacing:8.113623pt;}
.wsc5{word-spacing:8.166757pt;}
.ws4e{word-spacing:8.235832pt;}
.ws86{word-spacing:8.331474pt;}
.ws1a0{word-spacing:8.495018pt;}
.ws3d{word-spacing:8.496191pt;}
.ws15d{word-spacing:8.584025pt;}
.ws1a1{word-spacing:8.654951pt;}
.ws128{word-spacing:8.714042pt;}
.wsf2{word-spacing:8.873445pt;}
.ws19d{word-spacing:9.019448pt;}
.ws14c{word-spacing:9.248749pt;}
.ws41{word-spacing:9.293207pt;}
.wsd7{word-spacing:9.415416pt;}
.wsd8{word-spacing:9.516371pt;}
.wsf8{word-spacing:9.537625pt;}
.ws155{word-spacing:9.636106pt;}
.wse7{word-spacing:9.856431pt;}
.wsc9{word-spacing:10.297447pt;}
.ws37{word-spacing:10.403716pt;}
.ws47{word-spacing:10.462163pt;}
.wsca{word-spacing:10.573746pt;}
.ws13e{word-spacing:10.637507pt;}
.ws49{word-spacing:10.749089pt;}
.ws81{word-spacing:11.009448pt;}
.ws48{word-spacing:11.030701pt;}
.ws1a3{word-spacing:11.087412pt;}
.ws1a2{word-spacing:11.113448pt;}
.wsdb{word-spacing:11.211358pt;}
.ws46{word-spacing:11.354821pt;}
.ws1a6{word-spacing:11.500261pt;}
.ws67{word-spacing:11.599240pt;}
.ws33{word-spacing:11.647060pt;}
.ws64{word-spacing:11.737389pt;}
.ws14{word-spacing:11.811015pt;}
.ws13{word-spacing:12.114005pt;}
.wsb{word-spacing:12.184623pt;}
.wsdd{word-spacing:12.220912pt;}
.ws107{word-spacing:12.289987pt;}
.ws106{word-spacing:12.305927pt;}
.ws18{word-spacing:12.311082pt;}
.ws105{word-spacing:12.311240pt;}
.ws8{word-spacing:12.337117pt;}
.wsc{word-spacing:12.355714pt;}
.ws10{word-spacing:12.366872pt;}
.ws7{word-spacing:12.396627pt;}
.wsd{word-spacing:12.426382pt;}
.wsf{word-spacing:12.467295pt;}
.ws51{word-spacing:12.507838pt;}
.ws182{word-spacing:12.527501pt;}
.ws45{word-spacing:12.560972pt;}
.wse{word-spacing:12.571437pt;}
.ws4f{word-spacing:12.604911pt;}
.ws17{word-spacing:12.608630pt;}
.ws195{word-spacing:12.659279pt;}
.ws19{word-spacing:12.668140pt;}
.wsa{word-spacing:12.731369pt;}
.ws9{word-spacing:12.742527pt;}
.ws125{word-spacing:12.794764pt;}
.wscc{word-spacing:13.028555pt;}
.ws61{word-spacing:13.262346pt;}
.wsce{word-spacing:13.469570pt;}
.ws19b{word-spacing:13.713280pt;}
.ws3{word-spacing:13.713511pt;}
.ws10c{word-spacing:13.717762pt;}
.ws121{word-spacing:13.767123pt;}
.wsd0{word-spacing:13.772436pt;}
.wscd{word-spacing:13.825571pt;}
.ws151{word-spacing:13.844430pt;}
.ws28{word-spacing:13.857452pt;}
.ws164{word-spacing:13.873124pt;}
.ws94{word-spacing:13.892050pt;}
.ws2{word-spacing:13.930309pt;}
.ws10d{word-spacing:13.938810pt;}
.ws3e{word-spacing:14.032795pt;}
.ws199{word-spacing:14.036865pt;}
.ws5{word-spacing:14.096095pt;}
.ws159{word-spacing:14.117015pt;}
.ws14a{word-spacing:14.155273pt;}
.ws148{word-spacing:14.174401pt;}
.ws15e{word-spacing:14.236570pt;}
.ws95{word-spacing:14.240627pt;}
.ws147{word-spacing:14.246134pt;}
.ws152{word-spacing:14.298738pt;}
.ws162{word-spacing:14.332213pt;}
.ws3b{word-spacing:14.335661pt;}
.ws15c{word-spacing:14.384817pt;}
.ws142{word-spacing:14.418293pt;}
.ws14f{word-spacing:14.547412pt;}
.ws165{word-spacing:14.552194pt;}
.wsa9{word-spacing:14.587886pt;}
.ws16b{word-spacing:14.657402pt;}
.ws7f{word-spacing:14.925453pt;}
.ws7e{word-spacing:14.994528pt;}
.ws12d{word-spacing:15.366468pt;}
.ws12c{word-spacing:15.547125pt;}
.ws62{word-spacing:15.642767pt;}
.wsa7{word-spacing:15.742959pt;}
.wsb6{word-spacing:15.749036pt;}
.ws173{word-spacing:15.862513pt;}
.wsf4{word-spacing:15.903126pt;}
.ws55{word-spacing:16.046589pt;}
.wsb4{word-spacing:16.147544pt;}
.ws97{word-spacing:16.163791pt;}
.ws39{word-spacing:16.190052pt;}
.ws83{word-spacing:16.811724pt;}
.ws3f{word-spacing:17.098650pt;}
.wsd5{word-spacing:17.258053pt;}
.ws8d{word-spacing:17.359008pt;}
.ws29{word-spacing:17.651248pt;}
.ws16{word-spacing:17.688442pt;}
.ws168{word-spacing:17.718002pt;}
.ws138{word-spacing:17.789397pt;}
.ws166{word-spacing:17.918853pt;}
.ws1b{word-spacing:18.007248pt;}
.wse1{word-spacing:18.082187pt;}
.ws172{word-spacing:18.086230pt;}
.wsb3{word-spacing:18.199350pt;}
.ws5e{word-spacing:18.255142pt;}
.ws89{word-spacing:18.283038pt;}
.wsfd{word-spacing:18.379189pt;}
.ws36{word-spacing:18.383464pt;}
.wsfb{word-spacing:18.453577pt;}
.ws123{word-spacing:18.461573pt;}
.wsc7{word-spacing:18.469517pt;}
.ws4b{word-spacing:18.735189pt;}
.wsc0{word-spacing:18.788324pt;}
.wsb9{word-spacing:18.910533pt;}
.wsf5{word-spacing:19.298414pt;}
.wsaf{word-spacing:19.776624pt;}
.ws2b{word-spacing:19.872266pt;}
.ws38{word-spacing:19.973221pt;}
.ws69{word-spacing:19.994475pt;}
.ws8c{word-spacing:20.121997pt;}
.ws14d{word-spacing:20.199956pt;}
.ws44{word-spacing:20.207012pt;}
.wsf3{word-spacing:20.887133pt;}
.ws16f{word-spacing:21.041621pt;}
.ws129{word-spacing:21.333462pt;}
.ws30{word-spacing:21.524745pt;}
.ws31{word-spacing:21.880746pt;}
.ws26{word-spacing:21.939194pt;}
.ws13d{word-spacing:22.215493pt;}
.ws127{word-spacing:22.513045pt;}
.wscb{word-spacing:22.699016pt;}
.ws4a{word-spacing:23.533226pt;}
.ws11{word-spacing:25.419625pt;}
.wsb7{word-spacing:25.647975pt;}
.wscf{word-spacing:25.722363pt;}
.ws1f{word-spacing:26.168692pt;}
.ws20{word-spacing:26.184632pt;}
.ws6f{word-spacing:27.337649pt;}
.ws74{word-spacing:27.544873pt;}
.ws71{word-spacing:27.842426pt;}
.ws6{word-spacing:27.961587pt;}
.ws15{word-spacing:28.446175pt;}
.ws82{word-spacing:28.836039pt;}
.wsf6{word-spacing:28.947621pt;}
.ws167{word-spacing:29.137863pt;}
.wsf9{word-spacing:30.477892pt;}
.wsfc{word-spacing:30.701056pt;}
.ws170{word-spacing:31.868492pt;}
.ws104{word-spacing:41.090722pt;}
.ws102{word-spacing:41.092204pt;}
.ws11c{word-spacing:41.108705pt;}
.wsfe{word-spacing:41.310095pt;}
.wse3{word-spacing:43.788059pt;}
.ws0{word-spacing:63.643840pt;}
.wsbb{word-spacing:77.214910pt;}
.ws9c{word-spacing:111.969584pt;}
.ws20b{word-spacing:229.023247pt;}
.ws21b{word-spacing:229.097915pt;}
.ws210{word-spacing:229.247252pt;}
.ws205{word-spacing:229.588592pt;}
.ws21c{word-spacing:232.063308pt;}
.ws20d{word-spacing:232.148643pt;}
.ws212{word-spacing:232.169977pt;}
.ws20c{word-spacing:232.180644pt;}
.ws211{word-spacing:232.185977pt;}
.ws21e{word-spacing:232.212644pt;}
.ws207{word-spacing:232.489983pt;}
.ws206{word-spacing:232.532651pt;}
.ws239{word-spacing:247.807623pt;}
.ws21a{word-spacing:267.146676pt;}
.ws208{word-spacing:267.168010pt;}
.ws213{word-spacing:267.370681pt;}
.ws203{word-spacing:267.424015pt;}
.ws209{word-spacing:267.488016pt;}
.ws20e{word-spacing:267.616019pt;}
.ws20f{word-spacing:267.626686pt;}
.ws21f{word-spacing:267.648020pt;}
.ws20a{word-spacing:267.658686pt;}
.ws220{word-spacing:267.669353pt;}
.ws204{word-spacing:268.000027pt;}
.ws202{word-spacing:269.898731pt;}
.ws21d{word-spacing:278.677573pt;}
.ws228{word-spacing:312.500267pt;}
.ws227{word-spacing:312.819733pt;}
.ws231{word-spacing:316.224991pt;}
.ws226{word-spacing:316.339733pt;}
.ws235{word-spacing:317.206344pt;}
.ws236{word-spacing:320.033067pt;}
.ws22a{word-spacing:342.260267pt;}
.ws229{word-spacing:343.219733pt;}
.ws232{word-spacing:351.649700pt;}
.ws233{word-spacing:354.593758pt;}
.ws237{word-spacing:355.596445pt;}
.ws22d{word-spacing:362.321913pt;}
.ws22e{word-spacing:362.641919pt;}
.ws234{word-spacing:388.829110pt;}
.ws18c{word-spacing:412.017462pt;}
.ws17d{word-spacing:548.991036pt;}
.ws23f{word-spacing:608.765867pt;}
.ws241{word-spacing:609.405867pt;}
.ws242{word-spacing:611.261867pt;}
.ws23e{word-spacing:617.405867pt;}
.ws23d{word-spacing:617.725867pt;}
.ws240{word-spacing:618.045867pt;}
.ws1{word-spacing:1159.718377pt;}
._8c{margin-left:-841.414161pt;}
._8d{margin-left:-280.453609pt;}
._1e{margin-left:-271.451850pt;}
._20{margin-left:-134.622808pt;}
._1f{margin-left:-114.741193pt;}
._25{margin-left:-38.028290pt;}
._2c{margin-left:-11.870225pt;}
._19{margin-left:-8.605612pt;}
._1d{margin-left:-7.111811pt;}
._4{margin-left:-5.690694pt;}
._3{margin-left:-3.957015pt;}
._d{margin-left:-2.942565pt;}
._0{margin-left:-1.462321pt;}
._1{width:1.391041pt;}
._1a{width:2.499478pt;}
._3c{width:9.484368pt;}
._b{width:10.664074pt;}
._16{width:11.783712pt;}
._2{width:13.315309pt;}
._18{width:14.261273pt;}
._7{width:15.262361pt;}
._e{width:16.982835pt;}
._5{width:18.065696pt;}
._17{width:19.340922pt;}
._9{width:20.233580pt;}
._12{width:21.737283pt;}
._f{width:23.661873pt;}
._14{width:24.888109pt;}
._13{width:25.860512pt;}
._a{width:26.912574pt;}
._1c{width:27.862664pt;}
._11{width:29.548040pt;}
._6{width:31.184579pt;}
._26{width:32.332282pt;}
._10{width:33.315269pt;}
._c{width:34.736119pt;}
._15{width:36.770085pt;}
._24{width:38.788112pt;}
._8{width:39.797666pt;}
._2b{width:42.348117pt;}
._29{width:52.641331pt;}
._2a{width:54.253375pt;}
._28{width:55.632797pt;}
._27{width:90.280659pt;}
._21{width:95.514221pt;}
._60{width:113.495603pt;}
._5e{width:114.988966pt;}
._55{width:117.767689pt;}
._23{width:119.404466pt;}
._22{width:122.125064pt;}
._5b{width:139.928132pt;}
._51{width:141.135036pt;}
._53{width:142.152176pt;}
._52{width:143.100940pt;}
._56{width:144.323073pt;}
._61{width:145.709581pt;}
._62{width:166.913285pt;}
._59{width:168.051494pt;}
._57{width:168.980737pt;}
._58{width:171.208757pt;}
._5a{width:172.288219pt;}
._5c{width:173.666885pt;}
._63{width:194.329220pt;}
._91{width:195.886584pt;}
._5f{width:196.786122pt;}
._54{width:197.833290pt;}
._5d{width:199.210675pt;}
._3b{width:216.682825pt;}
._90{width:221.384107pt;}
._8e{width:222.364422pt;}
._45{width:242.303513pt;}
._3f{width:243.935545pt;}
._48{width:245.739207pt;}
._2e{width:250.392726pt;}
._89{width:258.943845pt;}
._8a{width:260.468731pt;}
._87{width:261.863074pt;}
._84{width:263.146677pt;}
._83{width:264.618626pt;}
._85{width:266.235616pt;}
._81{width:267.454522pt;}
._44{width:268.453369pt;}
._3e{width:270.053401pt;}
._49{width:271.125846pt;}
._50{width:274.234283pt;}
._4a{width:281.194957pt;}
._42{width:283.909678pt;}
._3d{width:285.307998pt;}
._46{width:291.216491pt;}
._40{width:292.476141pt;}
._4e{width:295.253905pt;}
._4d{width:296.283259pt;}
._4b{width:297.499283pt;}
._4f{width:298.400635pt;}
._43{width:318.396660pt;}
._41{width:319.926398pt;}
._47{width:320.977086pt;}
._4c{width:323.499803pt;}
._69{width:325.050847pt;}
._66{width:326.569722pt;}
._7e{width:327.844287pt;}
._78{width:328.914710pt;}
._7c{width:330.731948pt;}
._7f{width:331.820957pt;}
._76{width:332.788959pt;}
._35{width:345.987715pt;}
._88{width:348.445180pt;}
._82{width:349.874623pt;}
._39{width:351.297131pt;}
._80{width:364.648280pt;}
._7d{width:366.231324pt;}
._79{width:368.332700pt;}
._70{width:374.533376pt;}
._64{width:376.227888pt;}
._8b{width:378.603069pt;}
._86{width:379.548924pt;}
._77{width:402.238872pt;}
._74{width:403.849035pt;}
._7b{width:405.122262pt;}
._7a{width:406.105109pt;}
._3a{width:407.694263pt;}
._75{width:408.951644pt;}
._73{width:410.493995pt;}
._37{width:418.087795pt;}
._2d{width:422.474758pt;}
._34{width:425.467415pt;}
._36{width:433.131848pt;}
._2f{width:436.442721pt;}
._38{width:450.811480pt;}
._33{width:474.255377pt;}
._71{width:508.358356pt;}
._6b{width:510.016381pt;}
._6e{width:511.167556pt;}
._6c{width:513.019247pt;}
._6f{width:514.186284pt;}
._6a{width:547.767736pt;}
._67{width:548.871758pt;}
._68{width:549.770995pt;}
._65{width:550.726668pt;}
._6d{width:552.080375pt;}
._30{width:552.974161pt;}
._72{width:561.253892pt;}
._32{width:614.961271pt;}
._8f{width:643.250198pt;}
._31{width:649.985192pt;}
._1b{width:820.527905pt;}
.fs9{font-size:21.253333pt;}
.fse{font-size:27.200533pt;}
.fsf{font-size:28.054933pt;}
.fsa{font-size:28.334400pt;}
.fsd{font-size:29.806933pt;}
.fs16{font-size:32.000000pt;}
.fs7{font-size:34.000533pt;}
.fs6{font-size:35.068267pt;}
.fs3{font-size:37.193600pt;}
.fs1{font-size:42.509333pt;}
.fs12{font-size:42.665600pt;}
.fsc{font-size:45.163733pt;}
.fsb{font-size:47.821867pt;}
.fs5{font-size:53.134400pt;}
.fs11{font-size:53.334400pt;}
.fs8{font-size:55.792000pt;}
.fs4{font-size:56.109333pt;}
.fs0{font-size:63.762133pt;}
.fs15{font-size:64.000000pt;}
.fs14{font-size:74.665600pt;}
.fs2{font-size:85.015467pt;}
.fs10{font-size:85.334400pt;}
.fs13{font-size:106.665600pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:28.346533pt;}
.y1{bottom:30.160667pt;}
.y1b4{bottom:58.640000pt;}
.y1b5{bottom:58.880000pt;}
.y113{bottom:58.960800pt;}
.yc9{bottom:61.077278pt;}
.y112{bottom:61.077296pt;}
.y114{bottom:61.077333pt;}
.y8d{bottom:61.077568pt;}
.ybb{bottom:61.078813pt;}
.y4e{bottom:62.891702pt;}
.yba{bottom:73.702076pt;}
.yc8{bottom:77.026896pt;}
.y111{bottom:77.026915pt;}
.y8c{bottom:77.027187pt;}
.y4d{bottom:78.841320pt;}
.yb9{bottom:86.325340pt;}
.yc7{bottom:92.976515pt;}
.y8b{bottom:92.976805pt;}
.y4c{bottom:94.790939pt;}
.yb8{bottom:98.948603pt;}
.yc6{bottom:108.926133pt;}
.yc4{bottom:108.926346pt;}
.y8a{bottom:108.926424pt;}
.y110{bottom:108.926507pt;}
.y1f5{bottom:109.545519pt;}
.y1ef{bottom:109.546852pt;}
.y4b{bottom:110.740557pt;}
.yb7{bottom:111.571867pt;}
.yc5{bottom:114.595467pt;}
.y132{bottom:117.014400pt;}
.y170{bottom:119.129759pt;}
.y131{bottom:119.130915pt;}
.y133{bottom:119.130933pt;}
.yb6{bottom:124.195467pt;}
.yc3{bottom:124.800248pt;}
.y89{bottom:124.800326pt;}
.y10f{bottom:124.800409pt;}
.y1f4{bottom:124.905826pt;}
.y1ee{bottom:124.907159pt;}
.y2e0{bottom:125.510669pt;}
.y4a{bottom:126.690176pt;}
.y16f{bottom:132.433802pt;}
.y12f{bottom:132.964000pt;}
.y2ba{bottom:133.881371pt;}
.y130{bottom:135.080533pt;}
.y12e{bottom:135.080731pt;}
.y28d{bottom:137.663623pt;}
.y32d{bottom:137.663757pt;}
.y30e{bottom:137.666157pt;}
.y25d{bottom:138.172843pt;}
.y1f3{bottom:140.266133pt;}
.y1ed{bottom:140.267159pt;}
.yc2{bottom:140.749867pt;}
.y88{bottom:140.749944pt;}
.y10e{bottom:140.750028pt;}
.y49{bottom:142.639794pt;}
.y2df{bottom:142.791014pt;}
.y16e{bottom:145.737846pt;}
.y230{bottom:145.770586pt;}
.y12c{bottom:151.030350pt;}
.y2b9{bottom:151.161716pt;}
.y12d{bottom:154.507996pt;}
.y28c{bottom:154.943969pt;}
.y32c{bottom:154.944102pt;}
.y30d{bottom:154.946502pt;}
.y25c{bottom:155.453188pt;}
.y1f2{bottom:155.626441pt;}
.y1ec{bottom:155.627159pt;}
.y87{bottom:156.699563pt;}
.y10d{bottom:156.699646pt;}
.y47{bottom:158.513696pt;}
.y48{bottom:158.816562pt;}
.y16d{bottom:158.966570pt;}
.y2de{bottom:160.071360pt;}
.y22f{bottom:161.130893pt;}
.yc1{bottom:161.990800pt;}
.y12b{bottom:166.979968pt;}
.y2b8{bottom:168.442062pt;}
.y1f1{bottom:170.986748pt;}
.y1eb{bottom:170.987467pt;}
.y28b{bottom:172.224315pt;}
.y32b{bottom:172.224448pt;}
.y30c{bottom:172.226848pt;}
.y16c{bottom:172.270613pt;}
.y85{bottom:172.649181pt;}
.y10c{bottom:172.649265pt;}
.y25b{bottom:172.733534pt;}
.y46{bottom:174.463315pt;}
.y86{bottom:176.126828pt;}
.y22e{bottom:176.491200pt;}
.y2dd{bottom:177.351706pt;}
.y12a{bottom:182.929587pt;}
.y16b{bottom:185.574656pt;}
.y2b7{bottom:185.722407pt;}
.y1ea{bottom:186.346197pt;}
.y1f0{bottom:186.347055pt;}
.y43{bottom:188.296400pt;}
.y84{bottom:188.598800pt;}
.y10b{bottom:188.598883pt;}
.y28a{bottom:189.504660pt;}
.y32a{bottom:189.504794pt;}
.y30b{bottom:189.507194pt;}
.y25a{bottom:190.013879pt;}
.y44{bottom:190.412933pt;}
.y42{bottom:190.412993pt;}
.y22d{bottom:191.851507pt;}
.y2dc{bottom:194.632051pt;}
.y45{bottom:196.082133pt;}
.y16a{bottom:198.803380pt;}
.y129{bottom:198.803489pt;}
.y2b6{bottom:203.002753pt;}
.y10a{bottom:204.548502pt;}
.y41{bottom:206.362611pt;}
.y289{bottom:206.785006pt;}
.y329{bottom:206.785139pt;}
.y30a{bottom:206.787539pt;}
.y1e9{bottom:207.038611pt;}
.y22c{bottom:207.211814pt;}
.y259{bottom:207.294225pt;}
.y83{bottom:209.839733pt;}
.yc0{bottom:209.991109pt;}
.y2db{bottom:211.912397pt;}
.y169{bottom:212.107423pt;}
.y128{bottom:214.753107pt;}
.y2b5{bottom:220.283099pt;}
.y109{bottom:220.498120pt;}
.y40{bottom:222.312230pt;}
.y22b{bottom:222.572122pt;}
.y288{bottom:224.065351pt;}
.y328{bottom:224.065485pt;}
.y309{bottom:224.067885pt;}
.y258{bottom:224.574571pt;}
.y168{bottom:225.406179pt;}
.ybf{bottom:225.940728pt;}
.y2da{bottom:229.192742pt;}
.y1e8{bottom:230.399078pt;}
.y1df{bottom:230.399386pt;}
.y127{bottom:230.702726pt;}
.y108{bottom:236.447739pt;}
.y2b4{bottom:237.563444pt;}
.y22a{bottom:237.932429pt;}
.y3f{bottom:238.261848pt;}
.y167{bottom:238.710222pt;}
.y287{bottom:241.345697pt;}
.y327{bottom:241.345830pt;}
.y308{bottom:241.348230pt;}
.y257{bottom:241.854916pt;}
.ybe{bottom:241.890346pt;}
.y1e7{bottom:245.759386pt;}
.y1de{bottom:245.759693pt;}
.y2d9{bottom:246.473088pt;}
.y126{bottom:246.652344pt;}
.y166{bottom:251.938946pt;}
.y107{bottom:252.321641pt;}
.y229{bottom:253.292736pt;}
.y3c{bottom:254.211448pt;}
.y3e{bottom:254.211467pt;}
.y2b3{bottom:254.843790pt;}
.ybd{bottom:257.839965pt;}
.y286{bottom:258.626043pt;}
.y326{bottom:258.626176pt;}
.y307{bottom:258.628576pt;}
.y256{bottom:259.135262pt;}
.y3d{bottom:259.880667pt;}
.y1e6{bottom:261.119693pt;}
.y1dd{bottom:261.120000pt;}
.y125{bottom:262.601963pt;}
.y2d8{bottom:263.753434pt;}
.y165{bottom:265.242990pt;}
.y82{bottom:266.911137pt;}
.y3a{bottom:268.044533pt;}
.y106{bottom:268.271259pt;}
.y228{bottom:268.653043pt;}
.y3b{bottom:270.161067pt;}
.y39{bottom:270.161302pt;}
.y2b2{bottom:272.124135pt;}
.ybc{bottom:273.713867pt;}
.y285{bottom:275.906388pt;}
.y325{bottom:275.906522pt;}
.y306{bottom:275.908922pt;}
.y255{bottom:276.415607pt;}
.y1dc{bottom:276.477662pt;}
.y1e5{bottom:276.479693pt;}
.y164{bottom:278.547033pt;}
.y124{bottom:278.551581pt;}
.y2d7{bottom:281.033779pt;}
.y81{bottom:282.860755pt;}
.y227{bottom:284.013350pt;}
.y105{bottom:284.220878pt;}
.y38{bottom:286.035204pt;}
.y2b1{bottom:289.404481pt;}
.y1db{bottom:291.837969pt;}
.y1e4{bottom:291.838771pt;}
.y163{bottom:291.851076pt;}
.y284{bottom:293.186734pt;}
.y324{bottom:293.186867pt;}
.y305{bottom:293.189267pt;}
.y254{bottom:293.695953pt;}
.y123{bottom:294.501200pt;}
.y2d6{bottom:298.314125pt;}
.y80{bottom:298.810374pt;}
.y226{bottom:299.373658pt;}
.y104{bottom:300.170496pt;}
.y37{bottom:301.984822pt;}
.y162{bottom:305.079800pt;}
.y2b0{bottom:306.684827pt;}
.y1da{bottom:307.198276pt;}
.y1e3{bottom:307.199078pt;}
.y11a{bottom:309.167346pt;}
.y283{bottom:310.467079pt;}
.y323{bottom:310.467213pt;}
.y304{bottom:310.469613pt;}
.y253{bottom:310.976299pt;}
.y225{bottom:314.733965pt;}
.y7f{bottom:314.759992pt;}
.y2d5{bottom:315.594470pt;}
.y122{bottom:315.742267pt;}
.y103{bottom:316.120115pt;}
.y36{bottom:317.934441pt;}
.y161{bottom:318.383843pt;}
.y119{bottom:321.790610pt;}
.y1d9{bottom:322.558583pt;}
.y1e2{bottom:322.559386pt;}
.y2af{bottom:323.965172pt;}
.y282{bottom:327.747425pt;}
.y322{bottom:327.747558pt;}
.y303{bottom:327.749958pt;}
.y252{bottom:328.256644pt;}
.y101{bottom:329.953333pt;}
.y224{bottom:330.094272pt;}
.y7e{bottom:330.709611pt;}
.y160{bottom:331.687887pt;}
.y102{bottom:332.069733pt;}
.y100{bottom:332.069848pt;}
.y2d4{bottom:332.874816pt;}
.y35{bottom:333.884059pt;}
.y118{bottom:334.413873pt;}
.y1d8{bottom:337.918891pt;}
.y1e1{bottom:337.919693pt;}
.y2ae{bottom:341.245518pt;}
.y15f{bottom:344.991930pt;}
.y281{bottom:345.027771pt;}
.y321{bottom:345.027904pt;}
.y302{bottom:345.030304pt;}
.y223{bottom:345.454579pt;}
.y251{bottom:345.536990pt;}
.yfe{bottom:345.902933pt;}
.y7d{bottom:346.659229pt;}
.y117{bottom:347.037137pt;}
.yff{bottom:348.019467pt;}
.yfd{bottom:348.019605pt;}
.y34{bottom:349.833678pt;}
.y2d3{bottom:350.155162pt;}
.y1e0{bottom:353.279176pt;}
.y1d7{bottom:353.279198pt;}
.y11f{bottom:356.107600pt;}
.y15e{bottom:358.220654pt;}
.y120{bottom:358.224133pt;}
.y11e{bottom:358.224248pt;}
.y2ad{bottom:358.525863pt;}
.y116{bottom:359.660400pt;}
.y222{bottom:360.814886pt;}
.y280{bottom:362.308116pt;}
.y320{bottom:362.308250pt;}
.y301{bottom:362.310650pt;}
.y7c{bottom:362.608848pt;}
.y250{bottom:362.817335pt;}
.y121{bottom:363.893467pt;}
.yfc{bottom:363.969224pt;}
.y33{bottom:365.783296pt;}
.y2d2{bottom:367.435507pt;}
.y15d{bottom:371.524697pt;}
.y115{bottom:372.284133pt;}
.y1d6{bottom:373.972945pt;}
.y11d{bottom:374.173848pt;}
.y2ac{bottom:375.806209pt;}
.y221{bottom:376.175194pt;}
.y7b{bottom:378.482750pt;}
.y27f{bottom:379.588462pt;}
.y31f{bottom:379.588595pt;}
.y300{bottom:379.590995pt;}
.yfb{bottom:379.843126pt;}
.y24f{bottom:380.097681pt;}
.y32{bottom:381.732915pt;}
.y2d1{bottom:384.715853pt;}
.y15c{bottom:384.828741pt;}
.y11c{bottom:388.006933pt;}
.y11b{bottom:390.123467pt;}
.y220{bottom:391.535501pt;}
.y2ab{bottom:393.086555pt;}
.y7a{bottom:394.432368pt;}
.yfa{bottom:395.792744pt;}
.y27e{bottom:396.868807pt;}
.y31e{bottom:396.868941pt;}
.y2ff{bottom:396.871341pt;}
.y24e{bottom:397.378027pt;}
.y31{bottom:397.682533pt;}
.y15b{bottom:398.057464pt;}
.y66{bottom:400.252865pt;}
.y2d0{bottom:401.996198pt;}
.y1d5{bottom:402.666852pt;}
.y1cc{bottom:402.667467pt;}
.y21f{bottom:406.895808pt;}
.y2aa{bottom:410.366900pt;}
.y79{bottom:410.381987pt;}
.y15a{bottom:411.361508pt;}
.yf9{bottom:411.742363pt;}
.y27d{bottom:414.149153pt;}
.y31d{bottom:414.149286pt;}
.y2fe{bottom:414.151686pt;}
.y24d{bottom:414.658372pt;}
.y64{bottom:416.202483pt;}
.y1cb{bottom:418.026238pt;}
.y1d4{bottom:418.027159pt;}
.y30{bottom:418.923467pt;}
.y2cf{bottom:419.276544pt;}
.y65{bottom:419.604413pt;}
.y21e{bottom:422.256115pt;}
.y159{bottom:424.665551pt;}
.y78{bottom:426.331605pt;}
.y2a9{bottom:427.647246pt;}
.yf8{bottom:427.691981pt;}
.y27c{bottom:431.429499pt;}
.y31c{bottom:431.429632pt;}
.y2fd{bottom:431.432032pt;}
.y24c{bottom:431.938718pt;}
.y63{bottom:432.152102pt;}
.y1ca{bottom:433.386545pt;}
.y1d3{bottom:433.387467pt;}
.y1b2{bottom:434.193398pt;}
.y2ce{bottom:436.556890pt;}
.y21d{bottom:437.616422pt;}
.y158{bottom:437.969594pt;}
.y77{bottom:442.281224pt;}
.yf7{bottom:443.641600pt;}
.yf5{bottom:443.641696pt;}
.y1b1{bottom:444.851224pt;}
.y2a8{bottom:444.927591pt;}
.y62{bottom:448.026004pt;}
.y27b{bottom:448.709844pt;}
.y31b{bottom:448.709978pt;}
.y2fc{bottom:448.712378pt;}
.y1d2{bottom:448.746545pt;}
.y1c9{bottom:448.746852pt;}
.y24b{bottom:449.219063pt;}
.yf6{bottom:449.310933pt;}
.y157{bottom:451.198318pt;}
.y21c{bottom:452.976730pt;}
.y2cd{bottom:453.837235pt;}
.y1b0{bottom:455.433733pt;}
.y76{bottom:458.230842pt;}
.yf4{bottom:459.591315pt;}
.y2a7{bottom:462.207937pt;}
.y342{bottom:463.413200pt;}
.y60{bottom:463.975622pt;}
.y1d1{bottom:464.106852pt;}
.y1c8{bottom:464.107159pt;}
.y156{bottom:464.502361pt;}
.y27a{bottom:465.990190pt;}
.y31a{bottom:465.990323pt;}
.y2fb{bottom:465.992723pt;}
.y24a{bottom:466.499409pt;}
.y61{bottom:467.453269pt;}
.y21b{bottom:468.337037pt;}
.y2cc{bottom:471.117581pt;}
.y75{bottom:474.180461pt;}
.yf3{bottom:475.541109pt;}
.y155{bottom:477.806405pt;}
.y1d0{bottom:479.467159pt;}
.y1c7{bottom:479.467467pt;}
.y2a6{bottom:479.488283pt;}
.y1af{bottom:479.548018pt;}
.y5f{bottom:479.925241pt;}
.y279{bottom:483.270535pt;}
.y319{bottom:483.270669pt;}
.y2fa{bottom:483.273069pt;}
.y21a{bottom:483.697344pt;}
.y249{bottom:483.779755pt;}
.y2cb{bottom:488.397926pt;}
.y74{bottom:490.130079pt;}
.y154{bottom:491.110448pt;}
.yf2{bottom:491.490728pt;}
.y1ae{bottom:491.566469pt;}
.y1c6{bottom:494.827159pt;}
.y1cf{bottom:494.827467pt;}
.y5e{bottom:495.874859pt;}
.y2a5{bottom:496.768628pt;}
.y341{bottom:499.012854pt;}
.y219{bottom:499.057651pt;}
.y278{bottom:500.550881pt;}
.y318{bottom:500.551014pt;}
.y2f9{bottom:500.553414pt;}
.y248{bottom:501.060100pt;}
.y2f{bottom:501.468750pt;}
.y1ad{bottom:503.509467pt;}
.y1ab{bottom:503.510139pt;}
.y152{bottom:504.339172pt;}
.y153{bottom:504.641645pt;}
.y2ca{bottom:505.678272pt;}
.y72{bottom:506.003981pt;}
.yf1{bottom:507.364630pt;}
.y1ac{bottom:508.044933pt;}
.y73{bottom:509.481628pt;}
.y1ce{bottom:510.186950pt;}
.y1c5{bottom:510.187159pt;}
.y5d{bottom:511.824478pt;}
.y2a4{bottom:514.048974pt;}
.y218{bottom:514.417958pt;}
.y1aa{bottom:515.453136pt;}
.y340{bottom:516.292854pt;}
.y2e{bottom:517.418368pt;}
.y151{bottom:517.643215pt;}
.y277{bottom:517.831227pt;}
.y317{bottom:517.831360pt;}
.y2f8{bottom:517.833760pt;}
.y247{bottom:518.340446pt;}
.y71{bottom:521.953659pt;}
.y2c9{bottom:522.958618pt;}
.yf0{bottom:523.314248pt;}
.y1c4{bottom:525.546943pt;}
.y1cd{bottom:525.547258pt;}
.y1a6{bottom:525.733067pt;}
.y1a7{bottom:527.396133pt;}
.y1a5{bottom:527.397772pt;}
.y5c{bottom:527.774096pt;}
.y217{bottom:529.778266pt;}
.y1a8{bottom:530.193247pt;}
.y150{bottom:530.947259pt;}
.y2a3{bottom:531.329319pt;}
.y1a9{bottom:531.931600pt;}
.y2d{bottom:533.367987pt;}
.y33f{bottom:533.572163pt;}
.y276{bottom:535.111572pt;}
.y316{bottom:535.111706pt;}
.y2f7{bottom:535.114106pt;}
.y246{bottom:535.620791pt;}
.y6f{bottom:537.903278pt;}
.yef{bottom:539.263867pt;}
.y1a4{bottom:539.340769pt;}
.y2c8{bottom:540.238963pt;}
.y70{bottom:541.380924pt;}
.y5b{bottom:543.723715pt;}
.y14f{bottom:544.175982pt;}
.y216{bottom:545.138573pt;}
.y1c3{bottom:546.239357pt;}
.y2a2{bottom:548.609665pt;}
.y2c{bottom:549.317605pt;}
.y33e{bottom:550.852509pt;}
.y1a3{bottom:551.283767pt;}
.y275{bottom:552.391918pt;}
.y315{bottom:552.392051pt;}
.y2f6{bottom:552.394451pt;}
.y245{bottom:552.901137pt;}
.y6d{bottom:553.852896pt;}
.y6e{bottom:557.330543pt;}
.y14e{bottom:557.480026pt;}
.y5a{bottom:557.481200pt;}
.y2c7{bottom:557.519309pt;}
.y59{bottom:559.673333pt;}
.y215{bottom:560.498880pt;}
.yee{bottom:560.504800pt;}
.y1a2{bottom:563.226764pt;}
.y2b{bottom:565.267224pt;}
.y2a1{bottom:565.890011pt;}
.y33d{bottom:568.132854pt;}
.y274{bottom:569.672263pt;}
.y314{bottom:569.672397pt;}
.y6c{bottom:569.802515pt;}
.y244{bottom:570.181483pt;}
.y14d{bottom:570.784069pt;}
.y2c6{bottom:574.799654pt;}
.y1a1{bottom:575.246278pt;}
.y214{bottom:575.859187pt;}
.y1c2{bottom:578.399959pt;}
.y58{bottom:580.914267pt;}
.y2a{bottom:581.141126pt;}
.y2a0{bottom:583.170356pt;}
.y14c{bottom:584.088112pt;}
.y33c{bottom:585.412509pt;}
.y6b{bottom:585.753025pt;}
.yf{bottom:585.825851pt;}
.y273{bottom:586.952609pt;}
.y313{bottom:586.952742pt;}
.y2f5{bottom:586.953809pt;}
.y1a0{bottom:587.189275pt;}
.y243{bottom:587.461828pt;}
.y213{bottom:591.219494pt;}
.y2c5{bottom:592.080000pt;}
.y29{bottom:597.090744pt;}
.y14b{bottom:597.316836pt;}
.ye{bottom:599.130002pt;}
.y19f{bottom:599.132272pt;}
.y29f{bottom:600.450702pt;}
.y1c1{bottom:600.453276pt;}
.y69{bottom:601.702644pt;}
.y33b{bottom:602.692854pt;}
.yed{bottom:603.062381pt;}
.y272{bottom:604.232955pt;}
.y312{bottom:604.233088pt;}
.y242{bottom:604.742174pt;}
.y6a{bottom:605.104574pt;}
.y212{bottom:606.579802pt;}
.y14a{bottom:610.620880pt;}
.y19e{bottom:611.075269pt;}
.y28{bottom:613.040363pt;}
.y68{bottom:617.652262pt;}
.y29e{bottom:617.731047pt;}
.yec{bottom:619.012059pt;}
.y33a{bottom:619.971818pt;}
.y2c4{bottom:620.773733pt;}
.y2f4{bottom:621.513167pt;}
.y271{bottom:621.513300pt;}
.y311{bottom:621.513434pt;}
.y211{bottom:621.940109pt;}
.y241{bottom:622.022519pt;}
.y19d{bottom:623.018267pt;}
.y19b{bottom:623.018358pt;}
.y57{bottom:623.547430pt;}
.y149{bottom:623.924923pt;}
.yd{bottom:627.023342pt;}
.y19c{bottom:627.553733pt;}
.y27{bottom:628.989981pt;}
.y1c0{bottom:629.707195pt;}
.y67{bottom:633.526164pt;}
.y19a{bottom:634.961355pt;}
.yeb{bottom:634.961678pt;}
.y29d{bottom:635.011393pt;}
.y148{bottom:637.228966pt;}
.y339{bottom:637.252163pt;}
.y210{bottom:637.300416pt;}
.y2f3{bottom:638.793513pt;}
.y270{bottom:638.793646pt;}
.y310{bottom:638.793779pt;}
.y240{bottom:639.302865pt;}
.y56{bottom:639.497048pt;}
.y25{bottom:642.823067pt;}
.y24{bottom:644.939581pt;}
.y26{bottom:644.939600pt;}
.y1bf{bottom:650.399609pt;}
.y147{bottom:650.457690pt;}
.yea{bottom:650.911296pt;}
.y29c{bottom:652.291739pt;}
.y20f{bottom:652.660723pt;}
.y338{bottom:654.532509pt;}
.y55{bottom:655.446879pt;}
.y2f2{bottom:656.073858pt;}
.y26f{bottom:656.073991pt;}
.y30f{bottom:656.074125pt;}
.yc{bottom:656.201722pt;}
.y23f{bottom:656.583211pt;}
.y196{bottom:657.185200pt;}
.y22{bottom:658.772667pt;}
.y197{bottom:658.923867pt;}
.y195{bottom:658.924203pt;}
.y23{bottom:660.889200pt;}
.y21{bottom:660.889315pt;}
.y198{bottom:661.645527pt;}
.y199{bottom:663.459333pt;}
.y146{bottom:663.761733pt;}
.ye9{bottom:666.860915pt;}
.y20e{bottom:668.021030pt;}
.y193{bottom:669.128533pt;}
.yb{bottom:669.505872pt;}
.y29b{bottom:669.572084pt;}
.y192{bottom:670.867012pt;}
.y194{bottom:670.867200pt;}
.y1be{bottom:671.093356pt;}
.y54{bottom:671.396498pt;}
.yb5{bottom:671.774267pt;}
.y337{bottom:671.812854pt;}
.y2f1{bottom:673.354204pt;}
.y26e{bottom:673.354337pt;}
.y2c3{bottom:673.354470pt;}
.y23e{bottom:673.863556pt;}
.y1e{bottom:676.838915pt;}
.y20{bottom:676.838933pt;}
.ye7{bottom:680.694000pt;}
.y1f{bottom:682.508133pt;}
.ya{bottom:682.810023pt;}
.ye8{bottom:682.810533pt;}
.ye6{bottom:682.810728pt;}
.y191{bottom:682.811072pt;}
.y145{bottom:683.037333pt;}
.y20d{bottom:683.381338pt;}
.y29a{bottom:686.852430pt;}
.y53{bottom:687.270400pt;}
.y336{bottom:689.092163pt;}
.y2f0{bottom:690.634549pt;}
.y26d{bottom:690.634683pt;}
.y2c2{bottom:690.634816pt;}
.y23d{bottom:691.143902pt;}
.y1bd{bottom:691.787103pt;}
.y1d{bottom:692.788613pt;}
.y190{bottom:694.754069pt;}
.yb4{bottom:695.887733pt;}
.yb2{bottom:695.888069pt;}
.y9{bottom:696.037927pt;}
.y20c{bottom:698.741645pt;}
.ye5{bottom:698.760346pt;}
.yb3{bottom:700.423067pt;}
.y299{bottom:704.132775pt;}
.y18e{bottom:705.034133pt;}
.y335{bottom:706.372509pt;}
.y18f{bottom:706.697067pt;}
.y18d{bottom:706.697440pt;}
.yb1{bottom:707.831067pt;}
.yaf{bottom:707.831269pt;}
.y2ef{bottom:707.914895pt;}
.y26c{bottom:707.915028pt;}
.y2c1{bottom:707.915162pt;}
.y23c{bottom:708.424247pt;}
.y1c{bottom:708.662515pt;}
.y8{bottom:709.342078pt;}
.yb0{bottom:712.366400pt;}
.y1bc{bottom:712.479517pt;}
.y20b{bottom:714.101952pt;}
.ye4{bottom:714.634248pt;}
.y18c{bottom:718.716954pt;}
.yae{bottom:719.774267pt;}
.yac{bottom:719.774358pt;}
.y144{bottom:720.076726pt;}
.y298{bottom:721.413121pt;}
.y334{bottom:723.652854pt;}
.yad{bottom:724.309867pt;}
.y1b{bottom:724.612211pt;}
.y2ee{bottom:725.195241pt;}
.y26b{bottom:725.195374pt;}
.y2c0{bottom:725.195507pt;}
.y23b{bottom:725.704593pt;}
.ye2{bottom:728.467333pt;}
.y20a{bottom:729.462259pt;}
.ye1{bottom:730.583830pt;}
.ye3{bottom:730.583867pt;}
.y18b{bottom:730.659951pt;}
.yab{bottom:731.793872pt;}
.y143{bottom:736.026344pt;}
.y1bb{bottom:736.640000pt;}
.y7{bottom:738.595774pt;}
.y297{bottom:738.693467pt;}
.y1a{bottom:740.561830pt;}
.y333{bottom:740.932163pt;}
.y2ed{bottom:742.475586pt;}
.y26a{bottom:742.475719pt;}
.y2bf{bottom:742.475853pt;}
.y18a{bottom:742.602948pt;}
.y23a{bottom:742.984939pt;}
.yaa{bottom:743.736869pt;}
.y209{bottom:744.822566pt;}
.ye0{bottom:746.533448pt;}
.y6{bottom:750.690203pt;}
.y5{bottom:751.899925pt;}
.y142{bottom:751.975963pt;}
.y189{bottom:754.545946pt;}
.ya9{bottom:755.679867pt;}
.ya7{bottom:755.680539pt;}
.y19{bottom:756.511448pt;}
.y332{bottom:758.212509pt;}
.y296{bottom:759.653467pt;}
.y2ec{bottom:759.755932pt;}
.y269{bottom:759.756065pt;}
.y2be{bottom:759.756198pt;}
.y208{bottom:760.182874pt;}
.ya8{bottom:760.215333pt;}
.y239{bottom:760.265284pt;}
.yde{bottom:760.366533pt;}
.ydd{bottom:762.483048pt;}
.ydf{bottom:762.483067pt;}
.ya6{bottom:767.623536pt;}
.y140{bottom:767.925581pt;}
.y141{bottom:768.228448pt;}
.y18{bottom:772.461067pt;}
.y1ba{bottom:772.827467pt;}
.y331{bottom:775.492854pt;}
.y207{bottom:775.543181pt;}
.ydb{bottom:776.316133pt;}
.y2eb{bottom:777.036277pt;}
.y268{bottom:777.036411pt;}
.y2bd{bottom:777.036544pt;}
.y238{bottom:777.545630pt;}
.ydc{bottom:778.432667pt;}
.yda{bottom:778.432763pt;}
.y188{bottom:778.433003pt;}
.ya5{bottom:779.566533pt;}
.ya3{bottom:779.566961pt;}
.y13f{bottom:783.875200pt;}
.ya4{bottom:784.102000pt;}
.y295{bottom:788.347467pt;}
.y187{bottom:790.376000pt;}
.y185{bottom:790.377154pt;}
.y206{bottom:790.903488pt;}
.ya2{bottom:791.509958pt;}
.y330{bottom:792.773200pt;}
.y2ea{bottom:794.316623pt;}
.y267{bottom:794.316756pt;}
.y2bc{bottom:794.316890pt;}
.yd9{bottom:794.382381pt;}
.y237{bottom:794.825975pt;}
.y186{bottom:794.911467pt;}
.y4{bottom:797.027849pt;}
.y184{bottom:802.395606pt;}
.ya1{bottom:803.529472pt;}
.y13e{bottom:805.116267pt;}
.y205{bottom:806.263795pt;}
.y17{bottom:807.686763pt;}
.yd8{bottom:808.215467pt;}
.y1b9{bottom:809.707611pt;}
.yd7{bottom:810.331981pt;}
.y3{bottom:810.332000pt;}
.y2e9{bottom:811.596969pt;}
.y266{bottom:811.597102pt;}
.y2bb{bottom:811.597235pt;}
.y236{bottom:812.106321pt;}
.y32f{bottom:813.733200pt;}
.y183{bottom:814.338603pt;}
.ya0{bottom:815.472469pt;}
.y15{bottom:819.781192pt;}
.y16{bottom:819.856509pt;}
.y14{bottom:820.914667pt;}
.y204{bottom:821.624102pt;}
.yd5{bottom:824.089467pt;}
.yd6{bottom:826.281600pt;}
.yd4{bottom:826.281720pt;}
.y180{bottom:826.281936pt;}
.y9f{bottom:827.415467pt;}
.y9d{bottom:827.416475pt;}
.y2e8{bottom:828.877314pt;}
.y265{bottom:828.877447pt;}
.y294{bottom:828.877581pt;}
.y181{bottom:829.003596pt;}
.y235{bottom:829.386667pt;}
.y182{bottom:830.817067pt;}
.y9e{bottom:831.950933pt;}
.y203{bottom:836.984410pt;}
.y17f{bottom:838.225606pt;}
.y1b8{bottom:838.480000pt;}
.y9c{bottom:839.359472pt;}
.yd3{bottom:842.155622pt;}
.y13d{bottom:842.155659pt;}
.y32e{bottom:842.427467pt;}
.y2e7{bottom:846.157660pt;}
.y264{bottom:846.157793pt;}
.y293{bottom:846.157926pt;}
.y234{bottom:848.866800pt;}
.y17d{bottom:850.168603pt;}
.y233{bottom:850.346800pt;}
.y9b{bottom:851.302469pt;}
.y202{bottom:852.344717pt;}
.y17e{bottom:852.965717pt;}
.y13{bottom:855.157200pt;}
.yd2{bottom:858.105241pt;}
.y13c{bottom:858.105278pt;}
.y17c{bottom:862.111600pt;}
.y9a{bottom:863.245467pt;}
.y98{bottom:863.246621pt;}
.y2e6{bottom:863.438005pt;}
.y263{bottom:863.438139pt;}
.y292{bottom:863.438272pt;}
.y201{bottom:867.705024pt;}
.y99{bottom:867.780800pt;}
.y17b{bottom:872.391867pt;}
.y1b7{bottom:872.933733pt;}
.yd1{bottom:874.054859pt;}
.y13b{bottom:874.054896pt;}
.y17a{bottom:874.130869pt;}
.y97{bottom:875.189618pt;}
.y232{bottom:879.040533pt;}
.y2e5{bottom:880.718351pt;}
.y262{bottom:880.718484pt;}
.y291{bottom:880.718618pt;}
.y200{bottom:883.065331pt;}
.y178{bottom:884.335200pt;}
.y179{bottom:886.073867pt;}
.y177{bottom:886.074203pt;}
.y96{bottom:887.208069pt;}
.y1fc{bottom:888.399386pt;}
.y1fa{bottom:888.399559pt;}
.yd0{bottom:890.004478pt;}
.y13a{bottom:890.004515pt;}
.y4f{bottom:893.179333pt;}
.y175{bottom:896.278533pt;}
.y2e4{bottom:897.998697pt;}
.y261{bottom:897.998830pt;}
.y290{bottom:897.998963pt;}
.y176{bottom:898.017200pt;}
.y174{bottom:898.017403pt;}
.y1ff{bottom:898.425638pt;}
.y93{bottom:899.150746pt;}
.y95{bottom:899.151067pt;}
.y12{bottom:900.662246pt;}
.y94{bottom:903.686400pt;}
.y1f9{bottom:903.759693pt;}
.ycf{bottom:905.954096pt;}
.y138{bottom:905.957084pt;}
.y172{bottom:908.297467pt;}
.y173{bottom:909.960400pt;}
.y171{bottom:909.960869pt;}
.y139{bottom:910.716400pt;}
.y1fe{bottom:913.785946pt;}
.y2e3{bottom:915.279042pt;}
.y260{bottom:915.279175pt;}
.y28f{bottom:915.279309pt;}
.y231{bottom:919.039384pt;}
.y1f8{bottom:919.119693pt;}
.y52{bottom:921.903715pt;}
.y92{bottom:921.903867pt;}
.y137{bottom:921.906702pt;}
.y11{bottom:924.548913pt;}
.y1fd{bottom:929.146253pt;}
.y2e2{bottom:932.559388pt;}
.y25f{bottom:932.559521pt;}
.y28e{bottom:932.559654pt;}
.y1f7{bottom:934.479693pt;}
.y1fb{bottom:934.480000pt;}
.yce{bottom:935.736933pt;}
.y1b6{bottom:936.320000pt;}
.ycd{bottom:937.853333pt;}
.y51{bottom:937.853448pt;}
.y136{bottom:937.856321pt;}
.y90{bottom:942.010933pt;}
.ycc{bottom:943.522667pt;}
.y91{bottom:944.958996pt;}
.y10{bottom:948.436133pt;}
.y2e1{bottom:949.839733pt;}
.y25e{bottom:949.839867pt;}
.y1f6{bottom:949.840000pt;}
.ycb{bottom:951.610933pt;}
.y50{bottom:953.803067pt;}
.y134{bottom:953.805939pt;}
.yca{bottom:953.806929pt;}
.y8f{bottom:954.634533pt;}
.y135{bottom:957.207869pt;}
.y1b3{bottom:991.040000pt;}
.y2{bottom:994.470800pt;}
.h29{height:15.857911pt;}
.h1a{height:18.958772pt;}
.h23{height:20.444799pt;}
.h16{height:21.619147pt;}
.h1c{height:22.610355pt;}
.hd{height:23.698372pt;}
.h1b{height:25.923939pt;}
.h26{height:28.268707pt;}
.h4{height:28.378717pt;}
.h28{height:28.523763pt;}
.h19{height:29.629005pt;}
.h18{height:31.479122pt;}
.h27{height:31.774137pt;}
.h2c{height:32.212528pt;}
.h15{height:32.434621pt;}
.h9{height:32.611348pt;}
.h8{height:32.912617pt;}
.h5{height:33.217604pt;}
.h24{height:33.331841pt;}
.h25{height:33.352991pt;}
.h17{height:35.196894pt;}
.hf{height:35.334376pt;}
.h22{height:35.653182pt;}
.h3a{height:35.839104pt;}
.ha{height:37.034677pt;}
.h21{height:37.034751pt;}
.h20{height:37.640409pt;}
.h7{height:39.106918pt;}
.h13{height:39.489765pt;}
.h1f{height:39.492630pt;}
.hc{height:39.493015pt;}
.he{height:39.493333pt;}
.h11{height:39.493407pt;}
.h12{height:39.493481pt;}
.h1d{height:39.493629pt;}
.h14{height:39.795496pt;}
.h1e{height:39.795807pt;}
.hb{height:39.795955pt;}
.h2b{height:40.267472pt;}
.h10{height:41.062912pt;}
.h33{height:44.320164pt;}
.h31{height:44.320886pt;}
.h32{height:44.321828pt;}
.h34{height:44.322981pt;}
.h35{height:44.361353pt;}
.h2e{height:44.800896pt;}
.h37{height:44.802125pt;}
.h38{height:44.803360pt;}
.h36{height:44.804190pt;}
.h2{height:46.928930pt;}
.h30{height:48.320000pt;}
.h39{height:50.720896pt;}
.h2f{height:56.372528pt;}
.h3{height:62.571383pt;}
.h6{height:63.252624pt;}
.h2a{height:64.427472pt;}
.h2d{height:80.532528pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w1{width:812.666667pt;}
.w0{width:812.900000pt;}
.x0{left:0.000000pt;}
.x1{left:59.792267pt;}
.xc7{left:66.368667pt;}
.xc0{left:69.014267pt;}
.xc9{left:70.373989pt;}
.x3c{left:73.096133pt;}
.xcf{left:74.003200pt;}
.xc3{left:76.648454pt;}
.xc8{left:78.236400pt;}
.xdb{left:80.000000pt;}
.xc4{left:82.167067pt;}
.xac{left:85.039467pt;}
.xd0{left:87.080400pt;}
.xc5{left:90.330800pt;}
.xdd{left:93.332400pt;}
.xad{left:94.488400pt;}
.xc2{left:95.697775pt;}
.xc6{left:99.779733pt;}
.xa8{left:103.634800pt;}
.xa9{left:107.187600pt;}
.xca{left:112.403333pt;}
.x3e{left:116.332578pt;}
.xcb{left:119.054981pt;}
.xd1{left:121.927733pt;}
.xcc{left:124.573467pt;}
.xe0{left:131.965067pt;}
.xcd{left:134.022267pt;}
.xd2{left:136.667845pt;}
.xd3{left:142.186000pt;}
.xd4{left:151.634933pt;}
.x3f{left:157.903605pt;}
.xce{left:161.083733pt;}
.xdf{left:173.520000pt;}
.x2{left:212.863457pt;}
.x95{left:217.020800pt;}
.x96{left:221.405067pt;}
.x97{left:231.231867pt;}
.x98{left:240.000400pt;}
.xc1{left:243.326400pt;}
.x59{left:245.291733pt;}
.x99{left:248.164133pt;}
.x5a{left:252.246000pt;}
.xbd{left:253.983856pt;}
.x9a{left:256.932667pt;}
.xb1{left:259.200400pt;}
.xb2{left:262.828800pt;}
.x9b{left:265.096533pt;}
.xbe{left:266.003600pt;}
.x9c{left:269.480800pt;}
.xb3{left:273.713867pt;}
.x3{left:274.998800pt;}
.x5b{left:278.551600pt;}
.xb4{left:280.894933pt;}
.x9d{left:282.633467pt;}
.x9e{left:285.506000pt;}
.x5c{left:288.983067pt;}
.x9f{left:289.890267pt;}
.xb5{left:296.239867pt;}
.xa0{left:299.717067pt;}
.xbf{left:300.926400pt;}
.xa1{left:304.101200pt;}
.x4{left:308.107613pt;}
.xaa{left:310.375333pt;}
.xa2{left:312.265067pt;}
.x33{left:313.172133pt;}
.xb6{left:315.666667pt;}
.x5d{left:317.329600pt;}
.xb7{left:319.219467pt;}
.x6{left:320.504400pt;}
.x34{left:323.376933pt;}
.x7{left:324.964267pt;}
.xb8{left:326.702933pt;}
.x2f{left:328.063467pt;}
.xa3{left:329.802133pt;}
.xd5{left:332.523333pt;}
.xa7{left:333.808400pt;}
.x30{left:337.890267pt;}
.x3d{left:340.158000pt;}
.xb9{left:341.216267pt;}
.x35{left:342.652400pt;}
.xa4{left:343.710800pt;}
.x31{left:346.205200pt;}
.x36{left:347.490267pt;}
.xba{left:349.380000pt;}
.x37{left:351.950133pt;}
.xbb{left:352.932800pt;}
.x38{left:356.107600pt;}
.x32{left:358.072933pt;}
.xd6{left:359.358000pt;}
.xbc{left:361.096667pt;}
.xab{left:362.230533pt;}
.xd7{left:363.666667pt;}
.x39{left:365.102933pt;}
.x8{left:366.312400pt;}
.x9{left:370.847733pt;}
.xa5{left:379.994267pt;}
.xd8{left:381.203733pt;}
.x5e{left:382.715600pt;}
.xa6{left:384.378533pt;}
.xd9{left:387.099733pt;}
.x5f{left:389.669867pt;}
.xdc{left:406.679867pt;}
.x40{left:418.389687pt;}
.xde{left:420.012795pt;}
.x94{left:424.668400pt;}
.x7f{left:427.314000pt;}
.xaf{left:429.052699pt;}
.x41{left:431.767601pt;}
.x93{left:434.948667pt;}
.x16{left:435.931333pt;}
.x5{left:439.257826pt;}
.x17{left:440.391200pt;}
.x60{left:442.885733pt;}
.x80{left:446.514133pt;}
.x89{left:452.107733pt;}
.x43{left:453.240719pt;}
.x18{left:454.148667pt;}
.x81{left:456.794400pt;}
.x82{left:461.254267pt;}
.x19{left:463.068400pt;}
.xae{left:466.244558pt;}
.x6b{left:472.366133pt;}
.x1a{left:473.348800pt;}
.x6c{left:476.825867pt;}
.x3a{left:478.716236pt;}
.x6d{left:480.983467pt;}
.x1b{left:482.344000pt;}
.x6e{left:485.518800pt;}
.x1c{left:492.019600pt;}
.x8a{left:493.304667pt;}
.x83{left:494.892133pt;}
.x1d{left:496.479467pt;}
.x8b{left:497.764533pt;}
.x84{left:499.351867pt;}
.x61{left:501.317333pt;}
.x57{left:502.451200pt;}
.x1e{left:506.759867pt;}
.xb0{left:509.710254pt;}
.x1f{left:511.219733pt;}
.x46{left:513.033867pt;}
.x20{left:516.133067pt;}
.x21{left:520.592933pt;}
.xda{left:521.920000pt;}
.x8c{left:524.674800pt;}
.x6f{left:527.169333pt;}
.x62{left:528.227600pt;}
.x8d{left:529.134667pt;}
.x58{left:532.309467pt;}
.x22{left:534.350400pt;}
.x23{left:538.810267pt;}
.x70{left:541.909467pt;}
.x3b{left:543.497696pt;}
.x71{left:546.369333pt;}
.x42{left:548.183922pt;}
.x24{left:549.090667pt;}
.x25{left:553.550400pt;}
.x72{left:555.364667pt;}
.x47{left:557.708000pt;}
.x8e{left:558.690533pt;}
.x63{left:562.167867pt;}
.x26{left:563.830800pt;}
.x48{left:565.871733pt;}
.x27{left:568.290667pt;}
.x73{left:569.802400pt;}
.x49{left:574.715867pt;}
.x8f{left:578.646533pt;}
.x4a{left:582.879600pt;}
.x4b{left:587.263867pt;}
.x28{left:588.246533pt;}
.x29{left:592.706400pt;}
.xa{left:593.915867pt;}
.x4c{left:595.956800pt;}
.x64{left:597.317467pt;}
.xb{left:598.451333pt;}
.x4d{left:600.341067pt;}
.x2e{left:602.230933pt;}
.x4e{left:603.213467pt;}
.x65{left:604.271867pt;}
.x4f{left:607.597733pt;}
.xc{left:608.731600pt;}
.xd{left:613.267067pt;}
.x50{left:617.424533pt;}
.x51{left:621.808800pt;}
.xe{left:626.646667pt;}
.x52{left:629.972667pt;}
.xf{left:631.106533pt;}
.x2a{left:632.089200pt;}
.x53{left:634.432400pt;}
.x2b{left:636.624533pt;}
.x74{left:639.950667pt;}
.x85{left:641.538000pt;}
.x54{left:643.125467pt;}
.x75{left:644.486000pt;}
.x86{left:646.073467pt;}
.x10{left:646.980533pt;}
.x66{left:648.719067pt;}
.x11{left:651.516000pt;}
.x67{left:653.178933pt;}
.x76{left:654.690800pt;}
.x87{left:656.278133pt;}
.x77{left:659.226133pt;}
.x12{left:661.796267pt;}
.x68{left:663.459200pt;}
.x88{left:665.046667pt;}
.x13{left:666.331733pt;}
.x69{left:667.919067pt;}
.x78{left:669.430933pt;}
.x90{left:672.227733pt;}
.x2c{left:673.286000pt;}
.x6a{left:678.199467pt;}
.x14{left:679.635600pt;}
.x2d{left:681.903467pt;}
.x79{left:682.961733pt;}
.x15{left:684.171200pt;}
.x91{left:686.968000pt;}
.x45{left:690.975164pt;}
.x7a{left:693.544400pt;}
.x55{left:697.701867pt;}
.x56{left:702.086133pt;}
.x7b{left:717.279733pt;}
.x7c{left:721.815333pt;}
.x92{left:726.124000pt;}
.x7d{left:730.659467pt;}
.x7e{left:735.119333pt;}
.x44{left:743.208103pt;}
}


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