
/* 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_37a014fe9b23.woff")format("woff");}.ff1{font-family:ff1;line-height:0.965000;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_966bac8df324.woff")format("woff");}.ff2{font-family:ff2;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_e8ab8f9a635e.woff")format("woff");}.ff3{font-family:ff3;line-height:0.965000;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_fb0caf353531.woff")format("woff");}.ff4{font-family:ff4;line-height:0.188000;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_4b674694ebd3.woff")format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_795913d211e1.woff")format("woff");}.ff6{font-family:ff6;line-height:0.749000;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_7d3adf7f7e8d.woff")format("woff");}.ff7{font-family:ff7;line-height:0.475000;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_64fc7a4ebade.woff")format("woff");}.ff8{font-family:ff8;line-height:0.970000;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_96cf5959c8e9.woff")format("woff");}.ff9{font-family:ff9;line-height:0.965000;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_f76439f9eb62.woff")format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_4b54a3686d1a.woff")format("woff");}.ffb{font-family:ffb;line-height:0.788000;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_fed9ee2b744e.woff")format("woff");}.ffc{font-family:ffc;line-height:0.740000;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_2edc11cd0563.woff")format("woff");}.ffd{font-family:ffd;line-height:0.692000;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_8e7f8396dd8d.woff")format("woff");}.ffe{font-family:ffe;line-height:0.579000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.233646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233646,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.268004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268004,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268016,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268020,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.379523px;}
.v2{vertical-align:13.944211px;}
.v3{vertical-align:17.345904px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014346px;}
.ls10{letter-spacing:0.016057px;}
.ls2d{letter-spacing:0.043039px;}
.ls3{letter-spacing:0.047821px;}
.ls1{letter-spacing:0.107597px;}
.ls0{letter-spacing:0.112976px;}
.ls11{letter-spacing:0.137722px;}
.ls8{letter-spacing:0.217576px;}
.ls1c{letter-spacing:0.229542px;}
.lsc{letter-spacing:0.239106px;}
.lsf{letter-spacing:0.241013px;}
.ls33{letter-spacing:0.260141px;}
.ls32{letter-spacing:0.267792px;}
.ls1d{letter-spacing:0.276184px;}
.ls2{letter-spacing:0.314182px;}
.ls22{letter-spacing:2.652300px;}
.lse{letter-spacing:2.937900px;}
.lsd{letter-spacing:2.938500px;}
.ls23{letter-spacing:2.992500px;}
.ls27{letter-spacing:10.118966px;}
.ls15{letter-spacing:10.396329px;}
.ls26{letter-spacing:10.458496px;}
.ls19{letter-spacing:11.362032px;}
.ls2f{letter-spacing:11.399059px;}
.ls24{letter-spacing:11.481870px;}
.ls18{letter-spacing:11.526533px;}
.ls1a{letter-spacing:11.702510px;}
.ls25{letter-spacing:11.821401px;}
.ls28{letter-spacing:12.160931px;}
.ls2a{letter-spacing:12.333087px;}
.ls2e{letter-spacing:12.839992px;}
.ls34{letter-spacing:12.846365px;}
.ls1b{letter-spacing:13.122469px;}
.ls31{letter-spacing:14.030740px;}
.ls17{letter-spacing:14.482489px;}
.ls29{letter-spacing:14.557500px;}
.ls5{letter-spacing:15.321912px;}
.ls7{letter-spacing:15.343261px;}
.ls6{letter-spacing:15.546672px;}
.ls2b{letter-spacing:15.578100px;}
.ls21{letter-spacing:16.923923px;}
.ls20{letter-spacing:17.263453px;}
.ls30{letter-spacing:17.279100px;}
.ls14{letter-spacing:17.602984px;}
.ls1e{letter-spacing:18.282045px;}
.ls1f{letter-spacing:18.621575px;}
.lsb{letter-spacing:19.343926px;}
.lsa{letter-spacing:19.348111px;}
.ls2c{letter-spacing:20.324010px;}
.ls13{letter-spacing:22.982869px;}
.ls16{letter-spacing:25.426532px;}
.ls12{letter-spacing:162.496186px;}
.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;}
}
.wsd4{word-spacing:-135.022157px;}
.ws10{word-spacing:-19.385769px;}
.ws5e{word-spacing:-15.594493px;}
.ws121{word-spacing:-11.564789px;}
.wsb{word-spacing:-5.527434px;}
.ws3{word-spacing:-0.080697px;}
.ws34{word-spacing:-0.047821px;}
.ws14{word-spacing:-0.043039px;}
.wsd{word-spacing:-0.038256px;}
.ws130{word-spacing:-0.035868px;}
.ws20{word-spacing:-0.032281px;}
.ws7a{word-spacing:-0.023909px;}
.ws7c{word-spacing:0.000000px;}
.ws2b2{word-spacing:8.936602px;}
.ws2c9{word-spacing:8.974858px;}
.ws1c8{word-spacing:9.028643px;}
.ws2a5{word-spacing:9.066672px;}
.ws1c7{word-spacing:9.119503px;}
.ws1c9{word-spacing:9.129067px;}
.ws2e8{word-spacing:9.162312px;}
.ws2db{word-spacing:9.185266px;}
.ws151{word-spacing:9.272531px;}
.ws224{word-spacing:9.277313px;}
.ws2d6{word-spacing:9.303859px;}
.ws2d7{word-spacing:9.307685px;}
.ws18f{word-spacing:9.315570px;}
.ws2dc{word-spacing:9.349766px;}
.ws2e5{word-spacing:9.361243px;}
.ws225{word-spacing:9.368173px;}
.ws227{word-spacing:9.382519px;}
.ws2c4{word-spacing:9.407150px;}
.ws18e{word-spacing:9.444687px;}
.ws2e4{word-spacing:9.468360px;}
.wsfa{word-spacing:9.473380px;}
.wsf8{word-spacing:9.482944px;}
.ws2d8{word-spacing:9.491314px;}
.ws226{word-spacing:9.497290px;}
.ws252{word-spacing:9.545112px;}
.ws2b9{word-spacing:9.564000px;}
.ws2c6{word-spacing:9.590779px;}
.ws219{word-spacing:9.597715px;}
.ws8e{word-spacing:9.664665px;}
.ws2a3{word-spacing:9.705547px;}
.wsf9{word-spacing:9.707704px;}
.ws2a4{word-spacing:9.755280px;}
.ws2b5{word-spacing:9.774408px;}
.ws24b{word-spacing:9.774653px;}
.ws1ed{word-spacing:9.812910px;}
.ws1aa{word-spacing:9.817692px;}
.ws2b3{word-spacing:9.831792px;}
.wsa1{word-spacing:9.832039px;}
.ws24a{word-spacing:9.841603px;}
.wsa0{word-spacing:9.855949px;}
.ws1e0{word-spacing:9.860731px;}
.ws14b{word-spacing:9.875078px;}
.ws2d2{word-spacing:9.900653px;}
.ws196{word-spacing:9.903771px;}
.ws14a{word-spacing:9.913335px;}
.ws6f{word-spacing:9.918117px;}
.ws1f4{word-spacing:9.937245px;}
.ws24d{word-spacing:9.942027px;}
.ws2aa{word-spacing:9.950386px;}
.ws2be{word-spacing:10.003944px;}
.ws11a{word-spacing:10.004195px;}
.ws106{word-spacing:10.008977px;}
.ws105{word-spacing:10.047234px;}
.ws20c{word-spacing:10.052016px;}
.wsa5{word-spacing:10.056798px;}
.ws2bd{word-spacing:10.076630px;}
.ws157{word-spacing:10.080709px;}
.ws31{word-spacing:10.085491px;}
.ws2e6{word-spacing:10.088107px;}
.ws158{word-spacing:10.147659px;}
.ws24c{word-spacing:10.157223px;}
.ws1b7{word-spacing:10.162005px;}
.ws2b4{word-spacing:10.179922px;}
.ws2e7{word-spacing:10.244957px;}
.ws195{word-spacing:10.315033px;}
.ws132{word-spacing:10.329379px;}
.ws12f{word-spacing:10.338943px;}
.ws35{word-spacing:10.343726px;}
.ws223{word-spacing:10.367636px;}
.ws172{word-spacing:10.386765px;}
.ws164{word-spacing:10.396329px;}
.ws2d3{word-spacing:10.397981px;}
.ws131{word-spacing:10.434586px;}
.ws197{word-spacing:10.463279px;}
.ws59{word-spacing:10.487189px;}
.ws156{word-spacing:10.491971px;}
.ws25c{word-spacing:10.501536px;}
.ws11b{word-spacing:10.530228px;}
.wsa2{word-spacing:10.558921px;}
.ws1b6{word-spacing:10.568485px;}
.ws1c2{word-spacing:10.592396px;}
.ws17c{word-spacing:10.616306px;}
.ws111{word-spacing:10.621089px;}
.ws296{word-spacing:10.654296px;}
.ws154{word-spacing:10.654563px;}
.wsc5{word-spacing:10.683256px;}
.ws5a{word-spacing:10.692820px;}
.ws33{word-spacing:10.726295px;}
.ws58{word-spacing:10.731077px;}
.ws57{word-spacing:10.759770px;}
.ws295{word-spacing:10.818797px;}
.ws155{word-spacing:10.826720px;}
.ws22d{word-spacing:10.830274px;}
.wsc6{word-spacing:10.879323px;}
.ws2d{word-spacing:10.893669px;}
.ws210{word-spacing:10.898451px;}
.ws269{word-spacing:10.912798px;}
.ws6b{word-spacing:10.931926px;}
.ws20f{word-spacing:10.946273px;}
.ws271{word-spacing:11.056261px;}
.ws2e2{word-spacing:11.059810px;}
.ws211{word-spacing:11.070608px;}
.ws2d9{word-spacing:11.105717px;}
.ws2af{word-spacing:11.117194px;}
.ws6a{word-spacing:11.118429px;}
.ws242{word-spacing:11.132775px;}
.ws2e1{word-spacing:11.159275px;}
.ws165{word-spacing:11.175814px;}
.ws1f6{word-spacing:11.185379px;}
.ws133{word-spacing:11.223636px;}
.ws26a{word-spacing:11.252328px;}
.ws230{word-spacing:11.262566px;}
.ws166{word-spacing:11.295367px;}
.ws103{word-spacing:11.314496px;}
.ws270{word-spacing:11.324060px;}
.wsd6{word-spacing:11.354381px;}
.wse3{word-spacing:11.362032px;}
.ws22b{word-spacing:11.369683px;}
.ws167{word-spacing:11.410138px;}
.ws80{word-spacing:11.419703px;}
.wsea{word-spacing:11.450021px;}
.ws232{word-spacing:11.457672px;}
.wse9{word-spacing:11.461498px;}
.ws23d{word-spacing:11.467524px;}
.ws2c7{word-spacing:11.480626px;}
.wse6{word-spacing:11.492102px;}
.wse7{word-spacing:11.503579px;}
.ws148{word-spacing:11.510563px;}
.wsd0{word-spacing:11.511230px;}
.ws146{word-spacing:11.524909px;}
.ws6c{word-spacing:11.529691px;}
.ws22c{word-spacing:11.530358px;}
.ws22f{word-spacing:11.534184px;}
.ws28d{word-spacing:11.548820px;}
.wsd5{word-spacing:11.553312px;}
.ws2c2{word-spacing:11.614522px;}
.ws22a{word-spacing:11.637475px;}
.ws122{word-spacing:11.656603px;}
.ws1e{word-spacing:11.672068px;}
.wsb3{word-spacing:11.673155px;}
.ws2c8{word-spacing:11.679557px;}
.ws163{word-spacing:11.692283px;}
.wse8{word-spacing:11.698685px;}
.wsce{word-spacing:11.713987px;}
.wsd3{word-spacing:11.717813px;}
.ws221{word-spacing:11.744887px;}
.ws25b{word-spacing:11.792708px;}
.ws25a{word-spacing:11.797490px;}
.ws124{word-spacing:11.801976px;}
.ws161{word-spacing:11.807054px;}
.ws120{word-spacing:11.844058px;}
.ws162{word-spacing:11.845311px;}
.ws147{word-spacing:11.850093px;}
.wsb2{word-spacing:11.864440px;}
.ws1d3{word-spacing:11.874004px;}
.ws38{word-spacing:11.878786px;}
.ws2de{word-spacing:11.901442px;}
.ws259{word-spacing:11.902697px;}
.ws2cc{word-spacing:11.909093px;}
.ws1d{word-spacing:11.960427px;}
.ws176{word-spacing:12.012685px;}
.ws149{word-spacing:12.017468px;}
.ws175{word-spacing:12.031814px;}
.ws1df{word-spacing:12.084417px;}
.ws174{word-spacing:12.098764px;}
.ws17{word-spacing:12.141189px;}
.ws152{word-spacing:12.156149px;}
.ws274{word-spacing:12.194406px;}
.ws234{word-spacing:12.242227px;}
.ws88{word-spacing:12.256574px;}
.ws19c{word-spacing:12.280484px;}
.ws82{word-spacing:12.304395px;}
.ws116{word-spacing:12.328305px;}
.ws81{word-spacing:12.342652px;}
.ws16{word-spacing:12.347774px;}
.ws258{word-spacing:12.356998px;}
.ws179{word-spacing:12.371344px;}
.ws287{word-spacing:12.385691px;}
.ws25e{word-spacing:12.395255px;}
.ws18{word-spacing:12.399421px;}
.ws23c{word-spacing:12.419166px;}
.ws2c1{word-spacing:12.421723px;}
.ws1c0{word-spacing:12.428730px;}
.ws257{word-spacing:12.476551px;}
.ws1c{word-spacing:12.476890px;}
.ws2ad{word-spacing:12.479107px;}
.ws2d1{word-spacing:12.517363px;}
.ws2ce{word-spacing:12.521189px;}
.ws291{word-spacing:12.528840px;}
.ws89{word-spacing:12.529154px;}
.ws173{word-spacing:12.543501px;}
.ws118{word-spacing:12.553065px;}
.ws117{word-spacing:12.562629px;}
.ws2cd{word-spacing:12.570922px;}
.ws1b2{word-spacing:12.572193px;}
.ws2ae{word-spacing:12.574454px;}
.ws2b8{word-spacing:12.574747px;}
.ws2d4{word-spacing:12.582398px;}
.ws299{word-spacing:12.586224px;}
.ws25d{word-spacing:12.586540px;}
.ws294{word-spacing:12.590050px;}
.ws2b1{word-spacing:12.593875px;}
.ws2dd{word-spacing:12.597701px;}
.ws29d{word-spacing:12.601526px;}
.ws298{word-spacing:12.624480px;}
.ws2e0{word-spacing:12.628306px;}
.wsef{word-spacing:12.632131px;}
.ws2bb{word-spacing:12.635957px;}
.ws2a6{word-spacing:12.639782px;}
.ws2c3{word-spacing:12.643608px;}
.ws2a8{word-spacing:12.651259px;}
.ws28f{word-spacing:12.658910px;}
.ws153{word-spacing:12.663054px;}
.ws16f{word-spacing:12.666260px;}
.ws29f{word-spacing:12.666562px;}
.ws1ad{word-spacing:12.667836px;}
.ws293{word-spacing:12.670387px;}
.ws29a{word-spacing:12.678038px;}
.ws2df{word-spacing:12.681864px;}
.ws2b6{word-spacing:12.685690px;}
.ws2a0{word-spacing:12.689515px;}
.ws1c1{word-spacing:12.696529px;}
.ws2cf{word-spacing:12.697166px;}
.ws26d{word-spacing:12.701311px;}
.ws2b7{word-spacing:12.708643px;}
.ws9{word-spacing:12.712469px;}
.wse0{word-spacing:12.722210px;}
.ws1ab{word-spacing:12.725221px;}
.ws2ab{word-spacing:12.735422px;}
.ws1f9{word-spacing:12.744350px;}
.ws2bc{word-spacing:12.746899px;}
.ws290{word-spacing:12.750725px;}
.ws2a1{word-spacing:12.754550px;}
.ws178{word-spacing:12.758696px;}
.ws1ae{word-spacing:12.768260px;}
.ws8{word-spacing:12.777504px;}
.ws297{word-spacing:12.781330px;}
.ws2e3{word-spacing:12.785155px;}
.ws169{word-spacing:12.787389px;}
.ws2bf{word-spacing:12.788981px;}
.ws127{word-spacing:12.791072px;}
.ws29c{word-spacing:12.796632px;}
.ws2d5{word-spacing:12.800458px;}
.ws2a9{word-spacing:12.808109px;}
.wsa{word-spacing:12.815760px;}
.ws1f5{word-spacing:12.816082px;}
.ws229{word-spacing:12.816895px;}
.ws2a7{word-spacing:12.823411px;}
.ws2b0{word-spacing:12.827237px;}
.ws2a2{word-spacing:12.834888px;}
.wsc{word-spacing:12.869318px;}
.ws292{word-spacing:12.876970px;}
.ws1f8{word-spacing:12.883031px;}
.ws1be{word-spacing:12.887813px;}
.ws2d0{word-spacing:12.888446px;}
.ws29b{word-spacing:12.892272px;}
.ws1ac{word-spacing:12.902160px;}
.ws29e{word-spacing:12.903749px;}
.ws2cb{word-spacing:12.911400px;}
.wsd8{word-spacing:12.915884px;}
.wsdf{word-spacing:12.941707px;}
.ws2ac{word-spacing:12.949656px;}
.ws2ba{word-spacing:12.953482px;}
.ws28{word-spacing:12.958922px;}
.ws28e{word-spacing:12.964958px;}
.ws2ca{word-spacing:12.976435px;}
.ws2c0{word-spacing:12.987912px;}
.ws128{word-spacing:13.032088px;}
.ws245{word-spacing:13.036059px;}
.ws1bf{word-spacing:13.045623px;}
.ws29{word-spacing:13.062215px;}
.ws1fd{word-spacing:13.064752px;}
.ws256{word-spacing:13.079098px;}
.ws1b4{word-spacing:13.093445px;}
.ws26c{word-spacing:13.103009px;}
.wsb0{word-spacing:13.112573px;}
.ws1f{word-spacing:13.126773px;}
.wsd9{word-spacing:13.131077px;}
.ws1b3{word-spacing:13.155612px;}
.ws2c5{word-spacing:13.163890px;}
.ws255{word-spacing:13.174741px;}
.ws199{word-spacing:13.193869px;}
.wse{word-spacing:13.205971px;}
.ws19a{word-spacing:13.246472px;}
.ws25{word-spacing:13.247281px;}
.wsb1{word-spacing:13.251255px;}
.ws198{word-spacing:13.265601px;}
.wsc4{word-spacing:13.275165px;}
.ws188{word-spacing:13.279947px;}
.wscd{word-spacing:13.281712px;}
.ws18b{word-spacing:13.289511px;}
.ws27{word-spacing:13.307535px;}
.ws1fe{word-spacing:13.361243px;}
.ws21{word-spacing:13.363485px;}
.wsf{word-spacing:13.370472px;}
.ws18c{word-spacing:13.394718px;}
.ws189{word-spacing:13.399500px;}
.ws26{word-spacing:13.419435px;}
.ws15b{word-spacing:13.456886px;}
.ws1f7{word-spacing:13.476014px;}
.ws22{word-spacing:13.509817px;}
.wsaf{word-spacing:13.523835px;}
.ws109{word-spacing:13.528617px;}
.ws220{word-spacing:13.533400px;}
.ws15c{word-spacing:13.557310px;}
.ws18a{word-spacing:13.566874px;}
.ws281{word-spacing:13.614696px;}
.ws10a{word-spacing:13.633824px;}
.ws207{word-spacing:13.715120px;}
.ws10b{word-spacing:13.734249px;}
.wsae{word-spacing:13.753377px;}
.ws1d1{word-spacing:13.782070px;}
.ws39{word-spacing:13.786852px;}
.ws12b{word-spacing:13.796416px;}
.ws3c{word-spacing:13.829891px;}
.ws7d{word-spacing:13.834673px;}
.wsc9{word-spacing:13.849020px;}
.ws268{word-spacing:13.858584px;}
.ws235{word-spacing:13.868148px;}
.ws2e{word-spacing:13.872930px;}
.ws1bc{word-spacing:13.882494px;}
.ws140{word-spacing:13.887276px;}
.ws24e{word-spacing:13.892059px;}
.ws66{word-spacing:13.896841px;}
.ws206{word-spacing:13.915969px;}
.wsc8{word-spacing:13.939880px;}
.ws75{word-spacing:13.944662px;}
.ws90{word-spacing:13.954226px;}
.ws134{word-spacing:13.959008px;}
.ws288{word-spacing:14.021176px;}
.ws85{word-spacing:14.045086px;}
.ws1a8{word-spacing:14.064215px;}
.ws11e{word-spacing:14.068997px;}
.ws236{word-spacing:14.073779px;}
.ws24f{word-spacing:14.097690px;}
.ws2b{word-spacing:14.099445px;}
.ws1bd{word-spacing:14.107254px;}
.ws26f{word-spacing:14.112036px;}
.ws2a{word-spacing:14.116661px;}
.ws95{word-spacing:14.121600px;}
.ws9c{word-spacing:14.131165px;}
.ws16d{word-spacing:14.133876px;}
.wsc7{word-spacing:14.135947px;}
.ws16e{word-spacing:14.142484px;}
.ws72{word-spacing:14.172611px;}
.ws86{word-spacing:14.174204px;}
.ws233{word-spacing:14.176915px;}
.ws182{word-spacing:14.178986px;}
.ws1a9{word-spacing:14.181219px;}
.ws201{word-spacing:14.198434px;}
.ws7b{word-spacing:14.207042px;}
.ws1d2{word-spacing:14.231589px;}
.ws21a{word-spacing:14.236371px;}
.ws94{word-spacing:14.241153px;}
.ws243{word-spacing:14.245935px;}
.ws74{word-spacing:14.258688px;}
.ws1ff{word-spacing:14.267296px;}
.ws19b{word-spacing:14.274628px;}
.ws11f{word-spacing:14.275904px;}
.ws11{word-spacing:14.297423px;}
.wsb4{word-spacing:14.298539px;}
.ws144{word-spacing:14.303321px;}
.ws1a3{word-spacing:14.332014px;}
.ws32{word-spacing:14.336796px;}
.ws282{word-spacing:14.370271px;}
.ws200{word-spacing:14.374892px;}
.ws218{word-spacing:14.379835px;}
.ws78{word-spacing:14.383500px;}
.ws108{word-spacing:14.398963px;}
.ws228{word-spacing:14.443754px;}
.ws11c{word-spacing:14.451567px;}
.ws1a2{word-spacing:14.461131px;}
.ws168{word-spacing:14.465913px;}
.ws177{word-spacing:14.480259px;}
.ws280{word-spacing:14.518516px;}
.ws92{word-spacing:14.523298px;}
.ws8d{word-spacing:14.556773px;}
.ws37{word-spacing:14.585466px;}
.ws27b{word-spacing:14.590248px;}
.ws16c{word-spacing:14.615909px;}
.ws21f{word-spacing:14.695455px;}
.ws28a{word-spacing:14.709801px;}
.ws73{word-spacing:14.714897px;}
.ws1c4{word-spacing:14.724147px;}
.ws27f{word-spacing:14.757622px;}
.ws71{word-spacing:14.779455px;}
.ws5b{word-spacing:14.810226px;}
.ws4b{word-spacing:14.815008px;}
.ws5d{word-spacing:14.858047px;}
.ws159{word-spacing:14.862829px;}
.ws68{word-spacing:14.867611px;}
.wsc3{word-spacing:14.896304px;}
.ws4c{word-spacing:14.901086px;}
.ws1c5{word-spacing:14.915432px;}
.ws8f{word-spacing:14.924997px;}
.ws21d{word-spacing:14.944125px;}
.ws1b1{word-spacing:14.972818px;}
.ws5c{word-spacing:14.977600px;}
.ws69{word-spacing:14.982382px;}
.ws96{word-spacing:14.991946px;}
.ws98{word-spacing:15.015857px;}
.ws93{word-spacing:15.054114px;}
.ws97{word-spacing:15.097153px;}
.ws17a{word-spacing:15.125846px;}
.ws4a{word-spacing:15.140192px;}
.ws1cf{word-spacing:15.149756px;}
.ws4d{word-spacing:15.154538px;}
.ws104{word-spacing:15.188013px;}
.ws12a{word-spacing:15.192795px;}
.ws21e{word-spacing:15.197577px;}
.ws1a{word-spacing:15.227057px;}
.ws8b{word-spacing:15.259745px;}
.ws1da{word-spacing:15.264527px;}
.ws27e{word-spacing:15.288438px;}
.ws267{word-spacing:15.307566px;}
.ws10f{word-spacing:15.317130px;}
.ws2f{word-spacing:15.360169px;}
.ws285{word-spacing:15.364952px;}
.ws12e{word-spacing:15.398426px;}
.ws266{word-spacing:15.436683px;}
.wsca{word-spacing:15.446248px;}
.ws14e{word-spacing:15.455812px;}
.ws79{word-spacing:15.476681px;}
.ws12d{word-spacing:15.479722px;}
.wsba{word-spacing:15.489287px;}
.ws17d{word-spacing:15.494069px;}
.ws183{word-spacing:15.498851px;}
.ws12c{word-spacing:15.532326px;}
.ws19{word-spacing:15.545542px;}
.ws250{word-spacing:15.551454px;}
.ws265{word-spacing:15.561018px;}
.ws129{word-spacing:15.594493px;}
.ws3a{word-spacing:15.604058px;}
.ws9d{word-spacing:15.618404px;}
.ws21b{word-spacing:15.632750px;}
.ws65{word-spacing:15.656661px;}
.ws53{word-spacing:15.661443px;}
.ws15a{word-spacing:15.680571px;}
.ws77{word-spacing:15.694918px;}
.ws249{word-spacing:15.699700px;}
.wsad{word-spacing:15.728393px;}
.ws110{word-spacing:15.733175px;}
.ws107{word-spacing:15.742739px;}
.ws217{word-spacing:15.761868px;}
.ws13f{word-spacing:15.785778px;}
.wsbb{word-spacing:15.814471px;}
.ws54{word-spacing:15.824035px;}
.ws119{word-spacing:15.833599px;}
.ws13d{word-spacing:15.838381px;}
.ws145{word-spacing:15.871856px;}
.ws23f{word-spacing:15.890985px;}
.ws1bb{word-spacing:15.910113px;}
.ws262{word-spacing:15.924460px;}
.ws150{word-spacing:15.929242px;}
.ws238{word-spacing:15.943588px;}
.ws1db{word-spacing:15.948370px;}
.ws56{word-spacing:15.981845px;}
.ws52{word-spacing:15.986627px;}
.ws1a1{word-spacing:15.996191px;}
.ws278{word-spacing:16.005756px;}
.ws240{word-spacing:16.020102px;}
.ws55{word-spacing:16.044013px;}
.ws13e{word-spacing:16.065133px;}
.ws70{word-spacing:16.077487px;}
.ws15{word-spacing:16.100740px;}
.wsb8{word-spacing:16.115744px;}
.ws12{word-spacing:16.156690px;}
.ws11d{word-spacing:16.163566px;}
.ws8a{word-spacing:16.168348px;}
.ws15e{word-spacing:16.192258px;}
.ws1b5{word-spacing:16.244862px;}
.wsb9{word-spacing:16.263990px;}
.ws181{word-spacing:16.287901px;}
.ws1d0{word-spacing:16.335722px;}
.ws83{word-spacing:16.354850px;}
.ws204{word-spacing:16.402672px;}
.ws160{word-spacing:16.431364px;}
.ws202{word-spacing:16.450493px;}
.ws15f{word-spacing:16.498314px;}
.ws244{word-spacing:16.503096px;}
.ws62{word-spacing:16.507878px;}
.ws63{word-spacing:16.512660px;}
.ws1b{word-spacing:16.535430px;}
.ws216{word-spacing:16.574828px;}
.ws13{word-spacing:16.599988px;}
.ws203{word-spacing:16.613085px;}
.wsac{word-spacing:16.622649px;}
.ws14d{word-spacing:16.627431px;}
.ws64{word-spacing:16.675252px;}
.ws13a{word-spacing:16.680035px;}
.ws30{word-spacing:16.694381px;}
.ws60{word-spacing:16.761331px;}
.ws61{word-spacing:16.809152px;}
.ws1a7{word-spacing:16.833062px;}
.ws5f{word-spacing:16.842627px;}
.ws263{word-spacing:16.904794px;}
.wsc2{word-spacing:16.909576px;}
.ws13b{word-spacing:16.952615px;}
.ws16b{word-spacing:17.005219px;}
.wsa9{word-spacing:17.029129px;}
.wsfb{word-spacing:17.100861px;}
.ws1a6{word-spacing:17.110425px;}
.ws20a{word-spacing:17.124772px;}
.ws16a{word-spacing:17.134336px;}
.wsfc{word-spacing:17.177375px;}
.wsfd{word-spacing:17.182157px;}
.ws273{word-spacing:17.186939px;}
.ws1c6{word-spacing:17.191721px;}
.ws102{word-spacing:17.201286px;}
.ws24{word-spacing:17.232655px;}
.ws208{word-spacing:17.301710px;}
.ws36{word-spacing:17.306492px;}
.ws41{word-spacing:17.325621px;}
.ws1ef{word-spacing:17.406917px;}
.ws1f1{word-spacing:17.421263px;}
.wsfe{word-spacing:17.426045px;}
.ws9f{word-spacing:17.430827px;}
.ws23{word-spacing:17.443545px;}
.ws20b{word-spacing:17.488213px;}
.ws261{word-spacing:17.526470px;}
.ws1f0{word-spacing:17.540816px;}
.wsf3{word-spacing:17.555163px;}
.ws9e{word-spacing:17.650805px;}
.ws180{word-spacing:17.674716px;}
.ws1a4{word-spacing:17.689062px;}
.ws1e5{word-spacing:17.703408px;}
.ws6d{word-spacing:17.746447px;}
.ws1dc{word-spacing:17.784704px;}
.ws99{word-spacing:17.789486px;}
.ws251{word-spacing:17.799051px;}
.ws1a5{word-spacing:17.813397px;}
.ws289{word-spacing:17.822961px;}
.ws1e6{word-spacing:17.846872px;}
.ws46{word-spacing:17.851654px;}
.ws28b{word-spacing:17.870782px;}
.ws45{word-spacing:17.875565px;}
.ws6e{word-spacing:17.909039px;}
.ws27c{word-spacing:17.913822px;}
.ws272{word-spacing:17.918604px;}
.ws17f{word-spacing:17.937732px;}
.ws137{word-spacing:17.971207px;}
.ws135{word-spacing:17.985553px;}
.ws254{word-spacing:17.990335px;}
.ws1de{word-spacing:17.995118px;}
.ws1dd{word-spacing:18.004682px;}
.ws44{word-spacing:18.019028px;}
.wsa7{word-spacing:18.066849px;}
.ws51{word-spacing:18.071631px;}
.ws27d{word-spacing:18.148145px;}
.ws138{word-spacing:18.152928px;}
.ws20e{word-spacing:18.157710px;}
.ws20d{word-spacing:18.167274px;}
.ws84{word-spacing:18.205531px;}
.ws253{word-spacing:18.215095px;}
.ws18d{word-spacing:18.219877px;}
.ws246{word-spacing:18.248570px;}
.ws50{word-spacing:18.286827px;}
.ws136{word-spacing:18.315520px;}
.ws1a0{word-spacing:18.344212px;}
.ws247{word-spacing:18.368123px;}
.ws284{word-spacing:18.463765px;}
.wsa6{word-spacing:18.549843px;}
.ws27a{word-spacing:18.578536px;}
.ws248{word-spacing:18.597665px;}
.ws9a{word-spacing:18.616793px;}
.ws9b{word-spacing:18.655050px;}
.ws222{word-spacing:18.664614px;}
.ws19e{word-spacing:18.745910px;}
.ws264{word-spacing:18.755475px;}
.ws8c{word-spacing:18.784167px;}
.ws1d9{word-spacing:18.894156px;}
.ws141{word-spacing:18.898938px;}
.ws19f{word-spacing:18.932413px;}
.ws187{word-spacing:18.999363px;}
.ws185{word-spacing:19.056748px;}
.ws19d{word-spacing:19.099787px;}
.ws186{word-spacing:19.233687px;}
.ws1ec{word-spacing:19.334111px;}
.ws279{word-spacing:19.396279px;}
.ws286{word-spacing:19.496703px;}
.ws21c{word-spacing:19.573217px;}
.ws25f{word-spacing:19.592346px;}
.ws1b0{word-spacing:19.678424px;}
.ws1af{word-spacing:19.812323px;}
.ws190{word-spacing:19.845798px;}
.ws191{word-spacing:19.917530px;}
.ws276{word-spacing:20.113597px;}
.ws47{word-spacing:20.233150px;}
.ws4f{word-spacing:20.242714px;}
.ws277{word-spacing:20.271407px;}
.ws1e4{word-spacing:20.328792px;}
.ws4e{word-spacing:20.414870px;}
.ws1e3{word-spacing:20.433999px;}
.ws1fa{word-spacing:20.481820px;}
.ws1fb{word-spacing:20.496166px;}
.ws3d{word-spacing:20.520077px;}
.ws275{word-spacing:20.591809px;}
.ws1e2{word-spacing:20.596591px;}
.ws23e{word-spacing:20.639630px;}
.ws1e1{word-spacing:20.706580px;}
.wsb7{word-spacing:20.716144px;}
.ws1e7{word-spacing:20.845261px;}
.ws6{word-spacing:20.928799px;}
.ws1e8{word-spacing:20.936121px;}
.ws215{word-spacing:21.046110px;}
.ws100{word-spacing:21.098713px;}
.ws7{word-spacing:21.118888px;}
.ws23b{word-spacing:21.122624px;}
.ws260{word-spacing:21.175227px;}
.ws239{word-spacing:21.199138px;}
.ws283{word-spacing:21.203920px;}
.ws3b{word-spacing:21.304345px;}
.ws23a{word-spacing:21.323473px;}
.wsff{word-spacing:21.366512px;}
.ws5{word-spacing:21.385012px;}
.wsbf{word-spacing:21.686914px;}
.wsa4{word-spacing:21.854288px;}
.ws42{word-spacing:21.945149px;}
.ws43{word-spacing:21.964277px;}
.wsc0{word-spacing:21.969059px;}
.ws28c{word-spacing:22.021663px;}
.wsa3{word-spacing:22.126869px;}
.wsa8{word-spacing:22.193819px;}
.ws1fc{word-spacing:22.203383px;}
.ws3e{word-spacing:22.428143px;}
.ws212{word-spacing:22.466400px;}
.ws40{word-spacing:22.538132px;}
.ws3f{word-spacing:22.638556px;}
.ws214{word-spacing:22.719852px;}
.ws17e{word-spacing:22.748545px;}
.ws101{word-spacing:22.805930px;}
.ws213{word-spacing:22.906355px;}
.wsbd{word-spacing:22.911137px;}
.wsf4{word-spacing:22.992433px;}
.wsf5{word-spacing:23.001997px;}
.wsbc{word-spacing:23.140679px;}
.wsf6{word-spacing:23.317617px;}
.wscc{word-spacing:23.676276px;}
.ws14c{word-spacing:23.733662px;}
.ws241{word-spacing:23.877125px;}
.wsc1{word-spacing:24.063628px;}
.ws2da{word-spacing:24.120408px;}
.wsab{word-spacing:24.135360px;}
.wsaa{word-spacing:24.350555px;}
.ws15d{word-spacing:24.369684px;}
.ws91{word-spacing:24.503583px;}
.ws142{word-spacing:24.838331px;}
.ws1ce{word-spacing:25.010488px;}
.ws1cd{word-spacing:25.015270px;}
.ws192{word-spacing:25.024834px;}
.ws209{word-spacing:25.039180px;}
.ws194{word-spacing:25.091784px;}
.ws205{word-spacing:25.134823px;}
.ws114{word-spacing:25.149169px;}
.ws1cb{word-spacing:25.201772px;}
.ws113{word-spacing:25.225683px;}
.ws112{word-spacing:25.254376px;}
.ws115{word-spacing:25.283068px;}
.ws193{word-spacing:25.287851px;}
.ws1cc{word-spacing:25.311761px;}
.ws1c3{word-spacing:25.469571px;}
.ws13c{word-spacing:25.517392px;}
.ws17b{word-spacing:25.694331px;}
.ws1f2{word-spacing:25.766063px;}
.ws1f3{word-spacing:25.866487px;}
.ws49{word-spacing:25.952565px;}
.ws48{word-spacing:26.038643px;}
.ws1ca{word-spacing:26.043426px;}
.ws237{word-spacing:26.134286px;}
.ws10c{word-spacing:26.206018px;}
.ws1d8{word-spacing:26.268185px;}
.ws10e{word-spacing:26.292096px;}
.ws10d{word-spacing:26.325571px;}
.ws87{word-spacing:26.382956px;}
.ws67{word-spacing:26.435559px;}
.ws1d7{word-spacing:26.492945px;}
.ws1e9{word-spacing:26.497727px;}
.ws1eb{word-spacing:26.607716px;}
.ws26b{word-spacing:26.693794px;}
.ws1ea{word-spacing:26.765526px;}
.ws1{word-spacing:26.904380px;}
.wsb6{word-spacing:26.913771px;}
.wsb5{word-spacing:26.966375px;}
.ws2{word-spacing:27.041565px;}
.ws143{word-spacing:27.109838px;}
.ws26e{word-spacing:27.219827px;}
.ws4{word-spacing:27.251377px;}
.ws0{word-spacing:27.267516px;}
.wsf1{word-spacing:27.645436px;}
.wsf0{word-spacing:27.846285px;}
.ws76{word-spacing:27.909148px;}
.wsf2{word-spacing:28.066262px;}
.ws14f{word-spacing:28.109301px;}
.ws7f{word-spacing:28.759670px;}
.ws139{word-spacing:29.500898px;}
.ws1b9{word-spacing:29.711312px;}
.ws1b8{word-spacing:29.816518px;}
.wscb{word-spacing:29.840429px;}
.ws1ba{word-spacing:29.864339px;}
.wsbe{word-spacing:29.940853px;}
.ws2c{word-spacing:29.945635px;}
.ws1ee{word-spacing:29.979110px;}
.ws1d6{word-spacing:31.934997px;}
.ws1d5{word-spacing:32.092807px;}
.wsf7{word-spacing:32.145411px;}
.ws1d4{word-spacing:32.169321px;}
.ws7e{word-spacing:33.192695px;}
.ws184{word-spacing:40.824958px;}
.wse1{word-spacing:96.110549px;}
.wse5{word-spacing:96.366864px;}
.wsee{word-spacing:103.581946px;}
.wseb{word-spacing:103.677586px;}
.ws231{word-spacing:125.529413px;}
.wse4{word-spacing:125.961706px;}
.wsed{word-spacing:133.172962px;}
.ws22e{word-spacing:147.832661px;}
.ws171{word-spacing:149.301691px;}
.wsd1{word-spacing:150.376685px;}
.wsd7{word-spacing:168.471773px;}
.wsd2{word-spacing:179.642525px;}
.ws170{word-spacing:182.733610px;}
.wscf{word-spacing:189.971645px;}
.wsdb{word-spacing:213.380491px;}
.wsde{word-spacing:233.101459px;}
.wsda{word-spacing:252.738264px;}
.ws126{word-spacing:309.215597px;}
.ws123{word-spacing:331.518845px;}
.ws125{word-spacing:367.953859px;}
.wsdc{word-spacing:394.182173px;}
.wsdd{word-spacing:549.390590px;}
.wsec{word-spacing:799.967390px;}
.wse2{word-spacing:806.773133px;}
._19{margin-left:-162.496186px;}
._c{margin-left:-15.426468px;}
._39{margin-left:-11.526533px;}
._2{margin-left:-1.121387px;}
._1{width:1.090296px;}
._37{width:8.512174px;}
._3f{width:10.358072px;}
._7{width:11.491434px;}
._5{width:12.842718px;}
._0{width:13.856323px;}
._3{width:15.498200px;}
._4{width:17.258479px;}
._6{width:18.384670px;}
._9{width:19.477575px;}
._b{width:20.960032px;}
._8{width:22.648120px;}
._a{width:23.881907px;}
._f{width:25.756498px;}
._e{width:27.626307px;}
._10{width:29.888250px;}
._3b{width:30.925970px;}
._36{width:33.436583px;}
._d{width:34.904694px;}
._3e{width:42.403058px;}
._40{width:68.264006px;}
._1a{width:85.043088px;}
._44{width:93.815189px;}
._41{width:94.981997px;}
._2a{width:96.405120px;}
._42{width:101.783914px;}
._32{width:103.620202px;}
._2c{width:125.999962px;}
._14{width:127.449864px;}
._26{width:129.198163px;}
._34{width:133.211218px;}
._1c{width:136.788154px;}
._2e{width:155.552722px;}
._43{width:156.891682px;}
._3d{width:160.591037px;}
._24{width:169.841338px;}
._18{width:190.000013px;}
._12{width:240.519298px;}
._38{width:251.950190px;}
._16{width:261.986075px;}
._28{width:285.026328px;}
._22{width:290.535192px;}
._30{width:292.509202px;}
._1b{width:299.017883px;}
._1e{width:312.031238px;}
._17{width:317.781115px;}
._2b{width:325.830178px;}
._33{width:333.313051px;}
._29{width:346.851850px;}
._31{width:354.334723px;}
._3a{width:367.992115px;}
._3c{width:386.312914px;}
._1d{width:415.372171px;}
._13{width:424.355348px;}
._25{width:460.843253px;}
._1f{width:468.264917px;}
._15{width:486.807600px;}
._27{width:531.043013px;}
._2f{width:538.525886px;}
._11{width:542.538941px;}
._23{width:589.387238px;}
._2d{width:596.870112px;}
._21{width:634.214951px;}
._20{width:655.714823px;}
._35{width:2285.562638px;}
.fc1{color:rgb(50,126,177);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:23.909400px;}
.fs4{font-size:26.761800px;}
.fsf{font-size:26.778600px;}
.fs10{font-size:30.109200px;}
.fs11{font-size:31.876200px;}
.fs9{font-size:32.281200px;}
.fs12{font-size:33.473400px;}
.fsb{font-size:35.868000px;}
.fs5{font-size:38.256000px;}
.fse{font-size:40.933800px;}
.fs6{font-size:41.842800px;}
.fs3{font-size:42.237600px;}
.fs7{font-size:43.038600px;}
.fs2{font-size:44.327400px;}
.fs8{font-size:46.051200px;}
.fsa{font-size:47.821200px;}
.fs13{font-size:51.168600px;}
.fs1{font-size:63.363000px;}
.fs0{font-size:80.697000px;}
.fsc{font-size:83.685600px;}
.y0{bottom:0.000000px;}
.y106{bottom:47.105968px;}
.y14e{bottom:47.108827px;}
.y2c5{bottom:47.111818px;}
.yd0{bottom:47.111880px;}
.y5d{bottom:76.875600px;}
.y125{bottom:78.406824px;}
.y20d{bottom:78.412697px;}
.y1b5{bottom:78.491400px;}
.yda{bottom:83.594277px;}
.yba{bottom:85.297295px;}
.y162{bottom:85.890952px;}
.y146{bottom:86.144850px;}
.y145{bottom:86.145966px;}
.y5c{bottom:91.162108px;}
.y124{bottom:94.138803px;}
.y20c{bottom:94.144676px;}
.yb9{bottom:98.223041px;}
.yd9{bottom:99.241374px;}
.y176{bottom:101.539812px;}
.y144{bottom:101.877945px;}
.y5b{bottom:105.533772px;}
.y236{bottom:108.175887px;}
.y123{bottom:109.785900px;}
.y121{bottom:109.786698px;}
.y20b{bottom:109.791773px;}
.yb8{bottom:111.063667px;}
.yd8{bottom:114.973353px;}
.y122{bottom:115.143300px;}
.y161{bottom:117.271223px;}
.y175{bottom:117.271791px;}
.y143{bottom:117.609924px;}
.y5a{bottom:119.905437px;}
.yb7{bottom:123.904294px;}
.y235{bottom:123.907866px;}
.y120{bottom:125.518677px;}
.y20a{bottom:125.523752px;}
.yd6{bottom:128.664600px;}
.yd7{bottom:130.620450px;}
.yd5{bottom:130.621398px;}
.y174{bottom:133.003770px;}
.y59{bottom:134.192100px;}
.yb6{bottom:136.744920px;}
.yee{bottom:137.513876px;}
.y234{bottom:139.554962px;}
.y209{bottom:141.170849px;}
.yd4{bottom:146.353377px;}
.y160{bottom:148.650299px;}
.y173{bottom:148.650867px;}
.y142{bottom:148.989000px;}
.y141{bottom:148.989153px;}
.yb5{bottom:149.585546px;}
.yed{bottom:153.245855px;}
.y233{bottom:155.286942px;}
.y11f{bottom:156.897753px;}
.y208{bottom:156.902828px;}
.y55{bottom:159.703935px;}
.yd3{bottom:162.000474px;}
.yb4{bottom:162.426173px;}
.y172{bottom:164.382846px;}
.y140{bottom:164.636724px;}
.yec{bottom:168.892952px;}
.y232{bottom:170.934038px;}
.y11e{bottom:172.544850px;}
.y11d{bottom:172.545232px;}
.y207{bottom:172.549925px;}
.y54{bottom:174.075600px;}
.yb3{bottom:175.266799px;}
.yd2{bottom:177.732453px;}
.y15f{bottom:180.029375px;}
.y171{bottom:180.029943px;}
.y13f{bottom:180.368703px;}
.yeb{bottom:184.624931px;}
.y231{bottom:186.666018px;}
.yb2{bottom:188.107426px;}
.y11c{bottom:188.277211px;}
.y206{bottom:188.281904px;}
.yd1{bottom:193.379550px;}
.y15e{bottom:195.761354px;}
.y170{bottom:195.761922px;}
.y13e{bottom:196.015800px;}
.y13c{bottom:196.015971px;}
.yea{bottom:200.272028px;}
.yb1{bottom:201.033172px;}
.y13d{bottom:201.373200px;}
.y11b{bottom:203.924308px;}
.y205{bottom:203.929001px;}
.y15d{bottom:211.408451px;}
.y16f{bottom:211.409019px;}
.y13b{bottom:211.747950px;}
.y13a{bottom:211.748424px;}
.y35{bottom:213.704271px;}
.y53{bottom:213.704898px;}
.yb0{bottom:213.873798px;}
.ye9{bottom:216.004007px;}
.y230{bottom:218.045094px;}
.y204{bottom:219.660980px;}
.yaf{bottom:226.714424px;}
.y104{bottom:227.055150px;}
.y15c{bottom:227.140430px;}
.y16e{bottom:227.140998px;}
.y33{bottom:227.395200px;}
.y139{bottom:227.395521px;}
.y34{bottom:229.436250px;}
.y52{bottom:229.436877px;}
.y32{bottom:229.440538px;}
.ye8{bottom:231.651104px;}
.y103{bottom:231.817200px;}
.y11a{bottom:235.303384px;}
.y203{bottom:235.308077px;}
.y15b{bottom:242.787527px;}
.y16d{bottom:242.788095px;}
.y138{bottom:243.127500px;}
.y137{bottom:243.127653px;}
.y51{bottom:245.083974px;}
.y31{bottom:245.087634px;}
.yac{bottom:246.443694px;}
.yad{bottom:246.444000px;}
.ye7{bottom:247.383083px;}
.y102{bottom:248.231075px;}
.y22f{bottom:249.424169px;}
.yae{bottom:250.696050px;}
.y202{bottom:251.040056px;}
.y16c{bottom:258.520074px;}
.y136{bottom:258.774750px;}
.y135{bottom:258.775869px;}
.y50{bottom:260.815953px;}
.y30{bottom:260.819613px;}
.y101{bottom:261.071701px;}
.ye6{bottom:263.030180px;}
.y22e{bottom:265.071266px;}
.yab{bottom:266.088150px;}
.y201{bottom:266.687153px;}
.y27d{bottom:270.770309px;}
.y100{bottom:273.997447px;}
.y16b{bottom:274.167171px;}
.y15a{bottom:274.167798px;}
.y4e{bottom:274.507050px;}
.y119{bottom:274.507203px;}
.y134{bottom:274.507848px;}
.y2c3{bottom:276.039547px;}
.y4f{bottom:276.463050px;}
.y4d{bottom:276.463374px;}
.y2f{bottom:276.466710px;}
.ye5{bottom:278.762159px;}
.y22d{bottom:280.803245px;}
.y200{bottom:282.419132px;}
.y27c{bottom:282.675576px;}
.yaa{bottom:285.817335px;}
.yff{bottom:286.838074px;}
.y2c2{bottom:287.944814px;}
.y16a{bottom:289.899150px;}
.y159{bottom:289.899777px;}
.y169{bottom:289.903364px;}
.y118{bottom:290.154774px;}
.y4c{bottom:292.195353px;}
.y2e{bottom:292.198689px;}
.ye4{bottom:294.409256px;}
.y27b{bottom:294.665963px;}
.y1ff{bottom:298.066229px;}
.yfe{bottom:299.678700px;}
.y2c1{bottom:299.935201px;}
.ya9{bottom:300.189000px;}
.y158{bottom:305.546874px;}
.y168{bottom:305.550461px;}
.y4a{bottom:305.886600px;}
.y117{bottom:305.886753px;}
.y133{bottom:305.886924px;}
.y27a{bottom:306.656350px;}
.y4b{bottom:307.842450px;}
.y49{bottom:307.843719px;}
.y2d{bottom:307.845786px;}
.ye3{bottom:310.141235px;}
.y2c0{bottom:311.840468px;}
.y22c{bottom:312.182321px;}
.yfc{bottom:312.521220px;}
.y1fe{bottom:313.798208px;}
.yfd{bottom:316.771650px;}
.y279{bottom:318.561617px;}
.y157{bottom:321.278853px;}
.y167{bottom:321.282440px;}
.y116{bottom:321.533850px;}
.y132{bottom:321.534021px;}
.y114{bottom:321.534174px;}
.y48{bottom:323.575698px;}
.y2c{bottom:323.577765px;}
.y2bf{bottom:323.830855px;}
.yfb{bottom:325.361846px;}
.ye2{bottom:325.788331px;}
.y115{bottom:326.891250px;}
.y278{bottom:330.552004px;}
.y85{bottom:334.210398px;}
.y156{bottom:334.969950px;}
.y2be{bottom:335.736122px;}
.y155{bottom:336.925950px;}
.y154{bottom:336.926424px;}
.y166{bottom:336.929537px;}
.y131{bottom:337.266000px;}
.y113{bottom:337.266153px;}
.yfa{bottom:338.202473px;}
.y47{bottom:339.222795px;}
.y2b{bottom:339.224862px;}
.ye1{bottom:341.520311px;}
.y277{bottom:342.457271px;}
.y130{bottom:342.538500px;}
.y22b{bottom:343.562593px;}
.y1fd{bottom:345.177284px;}
.y2bd{bottom:347.726509px;}
.yce{bottom:349.683366px;}
.y84{bottom:349.942377px;}
.yf9{bottom:351.043099px;}
.y153{bottom:352.658403px;}
.y165{bottom:352.661516px;}
.y112{bottom:352.913250px;}
.y12f{bottom:352.913571px;}
.y110{bottom:352.914198px;}
.y276{bottom:354.447658px;}
.y46{bottom:354.954774px;}
.y2a{bottom:354.956841px;}
.y111{bottom:358.270800px;}
.y22a{bottom:359.294572px;}
.y2bc{bottom:359.716896px;}
.ycd{bottom:362.523992px;}
.yf8{bottom:363.883726px;}
.y1d1{bottom:363.886703px;}
.y83{bottom:365.589474px;}
.y275{bottom:366.438044px;}
.y152{bottom:368.305500px;}
.y150{bottom:368.305821px;}
.y164{bottom:368.308612px;}
.y12e{bottom:368.645550px;}
.y10f{bottom:368.646177px;}
.y12c{bottom:368.649229px;}
.y45{bottom:370.601871px;}
.y29{bottom:370.603938px;}
.y2bb{bottom:371.622163px;}
.ye0{bottom:372.899387px;}
.y151{bottom:373.662900px;}
.y12d{bottom:373.918050px;}
.y229{bottom:374.941669px;}
.ycc{bottom:375.364619px;}
.y1bb{bottom:375.875002px;}
.yf7{bottom:376.809472px;}
.y274{bottom:378.343312px;}
.y1d0{bottom:379.533800px;}
.y82{bottom:381.321453px;}
.y2ba{bottom:383.612550px;}
.y14f{bottom:384.037800px;}
.y163{bottom:384.040592px;}
.y10e{bottom:384.293274px;}
.y12b{bottom:384.296325px;}
.y44{bottom:384.378000px;}
.y43{bottom:386.333850px;}
.y28{bottom:386.335917px;}
.ycb{bottom:388.205245px;}
.yf6{bottom:389.650098px;}
.y273{bottom:390.333698px;}
.y1fc{bottom:391.438317px;}
.y1ba{bottom:391.522098px;}
.y1cf{bottom:395.265779px;}
.y2b9{bottom:395.527193px;}
.y81{bottom:396.968550px;}
.y41{bottom:400.025100px;}
.y10d{bottom:400.025253px;}
.y12a{bottom:400.028305px;}
.yca{bottom:401.045872px;}
.y42{bottom:401.980950px;}
.y40{bottom:401.981421px;}
.y27{bottom:401.983014px;}
.y272{bottom:402.238966px;}
.ydf{bottom:404.279658px;}
.y228{bottom:406.320745px;}
.y1fb{bottom:407.085414px;}
.y1b9{bottom:407.254077px;}
.y2b8{bottom:407.517580px;}
.yf4{bottom:409.379674px;}
.y1ce{bottom:410.912876px;}
.y80{bottom:412.700529px;}
.yf5{bottom:413.631450px;}
.yc9{bottom:413.886498px;}
.y271{bottom:414.229352px;}
.y10c{bottom:415.672350px;}
.y10a{bottom:415.673298px;}
.y3f{bottom:415.757400px;}
.y177{bottom:417.628200px;}
.y3e{bottom:417.713400px;}
.y26{bottom:417.714993px;}
.y2b7{bottom:419.507966px;}
.yde{bottom:419.926755px;}
.y10b{bottom:421.029900px;}
.yf3{bottom:422.220300px;}
.y1fa{bottom:422.817393px;}
.y1b8{bottom:422.901174px;}
.y270{bottom:426.219739px;}
.y1cd{bottom:426.644855px;}
.yc8{bottom:426.727124px;}
.y7f{bottom:428.347626px;}
.y3d{bottom:431.404650px;}
.y109{bottom:431.405277px;}
.y129{bottom:431.407381px;}
.y2b6{bottom:431.413234px;}
.y25{bottom:433.362090px;}
.y3c{bottom:433.363780px;}
.ydd{bottom:435.658734px;}
.y227{bottom:437.699820px;}
.y26f{bottom:438.125006px;}
.y1f9{bottom:438.464490px;}
.y1b7{bottom:438.633153px;}
.yf2{bottom:441.949485px;}
.y1cc{bottom:442.291952px;}
.y2b5{bottom:443.403620px;}
.y7e{bottom:444.079605px;}
.yc7{bottom:446.456700px;}
.y108{bottom:447.052374px;}
.y128{bottom:447.054477px;}
.y24{bottom:449.094069px;}
.y3b{bottom:449.095759px;}
.y26e{bottom:450.115393px;}
.ydc{bottom:451.390713px;}
.y226{bottom:453.431800px;}
.y1f8{bottom:454.196469px;}
.y1b6{bottom:454.280250px;}
.y2b4{bottom:455.308888px;}
.yf1{bottom:456.321150px;}
.y1cb{bottom:458.023931px;}
.y7d{bottom:459.726701px;}
.y26d{bottom:462.020660px;}
.y127{bottom:462.786457px;}
.y23{bottom:464.741166px;}
.y3a{bottom:464.742856px;}
.yc6{bottom:466.185735px;}
.ydb{bottom:467.037810px;}
.y2b3{bottom:467.299274px;}
.y225{bottom:469.078896px;}
.y1f7{bottom:469.928448px;}
.y1ca{bottom:473.671028px;}
.y26c{bottom:474.011047px;}
.y107{bottom:478.431450px;}
.y126{bottom:478.433553px;}
.y2b2{bottom:479.289661px;}
.y22{bottom:480.473145px;}
.y39{bottom:480.474835px;}
.yc5{bottom:480.557400px;}
.y224{bottom:484.810876px;}
.y1f6{bottom:485.575545px;}
.y26b{bottom:485.916314px;}
.y1b3{bottom:487.365014px;}
.y18c{bottom:489.401874px;}
.y7c{bottom:491.105777px;}
.y2b1{bottom:491.194928px;}
.y1e2{bottom:494.844697px;}
.y21{bottom:496.205124px;}
.y38{bottom:496.206814px;}
.y26a{bottom:497.906701px;}
.y223{bottom:500.457972px;}
.yf0{bottom:500.711700px;}
.y1f5{bottom:501.307524px;}
.y1b2{bottom:503.096994px;}
.y2b0{bottom:503.185315px;}
.y18b{bottom:505.048971px;}
.y1c9{bottom:505.050104px;}
.y1e1{bottom:507.685324px;}
.y269{bottom:509.897088px;}
.y37{bottom:511.853911px;}
.y2af{bottom:515.090582px;}
.y222{bottom:516.189952px;}
.y1f4{bottom:516.954621px;}
.y1b1{bottom:518.744090px;}
.y14c{bottom:518.994674px;}
.y1e0{bottom:520.528541px;}
.y18a{bottom:520.780950px;}
.y188{bottom:520.781103px;}
.y268{bottom:521.802355px;}
.y189{bottom:526.053450px;}
.y2ae{bottom:527.080969px;}
.y20{bottom:527.584200px;}
.y36{bottom:527.585890px;}
.yc4{bottom:530.051766px;}
.y221{bottom:531.837048px;}
.y7b{bottom:532.350367px;}
.y1f3{bottom:532.688095px;}
.y1df{bottom:533.369167px;}
.y267{bottom:533.792742px;}
.y1b0{bottom:534.476069px;}
.y187{bottom:536.428200px;}
.y186{bottom:536.430267px;}
.y14b{bottom:538.724250px;}
.y2ad{bottom:538.986236px;}
.y1c8{bottom:541.446819px;}
.yc3{bottom:542.892392px;}
.y266{bottom:545.698009px;}
.y1de{bottom:546.209794px;}
.y220{bottom:547.569027px;}
.y7a{bottom:547.997463px;}
.y1f2{bottom:548.335192px;}
.y1af{bottom:550.208049px;}
.y2ac{bottom:550.976623px;}
.y185{bottom:552.162246px;}
.yc2{bottom:555.733019px;}
.y1c7{bottom:557.178798px;}
.y265{bottom:557.688396px;}
.y14a{bottom:558.453387px;}
.y1dd{bottom:559.135540px;}
.y2ab{bottom:562.967010px;}
.y21f{bottom:563.216124px;}
.y79{bottom:563.729443px;}
.y1f1{bottom:564.067171px;}
.y1ae{bottom:565.855145px;}
.y184{bottom:567.809343px;}
.yc1{bottom:568.573645px;}
.y264{bottom:569.678783px;}
.y1dc{bottom:571.976166px;}
.y149{bottom:572.740050px;}
.y1c6{bottom:572.825895px;}
.y2aa{bottom:574.872277px;}
.y21e{bottom:578.948103px;}
.y78{bottom:579.376539px;}
.y1f0{bottom:579.714267px;}
.yc0{bottom:581.414272px;}
.y1ad{bottom:581.587125px;}
.y263{bottom:581.592074px;}
.y183{bottom:583.541322px;}
.y1db{bottom:584.816792px;}
.y2a9{bottom:586.862664px;}
.y1f{bottom:587.026543px;}
.y1c5{bottom:588.557874px;}
.y262{bottom:593.582461px;}
.ybf{bottom:594.254898px;}
.y21d{bottom:594.595200px;}
.y21c{bottom:594.595674px;}
.y77{bottom:595.108519px;}
.y1ef{bottom:595.446247px;}
.y1ac{bottom:597.234221px;}
.y1da{bottom:597.657419px;}
.y2a8{bottom:598.767931px;}
.y182{bottom:599.188419px;}
.y1e{bottom:601.398208px;}
.y1c4{bottom:604.204971px;}
.y261{bottom:605.487728px;}
.ybe{bottom:607.095524px;}
.y21b{bottom:610.327653px;}
.y1d9{bottom:610.498045px;}
.y76{bottom:610.755615px;}
.y2a7{bottom:610.758318px;}
.y1ab{bottom:612.966201px;}
.y181{bottom:614.920398px;}
.y148{bottom:615.599850px;}
.y1d{bottom:615.769872px;}
.y260{bottom:617.478115px;}
.y1c3{bottom:619.936950px;}
.y1c2{bottom:619.940060px;}
.y2a6{bottom:622.748705px;}
.y1d8{bottom:623.338672px;}
.y21a{bottom:625.974750px;}
.y219{bottom:625.986957px;}
.y75{bottom:626.487595px;}
.ybd{bottom:626.825100px;}
.y1ee{bottom:626.826518px;}
.y1aa{bottom:628.613297px;}
.y25f{bottom:629.383382px;}
.y1c{bottom:630.056535px;}
.y180{bottom:630.567495px;}
.y2a5{bottom:634.653972px;}
.y1c1{bottom:635.587157px;}
.y1d7{bottom:636.179298px;}
.y25e{bottom:641.373769px;}
.y218{bottom:641.718936px;}
.y74{bottom:642.134691px;}
.y1a9{bottom:644.345276px;}
.y19{bottom:644.428185px;}
.y1b{bottom:644.428200px;}
.y17f{bottom:646.299474px;}
.ybc{bottom:646.554135px;}
.y2a4{bottom:646.644359px;}
.y1a{bottom:649.190400px;}
.y1c0{bottom:651.319136px;}
.y25d{bottom:653.364156px;}
.y1d6{bottom:655.908874px;}
.y217{bottom:657.366033px;}
.y73{bottom:657.866670px;}
.y2a3{bottom:658.549626px;}
.y17{bottom:658.799665px;}
.y18{bottom:658.799850px;}
.y1a8{bottom:659.992373px;}
.ybb{bottom:660.925800px;}
.y17e{bottom:661.946571px;}
.y25c{bottom:665.269423px;}
.y1bf{bottom:666.966233px;}
.y1d5{bottom:668.749500px;}
.y10{bottom:669.261522px;}
.y2a2{bottom:670.540013px;}
.y1ed{bottom:673.087552px;}
.y216{bottom:673.098012px;}
.y16{bottom:673.171330px;}
.y72{bottom:673.513767px;}
.y1a7{bottom:675.724352px;}
.y25b{bottom:677.259810px;}
.y17b{bottom:677.678303px;}
.y17d{bottom:677.678550px;}
.yf{bottom:682.102148px;}
.y2a1{bottom:682.445280px;}
.y1be{bottom:682.698212px;}
.y17c{bottom:682.951050px;}
.y15{bottom:687.457993px;}
.y1d4{bottom:688.478535px;}
.y1ec{bottom:688.734648px;}
.y215{bottom:688.745109px;}
.y25a{bottom:689.165077px;}
.y71{bottom:689.245746px;}
.y1a6{bottom:691.371449px;}
.y17a{bottom:693.325399px;}
.y2a0{bottom:694.435667px;}
.ye{bottom:694.942775px;}
.y1bd{bottom:698.345308px;}
.y259{bottom:701.155464px;}
.y14{bottom:701.829658px;}
.y1d3{bottom:702.850200px;}
.y1eb{bottom:704.466627px;}
.y214{bottom:704.477088px;}
.y70{bottom:704.892843px;}
.y29f{bottom:706.426054px;}
.y9c{bottom:707.020219px;}
.y1a5{bottom:707.103428px;}
.yd{bottom:707.783401px;}
.y179{bottom:709.057379px;}
.y258{bottom:713.145851px;}
.y1bc{bottom:714.077288px;}
.y13{bottom:716.201322px;}
.y29e{bottom:718.331321px;}
.y1ea{bottom:720.113724px;}
.y213{bottom:720.124184px;}
.yc{bottom:720.624028px;}
.y6f{bottom:720.624822px;}
.y1a4{bottom:722.750525px;}
.y257{bottom:725.051118px;}
.y29d{bottom:730.321708px;}
.y12{bottom:730.487985px;}
.yb{bottom:733.464654px;}
.y1e9{bottom:735.845703px;}
.y212{bottom:735.856164px;}
.y6e{bottom:736.271919px;}
.y256{bottom:737.041505px;}
.y9b{bottom:738.399295px;}
.y1a3{bottom:738.482504px;}
.y178{bottom:740.437650px;}
.y29c{bottom:742.226975px;}
.y11{bottom:744.859650px;}
.ya{bottom:746.390400px;}
.y1d2{bottom:747.751050px;}
.y255{bottom:748.946772px;}
.y1e8{bottom:751.492800px;}
.y1e7{bottom:751.493598px;}
.y211{bottom:751.503260px;}
.y6d{bottom:752.003898px;}
.y1a2{bottom:754.129601px;}
.y29b{bottom:754.217362px;}
.y254{bottom:760.937159px;}
.y29a{bottom:766.207748px;}
.y1e6{bottom:767.225577px;}
.y210{bottom:767.235240px;}
.y6c{bottom:767.650995px;}
.y9a{bottom:769.778370px;}
.y1a1{bottom:769.861580px;}
.y253{bottom:772.842426px;}
.y1b4{bottom:774.028200px;}
.y9{bottom:774.113100px;}
.y299{bottom:778.113016px;}
.y1e5{bottom:782.872674px;}
.y20f{bottom:782.882336px;}
.y6b{bottom:783.382974px;}
.y252{bottom:784.832813px;}
.y1a0{bottom:785.508677px;}
.y298{bottom:790.103402px;}
.y251{bottom:796.823200px;}
.y1e4{bottom:798.604653px;}
.y6a{bottom:799.030071px;}
.y99{bottom:801.157446px;}
.y19f{bottom:801.240656px;}
.y297{bottom:802.008670px;}
.y250{bottom:808.728467px;}
.y296{bottom:813.999056px;}
.y1e3{bottom:814.251750px;}
.y20e{bottom:814.261412px;}
.y69{bottom:814.762050px;}
.y67{bottom:814.763796px;}
.y98{bottom:816.889426px;}
.y68{bottom:820.034400px;}
.yef{bottom:820.289550px;}
.y24f{bottom:820.718854px;}
.y8{bottom:823.606050px;}
.y295{bottom:825.904324px;}
.y7{bottom:827.858100px;}
.y66{bottom:830.495776px;}
.y97{bottom:832.536522px;}
.y19e{bottom:832.619732px;}
.y24e{bottom:832.624121px;}
.y6{bottom:836.446950px;}
.y294{bottom:837.894710px;}
.y5{bottom:840.699000px;}
.y24d{bottom:844.614508px;}
.y65{bottom:846.142872px;}
.y237{bottom:847.927350px;}
.y96{bottom:848.268502px;}
.y293{bottom:849.885097px;}
.y24b{bottom:856.604894px;}
.y24c{bottom:858.901211px;}
.y3{bottom:861.108450px;}
.y292{bottom:861.790364px;}
.y64{bottom:861.874852px;}
.y95{bottom:863.915598px;}
.y4{bottom:868.166700px;}
.y24a{bottom:868.510162px;}
.y291{bottom:873.780751px;}
.y63{bottom:877.521948px;}
.y147{bottom:878.626500px;}
.y19d{bottom:879.647100px;}
.y94{bottom:879.647577px;}
.y19b{bottom:879.652754px;}
.y249{bottom:880.500548px;}
.y19c{bottom:884.919600px;}
.y290{bottom:885.686018px;}
.y248{bottom:892.405816px;}
.y62{bottom:893.253927px;}
.y93{bottom:895.294674px;}
.y19a{bottom:895.299851px;}
.y28f{bottom:897.676405px;}
.y2{bottom:898.611466px;}
.y247{bottom:904.396202px;}
.y61{bottom:908.901024px;}
.y28e{bottom:909.666792px;}
.y92{bottom:911.026653px;}
.y199{bottom:911.031830px;}
.y246{bottom:916.386589px;}
.y28d{bottom:921.572059px;}
.y1{bottom:924.462750px;}
.y60{bottom:924.633003px;}
.y91{bottom:926.673750px;}
.y198{bottom:926.678927px;}
.y245{bottom:928.291856px;}
.y28c{bottom:933.562446px;}
.y5f{bottom:940.280100px;}
.y244{bottom:940.282243px;}
.y197{bottom:942.410906px;}
.y90{bottom:942.417157px;}
.y28b{bottom:945.467713px;}
.y243{bottom:952.187510px;}
.y28a{bottom:957.469334px;}
.y196{bottom:958.058003px;}
.y8f{bottom:958.064253px;}
.y242{bottom:964.177897px;}
.y289{bottom:969.374602px;}
.y195{bottom:973.789982px;}
.y8e{bottom:973.796233px;}
.y241{bottom:976.083164px;}
.ya8{bottom:980.843850px;}
.y288{bottom:981.364988px;}
.y240{bottom:988.073551px;}
.y194{bottom:989.437079px;}
.y8d{bottom:989.443329px;}
.y287{bottom:993.355375px;}
.ya7{bottom:993.684750px;}
.ya5{bottom:993.685174px;}
.ya6{bottom:997.936650px;}
.y23f{bottom:1000.063938px;}
.y58{bottom:1003.549350px;}
.y193{bottom:1005.169058px;}
.y8c{bottom:1005.175309px;}
.y286{bottom:1005.260642px;}
.ya4{bottom:1006.526347px;}
.y23e{bottom:1011.969205px;}
.y285{bottom:1017.251029px;}
.ya3{bottom:1019.366974px;}
.y192{bottom:1020.816155px;}
.y8b{bottom:1020.822405px;}
.y23d{bottom:1023.959592px;}
.y284{bottom:1029.156296px;}
.ya1{bottom:1032.206542px;}
.ya2{bottom:1032.207600px;}
.y23c{bottom:1035.864859px;}
.y191{bottom:1036.548134px;}
.y8a{bottom:1036.554385px;}
.y283{bottom:1041.146683px;}
.y57{bottom:1044.028050px;}
.ya0{bottom:1045.048124px;}
.y23b{bottom:1047.855246px;}
.y190{bottom:1052.195231px;}
.y89{bottom:1052.201481px;}
.y282{bottom:1053.137070px;}
.y23a{bottom:1059.845633px;}
.y9f{bottom:1064.777700px;}
.y281{bottom:1065.042337px;}
.y18f{bottom:1067.927210px;}
.y88{bottom:1067.933460px;}
.y239{bottom:1071.750900px;}
.y280{bottom:1077.032724px;}
.y18e{bottom:1083.574306px;}
.y87{bottom:1083.580557px;}
.y9e{bottom:1084.506885px;}
.y56{bottom:1086.547800px;}
.y27f{bottom:1088.937991px;}
.y9d{bottom:1098.878550px;}
.y238{bottom:1099.303650px;}
.y18d{bottom:1099.306286px;}
.y86{bottom:1099.312536px;}
.y27e{bottom:1100.928378px;}
.y5e{bottom:1127.536800px;}
.y105{bottom:1128.642300px;}
.y14d{bottom:1128.645160px;}
.y2c4{bottom:1128.648150px;}
.ycf{bottom:1128.648212px;}
.h12{height:17.597318px;}
.h6{height:19.696685px;}
.h19{height:22.160371px;}
.h1a{height:23.460883px;}
.hc{height:23.758963px;}
.h13{height:23.888088px;}
.hf{height:26.398848px;}
.h20{height:26.702688px;}
.h15{height:27.957785px;}
.h7{height:28.156416px;}
.h18{height:28.309440px;}
.h21{height:28.745558px;}
.h8{height:29.082211px;}
.h9{height:30.796301px;}
.h5{height:31.086874px;}
.hb{height:31.452970px;}
.ha{height:31.676410px;}
.h16{height:31.778759px;}
.h17{height:31.780948px;}
.h14{height:31.848564px;}
.h4{height:32.624966px;}
.h11{height:34.479085px;}
.h1c{height:34.948154px;}
.he{height:35.196403px;}
.hd{height:35.387688px;}
.h1f{height:36.100224px;}
.h1e{height:39.635105px;}
.h1b{height:39.639188px;}
.h1d{height:39.639801px;}
.h3{height:46.635168px;}
.h2{height:59.392992px;}
.h10{height:61.592602px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:56.381100px;}
.x82{left:61.483500px;}
.xb{left:62.674050px;}
.x24{left:63.949500px;}
.x2d{left:65.395200px;}
.x70{left:68.456700px;}
.x14{left:74.324810px;}
.x77{left:77.896050px;}
.x83{left:80.872597px;}
.x71{left:85.464450px;}
.x7c{left:113.017225px;}
.x85{left:142.351902px;}
.x38{left:153.751258px;}
.x46{left:158.938771px;}
.x7d{left:164.636100px;}
.x69{left:176.031450px;}
.x6a{left:182.239350px;}
.x29{left:185.385750px;}
.x53{left:189.722850px;}
.x49{left:193.719600px;}
.x2a{left:195.845550px;}
.x2{left:198.992100px;}
.x4a{left:201.458250px;}
.x3{left:204.944850px;}
.x4b{left:207.666000px;}
.x4{left:209.281800px;}
.x41{left:212.853450px;}
.x5{left:215.234550px;}
.x2b{left:218.040900px;}
.x42{left:220.422000px;}
.x4c{left:222.292800px;}
.x2c{left:228.585750px;}
.x7b{left:241.681800px;}
.x39{left:247.719600px;}
.x45{left:251.546400px;}
.x3a{left:252.736950px;}
.x4d{left:268.894350px;}
.x4e{left:276.547950px;}
.x4f{left:282.755850px;}
.x2e{left:285.562050px;}
.x27{left:290.579400px;}
.x31{left:293.640900px;}
.x50{left:294.746400px;}
.x73{left:296.702250px;}
.x32{left:300.529050px;}
.xd{left:302.995200px;}
.x33{left:305.546400px;}
.x43{left:308.692800px;}
.x47{left:312.264450px;}
.x44{left:313.710150px;}
.x48{left:326.466000px;}
.x78{left:332.418750px;}
.x74{left:334.544850px;}
.x34{left:336.245550px;}
.x25{left:343.899150px;}
.x6{left:346.365300px;}
.x54{left:348.576300px;}
.x7{left:352.318050px;}
.x84{left:353.678046px;}
.x15{left:355.379400px;}
.x55{left:356.569950px;}
.x6d{left:360.991950px;}
.x51{left:362.862900px;}
.x28{left:367.880250px;}
.x52{left:372.472350px;}
.x26{left:378.425100px;}
.x2f{left:394.497600px;}
.x6e{left:398.324400px;}
.x30{left:399.514800px;}
.x35{left:402.576300px;}
.x6f{left:403.936950px;}
.x36{left:409.464450px;}
.x37{left:414.481800px;}
.x72{left:416.352750px;}
.x67{left:417.883350px;}
.x6b{left:424.771500px;}
.x68{left:429.788850px;}
.x40{left:444.159094px;}
.xe{left:447.562050px;}
.xf{left:453.174750px;}
.x16{left:459.891437px;}
.xc{left:467.718586px;}
.x3f{left:468.906900px;}
.x1f{left:477.835111px;}
.x86{left:484.640694px;}
.x8{left:487.785750px;}
.x63{left:490.762050px;}
.x9{left:493.738500px;}
.x64{left:496.969950px;}
.x80{left:500.626650px;}
.x81{left:506.834550px;}
.x7e{left:522.991950px;}
.x7f{left:529.199850px;}
.x87{left:563.727323px;}
.x1a{left:573.590400px;}
.x3b{left:577.417200px;}
.x1b{left:582.434550px;}
.x3c{left:584.305350px;}
.x1e{left:588.217200px;}
.x3d{left:589.322700px;}
.x3e{left:598.932150px;}
.x88{left:606.927911px;}
.x22{left:608.371500px;}
.x75{left:614.579400px;}
.x23{left:616.280250px;}
.x10{left:621.722700px;}
.xa{left:623.253450px;}
.x76{left:626.484900px;}
.x61{left:632.097450px;}
.x11{left:635.754150px;}
.x62{left:637.199850px;}
.x59{left:655.483350px;}
.x20{left:658.374600px;}
.x5a{left:663.136800px;}
.x21{left:667.218750px;}
.x5b{left:669.684900px;}
.x5c{left:675.892800px;}
.x5f{left:680.144700px;}
.x60{left:686.352600px;}
.x6c{left:691.965150px;}
.x1c{left:693.751050px;}
.x65{left:699.193500px;}
.x1d{left:702.680100px;}
.x66{left:709.993500px;}
.x12{left:719.602950px;}
.x13{left:730.317900px;}
.x79{left:741.373050px;}
.x7a{left:747.580950px;}
.x56{left:760.506900px;}
.x57{left:775.643850px;}
.x18{left:789.590400px;}
.x19{left:797.413950px;}
.x5d{left:815.782500px;}
.x5e{left:821.990250px;}
.x58{left:827.007600px;}
.x17{left:831.429750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.115132pt;}
.v2{vertical-align:12.394854pt;}
.v3{vertical-align:15.418581pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.012752pt;}
.ls10{letter-spacing:0.014273pt;}
.ls2d{letter-spacing:0.038257pt;}
.ls3{letter-spacing:0.042508pt;}
.ls1{letter-spacing:0.095641pt;}
.ls0{letter-spacing:0.100423pt;}
.ls11{letter-spacing:0.122419pt;}
.ls8{letter-spacing:0.193400pt;}
.ls1c{letter-spacing:0.204037pt;}
.lsc{letter-spacing:0.212539pt;}
.lsf{letter-spacing:0.214234pt;}
.ls33{letter-spacing:0.231236pt;}
.ls32{letter-spacing:0.238037pt;}
.ls1d{letter-spacing:0.245497pt;}
.ls2{letter-spacing:0.279273pt;}
.ls22{letter-spacing:2.357600pt;}
.lse{letter-spacing:2.611467pt;}
.lsd{letter-spacing:2.612000pt;}
.ls23{letter-spacing:2.660000pt;}
.ls27{letter-spacing:8.994636pt;}
.ls15{letter-spacing:9.241181pt;}
.ls26{letter-spacing:9.296441pt;}
.ls19{letter-spacing:10.099584pt;}
.ls2f{letter-spacing:10.132497pt;}
.ls24{letter-spacing:10.206107pt;}
.ls18{letter-spacing:10.245807pt;}
.ls1a{letter-spacing:10.402231pt;}
.ls25{letter-spacing:10.507912pt;}
.ls28{letter-spacing:10.809717pt;}
.ls2a{letter-spacing:10.962744pt;}
.ls2e{letter-spacing:11.413326pt;}
.ls34{letter-spacing:11.418991pt;}
.ls1b{letter-spacing:11.664417pt;}
.ls31{letter-spacing:12.471769pt;}
.ls17{letter-spacing:12.873323pt;}
.ls29{letter-spacing:12.940000pt;}
.ls5{letter-spacing:13.619478pt;}
.ls7{letter-spacing:13.638454pt;}
.ls6{letter-spacing:13.819264pt;}
.ls2b{letter-spacing:13.847200pt;}
.ls21{letter-spacing:15.043487pt;}
.ls20{letter-spacing:15.345292pt;}
.ls30{letter-spacing:15.359200pt;}
.ls14{letter-spacing:15.647097pt;}
.ls1e{letter-spacing:16.250706pt;}
.ls1f{letter-spacing:16.552511pt;}
.lsb{letter-spacing:17.194601pt;}
.lsa{letter-spacing:17.198321pt;}
.ls2c{letter-spacing:18.065787pt;}
.ls13{letter-spacing:20.429217pt;}
.ls16{letter-spacing:22.601362pt;}
.ls12{letter-spacing:144.441054pt;}
.wsd4{word-spacing:-120.019695pt;}
.ws10{word-spacing:-17.231795pt;}
.ws5e{word-spacing:-13.861772pt;}
.ws121{word-spacing:-10.279812pt;}
.wsb{word-spacing:-4.913275pt;}
.ws3{word-spacing:-0.071731pt;}
.ws34{word-spacing:-0.042508pt;}
.ws14{word-spacing:-0.038257pt;}
.wsd{word-spacing:-0.034005pt;}
.ws130{word-spacing:-0.031883pt;}
.ws20{word-spacing:-0.028694pt;}
.ws7a{word-spacing:-0.021253pt;}
.ws7c{word-spacing:0.000000pt;}
.ws2b2{word-spacing:7.943646pt;}
.ws2c9{word-spacing:7.977651pt;}
.ws1c8{word-spacing:8.025460pt;}
.ws2a5{word-spacing:8.059264pt;}
.ws1c7{word-spacing:8.106225pt;}
.ws1c9{word-spacing:8.114726pt;}
.ws2e8{word-spacing:8.144277pt;}
.ws2db{word-spacing:8.164681pt;}
.ws151{word-spacing:8.242249pt;}
.ws224{word-spacing:8.246500pt;}
.ws2d6{word-spacing:8.270097pt;}
.ws2d7{word-spacing:8.273498pt;}
.ws18f{word-spacing:8.280506pt;}
.ws2dc{word-spacing:8.310903pt;}
.ws2e5{word-spacing:8.321105pt;}
.ws225{word-spacing:8.327265pt;}
.ws227{word-spacing:8.340017pt;}
.ws2c4{word-spacing:8.361911pt;}
.ws18e{word-spacing:8.395277pt;}
.ws2e4{word-spacing:8.416320pt;}
.wsfa{word-spacing:8.420782pt;}
.wsf8{word-spacing:8.429284pt;}
.ws2d8{word-spacing:8.436723pt;}
.ws226{word-spacing:8.442036pt;}
.ws252{word-spacing:8.484544pt;}
.ws2b9{word-spacing:8.501333pt;}
.ws2c6{word-spacing:8.525137pt;}
.ws219{word-spacing:8.531302pt;}
.ws8e{word-spacing:8.590813pt;}
.ws2a3{word-spacing:8.627153pt;}
.wsf9{word-spacing:8.629070pt;}
.ws2a4{word-spacing:8.671360pt;}
.ws2b5{word-spacing:8.688363pt;}
.ws24b{word-spacing:8.688581pt;}
.ws1ed{word-spacing:8.722587pt;}
.ws1aa{word-spacing:8.726838pt;}
.ws2b3{word-spacing:8.739371pt;}
.wsa1{word-spacing:8.739590pt;}
.ws24a{word-spacing:8.748092pt;}
.wsa0{word-spacing:8.760844pt;}
.ws1e0{word-spacing:8.765095pt;}
.ws14b{word-spacing:8.777847pt;}
.ws2d2{word-spacing:8.800580pt;}
.ws196{word-spacing:8.803352pt;}
.ws14a{word-spacing:8.811853pt;}
.ws6f{word-spacing:8.816104pt;}
.ws1f4{word-spacing:8.833107pt;}
.ws24d{word-spacing:8.837358pt;}
.ws2aa{word-spacing:8.844787pt;}
.ws2be{word-spacing:8.892395pt;}
.ws11a{word-spacing:8.892618pt;}
.ws106{word-spacing:8.896869pt;}
.ws105{word-spacing:8.930875pt;}
.ws20c{word-spacing:8.935126pt;}
.wsa5{word-spacing:8.939376pt;}
.ws2bd{word-spacing:8.957005pt;}
.ws157{word-spacing:8.960630pt;}
.ws31{word-spacing:8.964881pt;}
.ws2e6{word-spacing:8.967206pt;}
.ws158{word-spacing:9.020141pt;}
.ws24c{word-spacing:9.028643pt;}
.ws1b7{word-spacing:9.032893pt;}
.ws2b4{word-spacing:9.048819pt;}
.ws2e7{word-spacing:9.106628pt;}
.ws195{word-spacing:9.168918pt;}
.ws132{word-spacing:9.181670pt;}
.ws12f{word-spacing:9.190172pt;}
.ws35{word-spacing:9.194423pt;}
.ws223{word-spacing:9.215677pt;}
.ws172{word-spacing:9.232680pt;}
.ws164{word-spacing:9.241181pt;}
.ws2d3{word-spacing:9.242650pt;}
.ws131{word-spacing:9.275187pt;}
.ws197{word-spacing:9.300692pt;}
.ws59{word-spacing:9.321946pt;}
.ws156{word-spacing:9.326197pt;}
.ws25c{word-spacing:9.334698pt;}
.ws11b{word-spacing:9.360203pt;}
.wsa2{word-spacing:9.385708pt;}
.ws1b6{word-spacing:9.394209pt;}
.ws1c2{word-spacing:9.415463pt;}
.ws17c{word-spacing:9.436717pt;}
.ws111{word-spacing:9.440968pt;}
.ws296{word-spacing:9.470485pt;}
.ws154{word-spacing:9.470723pt;}
.wsc5{word-spacing:9.496228pt;}
.ws5a{word-spacing:9.504729pt;}
.ws33{word-spacing:9.534485pt;}
.ws58{word-spacing:9.538735pt;}
.ws57{word-spacing:9.564240pt;}
.ws295{word-spacing:9.616708pt;}
.ws155{word-spacing:9.623751pt;}
.ws22d{word-spacing:9.626910pt;}
.wsc6{word-spacing:9.670509pt;}
.ws2d{word-spacing:9.683262pt;}
.ws210{word-spacing:9.687512pt;}
.ws269{word-spacing:9.700265pt;}
.ws6b{word-spacing:9.717268pt;}
.ws20f{word-spacing:9.730020pt;}
.ws271{word-spacing:9.827788pt;}
.ws2e2{word-spacing:9.830942pt;}
.ws211{word-spacing:9.840540pt;}
.ws2d9{word-spacing:9.871748pt;}
.ws2af{word-spacing:9.881950pt;}
.ws6a{word-spacing:9.883048pt;}
.ws242{word-spacing:9.895800pt;}
.ws2e1{word-spacing:9.919356pt;}
.ws165{word-spacing:9.934057pt;}
.ws1f6{word-spacing:9.942559pt;}
.ws133{word-spacing:9.976565pt;}
.ws26a{word-spacing:10.002070pt;}
.ws230{word-spacing:10.011170pt;}
.ws166{word-spacing:10.040327pt;}
.ws103{word-spacing:10.057330pt;}
.ws270{word-spacing:10.065831pt;}
.wsd6{word-spacing:10.092783pt;}
.wse3{word-spacing:10.099584pt;}
.ws22b{word-spacing:10.106385pt;}
.ws167{word-spacing:10.142345pt;}
.ws80{word-spacing:10.150847pt;}
.wsea{word-spacing:10.177796pt;}
.ws232{word-spacing:10.184597pt;}
.wse9{word-spacing:10.187998pt;}
.ws23d{word-spacing:10.193354pt;}
.ws2c7{word-spacing:10.205001pt;}
.wse6{word-spacing:10.215202pt;}
.wse7{word-spacing:10.225404pt;}
.ws148{word-spacing:10.231611pt;}
.wsd0{word-spacing:10.232205pt;}
.ws146{word-spacing:10.244364pt;}
.ws6c{word-spacing:10.248615pt;}
.ws22c{word-spacing:10.249207pt;}
.ws22f{word-spacing:10.252608pt;}
.ws28d{word-spacing:10.265618pt;}
.wsd5{word-spacing:10.269611pt;}
.ws2c2{word-spacing:10.324019pt;}
.ws22a{word-spacing:10.344422pt;}
.ws122{word-spacing:10.361425pt;}
.ws1e{word-spacing:10.375172pt;}
.wsb3{word-spacing:10.376138pt;}
.ws2c8{word-spacing:10.381828pt;}
.ws163{word-spacing:10.393141pt;}
.wse8{word-spacing:10.398831pt;}
.wsce{word-spacing:10.412433pt;}
.wsd3{word-spacing:10.415834pt;}
.ws221{word-spacing:10.439899pt;}
.ws25b{word-spacing:10.482407pt;}
.ws25a{word-spacing:10.486658pt;}
.ws124{word-spacing:10.490645pt;}
.ws161{word-spacing:10.495159pt;}
.ws120{word-spacing:10.528051pt;}
.ws162{word-spacing:10.529166pt;}
.ws147{word-spacing:10.533416pt;}
.wsb2{word-spacing:10.546169pt;}
.ws1d3{word-spacing:10.554670pt;}
.ws38{word-spacing:10.558921pt;}
.ws2de{word-spacing:10.579059pt;}
.ws259{word-spacing:10.580175pt;}
.ws2cc{word-spacing:10.585860pt;}
.ws1d{word-spacing:10.631491pt;}
.ws176{word-spacing:10.677943pt;}
.ws149{word-spacing:10.682193pt;}
.ws175{word-spacing:10.694946pt;}
.ws1df{word-spacing:10.741704pt;}
.ws174{word-spacing:10.754457pt;}
.ws17{word-spacing:10.792168pt;}
.ws152{word-spacing:10.805466pt;}
.ws274{word-spacing:10.839472pt;}
.ws234{word-spacing:10.881980pt;}
.ws88{word-spacing:10.894732pt;}
.ws19c{word-spacing:10.915986pt;}
.ws82{word-spacing:10.937240pt;}
.ws116{word-spacing:10.958494pt;}
.ws81{word-spacing:10.971246pt;}
.ws16{word-spacing:10.975799pt;}
.ws258{word-spacing:10.983998pt;}
.ws179{word-spacing:10.996751pt;}
.ws287{word-spacing:11.009503pt;}
.ws25e{word-spacing:11.018004pt;}
.ws18{word-spacing:11.021707pt;}
.ws23c{word-spacing:11.039258pt;}
.ws2c1{word-spacing:11.041532pt;}
.ws1c0{word-spacing:11.047760pt;}
.ws257{word-spacing:11.090268pt;}
.ws1c{word-spacing:11.090569pt;}
.ws2ad{word-spacing:11.092540pt;}
.ws2d1{word-spacing:11.126545pt;}
.ws2ce{word-spacing:11.129946pt;}
.ws291{word-spacing:11.136747pt;}
.ws89{word-spacing:11.137026pt;}
.ws173{word-spacing:11.149778pt;}
.ws118{word-spacing:11.158280pt;}
.ws117{word-spacing:11.166782pt;}
.ws2cd{word-spacing:11.174153pt;}
.ws1b2{word-spacing:11.175283pt;}
.ws2ae{word-spacing:11.177293pt;}
.ws2b8{word-spacing:11.177553pt;}
.ws2d4{word-spacing:11.184354pt;}
.ws299{word-spacing:11.187755pt;}
.ws25d{word-spacing:11.188035pt;}
.ws294{word-spacing:11.191155pt;}
.ws2b1{word-spacing:11.194556pt;}
.ws2dd{word-spacing:11.197956pt;}
.ws29d{word-spacing:11.201357pt;}
.ws298{word-spacing:11.221760pt;}
.ws2e0{word-spacing:11.225161pt;}
.wsef{word-spacing:11.228561pt;}
.ws2bb{word-spacing:11.231962pt;}
.ws2a6{word-spacing:11.235362pt;}
.ws2c3{word-spacing:11.238763pt;}
.ws2a8{word-spacing:11.245564pt;}
.ws28f{word-spacing:11.252365pt;}
.ws153{word-spacing:11.256048pt;}
.ws16f{word-spacing:11.258898pt;}
.ws29f{word-spacing:11.259166pt;}
.ws1ad{word-spacing:11.260299pt;}
.ws293{word-spacing:11.262566pt;}
.ws29a{word-spacing:11.269367pt;}
.ws2df{word-spacing:11.272768pt;}
.ws2b6{word-spacing:11.276169pt;}
.ws2a0{word-spacing:11.279569pt;}
.ws1c1{word-spacing:11.285803pt;}
.ws2cf{word-spacing:11.286370pt;}
.ws26d{word-spacing:11.290054pt;}
.ws2b7{word-spacing:11.296572pt;}
.ws9{word-spacing:11.299972pt;}
.wse0{word-spacing:11.308631pt;}
.ws1ab{word-spacing:11.311308pt;}
.ws2ab{word-spacing:11.320375pt;}
.ws1f9{word-spacing:11.328311pt;}
.ws2bc{word-spacing:11.330577pt;}
.ws290{word-spacing:11.333978pt;}
.ws2a1{word-spacing:11.337378pt;}
.ws178{word-spacing:11.341063pt;}
.ws1ae{word-spacing:11.349565pt;}
.ws8{word-spacing:11.357781pt;}
.ws297{word-spacing:11.361182pt;}
.ws2e3{word-spacing:11.364582pt;}
.ws169{word-spacing:11.366568pt;}
.ws2bf{word-spacing:11.367983pt;}
.ws127{word-spacing:11.369842pt;}
.ws29c{word-spacing:11.374784pt;}
.ws2d5{word-spacing:11.378185pt;}
.ws2a9{word-spacing:11.384986pt;}
.wsa{word-spacing:11.391787pt;}
.ws1f5{word-spacing:11.392073pt;}
.ws229{word-spacing:11.392796pt;}
.ws2a7{word-spacing:11.398588pt;}
.ws2b0{word-spacing:11.401988pt;}
.ws2a2{word-spacing:11.408789pt;}
.wsc{word-spacing:11.439394pt;}
.ws292{word-spacing:11.446195pt;}
.ws1f8{word-spacing:11.451583pt;}
.ws1be{word-spacing:11.455834pt;}
.ws2d0{word-spacing:11.456397pt;}
.ws29b{word-spacing:11.459797pt;}
.ws1ac{word-spacing:11.468586pt;}
.ws29e{word-spacing:11.469999pt;}
.ws2cb{word-spacing:11.476800pt;}
.wsd8{word-spacing:11.480786pt;}
.wsdf{word-spacing:11.503740pt;}
.ws2ac{word-spacing:11.510805pt;}
.ws2ba{word-spacing:11.514206pt;}
.ws28{word-spacing:11.519042pt;}
.ws28e{word-spacing:11.524407pt;}
.ws2ca{word-spacing:11.534609pt;}
.ws2c0{word-spacing:11.544811pt;}
.ws128{word-spacing:11.584078pt;}
.ws245{word-spacing:11.587608pt;}
.ws1bf{word-spacing:11.596110pt;}
.ws29{word-spacing:11.610858pt;}
.ws1fd{word-spacing:11.613113pt;}
.ws256{word-spacing:11.625865pt;}
.ws1b4{word-spacing:11.638617pt;}
.ws26c{word-spacing:11.647119pt;}
.wsb0{word-spacing:11.655620pt;}
.ws1f{word-spacing:11.668243pt;}
.wsd9{word-spacing:11.672068pt;}
.ws1b3{word-spacing:11.693877pt;}
.ws2c5{word-spacing:11.701235pt;}
.ws255{word-spacing:11.710881pt;}
.ws199{word-spacing:11.727884pt;}
.wse{word-spacing:11.738641pt;}
.ws19a{word-spacing:11.774642pt;}
.ws25{word-spacing:11.775361pt;}
.wsb1{word-spacing:11.778893pt;}
.ws198{word-spacing:11.791645pt;}
.wsc4{word-spacing:11.800147pt;}
.ws188{word-spacing:11.804398pt;}
.wscd{word-spacing:11.805966pt;}
.ws18b{word-spacing:11.812899pt;}
.ws27{word-spacing:11.828920pt;}
.ws1fe{word-spacing:11.876661pt;}
.ws21{word-spacing:11.878654pt;}
.wsf{word-spacing:11.884864pt;}
.ws18c{word-spacing:11.906416pt;}
.ws189{word-spacing:11.910667pt;}
.ws26{word-spacing:11.928387pt;}
.ws15b{word-spacing:11.961676pt;}
.ws1f7{word-spacing:11.978679pt;}
.ws22{word-spacing:12.008726pt;}
.wsaf{word-spacing:12.021187pt;}
.ws109{word-spacing:12.025438pt;}
.ws220{word-spacing:12.029689pt;}
.ws15c{word-spacing:12.050942pt;}
.ws18a{word-spacing:12.059444pt;}
.ws281{word-spacing:12.101952pt;}
.ws10a{word-spacing:12.118955pt;}
.ws207{word-spacing:12.191218pt;}
.ws10b{word-spacing:12.208221pt;}
.wsae{word-spacing:12.225224pt;}
.ws1d1{word-spacing:12.250729pt;}
.ws39{word-spacing:12.254980pt;}
.ws12b{word-spacing:12.263481pt;}
.ws3c{word-spacing:12.293236pt;}
.ws7d{word-spacing:12.297487pt;}
.wsc9{word-spacing:12.310240pt;}
.ws268{word-spacing:12.318741pt;}
.ws235{word-spacing:12.327243pt;}
.ws2e{word-spacing:12.331493pt;}
.ws1bc{word-spacing:12.339995pt;}
.ws140{word-spacing:12.344246pt;}
.ws24e{word-spacing:12.348497pt;}
.ws66{word-spacing:12.352747pt;}
.ws206{word-spacing:12.369750pt;}
.wsc8{word-spacing:12.391004pt;}
.ws75{word-spacing:12.395255pt;}
.ws90{word-spacing:12.403757pt;}
.ws134{word-spacing:12.408007pt;}
.ws288{word-spacing:12.463267pt;}
.ws85{word-spacing:12.484521pt;}
.ws1a8{word-spacing:12.501524pt;}
.ws11e{word-spacing:12.505775pt;}
.ws236{word-spacing:12.510026pt;}
.ws24f{word-spacing:12.531280pt;}
.ws2b{word-spacing:12.532840pt;}
.ws1bd{word-spacing:12.539781pt;}
.ws26f{word-spacing:12.544032pt;}
.ws2a{word-spacing:12.548143pt;}
.ws95{word-spacing:12.552534pt;}
.ws9c{word-spacing:12.561035pt;}
.ws16d{word-spacing:12.563446pt;}
.wsc7{word-spacing:12.565286pt;}
.ws16e{word-spacing:12.571097pt;}
.ws72{word-spacing:12.597876pt;}
.ws86{word-spacing:12.599292pt;}
.ws233{word-spacing:12.601702pt;}
.ws182{word-spacing:12.603543pt;}
.ws1a9{word-spacing:12.605528pt;}
.ws201{word-spacing:12.620830pt;}
.ws7b{word-spacing:12.628482pt;}
.ws1d2{word-spacing:12.650301pt;}
.ws21a{word-spacing:12.654552pt;}
.ws94{word-spacing:12.658803pt;}
.ws243{word-spacing:12.663054pt;}
.ws74{word-spacing:12.674389pt;}
.ws1ff{word-spacing:12.682041pt;}
.ws19b{word-spacing:12.688558pt;}
.ws11f{word-spacing:12.689692pt;}
.ws11{word-spacing:12.708820pt;}
.wsb4{word-spacing:12.709812pt;}
.ws144{word-spacing:12.714063pt;}
.ws1a3{word-spacing:12.739568pt;}
.ws32{word-spacing:12.743818pt;}
.ws282{word-spacing:12.773574pt;}
.ws200{word-spacing:12.777682pt;}
.ws218{word-spacing:12.782075pt;}
.ws78{word-spacing:12.785333pt;}
.ws108{word-spacing:12.799079pt;}
.ws228{word-spacing:12.838893pt;}
.ws11c{word-spacing:12.845837pt;}
.ws1a2{word-spacing:12.854339pt;}
.ws168{word-spacing:12.858589pt;}
.ws177{word-spacing:12.871342pt;}
.ws280{word-spacing:12.905348pt;}
.ws92{word-spacing:12.909599pt;}
.ws8d{word-spacing:12.939354pt;}
.ws37{word-spacing:12.964859pt;}
.ws27b{word-spacing:12.969109pt;}
.ws16c{word-spacing:12.991919pt;}
.ws21f{word-spacing:13.062626pt;}
.ws28a{word-spacing:13.075379pt;}
.ws73{word-spacing:13.079909pt;}
.ws1c4{word-spacing:13.088131pt;}
.ws27f{word-spacing:13.117887pt;}
.ws71{word-spacing:13.137294pt;}
.ws5b{word-spacing:13.164645pt;}
.ws4b{word-spacing:13.168896pt;}
.ws5d{word-spacing:13.207153pt;}
.ws159{word-spacing:13.211404pt;}
.ws68{word-spacing:13.215654pt;}
.wsc3{word-spacing:13.241159pt;}
.ws4c{word-spacing:13.245410pt;}
.ws1c5{word-spacing:13.258162pt;}
.ws8f{word-spacing:13.266664pt;}
.ws21d{word-spacing:13.283667pt;}
.ws1b1{word-spacing:13.309171pt;}
.ws5c{word-spacing:13.313422pt;}
.ws69{word-spacing:13.317673pt;}
.ws96{word-spacing:13.326174pt;}
.ws98{word-spacing:13.347428pt;}
.ws93{word-spacing:13.381434pt;}
.ws97{word-spacing:13.419691pt;}
.ws17a{word-spacing:13.445196pt;}
.ws4a{word-spacing:13.457948pt;}
.ws1cf{word-spacing:13.466450pt;}
.ws4d{word-spacing:13.470701pt;}
.ws104{word-spacing:13.500456pt;}
.ws12a{word-spacing:13.504707pt;}
.ws21e{word-spacing:13.508958pt;}
.ws1a{word-spacing:13.535161pt;}
.ws8b{word-spacing:13.564218pt;}
.ws1da{word-spacing:13.568468pt;}
.ws27e{word-spacing:13.589722pt;}
.ws267{word-spacing:13.606725pt;}
.ws10f{word-spacing:13.615227pt;}
.ws2f{word-spacing:13.653484pt;}
.ws285{word-spacing:13.657735pt;}
.ws12e{word-spacing:13.687490pt;}
.ws266{word-spacing:13.721496pt;}
.wsca{word-spacing:13.729998pt;}
.ws14e{word-spacing:13.738499pt;}
.ws79{word-spacing:13.757049pt;}
.ws12d{word-spacing:13.759753pt;}
.wsba{word-spacing:13.768255pt;}
.ws17d{word-spacing:13.772506pt;}
.ws183{word-spacing:13.776756pt;}
.ws12c{word-spacing:13.806512pt;}
.ws19{word-spacing:13.818260pt;}
.ws250{word-spacing:13.823515pt;}
.ws265{word-spacing:13.832016pt;}
.ws129{word-spacing:13.861772pt;}
.ws3a{word-spacing:13.870273pt;}
.ws9d{word-spacing:13.883026pt;}
.ws21b{word-spacing:13.895778pt;}
.ws65{word-spacing:13.917032pt;}
.ws53{word-spacing:13.921283pt;}
.ws15a{word-spacing:13.938286pt;}
.ws77{word-spacing:13.951038pt;}
.ws249{word-spacing:13.955289pt;}
.wsad{word-spacing:13.980793pt;}
.ws110{word-spacing:13.985044pt;}
.ws107{word-spacing:13.993546pt;}
.ws217{word-spacing:14.010549pt;}
.ws13f{word-spacing:14.031803pt;}
.wsbb{word-spacing:14.057307pt;}
.ws54{word-spacing:14.065809pt;}
.ws119{word-spacing:14.074311pt;}
.ws13d{word-spacing:14.078561pt;}
.ws145{word-spacing:14.108317pt;}
.ws23f{word-spacing:14.125320pt;}
.ws1bb{word-spacing:14.142323pt;}
.ws262{word-spacing:14.155075pt;}
.ws150{word-spacing:14.159326pt;}
.ws238{word-spacing:14.172078pt;}
.ws1db{word-spacing:14.176329pt;}
.ws56{word-spacing:14.206084pt;}
.ws52{word-spacing:14.210335pt;}
.ws1a1{word-spacing:14.218837pt;}
.ws278{word-spacing:14.227338pt;}
.ws240{word-spacing:14.240091pt;}
.ws55{word-spacing:14.261345pt;}
.ws13e{word-spacing:14.280118pt;}
.ws70{word-spacing:14.291100pt;}
.ws15{word-spacing:14.311769pt;}
.wsb8{word-spacing:14.325106pt;}
.ws12{word-spacing:14.361503pt;}
.ws11d{word-spacing:14.367614pt;}
.ws8a{word-spacing:14.371865pt;}
.ws15e{word-spacing:14.393119pt;}
.ws1b5{word-spacing:14.439877pt;}
.wsb9{word-spacing:14.456880pt;}
.ws181{word-spacing:14.478134pt;}
.ws1d0{word-spacing:14.520642pt;}
.ws83{word-spacing:14.537645pt;}
.ws204{word-spacing:14.580153pt;}
.ws160{word-spacing:14.605657pt;}
.ws202{word-spacing:14.622660pt;}
.ws15f{word-spacing:14.665168pt;}
.ws244{word-spacing:14.669419pt;}
.ws62{word-spacing:14.673670pt;}
.ws63{word-spacing:14.677920pt;}
.ws1b{word-spacing:14.698160pt;}
.ws216{word-spacing:14.733180pt;}
.ws13{word-spacing:14.755545pt;}
.ws203{word-spacing:14.767187pt;}
.wsac{word-spacing:14.775688pt;}
.ws14d{word-spacing:14.779939pt;}
.ws64{word-spacing:14.822447pt;}
.ws13a{word-spacing:14.826697pt;}
.ws30{word-spacing:14.839450pt;}
.ws60{word-spacing:14.898961pt;}
.ws61{word-spacing:14.941468pt;}
.ws1a7{word-spacing:14.962722pt;}
.ws5f{word-spacing:14.971224pt;}
.ws263{word-spacing:15.026484pt;}
.wsc2{word-spacing:15.030735pt;}
.ws13b{word-spacing:15.068991pt;}
.ws16b{word-spacing:15.115750pt;}
.wsa9{word-spacing:15.137004pt;}
.wsfb{word-spacing:15.200765pt;}
.ws1a6{word-spacing:15.209267pt;}
.ws20a{word-spacing:15.222019pt;}
.ws16a{word-spacing:15.230521pt;}
.wsfc{word-spacing:15.268778pt;}
.wsfd{word-spacing:15.273029pt;}
.ws273{word-spacing:15.277279pt;}
.ws1c6{word-spacing:15.281530pt;}
.ws102{word-spacing:15.290032pt;}
.ws24{word-spacing:15.317916pt;}
.ws208{word-spacing:15.379298pt;}
.ws36{word-spacing:15.383549pt;}
.ws41{word-spacing:15.400552pt;}
.ws1ef{word-spacing:15.472815pt;}
.ws1f1{word-spacing:15.485567pt;}
.wsfe{word-spacing:15.489818pt;}
.ws9f{word-spacing:15.494069pt;}
.ws23{word-spacing:15.505373pt;}
.ws20b{word-spacing:15.545078pt;}
.ws261{word-spacing:15.579084pt;}
.ws1f0{word-spacing:15.591837pt;}
.wsf3{word-spacing:15.604589pt;}
.ws9e{word-spacing:15.689604pt;}
.ws180{word-spacing:15.710858pt;}
.ws1a4{word-spacing:15.723611pt;}
.ws1e5{word-spacing:15.736363pt;}
.ws6d{word-spacing:15.774620pt;}
.ws1dc{word-spacing:15.808626pt;}
.ws99{word-spacing:15.812877pt;}
.ws251{word-spacing:15.821378pt;}
.ws1a5{word-spacing:15.834131pt;}
.ws289{word-spacing:15.842632pt;}
.ws1e6{word-spacing:15.863886pt;}
.ws46{word-spacing:15.868137pt;}
.ws28b{word-spacing:15.885140pt;}
.ws45{word-spacing:15.889391pt;}
.ws6e{word-spacing:15.919146pt;}
.ws27c{word-spacing:15.923397pt;}
.ws272{word-spacing:15.927648pt;}
.ws17f{word-spacing:15.944651pt;}
.ws137{word-spacing:15.974406pt;}
.ws135{word-spacing:15.987159pt;}
.ws254{word-spacing:15.991409pt;}
.ws1de{word-spacing:15.995660pt;}
.ws1dd{word-spacing:16.004162pt;}
.ws44{word-spacing:16.016914pt;}
.wsa7{word-spacing:16.059422pt;}
.ws51{word-spacing:16.063672pt;}
.ws27d{word-spacing:16.131685pt;}
.ws138{word-spacing:16.135936pt;}
.ws20e{word-spacing:16.140186pt;}
.ws20d{word-spacing:16.148688pt;}
.ws84{word-spacing:16.182694pt;}
.ws253{word-spacing:16.191196pt;}
.ws18d{word-spacing:16.195446pt;}
.ws246{word-spacing:16.220951pt;}
.ws50{word-spacing:16.254957pt;}
.ws136{word-spacing:16.280462pt;}
.ws1a0{word-spacing:16.305967pt;}
.ws247{word-spacing:16.327220pt;}
.ws284{word-spacing:16.412236pt;}
.wsa6{word-spacing:16.488750pt;}
.ws27a{word-spacing:16.514254pt;}
.ws248{word-spacing:16.531257pt;}
.ws9a{word-spacing:16.548261pt;}
.ws9b{word-spacing:16.582267pt;}
.ws222{word-spacing:16.590768pt;}
.ws19e{word-spacing:16.663031pt;}
.ws264{word-spacing:16.671533pt;}
.ws8c{word-spacing:16.697038pt;}
.ws1d9{word-spacing:16.794805pt;}
.ws141{word-spacing:16.799056pt;}
.ws19f{word-spacing:16.828812pt;}
.ws187{word-spacing:16.888322pt;}
.ws185{word-spacing:16.939332pt;}
.ws19d{word-spacing:16.977589pt;}
.ws186{word-spacing:17.096610pt;}
.ws1ec{word-spacing:17.185877pt;}
.ws279{word-spacing:17.241137pt;}
.ws286{word-spacing:17.330403pt;}
.ws21c{word-spacing:17.398415pt;}
.ws25f{word-spacing:17.415418pt;}
.ws1b0{word-spacing:17.491932pt;}
.ws1af{word-spacing:17.610954pt;}
.ws190{word-spacing:17.640709pt;}
.ws191{word-spacing:17.704471pt;}
.ws276{word-spacing:17.878753pt;}
.ws47{word-spacing:17.985022pt;}
.ws4f{word-spacing:17.993524pt;}
.ws277{word-spacing:18.019028pt;}
.ws1e4{word-spacing:18.070037pt;}
.ws4e{word-spacing:18.146551pt;}
.ws1e3{word-spacing:18.163554pt;}
.ws1fa{word-spacing:18.206062pt;}
.ws1fb{word-spacing:18.218815pt;}
.ws3d{word-spacing:18.240068pt;}
.ws275{word-spacing:18.303830pt;}
.ws1e2{word-spacing:18.308081pt;}
.ws23e{word-spacing:18.346338pt;}
.ws1e1{word-spacing:18.405849pt;}
.wsb7{word-spacing:18.414350pt;}
.ws1e7{word-spacing:18.529121pt;}
.ws6{word-spacing:18.603377pt;}
.ws1e8{word-spacing:18.609886pt;}
.ws215{word-spacing:18.707653pt;}
.ws100{word-spacing:18.754412pt;}
.ws7{word-spacing:18.772345pt;}
.ws23b{word-spacing:18.775666pt;}
.ws260{word-spacing:18.822424pt;}
.ws239{word-spacing:18.843678pt;}
.ws283{word-spacing:18.847929pt;}
.ws3b{word-spacing:18.937195pt;}
.ws23a{word-spacing:18.954198pt;}
.wsff{word-spacing:18.992455pt;}
.ws5{word-spacing:19.008900pt;}
.wsbf{word-spacing:19.277257pt;}
.wsa4{word-spacing:19.426034pt;}
.ws42{word-spacing:19.506799pt;}
.ws43{word-spacing:19.523802pt;}
.wsc0{word-spacing:19.528053pt;}
.ws28c{word-spacing:19.574811pt;}
.wsa3{word-spacing:19.668328pt;}
.wsa8{word-spacing:19.727839pt;}
.ws1fc{word-spacing:19.736341pt;}
.ws3e{word-spacing:19.936127pt;}
.ws212{word-spacing:19.970133pt;}
.ws40{word-spacing:20.033895pt;}
.ws3f{word-spacing:20.123161pt;}
.ws214{word-spacing:20.195424pt;}
.ws17e{word-spacing:20.220929pt;}
.ws101{word-spacing:20.271938pt;}
.ws213{word-spacing:20.361204pt;}
.wsbd{word-spacing:20.365455pt;}
.wsf4{word-spacing:20.437718pt;}
.wsf5{word-spacing:20.446220pt;}
.wsbc{word-spacing:20.569492pt;}
.wsf6{word-spacing:20.726771pt;}
.wscc{word-spacing:21.045579pt;}
.ws14c{word-spacing:21.096588pt;}
.ws241{word-spacing:21.224111pt;}
.wsc1{word-spacing:21.389891pt;}
.ws2da{word-spacing:21.440363pt;}
.wsab{word-spacing:21.453653pt;}
.wsaa{word-spacing:21.644938pt;}
.ws15d{word-spacing:21.661941pt;}
.ws91{word-spacing:21.780963pt;}
.ws142{word-spacing:22.078517pt;}
.ws1ce{word-spacing:22.231545pt;}
.ws1cd{word-spacing:22.235795pt;}
.ws192{word-spacing:22.244297pt;}
.ws209{word-spacing:22.257049pt;}
.ws194{word-spacing:22.303808pt;}
.ws205{word-spacing:22.342065pt;}
.ws114{word-spacing:22.354817pt;}
.ws1cb{word-spacing:22.401575pt;}
.ws113{word-spacing:22.422829pt;}
.ws112{word-spacing:22.448334pt;}
.ws115{word-spacing:22.473839pt;}
.ws193{word-spacing:22.478089pt;}
.ws1cc{word-spacing:22.499343pt;}
.ws1c3{word-spacing:22.639619pt;}
.ws13c{word-spacing:22.682127pt;}
.ws17b{word-spacing:22.839405pt;}
.ws1f2{word-spacing:22.903167pt;}
.ws1f3{word-spacing:22.992433pt;}
.ws49{word-spacing:23.068947pt;}
.ws48{word-spacing:23.145461pt;}
.ws1ca{word-spacing:23.149712pt;}
.ws237{word-spacing:23.230476pt;}
.ws10c{word-spacing:23.294238pt;}
.ws1d8{word-spacing:23.349498pt;}
.ws10e{word-spacing:23.370752pt;}
.ws10d{word-spacing:23.400507pt;}
.ws87{word-spacing:23.451516pt;}
.ws67{word-spacing:23.498275pt;}
.ws1d7{word-spacing:23.549284pt;}
.ws1e9{word-spacing:23.553535pt;}
.ws1eb{word-spacing:23.651303pt;}
.ws26b{word-spacing:23.727817pt;}
.ws1ea{word-spacing:23.791578pt;}
.ws1{word-spacing:23.915004pt;}
.wsb6{word-spacing:23.923352pt;}
.wsb5{word-spacing:23.970111pt;}
.ws2{word-spacing:24.036946pt;}
.ws143{word-spacing:24.097634pt;}
.ws26e{word-spacing:24.195402pt;}
.ws4{word-spacing:24.223446pt;}
.ws0{word-spacing:24.237792pt;}
.wsf1{word-spacing:24.573721pt;}
.wsf0{word-spacing:24.752253pt;}
.ws76{word-spacing:24.808131pt;}
.wsf2{word-spacing:24.947789pt;}
.ws14f{word-spacing:24.986046pt;}
.ws7f{word-spacing:25.564151pt;}
.ws139{word-spacing:26.223021pt;}
.ws1b9{word-spacing:26.410055pt;}
.ws1b8{word-spacing:26.503572pt;}
.wscb{word-spacing:26.524826pt;}
.ws1ba{word-spacing:26.546079pt;}
.wsbe{word-spacing:26.614092pt;}
.ws2c{word-spacing:26.618343pt;}
.ws1ee{word-spacing:26.648098pt;}
.ws1d6{word-spacing:28.386664pt;}
.ws1d5{word-spacing:28.526940pt;}
.wsf7{word-spacing:28.573698pt;}
.ws1d4{word-spacing:28.594952pt;}
.ws7e{word-spacing:29.504618pt;}
.ws184{word-spacing:36.288852pt;}
.wse1{word-spacing:85.431599pt;}
.wse5{word-spacing:85.659435pt;}
.wsee{word-spacing:92.072841pt;}
.wseb{word-spacing:92.157854pt;}
.ws231{word-spacing:111.581700pt;}
.wse4{word-spacing:111.965961pt;}
.wsed{word-spacing:118.375966pt;}
.ws22e{word-spacing:131.406810pt;}
.ws171{word-spacing:132.712614pt;}
.wsd1{word-spacing:133.668164pt;}
.wsd7{word-spacing:149.752687pt;}
.wsd2{word-spacing:159.682244pt;}
.ws170{word-spacing:162.429875pt;}
.wscf{word-spacing:168.863684pt;}
.wsdb{word-spacing:189.671548pt;}
.wsde{word-spacing:207.201297pt;}
.wsda{word-spacing:224.656235pt;}
.ws126{word-spacing:274.858308pt;}
.ws123{word-spacing:294.683418pt;}
.ws125{word-spacing:327.070097pt;}
.wsdc{word-spacing:350.384154pt;}
.wsdd{word-spacing:488.347191pt;}
.wsec{word-spacing:711.082125pt;}
.wse2{word-spacing:717.131674pt;}
._19{margin-left:-144.441054pt;}
._c{margin-left:-13.712416pt;}
._39{margin-left:-10.245807pt;}
._2{margin-left:-0.996788pt;}
._1{width:0.969152pt;}
._37{width:7.566377pt;}
._3f{width:9.207175pt;}
._7{width:10.214608pt;}
._5{width:11.415750pt;}
._0{width:12.316732pt;}
._3{width:13.776178pt;}
._4{width:15.340870pt;}
._6{width:16.341929pt;}
._9{width:17.313400pt;}
._b{width:18.631140pt;}
._8{width:20.131663pt;}
._a{width:21.228362pt;}
._f{width:22.894665pt;}
._e{width:24.556718pt;}
._10{width:26.567333pt;}
._3b{width:27.489751pt;}
._36{width:29.721407pt;}
._d{width:31.026395pt;}
._3e{width:37.691607pt;}
._40{width:60.679117pt;}
._1a{width:75.593856pt;}
._44{width:83.391279pt;}
._41{width:84.428442pt;}
._2a{width:85.693440pt;}
._42{width:90.474590pt;}
._32{width:92.106846pt;}
._2c{width:111.999966pt;}
._14{width:113.288768pt;}
._26{width:114.842812pt;}
._34{width:118.409971pt;}
._1c{width:121.589470pt;}
._2e{width:138.269086pt;}
._43{width:139.459273pt;}
._3d{width:142.747588pt;}
._24{width:150.970078pt;}
._18{width:168.888900pt;}
._12{width:213.794931pt;}
._38{width:223.955725pt;}
._16{width:232.876511pt;}
._28{width:253.356736pt;}
._22{width:258.253504pt;}
._30{width:260.008179pt;}
._1b{width:265.793674pt;}
._1e{width:277.361101pt;}
._17{width:282.472102pt;}
._2b{width:289.626825pt;}
._33{width:296.278268pt;}
._29{width:308.312755pt;}
._31{width:314.964198pt;}
._3a{width:327.104102pt;}
._3c{width:343.389257pt;}
._1d{width:369.219708pt;}
._13{width:377.204754pt;}
._25{width:409.638447pt;}
._1f{width:416.235482pt;}
._15{width:432.717867pt;}
._27{width:472.038234pt;}
._2f{width:478.689677pt;}
._11{width:482.256836pt;}
._23{width:523.899767pt;}
._2d{width:530.551211pt;}
._21{width:563.746623pt;}
._20{width:582.857621pt;}
._35{width:2031.611234pt;}
.fsd{font-size:21.252800pt;}
.fs4{font-size:23.788267pt;}
.fsf{font-size:23.803200pt;}
.fs10{font-size:26.763733pt;}
.fs11{font-size:28.334400pt;}
.fs9{font-size:28.694400pt;}
.fs12{font-size:29.754133pt;}
.fsb{font-size:31.882667pt;}
.fs5{font-size:34.005333pt;}
.fse{font-size:36.385600pt;}
.fs6{font-size:37.193600pt;}
.fs3{font-size:37.544533pt;}
.fs7{font-size:38.256533pt;}
.fs2{font-size:39.402133pt;}
.fs8{font-size:40.934400pt;}
.fsa{font-size:42.507733pt;}
.fs13{font-size:45.483200pt;}
.fs1{font-size:56.322667pt;}
.fs0{font-size:71.730667pt;}
.fsc{font-size:74.387200pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:41.871971pt;}
.y14e{bottom:41.874513pt;}
.y2c5{bottom:41.877171pt;}
.yd0{bottom:41.877227pt;}
.y5d{bottom:68.333867pt;}
.y125{bottom:69.694955pt;}
.y20d{bottom:69.700175pt;}
.y1b5{bottom:69.770133pt;}
.yda{bottom:74.306024pt;}
.yba{bottom:75.819818pt;}
.y162{bottom:76.347513pt;}
.y146{bottom:76.573200pt;}
.y145{bottom:76.574192pt;}
.y5c{bottom:81.032985pt;}
.y124{bottom:83.678936pt;}
.y20c{bottom:83.684157pt;}
.yb9{bottom:87.309370pt;}
.yd9{bottom:88.214555pt;}
.y176{bottom:90.257611pt;}
.y144{bottom:90.558173pt;}
.y5b{bottom:93.807798pt;}
.y236{bottom:96.156344pt;}
.y123{bottom:97.587467pt;}
.y121{bottom:97.588176pt;}
.y20b{bottom:97.592687pt;}
.yb8{bottom:98.723260pt;}
.yd8{bottom:102.198536pt;}
.y122{bottom:102.349600pt;}
.y161{bottom:104.241087pt;}
.y175{bottom:104.241592pt;}
.y143{bottom:104.542155pt;}
.y5a{bottom:106.582610pt;}
.yb7{bottom:110.137150pt;}
.y235{bottom:110.140325pt;}
.y120{bottom:111.572158pt;}
.y20a{bottom:111.576669pt;}
.yd6{bottom:114.368533pt;}
.yd7{bottom:116.107067pt;}
.yd5{bottom:116.107909pt;}
.y174{bottom:118.225574pt;}
.y59{bottom:119.281867pt;}
.yb6{bottom:121.551040pt;}
.yee{bottom:122.234556pt;}
.y234{bottom:124.048856pt;}
.y209{bottom:125.485199pt;}
.yd4{bottom:130.091891pt;}
.y160{bottom:132.133599pt;}
.y173{bottom:132.134104pt;}
.y142{bottom:132.434667pt;}
.y141{bottom:132.434803pt;}
.yb5{bottom:132.964930pt;}
.yed{bottom:136.218538pt;}
.y233{bottom:138.032837pt;}
.y11f{bottom:139.464670pt;}
.y208{bottom:139.469181pt;}
.y55{bottom:141.959054pt;}
.yd3{bottom:144.000421pt;}
.yb4{bottom:144.378820pt;}
.y172{bottom:146.118086pt;}
.y140{bottom:146.343755pt;}
.yec{bottom:150.127068pt;}
.y232{bottom:151.941367pt;}
.y11e{bottom:153.373200pt;}
.y11d{bottom:153.373539pt;}
.y207{bottom:153.377711pt;}
.y54{bottom:154.733867pt;}
.yb3{bottom:155.792710pt;}
.yd2{bottom:157.984403pt;}
.y15f{bottom:160.026111pt;}
.y171{bottom:160.026616pt;}
.y13f{bottom:160.327736pt;}
.yeb{bottom:164.111050pt;}
.y231{bottom:165.925349pt;}
.yb2{bottom:167.206601pt;}
.y11c{bottom:167.357521pt;}
.y206{bottom:167.361693pt;}
.yd1{bottom:171.892933pt;}
.y15e{bottom:174.010093pt;}
.y170{bottom:174.010598pt;}
.y13e{bottom:174.236267pt;}
.y13c{bottom:174.236418pt;}
.yea{bottom:178.019580pt;}
.yb1{bottom:178.696153pt;}
.y13d{bottom:178.998400pt;}
.y11b{bottom:181.266051pt;}
.y205{bottom:181.270223pt;}
.y15d{bottom:187.918623pt;}
.y16f{bottom:187.919128pt;}
.y13b{bottom:188.220400pt;}
.y13a{bottom:188.220821pt;}
.y35{bottom:189.959352pt;}
.y53{bottom:189.959909pt;}
.yb0{bottom:190.110043pt;}
.ye9{bottom:192.003562pt;}
.y230{bottom:193.817861pt;}
.y204{bottom:195.254205pt;}
.yaf{bottom:201.523933pt;}
.y104{bottom:201.826800pt;}
.y15c{bottom:201.902605pt;}
.y16e{bottom:201.903109pt;}
.y33{bottom:202.129067pt;}
.y139{bottom:202.129352pt;}
.y34{bottom:203.943333pt;}
.y52{bottom:203.943891pt;}
.y32{bottom:203.947144pt;}
.ye8{bottom:205.912092pt;}
.y103{bottom:206.059733pt;}
.y11a{bottom:209.158563pt;}
.y203{bottom:209.162735pt;}
.y15b{bottom:215.811135pt;}
.y16d{bottom:215.811640pt;}
.y138{bottom:216.113333pt;}
.y137{bottom:216.113470pt;}
.y51{bottom:217.852421pt;}
.y31{bottom:217.855675pt;}
.yac{bottom:219.061061pt;}
.yad{bottom:219.061333pt;}
.ye7{bottom:219.896074pt;}
.y102{bottom:220.649844pt;}
.y22f{bottom:221.710373pt;}
.yae{bottom:222.840933pt;}
.y202{bottom:223.146716pt;}
.y16c{bottom:229.795621pt;}
.y136{bottom:230.022000pt;}
.y135{bottom:230.022995pt;}
.y50{bottom:231.836403pt;}
.y30{bottom:231.839656pt;}
.y101{bottom:232.063734pt;}
.ye6{bottom:233.804604pt;}
.y22e{bottom:235.618903pt;}
.yab{bottom:236.522800pt;}
.y201{bottom:237.055247pt;}
.y27d{bottom:240.684719pt;}
.y100{bottom:243.553286pt;}
.y16b{bottom:243.704152pt;}
.y15a{bottom:243.704709pt;}
.y4e{bottom:244.006267pt;}
.y119{bottom:244.006403pt;}
.y134{bottom:244.006976pt;}
.y2c3{bottom:245.368486pt;}
.y4f{bottom:245.744933pt;}
.y4d{bottom:245.745221pt;}
.y2f{bottom:245.748187pt;}
.ye5{bottom:247.788586pt;}
.y22d{bottom:249.602885pt;}
.y200{bottom:251.039228pt;}
.y27c{bottom:251.267179pt;}
.yaa{bottom:254.059854pt;}
.yff{bottom:254.967177pt;}
.y2c2{bottom:255.950946pt;}
.y16a{bottom:257.688133pt;}
.y159{bottom:257.688691pt;}
.y169{bottom:257.691879pt;}
.y118{bottom:257.915355pt;}
.y4c{bottom:259.729203pt;}
.y2e{bottom:259.732168pt;}
.ye4{bottom:261.697116pt;}
.y27b{bottom:261.925300pt;}
.y1ff{bottom:264.947759pt;}
.yfe{bottom:266.381067pt;}
.y2c1{bottom:266.609068pt;}
.ya9{bottom:266.834667pt;}
.y158{bottom:271.597221pt;}
.y168{bottom:271.600409pt;}
.y4a{bottom:271.899200pt;}
.y117{bottom:271.899336pt;}
.y133{bottom:271.899488pt;}
.y27a{bottom:272.583422pt;}
.y4b{bottom:273.637733pt;}
.y49{bottom:273.638861pt;}
.y2d{bottom:273.640699pt;}
.ye3{bottom:275.681098pt;}
.y2c0{bottom:277.191527pt;}
.y22c{bottom:277.495397pt;}
.yfc{bottom:277.796640pt;}
.y1fe{bottom:278.931740pt;}
.yfd{bottom:281.574800pt;}
.y279{bottom:283.165882pt;}
.y157{bottom:285.581203pt;}
.y167{bottom:285.584391pt;}
.y116{bottom:285.807867pt;}
.y132{bottom:285.808018pt;}
.y114{bottom:285.808155pt;}
.y48{bottom:287.622843pt;}
.y2c{bottom:287.624680pt;}
.y2bf{bottom:287.849649pt;}
.yfb{bottom:289.210530pt;}
.ye2{bottom:289.589628pt;}
.y115{bottom:290.570000pt;}
.y278{bottom:293.824003pt;}
.y85{bottom:297.075909pt;}
.y156{bottom:297.751067pt;}
.y2be{bottom:298.432109pt;}
.y155{bottom:299.489733pt;}
.y154{bottom:299.490155pt;}
.y166{bottom:299.492921pt;}
.y131{bottom:299.792000pt;}
.y113{bottom:299.792136pt;}
.yfa{bottom:300.624420pt;}
.y47{bottom:301.531373pt;}
.y2b{bottom:301.533211pt;}
.ye1{bottom:303.573610pt;}
.y277{bottom:304.406463pt;}
.y130{bottom:304.478667pt;}
.y22b{bottom:305.388971pt;}
.y1fd{bottom:306.824252pt;}
.y2bd{bottom:309.090230pt;}
.yce{bottom:310.829659pt;}
.y84{bottom:311.059891pt;}
.yf9{bottom:312.038310pt;}
.y153{bottom:313.474136pt;}
.y165{bottom:313.476903pt;}
.y112{bottom:313.700667pt;}
.y12f{bottom:313.700952pt;}
.y110{bottom:313.701509pt;}
.y276{bottom:315.064585pt;}
.y46{bottom:315.515355pt;}
.y2a{bottom:315.517192pt;}
.y111{bottom:318.462933pt;}
.y22a{bottom:319.372953pt;}
.y2bc{bottom:319.748352pt;}
.ycd{bottom:322.243549pt;}
.yf8{bottom:323.452201pt;}
.y1d1{bottom:323.454847pt;}
.y83{bottom:324.968421pt;}
.y275{bottom:325.722706pt;}
.y152{bottom:327.382667pt;}
.y150{bottom:327.382952pt;}
.y164{bottom:327.385433pt;}
.y12e{bottom:327.684933pt;}
.y10f{bottom:327.685491pt;}
.y12c{bottom:327.688203pt;}
.y45{bottom:329.423885pt;}
.y29{bottom:329.425723pt;}
.y2bb{bottom:330.330812pt;}
.ye0{bottom:331.466121pt;}
.y151{bottom:332.144800pt;}
.y12d{bottom:332.371600pt;}
.y229{bottom:333.281483pt;}
.ycc{bottom:333.657439pt;}
.y1bb{bottom:334.111112pt;}
.yf7{bottom:334.941753pt;}
.y274{bottom:336.305166pt;}
.y1d0{bottom:337.363378pt;}
.y82{bottom:338.952403pt;}
.y2ba{bottom:340.988933pt;}
.y14f{bottom:341.366933pt;}
.y163{bottom:341.369415pt;}
.y10e{bottom:341.594021pt;}
.y12b{bottom:341.596734pt;}
.y44{bottom:341.669333pt;}
.y43{bottom:343.407867pt;}
.y28{bottom:343.409704pt;}
.ycb{bottom:345.071329pt;}
.yf6{bottom:346.355643pt;}
.y273{bottom:346.963287pt;}
.y1fc{bottom:347.945171pt;}
.y1ba{bottom:348.019643pt;}
.y1cf{bottom:351.347359pt;}
.y2b9{bottom:351.579727pt;}
.y81{bottom:352.860933pt;}
.y41{bottom:355.577867pt;}
.y10d{bottom:355.578003pt;}
.y12a{bottom:355.580715pt;}
.yca{bottom:356.485219pt;}
.y42{bottom:357.316400pt;}
.y40{bottom:357.316818pt;}
.y27{bottom:357.318234pt;}
.y272{bottom:357.545747pt;}
.ydf{bottom:359.359696pt;}
.y228{bottom:361.173995pt;}
.y1fb{bottom:361.853701pt;}
.y1b9{bottom:362.003624pt;}
.y2b8{bottom:362.237849pt;}
.yf4{bottom:363.893043pt;}
.y1ce{bottom:365.255890pt;}
.y80{bottom:366.844915pt;}
.yf5{bottom:367.672400pt;}
.yc9{bottom:367.899109pt;}
.y271{bottom:368.203869pt;}
.y10c{bottom:369.486533pt;}
.y10a{bottom:369.487376pt;}
.y3f{bottom:369.562133pt;}
.y177{bottom:371.225067pt;}
.y3e{bottom:371.300800pt;}
.y26{bottom:371.302216pt;}
.y2b7{bottom:372.895970pt;}
.yde{bottom:373.268226pt;}
.y10b{bottom:374.248800pt;}
.yf3{bottom:375.306933pt;}
.y1fa{bottom:375.837683pt;}
.y1b8{bottom:375.912155pt;}
.y270{bottom:378.861990pt;}
.y1cd{bottom:379.239871pt;}
.yc8{bottom:379.312999pt;}
.y7f{bottom:380.753445pt;}
.y3d{bottom:383.470800pt;}
.y109{bottom:383.471358pt;}
.y129{bottom:383.473227pt;}
.y2b6{bottom:383.478430pt;}
.y25{bottom:385.210746pt;}
.y3c{bottom:385.212249pt;}
.ydd{bottom:387.252208pt;}
.y227{bottom:389.066507pt;}
.y26f{bottom:389.444450pt;}
.y1f9{bottom:389.746213pt;}
.y1b7{bottom:389.896136pt;}
.yf2{bottom:392.843987pt;}
.y1cc{bottom:393.148402pt;}
.y2b5{bottom:394.136551pt;}
.y7e{bottom:394.737426pt;}
.yc7{bottom:396.850400pt;}
.y108{bottom:397.379888pt;}
.y128{bottom:397.381758pt;}
.y24{bottom:399.194728pt;}
.y3b{bottom:399.196230pt;}
.y26e{bottom:400.102572pt;}
.ydc{bottom:401.236190pt;}
.y226{bottom:403.050489pt;}
.y1f8{bottom:403.730195pt;}
.y1b6{bottom:403.804667pt;}
.y2b4{bottom:404.719011pt;}
.yf1{bottom:405.618800pt;}
.y1cb{bottom:407.132383pt;}
.y7d{bottom:408.645957pt;}
.y26d{bottom:410.685031pt;}
.y127{bottom:411.365739pt;}
.y23{bottom:413.103258pt;}
.y3a{bottom:413.104761pt;}
.yc6{bottom:414.387320pt;}
.ydb{bottom:415.144720pt;}
.y2b3{bottom:415.377133pt;}
.y225{bottom:416.959019pt;}
.y1f7{bottom:417.714176pt;}
.y1ca{bottom:421.040913pt;}
.y26c{bottom:421.343153pt;}
.y107{bottom:425.272400pt;}
.y126{bottom:425.274269pt;}
.y2b2{bottom:426.035254pt;}
.y22{bottom:427.087240pt;}
.y39{bottom:427.088742pt;}
.yc5{bottom:427.162133pt;}
.y224{bottom:430.943001pt;}
.y1f6{bottom:431.622707pt;}
.y26b{bottom:431.925613pt;}
.y1b3{bottom:433.213346pt;}
.y18c{bottom:435.023888pt;}
.y7c{bottom:436.538469pt;}
.y2b1{bottom:436.617714pt;}
.y1e2{bottom:439.861953pt;}
.y21{bottom:441.071221pt;}
.y38{bottom:441.072724pt;}
.y26a{bottom:442.583734pt;}
.y223{bottom:444.851531pt;}
.yf0{bottom:445.077067pt;}
.y1f5{bottom:445.606688pt;}
.y1b2{bottom:447.197328pt;}
.y2b0{bottom:447.275836pt;}
.y18b{bottom:448.932418pt;}
.y1c9{bottom:448.933425pt;}
.y1e1{bottom:451.275843pt;}
.y269{bottom:453.241856pt;}
.y37{bottom:454.981254pt;}
.y2af{bottom:457.858295pt;}
.y222{bottom:458.835512pt;}
.y1f4{bottom:459.515218pt;}
.y1b1{bottom:461.105858pt;}
.y14c{bottom:461.328599pt;}
.y1e0{bottom:462.692036pt;}
.y18a{bottom:462.916400pt;}
.y188{bottom:462.916536pt;}
.y268{bottom:463.824316pt;}
.y189{bottom:467.603067pt;}
.y2ae{bottom:468.516417pt;}
.y20{bottom:468.963733pt;}
.y36{bottom:468.965236pt;}
.yc4{bottom:471.157125pt;}
.y221{bottom:472.744043pt;}
.y7b{bottom:473.200326pt;}
.y1f3{bottom:473.500529pt;}
.y1df{bottom:474.105926pt;}
.y267{bottom:474.482437pt;}
.y1b0{bottom:475.089840pt;}
.y187{bottom:476.825067pt;}
.y186{bottom:476.826904pt;}
.y14b{bottom:478.866000pt;}
.y2ad{bottom:479.098877pt;}
.y1c8{bottom:481.286061pt;}
.yc3{bottom:482.571015pt;}
.y266{bottom:485.064897pt;}
.y1de{bottom:485.519817pt;}
.y220{bottom:486.728024pt;}
.y7a{bottom:487.108856pt;}
.y1f2{bottom:487.409059pt;}
.y1af{bottom:489.073821pt;}
.y2ac{bottom:489.756998pt;}
.y185{bottom:490.810886pt;}
.yc2{bottom:493.984906pt;}
.y1c7{bottom:495.270043pt;}
.y265{bottom:495.723019pt;}
.y14a{bottom:496.403010pt;}
.y1dd{bottom:497.009369pt;}
.y2ab{bottom:500.415120pt;}
.y21f{bottom:500.636555pt;}
.y79{bottom:501.092838pt;}
.y1f1{bottom:501.393041pt;}
.y1ae{bottom:502.982351pt;}
.y184{bottom:504.719416pt;}
.yc1{bottom:505.398796pt;}
.y264{bottom:506.381140pt;}
.y1dc{bottom:508.423259pt;}
.y149{bottom:509.102267pt;}
.y1c6{bottom:509.178573pt;}
.y2aa{bottom:510.997580pt;}
.y21e{bottom:514.620536pt;}
.y78{bottom:515.001368pt;}
.y1f0{bottom:515.301571pt;}
.yc0{bottom:516.812686pt;}
.y1ad{bottom:516.966333pt;}
.y263{bottom:516.970733pt;}
.y183{bottom:518.703398pt;}
.y1db{bottom:519.837149pt;}
.y2a9{bottom:521.655701pt;}
.y1f{bottom:521.801372pt;}
.y1c5{bottom:523.162555pt;}
.y262{bottom:527.628854pt;}
.ybf{bottom:528.226576pt;}
.y21d{bottom:528.529067pt;}
.y21c{bottom:528.529488pt;}
.y77{bottom:528.985350pt;}
.y1ef{bottom:529.285553pt;}
.y1ac{bottom:530.874863pt;}
.y1da{bottom:531.251039pt;}
.y2a8{bottom:532.238161pt;}
.y182{bottom:532.611928pt;}
.y1e{bottom:534.576185pt;}
.y1c4{bottom:537.071085pt;}
.y261{bottom:538.211314pt;}
.ybe{bottom:539.640466pt;}
.y21b{bottom:542.513470pt;}
.y1d9{bottom:542.664929pt;}
.y76{bottom:542.893880pt;}
.y2a7{bottom:542.896283pt;}
.y1ab{bottom:544.858845pt;}
.y181{bottom:546.595909pt;}
.y148{bottom:547.199867pt;}
.y1d{bottom:547.350998pt;}
.y260{bottom:548.869436pt;}
.y1c3{bottom:551.055067pt;}
.y1c2{bottom:551.057831pt;}
.y2a6{bottom:553.554404pt;}
.y1d8{bottom:554.078819pt;}
.y21a{bottom:556.422000pt;}
.y219{bottom:556.432850pt;}
.y75{bottom:556.877862pt;}
.ybd{bottom:557.177867pt;}
.y1ee{bottom:557.179127pt;}
.y1aa{bottom:558.767375pt;}
.y25f{bottom:559.451895pt;}
.y1c{bottom:560.050254pt;}
.y180{bottom:560.504440pt;}
.y2a5{bottom:564.136864pt;}
.y1c1{bottom:564.966361pt;}
.y1d7{bottom:565.492709pt;}
.y25e{bottom:570.110017pt;}
.y218{bottom:570.416832pt;}
.y74{bottom:570.786392pt;}
.y1a9{bottom:572.751357pt;}
.y19{bottom:572.825054pt;}
.y1b{bottom:572.825067pt;}
.y17f{bottom:574.488421pt;}
.ybc{bottom:574.714787pt;}
.y2a4{bottom:574.794986pt;}
.y1a{bottom:577.058133pt;}
.y1c0{bottom:578.950343pt;}
.y25d{bottom:580.768139pt;}
.y1d6{bottom:583.030110pt;}
.y217{bottom:584.325362pt;}
.y73{bottom:584.770374pt;}
.y2a3{bottom:585.377445pt;}
.y17{bottom:585.599703pt;}
.y18{bottom:585.599867pt;}
.y1a8{bottom:586.659887pt;}
.ybb{bottom:587.489600pt;}
.y17e{bottom:588.396952pt;}
.y25c{bottom:591.350598pt;}
.y1bf{bottom:592.858873pt;}
.y1d5{bottom:594.444000pt;}
.y10{bottom:594.899131pt;}
.y2a2{bottom:596.035567pt;}
.y1ed{bottom:598.300046pt;}
.y216{bottom:598.309344pt;}
.y16{bottom:598.374516pt;}
.y72{bottom:598.678904pt;}
.y1a7{bottom:600.643869pt;}
.y25b{bottom:602.008720pt;}
.y17b{bottom:602.380713pt;}
.y17d{bottom:602.380933pt;}
.yf{bottom:606.313021pt;}
.y2a1{bottom:606.618027pt;}
.y1be{bottom:606.842855pt;}
.y17c{bottom:607.067600pt;}
.y15{bottom:611.073772pt;}
.y1d4{bottom:611.980920pt;}
.y1ec{bottom:612.208576pt;}
.y215{bottom:612.217874pt;}
.y25a{bottom:612.591180pt;}
.y71{bottom:612.662886pt;}
.y1a6{bottom:614.552399pt;}
.y17a{bottom:616.289244pt;}
.y2a0{bottom:617.276148pt;}
.ye{bottom:617.726911pt;}
.y1bd{bottom:620.751385pt;}
.y259{bottom:623.249301pt;}
.y14{bottom:623.848585pt;}
.y1d3{bottom:624.755733pt;}
.y1eb{bottom:626.192558pt;}
.y214{bottom:626.201856pt;}
.y70{bottom:626.571416pt;}
.y29f{bottom:627.934270pt;}
.y9c{bottom:628.462417pt;}
.y1a5{bottom:628.536381pt;}
.yd{bottom:629.140801pt;}
.y179{bottom:630.273225pt;}
.y258{bottom:633.907423pt;}
.y1bc{bottom:634.735367pt;}
.y13{bottom:636.623398pt;}
.y29e{bottom:638.516730pt;}
.y1ea{bottom:640.101088pt;}
.y213{bottom:640.110386pt;}
.yc{bottom:640.554691pt;}
.y6f{bottom:640.555398pt;}
.y1a4{bottom:642.444911pt;}
.y257{bottom:644.489883pt;}
.y29d{bottom:649.174851pt;}
.y12{bottom:649.322654pt;}
.yb{bottom:651.968581pt;}
.y1e9{bottom:654.085070pt;}
.y212{bottom:654.094368pt;}
.y6e{bottom:654.463928pt;}
.y256{bottom:655.148004pt;}
.y9b{bottom:656.354928pt;}
.y1a3{bottom:656.428893pt;}
.y178{bottom:658.166800pt;}
.y29c{bottom:659.757311pt;}
.y11{bottom:662.097467pt;}
.ya{bottom:663.458133pt;}
.y1d2{bottom:664.667600pt;}
.y255{bottom:665.730464pt;}
.y1e8{bottom:667.993600pt;}
.y1e7{bottom:667.994309pt;}
.y211{bottom:668.002898pt;}
.y6d{bottom:668.447909pt;}
.y1a2{bottom:670.337423pt;}
.y29b{bottom:670.415433pt;}
.y254{bottom:676.388586pt;}
.y29a{bottom:681.073554pt;}
.y1e6{bottom:681.978291pt;}
.y210{bottom:681.986880pt;}
.y6c{bottom:682.356440pt;}
.y9a{bottom:684.247440pt;}
.y1a1{bottom:684.321405pt;}
.y253{bottom:686.971045pt;}
.y1b4{bottom:688.025067pt;}
.y9{bottom:688.100533pt;}
.y299{bottom:691.656014pt;}
.y1e5{bottom:695.886821pt;}
.y20f{bottom:695.895410pt;}
.y6b{bottom:696.340421pt;}
.y252{bottom:697.629167pt;}
.y1a0{bottom:698.229935pt;}
.y298{bottom:702.314135pt;}
.y251{bottom:708.287289pt;}
.y1e4{bottom:709.870803pt;}
.y6a{bottom:710.248952pt;}
.y99{bottom:712.139952pt;}
.y19f{bottom:712.213916pt;}
.y297{bottom:712.896595pt;}
.y250{bottom:718.869748pt;}
.y296{bottom:723.554717pt;}
.y1e3{bottom:723.779333pt;}
.y20e{bottom:723.787922pt;}
.y69{bottom:724.232933pt;}
.y67{bottom:724.234486pt;}
.y98{bottom:726.123934pt;}
.y68{bottom:728.919467pt;}
.yef{bottom:729.146267pt;}
.y24f{bottom:729.527870pt;}
.y8{bottom:732.094267pt;}
.y295{bottom:734.137177pt;}
.y7{bottom:735.873867pt;}
.y66{bottom:738.218467pt;}
.y97{bottom:740.032464pt;}
.y19e{bottom:740.106428pt;}
.y24e{bottom:740.110330pt;}
.y6{bottom:743.508400pt;}
.y294{bottom:744.795298pt;}
.y5{bottom:747.288000pt;}
.y24d{bottom:750.768451pt;}
.y65{bottom:752.126998pt;}
.y237{bottom:753.713200pt;}
.y96{bottom:754.016446pt;}
.y293{bottom:755.453420pt;}
.y24b{bottom:761.426573pt;}
.y24c{bottom:763.467743pt;}
.y3{bottom:765.429733pt;}
.y292{bottom:766.035879pt;}
.y64{bottom:766.110979pt;}
.y95{bottom:767.924976pt;}
.y4{bottom:771.703733pt;}
.y24a{bottom:772.009033pt;}
.y291{bottom:776.694001pt;}
.y63{bottom:780.019509pt;}
.y147{bottom:781.001333pt;}
.y19d{bottom:781.908533pt;}
.y94{bottom:781.908958pt;}
.y19b{bottom:781.913559pt;}
.y249{bottom:782.667154pt;}
.y19c{bottom:786.595200pt;}
.y290{bottom:787.276461pt;}
.y248{bottom:793.249614pt;}
.y62{bottom:794.003491pt;}
.y93{bottom:795.817488pt;}
.y19a{bottom:795.822090pt;}
.y28f{bottom:797.934582pt;}
.y2{bottom:798.765748pt;}
.y247{bottom:803.907735pt;}
.y61{bottom:807.912021pt;}
.y28e{bottom:808.592704pt;}
.y92{bottom:809.801470pt;}
.y199{bottom:809.806071pt;}
.y246{bottom:814.565857pt;}
.y28d{bottom:819.175164pt;}
.y1{bottom:821.744667pt;}
.y60{bottom:821.896003pt;}
.y91{bottom:823.710000pt;}
.y198{bottom:823.714602pt;}
.y245{bottom:825.148317pt;}
.y28c{bottom:829.833285pt;}
.y5f{bottom:835.804533pt;}
.y244{bottom:835.806438pt;}
.y197{bottom:837.698583pt;}
.y90{bottom:837.704139pt;}
.y28b{bottom:840.415745pt;}
.y243{bottom:846.388898pt;}
.y28a{bottom:851.083853pt;}
.y196{bottom:851.607114pt;}
.y8f{bottom:851.612670pt;}
.y242{bottom:857.047020pt;}
.y289{bottom:861.666313pt;}
.y195{bottom:865.591095pt;}
.y8e{bottom:865.596651pt;}
.y241{bottom:867.629479pt;}
.ya8{bottom:871.861200pt;}
.y288{bottom:872.324434pt;}
.y240{bottom:878.287601pt;}
.y194{bottom:879.499626pt;}
.y8d{bottom:879.505182pt;}
.y287{bottom:882.982556pt;}
.ya7{bottom:883.275333pt;}
.ya5{bottom:883.275710pt;}
.ya6{bottom:887.054800pt;}
.y23f{bottom:888.945723pt;}
.y58{bottom:892.043867pt;}
.y193{bottom:893.483607pt;}
.y8c{bottom:893.489163pt;}
.y286{bottom:893.565015pt;}
.ya4{bottom:894.690086pt;}
.y23e{bottom:899.528182pt;}
.y285{bottom:904.223137pt;}
.ya3{bottom:906.103977pt;}
.y192{bottom:907.392137pt;}
.y8b{bottom:907.397694pt;}
.y23d{bottom:910.186304pt;}
.y284{bottom:914.805597pt;}
.ya1{bottom:917.516926pt;}
.ya2{bottom:917.517867pt;}
.y23c{bottom:920.768764pt;}
.y191{bottom:921.376119pt;}
.y8a{bottom:921.381675pt;}
.y283{bottom:925.463718pt;}
.y57{bottom:928.024933pt;}
.ya0{bottom:928.931666pt;}
.y23b{bottom:931.426885pt;}
.y190{bottom:935.284649pt;}
.y89{bottom:935.290205pt;}
.y282{bottom:936.121840pt;}
.y23a{bottom:942.085007pt;}
.y9f{bottom:946.469067pt;}
.y281{bottom:946.704300pt;}
.y18f{bottom:949.268631pt;}
.y88{bottom:949.274187pt;}
.y239{bottom:952.667467pt;}
.y280{bottom:957.362421pt;}
.y18e{bottom:963.177161pt;}
.y87{bottom:963.182717pt;}
.y9e{bottom:964.006120pt;}
.y56{bottom:965.820267pt;}
.y27f{bottom:967.944881pt;}
.y9d{bottom:976.780933pt;}
.y238{bottom:977.158800pt;}
.y18d{bottom:977.161143pt;}
.y86{bottom:977.166699pt;}
.y27e{bottom:978.603003pt;}
.y5e{bottom:1002.254933pt;}
.y105{bottom:1003.237600pt;}
.y14d{bottom:1003.240142pt;}
.y2c4{bottom:1003.242800pt;}
.ycf{bottom:1003.242855pt;}
.h12{height:15.642061pt;}
.h6{height:17.508164pt;}
.h19{height:19.698108pt;}
.h1a{height:20.854118pt;}
.hc{height:21.119078pt;}
.h13{height:21.233856pt;}
.hf{height:23.465643pt;}
.h20{height:23.735723pt;}
.h15{height:24.851365pt;}
.h7{height:25.027925pt;}
.h18{height:25.163947pt;}
.h21{height:25.551607pt;}
.h8{height:25.850854pt;}
.h9{height:27.374490pt;}
.h5{height:27.632777pt;}
.hb{height:27.958195pt;}
.ha{height:28.156809pt;}
.h16{height:28.247786pt;}
.h17{height:28.249731pt;}
.h14{height:28.309835pt;}
.h4{height:28.999970pt;}
.h11{height:30.648076pt;}
.h1c{height:31.065026pt;}
.he{height:31.285692pt;}
.hd{height:31.455723pt;}
.h1f{height:32.089088pt;}
.h1e{height:35.231204pt;}
.h1b{height:35.234834pt;}
.h1d{height:35.235379pt;}
.h3{height:41.453483pt;}
.h2{height:52.793771pt;}
.h10{height:54.748979pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.116533pt;}
.x82{left:54.652000pt;}
.xb{left:55.710267pt;}
.x24{left:56.844000pt;}
.x2d{left:58.129067pt;}
.x70{left:60.850400pt;}
.x14{left:66.066498pt;}
.x77{left:69.240933pt;}
.x83{left:71.886753pt;}
.x71{left:75.968400pt;}
.x7c{left:100.459756pt;}
.x85{left:126.535024pt;}
.x38{left:136.667785pt;}
.x46{left:141.278908pt;}
.x7d{left:146.343200pt;}
.x69{left:156.472400pt;}
.x6a{left:161.990533pt;}
.x29{left:164.787333pt;}
.x53{left:168.642533pt;}
.x49{left:172.195200pt;}
.x2a{left:174.084933pt;}
.x2{left:176.881867pt;}
.x4a{left:179.074000pt;}
.x3{left:182.173200pt;}
.x4b{left:184.592000pt;}
.x4{left:186.028267pt;}
.x41{left:189.203067pt;}
.x5{left:191.319600pt;}
.x2b{left:193.814133pt;}
.x42{left:195.930667pt;}
.x4c{left:197.593600pt;}
.x2c{left:203.187333pt;}
.x7b{left:214.828267pt;}
.x39{left:220.195200pt;}
.x45{left:223.596800pt;}
.x3a{left:224.655067pt;}
.x4d{left:239.017200pt;}
.x4e{left:245.820400pt;}
.x4f{left:251.338533pt;}
.x2e{left:253.832933pt;}
.x27{left:258.292800pt;}
.x31{left:261.014133pt;}
.x50{left:261.996800pt;}
.x73{left:263.735333pt;}
.x32{left:267.136933pt;}
.xd{left:269.329067pt;}
.x33{left:271.596800pt;}
.x43{left:274.393600pt;}
.x47{left:277.568400pt;}
.x44{left:278.853467pt;}
.x48{left:290.192000pt;}
.x78{left:295.483333pt;}
.x74{left:297.373200pt;}
.x34{left:298.884933pt;}
.x25{left:305.688133pt;}
.x6{left:307.880267pt;}
.x54{left:309.845600pt;}
.x7{left:313.171600pt;}
.x84{left:314.380485pt;}
.x15{left:315.892800pt;}
.x55{left:316.951067pt;}
.x6d{left:320.881733pt;}
.x51{left:322.544800pt;}
.x28{left:327.004667pt;}
.x52{left:331.086533pt;}
.x26{left:336.377867pt;}
.x2f{left:350.664533pt;}
.x6e{left:354.066133pt;}
.x30{left:355.124267pt;}
.x35{left:357.845600pt;}
.x6f{left:359.055067pt;}
.x36{left:363.968400pt;}
.x37{left:368.428267pt;}
.x72{left:370.091333pt;}
.x67{left:371.451867pt;}
.x6b{left:377.574667pt;}
.x68{left:382.034533pt;}
.x40{left:394.808083pt;}
.xe{left:397.832933pt;}
.xf{left:402.822000pt;}
.x16{left:408.792389pt;}
.xc{left:415.749854pt;}
.x3f{left:416.806133pt;}
.x1f{left:424.742321pt;}
.x86{left:430.791728pt;}
.x8{left:433.587333pt;}
.x63{left:436.232933pt;}
.x9{left:438.878667pt;}
.x64{left:441.751067pt;}
.x80{left:445.001467pt;}
.x81{left:450.519600pt;}
.x7e{left:464.881733pt;}
.x7f{left:470.399867pt;}
.x87{left:501.090954pt;}
.x1a{left:509.858133pt;}
.x3b{left:513.259733pt;}
.x1b{left:517.719600pt;}
.x3c{left:519.382533pt;}
.x1e{left:522.859733pt;}
.x3d{left:523.842400pt;}
.x3e{left:532.384133pt;}
.x88{left:539.491476pt;}
.x22{left:540.774667pt;}
.x75{left:546.292800pt;}
.x23{left:547.804667pt;}
.x10{left:552.642400pt;}
.xa{left:554.003067pt;}
.x76{left:556.875467pt;}
.x61{left:561.864400pt;}
.x11{left:565.114800pt;}
.x62{left:566.399867pt;}
.x59{left:582.651867pt;}
.x20{left:585.221867pt;}
.x5a{left:589.454933pt;}
.x21{left:593.083333pt;}
.x5b{left:595.275467pt;}
.x5c{left:600.793600pt;}
.x5f{left:604.573067pt;}
.x60{left:610.091200pt;}
.x6c{left:615.080133pt;}
.x1c{left:616.667600pt;}
.x65{left:621.505333pt;}
.x1d{left:624.604533pt;}
.x66{left:631.105333pt;}
.x12{left:639.647067pt;}
.x13{left:649.171467pt;}
.x79{left:658.998267pt;}
.x7a{left:664.516400pt;}
.x56{left:676.006133pt;}
.x57{left:689.461200pt;}
.x18{left:701.858133pt;}
.x19{left:708.812400pt;}
.x5d{left:725.140000pt;}
.x5e{left:730.658000pt;}
.x58{left:735.117867pt;}
.x17{left:739.048667pt;}
}


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