
/* 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_7ba7239bfc2f.woff")format("woff");}.ff1{font-family:ff1;line-height:1.076000;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_4932fb5e1fe3.woff")format("woff");}.ff2{font-family:ff2;line-height:0.925000;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_2ce1b2fd7274.woff")format("woff");}.ff3{font-family:ff3;line-height:0.851000;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_94ac1a6df58b.woff")format("woff");}.ff4{font-family:ff4;line-height:0.916000;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_9e05d4727362.woff")format("woff");}.ff5{font-family:ff5;line-height:0.966000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_13e7ec764608.woff")format("woff");}.ff6{font-family:ff6;line-height:1.083000;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_a27a4113708a.woff")format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_a709fb63beaa.woff")format("woff");}.ff8{font-family:ff8;line-height:0.984000;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_013d231f7835.woff")format("woff");}.ff9{font-family:ff9;line-height:0.905000;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_01b6d4aa0cd5.woff")format("woff");}.ffa{font-family:ffa;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_0a98206d53df.woff")format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_3dad85da7c6d.woff")format("woff");}.ffc{font-family:ffc;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_e81105a1363a.woff")format("woff");}.ffd{font-family:ffd;line-height:0.716000;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_a7e59bb631bf.woff")format("woff");}.ffe{font-family:ffe;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_9f58268649fb.woff")format("woff");}.fff{font-family:fff;line-height:0.868000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_b6e2ff437f80.woff")format("woff");}.ff10{font-family:ff10;line-height:0.861000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_70f6b5e767c5.woff")format("woff");}.ff11{font-family:ff11;line-height:0.870000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_d60ef1d7aa17.woff")format("woff");}.ff12{font-family:ff12;line-height:0.868000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_4603ff962002.woff")format("woff");}.ff13{font-family:ff13;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_9f58268649fb.woff")format("woff");}.ff14{font-family:ff14;line-height:0.868000;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;}
.m3{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.854000px;}
.ls1e{letter-spacing:-0.688200px;}
.lse{letter-spacing:-0.127200px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.013800px;}
.ls13{letter-spacing:0.110400px;}
.ls14{letter-spacing:0.165000px;}
.ls7{letter-spacing:0.165600px;}
.ls26{letter-spacing:0.220800px;}
.ls1f{letter-spacing:0.247800px;}
.ls25{letter-spacing:0.276000px;}
.ls12{letter-spacing:0.528000px;}
.lsb{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.662400px;}
.ls28{letter-spacing:0.783000px;}
.ls9{letter-spacing:0.990600px;}
.ls22{letter-spacing:1.081800px;}
.ls5{letter-spacing:1.395000px;}
.ls29{letter-spacing:1.620000px;}
.ls3{letter-spacing:1.650000px;}
.ls27{letter-spacing:1.890000px;}
.ls17{letter-spacing:2.366400px;}
.ls1d{letter-spacing:2.519400px;}
.ls1{letter-spacing:2.790000px;}
.ls11{letter-spacing:2.985900px;}
.lsa{letter-spacing:2.989368px;}
.ls1a{letter-spacing:2.989812px;}
.ls21{letter-spacing:2.991720px;}
.lsd{letter-spacing:2.991900px;}
.ls19{letter-spacing:2.993664px;}
.ls6{letter-spacing:3.091200px;}
.ls0{letter-spacing:3.150000px;}
.ls4{letter-spacing:3.720000px;}
.ls1c{letter-spacing:7.632000px;}
.ls1b{letter-spacing:14.349672px;}
.ls20{letter-spacing:15.178800px;}
.ls15{letter-spacing:15.823368px;}
.ls18{letter-spacing:15.903900px;}
.ls23{letter-spacing:16.183368px;}
.ls10{letter-spacing:17.179368px;}
.ls24{letter-spacing:17.327664px;}
.lsf{letter-spacing:20.479812px;}
.lsc{letter-spacing:21.177900px;}
.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;}
}
.ws13{word-spacing:-90.000000px;}
.ws15d{word-spacing:-81.690000px;}
.ws1b8{word-spacing:-81.270000px;}
.ws26{word-spacing:-70.920600px;}
.ws170{word-spacing:-69.000000px;}
.ws25{word-spacing:-67.770000px;}
.ws14f{word-spacing:-67.410000px;}
.ws17e{word-spacing:-67.320000px;}
.ws235{word-spacing:-67.140000px;}
.wsd0{word-spacing:-67.050000px;}
.ws1aa{word-spacing:-66.960000px;}
.wsf4{word-spacing:-66.000000px;}
.ws207{word-spacing:-58.951800px;}
.ws1b{word-spacing:-58.422000px;}
.ws1e{word-spacing:-58.110000px;}
.ws1f{word-spacing:-55.365600px;}
.ws16{word-spacing:-55.200000px;}
.ws232{word-spacing:-53.958000px;}
.ws234{word-spacing:-53.751000px;}
.ws36{word-spacing:-53.682000px;}
.wsa4{word-spacing:-53.613000px;}
.wsb4{word-spacing:-53.475000px;}
.ws122{word-spacing:-53.337000px;}
.ws1bd{word-spacing:-53.311800px;}
.ws221{word-spacing:-51.810000px;}
.ws1d0{word-spacing:-51.627600px;}
.ws228{word-spacing:-51.612000px;}
.ws15b{word-spacing:-51.414000px;}
.wse5{word-spacing:-51.348000px;}
.wsf3{word-spacing:-51.282000px;}
.ws1fc{word-spacing:-51.216000px;}
.ws1d8{word-spacing:-51.196200px;}
.ws1ad{word-spacing:-51.084000px;}
.ws141{word-spacing:-51.018000px;}
.ws231{word-spacing:-45.900000px;}
.ws20{word-spacing:-43.166400px;}
.ws22{word-spacing:-43.111200px;}
.ws14{word-spacing:-42.945600px;}
.ws17{word-spacing:-42.890400px;}
.ws18{word-spacing:-42.835200px;}
.ws19{word-spacing:-42.780000px;}
.ws1c{word-spacing:-42.724800px;}
.ws1a{word-spacing:-42.669600px;}
.ws1bc{word-spacing:-42.012000px;}
.ws3d{word-spacing:-41.958000px;}
.ws208{word-spacing:-41.904000px;}
.ws164{word-spacing:-41.796000px;}
.ws1ab{word-spacing:-41.742000px;}
.ws16a{word-spacing:-41.676000px;}
.ws19c{word-spacing:-41.472000px;}
.ws16b{word-spacing:-41.344800px;}
.ws169{word-spacing:-41.289600px;}
.ws168{word-spacing:-41.234400px;}
.ws19a{word-spacing:-41.136000px;}
.ws160{word-spacing:-38.436000px;}
.ws15{word-spacing:-37.646400px;}
.ws172{word-spacing:-36.921600px;}
.ws256{word-spacing:-35.217600px;}
.ws236{word-spacing:-34.831200px;}
.ws24e{word-spacing:-34.776000px;}
.ws1d{word-spacing:-34.555200px;}
.ws1f4{word-spacing:-33.576000px;}
.wsbc{word-spacing:-33.175200px;}
.ws19b{word-spacing:-32.592000px;}
.ws190{word-spacing:-29.366400px;}
.ws1a8{word-spacing:-28.704000px;}
.ws19e{word-spacing:-28.077000px;}
.ws233{word-spacing:-26.622000px;}
.ws9c{word-spacing:-25.536000px;}
.ws129{word-spacing:-25.447200px;}
.ws12d{word-spacing:-25.392000px;}
.ws123{word-spacing:-25.336800px;}
.wse6{word-spacing:-25.281600px;}
.ws88{word-spacing:-25.226400px;}
.ws106{word-spacing:-25.171200px;}
.wse7{word-spacing:-25.116000px;}
.ws37{word-spacing:-25.060800px;}
.ws12e{word-spacing:-25.005600px;}
.ws111{word-spacing:-24.960000px;}
.ws8d{word-spacing:-24.950400px;}
.ws108{word-spacing:-24.895200px;}
.ws12a{word-spacing:-24.840000px;}
.wsd4{word-spacing:-24.784800px;}
.wsd2{word-spacing:-24.729600px;}
.ws130{word-spacing:-24.674400px;}
.wsd3{word-spacing:-24.619200px;}
.ws14b{word-spacing:-24.564000px;}
.ws105{word-spacing:-24.508800px;}
.ws79{word-spacing:-24.453600px;}
.ws4b{word-spacing:-24.398400px;}
.ws94{word-spacing:-24.343200px;}
.ws125{word-spacing:-24.288000px;}
.ws1e9{word-spacing:-24.268800px;}
.wsb5{word-spacing:-24.232800px;}
.wscb{word-spacing:-24.177600px;}
.ws65{word-spacing:-24.122400px;}
.ws12c{word-spacing:-24.067200px;}
.wsca{word-spacing:-24.012000px;}
.ws14a{word-spacing:-23.962800px;}
.ws74{word-spacing:-23.956800px;}
.wsc4{word-spacing:-23.901600px;}
.ws1cf{word-spacing:-23.852400px;}
.wseb{word-spacing:-23.846400px;}
.ws52{word-spacing:-23.791200px;}
.ws8c{word-spacing:-23.736000px;}
.ws39{word-spacing:-23.680800px;}
.ws6f{word-spacing:-23.625600px;}
.wsea{word-spacing:-23.570400px;}
.ws13b{word-spacing:-23.515200px;}
.ws4a{word-spacing:-23.460000px;}
.ws16d{word-spacing:-23.422800px;}
.ws45{word-spacing:-23.404800px;}
.ws107{word-spacing:-23.349600px;}
.ws103{word-spacing:-23.294400px;}
.wse4{word-spacing:-23.239200px;}
.ws30{word-spacing:-23.184000px;}
.wsa3{word-spacing:-23.128800px;}
.wsbb{word-spacing:-23.073600px;}
.ws72{word-spacing:-23.018400px;}
.ws5a{word-spacing:-22.963200px;}
.ws58{word-spacing:-22.941600px;}
.ws1cb{word-spacing:-22.912800px;}
.ws78{word-spacing:-22.908000px;}
.wsd6{word-spacing:-22.852800px;}
.wsc3{word-spacing:-22.797600px;}
.ws80{word-spacing:-22.742400px;}
.ws6e{word-spacing:-22.687200px;}
.wsb2{word-spacing:-22.632000px;}
.ws1d2{word-spacing:-22.630800px;}
.ws13f{word-spacing:-22.585200px;}
.wse3{word-spacing:-22.576800px;}
.wscc{word-spacing:-22.521600px;}
.ws1ed{word-spacing:-22.485600px;}
.ws91{word-spacing:-22.466400px;}
.ws5c{word-spacing:-22.411200px;}
.ws3a{word-spacing:-22.356000px;}
.wsb3{word-spacing:-22.300800px;}
.wsbe{word-spacing:-22.245600px;}
.ws21f{word-spacing:-22.218000px;}
.wsaa{word-spacing:-22.190400px;}
.ws1ce{word-spacing:-22.137600px;}
.ws6d{word-spacing:-22.135200px;}
.wsd9{word-spacing:-22.080000px;}
.ws100{word-spacing:-22.051200px;}
.ws7c{word-spacing:-22.024800px;}
.ws69{word-spacing:-21.969600px;}
.ws8e{word-spacing:-21.914400px;}
.ws1c8{word-spacing:-21.908400px;}
.ws95{word-spacing:-21.859200px;}
.ws48{word-spacing:-21.804000px;}
.ws2d{word-spacing:-21.748800px;}
.wsab{word-spacing:-21.693600px;}
.wsfb{word-spacing:-21.638400px;}
.ws158{word-spacing:-21.634800px;}
.ws166{word-spacing:-21.608400px;}
.ws23{word-spacing:-21.583200px;}
.ws24{word-spacing:-21.528000px;}
.ws167{word-spacing:-21.516000px;}
.wsa5{word-spacing:-21.472800px;}
.ws8b{word-spacing:-21.417600px;}
.ws93{word-spacing:-21.362400px;}
.ws42{word-spacing:-21.307200px;}
.ws18b{word-spacing:-21.302400px;}
.ws15c{word-spacing:-21.276000px;}
.ws1d3{word-spacing:-21.256800px;}
.ws6c{word-spacing:-21.252000px;}
.ws1cc{word-spacing:-21.201600px;}
.wsc8{word-spacing:-21.196800px;}
.ws4f{word-spacing:-21.141600px;}
.ws157{word-spacing:-21.116400px;}
.ws1a1{word-spacing:-21.090000px;}
.ws5e{word-spacing:-21.086400px;}
.ws148{word-spacing:-21.042000px;}
.ws87{word-spacing:-21.031200px;}
.ws212{word-spacing:-21.021600px;}
.wsa2{word-spacing:-20.976000px;}
.ws10d{word-spacing:-20.967600px;}
.ws171{word-spacing:-20.934600px;}
.ws35{word-spacing:-20.920800px;}
.ws140{word-spacing:-20.895600px;}
.ws1b3{word-spacing:-20.890800px;}
.ws10e{word-spacing:-20.886000px;}
.ws7a{word-spacing:-20.865600px;}
.ws18c{word-spacing:-20.864400px;}
.wsad{word-spacing:-20.810400px;}
.ws21e{word-spacing:-20.788800px;}
.ws3e{word-spacing:-20.755200px;}
.ws1e8{word-spacing:-20.727600px;}
.ws6a{word-spacing:-20.700000px;}
.ws104{word-spacing:-20.683200px;}
.wsed{word-spacing:-20.644800px;}
.ws3c{word-spacing:-20.589600px;}
.ws113{word-spacing:-20.534400px;}
.wsde{word-spacing:-20.479200px;}
.ws1ec{word-spacing:-20.442000px;}
.ws156{word-spacing:-20.432400px;}
.ws38{word-spacing:-20.424000px;}
.ws5b{word-spacing:-20.368800px;}
.ws57{word-spacing:-20.313600px;}
.ws213{word-spacing:-20.268000px;}
.ws90{word-spacing:-20.258400px;}
.ws165{word-spacing:-20.221200px;}
.wsa6{word-spacing:-20.203200px;}
.ws6b{word-spacing:-20.148000px;}
.wsc9{word-spacing:-20.092800px;}
.ws1ee{word-spacing:-20.068800px;}
.ws1f0{word-spacing:-20.049600px;}
.ws34{word-spacing:-20.037600px;}
.ws1e6{word-spacing:-20.031600px;}
.ws204{word-spacing:-20.020800px;}
.wsc7{word-spacing:-19.982400px;}
.ws1ea{word-spacing:-19.962000px;}
.wsb8{word-spacing:-19.927200px;}
.ws1dc{word-spacing:-19.899600px;}
.wsc5{word-spacing:-19.872000px;}
.ws2b{word-spacing:-19.816800px;}
.ws239{word-spacing:-19.762800px;}
.wsce{word-spacing:-19.761600px;}
.ws1a2{word-spacing:-19.718400px;}
.ws3f{word-spacing:-19.706400px;}
.ws159{word-spacing:-19.699200px;}
.ws7f{word-spacing:-19.651200px;}
.ws142{word-spacing:-19.628400px;}
.wsd5{word-spacing:-19.596000px;}
.wsec{word-spacing:-19.540800px;}
.ws222{word-spacing:-19.518000px;}
.ws155{word-spacing:-19.513200px;}
.ws1b4{word-spacing:-19.512000px;}
.wsbd{word-spacing:-19.485600px;}
.ws68{word-spacing:-19.430400px;}
.wsa9{word-spacing:-19.375200px;}
.ws62{word-spacing:-19.320000px;}
.ws220{word-spacing:-19.306800px;}
.wsd8{word-spacing:-19.264800px;}
.ws60{word-spacing:-19.209600px;}
.ws56{word-spacing:-19.154400px;}
.ws8a{word-spacing:-19.099200px;}
.ws206{word-spacing:-19.059600px;}
.ws89{word-spacing:-19.044000px;}
.ws1d5{word-spacing:-18.994800px;}
.ws10f{word-spacing:-18.988800px;}
.ws32{word-spacing:-18.933600px;}
.ws46{word-spacing:-18.878400px;}
.ws63{word-spacing:-18.823200px;}
.ws15a{word-spacing:-18.816000px;}
.ws22e{word-spacing:-18.801600px;}
.ws4c{word-spacing:-18.768000px;}
.ws73{word-spacing:-18.712800px;}
.wsd1{word-spacing:-18.657600px;}
.ws59{word-spacing:-18.645600px;}
.ws54{word-spacing:-18.602400px;}
.ws21d{word-spacing:-18.573600px;}
.ws5d{word-spacing:-18.547200px;}
.ws1be{word-spacing:-18.513600px;}
.ws2e{word-spacing:-18.492000px;}
.ws19d{word-spacing:-18.480000px;}
.ws29{word-spacing:-18.436800px;}
.ws196{word-spacing:-18.399600px;}
.ws55{word-spacing:-18.381600px;}
.ws14d{word-spacing:-18.378000px;}
.ws1cd{word-spacing:-18.357600px;}
.ws92{word-spacing:-18.326400px;}
.ws205{word-spacing:-18.315600px;}
.ws8f{word-spacing:-18.271200px;}
.ws1a9{word-spacing:-18.238800px;}
.ws14e{word-spacing:-18.216000px;}
.ws1e5{word-spacing:-18.201600px;}
.ws43{word-spacing:-18.160800px;}
.ws9e{word-spacing:-18.105600px;}
.ws102{word-spacing:-18.104400px;}
.ws31{word-spacing:-18.050400px;}
.ws138{word-spacing:-18.027600px;}
.ws191{word-spacing:-18.000000px;}
.ws1d7{word-spacing:-17.998800px;}
.ws40{word-spacing:-17.995200px;}
.ws98{word-spacing:-17.940000px;}
.wsac{word-spacing:-17.884800px;}
.ws50{word-spacing:-17.829600px;}
.wsf8{word-spacing:-17.774400px;}
.ws13e{word-spacing:-17.760000px;}
.ws51{word-spacing:-17.719200px;}
.ws188{word-spacing:-17.676000px;}
.ws41{word-spacing:-17.664000px;}
.ws47{word-spacing:-17.608800px;}
.ws20c{word-spacing:-17.604000px;}
.ws1db{word-spacing:-17.589600px;}
.wsc2{word-spacing:-17.553600px;}
.ws1d9{word-spacing:-17.521200px;}
.ws64{word-spacing:-17.498400px;}
.ws70{word-spacing:-17.443200px;}
.ws177{word-spacing:-17.424000px;}
.ws76{word-spacing:-17.388000px;}
.ws225{word-spacing:-17.374800px;}
.ws114{word-spacing:-17.332800px;}
.ws199{word-spacing:-17.328000px;}
.ws230{word-spacing:-17.301600px;}
.wsf2{word-spacing:-17.277600px;}
.ws28{word-spacing:-17.222400px;}
.ws194{word-spacing:-17.175600px;}
.ws227{word-spacing:-17.170800px;}
.ws3b{word-spacing:-17.167200px;}
.wsa8{word-spacing:-17.112000px;}
.wse9{word-spacing:-17.056800px;}
.ws67{word-spacing:-17.001600px;}
.ws1a6{word-spacing:-16.948800px;}
.ws1a7{word-spacing:-16.947600px;}
.ws53{word-spacing:-16.946400px;}
.ws229{word-spacing:-16.942800px;}
.ws195{word-spacing:-16.941600px;}
.ws1c1{word-spacing:-16.929600px;}
.wscd{word-spacing:-16.891200px;}
.wsa7{word-spacing:-16.863600px;}
.wsb9{word-spacing:-16.836000px;}
.ws75{word-spacing:-16.780800px;}
.ws133{word-spacing:-16.725600px;}
.wsa1{word-spacing:-16.670400px;}
.ws66{word-spacing:-16.615200px;}
.wsc1{word-spacing:-16.560000px;}
.ws9d{word-spacing:-16.504800px;}
.ws22a{word-spacing:-16.479600px;}
.ws11b{word-spacing:-16.462800px;}
.wsaf{word-spacing:-16.449600px;}
.ws1ef{word-spacing:-16.431600px;}
.ws1fb{word-spacing:-16.411200px;}
.wsb6{word-spacing:-16.394400px;}
.ws1fa{word-spacing:-16.393200px;}
.ws4d{word-spacing:-16.339200px;}
.ws1f7{word-spacing:-16.297200px;}
.wsf9{word-spacing:-16.284000px;}
.ws139{word-spacing:-16.279200px;}
.ws137{word-spacing:-16.272000px;}
.wsb7{word-spacing:-16.228800px;}
.ws1de{word-spacing:-16.186800px;}
.ws11e{word-spacing:-16.176000px;}
.ws49{word-spacing:-16.173600px;}
.ws1dd{word-spacing:-16.149600px;}
.ws1ff{word-spacing:-16.128000px;}
.wsb0{word-spacing:-16.118400px;}
.wsf1{word-spacing:-16.063200px;}
.wsc0{word-spacing:-16.032000px;}
.ws77{word-spacing:-16.008000px;}
.ws200{word-spacing:-15.984000px;}
.ws1b1{word-spacing:-15.972000px;}
.ws33{word-spacing:-15.952800px;}
.ws12b{word-spacing:-15.897600px;}
.ws7b{word-spacing:-15.842400px;}
.ws16c{word-spacing:-15.840000px;}
.wsf6{word-spacing:-15.787200px;}
.wsdf{word-spacing:-15.732000px;}
.wsf0{word-spacing:-15.676800px;}
.ws1f1{word-spacing:-15.639600px;}
.ws128{word-spacing:-15.621600px;}
.ws203{word-spacing:-15.600000px;}
.ws224{word-spacing:-15.573600px;}
.wsef{word-spacing:-15.566400px;}
.ws1b9{word-spacing:-15.555600px;}
.ws1ba{word-spacing:-15.549600px;}
.ws117{word-spacing:-15.511200px;}
.ws81{word-spacing:-15.456000px;}
.wscf{word-spacing:-15.400800px;}
.wsee{word-spacing:-15.345600px;}
.ws1d6{word-spacing:-15.322800px;}
.ws44{word-spacing:-15.290400px;}
.ws2a{word-spacing:-15.235200px;}
.wsbf{word-spacing:-15.216000px;}
.wsfa{word-spacing:-15.180000px;}
.ws126{word-spacing:-15.124800px;}
.ws1f3{word-spacing:-15.120000px;}
.ws101{word-spacing:-15.069600px;}
.ws22c{word-spacing:-15.024000px;}
.wsf5{word-spacing:-15.014400px;}
.ws61{word-spacing:-14.959200px;}
.ws4e{word-spacing:-14.904000px;}
.ws1ca{word-spacing:-14.895600px;}
.ws202{word-spacing:-14.880000px;}
.wsdd{word-spacing:-14.848800px;}
.ws181{word-spacing:-14.841600px;}
.ws1df{word-spacing:-14.808000px;}
.ws2f{word-spacing:-14.793600px;}
.ws1c2{word-spacing:-14.739600px;}
.wsf7{word-spacing:-14.738400px;}
.ws154{word-spacing:-14.688000px;}
.wsfe{word-spacing:-14.683200px;}
.wsa0{word-spacing:-14.628000px;}
.ws112{word-spacing:-14.572800px;}
.ws2c{word-spacing:-14.517600px;}
.ws10b{word-spacing:-14.462400px;}
.wsd7{word-spacing:-14.407200px;}
.ws223{word-spacing:-14.368800px;}
.ws9a{word-spacing:-14.352000px;}
.ws121{word-spacing:-14.296800px;}
.ws5f{word-spacing:-14.241600px;}
.ws1b0{word-spacing:-14.238000px;}
.wse0{word-spacing:-14.186400px;}
.ws110{word-spacing:-14.160000px;}
.ws131{word-spacing:-14.131200px;}
.ws7e{word-spacing:-14.076000px;}
.ws1c0{word-spacing:-14.055600px;}
.ws1bf{word-spacing:-14.049600px;}
.ws12f{word-spacing:-14.020800px;}
.ws22f{word-spacing:-13.977600px;}
.ws118{word-spacing:-13.976400px;}
.ws135{word-spacing:-13.968000px;}
.ws124{word-spacing:-13.965600px;}
.ws189{word-spacing:-13.941600px;}
.ws116{word-spacing:-13.910400px;}
.ws152{word-spacing:-13.855200px;}
.wsb1{word-spacing:-13.800000px;}
.ws10c{word-spacing:-13.744800px;}
.ws134{word-spacing:-13.728000px;}
.wsc6{word-spacing:-13.689600px;}
.wse8{word-spacing:-13.634400px;}
.ws1bb{word-spacing:-13.632000px;}
.ws17f{word-spacing:-13.592400px;}
.wsdc{word-spacing:-13.579200px;}
.ws85{word-spacing:-13.524000px;}
.ws178{word-spacing:-13.488000px;}
.ws83{word-spacing:-13.468800px;}
.ws127{word-spacing:-13.413600px;}
.ws115{word-spacing:-13.365600px;}
.ws97{word-spacing:-13.358400px;}
.ws226{word-spacing:-13.329600px;}
.wsae{word-spacing:-13.303200px;}
.ws18a{word-spacing:-13.296000px;}
.ws71{word-spacing:-13.248000px;}
.wsba{word-spacing:-13.192800px;}
.ws9b{word-spacing:-13.152000px;}
.wsfd{word-spacing:-13.137600px;}
.ws1d1{word-spacing:-13.101600px;}
.wse1{word-spacing:-13.082400px;}
.ws22b{word-spacing:-13.077600px;}
.ws1ac{word-spacing:-13.027200px;}
.ws1b2{word-spacing:-13.020000px;}
.ws120{word-spacing:-12.972000px;}
.ws20d{word-spacing:-12.960000px;}
.ws132{word-spacing:-12.916800px;}
.ws197{word-spacing:-12.912000px;}
.ws1c7{word-spacing:-12.861600px;}
.ws11c{word-spacing:-12.806400px;}
.ws14c{word-spacing:-12.751200px;}
.ws1e1{word-spacing:-12.722400px;}
.ws149{word-spacing:-12.696000px;}
.ws10a{word-spacing:-12.640800px;}
.ws1fe{word-spacing:-12.585600px;}
.ws217{word-spacing:-12.576000px;}
.ws162{word-spacing:-12.530400px;}
.ws11d{word-spacing:-12.480000px;}
.wsff{word-spacing:-12.475200px;}
.ws1eb{word-spacing:-12.423600px;}
.ws18d{word-spacing:-12.420000px;}
.wse2{word-spacing:-12.364800px;}
.ws147{word-spacing:-12.309600px;}
.ws13d{word-spacing:-12.254400px;}
.ws1a3{word-spacing:-12.199200px;}
.ws1f2{word-spacing:-12.192000px;}
.ws19f{word-spacing:-12.144000px;}
.ws18f{word-spacing:-12.096000px;}
.ws7d{word-spacing:-12.088800px;}
.ws1a0{word-spacing:-12.033600px;}
.ws136{word-spacing:-11.952000px;}
.ws173{word-spacing:-11.923200px;}
.ws1e3{word-spacing:-11.868000px;}
.ws84{word-spacing:-11.822400px;}
.ws1ae{word-spacing:-11.812800px;}
.ws1e7{word-spacing:-11.808000px;}
.ws163{word-spacing:-11.757600px;}
.ws1a5{word-spacing:-11.702400px;}
.ws251{word-spacing:-11.647200px;}
.ws15e{word-spacing:-11.536800px;}
.ws18e{word-spacing:-11.520000px;}
.ws151{word-spacing:-11.481600px;}
.ws20b{word-spacing:-11.426400px;}
.ws11a{word-spacing:-11.371200px;}
.ws175{word-spacing:-11.316000px;}
.ws21c{word-spacing:-11.302800px;}
.ws192{word-spacing:-11.280000px;}
.ws15f{word-spacing:-11.260800px;}
.ws183{word-spacing:-11.205600px;}
.ws210{word-spacing:-11.150400px;}
.ws144{word-spacing:-11.095200px;}
.wsa{word-spacing:-11.048400px;}
.ws9f{word-spacing:-11.040000px;}
.ws1e0{word-spacing:-11.019600px;}
.ws146{word-spacing:-10.984800px;}
.ws201{word-spacing:-10.929600px;}
.ws1c9{word-spacing:-10.874400px;}
.ws99{word-spacing:-10.819200px;}
.ws198{word-spacing:-10.800000px;}
.ws182{word-spacing:-10.764000px;}
.ws17a{word-spacing:-10.653600px;}
.ws252{word-spacing:-10.488000px;}
.ws1b6{word-spacing:-10.432800px;}
.ws216{word-spacing:-10.368000px;}
.wsda{word-spacing:-10.322400px;}
.ws243{word-spacing:-10.212000px;}
.ws17c{word-spacing:-10.156800px;}
.ws143{word-spacing:-10.101600px;}
.ws23e{word-spacing:-10.046400px;}
.ws1c3{word-spacing:-9.991200px;}
.ws20f{word-spacing:-9.936000px;}
.ws23d{word-spacing:-9.880800px;}
.ws145{word-spacing:-9.770400px;}
.ws245{word-spacing:-9.715200px;}
.ws1e2{word-spacing:-9.660000px;}
.ws1a4{word-spacing:-9.604800px;}
.ws22d{word-spacing:-9.549600px;}
.ws179{word-spacing:-9.494400px;}
.ws209{word-spacing:-9.439200px;}
.ws11f{word-spacing:-9.384000px;}
.ws214{word-spacing:-9.328800px;}
.ws176{word-spacing:-9.218400px;}
.ws20a{word-spacing:-9.163200px;}
.ws1b5{word-spacing:-8.997600px;}
.ws218{word-spacing:-8.942400px;}
.ws86{word-spacing:-8.887200px;}
.ws1f9{word-spacing:-8.832000px;}
.ws1c4{word-spacing:-8.776800px;}
.wsfc{word-spacing:-8.721600px;}
.ws17d{word-spacing:-8.666400px;}
.ws249{word-spacing:-8.611200px;}
.ws211{word-spacing:-8.556000px;}
.ws25b{word-spacing:-8.500800px;}
.ws153{word-spacing:-8.400000px;}
.ws82{word-spacing:-8.335200px;}
.ws20e{word-spacing:-8.280000px;}
.ws193{word-spacing:-8.224800px;}
.ws258{word-spacing:-8.114400px;}
.ws1b7{word-spacing:-8.004000px;}
.ws16e{word-spacing:-7.783200px;}
.ws242{word-spacing:-7.672800px;}
.ws17b{word-spacing:-7.562400px;}
.ws174{word-spacing:-7.452000px;}
.ws1e4{word-spacing:-7.396800px;}
.ws259{word-spacing:-7.286400px;}
.wsdb{word-spacing:-6.955200px;}
.ws1fd{word-spacing:-6.844800px;}
.ws96{word-spacing:-6.789600px;}
.ws219{word-spacing:-6.679200px;}
.ws1f6{word-spacing:-6.624000px;}
.ws1f8{word-spacing:-6.513600px;}
.ws119{word-spacing:-6.348000px;}
.ws1f5{word-spacing:-6.237600px;}
.ws238{word-spacing:-6.072000px;}
.ws215{word-spacing:-6.016800px;}
.ws255{word-spacing:-5.906400px;}
.ws1da{word-spacing:-5.796000px;}
.ws1c6{word-spacing:-5.740800px;}
.ws1d4{word-spacing:-5.685600px;}
.ws23c{word-spacing:-5.575200px;}
.ws16f{word-spacing:-5.299200px;}
.ws1af{word-spacing:-4.968000px;}
.ws24b{word-spacing:-4.526400px;}
.ws23b{word-spacing:-4.305600px;}
.ws246{word-spacing:-4.140000px;}
.ws248{word-spacing:-3.643200px;}
.ws24c{word-spacing:-3.532800px;}
.ws13c{word-spacing:-3.477600px;}
.ws185{word-spacing:-3.312000px;}
.ws180{word-spacing:-2.884800px;}
.ws21b{word-spacing:-2.152800px;}
.ws247{word-spacing:-2.042400px;}
.ws241{word-spacing:-1.987200px;}
.ws187{word-spacing:-1.490400px;}
.ws8{word-spacing:-1.227600px;}
.ws240{word-spacing:-0.828000px;}
.ws25f{word-spacing:-0.567000px;}
.ws13a{word-spacing:-0.330000px;}
.ws0{word-spacing:0.000000px;}
.ws25d{word-spacing:0.441600px;}
.ws184{word-spacing:0.993600px;}
.ws27{word-spacing:1.214400px;}
.ws21a{word-spacing:1.876800px;}
.ws11{word-spacing:2.142000px;}
.wsc{word-spacing:2.399400px;}
.wsf{word-spacing:2.805000px;}
.ws7{word-spacing:2.957400px;}
.ws10{word-spacing:3.060000px;}
.ws254{word-spacing:3.091200px;}
.ws9{word-spacing:3.236400px;}
.wsb{word-spacing:3.850200px;}
.ws24f{word-spacing:4.250400px;}
.ws2{word-spacing:5.133600px;}
.wse{word-spacing:5.763000px;}
.ws12{word-spacing:5.814000px;}
.ws3{word-spacing:5.859000px;}
.ws6{word-spacing:6.472800px;}
.ws24a{word-spacing:7.562400px;}
.ws23f{word-spacing:8.532000px;}
.wsd{word-spacing:9.486000px;}
.ws21{word-spacing:9.494400px;}
.ws4{word-spacing:9.541800px;}
.ws186{word-spacing:9.660000px;}
.ws5{word-spacing:9.709200px;}
.ws244{word-spacing:9.882000px;}
.ws253{word-spacing:10.206000px;}
.ws150{word-spacing:10.267200px;}
.ws24d{word-spacing:12.204000px;}
.ws237{word-spacing:12.474000px;}
.ws1{word-spacing:16.851600px;}
.ws23a{word-spacing:18.576000px;}
.ws25c{word-spacing:19.494000px;}
.ws250{word-spacing:20.700000px;}
.ws25e{word-spacing:20.898000px;}
.ws1c5{word-spacing:22.051800px;}
.ws25a{word-spacing:30.672000px;}
.ws161{word-spacing:35.437800px;}
.ws257{word-spacing:35.824800px;}
.ws109{word-spacing:62.448000px;}
._2{margin-left:-17.488800px;}
._3c{margin-left:-7.336200px;}
._39{margin-left:-6.272400px;}
._25{margin-left:-5.188800px;}
._1{margin-left:-4.185000px;}
._26{margin-left:-3.183000px;}
._3{margin-left:-2.176200px;}
._0{margin-left:-1.116000px;}
._5{width:1.350000px;}
._4{width:2.636400px;}
._10{width:3.890400px;}
._35{width:5.583600px;}
._3b{width:7.024800px;}
._27{width:8.074200px;}
._1f{width:9.218400px;}
._22{width:10.314000px;}
._1b{width:11.757600px;}
._d{width:13.473600px;}
._1c{width:14.706600px;}
._1e{width:16.342200px;}
._21{width:17.565600px;}
._1d{width:18.583800px;}
._32{width:19.651200px;}
._2c{width:20.701200px;}
._29{width:21.894600px;}
._18{width:23.184000px;}
._17{width:25.060800px;}
._43{width:26.172000px;}
._23{width:27.648000px;}
._41{width:28.948200px;}
._34{width:30.020400px;}
._19{width:31.288200px;}
._16{width:32.377200px;}
._1a{width:34.279200px;}
._f{width:35.824800px;}
._c{width:37.701600px;}
._b{width:39.578400px;}
._14{width:41.920200px;}
._13{width:43.797000px;}
._9{width:46.368000px;}
._8{width:48.244800px;}
._12{width:52.463400px;}
._15{width:55.255200px;}
._7{width:56.911200px;}
._3f{width:61.323000px;}
._40{width:64.368000px;}
._30{width:66.102000px;}
._42{width:67.284000px;}
._e{width:68.448000px;}
._a{width:70.435200px;}
._37{width:72.306000px;}
._3d{width:73.358400px;}
._11{width:74.488200px;}
._38{width:76.032000px;}
._3e{width:77.084400px;}
._6{width:79.488000px;}
._36{width:82.404000px;}
._3a{width:83.646000px;}
._33{width:84.834000px;}
._2f{width:86.616000px;}
._2d{width:87.984000px;}
._2e{width:89.100000px;}
._31{width:90.342000px;}
._2a{width:93.888000px;}
._24{width:95.136600px;}
._28{width:96.540600px;}
._20{width:97.578000px;}
._2b{width:98.862600px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:45.996000px;}
.fsb{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fse{font-size:52.200000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:55.200000px;}
.fs0{font-size:55.800000px;}
.fs1{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:69.000000px;}
.fs7{font-size:78.000000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:93.000000px;}
.fsc{font-size:105.000000px;}
.fsd{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y21a{bottom:3.402000px;}
.y219{bottom:19.908000px;}
.y218{bottom:32.733750px;}
.y201{bottom:36.135750px;}
.y200{bottom:52.641750px;}
.y3{bottom:84.330750px;}
.yb{bottom:84.339150px;}
.y29{bottom:84.347550px;}
.ya{bottom:103.087950px;}
.y94{bottom:117.246000px;}
.yd0{bottom:117.571500px;}
.yf1{bottom:119.260500px;}
.yb3{bottom:119.346000px;}
.y177{bottom:119.671500px;}
.yf9{bottom:121.275000px;}
.y161{bottom:121.360500px;}
.y9{bottom:121.836750px;}
.y28{bottom:121.845150px;}
.y5f{bottom:122.694000px;}
.y137{bottom:125.821500px;}
.y17b{bottom:126.846000px;}
.y1a9{bottom:128.860500px;}
.y1fe{bottom:128.946000px;}
.y41{bottom:132.846000px;}
.yb4{bottom:133.746000px;}
.y117{bottom:133.840500px;}
.y93{bottom:136.446000px;}
.ycf{bottom:136.771500px;}
.yf0{bottom:138.460500px;}
.yb2{bottom:138.546000px;}
.y176{bottom:138.871500px;}
.yf8{bottom:140.475000px;}
.y160{bottom:140.560500px;}
.y8{bottom:140.585550px;}
.y27{bottom:140.593950px;}
.y5e{bottom:141.894000px;}
.y136{bottom:145.021500px;}
.y152{bottom:146.046000px;}
.y7e{bottom:146.890500px;}
.y1fc{bottom:147.339150px;}
.y1a8{bottom:148.060500px;}
.y1be{bottom:148.146000px;}
.yf2{bottom:150.246000px;}
.y40{bottom:152.046000px;}
.y116{bottom:153.040500px;}
.y92{bottom:155.646000px;}
.yce{bottom:155.971500px;}
.yef{bottom:157.660500px;}
.yb1{bottom:157.746000px;}
.y7{bottom:159.334350px;}
.y26{bottom:159.342750px;}
.yf7{bottom:159.675000px;}
.y15f{bottom:159.760500px;}
.y135{bottom:164.221500px;}
.y151{bottom:165.246000px;}
.y7d{bottom:166.090500px;}
.y1fb{bottom:166.539150px;}
.yfc{bottom:166.746000px;}
.y1a7{bottom:167.260500px;}
.y1bd{bottom:167.346000px;}
.y3f{bottom:171.246000px;}
.y115{bottom:172.240500px;}
.y195{bottom:173.709000px;}
.y91{bottom:174.846000px;}
.ycd{bottom:175.171500px;}
.yee{bottom:176.860500px;}
.yb0{bottom:176.946000px;}
.y175{bottom:177.271500px;}
.y6{bottom:178.083150px;}
.y25{bottom:178.091550px;}
.yf6{bottom:178.875000px;}
.y15e{bottom:178.960500px;}
.y5d{bottom:180.294000px;}
.yfb{bottom:183.246000px;}
.y134{bottom:183.421500px;}
.y150{bottom:184.446000px;}
.y7c{bottom:185.290500px;}
.y1fa{bottom:185.739150px;}
.y1a6{bottom:186.460500px;}
.y1bc{bottom:186.546000px;}
.y3e{bottom:190.446000px;}
.y114{bottom:191.440500px;}
.y194{bottom:192.909000px;}
.y90{bottom:194.046000px;}
.ycc{bottom:194.371500px;}
.yed{bottom:196.060500px;}
.yaf{bottom:196.146000px;}
.y5{bottom:196.831950px;}
.y24{bottom:196.840350px;}
.yf5{bottom:198.075000px;}
.y15d{bottom:198.160500px;}
.y5c{bottom:199.494000px;}
.y1ae{bottom:199.746000px;}
.y133{bottom:202.621500px;}
.y14f{bottom:203.646000px;}
.y7b{bottom:204.490500px;}
.y1f9{bottom:204.939150px;}
.y1a5{bottom:205.660500px;}
.y1bb{bottom:205.746000px;}
.y16b{bottom:207.126000px;}
.y113{bottom:210.640500px;}
.y193{bottom:212.109000px;}
.y1d0{bottom:212.757000px;}
.y8f{bottom:213.246000px;}
.ycb{bottom:213.571500px;}
.yec{bottom:215.260500px;}
.yae{bottom:215.346000px;}
.y4{bottom:215.580750px;}
.y23{bottom:215.589150px;}
.yf4{bottom:217.275000px;}
.y15c{bottom:217.360500px;}
.y5b{bottom:218.694000px;}
.y132{bottom:221.821500px;}
.y14e{bottom:222.846000px;}
.y7a{bottom:223.690500px;}
.y1f8{bottom:224.139150px;}
.y17a{bottom:224.860500px;}
.y1ba{bottom:224.946000px;}
.y16a{bottom:226.326000px;}
.y3d{bottom:228.846000px;}
.y112{bottom:229.840500px;}
.y192{bottom:231.309000px;}
.y1cf{bottom:231.957000px;}
.y8e{bottom:232.446000px;}
.yca{bottom:232.771500px;}
.y172{bottom:233.359500px;}
.y22{bottom:234.337950px;}
.yeb{bottom:234.460500px;}
.yad{bottom:234.546000px;}
.y217{bottom:235.202100px;}
.y15b{bottom:236.560500px;}
.y5a{bottom:237.894000px;}
.y131{bottom:241.021500px;}
.y14d{bottom:242.046000px;}
.y79{bottom:242.890500px;}
.y225{bottom:243.302100px;}
.y1f7{bottom:243.339150px;}
.y179{bottom:244.060500px;}
.y1b9{bottom:244.146000px;}
.y169{bottom:245.526000px;}
.y111{bottom:249.040500px;}
.y216{bottom:250.196550px;}
.y191{bottom:250.509000px;}
.y1ce{bottom:251.157000px;}
.y8d{bottom:251.646000px;}
.yc9{bottom:251.971500px;}
.y21{bottom:253.086750px;}
.yea{bottom:253.660500px;}
.yac{bottom:253.746000px;}
.yf3{bottom:255.675000px;}
.y15a{bottom:255.760500px;}
.y59{bottom:257.094000px;}
.y224{bottom:258.296550px;}
.y130{bottom:260.221500px;}
.y14c{bottom:261.246000px;}
.y78{bottom:262.090500px;}
.y1f6{bottom:262.539150px;}
.y178{bottom:263.260500px;}
.y1b8{bottom:263.346000px;}
.y215{bottom:265.191000px;}
.y110{bottom:268.240500px;}
.y186{bottom:268.831500px;}
.y190{bottom:269.709000px;}
.y1cd{bottom:270.357000px;}
.y8c{bottom:270.846000px;}
.yc8{bottom:271.171500px;}
.ye9{bottom:272.860500px;}
.yab{bottom:272.946000px;}
.y223{bottom:273.291000px;}
.y159{bottom:274.960500px;}
.y58{bottom:276.294000px;}
.y12f{bottom:279.421500px;}
.y214{bottom:280.185450px;}
.y14b{bottom:280.446000px;}
.y3c{bottom:280.998000px;}
.y1f5{bottom:281.739150px;}
.y1a4{bottom:282.460500px;}
.y1fd{bottom:282.546000px;}
.y10f{bottom:287.440500px;}
.y185{bottom:288.031500px;}
.y222{bottom:288.285450px;}
.y18f{bottom:288.909000px;}
.y1cc{bottom:289.557000px;}
.y8b{bottom:290.046000px;}
.yc7{bottom:290.371500px;}
.y20{bottom:290.584350px;}
.ye8{bottom:292.060500px;}
.yaa{bottom:292.146000px;}
.y158{bottom:294.160500px;}
.y12e{bottom:298.621500px;}
.y14a{bottom:299.646000px;}
.y3b{bottom:300.198000px;}
.y77{bottom:300.490500px;}
.y1f4{bottom:300.939150px;}
.y1b5{bottom:301.660500px;}
.y1b7{bottom:301.746000px;}
.y10e{bottom:306.640500px;}
.y184{bottom:307.231500px;}
.y18e{bottom:308.109000px;}
.y1cb{bottom:308.757000px;}
.y8a{bottom:309.246000px;}
.y1f{bottom:309.333150px;}
.yc6{bottom:309.571500px;}
.ye7{bottom:311.260500px;}
.ya9{bottom:311.346000px;}
.y57{bottom:314.694000px;}
.y12d{bottom:317.821500px;}
.y149{bottom:318.846000px;}
.y3a{bottom:319.398000px;}
.y1b4{bottom:320.860500px;}
.y1b6{bottom:320.946000px;}
.y221{bottom:321.279450px;}
.y10d{bottom:325.840500px;}
.y183{bottom:326.431500px;}
.y18d{bottom:327.309000px;}
.y1ca{bottom:327.957000px;}
.y1e{bottom:328.077150px;}
.y89{bottom:328.446000px;}
.yc5{bottom:328.771500px;}
.ye6{bottom:330.460500px;}
.ya8{bottom:330.546000px;}
.y157{bottom:332.560500px;}
.y56{bottom:333.894000px;}
.y213{bottom:334.781700px;}
.y12c{bottom:337.021500px;}
.y220{bottom:337.033950px;}
.y118{bottom:337.599000px;}
.y148{bottom:338.046000px;}
.y39{bottom:338.598000px;}
.y1f3{bottom:339.339150px;}
.y1b3{bottom:340.060500px;}
.y10c{bottom:345.040500px;}
.y1d{bottom:345.327900px;}
.y182{bottom:345.631500px;}
.y18c{bottom:346.509000px;}
.y1c9{bottom:347.157000px;}
.y88{bottom:347.646000px;}
.yc4{bottom:347.971500px;}
.ye5{bottom:349.660500px;}
.ya7{bottom:349.746000px;}
.y212{bottom:352.783950px;}
.y55{bottom:353.094000px;}
.y76{bottom:355.990500px;}
.y12b{bottom:356.221500px;}
.y147{bottom:357.246000px;}
.y38{bottom:357.798000px;}
.y1b2{bottom:359.260500px;}
.y1d6{bottom:361.605000px;}
.y1c{bottom:362.578650px;}
.y10b{bottom:364.240500px;}
.y181{bottom:364.831500px;}
.y18b{bottom:365.709000px;}
.y1a3{bottom:365.821500px;}
.y1c8{bottom:366.357000px;}
.y87{bottom:366.846000px;}
.yc3{bottom:367.171500px;}
.ye4{bottom:368.860500px;}
.ya6{bottom:368.946000px;}
.y211{bottom:370.796700px;}
.y54{bottom:372.294000px;}
.y75{bottom:375.190500px;}
.y12a{bottom:375.421500px;}
.y1f2{bottom:375.724650px;}
.y146{bottom:376.446000px;}
.y1b1{bottom:378.460500px;}
.y1b{bottom:379.829400px;}
.y10a{bottom:383.440500px;}
.y180{bottom:384.031500px;}
.y18a{bottom:384.909000px;}
.y1a2{bottom:385.021500px;}
.y1c7{bottom:385.557000px;}
.y86{bottom:386.046000px;}
.yc2{bottom:386.371500px;}
.ye3{bottom:388.060500px;}
.ya5{bottom:388.146000px;}
.y1ff{bottom:389.527500px;}
.y53{bottom:391.494000px;}
.y74{bottom:394.390500px;}
.y129{bottom:394.621500px;}
.y1f1{bottom:394.924650px;}
.y145{bottom:395.646000px;}
.y37{bottom:396.198000px;}
.y1a{bottom:397.080150px;}
.y1d3{bottom:397.660500px;}
.y109{bottom:402.640500px;}
.y17f{bottom:403.231500px;}
.y189{bottom:404.109000px;}
.y1a1{bottom:404.221500px;}
.y1c6{bottom:404.757000px;}
.y85{bottom:405.246000px;}
.yc1{bottom:405.571500px;}
.ye2{bottom:407.260500px;}
.ya4{bottom:407.346000px;}
.y73{bottom:413.590500px;}
.y128{bottom:413.821500px;}
.y1f0{bottom:414.124650px;}
.y19{bottom:414.330900px;}
.y144{bottom:414.846000px;}
.y36{bottom:415.398000px;}
.y1bf{bottom:416.779500px;}
.y1b0{bottom:416.860500px;}
.y1ac{bottom:419.235000px;}
.y108{bottom:421.840500px;}
.y198{bottom:422.431500px;}
.y188{bottom:423.309000px;}
.y1a0{bottom:423.421500px;}
.y1c5{bottom:423.957000px;}
.y84{bottom:424.446000px;}
.yc0{bottom:424.771500px;}
.ye1{bottom:426.460500px;}
.ya3{bottom:426.546000px;}
.y52{bottom:429.894000px;}
.y18{bottom:431.581650px;}
.y72{bottom:432.790500px;}
.y127{bottom:433.021500px;}
.y1ef{bottom:433.324650px;}
.y143{bottom:434.046000px;}
.y35{bottom:434.598000px;}
.y1d2{bottom:436.060500px;}
.y1ad{bottom:436.875000px;}
.y107{bottom:441.040500px;}
.y197{bottom:441.631500px;}
.y187{bottom:442.509000px;}
.y19f{bottom:442.621500px;}
.y1c4{bottom:443.157000px;}
.y83{bottom:443.646000px;}
.ybf{bottom:443.971500px;}
.y17d{bottom:445.225500px;}
.ye0{bottom:445.660500px;}
.ya2{bottom:445.746000px;}
.y17{bottom:448.832400px;}
.y51{bottom:449.094000px;}
.y174{bottom:449.176500px;}
.y71{bottom:451.990500px;}
.y126{bottom:452.221500px;}
.y1ee{bottom:452.524650px;}
.y16e{bottom:453.246000px;}
.y34{bottom:453.798000px;}
.y1d1{bottom:455.260500px;}
.y106{bottom:460.240500px;}
.y196{bottom:460.831500px;}
.y19e{bottom:461.821500px;}
.y1c3{bottom:462.357000px;}
.y82{bottom:462.846000px;}
.ybe{bottom:463.171500px;}
.y17c{bottom:464.425500px;}
.ydf{bottom:464.860500px;}
.ya1{bottom:464.946000px;}
.y16{bottom:466.083150px;}
.y1ab{bottom:468.064500px;}
.y50{bottom:468.294000px;}
.y70{bottom:471.190500px;}
.y125{bottom:471.421500px;}
.y1ed{bottom:471.724650px;}
.y142{bottom:472.446000px;}
.y33{bottom:472.998000px;}
.y167{bottom:474.460500px;}
.y105{bottom:479.440500px;}
.y1d5{bottom:480.031500px;}
.y19d{bottom:481.021500px;}
.y1c2{bottom:481.557000px;}
.y64{bottom:482.046000px;}
.ybd{bottom:482.371500px;}
.y168{bottom:484.023000px;}
.yde{bottom:484.060500px;}
.ya0{bottom:484.146000px;}
.y4f{bottom:487.494000px;}
.y210{bottom:489.134100px;}
.y6f{bottom:490.390500px;}
.y124{bottom:490.621500px;}
.y1ec{bottom:490.924650px;}
.y141{bottom:491.646000px;}
.y32{bottom:492.198000px;}
.y166{bottom:493.660500px;}
.y104{bottom:498.640500px;}
.y1d4{bottom:499.231500px;}
.y19c{bottom:500.221500px;}
.y1c1{bottom:500.757000px;}
.y81{bottom:501.246000px;}
.ybc{bottom:501.571500px;}
.ydd{bottom:503.260500px;}
.y9f{bottom:503.346000px;}
.y20f{bottom:504.128550px;}
.y6e{bottom:509.590500px;}
.y123{bottom:509.821500px;}
.y1eb{bottom:510.124650px;}
.y140{bottom:510.846000px;}
.y165{bottom:512.860500px;}
.y20e{bottom:519.123000px;}
.y19b{bottom:519.421500px;}
.y63{bottom:520.446000px;}
.ybb{bottom:520.771500px;}
.ydc{bottom:522.460500px;}
.y9e{bottom:522.546000px;}
.y4e{bottom:525.894000px;}
.y6d{bottom:528.790500px;}
.y122{bottom:529.021500px;}
.y1ea{bottom:529.324650px;}
.y13f{bottom:530.046000px;}
.y31{bottom:530.598000px;}
.y164{bottom:532.060500px;}
.y20d{bottom:534.117450px;}
.y103{bottom:537.040500px;}
.y19a{bottom:538.621500px;}
.y15{bottom:539.586600px;}
.y80{bottom:539.646000px;}
.yba{bottom:539.971500px;}
.ydb{bottom:541.660500px;}
.y9d{bottom:541.746000px;}
.y6c{bottom:547.990500px;}
.y121{bottom:548.221500px;}
.y1e9{bottom:548.524650px;}
.y13e{bottom:549.246000px;}
.y30{bottom:549.798000px;}
.y163{bottom:551.260500px;}
.y14{bottom:558.335400px;}
.y62{bottom:558.846000px;}
.yb9{bottom:559.171500px;}
.yda{bottom:560.860500px;}
.y9c{bottom:560.946000px;}
.y20c{bottom:567.116100px;}
.y6b{bottom:567.190500px;}
.y120{bottom:567.421500px;}
.y1e8{bottom:567.724650px;}
.y13d{bottom:568.446000px;}
.y2f{bottom:568.998000px;}
.y162{bottom:570.460500px;}
.y102{bottom:575.440500px;}
.y13{bottom:577.084200px;}
.y4d{bottom:578.046000px;}
.yb8{bottom:578.371500px;}
.yd9{bottom:580.060500px;}
.y9b{bottom:580.146000px;}
.y20b{bottom:582.866100px;}
.y1af{bottom:583.675500px;}
.y11f{bottom:586.621500px;}
.y1e7{bottom:586.924650px;}
.y13c{bottom:587.646000px;}
.y2e{bottom:588.198000px;}
.y1d9{bottom:589.660500px;}
.y12{bottom:595.833000px;}
.y4c{bottom:597.246000px;}
.yb7{bottom:597.571500px;}
.yd8{bottom:599.260500px;}
.y9a{bottom:599.346000px;}
.y20a{bottom:600.866100px;}
.y11e{bottom:605.821500px;}
.y1e6{bottom:606.124650px;}
.y13b{bottom:606.846000px;}
.y2d{bottom:607.398000px;}
.y1d8{bottom:608.860500px;}
.y4b{bottom:616.446000px;}
.yb6{bottom:616.771500px;}
.yd7{bottom:618.460500px;}
.y99{bottom:618.546000px;}
.y6a{bottom:618.645000px;}
.y138{bottom:621.763500px;}
.y11d{bottom:625.021500px;}
.y1e5{bottom:625.324650px;}
.y13a{bottom:626.046000px;}
.y2c{bottom:626.596500px;}
.y101{bottom:626.895000px;}
.y1d7{bottom:628.060500px;}
.y4a{bottom:635.646000px;}
.yd6{bottom:637.660500px;}
.y98{bottom:637.746000px;}
.y69{bottom:637.845000px;}
.y11c{bottom:644.221500px;}
.y1e4{bottom:644.524650px;}
.y139{bottom:645.246000px;}
.y2b{bottom:645.796500px;}
.y100{bottom:646.095000px;}
.y61{bottom:654.846000px;}
.yd5{bottom:656.860500px;}
.y97{bottom:656.946000px;}
.y68{bottom:657.045000px;}
.y1e3{bottom:663.724650px;}
.y156{bottom:664.446000px;}
.yff{bottom:665.295000px;}
.y49{bottom:674.046000px;}
.y11a{bottom:676.048500px;}
.yd4{bottom:676.060500px;}
.y96{bottom:676.146000px;}
.y1e2{bottom:682.924650px;}
.y155{bottom:683.646000px;}
.yfe{bottom:684.495000px;}
.y48{bottom:693.246000px;}
.yd3{bottom:695.260500px;}
.yb5{bottom:695.346000px;}
.y16d{bottom:702.846000px;}
.y21f{bottom:702.990300px;}
.y66{bottom:703.927500px;}
.y67{bottom:706.627500px;}
.y1e1{bottom:711.724650px;}
.y47{bottom:712.446000px;}
.yfa{bottom:714.460500px;}
.y95{bottom:714.546000px;}
.y17e{bottom:717.592500px;}
.y21e{bottom:717.984750px;}
.y209{bottom:718.740300px;}
.y119{bottom:721.213500px;}
.y16c{bottom:722.046000px;}
.y65{bottom:723.127500px;}
.y1e0{bottom:730.924650px;}
.y46{bottom:731.646000px;}
.y173{bottom:731.872500px;}
.y21d{bottom:732.979200px;}
.yd2{bottom:733.660500px;}
.y208{bottom:733.734750px;}
.yd1{bottom:733.746000px;}
.y2a{bottom:734.077500px;}
.y199{bottom:736.881000px;}
.y1aa{bottom:739.677000px;}
.y171{bottom:741.246000px;}
.y21c{bottom:747.973650px;}
.y207{bottom:748.729200px;}
.y1df{bottom:750.124650px;}
.y45{bottom:750.846000px;}
.yfd{bottom:752.860500px;}
.y1c0{bottom:756.295500px;}
.y170{bottom:760.446000px;}
.y206{bottom:763.723650px;}
.y1de{bottom:769.324650px;}
.y44{bottom:770.046000px;}
.y154{bottom:772.060500px;}
.y16f{bottom:779.646000px;}
.y21b{bottom:780.967800px;}
.yf{bottom:781.272750px;}
.y1dd{bottom:788.524650px;}
.y60{bottom:789.246000px;}
.y205{bottom:796.722300px;}
.ye{bottom:800.775750px;}
.y1dc{bottom:807.724650px;}
.y43{bottom:808.446000px;}
.y153{bottom:808.806000px;}
.y204{bottom:812.472300px;}
.y11{bottom:819.981600px;}
.y2{bottom:824.000550px;}
.yd{bottom:826.653600px;}
.y1db{bottom:826.924650px;}
.y42{bottom:827.646000px;}
.y203{bottom:830.472300px;}
.y10{bottom:838.730400px;}
.y1{bottom:840.740550px;}
.y1da{bottom:846.124650px;}
.yc{bottom:855.153600px;}
.y202{bottom:877.538250px;}
.y7f{bottom:884.409000px;}
.y11b{bottom:885.435000px;}
.h13{height:34.128000px;}
.h1e{height:34.130250px;}
.h1b{height:35.548200px;}
.h1c{height:36.666000px;}
.h1d{height:37.479600px;}
.h18{height:38.750400px;}
.h16{height:39.081600px;}
.hf{height:39.247200px;}
.h7{height:40.120200px;}
.he{height:40.958400px;}
.h8{height:41.157000px;}
.h11{height:41.202000px;}
.ha{height:41.952000px;}
.hc{height:42.117600px;}
.h19{height:43.659000px;}
.h3{height:45.030600px;}
.h4{height:45.297000px;}
.hb{height:46.423200px;}
.h5{height:46.728000px;}
.h14{height:46.992000px;}
.h10{height:52.440000px;}
.h17{height:55.557156px;}
.hd{height:59.280000px;}
.h12{height:61.536636px;}
.h6{height:66.867000px;}
.h9{height:68.400000px;}
.h15{height:79.800000px;}
.h1a{height:93.702000px;}
.h2{height:956.692500px;}
.h0{height:956.880000px;}
.h1{height:957.000000px;}
.w3{width:415.942050px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.w2{width:629.292000px;}
.x0{left:0.000000px;}
.x4f{left:3.433500px;}
.x2{left:80.787000px;}
.x1{left:85.039350px;}
.x39{left:102.046500px;}
.x14{left:108.385950px;}
.x35{left:110.551620px;}
.x4c{left:113.452950px;}
.x16{left:114.802500px;}
.x34{left:117.643500px;}
.x40{left:123.307500px;}
.x47{left:127.002180px;}
.x37{left:136.063500px;}
.x32{left:140.895000px;}
.x3a{left:142.402500px;}
.x42{left:144.567000px;}
.x31{left:155.826000px;}
.x3f{left:157.048320px;}
.x3c{left:162.431400px;}
.x2c{left:165.778500px;}
.x30{left:175.732500px;}
.x43{left:178.582500px;}
.xa{left:185.686500px;}
.x38{left:192.582000px;}
.x44{left:197.262000px;}
.x3b{left:203.316000px;}
.x4d{left:213.373500px;}
.x2f{left:215.548500px;}
.x6{left:230.479500px;}
.x4e{left:233.858250px;}
.x2e{left:235.456500px;}
.x33{left:245.958000px;}
.x13{left:260.341500px;}
.x10{left:265.318500px;}
.x2a{left:270.295500px;}
.x21{left:274.449000px;}
.xf{left:280.248000px;}
.x48{left:282.394500px;}
.xe{left:285.225000px;}
.x36{left:297.637500px;}
.x24{left:304.311000px;}
.x8{left:315.087000px;}
.x5{left:320.064000px;}
.x28{left:325.041000px;}
.x41{left:328.041000px;}
.x15{left:330.018000px;}
.xd{left:334.995000px;}
.x3e{left:341.859000px;}
.x49{left:351.204000px;}
.x3d{left:352.960500px;}
.x20{left:354.079500px;}
.x19{left:364.033500px;}
.x46{left:368.101500px;}
.x12{left:374.811000px;}
.x9{left:379.788000px;}
.x45{left:382.456650px;}
.x1f{left:388.918500px;}
.x11{left:394.717500px;}
.x26{left:398.872500px;}
.x1c{left:408.826500px;}
.x1a{left:413.803500px;}
.x1b{left:418.780500px;}
.x2b{left:424.579500px;}
.xb{left:429.556500px;}
.x3{left:439.510500px;}
.x4a{left:445.519500px;}
.x27{left:453.618000px;}
.x4b{left:460.356000px;}
.x1e{left:463.572000px;}
.x1d{left:468.549000px;}
.x22{left:473.526000px;}
.x23{left:483.480000px;}
.x29{left:496.738500px;}
.x2d{left:499.558500px;}
.xc{left:503.016000px;}
.x7{left:504.720000px;}
.x4{left:507.642000px;}
.x25{left:531.078000px;}
.x17{left:533.232000px;}
.x18{left:535.830000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.314667pt;}
.ls1e{letter-spacing:-0.611733pt;}
.lse{letter-spacing:-0.113067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.012267pt;}
.ls13{letter-spacing:0.098133pt;}
.ls14{letter-spacing:0.146667pt;}
.ls7{letter-spacing:0.147200pt;}
.ls26{letter-spacing:0.196267pt;}
.ls1f{letter-spacing:0.220267pt;}
.ls25{letter-spacing:0.245333pt;}
.ls12{letter-spacing:0.469333pt;}
.lsb{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.588800pt;}
.ls28{letter-spacing:0.696000pt;}
.ls9{letter-spacing:0.880533pt;}
.ls22{letter-spacing:0.961600pt;}
.ls5{letter-spacing:1.240000pt;}
.ls29{letter-spacing:1.440000pt;}
.ls3{letter-spacing:1.466667pt;}
.ls27{letter-spacing:1.680000pt;}
.ls17{letter-spacing:2.103467pt;}
.ls1d{letter-spacing:2.239467pt;}
.ls1{letter-spacing:2.480000pt;}
.ls11{letter-spacing:2.654133pt;}
.lsa{letter-spacing:2.657216pt;}
.ls1a{letter-spacing:2.657611pt;}
.ls21{letter-spacing:2.659307pt;}
.lsd{letter-spacing:2.659467pt;}
.ls19{letter-spacing:2.661035pt;}
.ls6{letter-spacing:2.747733pt;}
.ls0{letter-spacing:2.800000pt;}
.ls4{letter-spacing:3.306667pt;}
.ls1c{letter-spacing:6.784000pt;}
.ls1b{letter-spacing:12.755264pt;}
.ls20{letter-spacing:13.492267pt;}
.ls15{letter-spacing:14.065216pt;}
.ls18{letter-spacing:14.136800pt;}
.ls23{letter-spacing:14.385216pt;}
.ls10{letter-spacing:15.270549pt;}
.ls24{letter-spacing:15.402368pt;}
.lsf{letter-spacing:18.204277pt;}
.lsc{letter-spacing:18.824800pt;}
.ws13{word-spacing:-80.000000pt;}
.ws15d{word-spacing:-72.613333pt;}
.ws1b8{word-spacing:-72.240000pt;}
.ws26{word-spacing:-63.040533pt;}
.ws170{word-spacing:-61.333333pt;}
.ws25{word-spacing:-60.240000pt;}
.ws14f{word-spacing:-59.920000pt;}
.ws17e{word-spacing:-59.840000pt;}
.ws235{word-spacing:-59.680000pt;}
.wsd0{word-spacing:-59.600000pt;}
.ws1aa{word-spacing:-59.520000pt;}
.wsf4{word-spacing:-58.666667pt;}
.ws207{word-spacing:-52.401600pt;}
.ws1b{word-spacing:-51.930667pt;}
.ws1e{word-spacing:-51.653333pt;}
.ws1f{word-spacing:-49.213867pt;}
.ws16{word-spacing:-49.066667pt;}
.ws232{word-spacing:-47.962667pt;}
.ws234{word-spacing:-47.778667pt;}
.ws36{word-spacing:-47.717333pt;}
.wsa4{word-spacing:-47.656000pt;}
.wsb4{word-spacing:-47.533333pt;}
.ws122{word-spacing:-47.410667pt;}
.ws1bd{word-spacing:-47.388267pt;}
.ws221{word-spacing:-46.053333pt;}
.ws1d0{word-spacing:-45.891200pt;}
.ws228{word-spacing:-45.877333pt;}
.ws15b{word-spacing:-45.701333pt;}
.wse5{word-spacing:-45.642667pt;}
.wsf3{word-spacing:-45.584000pt;}
.ws1fc{word-spacing:-45.525333pt;}
.ws1d8{word-spacing:-45.507733pt;}
.ws1ad{word-spacing:-45.408000pt;}
.ws141{word-spacing:-45.349333pt;}
.ws231{word-spacing:-40.800000pt;}
.ws20{word-spacing:-38.370133pt;}
.ws22{word-spacing:-38.321067pt;}
.ws14{word-spacing:-38.173867pt;}
.ws17{word-spacing:-38.124800pt;}
.ws18{word-spacing:-38.075733pt;}
.ws19{word-spacing:-38.026667pt;}
.ws1c{word-spacing:-37.977600pt;}
.ws1a{word-spacing:-37.928533pt;}
.ws1bc{word-spacing:-37.344000pt;}
.ws3d{word-spacing:-37.296000pt;}
.ws208{word-spacing:-37.248000pt;}
.ws164{word-spacing:-37.152000pt;}
.ws1ab{word-spacing:-37.104000pt;}
.ws16a{word-spacing:-37.045333pt;}
.ws19c{word-spacing:-36.864000pt;}
.ws16b{word-spacing:-36.750933pt;}
.ws169{word-spacing:-36.701867pt;}
.ws168{word-spacing:-36.652800pt;}
.ws19a{word-spacing:-36.565333pt;}
.ws160{word-spacing:-34.165333pt;}
.ws15{word-spacing:-33.463467pt;}
.ws172{word-spacing:-32.819200pt;}
.ws256{word-spacing:-31.304533pt;}
.ws236{word-spacing:-30.961067pt;}
.ws24e{word-spacing:-30.912000pt;}
.ws1d{word-spacing:-30.715733pt;}
.ws1f4{word-spacing:-29.845333pt;}
.wsbc{word-spacing:-29.489067pt;}
.ws19b{word-spacing:-28.970667pt;}
.ws190{word-spacing:-26.103467pt;}
.ws1a8{word-spacing:-25.514667pt;}
.ws19e{word-spacing:-24.957333pt;}
.ws233{word-spacing:-23.664000pt;}
.ws9c{word-spacing:-22.698667pt;}
.ws129{word-spacing:-22.619733pt;}
.ws12d{word-spacing:-22.570667pt;}
.ws123{word-spacing:-22.521600pt;}
.wse6{word-spacing:-22.472533pt;}
.ws88{word-spacing:-22.423467pt;}
.ws106{word-spacing:-22.374400pt;}
.wse7{word-spacing:-22.325333pt;}
.ws37{word-spacing:-22.276267pt;}
.ws12e{word-spacing:-22.227200pt;}
.ws111{word-spacing:-22.186667pt;}
.ws8d{word-spacing:-22.178133pt;}
.ws108{word-spacing:-22.129067pt;}
.ws12a{word-spacing:-22.080000pt;}
.wsd4{word-spacing:-22.030933pt;}
.wsd2{word-spacing:-21.981867pt;}
.ws130{word-spacing:-21.932800pt;}
.wsd3{word-spacing:-21.883733pt;}
.ws14b{word-spacing:-21.834667pt;}
.ws105{word-spacing:-21.785600pt;}
.ws79{word-spacing:-21.736533pt;}
.ws4b{word-spacing:-21.687467pt;}
.ws94{word-spacing:-21.638400pt;}
.ws125{word-spacing:-21.589333pt;}
.ws1e9{word-spacing:-21.572267pt;}
.wsb5{word-spacing:-21.540267pt;}
.wscb{word-spacing:-21.491200pt;}
.ws65{word-spacing:-21.442133pt;}
.ws12c{word-spacing:-21.393067pt;}
.wsca{word-spacing:-21.344000pt;}
.ws14a{word-spacing:-21.300267pt;}
.ws74{word-spacing:-21.294933pt;}
.wsc4{word-spacing:-21.245867pt;}
.ws1cf{word-spacing:-21.202133pt;}
.wseb{word-spacing:-21.196800pt;}
.ws52{word-spacing:-21.147733pt;}
.ws8c{word-spacing:-21.098667pt;}
.ws39{word-spacing:-21.049600pt;}
.ws6f{word-spacing:-21.000533pt;}
.wsea{word-spacing:-20.951467pt;}
.ws13b{word-spacing:-20.902400pt;}
.ws4a{word-spacing:-20.853333pt;}
.ws16d{word-spacing:-20.820267pt;}
.ws45{word-spacing:-20.804267pt;}
.ws107{word-spacing:-20.755200pt;}
.ws103{word-spacing:-20.706133pt;}
.wse4{word-spacing:-20.657067pt;}
.ws30{word-spacing:-20.608000pt;}
.wsa3{word-spacing:-20.558933pt;}
.wsbb{word-spacing:-20.509867pt;}
.ws72{word-spacing:-20.460800pt;}
.ws5a{word-spacing:-20.411733pt;}
.ws58{word-spacing:-20.392533pt;}
.ws1cb{word-spacing:-20.366933pt;}
.ws78{word-spacing:-20.362667pt;}
.wsd6{word-spacing:-20.313600pt;}
.wsc3{word-spacing:-20.264533pt;}
.ws80{word-spacing:-20.215467pt;}
.ws6e{word-spacing:-20.166400pt;}
.wsb2{word-spacing:-20.117333pt;}
.ws1d2{word-spacing:-20.116267pt;}
.ws13f{word-spacing:-20.075733pt;}
.wse3{word-spacing:-20.068267pt;}
.wscc{word-spacing:-20.019200pt;}
.ws1ed{word-spacing:-19.987200pt;}
.ws91{word-spacing:-19.970133pt;}
.ws5c{word-spacing:-19.921067pt;}
.ws3a{word-spacing:-19.872000pt;}
.wsb3{word-spacing:-19.822933pt;}
.wsbe{word-spacing:-19.773867pt;}
.ws21f{word-spacing:-19.749333pt;}
.wsaa{word-spacing:-19.724800pt;}
.ws1ce{word-spacing:-19.677867pt;}
.ws6d{word-spacing:-19.675733pt;}
.wsd9{word-spacing:-19.626667pt;}
.ws100{word-spacing:-19.601067pt;}
.ws7c{word-spacing:-19.577600pt;}
.ws69{word-spacing:-19.528533pt;}
.ws8e{word-spacing:-19.479467pt;}
.ws1c8{word-spacing:-19.474133pt;}
.ws95{word-spacing:-19.430400pt;}
.ws48{word-spacing:-19.381333pt;}
.ws2d{word-spacing:-19.332267pt;}
.wsab{word-spacing:-19.283200pt;}
.wsfb{word-spacing:-19.234133pt;}
.ws158{word-spacing:-19.230933pt;}
.ws166{word-spacing:-19.207467pt;}
.ws23{word-spacing:-19.185067pt;}
.ws24{word-spacing:-19.136000pt;}
.ws167{word-spacing:-19.125333pt;}
.wsa5{word-spacing:-19.086933pt;}
.ws8b{word-spacing:-19.037867pt;}
.ws93{word-spacing:-18.988800pt;}
.ws42{word-spacing:-18.939733pt;}
.ws18b{word-spacing:-18.935467pt;}
.ws15c{word-spacing:-18.912000pt;}
.ws1d3{word-spacing:-18.894933pt;}
.ws6c{word-spacing:-18.890667pt;}
.ws1cc{word-spacing:-18.845867pt;}
.wsc8{word-spacing:-18.841600pt;}
.ws4f{word-spacing:-18.792533pt;}
.ws157{word-spacing:-18.770133pt;}
.ws1a1{word-spacing:-18.746667pt;}
.ws5e{word-spacing:-18.743467pt;}
.ws148{word-spacing:-18.704000pt;}
.ws87{word-spacing:-18.694400pt;}
.ws212{word-spacing:-18.685867pt;}
.wsa2{word-spacing:-18.645333pt;}
.ws10d{word-spacing:-18.637867pt;}
.ws171{word-spacing:-18.608533pt;}
.ws35{word-spacing:-18.596267pt;}
.ws140{word-spacing:-18.573867pt;}
.ws1b3{word-spacing:-18.569600pt;}
.ws10e{word-spacing:-18.565333pt;}
.ws7a{word-spacing:-18.547200pt;}
.ws18c{word-spacing:-18.546133pt;}
.wsad{word-spacing:-18.498133pt;}
.ws21e{word-spacing:-18.478933pt;}
.ws3e{word-spacing:-18.449067pt;}
.ws1e8{word-spacing:-18.424533pt;}
.ws6a{word-spacing:-18.400000pt;}
.ws104{word-spacing:-18.385067pt;}
.wsed{word-spacing:-18.350933pt;}
.ws3c{word-spacing:-18.301867pt;}
.ws113{word-spacing:-18.252800pt;}
.wsde{word-spacing:-18.203733pt;}
.ws1ec{word-spacing:-18.170667pt;}
.ws156{word-spacing:-18.162133pt;}
.ws38{word-spacing:-18.154667pt;}
.ws5b{word-spacing:-18.105600pt;}
.ws57{word-spacing:-18.056533pt;}
.ws213{word-spacing:-18.016000pt;}
.ws90{word-spacing:-18.007467pt;}
.ws165{word-spacing:-17.974400pt;}
.wsa6{word-spacing:-17.958400pt;}
.ws6b{word-spacing:-17.909333pt;}
.wsc9{word-spacing:-17.860267pt;}
.ws1ee{word-spacing:-17.838933pt;}
.ws1f0{word-spacing:-17.821867pt;}
.ws34{word-spacing:-17.811200pt;}
.ws1e6{word-spacing:-17.805867pt;}
.ws204{word-spacing:-17.796267pt;}
.wsc7{word-spacing:-17.762133pt;}
.ws1ea{word-spacing:-17.744000pt;}
.wsb8{word-spacing:-17.713067pt;}
.ws1dc{word-spacing:-17.688533pt;}
.wsc5{word-spacing:-17.664000pt;}
.ws2b{word-spacing:-17.614933pt;}
.ws239{word-spacing:-17.566933pt;}
.wsce{word-spacing:-17.565867pt;}
.ws1a2{word-spacing:-17.527467pt;}
.ws3f{word-spacing:-17.516800pt;}
.ws159{word-spacing:-17.510400pt;}
.ws7f{word-spacing:-17.467733pt;}
.ws142{word-spacing:-17.447467pt;}
.wsd5{word-spacing:-17.418667pt;}
.wsec{word-spacing:-17.369600pt;}
.ws222{word-spacing:-17.349333pt;}
.ws155{word-spacing:-17.345067pt;}
.ws1b4{word-spacing:-17.344000pt;}
.wsbd{word-spacing:-17.320533pt;}
.ws68{word-spacing:-17.271467pt;}
.wsa9{word-spacing:-17.222400pt;}
.ws62{word-spacing:-17.173333pt;}
.ws220{word-spacing:-17.161600pt;}
.wsd8{word-spacing:-17.124267pt;}
.ws60{word-spacing:-17.075200pt;}
.ws56{word-spacing:-17.026133pt;}
.ws8a{word-spacing:-16.977067pt;}
.ws206{word-spacing:-16.941867pt;}
.ws89{word-spacing:-16.928000pt;}
.ws1d5{word-spacing:-16.884267pt;}
.ws10f{word-spacing:-16.878933pt;}
.ws32{word-spacing:-16.829867pt;}
.ws46{word-spacing:-16.780800pt;}
.ws63{word-spacing:-16.731733pt;}
.ws15a{word-spacing:-16.725333pt;}
.ws22e{word-spacing:-16.712533pt;}
.ws4c{word-spacing:-16.682667pt;}
.ws73{word-spacing:-16.633600pt;}
.wsd1{word-spacing:-16.584533pt;}
.ws59{word-spacing:-16.573867pt;}
.ws54{word-spacing:-16.535467pt;}
.ws21d{word-spacing:-16.509867pt;}
.ws5d{word-spacing:-16.486400pt;}
.ws1be{word-spacing:-16.456533pt;}
.ws2e{word-spacing:-16.437333pt;}
.ws19d{word-spacing:-16.426667pt;}
.ws29{word-spacing:-16.388267pt;}
.ws196{word-spacing:-16.355200pt;}
.ws55{word-spacing:-16.339200pt;}
.ws14d{word-spacing:-16.336000pt;}
.ws1cd{word-spacing:-16.317867pt;}
.ws92{word-spacing:-16.290133pt;}
.ws205{word-spacing:-16.280533pt;}
.ws8f{word-spacing:-16.241067pt;}
.ws1a9{word-spacing:-16.212267pt;}
.ws14e{word-spacing:-16.192000pt;}
.ws1e5{word-spacing:-16.179200pt;}
.ws43{word-spacing:-16.142933pt;}
.ws9e{word-spacing:-16.093867pt;}
.ws102{word-spacing:-16.092800pt;}
.ws31{word-spacing:-16.044800pt;}
.ws138{word-spacing:-16.024533pt;}
.ws191{word-spacing:-16.000000pt;}
.ws1d7{word-spacing:-15.998933pt;}
.ws40{word-spacing:-15.995733pt;}
.ws98{word-spacing:-15.946667pt;}
.wsac{word-spacing:-15.897600pt;}
.ws50{word-spacing:-15.848533pt;}
.wsf8{word-spacing:-15.799467pt;}
.ws13e{word-spacing:-15.786667pt;}
.ws51{word-spacing:-15.750400pt;}
.ws188{word-spacing:-15.712000pt;}
.ws41{word-spacing:-15.701333pt;}
.ws47{word-spacing:-15.652267pt;}
.ws20c{word-spacing:-15.648000pt;}
.ws1db{word-spacing:-15.635200pt;}
.wsc2{word-spacing:-15.603200pt;}
.ws1d9{word-spacing:-15.574400pt;}
.ws64{word-spacing:-15.554133pt;}
.ws70{word-spacing:-15.505067pt;}
.ws177{word-spacing:-15.488000pt;}
.ws76{word-spacing:-15.456000pt;}
.ws225{word-spacing:-15.444267pt;}
.ws114{word-spacing:-15.406933pt;}
.ws199{word-spacing:-15.402667pt;}
.ws230{word-spacing:-15.379200pt;}
.wsf2{word-spacing:-15.357867pt;}
.ws28{word-spacing:-15.308800pt;}
.ws194{word-spacing:-15.267200pt;}
.ws227{word-spacing:-15.262933pt;}
.ws3b{word-spacing:-15.259733pt;}
.wsa8{word-spacing:-15.210667pt;}
.wse9{word-spacing:-15.161600pt;}
.ws67{word-spacing:-15.112533pt;}
.ws1a6{word-spacing:-15.065600pt;}
.ws1a7{word-spacing:-15.064533pt;}
.ws53{word-spacing:-15.063467pt;}
.ws229{word-spacing:-15.060267pt;}
.ws195{word-spacing:-15.059200pt;}
.ws1c1{word-spacing:-15.048533pt;}
.wscd{word-spacing:-15.014400pt;}
.wsa7{word-spacing:-14.989867pt;}
.wsb9{word-spacing:-14.965333pt;}
.ws75{word-spacing:-14.916267pt;}
.ws133{word-spacing:-14.867200pt;}
.wsa1{word-spacing:-14.818133pt;}
.ws66{word-spacing:-14.769067pt;}
.wsc1{word-spacing:-14.720000pt;}
.ws9d{word-spacing:-14.670933pt;}
.ws22a{word-spacing:-14.648533pt;}
.ws11b{word-spacing:-14.633600pt;}
.wsaf{word-spacing:-14.621867pt;}
.ws1ef{word-spacing:-14.605867pt;}
.ws1fb{word-spacing:-14.587733pt;}
.wsb6{word-spacing:-14.572800pt;}
.ws1fa{word-spacing:-14.571733pt;}
.ws4d{word-spacing:-14.523733pt;}
.ws1f7{word-spacing:-14.486400pt;}
.wsf9{word-spacing:-14.474667pt;}
.ws139{word-spacing:-14.470400pt;}
.ws137{word-spacing:-14.464000pt;}
.wsb7{word-spacing:-14.425600pt;}
.ws1de{word-spacing:-14.388267pt;}
.ws11e{word-spacing:-14.378667pt;}
.ws49{word-spacing:-14.376533pt;}
.ws1dd{word-spacing:-14.355200pt;}
.ws1ff{word-spacing:-14.336000pt;}
.wsb0{word-spacing:-14.327467pt;}
.wsf1{word-spacing:-14.278400pt;}
.wsc0{word-spacing:-14.250667pt;}
.ws77{word-spacing:-14.229333pt;}
.ws200{word-spacing:-14.208000pt;}
.ws1b1{word-spacing:-14.197333pt;}
.ws33{word-spacing:-14.180267pt;}
.ws12b{word-spacing:-14.131200pt;}
.ws7b{word-spacing:-14.082133pt;}
.ws16c{word-spacing:-14.080000pt;}
.wsf6{word-spacing:-14.033067pt;}
.wsdf{word-spacing:-13.984000pt;}
.wsf0{word-spacing:-13.934933pt;}
.ws1f1{word-spacing:-13.901867pt;}
.ws128{word-spacing:-13.885867pt;}
.ws203{word-spacing:-13.866667pt;}
.ws224{word-spacing:-13.843200pt;}
.wsef{word-spacing:-13.836800pt;}
.ws1b9{word-spacing:-13.827200pt;}
.ws1ba{word-spacing:-13.821867pt;}
.ws117{word-spacing:-13.787733pt;}
.ws81{word-spacing:-13.738667pt;}
.wscf{word-spacing:-13.689600pt;}
.wsee{word-spacing:-13.640533pt;}
.ws1d6{word-spacing:-13.620267pt;}
.ws44{word-spacing:-13.591467pt;}
.ws2a{word-spacing:-13.542400pt;}
.wsbf{word-spacing:-13.525333pt;}
.wsfa{word-spacing:-13.493333pt;}
.ws126{word-spacing:-13.444267pt;}
.ws1f3{word-spacing:-13.440000pt;}
.ws101{word-spacing:-13.395200pt;}
.ws22c{word-spacing:-13.354667pt;}
.wsf5{word-spacing:-13.346133pt;}
.ws61{word-spacing:-13.297067pt;}
.ws4e{word-spacing:-13.248000pt;}
.ws1ca{word-spacing:-13.240533pt;}
.ws202{word-spacing:-13.226667pt;}
.wsdd{word-spacing:-13.198933pt;}
.ws181{word-spacing:-13.192533pt;}
.ws1df{word-spacing:-13.162667pt;}
.ws2f{word-spacing:-13.149867pt;}
.ws1c2{word-spacing:-13.101867pt;}
.wsf7{word-spacing:-13.100800pt;}
.ws154{word-spacing:-13.056000pt;}
.wsfe{word-spacing:-13.051733pt;}
.wsa0{word-spacing:-13.002667pt;}
.ws112{word-spacing:-12.953600pt;}
.ws2c{word-spacing:-12.904533pt;}
.ws10b{word-spacing:-12.855467pt;}
.wsd7{word-spacing:-12.806400pt;}
.ws223{word-spacing:-12.772267pt;}
.ws9a{word-spacing:-12.757333pt;}
.ws121{word-spacing:-12.708267pt;}
.ws5f{word-spacing:-12.659200pt;}
.ws1b0{word-spacing:-12.656000pt;}
.wse0{word-spacing:-12.610133pt;}
.ws110{word-spacing:-12.586667pt;}
.ws131{word-spacing:-12.561067pt;}
.ws7e{word-spacing:-12.512000pt;}
.ws1c0{word-spacing:-12.493867pt;}
.ws1bf{word-spacing:-12.488533pt;}
.ws12f{word-spacing:-12.462933pt;}
.ws22f{word-spacing:-12.424533pt;}
.ws118{word-spacing:-12.423467pt;}
.ws135{word-spacing:-12.416000pt;}
.ws124{word-spacing:-12.413867pt;}
.ws189{word-spacing:-12.392533pt;}
.ws116{word-spacing:-12.364800pt;}
.ws152{word-spacing:-12.315733pt;}
.wsb1{word-spacing:-12.266667pt;}
.ws10c{word-spacing:-12.217600pt;}
.ws134{word-spacing:-12.202667pt;}
.wsc6{word-spacing:-12.168533pt;}
.wse8{word-spacing:-12.119467pt;}
.ws1bb{word-spacing:-12.117333pt;}
.ws17f{word-spacing:-12.082133pt;}
.wsdc{word-spacing:-12.070400pt;}
.ws85{word-spacing:-12.021333pt;}
.ws178{word-spacing:-11.989333pt;}
.ws83{word-spacing:-11.972267pt;}
.ws127{word-spacing:-11.923200pt;}
.ws115{word-spacing:-11.880533pt;}
.ws97{word-spacing:-11.874133pt;}
.ws226{word-spacing:-11.848533pt;}
.wsae{word-spacing:-11.825067pt;}
.ws18a{word-spacing:-11.818667pt;}
.ws71{word-spacing:-11.776000pt;}
.wsba{word-spacing:-11.726933pt;}
.ws9b{word-spacing:-11.690667pt;}
.wsfd{word-spacing:-11.677867pt;}
.ws1d1{word-spacing:-11.645867pt;}
.wse1{word-spacing:-11.628800pt;}
.ws22b{word-spacing:-11.624533pt;}
.ws1ac{word-spacing:-11.579733pt;}
.ws1b2{word-spacing:-11.573333pt;}
.ws120{word-spacing:-11.530667pt;}
.ws20d{word-spacing:-11.520000pt;}
.ws132{word-spacing:-11.481600pt;}
.ws197{word-spacing:-11.477333pt;}
.ws1c7{word-spacing:-11.432533pt;}
.ws11c{word-spacing:-11.383467pt;}
.ws14c{word-spacing:-11.334400pt;}
.ws1e1{word-spacing:-11.308800pt;}
.ws149{word-spacing:-11.285333pt;}
.ws10a{word-spacing:-11.236267pt;}
.ws1fe{word-spacing:-11.187200pt;}
.ws217{word-spacing:-11.178667pt;}
.ws162{word-spacing:-11.138133pt;}
.ws11d{word-spacing:-11.093333pt;}
.wsff{word-spacing:-11.089067pt;}
.ws1eb{word-spacing:-11.043200pt;}
.ws18d{word-spacing:-11.040000pt;}
.wse2{word-spacing:-10.990933pt;}
.ws147{word-spacing:-10.941867pt;}
.ws13d{word-spacing:-10.892800pt;}
.ws1a3{word-spacing:-10.843733pt;}
.ws1f2{word-spacing:-10.837333pt;}
.ws19f{word-spacing:-10.794667pt;}
.ws18f{word-spacing:-10.752000pt;}
.ws7d{word-spacing:-10.745600pt;}
.ws1a0{word-spacing:-10.696533pt;}
.ws136{word-spacing:-10.624000pt;}
.ws173{word-spacing:-10.598400pt;}
.ws1e3{word-spacing:-10.549333pt;}
.ws84{word-spacing:-10.508800pt;}
.ws1ae{word-spacing:-10.500267pt;}
.ws1e7{word-spacing:-10.496000pt;}
.ws163{word-spacing:-10.451200pt;}
.ws1a5{word-spacing:-10.402133pt;}
.ws251{word-spacing:-10.353067pt;}
.ws15e{word-spacing:-10.254933pt;}
.ws18e{word-spacing:-10.240000pt;}
.ws151{word-spacing:-10.205867pt;}
.ws20b{word-spacing:-10.156800pt;}
.ws11a{word-spacing:-10.107733pt;}
.ws175{word-spacing:-10.058667pt;}
.ws21c{word-spacing:-10.046933pt;}
.ws192{word-spacing:-10.026667pt;}
.ws15f{word-spacing:-10.009600pt;}
.ws183{word-spacing:-9.960533pt;}
.ws210{word-spacing:-9.911467pt;}
.ws144{word-spacing:-9.862400pt;}
.wsa{word-spacing:-9.820800pt;}
.ws9f{word-spacing:-9.813333pt;}
.ws1e0{word-spacing:-9.795200pt;}
.ws146{word-spacing:-9.764267pt;}
.ws201{word-spacing:-9.715200pt;}
.ws1c9{word-spacing:-9.666133pt;}
.ws99{word-spacing:-9.617067pt;}
.ws198{word-spacing:-9.600000pt;}
.ws182{word-spacing:-9.568000pt;}
.ws17a{word-spacing:-9.469867pt;}
.ws252{word-spacing:-9.322667pt;}
.ws1b6{word-spacing:-9.273600pt;}
.ws216{word-spacing:-9.216000pt;}
.wsda{word-spacing:-9.175467pt;}
.ws243{word-spacing:-9.077333pt;}
.ws17c{word-spacing:-9.028267pt;}
.ws143{word-spacing:-8.979200pt;}
.ws23e{word-spacing:-8.930133pt;}
.ws1c3{word-spacing:-8.881067pt;}
.ws20f{word-spacing:-8.832000pt;}
.ws23d{word-spacing:-8.782933pt;}
.ws145{word-spacing:-8.684800pt;}
.ws245{word-spacing:-8.635733pt;}
.ws1e2{word-spacing:-8.586667pt;}
.ws1a4{word-spacing:-8.537600pt;}
.ws22d{word-spacing:-8.488533pt;}
.ws179{word-spacing:-8.439467pt;}
.ws209{word-spacing:-8.390400pt;}
.ws11f{word-spacing:-8.341333pt;}
.ws214{word-spacing:-8.292267pt;}
.ws176{word-spacing:-8.194133pt;}
.ws20a{word-spacing:-8.145067pt;}
.ws1b5{word-spacing:-7.997867pt;}
.ws218{word-spacing:-7.948800pt;}
.ws86{word-spacing:-7.899733pt;}
.ws1f9{word-spacing:-7.850667pt;}
.ws1c4{word-spacing:-7.801600pt;}
.wsfc{word-spacing:-7.752533pt;}
.ws17d{word-spacing:-7.703467pt;}
.ws249{word-spacing:-7.654400pt;}
.ws211{word-spacing:-7.605333pt;}
.ws25b{word-spacing:-7.556267pt;}
.ws153{word-spacing:-7.466667pt;}
.ws82{word-spacing:-7.409067pt;}
.ws20e{word-spacing:-7.360000pt;}
.ws193{word-spacing:-7.310933pt;}
.ws258{word-spacing:-7.212800pt;}
.ws1b7{word-spacing:-7.114667pt;}
.ws16e{word-spacing:-6.918400pt;}
.ws242{word-spacing:-6.820267pt;}
.ws17b{word-spacing:-6.722133pt;}
.ws174{word-spacing:-6.624000pt;}
.ws1e4{word-spacing:-6.574933pt;}
.ws259{word-spacing:-6.476800pt;}
.wsdb{word-spacing:-6.182400pt;}
.ws1fd{word-spacing:-6.084267pt;}
.ws96{word-spacing:-6.035200pt;}
.ws219{word-spacing:-5.937067pt;}
.ws1f6{word-spacing:-5.888000pt;}
.ws1f8{word-spacing:-5.789867pt;}
.ws119{word-spacing:-5.642667pt;}
.ws1f5{word-spacing:-5.544533pt;}
.ws238{word-spacing:-5.397333pt;}
.ws215{word-spacing:-5.348267pt;}
.ws255{word-spacing:-5.250133pt;}
.ws1da{word-spacing:-5.152000pt;}
.ws1c6{word-spacing:-5.102933pt;}
.ws1d4{word-spacing:-5.053867pt;}
.ws23c{word-spacing:-4.955733pt;}
.ws16f{word-spacing:-4.710400pt;}
.ws1af{word-spacing:-4.416000pt;}
.ws24b{word-spacing:-4.023467pt;}
.ws23b{word-spacing:-3.827200pt;}
.ws246{word-spacing:-3.680000pt;}
.ws248{word-spacing:-3.238400pt;}
.ws24c{word-spacing:-3.140267pt;}
.ws13c{word-spacing:-3.091200pt;}
.ws185{word-spacing:-2.944000pt;}
.ws180{word-spacing:-2.564267pt;}
.ws21b{word-spacing:-1.913600pt;}
.ws247{word-spacing:-1.815467pt;}
.ws241{word-spacing:-1.766400pt;}
.ws187{word-spacing:-1.324800pt;}
.ws8{word-spacing:-1.091200pt;}
.ws240{word-spacing:-0.736000pt;}
.ws25f{word-spacing:-0.504000pt;}
.ws13a{word-spacing:-0.293333pt;}
.ws0{word-spacing:0.000000pt;}
.ws25d{word-spacing:0.392533pt;}
.ws184{word-spacing:0.883200pt;}
.ws27{word-spacing:1.079467pt;}
.ws21a{word-spacing:1.668267pt;}
.ws11{word-spacing:1.904000pt;}
.wsc{word-spacing:2.132800pt;}
.wsf{word-spacing:2.493333pt;}
.ws7{word-spacing:2.628800pt;}
.ws10{word-spacing:2.720000pt;}
.ws254{word-spacing:2.747733pt;}
.ws9{word-spacing:2.876800pt;}
.wsb{word-spacing:3.422400pt;}
.ws24f{word-spacing:3.778133pt;}
.ws2{word-spacing:4.563200pt;}
.wse{word-spacing:5.122667pt;}
.ws12{word-spacing:5.168000pt;}
.ws3{word-spacing:5.208000pt;}
.ws6{word-spacing:5.753600pt;}
.ws24a{word-spacing:6.722133pt;}
.ws23f{word-spacing:7.584000pt;}
.wsd{word-spacing:8.432000pt;}
.ws21{word-spacing:8.439467pt;}
.ws4{word-spacing:8.481600pt;}
.ws186{word-spacing:8.586667pt;}
.ws5{word-spacing:8.630400pt;}
.ws244{word-spacing:8.784000pt;}
.ws253{word-spacing:9.072000pt;}
.ws150{word-spacing:9.126400pt;}
.ws24d{word-spacing:10.848000pt;}
.ws237{word-spacing:11.088000pt;}
.ws1{word-spacing:14.979200pt;}
.ws23a{word-spacing:16.512000pt;}
.ws25c{word-spacing:17.328000pt;}
.ws250{word-spacing:18.400000pt;}
.ws25e{word-spacing:18.576000pt;}
.ws1c5{word-spacing:19.601600pt;}
.ws25a{word-spacing:27.264000pt;}
.ws161{word-spacing:31.500267pt;}
.ws257{word-spacing:31.844267pt;}
.ws109{word-spacing:55.509333pt;}
._2{margin-left:-15.545600pt;}
._3c{margin-left:-6.521067pt;}
._39{margin-left:-5.575467pt;}
._25{margin-left:-4.612267pt;}
._1{margin-left:-3.720000pt;}
._26{margin-left:-2.829333pt;}
._3{margin-left:-1.934400pt;}
._0{margin-left:-0.992000pt;}
._5{width:1.200000pt;}
._4{width:2.343467pt;}
._10{width:3.458133pt;}
._35{width:4.963200pt;}
._3b{width:6.244267pt;}
._27{width:7.177067pt;}
._1f{width:8.194133pt;}
._22{width:9.168000pt;}
._1b{width:10.451200pt;}
._d{width:11.976533pt;}
._1c{width:13.072533pt;}
._1e{width:14.526400pt;}
._21{width:15.613867pt;}
._1d{width:16.518933pt;}
._32{width:17.467733pt;}
._2c{width:18.401067pt;}
._29{width:19.461867pt;}
._18{width:20.608000pt;}
._17{width:22.276267pt;}
._43{width:23.264000pt;}
._23{width:24.576000pt;}
._41{width:25.731733pt;}
._34{width:26.684800pt;}
._19{width:27.811733pt;}
._16{width:28.779733pt;}
._1a{width:30.470400pt;}
._f{width:31.844267pt;}
._c{width:33.512533pt;}
._b{width:35.180800pt;}
._14{width:37.262400pt;}
._13{width:38.930667pt;}
._9{width:41.216000pt;}
._8{width:42.884267pt;}
._12{width:46.634133pt;}
._15{width:49.115733pt;}
._7{width:50.587733pt;}
._3f{width:54.509333pt;}
._40{width:57.216000pt;}
._30{width:58.757333pt;}
._42{width:59.808000pt;}
._e{width:60.842667pt;}
._a{width:62.609067pt;}
._37{width:64.272000pt;}
._3d{width:65.207467pt;}
._11{width:66.211733pt;}
._38{width:67.584000pt;}
._3e{width:68.519467pt;}
._6{width:70.656000pt;}
._36{width:73.248000pt;}
._3a{width:74.352000pt;}
._33{width:75.408000pt;}
._2f{width:76.992000pt;}
._2d{width:78.208000pt;}
._2e{width:79.200000pt;}
._31{width:80.304000pt;}
._2a{width:83.456000pt;}
._24{width:84.565867pt;}
._28{width:85.813867pt;}
._20{width:86.736000pt;}
._2b{width:87.877867pt;}
.fsa{font-size:40.885333pt;}
.fsb{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fse{font-size:46.400000pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:49.066667pt;}
.fs0{font-size:49.600000pt;}
.fs1{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:61.333333pt;}
.fs7{font-size:69.333333pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:82.666667pt;}
.fsc{font-size:93.333333pt;}
.fsd{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y21a{bottom:3.024000pt;}
.y219{bottom:17.696000pt;}
.y218{bottom:29.096667pt;}
.y201{bottom:32.120667pt;}
.y200{bottom:46.792667pt;}
.y3{bottom:74.960667pt;}
.yb{bottom:74.968133pt;}
.y29{bottom:74.975600pt;}
.ya{bottom:91.633733pt;}
.y94{bottom:104.218667pt;}
.yd0{bottom:104.508000pt;}
.yf1{bottom:106.009333pt;}
.yb3{bottom:106.085333pt;}
.y177{bottom:106.374667pt;}
.yf9{bottom:107.800000pt;}
.y161{bottom:107.876000pt;}
.y9{bottom:108.299333pt;}
.y28{bottom:108.306800pt;}
.y5f{bottom:109.061333pt;}
.y137{bottom:111.841333pt;}
.y17b{bottom:112.752000pt;}
.y1a9{bottom:114.542667pt;}
.y1fe{bottom:114.618667pt;}
.y41{bottom:118.085333pt;}
.yb4{bottom:118.885333pt;}
.y117{bottom:118.969333pt;}
.y93{bottom:121.285333pt;}
.ycf{bottom:121.574667pt;}
.yf0{bottom:123.076000pt;}
.yb2{bottom:123.152000pt;}
.y176{bottom:123.441333pt;}
.yf8{bottom:124.866667pt;}
.y160{bottom:124.942667pt;}
.y8{bottom:124.964933pt;}
.y27{bottom:124.972400pt;}
.y5e{bottom:126.128000pt;}
.y136{bottom:128.908000pt;}
.y152{bottom:129.818667pt;}
.y7e{bottom:130.569333pt;}
.y1fc{bottom:130.968133pt;}
.y1a8{bottom:131.609333pt;}
.y1be{bottom:131.685333pt;}
.yf2{bottom:133.552000pt;}
.y40{bottom:135.152000pt;}
.y116{bottom:136.036000pt;}
.y92{bottom:138.352000pt;}
.yce{bottom:138.641333pt;}
.yef{bottom:140.142667pt;}
.yb1{bottom:140.218667pt;}
.y7{bottom:141.630533pt;}
.y26{bottom:141.638000pt;}
.yf7{bottom:141.933333pt;}
.y15f{bottom:142.009333pt;}
.y135{bottom:145.974667pt;}
.y151{bottom:146.885333pt;}
.y7d{bottom:147.636000pt;}
.y1fb{bottom:148.034800pt;}
.yfc{bottom:148.218667pt;}
.y1a7{bottom:148.676000pt;}
.y1bd{bottom:148.752000pt;}
.y3f{bottom:152.218667pt;}
.y115{bottom:153.102667pt;}
.y195{bottom:154.408000pt;}
.y91{bottom:155.418667pt;}
.ycd{bottom:155.708000pt;}
.yee{bottom:157.209333pt;}
.yb0{bottom:157.285333pt;}
.y175{bottom:157.574667pt;}
.y6{bottom:158.296133pt;}
.y25{bottom:158.303600pt;}
.yf6{bottom:159.000000pt;}
.y15e{bottom:159.076000pt;}
.y5d{bottom:160.261333pt;}
.yfb{bottom:162.885333pt;}
.y134{bottom:163.041333pt;}
.y150{bottom:163.952000pt;}
.y7c{bottom:164.702667pt;}
.y1fa{bottom:165.101467pt;}
.y1a6{bottom:165.742667pt;}
.y1bc{bottom:165.818667pt;}
.y3e{bottom:169.285333pt;}
.y114{bottom:170.169333pt;}
.y194{bottom:171.474667pt;}
.y90{bottom:172.485333pt;}
.ycc{bottom:172.774667pt;}
.yed{bottom:174.276000pt;}
.yaf{bottom:174.352000pt;}
.y5{bottom:174.961733pt;}
.y24{bottom:174.969200pt;}
.yf5{bottom:176.066667pt;}
.y15d{bottom:176.142667pt;}
.y5c{bottom:177.328000pt;}
.y1ae{bottom:177.552000pt;}
.y133{bottom:180.108000pt;}
.y14f{bottom:181.018667pt;}
.y7b{bottom:181.769333pt;}
.y1f9{bottom:182.168133pt;}
.y1a5{bottom:182.809333pt;}
.y1bb{bottom:182.885333pt;}
.y16b{bottom:184.112000pt;}
.y113{bottom:187.236000pt;}
.y193{bottom:188.541333pt;}
.y1d0{bottom:189.117333pt;}
.y8f{bottom:189.552000pt;}
.ycb{bottom:189.841333pt;}
.yec{bottom:191.342667pt;}
.yae{bottom:191.418667pt;}
.y4{bottom:191.627333pt;}
.y23{bottom:191.634800pt;}
.yf4{bottom:193.133333pt;}
.y15c{bottom:193.209333pt;}
.y5b{bottom:194.394667pt;}
.y132{bottom:197.174667pt;}
.y14e{bottom:198.085333pt;}
.y7a{bottom:198.836000pt;}
.y1f8{bottom:199.234800pt;}
.y17a{bottom:199.876000pt;}
.y1ba{bottom:199.952000pt;}
.y16a{bottom:201.178667pt;}
.y3d{bottom:203.418667pt;}
.y112{bottom:204.302667pt;}
.y192{bottom:205.608000pt;}
.y1cf{bottom:206.184000pt;}
.y8e{bottom:206.618667pt;}
.yca{bottom:206.908000pt;}
.y172{bottom:207.430667pt;}
.y22{bottom:208.300400pt;}
.yeb{bottom:208.409333pt;}
.yad{bottom:208.485333pt;}
.y217{bottom:209.068533pt;}
.y15b{bottom:210.276000pt;}
.y5a{bottom:211.461333pt;}
.y131{bottom:214.241333pt;}
.y14d{bottom:215.152000pt;}
.y79{bottom:215.902667pt;}
.y225{bottom:216.268533pt;}
.y1f7{bottom:216.301467pt;}
.y179{bottom:216.942667pt;}
.y1b9{bottom:217.018667pt;}
.y169{bottom:218.245333pt;}
.y111{bottom:221.369333pt;}
.y216{bottom:222.396933pt;}
.y191{bottom:222.674667pt;}
.y1ce{bottom:223.250667pt;}
.y8d{bottom:223.685333pt;}
.yc9{bottom:223.974667pt;}
.y21{bottom:224.966000pt;}
.yea{bottom:225.476000pt;}
.yac{bottom:225.552000pt;}
.yf3{bottom:227.266667pt;}
.y15a{bottom:227.342667pt;}
.y59{bottom:228.528000pt;}
.y224{bottom:229.596933pt;}
.y130{bottom:231.308000pt;}
.y14c{bottom:232.218667pt;}
.y78{bottom:232.969333pt;}
.y1f6{bottom:233.368133pt;}
.y178{bottom:234.009333pt;}
.y1b8{bottom:234.085333pt;}
.y215{bottom:235.725333pt;}
.y110{bottom:238.436000pt;}
.y186{bottom:238.961333pt;}
.y190{bottom:239.741333pt;}
.y1cd{bottom:240.317333pt;}
.y8c{bottom:240.752000pt;}
.yc8{bottom:241.041333pt;}
.ye9{bottom:242.542667pt;}
.yab{bottom:242.618667pt;}
.y223{bottom:242.925333pt;}
.y159{bottom:244.409333pt;}
.y58{bottom:245.594667pt;}
.y12f{bottom:248.374667pt;}
.y214{bottom:249.053733pt;}
.y14b{bottom:249.285333pt;}
.y3c{bottom:249.776000pt;}
.y1f5{bottom:250.434800pt;}
.y1a4{bottom:251.076000pt;}
.y1fd{bottom:251.152000pt;}
.y10f{bottom:255.502667pt;}
.y185{bottom:256.028000pt;}
.y222{bottom:256.253733pt;}
.y18f{bottom:256.808000pt;}
.y1cc{bottom:257.384000pt;}
.y8b{bottom:257.818667pt;}
.yc7{bottom:258.108000pt;}
.y20{bottom:258.297200pt;}
.ye8{bottom:259.609333pt;}
.yaa{bottom:259.685333pt;}
.y158{bottom:261.476000pt;}
.y12e{bottom:265.441333pt;}
.y14a{bottom:266.352000pt;}
.y3b{bottom:266.842667pt;}
.y77{bottom:267.102667pt;}
.y1f4{bottom:267.501467pt;}
.y1b5{bottom:268.142667pt;}
.y1b7{bottom:268.218667pt;}
.y10e{bottom:272.569333pt;}
.y184{bottom:273.094667pt;}
.y18e{bottom:273.874667pt;}
.y1cb{bottom:274.450667pt;}
.y8a{bottom:274.885333pt;}
.y1f{bottom:274.962800pt;}
.yc6{bottom:275.174667pt;}
.ye7{bottom:276.676000pt;}
.ya9{bottom:276.752000pt;}
.y57{bottom:279.728000pt;}
.y12d{bottom:282.508000pt;}
.y149{bottom:283.418667pt;}
.y3a{bottom:283.909333pt;}
.y1b4{bottom:285.209333pt;}
.y1b6{bottom:285.285333pt;}
.y221{bottom:285.581733pt;}
.y10d{bottom:289.636000pt;}
.y183{bottom:290.161333pt;}
.y18d{bottom:290.941333pt;}
.y1ca{bottom:291.517333pt;}
.y1e{bottom:291.624133pt;}
.y89{bottom:291.952000pt;}
.yc5{bottom:292.241333pt;}
.ye6{bottom:293.742667pt;}
.ya8{bottom:293.818667pt;}
.y157{bottom:295.609333pt;}
.y56{bottom:296.794667pt;}
.y213{bottom:297.583733pt;}
.y12c{bottom:299.574667pt;}
.y220{bottom:299.585733pt;}
.y118{bottom:300.088000pt;}
.y148{bottom:300.485333pt;}
.y39{bottom:300.976000pt;}
.y1f3{bottom:301.634800pt;}
.y1b3{bottom:302.276000pt;}
.y10c{bottom:306.702667pt;}
.y1d{bottom:306.958133pt;}
.y182{bottom:307.228000pt;}
.y18c{bottom:308.008000pt;}
.y1c9{bottom:308.584000pt;}
.y88{bottom:309.018667pt;}
.yc4{bottom:309.308000pt;}
.ye5{bottom:310.809333pt;}
.ya7{bottom:310.885333pt;}
.y212{bottom:313.585733pt;}
.y55{bottom:313.861333pt;}
.y76{bottom:316.436000pt;}
.y12b{bottom:316.641333pt;}
.y147{bottom:317.552000pt;}
.y38{bottom:318.042667pt;}
.y1b2{bottom:319.342667pt;}
.y1d6{bottom:321.426667pt;}
.y1c{bottom:322.292133pt;}
.y10b{bottom:323.769333pt;}
.y181{bottom:324.294667pt;}
.y18b{bottom:325.074667pt;}
.y1a3{bottom:325.174667pt;}
.y1c8{bottom:325.650667pt;}
.y87{bottom:326.085333pt;}
.yc3{bottom:326.374667pt;}
.ye4{bottom:327.876000pt;}
.ya6{bottom:327.952000pt;}
.y211{bottom:329.597067pt;}
.y54{bottom:330.928000pt;}
.y75{bottom:333.502667pt;}
.y12a{bottom:333.708000pt;}
.y1f2{bottom:333.977467pt;}
.y146{bottom:334.618667pt;}
.y1b1{bottom:336.409333pt;}
.y1b{bottom:337.626133pt;}
.y10a{bottom:340.836000pt;}
.y180{bottom:341.361333pt;}
.y18a{bottom:342.141333pt;}
.y1a2{bottom:342.241333pt;}
.y1c7{bottom:342.717333pt;}
.y86{bottom:343.152000pt;}
.yc2{bottom:343.441333pt;}
.ye3{bottom:344.942667pt;}
.ya5{bottom:345.018667pt;}
.y1ff{bottom:346.246667pt;}
.y53{bottom:347.994667pt;}
.y74{bottom:350.569333pt;}
.y129{bottom:350.774667pt;}
.y1f1{bottom:351.044133pt;}
.y145{bottom:351.685333pt;}
.y37{bottom:352.176000pt;}
.y1a{bottom:352.960133pt;}
.y1d3{bottom:353.476000pt;}
.y109{bottom:357.902667pt;}
.y17f{bottom:358.428000pt;}
.y189{bottom:359.208000pt;}
.y1a1{bottom:359.308000pt;}
.y1c6{bottom:359.784000pt;}
.y85{bottom:360.218667pt;}
.yc1{bottom:360.508000pt;}
.ye2{bottom:362.009333pt;}
.ya4{bottom:362.085333pt;}
.y73{bottom:367.636000pt;}
.y128{bottom:367.841333pt;}
.y1f0{bottom:368.110800pt;}
.y19{bottom:368.294133pt;}
.y144{bottom:368.752000pt;}
.y36{bottom:369.242667pt;}
.y1bf{bottom:370.470667pt;}
.y1b0{bottom:370.542667pt;}
.y1ac{bottom:372.653333pt;}
.y108{bottom:374.969333pt;}
.y198{bottom:375.494667pt;}
.y188{bottom:376.274667pt;}
.y1a0{bottom:376.374667pt;}
.y1c5{bottom:376.850667pt;}
.y84{bottom:377.285333pt;}
.yc0{bottom:377.574667pt;}
.ye1{bottom:379.076000pt;}
.ya3{bottom:379.152000pt;}
.y52{bottom:382.128000pt;}
.y18{bottom:383.628133pt;}
.y72{bottom:384.702667pt;}
.y127{bottom:384.908000pt;}
.y1ef{bottom:385.177467pt;}
.y143{bottom:385.818667pt;}
.y35{bottom:386.309333pt;}
.y1d2{bottom:387.609333pt;}
.y1ad{bottom:388.333333pt;}
.y107{bottom:392.036000pt;}
.y197{bottom:392.561333pt;}
.y187{bottom:393.341333pt;}
.y19f{bottom:393.441333pt;}
.y1c4{bottom:393.917333pt;}
.y83{bottom:394.352000pt;}
.ybf{bottom:394.641333pt;}
.y17d{bottom:395.756000pt;}
.ye0{bottom:396.142667pt;}
.ya2{bottom:396.218667pt;}
.y17{bottom:398.962133pt;}
.y51{bottom:399.194667pt;}
.y174{bottom:399.268000pt;}
.y71{bottom:401.769333pt;}
.y126{bottom:401.974667pt;}
.y1ee{bottom:402.244133pt;}
.y16e{bottom:402.885333pt;}
.y34{bottom:403.376000pt;}
.y1d1{bottom:404.676000pt;}
.y106{bottom:409.102667pt;}
.y196{bottom:409.628000pt;}
.y19e{bottom:410.508000pt;}
.y1c3{bottom:410.984000pt;}
.y82{bottom:411.418667pt;}
.ybe{bottom:411.708000pt;}
.y17c{bottom:412.822667pt;}
.ydf{bottom:413.209333pt;}
.ya1{bottom:413.285333pt;}
.y16{bottom:414.296133pt;}
.y1ab{bottom:416.057333pt;}
.y50{bottom:416.261333pt;}
.y70{bottom:418.836000pt;}
.y125{bottom:419.041333pt;}
.y1ed{bottom:419.310800pt;}
.y142{bottom:419.952000pt;}
.y33{bottom:420.442667pt;}
.y167{bottom:421.742667pt;}
.y105{bottom:426.169333pt;}
.y1d5{bottom:426.694667pt;}
.y19d{bottom:427.574667pt;}
.y1c2{bottom:428.050667pt;}
.y64{bottom:428.485333pt;}
.ybd{bottom:428.774667pt;}
.y168{bottom:430.242667pt;}
.yde{bottom:430.276000pt;}
.ya0{bottom:430.352000pt;}
.y4f{bottom:433.328000pt;}
.y210{bottom:434.785867pt;}
.y6f{bottom:435.902667pt;}
.y124{bottom:436.108000pt;}
.y1ec{bottom:436.377467pt;}
.y141{bottom:437.018667pt;}
.y32{bottom:437.509333pt;}
.y166{bottom:438.809333pt;}
.y104{bottom:443.236000pt;}
.y1d4{bottom:443.761333pt;}
.y19c{bottom:444.641333pt;}
.y1c1{bottom:445.117333pt;}
.y81{bottom:445.552000pt;}
.ybc{bottom:445.841333pt;}
.ydd{bottom:447.342667pt;}
.y9f{bottom:447.418667pt;}
.y20f{bottom:448.114267pt;}
.y6e{bottom:452.969333pt;}
.y123{bottom:453.174667pt;}
.y1eb{bottom:453.444133pt;}
.y140{bottom:454.085333pt;}
.y165{bottom:455.876000pt;}
.y20e{bottom:461.442667pt;}
.y19b{bottom:461.708000pt;}
.y63{bottom:462.618667pt;}
.ybb{bottom:462.908000pt;}
.ydc{bottom:464.409333pt;}
.y9e{bottom:464.485333pt;}
.y4e{bottom:467.461333pt;}
.y6d{bottom:470.036000pt;}
.y122{bottom:470.241333pt;}
.y1ea{bottom:470.510800pt;}
.y13f{bottom:471.152000pt;}
.y31{bottom:471.642667pt;}
.y164{bottom:472.942667pt;}
.y20d{bottom:474.771067pt;}
.y103{bottom:477.369333pt;}
.y19a{bottom:478.774667pt;}
.y15{bottom:479.632533pt;}
.y80{bottom:479.685333pt;}
.yba{bottom:479.974667pt;}
.ydb{bottom:481.476000pt;}
.y9d{bottom:481.552000pt;}
.y6c{bottom:487.102667pt;}
.y121{bottom:487.308000pt;}
.y1e9{bottom:487.577467pt;}
.y13e{bottom:488.218667pt;}
.y30{bottom:488.709333pt;}
.y163{bottom:490.009333pt;}
.y14{bottom:496.298133pt;}
.y62{bottom:496.752000pt;}
.yb9{bottom:497.041333pt;}
.yda{bottom:498.542667pt;}
.y9c{bottom:498.618667pt;}
.y20c{bottom:504.103200pt;}
.y6b{bottom:504.169333pt;}
.y120{bottom:504.374667pt;}
.y1e8{bottom:504.644133pt;}
.y13d{bottom:505.285333pt;}
.y2f{bottom:505.776000pt;}
.y162{bottom:507.076000pt;}
.y102{bottom:511.502667pt;}
.y13{bottom:512.963733pt;}
.y4d{bottom:513.818667pt;}
.yb8{bottom:514.108000pt;}
.yd9{bottom:515.609333pt;}
.y9b{bottom:515.685333pt;}
.y20b{bottom:518.103200pt;}
.y1af{bottom:518.822667pt;}
.y11f{bottom:521.441333pt;}
.y1e7{bottom:521.710800pt;}
.y13c{bottom:522.352000pt;}
.y2e{bottom:522.842667pt;}
.y1d9{bottom:524.142667pt;}
.y12{bottom:529.629333pt;}
.y4c{bottom:530.885333pt;}
.yb7{bottom:531.174667pt;}
.yd8{bottom:532.676000pt;}
.y9a{bottom:532.752000pt;}
.y20a{bottom:534.103200pt;}
.y11e{bottom:538.508000pt;}
.y1e6{bottom:538.777467pt;}
.y13b{bottom:539.418667pt;}
.y2d{bottom:539.909333pt;}
.y1d8{bottom:541.209333pt;}
.y4b{bottom:547.952000pt;}
.yb6{bottom:548.241333pt;}
.yd7{bottom:549.742667pt;}
.y99{bottom:549.818667pt;}
.y6a{bottom:549.906667pt;}
.y138{bottom:552.678667pt;}
.y11d{bottom:555.574667pt;}
.y1e5{bottom:555.844133pt;}
.y13a{bottom:556.485333pt;}
.y2c{bottom:556.974667pt;}
.y101{bottom:557.240000pt;}
.y1d7{bottom:558.276000pt;}
.y4a{bottom:565.018667pt;}
.yd6{bottom:566.809333pt;}
.y98{bottom:566.885333pt;}
.y69{bottom:566.973333pt;}
.y11c{bottom:572.641333pt;}
.y1e4{bottom:572.910800pt;}
.y139{bottom:573.552000pt;}
.y2b{bottom:574.041333pt;}
.y100{bottom:574.306667pt;}
.y61{bottom:582.085333pt;}
.yd5{bottom:583.876000pt;}
.y97{bottom:583.952000pt;}
.y68{bottom:584.040000pt;}
.y1e3{bottom:589.977467pt;}
.y156{bottom:590.618667pt;}
.yff{bottom:591.373333pt;}
.y49{bottom:599.152000pt;}
.y11a{bottom:600.932000pt;}
.yd4{bottom:600.942667pt;}
.y96{bottom:601.018667pt;}
.y1e2{bottom:607.044133pt;}
.y155{bottom:607.685333pt;}
.yfe{bottom:608.440000pt;}
.y48{bottom:616.218667pt;}
.yd3{bottom:618.009333pt;}
.yb5{bottom:618.085333pt;}
.y16d{bottom:624.752000pt;}
.y21f{bottom:624.880267pt;}
.y66{bottom:625.713333pt;}
.y67{bottom:628.113333pt;}
.y1e1{bottom:632.644133pt;}
.y47{bottom:633.285333pt;}
.yfa{bottom:635.076000pt;}
.y95{bottom:635.152000pt;}
.y17e{bottom:637.860000pt;}
.y21e{bottom:638.208667pt;}
.y209{bottom:638.880267pt;}
.y119{bottom:641.078667pt;}
.y16c{bottom:641.818667pt;}
.y65{bottom:642.780000pt;}
.y1e0{bottom:649.710800pt;}
.y46{bottom:650.352000pt;}
.y173{bottom:650.553333pt;}
.y21d{bottom:651.537067pt;}
.yd2{bottom:652.142667pt;}
.y208{bottom:652.208667pt;}
.yd1{bottom:652.218667pt;}
.y2a{bottom:652.513333pt;}
.y199{bottom:655.005333pt;}
.y1aa{bottom:657.490667pt;}
.y171{bottom:658.885333pt;}
.y21c{bottom:664.865467pt;}
.y207{bottom:665.537067pt;}
.y1df{bottom:666.777467pt;}
.y45{bottom:667.418667pt;}
.yfd{bottom:669.209333pt;}
.y1c0{bottom:672.262667pt;}
.y170{bottom:675.952000pt;}
.y206{bottom:678.865467pt;}
.y1de{bottom:683.844133pt;}
.y44{bottom:684.485333pt;}
.y154{bottom:686.276000pt;}
.y16f{bottom:693.018667pt;}
.y21b{bottom:694.193600pt;}
.yf{bottom:694.464667pt;}
.y1dd{bottom:700.910800pt;}
.y60{bottom:701.552000pt;}
.y205{bottom:708.197600pt;}
.ye{bottom:711.800667pt;}
.y1dc{bottom:717.977467pt;}
.y43{bottom:718.618667pt;}
.y153{bottom:718.938667pt;}
.y204{bottom:722.197600pt;}
.y11{bottom:728.872533pt;}
.y2{bottom:732.444933pt;}
.yd{bottom:734.803200pt;}
.y1db{bottom:735.044133pt;}
.y42{bottom:735.685333pt;}
.y203{bottom:738.197600pt;}
.y10{bottom:745.538133pt;}
.y1{bottom:747.324933pt;}
.y1da{bottom:752.110800pt;}
.yc{bottom:760.136533pt;}
.y202{bottom:780.034000pt;}
.y7f{bottom:786.141333pt;}
.y11b{bottom:787.053333pt;}
.h13{height:30.336000pt;}
.h1e{height:30.338000pt;}
.h1b{height:31.598400pt;}
.h1c{height:32.592000pt;}
.h1d{height:33.315200pt;}
.h18{height:34.444800pt;}
.h16{height:34.739200pt;}
.hf{height:34.886400pt;}
.h7{height:35.662400pt;}
.he{height:36.407467pt;}
.h8{height:36.584000pt;}
.h11{height:36.624000pt;}
.ha{height:37.290667pt;}
.hc{height:37.437867pt;}
.h19{height:38.808000pt;}
.h3{height:40.027200pt;}
.h4{height:40.264000pt;}
.hb{height:41.265067pt;}
.h5{height:41.536000pt;}
.h14{height:41.770667pt;}
.h10{height:46.613333pt;}
.h17{height:49.384139pt;}
.hd{height:52.693333pt;}
.h12{height:54.699232pt;}
.h6{height:59.437333pt;}
.h9{height:60.800000pt;}
.h15{height:70.933333pt;}
.h1a{height:83.290667pt;}
.h2{height:850.393333pt;}
.h0{height:850.560000pt;}
.h1{height:850.666667pt;}
.w3{width:369.726267pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.w2{width:559.370667pt;}
.x0{left:0.000000pt;}
.x4f{left:3.052000pt;}
.x2{left:71.810667pt;}
.x1{left:75.590533pt;}
.x39{left:90.708000pt;}
.x14{left:96.343067pt;}
.x35{left:98.268107pt;}
.x4c{left:100.847067pt;}
.x16{left:102.046667pt;}
.x34{left:104.572000pt;}
.x40{left:109.606667pt;}
.x47{left:112.890827pt;}
.x37{left:120.945333pt;}
.x32{left:125.240000pt;}
.x3a{left:126.580000pt;}
.x42{left:128.504000pt;}
.x31{left:138.512000pt;}
.x3f{left:139.598507pt;}
.x3c{left:144.383467pt;}
.x2c{left:147.358667pt;}
.x30{left:156.206667pt;}
.x43{left:158.740000pt;}
.xa{left:165.054667pt;}
.x38{left:171.184000pt;}
.x44{left:175.344000pt;}
.x3b{left:180.725333pt;}
.x4d{left:189.665333pt;}
.x2f{left:191.598667pt;}
.x6{left:204.870667pt;}
.x4e{left:207.874000pt;}
.x2e{left:209.294667pt;}
.x33{left:218.629333pt;}
.x13{left:231.414667pt;}
.x10{left:235.838667pt;}
.x2a{left:240.262667pt;}
.x21{left:243.954667pt;}
.xf{left:249.109333pt;}
.x48{left:251.017333pt;}
.xe{left:253.533333pt;}
.x36{left:264.566667pt;}
.x24{left:270.498667pt;}
.x8{left:280.077333pt;}
.x5{left:284.501333pt;}
.x28{left:288.925333pt;}
.x41{left:291.592000pt;}
.x15{left:293.349333pt;}
.xd{left:297.773333pt;}
.x3e{left:303.874667pt;}
.x49{left:312.181333pt;}
.x3d{left:313.742667pt;}
.x20{left:314.737333pt;}
.x19{left:323.585333pt;}
.x46{left:327.201333pt;}
.x12{left:333.165333pt;}
.x9{left:337.589333pt;}
.x45{left:339.961467pt;}
.x1f{left:345.705333pt;}
.x11{left:350.860000pt;}
.x26{left:354.553333pt;}
.x1c{left:363.401333pt;}
.x1a{left:367.825333pt;}
.x1b{left:372.249333pt;}
.x2b{left:377.404000pt;}
.xb{left:381.828000pt;}
.x3{left:390.676000pt;}
.x4a{left:396.017333pt;}
.x27{left:403.216000pt;}
.x4b{left:409.205333pt;}
.x1e{left:412.064000pt;}
.x1d{left:416.488000pt;}
.x22{left:420.912000pt;}
.x23{left:429.760000pt;}
.x29{left:441.545333pt;}
.x2d{left:444.052000pt;}
.xc{left:447.125333pt;}
.x7{left:448.640000pt;}
.x4{left:451.237333pt;}
.x25{left:472.069333pt;}
.x17{left:473.984000pt;}
.x18{left:476.293333pt;}
}


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