
/* 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_080fd02dbd4b.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_d38b24da8cab.woff")format("woff");}.ff2{font-family:ff2;line-height:1.192000;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_61693201b221.woff")format("woff");}.ff3{font-family:ff3;line-height:0.842000;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_7c36e29d3ce3.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_a99e9005e8da.woff")format("woff");}.ff5{font-family:ff5;line-height:1.192000;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_927ef2f9302d.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_ba5802e799bc.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_0dd1b62446f4.woff")format("woff");}.ff8{font-family:ff8;line-height:0.923000;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_74f8eeb42cf3.woff")format("woff");}.ff9{font-family:ff9;line-height:0.916413;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_ce10b87e0940.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_c793d280e825.woff")format("woff");}.ffb{font-family:ffb;line-height:1.072000;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_d5749eec7cae.woff")format("woff");}.ffc{font-family:ffc;line-height:0.902000;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_7758e11591ec.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_f34a2fcc704c.woff")format("woff");}.ffe{font-family:ffe;line-height:0.775000;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_9e32e6e33d41.woff")format("woff");}.fff{font-family:fff;line-height:1.000000;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_9a2ecd79e1b1.woff")format("woff");}.ff10{font-family:ff10;line-height:0.727000;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_03ea961b2e44.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_facbcf9c23a0.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_cbc8946e78bc.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_19da9023a3a7.woff")format("woff");}.ff14{font-family:ff14;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;}
.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;}
.v4{vertical-align:16.878000px;}
.v1{vertical-align:23.748000px;}
.v2{vertical-align:26.028000px;}
.v3{vertical-align:31.236000px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.003600px;}
.ls1f{letter-spacing:0.024600px;}
.ls30{letter-spacing:0.138000px;}
.ls9{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.662400px;}
.ls1a{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.783000px;}
.ls4{letter-spacing:1.395000px;}
.ls33{letter-spacing:1.620000px;}
.ls2{letter-spacing:1.650000px;}
.ls31{letter-spacing:1.890000px;}
.ls29{letter-spacing:2.991120px;}
.ls5{letter-spacing:3.091200px;}
.ls1{letter-spacing:3.150000px;}
.ls3{letter-spacing:3.720000px;}
.ls24{letter-spacing:9.116400px;}
.ls2e{letter-spacing:11.674800px;}
.ls25{letter-spacing:11.774400px;}
.ls26{letter-spacing:12.451200px;}
.ls22{letter-spacing:12.552000px;}
.ls20{letter-spacing:14.462400px;}
.ls8{letter-spacing:14.778000px;}
.lsc{letter-spacing:14.809200px;}
.ls14{letter-spacing:15.251760px;}
.ls13{letter-spacing:15.462000px;}
.ls12{letter-spacing:15.525120px;}
.lse{letter-spacing:15.996000px;}
.ls17{letter-spacing:16.036320px;}
.ls27{letter-spacing:16.038000px;}
.ls2a{letter-spacing:16.110000px;}
.ls2b{letter-spacing:16.115760px;}
.ls15{letter-spacing:16.198080px;}
.ls19{letter-spacing:16.402800px;}
.ls1b{letter-spacing:16.649760px;}
.ls11{letter-spacing:16.892400px;}
.lsf{letter-spacing:16.988400px;}
.ls7{letter-spacing:17.031120px;}
.ls1d{letter-spacing:17.123760px;}
.lsd{letter-spacing:17.193120px;}
.ls16{letter-spacing:17.758800px;}
.ls2f{letter-spacing:18.004800px;}
.ls1e{letter-spacing:18.713760px;}
.ls1c{letter-spacing:19.049760px;}
.lsa{letter-spacing:20.123760px;}
.ls18{letter-spacing:21.523200px;}
.ls10{letter-spacing:21.723120px;}
.lsb{letter-spacing:22.858080px;}
.ls23{letter-spacing:23.901600px;}
.ls28{letter-spacing:48.703200px;}
.ls2d{letter-spacing:87.312000px;}
.ls2c{letter-spacing:88.560000px;}
.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;}
}
.ws3a{word-spacing:-105.000000px;}
.ws14{word-spacing:-90.000000px;}
.ws11d{word-spacing:-81.585000px;}
.ws17{word-spacing:-78.000000px;}
.ws10f{word-spacing:-69.000000px;}
.ws3c{word-spacing:-68.619600px;}
.ws154{word-spacing:-68.531400px;}
.ws11f{word-spacing:-68.178600px;}
.ws11e{word-spacing:-67.500000px;}
.ws153{word-spacing:-67.410000px;}
.ws3b{word-spacing:-67.320000px;}
.ws227{word-spacing:-67.140000px;}
.ws15{word-spacing:-66.000000px;}
.ws155{word-spacing:-61.740000px;}
.ws1c{word-spacing:-58.344000px;}
.ws1b{word-spacing:-55.200000px;}
.ws15b{word-spacing:-54.027000px;}
.ws5a{word-spacing:-53.682000px;}
.wse6{word-spacing:-53.613000px;}
.ws137{word-spacing:-53.406000px;}
.ws16a{word-spacing:-53.337000px;}
.ws1f4{word-spacing:-52.236000px;}
.ws1d{word-spacing:-49.500000px;}
.ws19{word-spacing:-49.434000px;}
.ws18{word-spacing:-49.368000px;}
.ws24{word-spacing:-49.236000px;}
.wsb0{word-spacing:-48.000000px;}
.ws1c7{word-spacing:-46.740000px;}
.ws22a{word-spacing:-46.478400px;}
.ws1f{word-spacing:-46.200000px;}
.ws1d4{word-spacing:-46.086000px;}
.ws232{word-spacing:-45.816000px;}
.ws231{word-spacing:-45.429600px;}
.ws1e7{word-spacing:-45.420000px;}
.ws120{word-spacing:-45.360000px;}
.ws3d{word-spacing:-45.300000px;}
.ws188{word-spacing:-45.060000px;}
.ws230{word-spacing:-44.601600px;}
.ws1dc{word-spacing:-44.128800px;}
.ws1d5{word-spacing:-43.428000px;}
.ws22e{word-spacing:-43.166400px;}
.ws22b{word-spacing:-43.111200px;}
.ws21{word-spacing:-43.000800px;}
.ws229{word-spacing:-42.890400px;}
.ws1dd{word-spacing:-42.780000px;}
.ws12f{word-spacing:-42.066000px;}
.ws12b{word-spacing:-42.012000px;}
.ws59{word-spacing:-41.958000px;}
.ws168{word-spacing:-41.904000px;}
.ws22f{word-spacing:-41.850000px;}
.ws22{word-spacing:-41.786400px;}
.ws189{word-spacing:-41.742000px;}
.ws1e{word-spacing:-41.731200px;}
.ws1a{word-spacing:-41.676000px;}
.ws23{word-spacing:-41.620800px;}
.ws20{word-spacing:-41.455200px;}
.ws1d6{word-spacing:-40.848000px;}
.ws1d8{word-spacing:-39.516000px;}
.ws1de{word-spacing:-39.156000px;}
.ws22d{word-spacing:-39.081600px;}
.ws22c{word-spacing:-38.695200px;}
.ws16{word-spacing:-37.646400px;}
.ws20a{word-spacing:-37.176000px;}
.ws228{word-spacing:-36.984000px;}
.wsac{word-spacing:-36.432000px;}
.ws1d0{word-spacing:-35.714400px;}
.ws212{word-spacing:-35.496000px;}
.ws1d7{word-spacing:-35.340000px;}
.ws4c{word-spacing:-34.555200px;}
.ws10e{word-spacing:-33.175200px;}
.ws1e2{word-spacing:-33.036000px;}
.ws1cf{word-spacing:-31.298400px;}
.ws1e8{word-spacing:-29.833320px;}
.ws16f{word-spacing:-28.704000px;}
.ws1d2{word-spacing:-27.103200px;}
.ws115{word-spacing:-25.557600px;}
.ws58{word-spacing:-25.536000px;}
.ws15d{word-spacing:-25.502400px;}
.ws14f{word-spacing:-25.447200px;}
.ws114{word-spacing:-25.392000px;}
.wsc9{word-spacing:-25.336800px;}
.wsff{word-spacing:-25.281600px;}
.ws144{word-spacing:-25.226400px;}
.ws9e{word-spacing:-25.171200px;}
.ws124{word-spacing:-25.116000px;}
.wsed{word-spacing:-25.060800px;}
.ws9b{word-spacing:-25.005600px;}
.ws9d{word-spacing:-24.950400px;}
.wsbe{word-spacing:-24.895200px;}
.wsb5{word-spacing:-24.840000px;}
.wsec{word-spacing:-24.784800px;}
.ws7e{word-spacing:-24.729600px;}
.wsc3{word-spacing:-24.674400px;}
.ws2b{word-spacing:-24.619200px;}
.ws139{word-spacing:-24.564000px;}
.ws29{word-spacing:-24.508800px;}
.ws8f{word-spacing:-24.453600px;}
.ws101{word-spacing:-24.398400px;}
.wsdc{word-spacing:-24.343200px;}
.wscf{word-spacing:-24.288000px;}
.wse2{word-spacing:-24.232800px;}
.wsf6{word-spacing:-24.188640px;}
.wsd8{word-spacing:-24.177600px;}
.wsd9{word-spacing:-24.122400px;}
.ws75{word-spacing:-24.067200px;}
.wsda{word-spacing:-24.012000px;}
.wse9{word-spacing:-23.956800px;}
.ws10a{word-spacing:-23.920800px;}
.wsc0{word-spacing:-23.901600px;}
.wsf4{word-spacing:-23.846400px;}
.ws9f{word-spacing:-23.794800px;}
.ws4a{word-spacing:-23.791200px;}
.ws121{word-spacing:-23.775600px;}
.ws5c{word-spacing:-23.736000px;}
.ws10d{word-spacing:-23.680800px;}
.ws2a{word-spacing:-23.625600px;}
.wsd2{word-spacing:-23.570400px;}
.wsf1{word-spacing:-23.515200px;}
.ws122{word-spacing:-23.485200px;}
.ws72{word-spacing:-23.460000px;}
.ws219{word-spacing:-23.410800px;}
.ws96{word-spacing:-23.404800px;}
.wsf5{word-spacing:-23.349600px;}
.ws10c{word-spacing:-23.294400px;}
.ws1f5{word-spacing:-23.248800px;}
.wsea{word-spacing:-23.239200px;}
.ws1f6{word-spacing:-23.193600px;}
.wse5{word-spacing:-23.184000px;}
.wsb8{word-spacing:-23.128800px;}
.wsdf{word-spacing:-23.073600px;}
.wsc7{word-spacing:-23.018400px;}
.wsb3{word-spacing:-22.963200px;}
.wsce{word-spacing:-22.908000px;}
.ws89{word-spacing:-22.852800px;}
.ws204{word-spacing:-22.826400px;}
.ws7c{word-spacing:-22.797600px;}
.ws4b{word-spacing:-22.742400px;}
.ws47{word-spacing:-22.687200px;}
.ws49{word-spacing:-22.632000px;}
.wsfc{word-spacing:-22.576800px;}
.ws131{word-spacing:-22.543200px;}
.wseb{word-spacing:-22.521600px;}
.ws74{word-spacing:-22.466400px;}
.ws102{word-spacing:-22.411200px;}
.wsc2{word-spacing:-22.356000px;}
.ws200{word-spacing:-22.344000px;}
.ws34{word-spacing:-22.300800px;}
.ws99{word-spacing:-22.245600px;}
.ws1fd{word-spacing:-22.218000px;}
.ws203{word-spacing:-22.191600px;}
.wsba{word-spacing:-22.190400px;}
.ws12c{word-spacing:-22.136400px;}
.ws48{word-spacing:-22.135200px;}
.ws138{word-spacing:-22.128000px;}
.wsa0{word-spacing:-22.080000px;}
.wsa7{word-spacing:-22.024800px;}
.ws108{word-spacing:-21.969600px;}
.ws51{word-spacing:-21.914400px;}
.wsee{word-spacing:-21.859200px;}
.ws4d{word-spacing:-21.804000px;}
.ws105{word-spacing:-21.748800px;}
.wsa8{word-spacing:-21.693600px;}
.wsbb{word-spacing:-21.638400px;}
.wsb2{word-spacing:-21.583200px;}
.ws1c8{word-spacing:-21.552600px;}
.wsa1{word-spacing:-21.528000px;}
.wsdd{word-spacing:-21.472800px;}
.ws123{word-spacing:-21.470400px;}
.ws90{word-spacing:-21.417600px;}
.ws86{word-spacing:-21.362400px;}
.ws1bd{word-spacing:-21.324000px;}
.ws36{word-spacing:-21.307200px;}
.ws9a{word-spacing:-21.252000px;}
.wsfd{word-spacing:-21.196800px;}
.wsf3{word-spacing:-21.141600px;}
.ws41{word-spacing:-21.086400px;}
.ws64{word-spacing:-21.031200px;}
.ws30{word-spacing:-20.976000px;}
.wsbd{word-spacing:-20.959200px;}
.ws39{word-spacing:-20.920800px;}
.wsbc{word-spacing:-20.894400px;}
.ws201{word-spacing:-20.870400px;}
.ws8e{word-spacing:-20.865600px;}
.ws81{word-spacing:-20.810400px;}
.ws4e{word-spacing:-20.755200px;}
.ws62{word-spacing:-20.700000px;}
.ws60{word-spacing:-20.644800px;}
.ws209{word-spacing:-20.642400px;}
.ws46{word-spacing:-20.589600px;}
.ws45{word-spacing:-20.534400px;}
.wsfa{word-spacing:-20.502000px;}
.wse0{word-spacing:-20.479200px;}
.ws12e{word-spacing:-20.439600px;}
.wse8{word-spacing:-20.424000px;}
.ws63{word-spacing:-20.368800px;}
.ws4f{word-spacing:-20.313600px;}
.ws7d{word-spacing:-20.258400px;}
.wsa9{word-spacing:-20.203200px;}
.ws88{word-spacing:-20.148000px;}
.wse4{word-spacing:-20.092800px;}
.ws6c{word-spacing:-20.037600px;}
.ws1fc{word-spacing:-20.026800px;}
.ws6d{word-spacing:-19.982400px;}
.ws218{word-spacing:-19.945200px;}
.wsca{word-spacing:-19.927200px;}
.ws61{word-spacing:-19.872000px;}
.ws6b{word-spacing:-19.816800px;}
.ws97{word-spacing:-19.761600px;}
.wsef{word-spacing:-19.706400px;}
.ws50{word-spacing:-19.651200px;}
.ws12d{word-spacing:-19.646400px;}
.ws6a{word-spacing:-19.596000px;}
.ws8d{word-spacing:-19.540800px;}
.ws207{word-spacing:-19.507200px;}
.wsa3{word-spacing:-19.485600px;}
.ws26{word-spacing:-19.430400px;}
.ws37{word-spacing:-19.375200px;}
.ws43{word-spacing:-19.320000px;}
.ws38{word-spacing:-19.264800px;}
.ws2c{word-spacing:-19.209600px;}
.wsb9{word-spacing:-19.154400px;}
.ws31{word-spacing:-19.099200px;}
.wsfb{word-spacing:-19.084800px;}
.ws210{word-spacing:-19.058400px;}
.ws83{word-spacing:-19.044000px;}
.ws211{word-spacing:-19.003200px;}
.wse3{word-spacing:-18.988800px;}
.ws19f{word-spacing:-18.974400px;}
.ws135{word-spacing:-18.969600px;}
.ws52{word-spacing:-18.960000px;}
.ws7f{word-spacing:-18.933600px;}
.ws1f9{word-spacing:-18.924000px;}
.ws141{word-spacing:-18.912000px;}
.ws5f{word-spacing:-18.878400px;}
.ws1fb{word-spacing:-18.876000px;}
.ws10b{word-spacing:-18.871200px;}
.ws78{word-spacing:-18.823200px;}
.ws1fa{word-spacing:-18.822000px;}
.ws1a4{word-spacing:-18.816000px;}
.ws35{word-spacing:-18.768000px;}
.ws1ff{word-spacing:-18.747600px;}
.ws5d{word-spacing:-18.712800px;}
.ws2d{word-spacing:-18.657600px;}
.wsc4{word-spacing:-18.602400px;}
.ws73{word-spacing:-18.547200px;}
.ws71{word-spacing:-18.528000px;}
.ws91{word-spacing:-18.492000px;}
.ws28{word-spacing:-18.436800px;}
.ws156{word-spacing:-18.432000px;}
.ws146{word-spacing:-18.393600px;}
.ws215{word-spacing:-18.384000px;}
.ws98{word-spacing:-18.381600px;}
.ws202{word-spacing:-18.378000px;}
.ws9c{word-spacing:-18.326400px;}
.ws40{word-spacing:-18.271200px;}
.wsf2{word-spacing:-18.216000px;}
.ws213{word-spacing:-18.192000px;}
.ws69{word-spacing:-18.160800px;}
.wsc5{word-spacing:-18.105600px;}
.ws1fe{word-spacing:-18.086400px;}
.ws92{word-spacing:-18.050400px;}
.ws95{word-spacing:-17.995200px;}
.ws94{word-spacing:-17.964000px;}
.wsd4{word-spacing:-17.940000px;}
.ws5b{word-spacing:-17.884800px;}
.ws68{word-spacing:-17.829600px;}
.ws93{word-spacing:-17.809200px;}
.wsaf{word-spacing:-17.808000px;}
.ws32{word-spacing:-17.774400px;}
.ws27{word-spacing:-17.719200px;}
.ws57{word-spacing:-17.664000px;}
.ws104{word-spacing:-17.616000px;}
.wsc8{word-spacing:-17.608800px;}
.ws208{word-spacing:-17.563200px;}
.ws77{word-spacing:-17.553600px;}
.ws85{word-spacing:-17.498400px;}
.ws5e{word-spacing:-17.443200px;}
.ws133{word-spacing:-17.407200px;}
.ws3e{word-spacing:-17.388000px;}
.wsf0{word-spacing:-17.332800px;}
.ws19e{word-spacing:-17.280000px;}
.wsc6{word-spacing:-17.277600px;}
.ws205{word-spacing:-17.253600px;}
.ws20e{word-spacing:-17.232000px;}
.wsb1{word-spacing:-17.222400px;}
.ws54{word-spacing:-17.184000px;}
.wsa6{word-spacing:-17.167200px;}
.ws65{word-spacing:-17.112000px;}
.ws20c{word-spacing:-17.088000px;}
.wsc1{word-spacing:-17.056800px;}
.ws79{word-spacing:-17.032800px;}
.wsbf{word-spacing:-17.001600px;}
.wscb{word-spacing:-16.946400px;}
.ws21a{word-spacing:-16.896000px;}
.wscc{word-spacing:-16.891200px;}
.wsa4{word-spacing:-16.836000px;}
.ws1a0{word-spacing:-16.814400px;}
.ws8c{word-spacing:-16.780800px;}
.ws80{word-spacing:-16.725600px;}
.ws70{word-spacing:-16.704000px;}
.wsfe{word-spacing:-16.670400px;}
.ws111{word-spacing:-16.615200px;}
.wsd7{word-spacing:-16.608000px;}
.ws82{word-spacing:-16.560000px;}
.ws199{word-spacing:-16.512000px;}
.wsde{word-spacing:-16.504800px;}
.ws55{word-spacing:-16.464000px;}
.ws2f{word-spacing:-16.449600px;}
.ws15a{word-spacing:-16.394400px;}
.wscd{word-spacing:-16.339200px;}
.ws1f8{word-spacing:-16.332000px;}
.ws1f3{word-spacing:-16.320000px;}
.ws1f7{word-spacing:-16.314000px;}
.ws136{word-spacing:-16.284000px;}
.ws198{word-spacing:-16.272000px;}
.ws2e{word-spacing:-16.228800px;}
.ws67{word-spacing:-16.173600px;}
.ws19c{word-spacing:-16.128000px;}
.ws8b{word-spacing:-16.118400px;}
.wsae{word-spacing:-16.080000px;}
.ws87{word-spacing:-16.063200px;}
.ws53{word-spacing:-16.032000px;}
.wsa5{word-spacing:-16.008000px;}
.wsb6{word-spacing:-15.952800px;}
.wsb4{word-spacing:-15.897600px;}
.ws191{word-spacing:-15.888000px;}
.wsa2{word-spacing:-15.842400px;}
.wsd3{word-spacing:-15.787200px;}
.ws44{word-spacing:-15.732000px;}
.ws140{word-spacing:-15.696000px;}
.wse7{word-spacing:-15.676800px;}
.ws13f{word-spacing:-15.648000px;}
.ws84{word-spacing:-15.621600px;}
.ws126{word-spacing:-15.600000px;}
.ws206{word-spacing:-15.592800px;}
.ws130{word-spacing:-15.566400px;}
.ws1a7{word-spacing:-15.552000px;}
.ws100{word-spacing:-15.511200px;}
.ws20f{word-spacing:-15.504000px;}
.ws7a{word-spacing:-15.456000px;}
.ws18e{word-spacing:-15.408000px;}
.ws13a{word-spacing:-15.400800px;}
.ws16d{word-spacing:-15.345600px;}
.ws214{word-spacing:-15.312000px;}
.ws13b{word-spacing:-15.290400px;}
.ws106{word-spacing:-15.235200px;}
.ws76{word-spacing:-15.180000px;}
.ws107{word-spacing:-15.124800px;}
.ws217{word-spacing:-15.096000px;}
.ws6e{word-spacing:-15.072000px;}
.wsf8{word-spacing:-15.069600px;}
.ws1cd{word-spacing:-15.024000px;}
.ws109{word-spacing:-15.014400px;}
.ws195{word-spacing:-14.976000px;}
.ws25{word-spacing:-14.959200px;}
.ws13c{word-spacing:-14.904000px;}
.ws19a{word-spacing:-14.880000px;}
.ws132{word-spacing:-14.848800px;}
.wsdb{word-spacing:-14.793600px;}
.ws103{word-spacing:-14.784000px;}
.ws33{word-spacing:-14.738400px;}
.ws19d{word-spacing:-14.736000px;}
.ws8a{word-spacing:-14.683200px;}
.ws56{word-spacing:-14.640000px;}
.wsd1{word-spacing:-14.628000px;}
.ws6f{word-spacing:-14.592000px;}
.ws142{word-spacing:-14.572800px;}
.ws129{word-spacing:-14.544000px;}
.ws42{word-spacing:-14.517600px;}
.wsd5{word-spacing:-14.462400px;}
.ws1a8{word-spacing:-14.448000px;}
.ws7b{word-spacing:-14.407200px;}
.ws13e{word-spacing:-14.400000px;}
.ws171{word-spacing:-14.352000px;}
.ws16c{word-spacing:-14.296800px;}
.ws18a{word-spacing:-14.256000px;}
.wsd0{word-spacing:-14.241600px;}
.wsd6{word-spacing:-14.186400px;}
.wse1{word-spacing:-14.131200px;}
.ws66{word-spacing:-14.076000px;}
.ws14a{word-spacing:-14.020800px;}
.ws196{word-spacing:-14.016000px;}
.ws190{word-spacing:-13.965600px;}
.ws16b{word-spacing:-13.910400px;}
.ws159{word-spacing:-13.855200px;}
.ws176{word-spacing:-13.800000px;}
.ws116{word-spacing:-13.744800px;}
.ws1bc{word-spacing:-13.728000px;}
.ws14b{word-spacing:-13.689600px;}
.ws235{word-spacing:-13.671000px;}
.ws11c{word-spacing:-13.634400px;}
.ws1ba{word-spacing:-13.632000px;}
.wsf7{word-spacing:-13.579200px;}
.ws216{word-spacing:-13.536000px;}
.ws172{word-spacing:-13.524000px;}
.wsaa{word-spacing:-13.468800px;}
.ws18d{word-spacing:-13.440000px;}
.ws16e{word-spacing:-13.413600px;}
.ws18c{word-spacing:-13.392000px;}
.ws177{word-spacing:-13.358400px;}
.ws12a{word-spacing:-13.344000px;}
.ws152{word-spacing:-13.303200px;}
.ws1a5{word-spacing:-13.296000px;}
.ws18b{word-spacing:-13.248000px;}
.wsad{word-spacing:-13.200000px;}
.ws113{word-spacing:-13.192800px;}
.ws14c{word-spacing:-13.137600px;}
.ws1af{word-spacing:-13.082400px;}
.ws181{word-spacing:-13.027200px;}
.ws15c{word-spacing:-12.972000px;}
.ws21b{word-spacing:-12.931200px;}
.ws145{word-spacing:-12.916800px;}
.ws1a2{word-spacing:-12.864000px;}
.ws1b4{word-spacing:-12.861600px;}
.ws197{word-spacing:-12.816000px;}
.ws20b{word-spacing:-12.768000px;}
.ws178{word-spacing:-12.751200px;}
.ws18f{word-spacing:-12.720000px;}
.ws170{word-spacing:-12.696000px;}
.ws194{word-spacing:-12.672000px;}
.ws186{word-spacing:-12.640800px;}
.ws1c6{word-spacing:-12.585600px;}
.ws20d{word-spacing:-12.576000px;}
.ws15e{word-spacing:-12.530400px;}
.ws19b{word-spacing:-12.528000px;}
.ws1a6{word-spacing:-12.480000px;}
.ws1c2{word-spacing:-12.420000px;}
.ws162{word-spacing:-12.364800px;}
.ws175{word-spacing:-12.309600px;}
.ws1a3{word-spacing:-12.288000px;}
.ws1ad{word-spacing:-12.254400px;}
.ws1b8{word-spacing:-12.144000px;}
.ws128{word-spacing:-12.096000px;}
.ws21d{word-spacing:-12.033600px;}
.wsab{word-spacing:-12.000000px;}
.ws173{word-spacing:-11.978400px;}
.ws21e{word-spacing:-11.923200px;}
.ws1db{word-spacing:-11.812800px;}
.ws17f{word-spacing:-11.757600px;}
.ws1c5{word-spacing:-11.702400px;}
.ws147{word-spacing:-11.647200px;}
.ws1f2{word-spacing:-11.637600px;}
.ws1ee{word-spacing:-11.592000px;}
.ws127{word-spacing:-11.568000px;}
.ws151{word-spacing:-11.536800px;}
.ws13d{word-spacing:-11.424000px;}
.ws143{word-spacing:-11.328000px;}
.ws174{word-spacing:-11.316000px;}
.ws1ae{word-spacing:-11.260800px;}
.ws1f0{word-spacing:-11.095200px;}
.wsb{word-spacing:-11.048400px;}
.ws1e1{word-spacing:-11.040000px;}
.ws134{word-spacing:-10.992000px;}
.ws179{word-spacing:-10.984800px;}
.ws187{word-spacing:-10.929600px;}
.ws165{word-spacing:-10.874400px;}
.ws1c1{word-spacing:-10.764000px;}
.ws1ce{word-spacing:-10.653600px;}
.ws163{word-spacing:-10.598400px;}
.ws234{word-spacing:-10.544400px;}
.ws164{word-spacing:-10.543200px;}
.ws1ec{word-spacing:-10.377600px;}
.ws1e4{word-spacing:-10.156800px;}
.ws183{word-spacing:-10.101600px;}
.wsa{word-spacing:-10.098000px;}
.ws125{word-spacing:-10.095600px;}
.ws11b{word-spacing:-9.991200px;}
.ws1b0{word-spacing:-9.936000px;}
.ws1b3{word-spacing:-9.825600px;}
.ws17d{word-spacing:-9.604800px;}
.ws1cc{word-spacing:-9.549600px;}
.ws110{word-spacing:-9.494400px;}
.ws150{word-spacing:-9.439200px;}
.ws167{word-spacing:-9.384000px;}
.ws1a1{word-spacing:-9.264000px;}
.ws220{word-spacing:-9.163200px;}
.ws112{word-spacing:-9.108000px;}
.ws1c0{word-spacing:-8.942400px;}
.ws1be{word-spacing:-8.889120px;}
.ws17e{word-spacing:-8.666400px;}
.ws1b1{word-spacing:-8.611200px;}
.ws1c9{word-spacing:-8.556000px;}
.ws158{word-spacing:-8.409600px;}
.ws1ac{word-spacing:-8.335200px;}
.ws21c{word-spacing:-8.283600px;}
.ws148{word-spacing:-8.114400px;}
.ws161{word-spacing:-7.893600px;}
.wsf9{word-spacing:-7.766400px;}
.ws17b{word-spacing:-7.617600px;}
.ws180{word-spacing:-7.562400px;}
.wsb7{word-spacing:-7.503600px;}
.ws221{word-spacing:-7.452000px;}
.ws224{word-spacing:-7.231200px;}
.ws1a9{word-spacing:-7.149120px;}
.ws1cb{word-spacing:-6.955200px;}
.ws1b7{word-spacing:-6.900000px;}
.ws222{word-spacing:-6.624000px;}
.ws169{word-spacing:-6.603600px;}
.ws1d3{word-spacing:-6.513600px;}
.ws1e0{word-spacing:-6.486000px;}
.ws1d1{word-spacing:-6.458400px;}
.ws1bf{word-spacing:-6.348000px;}
.ws184{word-spacing:-6.292800px;}
.ws21f{word-spacing:-5.851200px;}
.ws1c3{word-spacing:-5.685600px;}
.ws17a{word-spacing:-5.354400px;}
.ws1ed{word-spacing:-5.244000px;}
.ws185{word-spacing:-5.188800px;}
.ws15f{word-spacing:-4.692000px;}
.ws149{word-spacing:-4.471200px;}
.ws14e{word-spacing:-4.360800px;}
.ws225{word-spacing:-4.305600px;}
.ws1eb{word-spacing:-4.275600px;}
.ws157{word-spacing:-4.239600px;}
.ws166{word-spacing:-4.084800px;}
.ws3f{word-spacing:-4.047120px;}
.ws1e9{word-spacing:-3.987600px;}
.ws1ea{word-spacing:-3.885600px;}
.ws1f1{word-spacing:-3.855600px;}
.ws1b9{word-spacing:-3.129600px;}
.ws1bb{word-spacing:-3.096000px;}
.ws223{word-spacing:-2.870400px;}
.ws193{word-spacing:-2.679600px;}
.ws182{word-spacing:-1.821600px;}
.ws192{word-spacing:-1.656000px;}
.ws10{word-spacing:-1.581000px;}
.ws9{word-spacing:-1.283400px;}
.ws119{word-spacing:-1.269600px;}
.wse{word-spacing:-1.224000px;}
.ws233{word-spacing:-0.567000px;}
.ws14d{word-spacing:-0.496800px;}
.ws11{word-spacing:-0.408000px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:0.613800px;}
.wsf{word-spacing:0.765000px;}
.ws1c4{word-spacing:1.104000px;}
.ws1b2{word-spacing:1.269600px;}
.ws12{word-spacing:2.142000px;}
.ws1ef{word-spacing:2.288400px;}
.wsc{word-spacing:2.399400px;}
.ws11a{word-spacing:2.870400px;}
.ws8{word-spacing:3.069000px;}
.ws1{word-spacing:3.180600px;}
.ws3{word-spacing:3.348000px;}
.ws1b6{word-spacing:3.532800px;}
.ws2{word-spacing:3.571200px;}
.ws5{word-spacing:3.906000px;}
.ws1aa{word-spacing:3.974400px;}
.ws6{word-spacing:4.408200px;}
.ws1ca{word-spacing:4.581600px;}
.ws160{word-spacing:5.464800px;}
.ws13{word-spacing:5.814000px;}
.ws1b5{word-spacing:6.403200px;}
.ws4{word-spacing:6.863400px;}
.ws17c{word-spacing:6.900000px;}
.ws1e6{word-spacing:7.120800px;}
.ws117{word-spacing:7.507200px;}
.wsd{word-spacing:9.486000px;}
.ws1ab{word-spacing:9.880800px;}
.ws226{word-spacing:11.536800px;}
.ws1da{word-spacing:20.368800px;}
.ws1d9{word-spacing:35.438400px;}
.ws1e5{word-spacing:54.979200px;}
.ws118{word-spacing:67.288800px;}
.ws1df{word-spacing:104.659200px;}
.ws1e3{word-spacing:181.387200px;}
._3b{margin-left:-13.104000px;}
._3a{margin-left:-10.544400px;}
._3c{margin-left:-9.487800px;}
._1f{margin-left:-8.035800px;}
._20{margin-left:-6.336000px;}
._11{margin-left:-5.244000px;}
._2{margin-left:-3.794400px;}
._1{margin-left:-2.176200px;}
._0{margin-left:-1.116000px;}
._3{width:1.350000px;}
._5{width:2.453040px;}
._18{width:3.736800px;}
._34{width:4.968000px;}
._13{width:6.000000px;}
._15{width:8.059200px;}
._8{width:9.770400px;}
._d{width:10.831200px;}
._a{width:11.868000px;}
._7{width:13.638000px;}
._b{width:14.904000px;}
._9{width:16.583400px;}
._4{width:17.802000px;}
._c{width:18.945600px;}
._6{width:20.613000px;}
._22{width:21.917400px;}
._26{width:23.228400px;}
._1a{width:24.422400px;}
._1e{width:25.683000px;}
._21{width:27.592200px;}
._24{width:28.794600px;}
._30{width:30.259200px;}
._1c{width:31.641600px;}
._23{width:32.966400px;}
._31{width:34.744200px;}
._1d{width:36.086400px;}
._35{width:37.429200px;}
._32{width:39.822600px;}
._1b{width:40.958400px;}
._25{width:42.152400px;}
._39{width:45.003600px;}
._37{width:53.875200px;}
._38{width:64.798200px;}
._27{width:66.295200px;}
._2d{width:67.392000px;}
._33{width:71.982000px;}
._29{width:73.062000px;}
._28{width:74.358000px;}
._2f{width:75.438000px;}
._2a{width:76.788000px;}
._36{width:78.354000px;}
._2b{width:83.376000px;}
._2c{width:84.402000px;}
._2e{width:85.482000px;}
._19{width:86.724000px;}
._f{width:87.984000px;}
._17{width:89.100000px;}
._12{width:90.624000px;}
._e{width:93.312000px;}
._14{width:96.012000px;}
._10{width:97.578000px;}
._16{width:99.684000px;}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:33.600000px;}
.fsc{font-size:38.640000px;}
.fs8{font-size:46.200000px;}
.fsd{font-size:48.000000px;}
.fs10{font-size:48.300000px;}
.fs4{font-size:51.000000px;}
.fs14{font-size:52.200000px;}
.fse{font-size:54.000000px;}
.fs6{font-size:55.200000px;}
.fs0{font-size:55.800000px;}
.fsb{font-size:60.000000px;}
.fs11{font-size:61.740000px;}
.fs1{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fsf{font-size:69.000000px;}
.fs7{font-size:78.000000px;}
.fsa{font-size:88.200000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:93.000000px;}
.fs9{font-size:105.000000px;}
.fs13{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y24b{bottom:36.135750px;}
.y24a{bottom:52.641750px;}
.y87{bottom:78.780000px;}
.y1bb{bottom:79.105500px;}
.yd0{bottom:80.880000px;}
.y10d{bottom:82.980000px;}
.y3{bottom:84.330750px;}
.y27{bottom:84.337200px;}
.yc{bottom:84.342300px;}
.y249{bottom:87.355500px;}
.y1fd{bottom:88.380000px;}
.y115{bottom:90.055500px;}
.y211{bottom:90.480000px;}
.yf7{bottom:92.155500px;}
.y86{bottom:95.280000px;}
.yb0{bottom:97.980000px;}
.y1ba{bottom:98.305500px;}
.ycf{bottom:100.080000px;}
.y3e{bottom:102.018000px;}
.y10c{bottom:102.180000px;}
.yb{bottom:103.091100px;}
.y1b1{bottom:104.502000px;}
.y248{bottom:106.555500px;}
.y1fc{bottom:107.580000px;}
.y114{bottom:109.255500px;}
.y210{bottom:109.680000px;}
.y1ee{bottom:110.167500px;}
.yf6{bottom:111.355500px;}
.y85{bottom:111.780000px;}
.y23d{bottom:116.020500px;}
.yaf{bottom:117.180000px;}
.y1b9{bottom:117.505500px;}
.yce{bottom:119.280000px;}
.y3d{bottom:121.218000px;}
.y10b{bottom:121.380000px;}
.y26{bottom:121.834800px;}
.ya{bottom:121.839900px;}
.y247{bottom:125.755500px;}
.y1ed{bottom:126.667500px;}
.y1fb{bottom:126.780000px;}
.y84{bottom:128.280000px;}
.y113{bottom:128.455500px;}
.y20f{bottom:128.880000px;}
.yf5{bottom:130.555500px;}
.y23c{bottom:135.220500px;}
.yae{bottom:136.380000px;}
.y1b8{bottom:136.705500px;}
.y1f7{bottom:137.778000px;}
.ycd{bottom:138.480000px;}
.y3c{bottom:140.418000px;}
.y10a{bottom:140.580000px;}
.y25{bottom:140.583600px;}
.y9{bottom:140.588700px;}
.y1ec{bottom:143.167500px;}
.y83{bottom:144.780000px;}
.y246{bottom:144.955500px;}
.y171{bottom:145.980000px;}
.y1b0{bottom:146.085000px;}
.y11e{bottom:147.493500px;}
.y112{bottom:147.655500px;}
.y20e{bottom:148.080000px;}
.yf4{bottom:149.755500px;}
.y23b{bottom:154.420500px;}
.y1e5{bottom:155.428650px;}
.yad{bottom:155.580000px;}
.y1b7{bottom:155.905500px;}
.y1f6{bottom:156.978000px;}
.ycc{bottom:157.680000px;}
.y15c{bottom:158.779500px;}
.y24{bottom:159.332400px;}
.y8{bottom:159.337500px;}
.y82{bottom:159.667500px;}
.y109{bottom:159.780000px;}
.y181{bottom:160.905000px;}
.yb1{bottom:161.280000px;}
.y245{bottom:164.155500px;}
.y170{bottom:165.180000px;}
.y1af{bottom:165.285000px;}
.y111{bottom:166.855500px;}
.y20d{bottom:167.280000px;}
.yf3{bottom:168.955500px;}
.y23a{bottom:173.620500px;}
.y1e4{bottom:174.628650px;}
.yac{bottom:174.780000px;}
.y1b6{bottom:175.105500px;}
.y81{bottom:176.167500px;}
.y1f5{bottom:176.178000px;}
.ycb{bottom:176.880000px;}
.y139{bottom:177.523500px;}
.y1bd{bottom:177.780000px;}
.y23{bottom:178.081200px;}
.y7{bottom:178.086300px;}
.y3b{bottom:178.818000px;}
.y108{bottom:178.980000px;}
.y244{bottom:183.355500px;}
.y194{bottom:184.380000px;}
.y1ae{bottom:184.485000px;}
.y110{bottom:186.055500px;}
.y20c{bottom:186.480000px;}
.yf2{bottom:188.155500px;}
.y1eb{bottom:191.055000px;}
.y239{bottom:192.820500px;}
.y1e3{bottom:193.828650px;}
.yaa{bottom:193.980000px;}
.y1bc{bottom:194.280000px;}
.y1b5{bottom:194.305500px;}
.y1f4{bottom:195.378000px;}
.yca{bottom:196.080000px;}
.y22{bottom:196.830000px;}
.y6{bottom:196.835100px;}
.y11d{bottom:197.005500px;}
.y3a{bottom:198.018000px;}
.y107{bottom:198.180000px;}
.y15b{bottom:200.380500px;}
.y243{bottom:202.555500px;}
.y193{bottom:203.580000px;}
.y1ad{bottom:203.685000px;}
.y180{bottom:204.630000px;}
.ye8{bottom:205.255500px;}
.y20b{bottom:205.680000px;}
.yf1{bottom:207.355500px;}
.y1ea{bottom:207.555000px;}
.y16f{bottom:210.780000px;}
.y238{bottom:212.020500px;}
.y1e2{bottom:213.028650px;}
.ya9{bottom:213.180000px;}
.y1b4{bottom:213.505500px;}
.y1f3{bottom:214.578000px;}
.yc9{bottom:215.280000px;}
.y21{bottom:215.578800px;}
.y5{bottom:215.583900px;}
.y11c{bottom:216.205500px;}
.y39{bottom:217.218000px;}
.y106{bottom:217.380000px;}
.y138{bottom:218.665500px;}
.y15a{bottom:219.580500px;}
.y242{bottom:221.755500px;}
.y192{bottom:222.780000px;}
.y1ac{bottom:222.885000px;}
.y17f{bottom:223.830000px;}
.y1e9{bottom:224.055000px;}
.ye7{bottom:224.455500px;}
.y20a{bottom:224.880000px;}
.y237{bottom:231.220500px;}
.y1e1{bottom:232.228650px;}
.ya8{bottom:232.380000px;}
.y1b3{bottom:232.705500px;}
.y1f2{bottom:233.778000px;}
.yc8{bottom:234.480000px;}
.y11b{bottom:235.405500px;}
.y38{bottom:236.418000px;}
.y105{bottom:236.580000px;}
.y137{bottom:237.865500px;}
.y159{bottom:238.780500px;}
.y1e8{bottom:240.555000px;}
.y241{bottom:240.955500px;}
.y191{bottom:241.980000px;}
.y1ab{bottom:242.085000px;}
.y17e{bottom:243.030000px;}
.ye6{bottom:243.655500px;}
.y209{bottom:244.080000px;}
.yf0{bottom:245.755500px;}
.y236{bottom:250.420500px;}
.y1e0{bottom:251.428650px;}
.ya7{bottom:251.580000px;}
.y80{bottom:251.905500px;}
.y1f1{bottom:252.978000px;}
.yc7{bottom:253.680000px;}
.y11a{bottom:254.605500px;}
.y104{bottom:255.780000px;}
.y16e{bottom:256.380000px;}
.y1e7{bottom:257.055000px;}
.y136{bottom:257.065500px;}
.y267{bottom:257.329350px;}
.y158{bottom:257.980500px;}
.y240{bottom:260.155500px;}
.y1aa{bottom:261.285000px;}
.y17d{bottom:262.230000px;}
.ye5{bottom:262.855500px;}
.y208{bottom:263.280000px;}
.y235{bottom:269.619000px;}
.y1df{bottom:270.628650px;}
.ya6{bottom:270.780000px;}
.y7f{bottom:271.105500px;}
.y266{bottom:272.323800px;}
.yc6{bottom:272.880000px;}
.y1e6{bottom:273.555000px;}
.y119{bottom:273.805500px;}
.y37{bottom:274.818000px;}
.y103{bottom:274.980000px;}
.y16d{bottom:275.580000px;}
.y135{bottom:276.265500px;}
.y157{bottom:277.180500px;}
.y67{bottom:279.355500px;}
.y190{bottom:280.380000px;}
.y17c{bottom:281.430000px;}
.ye4{bottom:282.055500px;}
.y265{bottom:287.318250px;}
.y234{bottom:288.819000px;}
.y1de{bottom:289.828650px;}
.ya5{bottom:289.980000px;}
.y1a9{bottom:290.085000px;}
.y7e{bottom:290.305500px;}
.y20{bottom:290.587950px;}
.yc5{bottom:292.080000px;}
.y118{bottom:293.005500px;}
.y36{bottom:294.018000px;}
.y102{bottom:294.180000px;}
.y16c{bottom:294.780000px;}
.y134{bottom:295.465500px;}
.y66{bottom:298.555500px;}
.y17b{bottom:300.630000px;}
.ye3{bottom:301.255500px;}
.y207{bottom:301.680000px;}
.y264{bottom:302.312700px;}
.y156{bottom:305.980500px;}
.y25d{bottom:306.072450px;}
.y233{bottom:308.019000px;}
.y1dd{bottom:309.028650px;}
.ya4{bottom:309.180000px;}
.y1a8{bottom:309.285000px;}
.y7d{bottom:309.505500px;}
.yc4{bottom:311.280000px;}
.y35{bottom:313.218000px;}
.y101{bottom:313.380000px;}
.y16b{bottom:313.980000px;}
.y133{bottom:314.665500px;}
.y65{bottom:317.755500px;}
.y17a{bottom:319.830000px;}
.ye2{bottom:320.455500px;}
.y25c{bottom:321.066900px;}
.y155{bottom:325.180500px;}
.y232{bottom:327.219000px;}
.y1f{bottom:328.072800px;}
.y1dc{bottom:328.228650px;}
.ya3{bottom:328.380000px;}
.y1a7{bottom:328.485000px;}
.y7c{bottom:328.705500px;}
.yc3{bottom:330.480000px;}
.y34{bottom:332.418000px;}
.y100{bottom:332.580000px;}
.y16a{bottom:333.180000px;}
.y52{bottom:334.710000px;}
.y263{bottom:335.311350px;}
.y18f{bottom:335.880000px;}
.y25b{bottom:336.061350px;}
.y64{bottom:336.955500px;}
.y145{bottom:337.980000px;}
.ye1{bottom:339.655500px;}
.y132{bottom:343.465500px;}
.y154{bottom:344.380500px;}
.y231{bottom:346.419000px;}
.y1e{bottom:346.828050px;}
.y1db{bottom:347.428650px;}
.ya2{bottom:347.580000px;}
.y1a6{bottom:347.685000px;}
.y7b{bottom:347.905500px;}
.y179{bottom:348.630000px;}
.yc2{bottom:349.680000px;}
.y25a{bottom:351.061350px;}
.yff{bottom:351.780000px;}
.y169{bottom:352.380000px;}
.y63{bottom:356.155500px;}
.y206{bottom:357.180000px;}
.ye0{bottom:358.855500px;}
.y131{bottom:362.665500px;}
.y1d{bottom:364.078800px;}
.y230{bottom:365.619000px;}
.y1da{bottom:366.628650px;}
.ya1{bottom:366.780000px;}
.y1a5{bottom:366.885000px;}
.y7a{bottom:367.105500px;}
.y178{bottom:367.830000px;}
.yc1{bottom:368.880000px;}
.y259{bottom:369.065850px;}
.y262{bottom:369.067200px;}
.y33{bottom:370.818000px;}
.yfe{bottom:370.980000px;}
.y168{bottom:371.580000px;}
.y51{bottom:373.110000px;}
.y62{bottom:375.355500px;}
.y205{bottom:376.380000px;}
.ydf{bottom:378.055500px;}
.y1c{bottom:381.329550px;}
.y130{bottom:381.865500px;}
.y18e{bottom:382.380000px;}
.y22f{bottom:384.819000px;}
.y1d9{bottom:385.828650px;}
.ya0{bottom:385.980000px;}
.y1a4{bottom:386.085000px;}
.y79{bottom:386.305500px;}
.yc0{bottom:388.080000px;}
.y32{bottom:390.018000px;}
.y167{bottom:390.780000px;}
.y217{bottom:391.194000px;}
.y50{bottom:392.310000px;}
.y61{bottom:394.555500px;}
.y204{bottom:395.580000px;}
.yde{bottom:397.255500px;}
.y1b{bottom:398.580300px;}
.y18d{bottom:401.580000px;}
.y22e{bottom:404.019000px;}
.y1d8{bottom:405.028650px;}
.y9f{bottom:405.180000px;}
.y1a3{bottom:405.285000px;}
.y78{bottom:405.505500px;}
.ybf{bottom:407.280000px;}
.y31{bottom:409.218000px;}
.yfd{bottom:409.380000px;}
.y166{bottom:409.980000px;}
.y216{bottom:410.394000px;}
.y177{bottom:411.555000px;}
.y60{bottom:413.755500px;}
.y203{bottom:414.780000px;}
.y1a{bottom:415.831050px;}
.ydd{bottom:416.455500px;}
.y18c{bottom:420.780000px;}
.y12f{bottom:423.009000px;}
.y22d{bottom:423.219000px;}
.y1d7{bottom:424.228650px;}
.y9e{bottom:424.380000px;}
.y1a2{bottom:424.485000px;}
.y77{bottom:424.705500px;}
.ybe{bottom:426.480000px;}
.y153{bottom:427.579500px;}
.y165{bottom:429.180000px;}
.y4f{bottom:430.710000px;}
.y5f{bottom:432.955500px;}
.y19{bottom:433.081800px;}
.y202{bottom:433.980000px;}
.ydc{bottom:435.655500px;}
.y18b{bottom:439.980000px;}
.y22c{bottom:442.419000px;}
.y1d6{bottom:443.428650px;}
.y9d{bottom:443.580000px;}
.y1a1{bottom:443.685000px;}
.y76{bottom:443.905500px;}
.ybd{bottom:445.680000px;}
.y152{bottom:446.779500px;}
.y30{bottom:447.618000px;}
.y4e{bottom:449.910000px;}
.y18{bottom:450.332550px;}
.y5e{bottom:452.155500px;}
.y201{bottom:453.180000px;}
.ydb{bottom:454.855500px;}
.y176{bottom:455.280000px;}
.y164{bottom:457.980000px;}
.y18a{bottom:459.180000px;}
.y22b{bottom:461.619000px;}
.y1d5{bottom:462.628650px;}
.y9c{bottom:462.780000px;}
.y1a0{bottom:462.885000px;}
.y75{bottom:463.105500px;}
.y12e{bottom:464.151000px;}
.ybc{bottom:464.880000px;}
.y151{bottom:465.979500px;}
.y2f{bottom:466.818000px;}
.y17{bottom:467.583300px;}
.y23e{bottom:468.525000px;}
.yec{bottom:469.312500px;}
.y5d{bottom:471.355500px;}
.y200{bottom:472.380000px;}
.yda{bottom:474.055500px;}
.y175{bottom:474.480000px;}
.y163{bottom:477.180000px;}
.y22a{bottom:480.819000px;}
.y1d4{bottom:481.828650px;}
.y9b{bottom:481.980000px;}
.y74{bottom:482.305500px;}
.y12d{bottom:483.351000px;}
.ybb{bottom:484.080000px;}
.y16{bottom:484.834050px;}
.y150{bottom:485.179500px;}
.yeb{bottom:488.512500px;}
.y261{bottom:490.432200px;}
.y5c{bottom:490.555500px;}
.y1ff{bottom:491.580000px;}
.yd9{bottom:493.255500px;}
.y174{bottom:493.680000px;}
.y162{bottom:496.380000px;}
.y229{bottom:500.019000px;}
.y4d{bottom:500.160000px;}
.y1d3{bottom:501.028650px;}
.y9a{bottom:501.180000px;}
.y73{bottom:501.505500px;}
.y15{bottom:502.084800px;}
.y12c{bottom:502.551000px;}
.yba{bottom:503.280000px;}
.y14f{bottom:504.379500px;}
.y19f{bottom:504.466500px;}
.y260{bottom:505.426650px;}
.y189{bottom:505.680000px;}
.y258{bottom:506.182200px;}
.y5b{bottom:509.755500px;}
.y1fe{bottom:510.780000px;}
.yd8{bottom:512.455500px;}
.y2e{bottom:517.066500px;}
.y228{bottom:519.219000px;}
.y14{bottom:519.335550px;}
.y4c{bottom:519.360000px;}
.y1d2{bottom:520.228650px;}
.y99{bottom:520.380000px;}
.y25f{bottom:520.421100px;}
.y72{bottom:520.705500px;}
.y257{bottom:521.176650px;}
.y1fa{bottom:521.577000px;}
.yb9{bottom:522.480000px;}
.y14e{bottom:523.579500px;}
.y5a{bottom:528.955500px;}
.y144{bottom:529.980000px;}
.y12b{bottom:531.351000px;}
.yd7{bottom:531.655500px;}
.y256{bottom:536.171100px;}
.y2d{bottom:536.266500px;}
.y1b2{bottom:537.480000px;}
.y227{bottom:538.419000px;}
.y4b{bottom:538.560000px;}
.y1d1{bottom:539.428650px;}
.y98{bottom:539.580000px;}
.y71{bottom:539.905500px;}
.y1f9{bottom:540.777000px;}
.yb8{bottom:541.680000px;}
.y161{bottom:541.980000px;}
.y14d{bottom:542.779500px;}
.y19e{bottom:546.049500px;}
.y59{bottom:548.155500px;}
.y143{bottom:549.180000px;}
.y12a{bottom:550.551000px;}
.yd6{bottom:550.855500px;}
.y188{bottom:552.180000px;}
.y25e{bottom:553.415100px;}
.y2c{bottom:555.466500px;}
.y226{bottom:557.619000px;}
.y1d0{bottom:558.628650px;}
.y97{bottom:558.780000px;}
.y70{bottom:559.105500px;}
.yb7{bottom:560.880000px;}
.y14c{bottom:561.979500px;}
.y19d{bottom:565.249500px;}
.y58{bottom:567.355500px;}
.y142{bottom:568.380000px;}
.y255{bottom:569.169600px;}
.y129{bottom:569.751000px;}
.yd5{bottom:570.055500px;}
.y187{bottom:571.380000px;}
.y225{bottom:576.819000px;}
.y4a{bottom:576.960000px;}
.y1cf{bottom:577.828650px;}
.y96{bottom:577.980000px;}
.y6f{bottom:578.305500px;}
.yb6{bottom:580.080000px;}
.y14b{bottom:581.179500px;}
.y19c{bottom:584.449500px;}
.y254{bottom:584.919600px;}
.y57{bottom:586.555500px;}
.y141{bottom:587.580000px;}
.yd4{bottom:589.255500px;}
.y186{bottom:590.580000px;}
.y13{bottom:592.841400px;}
.y2b{bottom:593.866500px;}
.y224{bottom:596.019000px;}
.y49{bottom:596.160000px;}
.y1ce{bottom:597.028650px;}
.y95{bottom:597.180000px;}
.y6e{bottom:597.505500px;}
.yb5{bottom:599.280000px;}
.y253{bottom:602.919600px;}
.y56{bottom:605.755500px;}
.y1f8{bottom:606.318000px;}
.y160{bottom:606.780000px;}
.yd3{bottom:608.455500px;}
.y14a{bottom:609.979500px;}
.y128{bottom:610.894500px;}
.y12{bottom:611.590200px;}
.y2a{bottom:613.066500px;}
.y223{bottom:615.219000px;}
.y48{bottom:615.360000px;}
.y1cd{bottom:616.228650px;}
.y94{bottom:616.380000px;}
.y6d{bottom:616.705500px;}
.yb4{bottom:618.480000px;}
.y185{bottom:619.380000px;}
.y55{bottom:624.955500px;}
.y15f{bottom:625.980000px;}
.y19b{bottom:626.032500px;}
.y149{bottom:629.179500px;}
.y11{bottom:630.339000px;}
.y222{bottom:634.419000px;}
.y1cc{bottom:635.428650px;}
.y93{bottom:635.580000px;}
.y6c{bottom:635.905500px;}
.yb3{bottom:637.680000px;}
.y184{bottom:638.580000px;}
.y54{bottom:644.155500px;}
.y15e{bottom:645.180000px;}
.y148{bottom:648.379500px;}
.y10{bottom:649.087800px;}
.y127{bottom:652.036500px;}
.y221{bottom:653.619000px;}
.y47{bottom:653.760000px;}
.y1cb{bottom:654.628650px;}
.y92{bottom:654.780000px;}
.yfc{bottom:656.880000px;}
.y183{bottom:657.780000px;}
.y215{bottom:658.102500px;}
.yd2{bottom:659.911500px;}
.y29{bottom:663.316500px;}
.y53{bottom:663.355500px;}
.y15d{bottom:664.380000px;}
.y147{bottom:667.579500px;}
.y19a{bottom:667.614000px;}
.y126{bottom:671.236500px;}
.y220{bottom:672.819000px;}
.y46{bottom:672.960000px;}
.y1ca{bottom:673.828650px;}
.y91{bottom:673.980000px;}
.yb2{bottom:676.080000px;}
.y1f0{bottom:676.887000px;}
.y214{bottom:677.302500px;}
.y140{bottom:683.580000px;}
.y199{bottom:686.814000px;}
.y6b{bottom:687.361500px;}
.y125{bottom:690.436500px;}
.y21f{bottom:692.019000px;}
.y45{bottom:692.160000px;}
.y1c9{bottom:693.028650px;}
.y90{bottom:693.180000px;}
.yfb{bottom:695.280000px;}
.y1ef{bottom:696.087000px;}
.y213{bottom:696.502500px;}
.yd1{bottom:698.311500px;}
.y10f{bottom:698.811000px;}
.y69{bottom:701.947500px;}
.y13f{bottom:702.780000px;}
.y182{bottom:704.280000px;}
.y198{bottom:706.014000px;}
.y146{bottom:709.179000px;}
.y124{bottom:709.636500px;}
.y21e{bottom:711.219000px;}
.y1c8{bottom:712.228650px;}
.y8f{bottom:712.380000px;}
.yfa{bottom:714.480000px;}
.y23f{bottom:714.811500px;}
.y212{bottom:715.702500px;}
.y10e{bottom:718.011000px;}
.y13e{bottom:721.980000px;}
.y197{bottom:725.214000px;}
.y6a{bottom:725.761500px;}
.y123{bottom:728.836500px;}
.y21d{bottom:730.419000px;}
.y44{bottom:730.560000px;}
.y1c7{bottom:731.428650px;}
.y8e{bottom:731.580000px;}
.yf9{bottom:733.680000px;}
.y252{bottom:735.788400px;}
.y68{bottom:740.347500px;}
.y13d{bottom:741.180000px;}
.y196{bottom:744.414000px;}
.y1bf{bottom:746.217000px;}
.y122{bottom:748.036500px;}
.y21c{bottom:749.619000px;}
.y43{bottom:749.760000px;}
.y1c6{bottom:750.628650px;}
.y8d{bottom:750.780000px;}
.y251{bottom:750.782850px;}
.y173{bottom:752.880000px;}
.y28{bottom:753.211500px;}
.y13c{bottom:760.380000px;}
.y1be{bottom:765.417000px;}
.y250{bottom:765.777300px;}
.y121{bottom:767.236500px;}
.y21b{bottom:768.819000px;}
.y42{bottom:768.960000px;}
.y1c5{bottom:769.828650px;}
.y8c{bottom:769.980000px;}
.y117{bottom:770.340000px;}
.yf8{bottom:772.080000px;}
.yef{bottom:778.566000px;}
.y13b{bottom:779.580000px;}
.y195{bottom:785.997000px;}
.y120{bottom:786.436500px;}
.y21a{bottom:788.019000px;}
.y41{bottom:788.160000px;}
.y1c4{bottom:789.028650px;}
.y8b{bottom:789.180000px;}
.y116{bottom:789.540000px;}
.y172{bottom:791.280000px;}
.yee{bottom:797.766000px;}
.y24f{bottom:798.775800px;}
.y13a{bottom:798.780000px;}
.yf{bottom:800.775750px;}
.y11f{bottom:805.636500px;}
.y219{bottom:807.219000px;}
.y1c3{bottom:808.228650px;}
.y8a{bottom:808.380000px;}
.yea{bottom:808.740000px;}
.y24e{bottom:814.525800px;}
.yed{bottom:816.966000px;}
.y2{bottom:824.000550px;}
.y40{bottom:826.560000px;}
.ye{bottom:826.653600px;}
.y1c2{bottom:827.428650px;}
.yab{bottom:827.580000px;}
.ye9{bottom:827.940000px;}
.y24d{bottom:832.525800px;}
.y4{bottom:838.730400px;}
.y1{bottom:840.740550px;}
.y218{bottom:845.619000px;}
.y3f{bottom:845.760000px;}
.y1c1{bottom:846.628650px;}
.y89{bottom:846.780000px;}
.yd{bottom:855.153600px;}
.y1c0{bottom:865.828650px;}
.y24c{bottom:877.538250px;}
.y88{bottom:891.424500px;}
.h17{height:34.128000px;}
.h23{height:35.548200px;}
.h24{height:37.044000px;}
.h25{height:37.479600px;}
.h9{height:37.842000px;}
.h18{height:38.610000px;}
.h1d{height:39.247200px;}
.h11{height:39.357600px;}
.he{height:39.468000px;}
.h1e{height:40.767600px;}
.h5{height:40.901400px;}
.h3{height:41.403600px;}
.ha{height:41.454600px;}
.h15{height:42.780000px;}
.h21{height:43.659000px;}
.h1a{height:45.816000px;}
.hd{height:46.423200px;}
.h10{height:47.190000px;}
.h1f{height:48.576000px;}
.hc{height:50.160000px;}
.h19{height:52.440000px;}
.h8{height:54.795600px;}
.h16{height:55.350240px;}
.h12{height:56.781000px;}
.hf{height:59.280000px;}
.h4{height:61.866000px;}
.h1b{height:62.736000px;}
.h20{height:62.742000px;}
.h14{height:63.063000px;}
.h6{height:64.878000px;}
.hb{height:68.400000px;}
.h1c{height:75.380100px;}
.h13{height:79.800000px;}
.h7{height:91.326000px;}
.h22{height:94.668000px;}
.h2{height:956.692500px;}
.h0{height:956.880000px;}
.h1{height:957.000000px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.w2{width:629.292000px;}
.x0{left:0.000000px;}
.x18{left:57.402000px;}
.x2{left:74.409000px;}
.x1{left:85.039350px;}
.xe{left:91.417500px;}
.x1c{left:95.670000px;}
.x17{left:102.009000px;}
.x29{left:110.019450px;}
.x19{left:112.677000px;}
.x21{left:116.929500px;}
.x1a{left:119.017500px;}
.xc{left:134.517000px;}
.x1e{left:138.189000px;}
.x9{left:144.471000px;}
.xf{left:161.478000px;}
.xa{left:164.377500px;}
.x11{left:166.455000px;}
.x13{left:181.386000px;}
.x3{left:199.216500px;}
.x12{left:206.271000px;}
.x2a{left:215.287950px;}
.x2b{left:233.858250px;}
.x5{left:239.032500px;}
.x25{left:249.526500px;}
.x24{left:299.206500px;}
.x1d{left:314.715000px;}
.x26{left:315.798000px;}
.x27{left:317.704500px;}
.x7{left:358.479000px;}
.x1f{left:417.645000px;}
.x20{left:424.914000px;}
.x1b{left:434.541000px;}
.x22{left:450.651000px;}
.x23{left:452.511000px;}
.x28{left:482.392500px;}
.xd{left:524.530500px;}
.x8{left:525.712500px;}
.xb{left:527.289000px;}
.x6{left:530.901000px;}
.x4{left:532.722000px;}
.x15{left:537.189000px;}
.x10{left:539.482500px;}
.x16{left:540.501000px;}
.x14{left:541.866000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.002667pt;}
.v1{vertical-align:21.109333pt;}
.v2{vertical-align:23.136000pt;}
.v3{vertical-align:27.765333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.003200pt;}
.ls1f{letter-spacing:0.021867pt;}
.ls30{letter-spacing:0.122667pt;}
.ls9{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.588800pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.696000pt;}
.ls4{letter-spacing:1.240000pt;}
.ls33{letter-spacing:1.440000pt;}
.ls2{letter-spacing:1.466667pt;}
.ls31{letter-spacing:1.680000pt;}
.ls29{letter-spacing:2.658773pt;}
.ls5{letter-spacing:2.747733pt;}
.ls1{letter-spacing:2.800000pt;}
.ls3{letter-spacing:3.306667pt;}
.ls24{letter-spacing:8.103467pt;}
.ls2e{letter-spacing:10.377600pt;}
.ls25{letter-spacing:10.466133pt;}
.ls26{letter-spacing:11.067733pt;}
.ls22{letter-spacing:11.157333pt;}
.ls20{letter-spacing:12.855467pt;}
.ls8{letter-spacing:13.136000pt;}
.lsc{letter-spacing:13.163733pt;}
.ls14{letter-spacing:13.557120pt;}
.ls13{letter-spacing:13.744000pt;}
.ls12{letter-spacing:13.800107pt;}
.lse{letter-spacing:14.218667pt;}
.ls17{letter-spacing:14.254507pt;}
.ls27{letter-spacing:14.256000pt;}
.ls2a{letter-spacing:14.320000pt;}
.ls2b{letter-spacing:14.325120pt;}
.ls15{letter-spacing:14.398293pt;}
.ls19{letter-spacing:14.580267pt;}
.ls1b{letter-spacing:14.799787pt;}
.ls11{letter-spacing:15.015467pt;}
.lsf{letter-spacing:15.100800pt;}
.ls7{letter-spacing:15.138773pt;}
.ls1d{letter-spacing:15.221120pt;}
.lsd{letter-spacing:15.282773pt;}
.ls16{letter-spacing:15.785600pt;}
.ls2f{letter-spacing:16.004267pt;}
.ls1e{letter-spacing:16.634453pt;}
.ls1c{letter-spacing:16.933120pt;}
.lsa{letter-spacing:17.887787pt;}
.ls18{letter-spacing:19.131733pt;}
.ls10{letter-spacing:19.309440pt;}
.lsb{letter-spacing:20.318293pt;}
.ls23{letter-spacing:21.245867pt;}
.ls28{letter-spacing:43.291733pt;}
.ls2d{letter-spacing:77.610667pt;}
.ls2c{letter-spacing:78.720000pt;}
.ws3a{word-spacing:-93.333333pt;}
.ws14{word-spacing:-80.000000pt;}
.ws11d{word-spacing:-72.520000pt;}
.ws17{word-spacing:-69.333333pt;}
.ws10f{word-spacing:-61.333333pt;}
.ws3c{word-spacing:-60.995200pt;}
.ws154{word-spacing:-60.916800pt;}
.ws11f{word-spacing:-60.603200pt;}
.ws11e{word-spacing:-60.000000pt;}
.ws153{word-spacing:-59.920000pt;}
.ws3b{word-spacing:-59.840000pt;}
.ws227{word-spacing:-59.680000pt;}
.ws15{word-spacing:-58.666667pt;}
.ws155{word-spacing:-54.880000pt;}
.ws1c{word-spacing:-51.861333pt;}
.ws1b{word-spacing:-49.066667pt;}
.ws15b{word-spacing:-48.024000pt;}
.ws5a{word-spacing:-47.717333pt;}
.wse6{word-spacing:-47.656000pt;}
.ws137{word-spacing:-47.472000pt;}
.ws16a{word-spacing:-47.410667pt;}
.ws1f4{word-spacing:-46.432000pt;}
.ws1d{word-spacing:-44.000000pt;}
.ws19{word-spacing:-43.941333pt;}
.ws18{word-spacing:-43.882667pt;}
.ws24{word-spacing:-43.765333pt;}
.wsb0{word-spacing:-42.666667pt;}
.ws1c7{word-spacing:-41.546667pt;}
.ws22a{word-spacing:-41.314133pt;}
.ws1f{word-spacing:-41.066667pt;}
.ws1d4{word-spacing:-40.965333pt;}
.ws232{word-spacing:-40.725333pt;}
.ws231{word-spacing:-40.381867pt;}
.ws1e7{word-spacing:-40.373333pt;}
.ws120{word-spacing:-40.320000pt;}
.ws3d{word-spacing:-40.266667pt;}
.ws188{word-spacing:-40.053333pt;}
.ws230{word-spacing:-39.645867pt;}
.ws1dc{word-spacing:-39.225600pt;}
.ws1d5{word-spacing:-38.602667pt;}
.ws22e{word-spacing:-38.370133pt;}
.ws22b{word-spacing:-38.321067pt;}
.ws21{word-spacing:-38.222933pt;}
.ws229{word-spacing:-38.124800pt;}
.ws1dd{word-spacing:-38.026667pt;}
.ws12f{word-spacing:-37.392000pt;}
.ws12b{word-spacing:-37.344000pt;}
.ws59{word-spacing:-37.296000pt;}
.ws168{word-spacing:-37.248000pt;}
.ws22f{word-spacing:-37.200000pt;}
.ws22{word-spacing:-37.143467pt;}
.ws189{word-spacing:-37.104000pt;}
.ws1e{word-spacing:-37.094400pt;}
.ws1a{word-spacing:-37.045333pt;}
.ws23{word-spacing:-36.996267pt;}
.ws20{word-spacing:-36.849067pt;}
.ws1d6{word-spacing:-36.309333pt;}
.ws1d8{word-spacing:-35.125333pt;}
.ws1de{word-spacing:-34.805333pt;}
.ws22d{word-spacing:-34.739200pt;}
.ws22c{word-spacing:-34.395733pt;}
.ws16{word-spacing:-33.463467pt;}
.ws20a{word-spacing:-33.045333pt;}
.ws228{word-spacing:-32.874667pt;}
.wsac{word-spacing:-32.384000pt;}
.ws1d0{word-spacing:-31.746133pt;}
.ws212{word-spacing:-31.552000pt;}
.ws1d7{word-spacing:-31.413333pt;}
.ws4c{word-spacing:-30.715733pt;}
.ws10e{word-spacing:-29.489067pt;}
.ws1e2{word-spacing:-29.365333pt;}
.ws1cf{word-spacing:-27.820800pt;}
.ws1e8{word-spacing:-26.518507pt;}
.ws16f{word-spacing:-25.514667pt;}
.ws1d2{word-spacing:-24.091733pt;}
.ws115{word-spacing:-22.717867pt;}
.ws58{word-spacing:-22.698667pt;}
.ws15d{word-spacing:-22.668800pt;}
.ws14f{word-spacing:-22.619733pt;}
.ws114{word-spacing:-22.570667pt;}
.wsc9{word-spacing:-22.521600pt;}
.wsff{word-spacing:-22.472533pt;}
.ws144{word-spacing:-22.423467pt;}
.ws9e{word-spacing:-22.374400pt;}
.ws124{word-spacing:-22.325333pt;}
.wsed{word-spacing:-22.276267pt;}
.ws9b{word-spacing:-22.227200pt;}
.ws9d{word-spacing:-22.178133pt;}
.wsbe{word-spacing:-22.129067pt;}
.wsb5{word-spacing:-22.080000pt;}
.wsec{word-spacing:-22.030933pt;}
.ws7e{word-spacing:-21.981867pt;}
.wsc3{word-spacing:-21.932800pt;}
.ws2b{word-spacing:-21.883733pt;}
.ws139{word-spacing:-21.834667pt;}
.ws29{word-spacing:-21.785600pt;}
.ws8f{word-spacing:-21.736533pt;}
.ws101{word-spacing:-21.687467pt;}
.wsdc{word-spacing:-21.638400pt;}
.wscf{word-spacing:-21.589333pt;}
.wse2{word-spacing:-21.540267pt;}
.wsf6{word-spacing:-21.501013pt;}
.wsd8{word-spacing:-21.491200pt;}
.wsd9{word-spacing:-21.442133pt;}
.ws75{word-spacing:-21.393067pt;}
.wsda{word-spacing:-21.344000pt;}
.wse9{word-spacing:-21.294933pt;}
.ws10a{word-spacing:-21.262933pt;}
.wsc0{word-spacing:-21.245867pt;}
.wsf4{word-spacing:-21.196800pt;}
.ws9f{word-spacing:-21.150933pt;}
.ws4a{word-spacing:-21.147733pt;}
.ws121{word-spacing:-21.133867pt;}
.ws5c{word-spacing:-21.098667pt;}
.ws10d{word-spacing:-21.049600pt;}
.ws2a{word-spacing:-21.000533pt;}
.wsd2{word-spacing:-20.951467pt;}
.wsf1{word-spacing:-20.902400pt;}
.ws122{word-spacing:-20.875733pt;}
.ws72{word-spacing:-20.853333pt;}
.ws219{word-spacing:-20.809600pt;}
.ws96{word-spacing:-20.804267pt;}
.wsf5{word-spacing:-20.755200pt;}
.ws10c{word-spacing:-20.706133pt;}
.ws1f5{word-spacing:-20.665600pt;}
.wsea{word-spacing:-20.657067pt;}
.ws1f6{word-spacing:-20.616533pt;}
.wse5{word-spacing:-20.608000pt;}
.wsb8{word-spacing:-20.558933pt;}
.wsdf{word-spacing:-20.509867pt;}
.wsc7{word-spacing:-20.460800pt;}
.wsb3{word-spacing:-20.411733pt;}
.wsce{word-spacing:-20.362667pt;}
.ws89{word-spacing:-20.313600pt;}
.ws204{word-spacing:-20.290133pt;}
.ws7c{word-spacing:-20.264533pt;}
.ws4b{word-spacing:-20.215467pt;}
.ws47{word-spacing:-20.166400pt;}
.ws49{word-spacing:-20.117333pt;}
.wsfc{word-spacing:-20.068267pt;}
.ws131{word-spacing:-20.038400pt;}
.wseb{word-spacing:-20.019200pt;}
.ws74{word-spacing:-19.970133pt;}
.ws102{word-spacing:-19.921067pt;}
.wsc2{word-spacing:-19.872000pt;}
.ws200{word-spacing:-19.861333pt;}
.ws34{word-spacing:-19.822933pt;}
.ws99{word-spacing:-19.773867pt;}
.ws1fd{word-spacing:-19.749333pt;}
.ws203{word-spacing:-19.725867pt;}
.wsba{word-spacing:-19.724800pt;}
.ws12c{word-spacing:-19.676800pt;}
.ws48{word-spacing:-19.675733pt;}
.ws138{word-spacing:-19.669333pt;}
.wsa0{word-spacing:-19.626667pt;}
.wsa7{word-spacing:-19.577600pt;}
.ws108{word-spacing:-19.528533pt;}
.ws51{word-spacing:-19.479467pt;}
.wsee{word-spacing:-19.430400pt;}
.ws4d{word-spacing:-19.381333pt;}
.ws105{word-spacing:-19.332267pt;}
.wsa8{word-spacing:-19.283200pt;}
.wsbb{word-spacing:-19.234133pt;}
.wsb2{word-spacing:-19.185067pt;}
.ws1c8{word-spacing:-19.157867pt;}
.wsa1{word-spacing:-19.136000pt;}
.wsdd{word-spacing:-19.086933pt;}
.ws123{word-spacing:-19.084800pt;}
.ws90{word-spacing:-19.037867pt;}
.ws86{word-spacing:-18.988800pt;}
.ws1bd{word-spacing:-18.954667pt;}
.ws36{word-spacing:-18.939733pt;}
.ws9a{word-spacing:-18.890667pt;}
.wsfd{word-spacing:-18.841600pt;}
.wsf3{word-spacing:-18.792533pt;}
.ws41{word-spacing:-18.743467pt;}
.ws64{word-spacing:-18.694400pt;}
.ws30{word-spacing:-18.645333pt;}
.wsbd{word-spacing:-18.630400pt;}
.ws39{word-spacing:-18.596267pt;}
.wsbc{word-spacing:-18.572800pt;}
.ws201{word-spacing:-18.551467pt;}
.ws8e{word-spacing:-18.547200pt;}
.ws81{word-spacing:-18.498133pt;}
.ws4e{word-spacing:-18.449067pt;}
.ws62{word-spacing:-18.400000pt;}
.ws60{word-spacing:-18.350933pt;}
.ws209{word-spacing:-18.348800pt;}
.ws46{word-spacing:-18.301867pt;}
.ws45{word-spacing:-18.252800pt;}
.wsfa{word-spacing:-18.224000pt;}
.wse0{word-spacing:-18.203733pt;}
.ws12e{word-spacing:-18.168533pt;}
.wse8{word-spacing:-18.154667pt;}
.ws63{word-spacing:-18.105600pt;}
.ws4f{word-spacing:-18.056533pt;}
.ws7d{word-spacing:-18.007467pt;}
.wsa9{word-spacing:-17.958400pt;}
.ws88{word-spacing:-17.909333pt;}
.wse4{word-spacing:-17.860267pt;}
.ws6c{word-spacing:-17.811200pt;}
.ws1fc{word-spacing:-17.801600pt;}
.ws6d{word-spacing:-17.762133pt;}
.ws218{word-spacing:-17.729067pt;}
.wsca{word-spacing:-17.713067pt;}
.ws61{word-spacing:-17.664000pt;}
.ws6b{word-spacing:-17.614933pt;}
.ws97{word-spacing:-17.565867pt;}
.wsef{word-spacing:-17.516800pt;}
.ws50{word-spacing:-17.467733pt;}
.ws12d{word-spacing:-17.463467pt;}
.ws6a{word-spacing:-17.418667pt;}
.ws8d{word-spacing:-17.369600pt;}
.ws207{word-spacing:-17.339733pt;}
.wsa3{word-spacing:-17.320533pt;}
.ws26{word-spacing:-17.271467pt;}
.ws37{word-spacing:-17.222400pt;}
.ws43{word-spacing:-17.173333pt;}
.ws38{word-spacing:-17.124267pt;}
.ws2c{word-spacing:-17.075200pt;}
.wsb9{word-spacing:-17.026133pt;}
.ws31{word-spacing:-16.977067pt;}
.wsfb{word-spacing:-16.964267pt;}
.ws210{word-spacing:-16.940800pt;}
.ws83{word-spacing:-16.928000pt;}
.ws211{word-spacing:-16.891733pt;}
.wse3{word-spacing:-16.878933pt;}
.ws19f{word-spacing:-16.866133pt;}
.ws135{word-spacing:-16.861867pt;}
.ws52{word-spacing:-16.853333pt;}
.ws7f{word-spacing:-16.829867pt;}
.ws1f9{word-spacing:-16.821333pt;}
.ws141{word-spacing:-16.810667pt;}
.ws5f{word-spacing:-16.780800pt;}
.ws1fb{word-spacing:-16.778667pt;}
.ws10b{word-spacing:-16.774400pt;}
.ws78{word-spacing:-16.731733pt;}
.ws1fa{word-spacing:-16.730667pt;}
.ws1a4{word-spacing:-16.725333pt;}
.ws35{word-spacing:-16.682667pt;}
.ws1ff{word-spacing:-16.664533pt;}
.ws5d{word-spacing:-16.633600pt;}
.ws2d{word-spacing:-16.584533pt;}
.wsc4{word-spacing:-16.535467pt;}
.ws73{word-spacing:-16.486400pt;}
.ws71{word-spacing:-16.469333pt;}
.ws91{word-spacing:-16.437333pt;}
.ws28{word-spacing:-16.388267pt;}
.ws156{word-spacing:-16.384000pt;}
.ws146{word-spacing:-16.349867pt;}
.ws215{word-spacing:-16.341333pt;}
.ws98{word-spacing:-16.339200pt;}
.ws202{word-spacing:-16.336000pt;}
.ws9c{word-spacing:-16.290133pt;}
.ws40{word-spacing:-16.241067pt;}
.wsf2{word-spacing:-16.192000pt;}
.ws213{word-spacing:-16.170667pt;}
.ws69{word-spacing:-16.142933pt;}
.wsc5{word-spacing:-16.093867pt;}
.ws1fe{word-spacing:-16.076800pt;}
.ws92{word-spacing:-16.044800pt;}
.ws95{word-spacing:-15.995733pt;}
.ws94{word-spacing:-15.968000pt;}
.wsd4{word-spacing:-15.946667pt;}
.ws5b{word-spacing:-15.897600pt;}
.ws68{word-spacing:-15.848533pt;}
.ws93{word-spacing:-15.830400pt;}
.wsaf{word-spacing:-15.829333pt;}
.ws32{word-spacing:-15.799467pt;}
.ws27{word-spacing:-15.750400pt;}
.ws57{word-spacing:-15.701333pt;}
.ws104{word-spacing:-15.658667pt;}
.wsc8{word-spacing:-15.652267pt;}
.ws208{word-spacing:-15.611733pt;}
.ws77{word-spacing:-15.603200pt;}
.ws85{word-spacing:-15.554133pt;}
.ws5e{word-spacing:-15.505067pt;}
.ws133{word-spacing:-15.473067pt;}
.ws3e{word-spacing:-15.456000pt;}
.wsf0{word-spacing:-15.406933pt;}
.ws19e{word-spacing:-15.360000pt;}
.wsc6{word-spacing:-15.357867pt;}
.ws205{word-spacing:-15.336533pt;}
.ws20e{word-spacing:-15.317333pt;}
.wsb1{word-spacing:-15.308800pt;}
.ws54{word-spacing:-15.274667pt;}
.wsa6{word-spacing:-15.259733pt;}
.ws65{word-spacing:-15.210667pt;}
.ws20c{word-spacing:-15.189333pt;}
.wsc1{word-spacing:-15.161600pt;}
.ws79{word-spacing:-15.140267pt;}
.wsbf{word-spacing:-15.112533pt;}
.wscb{word-spacing:-15.063467pt;}
.ws21a{word-spacing:-15.018667pt;}
.wscc{word-spacing:-15.014400pt;}
.wsa4{word-spacing:-14.965333pt;}
.ws1a0{word-spacing:-14.946133pt;}
.ws8c{word-spacing:-14.916267pt;}
.ws80{word-spacing:-14.867200pt;}
.ws70{word-spacing:-14.848000pt;}
.wsfe{word-spacing:-14.818133pt;}
.ws111{word-spacing:-14.769067pt;}
.wsd7{word-spacing:-14.762667pt;}
.ws82{word-spacing:-14.720000pt;}
.ws199{word-spacing:-14.677333pt;}
.wsde{word-spacing:-14.670933pt;}
.ws55{word-spacing:-14.634667pt;}
.ws2f{word-spacing:-14.621867pt;}
.ws15a{word-spacing:-14.572800pt;}
.wscd{word-spacing:-14.523733pt;}
.ws1f8{word-spacing:-14.517333pt;}
.ws1f3{word-spacing:-14.506667pt;}
.ws1f7{word-spacing:-14.501333pt;}
.ws136{word-spacing:-14.474667pt;}
.ws198{word-spacing:-14.464000pt;}
.ws2e{word-spacing:-14.425600pt;}
.ws67{word-spacing:-14.376533pt;}
.ws19c{word-spacing:-14.336000pt;}
.ws8b{word-spacing:-14.327467pt;}
.wsae{word-spacing:-14.293333pt;}
.ws87{word-spacing:-14.278400pt;}
.ws53{word-spacing:-14.250667pt;}
.wsa5{word-spacing:-14.229333pt;}
.wsb6{word-spacing:-14.180267pt;}
.wsb4{word-spacing:-14.131200pt;}
.ws191{word-spacing:-14.122667pt;}
.wsa2{word-spacing:-14.082133pt;}
.wsd3{word-spacing:-14.033067pt;}
.ws44{word-spacing:-13.984000pt;}
.ws140{word-spacing:-13.952000pt;}
.wse7{word-spacing:-13.934933pt;}
.ws13f{word-spacing:-13.909333pt;}
.ws84{word-spacing:-13.885867pt;}
.ws126{word-spacing:-13.866667pt;}
.ws206{word-spacing:-13.860267pt;}
.ws130{word-spacing:-13.836800pt;}
.ws1a7{word-spacing:-13.824000pt;}
.ws100{word-spacing:-13.787733pt;}
.ws20f{word-spacing:-13.781333pt;}
.ws7a{word-spacing:-13.738667pt;}
.ws18e{word-spacing:-13.696000pt;}
.ws13a{word-spacing:-13.689600pt;}
.ws16d{word-spacing:-13.640533pt;}
.ws214{word-spacing:-13.610667pt;}
.ws13b{word-spacing:-13.591467pt;}
.ws106{word-spacing:-13.542400pt;}
.ws76{word-spacing:-13.493333pt;}
.ws107{word-spacing:-13.444267pt;}
.ws217{word-spacing:-13.418667pt;}
.ws6e{word-spacing:-13.397333pt;}
.wsf8{word-spacing:-13.395200pt;}
.ws1cd{word-spacing:-13.354667pt;}
.ws109{word-spacing:-13.346133pt;}
.ws195{word-spacing:-13.312000pt;}
.ws25{word-spacing:-13.297067pt;}
.ws13c{word-spacing:-13.248000pt;}
.ws19a{word-spacing:-13.226667pt;}
.ws132{word-spacing:-13.198933pt;}
.wsdb{word-spacing:-13.149867pt;}
.ws103{word-spacing:-13.141333pt;}
.ws33{word-spacing:-13.100800pt;}
.ws19d{word-spacing:-13.098667pt;}
.ws8a{word-spacing:-13.051733pt;}
.ws56{word-spacing:-13.013333pt;}
.wsd1{word-spacing:-13.002667pt;}
.ws6f{word-spacing:-12.970667pt;}
.ws142{word-spacing:-12.953600pt;}
.ws129{word-spacing:-12.928000pt;}
.ws42{word-spacing:-12.904533pt;}
.wsd5{word-spacing:-12.855467pt;}
.ws1a8{word-spacing:-12.842667pt;}
.ws7b{word-spacing:-12.806400pt;}
.ws13e{word-spacing:-12.800000pt;}
.ws171{word-spacing:-12.757333pt;}
.ws16c{word-spacing:-12.708267pt;}
.ws18a{word-spacing:-12.672000pt;}
.wsd0{word-spacing:-12.659200pt;}
.wsd6{word-spacing:-12.610133pt;}
.wse1{word-spacing:-12.561067pt;}
.ws66{word-spacing:-12.512000pt;}
.ws14a{word-spacing:-12.462933pt;}
.ws196{word-spacing:-12.458667pt;}
.ws190{word-spacing:-12.413867pt;}
.ws16b{word-spacing:-12.364800pt;}
.ws159{word-spacing:-12.315733pt;}
.ws176{word-spacing:-12.266667pt;}
.ws116{word-spacing:-12.217600pt;}
.ws1bc{word-spacing:-12.202667pt;}
.ws14b{word-spacing:-12.168533pt;}
.ws235{word-spacing:-12.152000pt;}
.ws11c{word-spacing:-12.119467pt;}
.ws1ba{word-spacing:-12.117333pt;}
.wsf7{word-spacing:-12.070400pt;}
.ws216{word-spacing:-12.032000pt;}
.ws172{word-spacing:-12.021333pt;}
.wsaa{word-spacing:-11.972267pt;}
.ws18d{word-spacing:-11.946667pt;}
.ws16e{word-spacing:-11.923200pt;}
.ws18c{word-spacing:-11.904000pt;}
.ws177{word-spacing:-11.874133pt;}
.ws12a{word-spacing:-11.861333pt;}
.ws152{word-spacing:-11.825067pt;}
.ws1a5{word-spacing:-11.818667pt;}
.ws18b{word-spacing:-11.776000pt;}
.wsad{word-spacing:-11.733333pt;}
.ws113{word-spacing:-11.726933pt;}
.ws14c{word-spacing:-11.677867pt;}
.ws1af{word-spacing:-11.628800pt;}
.ws181{word-spacing:-11.579733pt;}
.ws15c{word-spacing:-11.530667pt;}
.ws21b{word-spacing:-11.494400pt;}
.ws145{word-spacing:-11.481600pt;}
.ws1a2{word-spacing:-11.434667pt;}
.ws1b4{word-spacing:-11.432533pt;}
.ws197{word-spacing:-11.392000pt;}
.ws20b{word-spacing:-11.349333pt;}
.ws178{word-spacing:-11.334400pt;}
.ws18f{word-spacing:-11.306667pt;}
.ws170{word-spacing:-11.285333pt;}
.ws194{word-spacing:-11.264000pt;}
.ws186{word-spacing:-11.236267pt;}
.ws1c6{word-spacing:-11.187200pt;}
.ws20d{word-spacing:-11.178667pt;}
.ws15e{word-spacing:-11.138133pt;}
.ws19b{word-spacing:-11.136000pt;}
.ws1a6{word-spacing:-11.093333pt;}
.ws1c2{word-spacing:-11.040000pt;}
.ws162{word-spacing:-10.990933pt;}
.ws175{word-spacing:-10.941867pt;}
.ws1a3{word-spacing:-10.922667pt;}
.ws1ad{word-spacing:-10.892800pt;}
.ws1b8{word-spacing:-10.794667pt;}
.ws128{word-spacing:-10.752000pt;}
.ws21d{word-spacing:-10.696533pt;}
.wsab{word-spacing:-10.666667pt;}
.ws173{word-spacing:-10.647467pt;}
.ws21e{word-spacing:-10.598400pt;}
.ws1db{word-spacing:-10.500267pt;}
.ws17f{word-spacing:-10.451200pt;}
.ws1c5{word-spacing:-10.402133pt;}
.ws147{word-spacing:-10.353067pt;}
.ws1f2{word-spacing:-10.344533pt;}
.ws1ee{word-spacing:-10.304000pt;}
.ws127{word-spacing:-10.282667pt;}
.ws151{word-spacing:-10.254933pt;}
.ws13d{word-spacing:-10.154667pt;}
.ws143{word-spacing:-10.069333pt;}
.ws174{word-spacing:-10.058667pt;}
.ws1ae{word-spacing:-10.009600pt;}
.ws1f0{word-spacing:-9.862400pt;}
.wsb{word-spacing:-9.820800pt;}
.ws1e1{word-spacing:-9.813333pt;}
.ws134{word-spacing:-9.770667pt;}
.ws179{word-spacing:-9.764267pt;}
.ws187{word-spacing:-9.715200pt;}
.ws165{word-spacing:-9.666133pt;}
.ws1c1{word-spacing:-9.568000pt;}
.ws1ce{word-spacing:-9.469867pt;}
.ws163{word-spacing:-9.420800pt;}
.ws234{word-spacing:-9.372800pt;}
.ws164{word-spacing:-9.371733pt;}
.ws1ec{word-spacing:-9.224533pt;}
.ws1e4{word-spacing:-9.028267pt;}
.ws183{word-spacing:-8.979200pt;}
.wsa{word-spacing:-8.976000pt;}
.ws125{word-spacing:-8.973867pt;}
.ws11b{word-spacing:-8.881067pt;}
.ws1b0{word-spacing:-8.832000pt;}
.ws1b3{word-spacing:-8.733867pt;}
.ws17d{word-spacing:-8.537600pt;}
.ws1cc{word-spacing:-8.488533pt;}
.ws110{word-spacing:-8.439467pt;}
.ws150{word-spacing:-8.390400pt;}
.ws167{word-spacing:-8.341333pt;}
.ws1a1{word-spacing:-8.234667pt;}
.ws220{word-spacing:-8.145067pt;}
.ws112{word-spacing:-8.096000pt;}
.ws1c0{word-spacing:-7.948800pt;}
.ws1be{word-spacing:-7.901440pt;}
.ws17e{word-spacing:-7.703467pt;}
.ws1b1{word-spacing:-7.654400pt;}
.ws1c9{word-spacing:-7.605333pt;}
.ws158{word-spacing:-7.475200pt;}
.ws1ac{word-spacing:-7.409067pt;}
.ws21c{word-spacing:-7.363200pt;}
.ws148{word-spacing:-7.212800pt;}
.ws161{word-spacing:-7.016533pt;}
.wsf9{word-spacing:-6.903467pt;}
.ws17b{word-spacing:-6.771200pt;}
.ws180{word-spacing:-6.722133pt;}
.wsb7{word-spacing:-6.669867pt;}
.ws221{word-spacing:-6.624000pt;}
.ws224{word-spacing:-6.427733pt;}
.ws1a9{word-spacing:-6.354773pt;}
.ws1cb{word-spacing:-6.182400pt;}
.ws1b7{word-spacing:-6.133333pt;}
.ws222{word-spacing:-5.888000pt;}
.ws169{word-spacing:-5.869867pt;}
.ws1d3{word-spacing:-5.789867pt;}
.ws1e0{word-spacing:-5.765333pt;}
.ws1d1{word-spacing:-5.740800pt;}
.ws1bf{word-spacing:-5.642667pt;}
.ws184{word-spacing:-5.593600pt;}
.ws21f{word-spacing:-5.201067pt;}
.ws1c3{word-spacing:-5.053867pt;}
.ws17a{word-spacing:-4.759467pt;}
.ws1ed{word-spacing:-4.661333pt;}
.ws185{word-spacing:-4.612267pt;}
.ws15f{word-spacing:-4.170667pt;}
.ws149{word-spacing:-3.974400pt;}
.ws14e{word-spacing:-3.876267pt;}
.ws225{word-spacing:-3.827200pt;}
.ws1eb{word-spacing:-3.800533pt;}
.ws157{word-spacing:-3.768533pt;}
.ws166{word-spacing:-3.630933pt;}
.ws3f{word-spacing:-3.597440pt;}
.ws1e9{word-spacing:-3.544533pt;}
.ws1ea{word-spacing:-3.453867pt;}
.ws1f1{word-spacing:-3.427200pt;}
.ws1b9{word-spacing:-2.781867pt;}
.ws1bb{word-spacing:-2.752000pt;}
.ws223{word-spacing:-2.551467pt;}
.ws193{word-spacing:-2.381867pt;}
.ws182{word-spacing:-1.619200pt;}
.ws192{word-spacing:-1.472000pt;}
.ws10{word-spacing:-1.405333pt;}
.ws9{word-spacing:-1.140800pt;}
.ws119{word-spacing:-1.128533pt;}
.wse{word-spacing:-1.088000pt;}
.ws233{word-spacing:-0.504000pt;}
.ws14d{word-spacing:-0.441600pt;}
.ws11{word-spacing:-0.362667pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:0.545600pt;}
.wsf{word-spacing:0.680000pt;}
.ws1c4{word-spacing:0.981333pt;}
.ws1b2{word-spacing:1.128533pt;}
.ws12{word-spacing:1.904000pt;}
.ws1ef{word-spacing:2.034133pt;}
.wsc{word-spacing:2.132800pt;}
.ws11a{word-spacing:2.551467pt;}
.ws8{word-spacing:2.728000pt;}
.ws1{word-spacing:2.827200pt;}
.ws3{word-spacing:2.976000pt;}
.ws1b6{word-spacing:3.140267pt;}
.ws2{word-spacing:3.174400pt;}
.ws5{word-spacing:3.472000pt;}
.ws1aa{word-spacing:3.532800pt;}
.ws6{word-spacing:3.918400pt;}
.ws1ca{word-spacing:4.072533pt;}
.ws160{word-spacing:4.857600pt;}
.ws13{word-spacing:5.168000pt;}
.ws1b5{word-spacing:5.691733pt;}
.ws4{word-spacing:6.100800pt;}
.ws17c{word-spacing:6.133333pt;}
.ws1e6{word-spacing:6.329600pt;}
.ws117{word-spacing:6.673067pt;}
.wsd{word-spacing:8.432000pt;}
.ws1ab{word-spacing:8.782933pt;}
.ws226{word-spacing:10.254933pt;}
.ws1da{word-spacing:18.105600pt;}
.ws1d9{word-spacing:31.500800pt;}
.ws1e5{word-spacing:48.870400pt;}
.ws118{word-spacing:59.812267pt;}
.ws1df{word-spacing:93.030400pt;}
.ws1e3{word-spacing:161.233067pt;}
._3b{margin-left:-11.648000pt;}
._3a{margin-left:-9.372800pt;}
._3c{margin-left:-8.433600pt;}
._1f{margin-left:-7.142933pt;}
._20{margin-left:-5.632000pt;}
._11{margin-left:-4.661333pt;}
._2{margin-left:-3.372800pt;}
._1{margin-left:-1.934400pt;}
._0{margin-left:-0.992000pt;}
._3{width:1.200000pt;}
._5{width:2.180480pt;}
._18{width:3.321600pt;}
._34{width:4.416000pt;}
._13{width:5.333333pt;}
._15{width:7.163733pt;}
._8{width:8.684800pt;}
._d{width:9.627733pt;}
._a{width:10.549333pt;}
._7{width:12.122667pt;}
._b{width:13.248000pt;}
._9{width:14.740800pt;}
._4{width:15.824000pt;}
._c{width:16.840533pt;}
._6{width:18.322667pt;}
._22{width:19.482133pt;}
._26{width:20.647467pt;}
._1a{width:21.708800pt;}
._1e{width:22.829333pt;}
._21{width:24.526400pt;}
._24{width:25.595200pt;}
._30{width:26.897067pt;}
._1c{width:28.125867pt;}
._23{width:29.303467pt;}
._31{width:30.883733pt;}
._1d{width:32.076800pt;}
._35{width:33.270400pt;}
._32{width:35.397867pt;}
._1b{width:36.407467pt;}
._25{width:37.468800pt;}
._39{width:40.003200pt;}
._37{width:47.889067pt;}
._38{width:57.598400pt;}
._27{width:58.929067pt;}
._2d{width:59.904000pt;}
._33{width:63.984000pt;}
._29{width:64.944000pt;}
._28{width:66.096000pt;}
._2f{width:67.056000pt;}
._2a{width:68.256000pt;}
._36{width:69.648000pt;}
._2b{width:74.112000pt;}
._2c{width:75.024000pt;}
._2e{width:75.984000pt;}
._19{width:77.088000pt;}
._f{width:78.208000pt;}
._17{width:79.200000pt;}
._12{width:80.554667pt;}
._e{width:82.944000pt;}
._14{width:85.344000pt;}
._10{width:86.736000pt;}
._16{width:88.608000pt;}
.fs12{font-size:29.866667pt;}
.fsc{font-size:34.346667pt;}
.fs8{font-size:41.066667pt;}
.fsd{font-size:42.666667pt;}
.fs10{font-size:42.933333pt;}
.fs4{font-size:45.333333pt;}
.fs14{font-size:46.400000pt;}
.fse{font-size:48.000000pt;}
.fs6{font-size:49.066667pt;}
.fs0{font-size:49.600000pt;}
.fsb{font-size:53.333333pt;}
.fs11{font-size:54.880000pt;}
.fs1{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fsf{font-size:61.333333pt;}
.fs7{font-size:69.333333pt;}
.fsa{font-size:78.400000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:82.666667pt;}
.fs9{font-size:93.333333pt;}
.fs13{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y24b{bottom:32.120667pt;}
.y24a{bottom:46.792667pt;}
.y87{bottom:70.026667pt;}
.y1bb{bottom:70.316000pt;}
.yd0{bottom:71.893333pt;}
.y10d{bottom:73.760000pt;}
.y3{bottom:74.960667pt;}
.y27{bottom:74.966400pt;}
.yc{bottom:74.970933pt;}
.y249{bottom:77.649333pt;}
.y1fd{bottom:78.560000pt;}
.y115{bottom:80.049333pt;}
.y211{bottom:80.426667pt;}
.yf7{bottom:81.916000pt;}
.y86{bottom:84.693333pt;}
.yb0{bottom:87.093333pt;}
.y1ba{bottom:87.382667pt;}
.ycf{bottom:88.960000pt;}
.y3e{bottom:90.682667pt;}
.y10c{bottom:90.826667pt;}
.yb{bottom:91.636533pt;}
.y1b1{bottom:92.890667pt;}
.y248{bottom:94.716000pt;}
.y1fc{bottom:95.626667pt;}
.y114{bottom:97.116000pt;}
.y210{bottom:97.493333pt;}
.y1ee{bottom:97.926667pt;}
.yf6{bottom:98.982667pt;}
.y85{bottom:99.360000pt;}
.y23d{bottom:103.129333pt;}
.yaf{bottom:104.160000pt;}
.y1b9{bottom:104.449333pt;}
.yce{bottom:106.026667pt;}
.y3d{bottom:107.749333pt;}
.y10b{bottom:107.893333pt;}
.y26{bottom:108.297600pt;}
.ya{bottom:108.302133pt;}
.y247{bottom:111.782667pt;}
.y1ed{bottom:112.593333pt;}
.y1fb{bottom:112.693333pt;}
.y84{bottom:114.026667pt;}
.y113{bottom:114.182667pt;}
.y20f{bottom:114.560000pt;}
.yf5{bottom:116.049333pt;}
.y23c{bottom:120.196000pt;}
.yae{bottom:121.226667pt;}
.y1b8{bottom:121.516000pt;}
.y1f7{bottom:122.469333pt;}
.ycd{bottom:123.093333pt;}
.y3c{bottom:124.816000pt;}
.y10a{bottom:124.960000pt;}
.y25{bottom:124.963200pt;}
.y9{bottom:124.967733pt;}
.y1ec{bottom:127.260000pt;}
.y83{bottom:128.693333pt;}
.y246{bottom:128.849333pt;}
.y171{bottom:129.760000pt;}
.y1b0{bottom:129.853333pt;}
.y11e{bottom:131.105333pt;}
.y112{bottom:131.249333pt;}
.y20e{bottom:131.626667pt;}
.yf4{bottom:133.116000pt;}
.y23b{bottom:137.262667pt;}
.y1e5{bottom:138.158800pt;}
.yad{bottom:138.293333pt;}
.y1b7{bottom:138.582667pt;}
.y1f6{bottom:139.536000pt;}
.ycc{bottom:140.160000pt;}
.y15c{bottom:141.137333pt;}
.y24{bottom:141.628800pt;}
.y8{bottom:141.633333pt;}
.y82{bottom:141.926667pt;}
.y109{bottom:142.026667pt;}
.y181{bottom:143.026667pt;}
.yb1{bottom:143.360000pt;}
.y245{bottom:145.916000pt;}
.y170{bottom:146.826667pt;}
.y1af{bottom:146.920000pt;}
.y111{bottom:148.316000pt;}
.y20d{bottom:148.693333pt;}
.yf3{bottom:150.182667pt;}
.y23a{bottom:154.329333pt;}
.y1e4{bottom:155.225467pt;}
.yac{bottom:155.360000pt;}
.y1b6{bottom:155.649333pt;}
.y81{bottom:156.593333pt;}
.y1f5{bottom:156.602667pt;}
.ycb{bottom:157.226667pt;}
.y139{bottom:157.798667pt;}
.y1bd{bottom:158.026667pt;}
.y23{bottom:158.294400pt;}
.y7{bottom:158.298933pt;}
.y3b{bottom:158.949333pt;}
.y108{bottom:159.093333pt;}
.y244{bottom:162.982667pt;}
.y194{bottom:163.893333pt;}
.y1ae{bottom:163.986667pt;}
.y110{bottom:165.382667pt;}
.y20c{bottom:165.760000pt;}
.yf2{bottom:167.249333pt;}
.y1eb{bottom:169.826667pt;}
.y239{bottom:171.396000pt;}
.y1e3{bottom:172.292133pt;}
.yaa{bottom:172.426667pt;}
.y1bc{bottom:172.693333pt;}
.y1b5{bottom:172.716000pt;}
.y1f4{bottom:173.669333pt;}
.yca{bottom:174.293333pt;}
.y22{bottom:174.960000pt;}
.y6{bottom:174.964533pt;}
.y11d{bottom:175.116000pt;}
.y3a{bottom:176.016000pt;}
.y107{bottom:176.160000pt;}
.y15b{bottom:178.116000pt;}
.y243{bottom:180.049333pt;}
.y193{bottom:180.960000pt;}
.y1ad{bottom:181.053333pt;}
.y180{bottom:181.893333pt;}
.ye8{bottom:182.449333pt;}
.y20b{bottom:182.826667pt;}
.yf1{bottom:184.316000pt;}
.y1ea{bottom:184.493333pt;}
.y16f{bottom:187.360000pt;}
.y238{bottom:188.462667pt;}
.y1e2{bottom:189.358800pt;}
.ya9{bottom:189.493333pt;}
.y1b4{bottom:189.782667pt;}
.y1f3{bottom:190.736000pt;}
.yc9{bottom:191.360000pt;}
.y21{bottom:191.625600pt;}
.y5{bottom:191.630133pt;}
.y11c{bottom:192.182667pt;}
.y39{bottom:193.082667pt;}
.y106{bottom:193.226667pt;}
.y138{bottom:194.369333pt;}
.y15a{bottom:195.182667pt;}
.y242{bottom:197.116000pt;}
.y192{bottom:198.026667pt;}
.y1ac{bottom:198.120000pt;}
.y17f{bottom:198.960000pt;}
.y1e9{bottom:199.160000pt;}
.ye7{bottom:199.516000pt;}
.y20a{bottom:199.893333pt;}
.y237{bottom:205.529333pt;}
.y1e1{bottom:206.425467pt;}
.ya8{bottom:206.560000pt;}
.y1b3{bottom:206.849333pt;}
.y1f2{bottom:207.802667pt;}
.yc8{bottom:208.426667pt;}
.y11b{bottom:209.249333pt;}
.y38{bottom:210.149333pt;}
.y105{bottom:210.293333pt;}
.y137{bottom:211.436000pt;}
.y159{bottom:212.249333pt;}
.y1e8{bottom:213.826667pt;}
.y241{bottom:214.182667pt;}
.y191{bottom:215.093333pt;}
.y1ab{bottom:215.186667pt;}
.y17e{bottom:216.026667pt;}
.ye6{bottom:216.582667pt;}
.y209{bottom:216.960000pt;}
.yf0{bottom:218.449333pt;}
.y236{bottom:222.596000pt;}
.y1e0{bottom:223.492133pt;}
.ya7{bottom:223.626667pt;}
.y80{bottom:223.916000pt;}
.y1f1{bottom:224.869333pt;}
.yc7{bottom:225.493333pt;}
.y11a{bottom:226.316000pt;}
.y104{bottom:227.360000pt;}
.y16e{bottom:227.893333pt;}
.y1e7{bottom:228.493333pt;}
.y136{bottom:228.502667pt;}
.y267{bottom:228.737200pt;}
.y158{bottom:229.316000pt;}
.y240{bottom:231.249333pt;}
.y1aa{bottom:232.253333pt;}
.y17d{bottom:233.093333pt;}
.ye5{bottom:233.649333pt;}
.y208{bottom:234.026667pt;}
.y235{bottom:239.661333pt;}
.y1df{bottom:240.558800pt;}
.ya6{bottom:240.693333pt;}
.y7f{bottom:240.982667pt;}
.y266{bottom:242.065600pt;}
.yc6{bottom:242.560000pt;}
.y1e6{bottom:243.160000pt;}
.y119{bottom:243.382667pt;}
.y37{bottom:244.282667pt;}
.y103{bottom:244.426667pt;}
.y16d{bottom:244.960000pt;}
.y135{bottom:245.569333pt;}
.y157{bottom:246.382667pt;}
.y67{bottom:248.316000pt;}
.y190{bottom:249.226667pt;}
.y17c{bottom:250.160000pt;}
.ye4{bottom:250.716000pt;}
.y265{bottom:255.394000pt;}
.y234{bottom:256.728000pt;}
.y1de{bottom:257.625467pt;}
.ya5{bottom:257.760000pt;}
.y1a9{bottom:257.853333pt;}
.y7e{bottom:258.049333pt;}
.y20{bottom:258.300400pt;}
.yc5{bottom:259.626667pt;}
.y118{bottom:260.449333pt;}
.y36{bottom:261.349333pt;}
.y102{bottom:261.493333pt;}
.y16c{bottom:262.026667pt;}
.y134{bottom:262.636000pt;}
.y66{bottom:265.382667pt;}
.y17b{bottom:267.226667pt;}
.ye3{bottom:267.782667pt;}
.y207{bottom:268.160000pt;}
.y264{bottom:268.722400pt;}
.y156{bottom:271.982667pt;}
.y25d{bottom:272.064400pt;}
.y233{bottom:273.794667pt;}
.y1dd{bottom:274.692133pt;}
.ya4{bottom:274.826667pt;}
.y1a8{bottom:274.920000pt;}
.y7d{bottom:275.116000pt;}
.yc4{bottom:276.693333pt;}
.y35{bottom:278.416000pt;}
.y101{bottom:278.560000pt;}
.y16b{bottom:279.093333pt;}
.y133{bottom:279.702667pt;}
.y65{bottom:282.449333pt;}
.y17a{bottom:284.293333pt;}
.ye2{bottom:284.849333pt;}
.y25c{bottom:285.392800pt;}
.y155{bottom:289.049333pt;}
.y232{bottom:290.861333pt;}
.y1f{bottom:291.620267pt;}
.y1dc{bottom:291.758800pt;}
.ya3{bottom:291.893333pt;}
.y1a7{bottom:291.986667pt;}
.y7c{bottom:292.182667pt;}
.yc3{bottom:293.760000pt;}
.y34{bottom:295.482667pt;}
.y100{bottom:295.626667pt;}
.y16a{bottom:296.160000pt;}
.y52{bottom:297.520000pt;}
.y263{bottom:298.054533pt;}
.y18f{bottom:298.560000pt;}
.y25b{bottom:298.721200pt;}
.y64{bottom:299.516000pt;}
.y145{bottom:300.426667pt;}
.ye1{bottom:301.916000pt;}
.y132{bottom:305.302667pt;}
.y154{bottom:306.116000pt;}
.y231{bottom:307.928000pt;}
.y1e{bottom:308.291600pt;}
.y1db{bottom:308.825467pt;}
.ya2{bottom:308.960000pt;}
.y1a6{bottom:309.053333pt;}
.y7b{bottom:309.249333pt;}
.y179{bottom:309.893333pt;}
.yc2{bottom:310.826667pt;}
.y25a{bottom:312.054533pt;}
.yff{bottom:312.693333pt;}
.y169{bottom:313.226667pt;}
.y63{bottom:316.582667pt;}
.y206{bottom:317.493333pt;}
.ye0{bottom:318.982667pt;}
.y131{bottom:322.369333pt;}
.y1d{bottom:323.625600pt;}
.y230{bottom:324.994667pt;}
.y1da{bottom:325.892133pt;}
.ya1{bottom:326.026667pt;}
.y1a5{bottom:326.120000pt;}
.y7a{bottom:326.316000pt;}
.y178{bottom:326.960000pt;}
.yc1{bottom:327.893333pt;}
.y259{bottom:328.058533pt;}
.y262{bottom:328.059733pt;}
.y33{bottom:329.616000pt;}
.yfe{bottom:329.760000pt;}
.y168{bottom:330.293333pt;}
.y51{bottom:331.653333pt;}
.y62{bottom:333.649333pt;}
.y205{bottom:334.560000pt;}
.ydf{bottom:336.049333pt;}
.y1c{bottom:338.959600pt;}
.y130{bottom:339.436000pt;}
.y18e{bottom:339.893333pt;}
.y22f{bottom:342.061333pt;}
.y1d9{bottom:342.958800pt;}
.ya0{bottom:343.093333pt;}
.y1a4{bottom:343.186667pt;}
.y79{bottom:343.382667pt;}
.yc0{bottom:344.960000pt;}
.y32{bottom:346.682667pt;}
.y167{bottom:347.360000pt;}
.y217{bottom:347.728000pt;}
.y50{bottom:348.720000pt;}
.y61{bottom:350.716000pt;}
.y204{bottom:351.626667pt;}
.yde{bottom:353.116000pt;}
.y1b{bottom:354.293600pt;}
.y18d{bottom:356.960000pt;}
.y22e{bottom:359.128000pt;}
.y1d8{bottom:360.025467pt;}
.y9f{bottom:360.160000pt;}
.y1a3{bottom:360.253333pt;}
.y78{bottom:360.449333pt;}
.ybf{bottom:362.026667pt;}
.y31{bottom:363.749333pt;}
.yfd{bottom:363.893333pt;}
.y166{bottom:364.426667pt;}
.y216{bottom:364.794667pt;}
.y177{bottom:365.826667pt;}
.y60{bottom:367.782667pt;}
.y203{bottom:368.693333pt;}
.y1a{bottom:369.627600pt;}
.ydd{bottom:370.182667pt;}
.y18c{bottom:374.026667pt;}
.y12f{bottom:376.008000pt;}
.y22d{bottom:376.194667pt;}
.y1d7{bottom:377.092133pt;}
.y9e{bottom:377.226667pt;}
.y1a2{bottom:377.320000pt;}
.y77{bottom:377.516000pt;}
.ybe{bottom:379.093333pt;}
.y153{bottom:380.070667pt;}
.y165{bottom:381.493333pt;}
.y4f{bottom:382.853333pt;}
.y5f{bottom:384.849333pt;}
.y19{bottom:384.961600pt;}
.y202{bottom:385.760000pt;}
.ydc{bottom:387.249333pt;}
.y18b{bottom:391.093333pt;}
.y22c{bottom:393.261333pt;}
.y1d6{bottom:394.158800pt;}
.y9d{bottom:394.293333pt;}
.y1a1{bottom:394.386667pt;}
.y76{bottom:394.582667pt;}
.ybd{bottom:396.160000pt;}
.y152{bottom:397.137333pt;}
.y30{bottom:397.882667pt;}
.y4e{bottom:399.920000pt;}
.y18{bottom:400.295600pt;}
.y5e{bottom:401.916000pt;}
.y201{bottom:402.826667pt;}
.ydb{bottom:404.316000pt;}
.y176{bottom:404.693333pt;}
.y164{bottom:407.093333pt;}
.y18a{bottom:408.160000pt;}
.y22b{bottom:410.328000pt;}
.y1d5{bottom:411.225467pt;}
.y9c{bottom:411.360000pt;}
.y1a0{bottom:411.453333pt;}
.y75{bottom:411.649333pt;}
.y12e{bottom:412.578667pt;}
.ybc{bottom:413.226667pt;}
.y151{bottom:414.204000pt;}
.y2f{bottom:414.949333pt;}
.y17{bottom:415.629600pt;}
.y23e{bottom:416.466667pt;}
.yec{bottom:417.166667pt;}
.y5d{bottom:418.982667pt;}
.y200{bottom:419.893333pt;}
.yda{bottom:421.382667pt;}
.y175{bottom:421.760000pt;}
.y163{bottom:424.160000pt;}
.y22a{bottom:427.394667pt;}
.y1d4{bottom:428.292133pt;}
.y9b{bottom:428.426667pt;}
.y74{bottom:428.716000pt;}
.y12d{bottom:429.645333pt;}
.ybb{bottom:430.293333pt;}
.y16{bottom:430.963600pt;}
.y150{bottom:431.270667pt;}
.yeb{bottom:434.233333pt;}
.y261{bottom:435.939733pt;}
.y5c{bottom:436.049333pt;}
.y1ff{bottom:436.960000pt;}
.yd9{bottom:438.449333pt;}
.y174{bottom:438.826667pt;}
.y162{bottom:441.226667pt;}
.y229{bottom:444.461333pt;}
.y4d{bottom:444.586667pt;}
.y1d3{bottom:445.358800pt;}
.y9a{bottom:445.493333pt;}
.y73{bottom:445.782667pt;}
.y15{bottom:446.297600pt;}
.y12c{bottom:446.712000pt;}
.yba{bottom:447.360000pt;}
.y14f{bottom:448.337333pt;}
.y19f{bottom:448.414667pt;}
.y260{bottom:449.268133pt;}
.y189{bottom:449.493333pt;}
.y258{bottom:449.939733pt;}
.y5b{bottom:453.116000pt;}
.y1fe{bottom:454.026667pt;}
.yd8{bottom:455.516000pt;}
.y2e{bottom:459.614667pt;}
.y228{bottom:461.528000pt;}
.y14{bottom:461.631600pt;}
.y4c{bottom:461.653333pt;}
.y1d2{bottom:462.425467pt;}
.y99{bottom:462.560000pt;}
.y25f{bottom:462.596533pt;}
.y72{bottom:462.849333pt;}
.y257{bottom:463.268133pt;}
.y1fa{bottom:463.624000pt;}
.yb9{bottom:464.426667pt;}
.y14e{bottom:465.404000pt;}
.y5a{bottom:470.182667pt;}
.y144{bottom:471.093333pt;}
.y12b{bottom:472.312000pt;}
.yd7{bottom:472.582667pt;}
.y256{bottom:476.596533pt;}
.y2d{bottom:476.681333pt;}
.y1b2{bottom:477.760000pt;}
.y227{bottom:478.594667pt;}
.y4b{bottom:478.720000pt;}
.y1d1{bottom:479.492133pt;}
.y98{bottom:479.626667pt;}
.y71{bottom:479.916000pt;}
.y1f9{bottom:480.690667pt;}
.yb8{bottom:481.493333pt;}
.y161{bottom:481.760000pt;}
.y14d{bottom:482.470667pt;}
.y19e{bottom:485.377333pt;}
.y59{bottom:487.249333pt;}
.y143{bottom:488.160000pt;}
.y12a{bottom:489.378667pt;}
.yd6{bottom:489.649333pt;}
.y188{bottom:490.826667pt;}
.y25e{bottom:491.924533pt;}
.y2c{bottom:493.748000pt;}
.y226{bottom:495.661333pt;}
.y1d0{bottom:496.558800pt;}
.y97{bottom:496.693333pt;}
.y70{bottom:496.982667pt;}
.yb7{bottom:498.560000pt;}
.y14c{bottom:499.537333pt;}
.y19d{bottom:502.444000pt;}
.y58{bottom:504.316000pt;}
.y142{bottom:505.226667pt;}
.y255{bottom:505.928533pt;}
.y129{bottom:506.445333pt;}
.yd5{bottom:506.716000pt;}
.y187{bottom:507.893333pt;}
.y225{bottom:512.728000pt;}
.y4a{bottom:512.853333pt;}
.y1cf{bottom:513.625467pt;}
.y96{bottom:513.760000pt;}
.y6f{bottom:514.049333pt;}
.yb6{bottom:515.626667pt;}
.y14b{bottom:516.604000pt;}
.y19c{bottom:519.510667pt;}
.y254{bottom:519.928533pt;}
.y57{bottom:521.382667pt;}
.y141{bottom:522.293333pt;}
.yd4{bottom:523.782667pt;}
.y186{bottom:524.960000pt;}
.y13{bottom:526.970133pt;}
.y2b{bottom:527.881333pt;}
.y224{bottom:529.794667pt;}
.y49{bottom:529.920000pt;}
.y1ce{bottom:530.692133pt;}
.y95{bottom:530.826667pt;}
.y6e{bottom:531.116000pt;}
.yb5{bottom:532.693333pt;}
.y253{bottom:535.928533pt;}
.y56{bottom:538.449333pt;}
.y1f8{bottom:538.949333pt;}
.y160{bottom:539.360000pt;}
.yd3{bottom:540.849333pt;}
.y14a{bottom:542.204000pt;}
.y128{bottom:543.017333pt;}
.y12{bottom:543.635733pt;}
.y2a{bottom:544.948000pt;}
.y223{bottom:546.861333pt;}
.y48{bottom:546.986667pt;}
.y1cd{bottom:547.758800pt;}
.y94{bottom:547.893333pt;}
.y6d{bottom:548.182667pt;}
.yb4{bottom:549.760000pt;}
.y185{bottom:550.560000pt;}
.y55{bottom:555.516000pt;}
.y15f{bottom:556.426667pt;}
.y19b{bottom:556.473333pt;}
.y149{bottom:559.270667pt;}
.y11{bottom:560.301333pt;}
.y222{bottom:563.928000pt;}
.y1cc{bottom:564.825467pt;}
.y93{bottom:564.960000pt;}
.y6c{bottom:565.249333pt;}
.yb3{bottom:566.826667pt;}
.y184{bottom:567.626667pt;}
.y54{bottom:572.582667pt;}
.y15e{bottom:573.493333pt;}
.y148{bottom:576.337333pt;}
.y10{bottom:576.966933pt;}
.y127{bottom:579.588000pt;}
.y221{bottom:580.994667pt;}
.y47{bottom:581.120000pt;}
.y1cb{bottom:581.892133pt;}
.y92{bottom:582.026667pt;}
.yfc{bottom:583.893333pt;}
.y183{bottom:584.693333pt;}
.y215{bottom:584.980000pt;}
.yd2{bottom:586.588000pt;}
.y29{bottom:589.614667pt;}
.y53{bottom:589.649333pt;}
.y15d{bottom:590.560000pt;}
.y147{bottom:593.404000pt;}
.y19a{bottom:593.434667pt;}
.y126{bottom:596.654667pt;}
.y220{bottom:598.061333pt;}
.y46{bottom:598.186667pt;}
.y1ca{bottom:598.958800pt;}
.y91{bottom:599.093333pt;}
.yb2{bottom:600.960000pt;}
.y1f0{bottom:601.677333pt;}
.y214{bottom:602.046667pt;}
.y140{bottom:607.626667pt;}
.y199{bottom:610.501333pt;}
.y6b{bottom:610.988000pt;}
.y125{bottom:613.721333pt;}
.y21f{bottom:615.128000pt;}
.y45{bottom:615.253333pt;}
.y1c9{bottom:616.025467pt;}
.y90{bottom:616.160000pt;}
.yfb{bottom:618.026667pt;}
.y1ef{bottom:618.744000pt;}
.y213{bottom:619.113333pt;}
.yd1{bottom:620.721333pt;}
.y10f{bottom:621.165333pt;}
.y69{bottom:623.953333pt;}
.y13f{bottom:624.693333pt;}
.y182{bottom:626.026667pt;}
.y198{bottom:627.568000pt;}
.y146{bottom:630.381333pt;}
.y124{bottom:630.788000pt;}
.y21e{bottom:632.194667pt;}
.y1c8{bottom:633.092133pt;}
.y8f{bottom:633.226667pt;}
.yfa{bottom:635.093333pt;}
.y23f{bottom:635.388000pt;}
.y212{bottom:636.180000pt;}
.y10e{bottom:638.232000pt;}
.y13e{bottom:641.760000pt;}
.y197{bottom:644.634667pt;}
.y6a{bottom:645.121333pt;}
.y123{bottom:647.854667pt;}
.y21d{bottom:649.261333pt;}
.y44{bottom:649.386667pt;}
.y1c7{bottom:650.158800pt;}
.y8e{bottom:650.293333pt;}
.yf9{bottom:652.160000pt;}
.y252{bottom:654.034133pt;}
.y68{bottom:658.086667pt;}
.y13d{bottom:658.826667pt;}
.y196{bottom:661.701333pt;}
.y1bf{bottom:663.304000pt;}
.y122{bottom:664.921333pt;}
.y21c{bottom:666.328000pt;}
.y43{bottom:666.453333pt;}
.y1c6{bottom:667.225467pt;}
.y8d{bottom:667.360000pt;}
.y251{bottom:667.362533pt;}
.y173{bottom:669.226667pt;}
.y28{bottom:669.521333pt;}
.y13c{bottom:675.893333pt;}
.y1be{bottom:680.370667pt;}
.y250{bottom:680.690933pt;}
.y121{bottom:681.988000pt;}
.y21b{bottom:683.394667pt;}
.y42{bottom:683.520000pt;}
.y1c5{bottom:684.292133pt;}
.y8c{bottom:684.426667pt;}
.y117{bottom:684.746667pt;}
.yf8{bottom:686.293333pt;}
.yef{bottom:692.058667pt;}
.y13b{bottom:692.960000pt;}
.y195{bottom:698.664000pt;}
.y120{bottom:699.054667pt;}
.y21a{bottom:700.461333pt;}
.y41{bottom:700.586667pt;}
.y1c4{bottom:701.358800pt;}
.y8b{bottom:701.493333pt;}
.y116{bottom:701.813333pt;}
.y172{bottom:703.360000pt;}
.yee{bottom:709.125333pt;}
.y24f{bottom:710.022933pt;}
.y13a{bottom:710.026667pt;}
.yf{bottom:711.800667pt;}
.y11f{bottom:716.121333pt;}
.y219{bottom:717.528000pt;}
.y1c3{bottom:718.425467pt;}
.y8a{bottom:718.560000pt;}
.yea{bottom:718.880000pt;}
.y24e{bottom:724.022933pt;}
.yed{bottom:726.192000pt;}
.y2{bottom:732.444933pt;}
.y40{bottom:734.720000pt;}
.ye{bottom:734.803200pt;}
.y1c2{bottom:735.492133pt;}
.yab{bottom:735.626667pt;}
.ye9{bottom:735.946667pt;}
.y24d{bottom:740.022933pt;}
.y4{bottom:745.538133pt;}
.y1{bottom:747.324933pt;}
.y218{bottom:751.661333pt;}
.y3f{bottom:751.786667pt;}
.y1c1{bottom:752.558800pt;}
.y89{bottom:752.693333pt;}
.yd{bottom:760.136533pt;}
.y1c0{bottom:769.625467pt;}
.y24c{bottom:780.034000pt;}
.y88{bottom:792.377333pt;}
.h17{height:30.336000pt;}
.h23{height:31.598400pt;}
.h24{height:32.928000pt;}
.h25{height:33.315200pt;}
.h9{height:33.637333pt;}
.h18{height:34.320000pt;}
.h1d{height:34.886400pt;}
.h11{height:34.984533pt;}
.he{height:35.082667pt;}
.h1e{height:36.237867pt;}
.h5{height:36.356800pt;}
.h3{height:36.803200pt;}
.ha{height:36.848533pt;}
.h15{height:38.026667pt;}
.h21{height:38.808000pt;}
.h1a{height:40.725333pt;}
.hd{height:41.265067pt;}
.h10{height:41.946667pt;}
.h1f{height:43.178667pt;}
.hc{height:44.586667pt;}
.h19{height:46.613333pt;}
.h8{height:48.707200pt;}
.h16{height:49.200213pt;}
.h12{height:50.472000pt;}
.hf{height:52.693333pt;}
.h4{height:54.992000pt;}
.h1b{height:55.765333pt;}
.h20{height:55.770667pt;}
.h14{height:56.056000pt;}
.h6{height:57.669333pt;}
.hb{height:60.800000pt;}
.h1c{height:67.004533pt;}
.h13{height:70.933333pt;}
.h7{height:81.178667pt;}
.h22{height:84.149333pt;}
.h2{height:850.393333pt;}
.h0{height:850.560000pt;}
.h1{height:850.666667pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.w2{width:559.370667pt;}
.x0{left:0.000000pt;}
.x18{left:51.024000pt;}
.x2{left:66.141333pt;}
.x1{left:75.590533pt;}
.xe{left:81.260000pt;}
.x1c{left:85.040000pt;}
.x17{left:90.674667pt;}
.x29{left:97.795067pt;}
.x19{left:100.157333pt;}
.x21{left:103.937333pt;}
.x1a{left:105.793333pt;}
.xc{left:119.570667pt;}
.x1e{left:122.834667pt;}
.x9{left:128.418667pt;}
.xf{left:143.536000pt;}
.xa{left:146.113333pt;}
.x11{left:147.960000pt;}
.x13{left:161.232000pt;}
.x3{left:177.081333pt;}
.x12{left:183.352000pt;}
.x2a{left:191.367067pt;}
.x2b{left:207.874000pt;}
.x5{left:212.473333pt;}
.x25{left:221.801333pt;}
.x24{left:265.961333pt;}
.x1d{left:279.746667pt;}
.x26{left:280.709333pt;}
.x27{left:282.404000pt;}
.x7{left:318.648000pt;}
.x1f{left:371.240000pt;}
.x20{left:377.701333pt;}
.x1b{left:386.258667pt;}
.x22{left:400.578667pt;}
.x23{left:402.232000pt;}
.x28{left:428.793333pt;}
.xd{left:466.249333pt;}
.x8{left:467.300000pt;}
.xb{left:468.701333pt;}
.x6{left:471.912000pt;}
.x4{left:473.530667pt;}
.x15{left:477.501333pt;}
.x10{left:479.540000pt;}
.x16{left:480.445333pt;}
.x14{left:481.658667pt;}
}


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