
/* 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_bdfdcd4e1a66.woff")format("woff");}.ff1{font-family:ff1;line-height:1.281250;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_97fb968a4c8d.woff")format("woff");}.ff2{font-family:ff2;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_9261903f5d86.woff")format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_262aa4e5c40f.woff")format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_fa0f69070126.woff")format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_1b69f557b878.woff")format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_b641ab6714fe.woff")format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_b8f85b780320.woff")format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_faa5536ad523.woff")format("woff");}.ff9{font-family:ff9;line-height:1.575000;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_7bd1b764a576.woff")format("woff");}.ffa{font-family:ffa;line-height:1.575000;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_02585b530236.woff")format("woff");}.ffb{font-family:ffb;line-height:1.592000;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_5f2082e905d8.woff")format("woff");}.ffc{font-family:ffc;line-height:0.666504;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);}
.v2{vertical-align:-88.920000px;}
.v3{vertical-align:-83.160000px;}
.v9{vertical-align:-68.759400px;}
.v7{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v6{vertical-align:33.120000px;}
.v8{vertical-align:68.759400px;}
.v4{vertical-align:75.959640px;}
.v5{vertical-align:82.800000px;}
.ls3{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.140616px;}
.ls5c{letter-spacing:-0.115200px;}
.ls76{letter-spacing:-0.114228px;}
.ls40{letter-spacing:-0.111996px;}
.ls8{letter-spacing:-0.108000px;}
.ls58{letter-spacing:-0.105336px;}
.ls5b{letter-spacing:-0.100800px;}
.ls75{letter-spacing:-0.096192px;}
.ls12{letter-spacing:-0.093744px;}
.ls1f{letter-spacing:-0.093600px;}
.ls3e{letter-spacing:-0.092232px;}
.ls59{letter-spacing:-0.086400px;}
.ls6e{letter-spacing:-0.084168px;}
.ls1b{letter-spacing:-0.079200px;}
.ls67{letter-spacing:-0.078156px;}
.ls43{letter-spacing:-0.078120px;}
.ls6c{letter-spacing:-0.072144px;}
.ls1e{letter-spacing:-0.072000px;}
.ls47{letter-spacing:-0.070308px;}
.ls6a{letter-spacing:-0.066132px;}
.ls19{letter-spacing:-0.064800px;}
.ls11{letter-spacing:-0.062496px;}
.ls65{letter-spacing:-0.060120px;}
.ls29{letter-spacing:-0.057600px;}
.ls18{letter-spacing:-0.054684px;}
.ls69{letter-spacing:-0.054108px;}
.ls3c{letter-spacing:-0.052704px;}
.ls1d{letter-spacing:-0.050400px;}
.ls64{letter-spacing:-0.048096px;}
.ls5a{letter-spacing:-0.047880px;}
.ls49{letter-spacing:-0.046872px;}
.ls1c{letter-spacing:-0.043200px;}
.ls6f{letter-spacing:-0.042084px;}
.ls3d{letter-spacing:-0.039528px;}
.ls4b{letter-spacing:-0.039060px;}
.ls6d{letter-spacing:-0.036072px;}
.ls16{letter-spacing:-0.036000px;}
.ls4a{letter-spacing:-0.031248px;}
.ls77{letter-spacing:-0.030060px;}
.ls26{letter-spacing:-0.028800px;}
.ls57{letter-spacing:-0.025164px;}
.ls66{letter-spacing:-0.024048px;}
.ls48{letter-spacing:-0.023436px;}
.ls17{letter-spacing:-0.021600px;}
.ls41{letter-spacing:-0.019764px;}
.ls68{letter-spacing:-0.018036px;}
.ls45{letter-spacing:-0.016776px;}
.ls14{letter-spacing:-0.014400px;}
.ls6b{letter-spacing:-0.012024px;}
.ls46{letter-spacing:-0.008388px;}
.ls28{letter-spacing:-0.007812px;}
.ls15{letter-spacing:-0.007200px;}
.ls74{letter-spacing:-0.006012px;}
.ls2{letter-spacing:0.000000px;}
.ls62{letter-spacing:0.006012px;}
.ls1a{letter-spacing:0.007200px;}
.ls3a{letter-spacing:0.013176px;}
.lsa{letter-spacing:0.014400px;}
.ls71{letter-spacing:0.018036px;}
.ls2f{letter-spacing:0.019764px;}
.ls2a{letter-spacing:0.021600px;}
.ls73{letter-spacing:0.024048px;}
.ls38{letter-spacing:0.028800px;}
.ls5f{letter-spacing:0.030060px;}
.ls9{letter-spacing:0.031248px;}
.ls3b{letter-spacing:0.032940px;}
.ls2c{letter-spacing:0.036000px;}
.ls61{letter-spacing:0.036072px;}
.ls21{letter-spacing:0.039060px;}
.ls30{letter-spacing:0.039528px;}
.ls27{letter-spacing:0.043200px;}
.ls31{letter-spacing:0.046116px;}
.ls20{letter-spacing:0.046872px;}
.ls70{letter-spacing:0.048096px;}
.ls24{letter-spacing:0.050328px;}
.ls4e{letter-spacing:0.050400px;}
.ls34{letter-spacing:0.052704px;}
.ls72{letter-spacing:0.054108px;}
.ls39{letter-spacing:0.059292px;}
.ls22{letter-spacing:0.062496px;}
.ls32{letter-spacing:0.065880px;}
.ls23{letter-spacing:0.067104px;}
.ls4{letter-spacing:0.072000px;}
.ls35{letter-spacing:0.072468px;}
.ls44{letter-spacing:0.075492px;}
.ls33{letter-spacing:0.079056px;}
.ls2b{letter-spacing:0.079200px;}
.ls36{letter-spacing:0.085644px;}
.ls2d{letter-spacing:0.085932px;}
.lsf{letter-spacing:0.086400px;}
.ls4d{letter-spacing:0.093600px;}
.ls60{letter-spacing:0.096192px;}
.ls3f{letter-spacing:0.098820px;}
.ls1{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.114228px;}
.ls25{letter-spacing:0.117180px;}
.lse{letter-spacing:0.136800px;}
.lsd{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.151200px;}
.ls6{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.324000px;}
.ls56{letter-spacing:11.664000px;}
.ls63{letter-spacing:63.907560px;}
.ls50{letter-spacing:116.424000px;}
.ls53{letter-spacing:149.904000px;}
.ls78{letter-spacing:157.670892px;}
.ls5d{letter-spacing:164.512092px;}
.ls5e{letter-spacing:196.165560px;}
.ls37{letter-spacing:208.128360px;}
.ls54{letter-spacing:233.424000px;}
.ls42{letter-spacing:397.137816px;}
.ls52{letter-spacing:485.424000px;}
.ls2e{letter-spacing:613.944000px;}
.ls4c{letter-spacing:631.584000px;}
.ls55{letter-spacing:841.824000px;}
.lsb{letter-spacing:971.424000px;}
.ls51{letter-spacing:978.264000px;}
.ls4f{letter-spacing:1009.944000px;}
.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;}
}
.ws136{word-spacing:-60.120000px;}
.ws3{word-spacing:-26.784000px;}
.ws2{word-spacing:-26.676000px;}
.ws10c{word-spacing:-23.394132px;}
.ws11e{word-spacing:-19.994400px;}
.ws120{word-spacing:-19.987200px;}
.wse{word-spacing:-19.972800px;}
.ws121{word-spacing:-19.965600px;}
.wsf{word-spacing:-19.944000px;}
.ws10{word-spacing:-19.922400px;}
.ws0{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws15e{word-spacing:-13.653252px;}
.ws14b{word-spacing:-13.593132px;}
.ws11f{word-spacing:-13.262760px;}
.ws11d{word-spacing:-13.205304px;}
.wsd{word-spacing:-1.620000px;}
.ws45{word-spacing:-0.523404px;}
.ws12{word-spacing:-0.460908px;}
.wsa{word-spacing:-0.432000px;}
.ws10d{word-spacing:-0.429660px;}
.ws139{word-spacing:-0.420840px;}
.ws15c{word-spacing:-0.396792px;}
.ws137{word-spacing:-0.390780px;}
.wsc{word-spacing:-0.324000px;}
.ws13{word-spacing:-0.312480px;}
.wsd4{word-spacing:-0.257796px;}
.ws14{word-spacing:-0.242172px;}
.ws2a{word-spacing:-0.218736px;}
.ws8{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.203112px;}
.ws2b{word-spacing:-0.148428px;}
.wscb{word-spacing:-0.132804px;}
.ws9{word-spacing:-0.108000px;}
.wseb{word-spacing:-0.101556px;}
.ws5{word-spacing:-0.072000px;}
.ws103{word-spacing:-0.054684px;}
.ws15b{word-spacing:-0.054108px;}
.ws150{word-spacing:-0.048096px;}
.ws140{word-spacing:-0.036072px;}
.wsd3{word-spacing:-0.031248px;}
.wsee{word-spacing:-0.028800px;}
.wsaa{word-spacing:-0.026352px;}
.ws158{word-spacing:-0.024048px;}
.wsbd{word-spacing:-0.023436px;}
.wsae{word-spacing:-0.019764px;}
.ws15d{word-spacing:-0.018036px;}
.wsa8{word-spacing:-0.013176px;}
.ws163{word-spacing:-0.012024px;}
.ws4{word-spacing:0.000000px;}
.ws141{word-spacing:0.006012px;}
.wsab{word-spacing:0.006588px;}
.ws149{word-spacing:0.012024px;}
.ws124{word-spacing:0.014400px;}
.wsc9{word-spacing:0.016776px;}
.ws138{word-spacing:0.018036px;}
.wsa7{word-spacing:0.019764px;}
.ws13b{word-spacing:0.024048px;}
.ws29{word-spacing:0.025164px;}
.ws13e{word-spacing:0.030060px;}
.ws13d{word-spacing:0.036072px;}
.ws15{word-spacing:0.039060px;}
.wsa6{word-spacing:0.039528px;}
.ws13f{word-spacing:0.042084px;}
.ws11c{word-spacing:0.043200px;}
.wsad{word-spacing:0.046116px;}
.ws13a{word-spacing:0.048096px;}
.ws135{word-spacing:0.050400px;}
.ws148{word-spacing:0.054108px;}
.ws126{word-spacing:0.064800px;}
.wsed{word-spacing:0.072000px;}
.wsa4{word-spacing:0.100800px;}
.ws122{word-spacing:0.108000px;}
.ws125{word-spacing:0.115200px;}
.ws112{word-spacing:0.129600px;}
.ws6{word-spacing:0.144000px;}
.ws62{word-spacing:0.151200px;}
.ws34{word-spacing:0.158400px;}
.ws27{word-spacing:0.165600px;}
.ws16{word-spacing:0.172800px;}
.ws1b{word-spacing:0.180000px;}
.ws44{word-spacing:0.187200px;}
.ws1d{word-spacing:0.194400px;}
.ws26{word-spacing:0.201600px;}
.ws7{word-spacing:0.216000px;}
.ws1c{word-spacing:0.223200px;}
.ws25{word-spacing:0.237600px;}
.wsca{word-spacing:0.285192px;}
.ws123{word-spacing:0.295200px;}
.wsd2{word-spacing:0.302400px;}
.wsea{word-spacing:0.309600px;}
.ws61{word-spacing:0.316800px;}
.wsb{word-spacing:0.324000px;}
.ws54{word-spacing:0.338400px;}
.ws96{word-spacing:0.345600px;}
.ws53{word-spacing:0.374400px;}
.ws14a{word-spacing:0.384768px;}
.ws15a{word-spacing:0.390780px;}
.ws142{word-spacing:0.408816px;}
.ws37{word-spacing:0.475200px;}
.ws5b{word-spacing:0.525600px;}
.ws132{word-spacing:0.540000px;}
.wsa3{word-spacing:0.554400px;}
.ws5a{word-spacing:0.561600px;}
.ws133{word-spacing:0.590400px;}
.ws36{word-spacing:0.640800px;}
.ws59{word-spacing:0.655200px;}
.ws35{word-spacing:0.705600px;}
.ws171{word-spacing:0.733464px;}
.ws170{word-spacing:0.757512px;}
.wsf9{word-spacing:0.842400px;}
.wsf8{word-spacing:0.885600px;}
.ws2c{word-spacing:0.892800px;}
.ws2f{word-spacing:1.605600px;}
.ws31{word-spacing:1.684800px;}
.ws30{word-spacing:1.850400px;}
.ws87{word-spacing:1.965600px;}
.ws47{word-spacing:1.972800px;}
.ws88{word-spacing:1.980000px;}
.ws46{word-spacing:2.102400px;}
.ws98{word-spacing:2.311200px;}
.ws11b{word-spacing:2.340000px;}
.ws134{word-spacing:2.347200px;}
.ws97{word-spacing:2.361600px;}
.ws51{word-spacing:3.391200px;}
.ws50{word-spacing:3.542400px;}
.ws172{word-spacing:3.637260px;}
.wsff{word-spacing:3.787200px;}
.wsfe{word-spacing:3.794400px;}
.ws16e{word-spacing:3.997980px;}
.ws16f{word-spacing:4.003992px;}
.ws6b{word-spacing:4.118400px;}
.ws77{word-spacing:4.125600px;}
.ws119{word-spacing:4.132800px;}
.ws11a{word-spacing:4.176000px;}
.ws159{word-spacing:4.358700px;}
.ws78{word-spacing:4.406400px;}
.ws130{word-spacing:4.471200px;}
.ws118{word-spacing:4.500000px;}
.wsef{word-spacing:4.521600px;}
.ws131{word-spacing:4.701600px;}
.ws6e{word-spacing:4.860000px;}
.ws6f{word-spacing:4.996800px;}
.ws144{word-spacing:5.068116px;}
.ws145{word-spacing:5.080140px;}
.ws5c{word-spacing:5.932800px;}
.ws5d{word-spacing:6.040800px;}
.wsf4{word-spacing:6.264000px;}
.wsc7{word-spacing:6.307200px;}
.wsf5{word-spacing:6.350400px;}
.wsc8{word-spacing:6.400800px;}
.ws146{word-spacing:6.498972px;}
.ws147{word-spacing:6.517008px;}
.ws15f{word-spacing:6.523020px;}
.ws16d{word-spacing:6.529032px;}
.ws108{word-spacing:7.012800px;}
.ws109{word-spacing:7.041600px;}
.ws168{word-spacing:7.593156px;}
.ws19{word-spacing:7.639200px;}
.ws1a{word-spacing:7.689600px;}
.ws110{word-spacing:8.085600px;}
.ws111{word-spacing:8.092800px;}
.ws41{word-spacing:8.438400px;}
.ws40{word-spacing:8.460000px;}
.ws10b{word-spacing:9.144000px;}
.wsdb{word-spacing:9.151200px;}
.ws10a{word-spacing:9.158400px;}
.ws3e{word-spacing:9.194400px;}
.wse6{word-spacing:9.216000px;}
.wsda{word-spacing:9.223200px;}
.wsb9{word-spacing:9.525600px;}
.ws89{word-spacing:9.532800px;}
.ws8a{word-spacing:9.712800px;}
.ws154{word-spacing:9.733428px;}
.ws153{word-spacing:9.763488px;}
.wsd0{word-spacing:9.885600px;}
.wsb8{word-spacing:9.900000px;}
.wsd1{word-spacing:9.907200px;}
.wscf{word-spacing:9.914400px;}
.wsb6{word-spacing:9.993600px;}
.ws105{word-spacing:10.159200px;}
.wsb7{word-spacing:10.180800px;}
.ws104{word-spacing:10.274400px;}
.ws57{word-spacing:10.332000px;}
.ws58{word-spacing:10.440000px;}
.ws8c{word-spacing:10.576800px;}
.ws8b{word-spacing:10.612800px;}
.wse5{word-spacing:10.692000px;}
.wse4{word-spacing:10.756800px;}
.wsbf{word-spacing:10.915200px;}
.wsbe{word-spacing:10.972800px;}
.ws55{word-spacing:11.232000px;}
.ws56{word-spacing:11.318400px;}
.ws8f{word-spacing:11.332800px;}
.ws8d{word-spacing:11.354400px;}
.ws8e{word-spacing:11.520000px;}
.ws4f{word-spacing:11.692800px;}
.ws4e{word-spacing:11.714400px;}
.ws12d{word-spacing:11.728800px;}
.ws12c{word-spacing:11.851200px;}
.ws28{word-spacing:12.038400px;}
.ws24{word-spacing:12.074400px;}
.ws1f{word-spacing:12.081600px;}
.ws21{word-spacing:12.088800px;}
.ws20{word-spacing:12.103200px;}
.ws22{word-spacing:12.110400px;}
.ws1e{word-spacing:12.117600px;}
.ws12b{word-spacing:12.124800px;}
.ws9a{word-spacing:12.391200px;}
.ws68{word-spacing:12.398400px;}
.ws67{word-spacing:12.405600px;}
.ws99{word-spacing:12.499200px;}
.ws66{word-spacing:12.564000px;}
.ws157{word-spacing:12.625200px;}
.ws156{word-spacing:12.643236px;}
.ws33{word-spacing:12.787200px;}
.ws32{word-spacing:12.794400px;}
.ws162{word-spacing:12.997944px;}
.wsfb{word-spacing:13.118400px;}
.wse3{word-spacing:13.161600px;}
.wsfa{word-spacing:13.168800px;}
.ws6a{word-spacing:13.867200px;}
.ws69{word-spacing:13.946400px;}
.wscd{word-spacing:14.184000px;}
.wsce{word-spacing:14.198400px;}
.wscc{word-spacing:14.248800px;}
.ws95{word-spacing:14.947200px;}
.ws93{word-spacing:14.954400px;}
.ws94{word-spacing:15.076800px;}
.wsa1{word-spacing:15.314400px;}
.wsa2{word-spacing:15.364800px;}
.ws14e{word-spacing:16.232400px;}
.ws14d{word-spacing:16.244424px;}
.ws82{word-spacing:17.085600px;}
.ws12f{word-spacing:17.100000px;}
.ws12e{word-spacing:17.107200px;}
.ws83{word-spacing:17.114400px;}
.ws48{word-spacing:17.452800px;}
.ws23{word-spacing:17.712000px;}
.wsbb{word-spacing:17.784000px;}
.wsba{word-spacing:17.834400px;}
.wsbc{word-spacing:17.920800px;}
.ws43{word-spacing:17.935200px;}
.ws42{word-spacing:17.964000px;}
.ws18{word-spacing:19.238400px;}
.ws17{word-spacing:19.245600px;}
.ws129{word-spacing:19.260000px;}
.ws12a{word-spacing:19.339200px;}
.ws3d{word-spacing:21.031200px;}
.ws3c{word-spacing:21.060000px;}
.ws3f{word-spacing:21.067200px;}
.ws63{word-spacing:21.420000px;}
.ws9b{word-spacing:21.765600px;}
.ws84{word-spacing:21.780000px;}
.ws86{word-spacing:21.787200px;}
.ws9c{word-spacing:21.880800px;}
.ws85{word-spacing:21.960000px;}
.wsd5{word-spacing:22.132800px;}
.wsd6{word-spacing:22.147200px;}
.ws151{word-spacing:23.068044px;}
.ws6d{word-spacing:23.544000px;}
.ws6c{word-spacing:23.659200px;}
.ws92{word-spacing:23.904000px;}
.ws91{word-spacing:23.925600px;}
.ws7f{word-spacing:23.932800px;}
.ws7e{word-spacing:24.004800px;}
.wsa0{word-spacing:24.026400px;}
.ws16b{word-spacing:24.132168px;}
.ws16c{word-spacing:24.162228px;}
.wsb2{word-spacing:24.271200px;}
.ws90{word-spacing:24.631200px;}
.ws38{word-spacing:24.645600px;}
.ws39{word-spacing:24.681600px;}
.ws7a{word-spacing:24.739200px;}
.wsdd{word-spacing:24.984000px;}
.wsdc{word-spacing:25.106400px;}
.wsec{word-spacing:25.401600px;}
.wsf7{word-spacing:25.804800px;}
.wsf6{word-spacing:25.812000px;}
.ws7d{word-spacing:25.819200px;}
.ws4b{word-spacing:26.071200px;}
.ws4a{word-spacing:26.085600px;}
.ws7b{word-spacing:26.172000px;}
.ws7c{word-spacing:26.244000px;}
.ws74{word-spacing:27.151200px;}
.ws73{word-spacing:27.208800px;}
.ws9e{word-spacing:28.584000px;}
.ws9f{word-spacing:28.598400px;}
.ws72{word-spacing:28.612800px;}
.ws9d{word-spacing:28.627200px;}
.ws161{word-spacing:28.821528px;}
.ws160{word-spacing:28.833552px;}
.ws102{word-spacing:29.318400px;}
.ws100{word-spacing:29.332800px;}
.ws70{word-spacing:29.361600px;}
.ws71{word-spacing:29.455200px;}
.ws101{word-spacing:29.462400px;}
.wsa9{word-spacing:29.494476px;}
.wsac{word-spacing:29.507652px;}
.ws81{word-spacing:30.024000px;}
.ws2d{word-spacing:30.088800px;}
.ws80{word-spacing:30.139200px;}
.wsfc{word-spacing:30.333600px;}
.wsfd{word-spacing:30.427200px;}
.ws3a{word-spacing:30.758400px;}
.ws3b{word-spacing:30.916800px;}
.wse8{word-spacing:32.587200px;}
.wse9{word-spacing:32.601600px;}
.ws2e{word-spacing:34.761600px;}
.wsf2{word-spacing:36.540000px;}
.wsf3{word-spacing:36.547200px;}
.ws75{word-spacing:36.900000px;}
.ws76{word-spacing:37.101600px;}
.ws155{word-spacing:38.915676px;}
.ws52{word-spacing:41.227200px;}
.wse2{word-spacing:41.572800px;}
.wse1{word-spacing:41.745600px;}
.wse0{word-spacing:41.824800px;}
.ws10f{word-spacing:43.365600px;}
.ws10e{word-spacing:43.524000px;}
.ws128{word-spacing:48.967200px;}
.wsc6{word-spacing:49.082400px;}
.wsc5{word-spacing:49.118400px;}
.wse7{word-spacing:49.140000px;}
.ws166{word-spacing:50.061924px;}
.ws114{word-spacing:54.165600px;}
.ws113{word-spacing:54.201600px;}
.ws117{word-spacing:55.245600px;}
.ws115{word-spacing:55.260000px;}
.ws116{word-spacing:55.274400px;}
.wsf1{word-spacing:56.714400px;}
.wsf0{word-spacing:56.721600px;}
.wsd8{word-spacing:57.124800px;}
.wsd7{word-spacing:57.153600px;}
.wsdf{word-spacing:58.111200px;}
.wsde{word-spacing:58.248000px;}
.wsc1{word-spacing:59.212800px;}
.wsc0{word-spacing:59.234400px;}
.ws79{word-spacing:60.278400px;}
.wsc3{word-spacing:61.725600px;}
.wsc2{word-spacing:61.732800px;}
.wsc4{word-spacing:61.740000px;}
.wsd9{word-spacing:62.467200px;}
.ws5f{word-spacing:62.791200px;}
.ws5e{word-spacing:62.805600px;}
.ws107{word-spacing:65.678400px;}
.ws106{word-spacing:65.707200px;}
.ws16a{word-spacing:75.516732px;}
.ws169{word-spacing:75.522744px;}
.ws165{word-spacing:75.564828px;}
.ws167{word-spacing:75.576852px;}
.ws164{word-spacing:75.594888px;}
.ws64{word-spacing:76.132800px;}
.ws65{word-spacing:76.485600px;}
.wsb4{word-spacing:76.514400px;}
.ws152{word-spacing:77.314320px;}
.ws14f{word-spacing:77.320332px;}
.ws143{word-spacing:77.362416px;}
.ws14c{word-spacing:77.374440px;}
.ws13c{word-spacing:77.392476px;}
.ws127{word-spacing:80.452800px;}
.wsb1{word-spacing:80.460000px;}
.wsb0{word-spacing:84.420000px;}
.ws60{word-spacing:87.278400px;}
.ws49{word-spacing:92.325600px;}
.ws4d{word-spacing:98.251200px;}
.ws4c{word-spacing:98.445600px;}
.wsb3{word-spacing:104.205600px;}
.wsaf{word-spacing:130.659804px;}
.wsb5{word-spacing:144.540000px;}
.wsa5{word-spacing:353.558196px;}
._40{margin-left:-77.614980px;}
._45{margin-left:-75.870912px;}
._2f{margin-left:-52.920000px;}
._23{margin-left:-29.514240px;}
._47{margin-left:-13.707360px;}
._7{margin-left:-11.880000px;}
._2e{margin-left:-10.598400px;}
._3c{margin-left:-8.078400px;}
._1{margin-left:-1.080000px;}
._0{width:1.188000px;}
._a{width:3.153600px;}
._9{width:4.564800px;}
._f{width:6.372000px;}
._6{width:8.539200px;}
._b{width:10.641600px;}
._3{width:11.880000px;}
._d{width:15.566400px;}
._1b{width:18.000000px;}
._20{width:24.710400px;}
._19{width:26.280000px;}
._1c{width:28.728000px;}
._1d{width:30.888000px;}
._3d{width:32.354280px;}
._16{width:33.480000px;}
._1a{width:35.280000px;}
._30{width:36.648000px;}
._12{width:37.800000px;}
._10{width:38.880000px;}
._1f{width:39.960000px;}
._17{width:42.336000px;}
._1e{width:44.280000px;}
._21{width:47.160000px;}
._15{width:48.960000px;}
._18{width:50.040000px;}
._8{width:51.120000px;}
._14{width:54.216000px;}
._c{width:59.040000px;}
._13{width:60.408000px;}
._11{width:61.560000px;}
._4{width:63.000000px;}
._31{width:65.664000px;}
._2b{width:68.040000px;}
._5{width:71.280000px;}
._22{width:74.536656px;}
._46{width:75.601968px;}
._41{width:77.399568px;}
._2{width:79.200000px;}
._e{width:83.160000px;}
._29{width:88.200000px;}
._2d{width:93.168000px;}
._25{width:95.589408px;}
._26{width:108.000000px;}
._27{width:111.960000px;}
._2a{width:115.920000px;}
._28{width:168.120000px;}
._2c{width:192.240000px;}
._3e{width:205.965360px;}
._43{width:213.155160px;}
._33{width:219.225600px;}
._44{width:240.858264px;}
._42{width:248.776464px;}
._35{width:258.364800px;}
._3f{width:276.101016px;}
._36{width:315.964800px;}
._3b{width:445.579200px;}
._37{width:456.076800px;}
._32{width:583.142400px;}
._24{width:668.128392px;}
._3a{width:695.570400px;}
._39{width:713.844000px;}
._34{width:842.284800px;}
._38{width:1009.749600px;}
.fc4{color:rgb(0,255,0);}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(13,27,67);}
.fc3{color:rgb(154,154,154);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs8{font-size:47.880000px;}
.fs3{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:78.120000px;}
.fs5{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1ff{bottom:3.150600px;}
.y1f{bottom:44.100000px;}
.y1e{bottom:66.060000px;}
.y223{bottom:70.410450px;}
.y21{bottom:70.500450px;}
.y1d{bottom:86.580000px;}
.y1a4{bottom:96.058830px;}
.yea{bottom:98.850450px;}
.y6e{bottom:99.750450px;}
.y20e{bottom:100.360020px;}
.y25f{bottom:104.777190px;}
.y1c{bottom:106.920000px;}
.y1a3{bottom:113.253150px;}
.y20d{bottom:117.554340px;}
.ye9{bottom:119.550450px;}
.y6d{bottom:120.810450px;}
.y25e{bottom:122.061690px;}
.y10d{bottom:123.780450px;}
.y1b{bottom:127.260000px;}
.y1a2{bottom:130.497030px;}
.y20c{bottom:134.748660px;}
.y25d{bottom:139.256010px;}
.ye8{bottom:140.250450px;}
.y10c{bottom:144.750450px;}
.y1a{bottom:147.600000px;}
.y1a1{bottom:147.691350px;}
.y6c{bottom:150.780450px;}
.y20b{bottom:152.033160px;}
.y25c{bottom:156.450330px;}
.ye7{bottom:160.950450px;}
.y1a0{bottom:164.885670px;}
.y10b{bottom:165.810450px;}
.y19{bottom:168.120000px;}
.y20a{bottom:169.227480px;}
.y6b{bottom:171.750450px;}
.y25b{bottom:173.644650px;}
.ye6{bottom:181.650450px;}
.y19f{bottom:182.079990px;}
.y98{bottom:183.450450px;}
.y209{bottom:186.421800px;}
.y10a{bottom:186.780450px;}
.y18{bottom:188.460000px;}
.y25a{bottom:190.897650px;}
.y6a{bottom:192.810450px;}
.y19e{bottom:199.364490px;}
.ye5{bottom:202.350450px;}
.y208{bottom:203.593590px;}
.y97{bottom:204.420450px;}
.y259{bottom:208.091970px;}
.y17{bottom:208.800000px;}
.y69{bottom:213.780450px;}
.y19d{bottom:216.558810px;}
.y109{bottom:216.750450px;}
.y207{bottom:220.878090px;}
.ye4{bottom:223.050450px;}
.y258{bottom:225.286290px;}
.y16{bottom:229.140000px;}
.y19c{bottom:233.753130px;}
.y96{bottom:234.480450px;}
.y68{bottom:234.750450px;}
.y108{bottom:237.810450px;}
.y206{bottom:238.072410px;}
.y257{bottom:242.480610px;}
.y167{bottom:243.570600px;}
.ye3{bottom:248.160450px;}
.y15{bottom:249.660000px;}
.y19b{bottom:250.947450px;}
.y205{bottom:255.266730px;}
.y95{bottom:255.450450px;}
.y67{bottom:255.810450px;}
.y107{bottom:258.780450px;}
.y256{bottom:259.765110px;}
.y19a{bottom:268.231950px;}
.y166{bottom:268.410600px;}
.y14{bottom:270.000000px;}
.y204{bottom:272.461050px;}
.ye2{bottom:274.440450px;}
.y66{bottom:276.780450px;}
.y255{bottom:276.959430px;}
.y199{bottom:285.399270px;}
.y94{bottom:285.420450px;}
.y106{bottom:288.750450px;}
.y203{bottom:289.637310px;}
.y13{bottom:290.340000px;}
.y165{bottom:293.250600px;}
.y254{bottom:294.153750px;}
.ydb{bottom:294.330450px;}
.y65{bottom:297.750450px;}
.y198{bottom:302.593590px;}
.y93{bottom:306.480450px;}
.y202{bottom:306.921810px;}
.y12{bottom:310.860000px;}
.y253{bottom:311.307480px;}
.ye1{bottom:313.140450px;}
.yda{bottom:313.230450px;}
.y164{bottom:318.090600px;}
.y64{bottom:318.810450px;}
.y197{bottom:319.787910px;}
.y201{bottom:324.116130px;}
.y92{bottom:327.450450px;}
.y252{bottom:328.591980px;}
.y11{bottom:331.200000px;}
.ye0{bottom:332.130450px;}
.yd9{bottom:332.220450px;}
.y196{bottom:337.072410px;}
.y63{bottom:339.780450px;}
.y200{bottom:341.310450px;}
.y251{bottom:345.786300px;}
.y91{bottom:348.420450px;}
.y105{bottom:348.780450px;}
.ydf{bottom:351.120450px;}
.yd8{bottom:351.210600px;}
.y10{bottom:351.540000px;}
.y163{bottom:351.840600px;}
.y43{bottom:353.010450px;}
.y195{bottom:354.266730px;}
.y1fe{bottom:355.350000px;}
.y1fd{bottom:358.500450px;}
.y62{bottom:360.750450px;}
.y250{bottom:362.980620px;}
.yde{bottom:370.110450px;}
.yd7{bottom:370.200450px;}
.y194{bottom:371.461050px;}
.yf{bottom:371.880000px;}
.y42{bottom:373.980450px;}
.y1fc{bottom:375.780450px;}
.y90{bottom:378.480450px;}
.y104{bottom:378.750450px;}
.y24f{bottom:380.174940px;}
.y162{bottom:385.770600px;}
.y193{bottom:388.641780px;}
.yd6{bottom:389.100450px;}
.ydd{bottom:389.190450px;}
.y61{bottom:390.810450px;}
.ye{bottom:391.500000px;}
.y1fb{bottom:393.695400px;}
.y24e{bottom:397.459440px;}
.y8f{bottom:399.450450px;}
.y103{bottom:399.810450px;}
.y41{bottom:403.950450px;}
.y192{bottom:405.926280px;}
.yd5{bottom:408.000600px;}
.ydc{bottom:408.090600px;}
.y1fa{bottom:410.975400px;}
.y60{bottom:411.780450px;}
.yd{bottom:412.560000px;}
.y24d{bottom:414.653760px;}
.y161{bottom:418.890450px;}
.y8e{bottom:420.420450px;}
.y102{bottom:420.780450px;}
.y191{bottom:423.120600px;}
.y40{bottom:425.010450px;}
.y1cf{bottom:426.540450px;}
.yd4{bottom:427.800450px;}
.yc9{bottom:427.890450px;}
.y1f9{bottom:428.165250px;}
.y24c{bottom:431.848080px;}
.y190{bottom:440.310450px;}
.y8d{bottom:441.480450px;}
.yc{bottom:441.540000px;}
.y5f{bottom:441.939690px;}
.y1ce{bottom:443.820450px;}
.y160{bottom:444.450450px;}
.y1f8{bottom:445.346010px;}
.y3f{bottom:445.980450px;}
.yd3{bottom:446.700600px;}
.yc8{bottom:446.790600px;}
.y24b{bottom:449.042400px;}
.y101{bottom:450.939690px;}
.y18f{bottom:458.314650px;}
.y1cd{bottom:461.721780px;}
.y1f7{bottom:462.540330px;}
.y5e{bottom:464.340600px;}
.yd2{bottom:465.690600px;}
.y124{bottom:465.780450px;}
.yc7{bottom:465.780600px;}
.y24a{bottom:466.205070px;}
.y3e{bottom:466.950450px;}
.y15f{bottom:469.290450px;}
.y8c{bottom:471.450450px;}
.y100{bottom:473.340600px;}
.y18e{bottom:475.504500px;}
.y1cc{bottom:478.916100px;}
.yb{bottom:479.340000px;}
.y1f6{bottom:479.734650px;}
.y249{bottom:483.489570px;}
.yd1{bottom:484.680600px;}
.yc6{bottom:484.770600px;}
.y123{bottom:486.750450px;}
.y8b{bottom:492.420450px;}
.y18d{bottom:492.694350px;}
.y15e{bottom:494.130450px;}
.y1cb{bottom:496.200600px;}
.y3d{bottom:497.010450px;}
.y1f5{bottom:497.014650px;}
.y248{bottom:500.683890px;}
.yd0{bottom:503.670450px;}
.yc5{bottom:503.760450px;}
.y5d{bottom:504.660450px;}
.y122{bottom:507.810450px;}
.y18c{bottom:509.875080px;}
.y1ca{bottom:513.390450px;}
.y8a{bottom:513.480450px;}
.yff{bottom:513.660450px;}
.y1f4{bottom:514.200030px;}
.ya{bottom:517.140000px;}
.y247{bottom:517.878210px;}
.y3c{bottom:517.980450px;}
.ycf{bottom:522.660450px;}
.yc4{bottom:522.750600px;}
.y5c{bottom:525.630450px;}
.y18b{bottom:527.159580px;}
.y15d{bottom:527.250450px;}
.y121{bottom:528.780450px;}
.y1c9{bottom:531.287460px;}
.y1f3{bottom:531.394350px;}
.y89{bottom:534.450450px;}
.yfe{bottom:534.630450px;}
.y246{bottom:535.072530px;}
.y3b{bottom:538.950450px;}
.yce{bottom:541.650450px;}
.yc3{bottom:541.740450px;}
.y18a{bottom:544.353900px;}
.y135{bottom:546.330450px;}
.y5b{bottom:546.600450px;}
.y1c8{bottom:548.571960px;}
.y1f2{bottom:548.584050px;}
.y120{bottom:549.750450px;}
.y245{bottom:552.357030px;}
.y15c{bottom:552.720450px;}
.y9{bottom:554.940000px;}
.yfd{bottom:555.600450px;}
.y3a{bottom:560.010450px;}
.yc2{bottom:560.550450px;}
.ycd{bottom:560.640450px;}
.y189{bottom:561.543750px;}
.y88{bottom:564.420450px;}
.y1c7{bottom:565.766280px;}
.y1f1{bottom:565.864050px;}
.y5a{bottom:567.660450px;}
.y244{bottom:569.551350px;}
.y134{bottom:576.300450px;}
.y188{bottom:578.728950px;}
.yc1{bottom:579.540450px;}
.ycc{bottom:579.630450px;}
.y11f{bottom:579.901890px;}
.y39{bottom:580.980450px;}
.y15b{bottom:582.510450px;}
.y1c6{bottom:582.960600px;}
.y1f0{bottom:583.022400px;}
.y87{bottom:585.480450px;}
.yfc{bottom:585.751890px;}
.y243{bottom:586.732230px;}
.y59{bottom:588.630450px;}
.y8{bottom:592.740000px;}
.y187{bottom:596.013450px;}
.yc0{bottom:598.530450px;}
.ycb{bottom:598.620450px;}
.y1c5{bottom:600.150450px;}
.y1ef{bottom:600.216720px;}
.y38{bottom:601.950450px;}
.y11e{bottom:602.400450px;}
.y15a{bottom:603.210450px;}
.y242{bottom:603.926550px;}
.y133{bottom:606.360450px;}
.yfb{bottom:608.250450px;}
.y58{bottom:609.600450px;}
.y186{bottom:613.203300px;}
.y86{bottom:615.450450px;}
.y1ee{bottom:617.411040px;}
.ybf{bottom:617.520450px;}
.yca{bottom:617.610450px;}
.y1c4{bottom:618.150600px;}
.y241{bottom:621.211050px;}
.y37{bottom:623.010450px;}
.y159{bottom:623.910450px;}
.y7{bottom:626.580000px;}
.y185{bottom:630.393150px;}
.y1ed{bottom:634.695540px;}
.y1c3{bottom:635.340450px;}
.y132{bottom:636.330450px;}
.y85{bottom:636.420450px;}
.ybe{bottom:637.230450px;}
.yb7{bottom:637.320450px;}
.y240{bottom:638.396280px;}
.y57{bottom:639.660450px;}
.y11d{bottom:642.630450px;}
.y158{bottom:644.610450px;}
.y184{bottom:647.583000px;}
.yfa{bottom:649.020450px;}
.y6{bottom:651.780000px;}
.y1ec{bottom:651.889860px;}
.y36{bottom:652.980450px;}
.y1c2{bottom:653.336280px;}
.y23f{bottom:655.590600px;}
.ybd{bottom:656.220450px;}
.yb6{bottom:656.310450px;}
.y84{bottom:657.480450px;}
.y56{bottom:660.630450px;}
.y11c{bottom:663.600450px;}
.y183{bottom:664.858380px;}
.y131{bottom:666.300450px;}
.y1eb{bottom:669.084180px;}
.y27a{bottom:669.630450px;}
.y1c1{bottom:670.530600px;}
.y23e{bottom:672.780450px;}
.y35{bottom:673.950450px;}
.ybc{bottom:675.210450px;}
.yb5{bottom:675.300450px;}
.y5{bottom:676.980000px;}
.y157{bottom:678.360450px;}
.y83{bottom:678.450450px;}
.y55{bottom:681.600450px;}
.y182{bottom:682.052700px;}
.yf9{bottom:682.140450px;}
.y11b{bottom:684.660450px;}
.y1ea{bottom:686.278500px;}
.y1c0{bottom:687.720450px;}
.y279{bottom:689.250600px;}
.y23d{bottom:690.783150px;}
.ybb{bottom:694.110450px;}
.yb4{bottom:694.200450px;}
.y34{bottom:695.010450px;}
.y130{bottom:696.360450px;}
.y181{bottom:699.233580px;}
.y82{bottom:699.420450px;}
.y4{bottom:702.180000px;}
.y1e9{bottom:703.563000px;}
.y1bf{bottom:705.720750px;}
.y278{bottom:706.440450px;}
.y23c{bottom:707.973000px;}
.y54{bottom:711.751890px;}
.yb3{bottom:713.100450px;}
.yba{bottom:713.190450px;}
.y11a{bottom:714.630450px;}
.yf8{bottom:714.810450px;}
.y33{bottom:715.980450px;}
.y180{bottom:716.427900px;}
.y1e8{bottom:720.748230px;}
.y1be{bottom:722.910600px;}
.y277{bottom:724.341780px;}
.y23b{bottom:725.162700px;}
.y12f{bottom:726.330450px;}
.y3{bottom:727.380000px;}
.y156{bottom:728.130450px;}
.y155{bottom:728.220450px;}
.y81{bottom:729.480450px;}
.yb2{bottom:732.090450px;}
.yb9{bottom:732.180450px;}
.y17f{bottom:733.712400px;}
.y53{bottom:734.250450px;}
.y119{bottom:735.600450px;}
.y32{bottom:736.950450px;}
.y1e7{bottom:737.942550px;}
.y1bd{bottom:740.100450px;}
.y276{bottom:741.626280px;}
.y23a{bottom:742.433760px;}
.yf7{bottom:744.780450px;}
.y154{bottom:748.920450px;}
.y80{bottom:750.450450px;}
.y17e{bottom:750.897630px;}
.yb1{bottom:751.080450px;}
.yb8{bottom:751.170450px;}
.y1e6{bottom:755.118810px;}
.y12e{bottom:756.300450px;}
.y2{bottom:756.540000px;}
.y118{bottom:756.660450px;}
.y31{bottom:758.010450px;}
.y1bc{bottom:758.096280px;}
.y275{bottom:758.820600px;}
.y239{bottom:759.628080px;}
.y17d{bottom:768.091950px;}
.y151{bottom:770.430450px;}
.ya7{bottom:770.799630px;}
.yb0{bottom:770.802930px;}
.y153{bottom:771.060450px;}
.y1e5{bottom:772.403310px;}
.y52{bottom:774.480450px;}
.yf6{bottom:774.750450px;}
.y1bb{bottom:775.290600px;}
.y274{bottom:776.010450px;}
.y238{bottom:776.822400px;}
.y117{bottom:777.630450px;}
.y30{bottom:778.980450px;}
.y7f{bottom:780.420450px;}
.y17c{bottom:785.277300px;}
.y12d{bottom:786.360450px;}
.y1e4{bottom:789.597630px;}
.ya6{bottom:789.789540px;}
.yab{bottom:789.791190px;}
.yaf{bottom:789.792840px;}
.y14f{bottom:791.760450px;}
.y150{bottom:791.850450px;}
.y1ba{bottom:792.480450px;}
.y273{bottom:793.997640px;}
.y237{bottom:794.012100px;}
.y51{bottom:795.450450px;}
.yf5{bottom:795.810450px;}
.y116{bottom:798.600450px;}
.y2f{bottom:799.950450px;}
.y7e{bottom:801.480450px;}
.y221{bottom:801.930600px;}
.y17b{bottom:802.561800px;}
.y1e3{bottom:806.791950px;}
.ya5{bottom:808.779450px;}
.yaa{bottom:808.781100px;}
.yae{bottom:808.782750px;}
.y1b9{bottom:810.483300px;}
.y272{bottom:811.191960px;}
.y236{bottom:811.287630px;}
.y152{bottom:812.460450px;}
.y14e{bottom:812.550450px;}
.y12c{bottom:816.330450px;}
.yf4{bottom:816.780450px;}
.y220{bottom:819.120450px;}
.y17a{bottom:819.747030px;}
.y2e{bottom:821.010450px;}
.y1e2{bottom:823.963740px;}
.y50{bottom:825.601890px;}
.y1b8{bottom:827.646120px;}
.ya4{bottom:827.670540px;}
.ya9{bottom:827.672190px;}
.yad{bottom:827.673840px;}
.y271{bottom:828.386280px;}
.y235{bottom:828.481950px;}
.y115{bottom:828.660450px;}
.y7d{bottom:831.450450px;}
.y149{bottom:833.880450px;}
.y14a{bottom:833.970450px;}
.y14d{bottom:835.410450px;}
.y179{bottom:836.941350px;}
.y21f{bottom:837.021780px;}
.y12b{bottom:837.300450px;}
.yf3{bottom:837.750450px;}
.y1e1{bottom:841.248240px;}
.y2d{bottom:841.980450px;}
.y1b7{bottom:844.840440px;}
.y270{bottom:845.580600px;}
.ya3{bottom:846.660450px;}
.ya8{bottom:846.662100px;}
.yac{bottom:846.663750px;}
.y4f{bottom:848.100450px;}
.y114{bottom:849.630450px;}
.y7c{bottom:852.420450px;}
.y178{bottom:854.126700px;}
.y21e{bottom:854.306280px;}
.y148{bottom:854.670450px;}
.y14c{bottom:856.110600px;}
.y12a{bottom:858.360450px;}
.y1e0{bottom:858.442560px;}
.yf2{bottom:858.810450px;}
.y1b6{bottom:862.124940px;}
.y26f{bottom:862.860600px;}
.y234{bottom:862.861650px;}
.y113{bottom:870.600450px;}
.y177{bottom:871.411200px;}
.y21d{bottom:871.500600px;}
.y2c{bottom:871.950450px;}
.y7b{bottom:873.480450px;}
.y1df{bottom:875.636880px;}
.y146{bottom:876.000600px;}
.y1b5{bottom:879.319260px;}
.y129{bottom:879.330450px;}
.y233{bottom:880.141650px;}
.y26e{bottom:880.770600px;}
.y4e{bottom:888.330450px;}
.y176{bottom:888.596580px;}
.y21c{bottom:888.690450px;}
.yf1{bottom:888.969540px;}
.ya2{bottom:891.660450px;}
.y1de{bottom:892.831200px;}
.y1b4{bottom:896.513580px;}
.y145{bottom:896.790600px;}
.y232{bottom:897.331350px;}
.y14b{bottom:897.510450px;}
.y26d{bottom:897.960450px;}
.y7a{bottom:903.450450px;}
.y175{bottom:905.790900px;}
.y21b{bottom:906.681960px;}
.y4d{bottom:909.300450px;}
.y1dd{bottom:910.111200px;}
.yf0{bottom:911.370450px;}
.ya1{bottom:912.630450px;}
.y1b3{bottom:913.707900px;}
.y231{bottom:914.521200px;}
.y26c{bottom:915.960600px;}
.y144{bottom:918.210450px;}
.y174{bottom:922.980600px;}
.y21a{bottom:923.876280px;}
.y79{bottom:924.420450px;}
.y1dc{bottom:927.296580px;}
.y4c{bottom:930.360450px;}
.y1b2{bottom:930.992400px;}
.y230{bottom:931.706550px;}
.y26b{bottom:933.150450px;}
.y2b{bottom:933.420450px;}
.ya0{bottom:933.600450px;}
.y147{bottom:938.910450px;}
.y143{bottom:939.000450px;}
.y173{bottom:940.260600px;}
.y219{bottom:941.070600px;}
.y1db{bottom:944.490900px;}
.y78{bottom:945.480450px;}
.y1b1{bottom:948.150600px;}
.y22f{bottom:948.991050px;}
.y26a{bottom:951.150600px;}
.yef{bottom:951.600450px;}
.y112{bottom:954.660450px;}
.y172{bottom:957.450450px;}
.y218{bottom:958.260450px;}
.y4b{bottom:960.330450px;}
.y1da{bottom:961.680600px;}
.y2a{bottom:963.390450px;}
.y9f{bottom:963.660450px;}
.y1b0{bottom:965.344920px;}
.y22e{bottom:966.180750px;}
.y77{bottom:966.450450px;}
.y269{bottom:968.340450px;}
.yee{bottom:972.660450px;}
.y171{bottom:975.360600px;}
.y111{bottom:975.630450px;}
.y217{bottom:976.260600px;}
.y1d9{bottom:978.960600px;}
.y4a{bottom:981.300450px;}
.y13f{bottom:981.750450px;}
.y140{bottom:981.840450px;}
.y1af{bottom:982.539240px;}
.y142{bottom:982.560450px;}
.y22d{bottom:983.370600px;}
.y9e{bottom:984.630450px;}
.y268{bottom:986.336280px;}
.y76{bottom:987.420450px;}
.y170{bottom:992.640600px;}
.y29{bottom:993.450450px;}
.yed{bottom:993.630450px;}
.y1d8{bottom:996.150450px;}
.y1ae{bottom:999.823740px;}
.y22c{bottom:1000.560450px;}
.y49{bottom:1002.360450px;}
.y13e{bottom:1002.540450px;}
.y141{bottom:1003.260450px;}
.y267{bottom:1003.530600px;}
.y9d{bottom:1005.600450px;}
.y110{bottom:1005.789540px;}
.y16f{bottom:1009.830450px;}
.y216{bottom:1011.446280px;}
.y1d7{bottom:1014.060900px;}
.y28{bottom:1014.150450px;}
.y1ad{bottom:1017.018060px;}
.y75{bottom:1017.480450px;}
.y22b{bottom:1018.560900px;}
.y266{bottom:1020.720450px;}
.y48{bottom:1023.330450px;}
.yec{bottom:1023.789540px;}
.y13b{bottom:1023.960450px;}
.y13c{bottom:1024.050450px;}
.y16e{bottom:1027.740600px;}
.y10f{bottom:1028.190450px;}
.y215{bottom:1028.640600px;}
.y1d6{bottom:1031.340750px;}
.y128{bottom:1032.519540px;}
.y1ac{bottom:1034.212380px;}
.y27{bottom:1034.850450px;}
.y9c{bottom:1035.660450px;}
.y22a{bottom:1035.750600px;}
.y74{bottom:1038.450450px;}
.y265{bottom:1038.703440px;}
.y13d{bottom:1044.660450px;}
.y13a{bottom:1044.750450px;}
.y16d{bottom:1045.016130px;}
.y16c{bottom:1045.020600px;}
.y214{bottom:1045.830450px;}
.yeb{bottom:1046.190450px;}
.y1d5{bottom:1048.530600px;}
.y1ab{bottom:1051.406700px;}
.y229{bottom:1052.940450px;}
.y47{bottom:1053.489540px;}
.y127{bottom:1054.920450px;}
.y26{bottom:1055.550450px;}
.y264{bottom:1055.897760px;}
.y9b{bottom:1056.630450px;}
.y73{bottom:1059.420450px;}
.y16b{bottom:1062.210450px;}
.y213{bottom:1063.830600px;}
.y1d4{bottom:1065.720450px;}
.y139{bottom:1066.080450px;}
.y10e{bottom:1068.420450px;}
.y1aa{bottom:1068.691200px;}
.y227{bottom:1070.940600px;}
.y263{bottom:1073.092080px;}
.y46{bottom:1075.890450px;}
.y25{bottom:1076.160450px;}
.y9a{bottom:1077.600450px;}
.y212{bottom:1081.020450px;}
.y1d2{bottom:1083.720750px;}
.y1a9{bottom:1085.862990px;}
.y138{bottom:1086.780450px;}
.y228{bottom:1088.125950px;}
.y226{bottom:1088.130450px;}
.y72{bottom:1089.480450px;}
.y262{bottom:1090.286400px;}
.y126{bottom:1095.690750px;}
.y99{bottom:1098.660450px;}
.y16a{bottom:1098.840450px;}
.y211{bottom:1099.016280px;}
.y1d3{bottom:1100.906130px;}
.y1d1{bottom:1100.910600px;}
.y1a8{bottom:1103.057310px;}
.y225{bottom:1105.410450px;}
.y24{bottom:1106.418630px;}
.y261{bottom:1107.570900px;}
.y71{bottom:1110.450450px;}
.y210{bottom:1116.210600px;}
.y45{bottom:1116.750450px;}
.y1d0{bottom:1118.100450px;}
.y125{bottom:1119.810450px;}
.y1a7{bottom:1120.251630px;}
.y137{bottom:1120.620450px;}
.y260{bottom:1124.756130px;}
.y23{bottom:1128.819540px;}
.y169{bottom:1129.980450px;}
.y70{bottom:1131.420450px;}
.y20f{bottom:1133.400450px;}
.y1a6{bottom:1137.536130px;}
.y224{bottom:1141.950450px;}
.y44{bottom:1149.870450px;}
.y136{bottom:1149.960450px;}
.y22{bottom:1151.220450px;}
.y6f{bottom:1152.480450px;}
.y1a5{bottom:1154.730450px;}
.y168{bottom:1193.160450px;}
.y222{bottom:1193.250450px;}
.y20{bottom:1195.950450px;}
.y1{bottom:1247.400000px;}
.h19{height:17.010000px;}
.h1b{height:43.909277px;}
.h15{height:49.937344px;}
.h5{height:50.832000px;}
.h7{height:59.722560px;}
.h8{height:62.703281px;}
.h16{height:64.148040px;}
.h18{height:65.170080px;}
.hc{height:68.710781px;}
.he{height:69.073181px;}
.h3{height:70.628906px;}
.h9{height:75.093750px;}
.h13{height:75.453750px;}
.h4{height:76.248000px;}
.ha{height:81.476719px;}
.h11{height:83.057344px;}
.hb{height:87.484219px;}
.hf{height:100.248956px;}
.h6{height:115.992000px;}
.h17{height:132.907440px;}
.h1a{height:133.268040px;}
.hd{height:144.670421px;}
.h14{height:157.533750px;}
.h10{height:157.893750px;}
.h12{height:158.253750px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:4.320000px;}
.w2{width:892.396500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w3{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:42.480000px;}
.x2{left:80.820000px;}
.x44{left:90.450000px;}
.x4{left:106.380000px;}
.x23{left:112.590000px;}
.x4a{left:118.440000px;}
.x4f{left:120.780000px;}
.x50{left:122.490450px;}
.x6{left:125.181000px;}
.x55{left:135.990600px;}
.x24{left:138.330000px;}
.x5a{left:141.659850px;}
.xd{left:148.950000px;}
.x5b{left:157.319250px;}
.x38{left:159.120000px;}
.x59{left:162.990450px;}
.x11{left:175.680000px;}
.x13{left:177.120000px;}
.x4d{left:181.980000px;}
.x7{left:183.692880px;}
.x5{left:189.630000px;}
.x47{left:239.580000px;}
.x51{left:246.061050px;}
.x61{left:248.041050px;}
.x5c{left:249.481950px;}
.x3c{left:251.730000px;}
.xc{left:268.660350px;}
.x42{left:294.127470px;}
.x3d{left:314.731620px;}
.x15{left:318.594660px;}
.x14{left:326.879070px;}
.x10{left:332.015670px;}
.x16{left:333.269430px;}
.x41{left:336.869700px;}
.x25{left:343.800000px;}
.x4e{left:346.590000px;}
.x3f{left:351.545670px;}
.x62{left:355.322100px;}
.x52{left:360.451350px;}
.x5d{left:363.872250px;}
.x39{left:379.707930px;}
.xf{left:380.782080px;}
.xe{left:384.024060px;}
.xa{left:389.969250px;}
.x3a{left:391.679820px;}
.x3e{left:393.847650px;}
.x17{left:397.261260px;}
.x26{left:400.410000px;}
.x18{left:403.651620px;}
.x30{left:405.000000px;}
.x27{left:414.180000px;}
.x12{left:417.693780px;}
.x40{left:422.010000px;}
.x3b{left:424.980000px;}
.x9{left:427.860000px;}
.x3{left:429.120000px;}
.xb{left:432.810000px;}
.x63{left:444.780750px;}
.x5e{left:450.541200px;}
.x8{left:451.800000px;}
.x1a{left:456.482490px;}
.x19{left:463.861050px;}
.x28{left:465.210000px;}
.x31{left:469.800000px;}
.x29{left:474.390000px;}
.x1c{left:510.024810px;}
.x1b{left:513.269400px;}
.x32{left:517.860000px;}
.x2a{left:523.350000px;}
.x43{left:531.180000px;}
.x36{left:554.760000px;}
.x35{left:565.290000px;}
.x67{left:570.329250px;}
.x1d{left:573.124680px;}
.x37{left:577.620000px;}
.x64{left:579.871800px;}
.x56{left:581.131050px;}
.x53{left:585.898350px;}
.x2c{left:587.250000px;}
.x1e{left:595.540350px;}
.x48{left:598.140000px;}
.x33{left:599.220000px;}
.x45{left:601.650000px;}
.x4b{left:603.180000px;}
.x2b{left:627.210000px;}
.x4c{left:676.170000px;}
.x68{left:688.319250px;}
.x57{left:697.951800px;}
.x66{left:699.303150px;}
.x46{left:708.030000px;}
.x49{left:711.990000px;}
.x65{left:713.252550px;}
.x34{left:717.570000px;}
.x69{left:718.738500px;}
.x54{left:722.971950px;}
.x58{left:725.041800px;}
.x2d{left:726.750000px;}
.x5f{left:728.461200px;}
.x22{left:729.907500px;}
.x20{left:732.690930px;}
.x1f{left:737.730750px;}
.x21{left:739.987140px;}
.x2f{left:745.020000px;}
.x2e{left:755.100000px;}
.x60{left:797.850000px;}
@media print{
.v2{vertical-align:-79.040000pt;}
.v3{vertical-align:-73.920000pt;}
.v9{vertical-align:-61.119467pt;}
.v7{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v6{vertical-align:29.440000pt;}
.v8{vertical-align:61.119467pt;}
.v4{vertical-align:67.519680pt;}
.v5{vertical-align:73.600000pt;}
.ls3{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.124992pt;}
.ls5c{letter-spacing:-0.102400pt;}
.ls76{letter-spacing:-0.101536pt;}
.ls40{letter-spacing:-0.099552pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls58{letter-spacing:-0.093632pt;}
.ls5b{letter-spacing:-0.089600pt;}
.ls75{letter-spacing:-0.085504pt;}
.ls12{letter-spacing:-0.083328pt;}
.ls1f{letter-spacing:-0.083200pt;}
.ls3e{letter-spacing:-0.081984pt;}
.ls59{letter-spacing:-0.076800pt;}
.ls6e{letter-spacing:-0.074816pt;}
.ls1b{letter-spacing:-0.070400pt;}
.ls67{letter-spacing:-0.069472pt;}
.ls43{letter-spacing:-0.069440pt;}
.ls6c{letter-spacing:-0.064128pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls47{letter-spacing:-0.062496pt;}
.ls6a{letter-spacing:-0.058784pt;}
.ls19{letter-spacing:-0.057600pt;}
.ls11{letter-spacing:-0.055552pt;}
.ls65{letter-spacing:-0.053440pt;}
.ls29{letter-spacing:-0.051200pt;}
.ls18{letter-spacing:-0.048608pt;}
.ls69{letter-spacing:-0.048096pt;}
.ls3c{letter-spacing:-0.046848pt;}
.ls1d{letter-spacing:-0.044800pt;}
.ls64{letter-spacing:-0.042752pt;}
.ls5a{letter-spacing:-0.042560pt;}
.ls49{letter-spacing:-0.041664pt;}
.ls1c{letter-spacing:-0.038400pt;}
.ls6f{letter-spacing:-0.037408pt;}
.ls3d{letter-spacing:-0.035136pt;}
.ls4b{letter-spacing:-0.034720pt;}
.ls6d{letter-spacing:-0.032064pt;}
.ls16{letter-spacing:-0.032000pt;}
.ls4a{letter-spacing:-0.027776pt;}
.ls77{letter-spacing:-0.026720pt;}
.ls26{letter-spacing:-0.025600pt;}
.ls57{letter-spacing:-0.022368pt;}
.ls66{letter-spacing:-0.021376pt;}
.ls48{letter-spacing:-0.020832pt;}
.ls17{letter-spacing:-0.019200pt;}
.ls41{letter-spacing:-0.017568pt;}
.ls68{letter-spacing:-0.016032pt;}
.ls45{letter-spacing:-0.014912pt;}
.ls14{letter-spacing:-0.012800pt;}
.ls6b{letter-spacing:-0.010688pt;}
.ls46{letter-spacing:-0.007456pt;}
.ls28{letter-spacing:-0.006944pt;}
.ls15{letter-spacing:-0.006400pt;}
.ls74{letter-spacing:-0.005344pt;}
.ls2{letter-spacing:0.000000pt;}
.ls62{letter-spacing:0.005344pt;}
.ls1a{letter-spacing:0.006400pt;}
.ls3a{letter-spacing:0.011712pt;}
.lsa{letter-spacing:0.012800pt;}
.ls71{letter-spacing:0.016032pt;}
.ls2f{letter-spacing:0.017568pt;}
.ls2a{letter-spacing:0.019200pt;}
.ls73{letter-spacing:0.021376pt;}
.ls38{letter-spacing:0.025600pt;}
.ls5f{letter-spacing:0.026720pt;}
.ls9{letter-spacing:0.027776pt;}
.ls3b{letter-spacing:0.029280pt;}
.ls2c{letter-spacing:0.032000pt;}
.ls61{letter-spacing:0.032064pt;}
.ls21{letter-spacing:0.034720pt;}
.ls30{letter-spacing:0.035136pt;}
.ls27{letter-spacing:0.038400pt;}
.ls31{letter-spacing:0.040992pt;}
.ls20{letter-spacing:0.041664pt;}
.ls70{letter-spacing:0.042752pt;}
.ls24{letter-spacing:0.044736pt;}
.ls4e{letter-spacing:0.044800pt;}
.ls34{letter-spacing:0.046848pt;}
.ls72{letter-spacing:0.048096pt;}
.ls39{letter-spacing:0.052704pt;}
.ls22{letter-spacing:0.055552pt;}
.ls32{letter-spacing:0.058560pt;}
.ls23{letter-spacing:0.059648pt;}
.ls4{letter-spacing:0.064000pt;}
.ls35{letter-spacing:0.064416pt;}
.ls44{letter-spacing:0.067104pt;}
.ls33{letter-spacing:0.070272pt;}
.ls2b{letter-spacing:0.070400pt;}
.ls36{letter-spacing:0.076128pt;}
.ls2d{letter-spacing:0.076384pt;}
.lsf{letter-spacing:0.076800pt;}
.ls4d{letter-spacing:0.083200pt;}
.ls60{letter-spacing:0.085504pt;}
.ls3f{letter-spacing:0.087840pt;}
.ls1{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.101536pt;}
.ls25{letter-spacing:0.104160pt;}
.lse{letter-spacing:0.121600pt;}
.lsd{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.134400pt;}
.ls6{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.288000pt;}
.ls56{letter-spacing:10.368000pt;}
.ls63{letter-spacing:56.806720pt;}
.ls50{letter-spacing:103.488000pt;}
.ls53{letter-spacing:133.248000pt;}
.ls78{letter-spacing:140.151904pt;}
.ls5d{letter-spacing:146.232971pt;}
.ls5e{letter-spacing:174.369387pt;}
.ls37{letter-spacing:185.002987pt;}
.ls54{letter-spacing:207.488000pt;}
.ls42{letter-spacing:353.011392pt;}
.ls52{letter-spacing:431.488000pt;}
.ls2e{letter-spacing:545.728000pt;}
.ls4c{letter-spacing:561.408000pt;}
.ls55{letter-spacing:748.288000pt;}
.lsb{letter-spacing:863.488000pt;}
.ls51{letter-spacing:869.568000pt;}
.ls4f{letter-spacing:897.728000pt;}
.ws136{word-spacing:-53.440000pt;}
.ws3{word-spacing:-23.808000pt;}
.ws2{word-spacing:-23.712000pt;}
.ws10c{word-spacing:-20.794784pt;}
.ws11e{word-spacing:-17.772800pt;}
.ws120{word-spacing:-17.766400pt;}
.wse{word-spacing:-17.753600pt;}
.ws121{word-spacing:-17.747200pt;}
.wsf{word-spacing:-17.728000pt;}
.ws10{word-spacing:-17.708800pt;}
.ws0{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws15e{word-spacing:-12.136224pt;}
.ws14b{word-spacing:-12.082784pt;}
.ws11f{word-spacing:-11.789120pt;}
.ws11d{word-spacing:-11.738048pt;}
.wsd{word-spacing:-1.440000pt;}
.ws45{word-spacing:-0.465248pt;}
.ws12{word-spacing:-0.409696pt;}
.wsa{word-spacing:-0.384000pt;}
.ws10d{word-spacing:-0.381920pt;}
.ws139{word-spacing:-0.374080pt;}
.ws15c{word-spacing:-0.352704pt;}
.ws137{word-spacing:-0.347360pt;}
.wsc{word-spacing:-0.288000pt;}
.ws13{word-spacing:-0.277760pt;}
.wsd4{word-spacing:-0.229152pt;}
.ws14{word-spacing:-0.215264pt;}
.ws2a{word-spacing:-0.194432pt;}
.ws8{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.180544pt;}
.ws2b{word-spacing:-0.131936pt;}
.wscb{word-spacing:-0.118048pt;}
.ws9{word-spacing:-0.096000pt;}
.wseb{word-spacing:-0.090272pt;}
.ws5{word-spacing:-0.064000pt;}
.ws103{word-spacing:-0.048608pt;}
.ws15b{word-spacing:-0.048096pt;}
.ws150{word-spacing:-0.042752pt;}
.ws140{word-spacing:-0.032064pt;}
.wsd3{word-spacing:-0.027776pt;}
.wsee{word-spacing:-0.025600pt;}
.wsaa{word-spacing:-0.023424pt;}
.ws158{word-spacing:-0.021376pt;}
.wsbd{word-spacing:-0.020832pt;}
.wsae{word-spacing:-0.017568pt;}
.ws15d{word-spacing:-0.016032pt;}
.wsa8{word-spacing:-0.011712pt;}
.ws163{word-spacing:-0.010688pt;}
.ws4{word-spacing:0.000000pt;}
.ws141{word-spacing:0.005344pt;}
.wsab{word-spacing:0.005856pt;}
.ws149{word-spacing:0.010688pt;}
.ws124{word-spacing:0.012800pt;}
.wsc9{word-spacing:0.014912pt;}
.ws138{word-spacing:0.016032pt;}
.wsa7{word-spacing:0.017568pt;}
.ws13b{word-spacing:0.021376pt;}
.ws29{word-spacing:0.022368pt;}
.ws13e{word-spacing:0.026720pt;}
.ws13d{word-spacing:0.032064pt;}
.ws15{word-spacing:0.034720pt;}
.wsa6{word-spacing:0.035136pt;}
.ws13f{word-spacing:0.037408pt;}
.ws11c{word-spacing:0.038400pt;}
.wsad{word-spacing:0.040992pt;}
.ws13a{word-spacing:0.042752pt;}
.ws135{word-spacing:0.044800pt;}
.ws148{word-spacing:0.048096pt;}
.ws126{word-spacing:0.057600pt;}
.wsed{word-spacing:0.064000pt;}
.wsa4{word-spacing:0.089600pt;}
.ws122{word-spacing:0.096000pt;}
.ws125{word-spacing:0.102400pt;}
.ws112{word-spacing:0.115200pt;}
.ws6{word-spacing:0.128000pt;}
.ws62{word-spacing:0.134400pt;}
.ws34{word-spacing:0.140800pt;}
.ws27{word-spacing:0.147200pt;}
.ws16{word-spacing:0.153600pt;}
.ws1b{word-spacing:0.160000pt;}
.ws44{word-spacing:0.166400pt;}
.ws1d{word-spacing:0.172800pt;}
.ws26{word-spacing:0.179200pt;}
.ws7{word-spacing:0.192000pt;}
.ws1c{word-spacing:0.198400pt;}
.ws25{word-spacing:0.211200pt;}
.wsca{word-spacing:0.253504pt;}
.ws123{word-spacing:0.262400pt;}
.wsd2{word-spacing:0.268800pt;}
.wsea{word-spacing:0.275200pt;}
.ws61{word-spacing:0.281600pt;}
.wsb{word-spacing:0.288000pt;}
.ws54{word-spacing:0.300800pt;}
.ws96{word-spacing:0.307200pt;}
.ws53{word-spacing:0.332800pt;}
.ws14a{word-spacing:0.342016pt;}
.ws15a{word-spacing:0.347360pt;}
.ws142{word-spacing:0.363392pt;}
.ws37{word-spacing:0.422400pt;}
.ws5b{word-spacing:0.467200pt;}
.ws132{word-spacing:0.480000pt;}
.wsa3{word-spacing:0.492800pt;}
.ws5a{word-spacing:0.499200pt;}
.ws133{word-spacing:0.524800pt;}
.ws36{word-spacing:0.569600pt;}
.ws59{word-spacing:0.582400pt;}
.ws35{word-spacing:0.627200pt;}
.ws171{word-spacing:0.651968pt;}
.ws170{word-spacing:0.673344pt;}
.wsf9{word-spacing:0.748800pt;}
.wsf8{word-spacing:0.787200pt;}
.ws2c{word-spacing:0.793600pt;}
.ws2f{word-spacing:1.427200pt;}
.ws31{word-spacing:1.497600pt;}
.ws30{word-spacing:1.644800pt;}
.ws87{word-spacing:1.747200pt;}
.ws47{word-spacing:1.753600pt;}
.ws88{word-spacing:1.760000pt;}
.ws46{word-spacing:1.868800pt;}
.ws98{word-spacing:2.054400pt;}
.ws11b{word-spacing:2.080000pt;}
.ws134{word-spacing:2.086400pt;}
.ws97{word-spacing:2.099200pt;}
.ws51{word-spacing:3.014400pt;}
.ws50{word-spacing:3.148800pt;}
.ws172{word-spacing:3.233120pt;}
.wsff{word-spacing:3.366400pt;}
.wsfe{word-spacing:3.372800pt;}
.ws16e{word-spacing:3.553760pt;}
.ws16f{word-spacing:3.559104pt;}
.ws6b{word-spacing:3.660800pt;}
.ws77{word-spacing:3.667200pt;}
.ws119{word-spacing:3.673600pt;}
.ws11a{word-spacing:3.712000pt;}
.ws159{word-spacing:3.874400pt;}
.ws78{word-spacing:3.916800pt;}
.ws130{word-spacing:3.974400pt;}
.ws118{word-spacing:4.000000pt;}
.wsef{word-spacing:4.019200pt;}
.ws131{word-spacing:4.179200pt;}
.ws6e{word-spacing:4.320000pt;}
.ws6f{word-spacing:4.441600pt;}
.ws144{word-spacing:4.504992pt;}
.ws145{word-spacing:4.515680pt;}
.ws5c{word-spacing:5.273600pt;}
.ws5d{word-spacing:5.369600pt;}
.wsf4{word-spacing:5.568000pt;}
.wsc7{word-spacing:5.606400pt;}
.wsf5{word-spacing:5.644800pt;}
.wsc8{word-spacing:5.689600pt;}
.ws146{word-spacing:5.776864pt;}
.ws147{word-spacing:5.792896pt;}
.ws15f{word-spacing:5.798240pt;}
.ws16d{word-spacing:5.803584pt;}
.ws108{word-spacing:6.233600pt;}
.ws109{word-spacing:6.259200pt;}
.ws168{word-spacing:6.749472pt;}
.ws19{word-spacing:6.790400pt;}
.ws1a{word-spacing:6.835200pt;}
.ws110{word-spacing:7.187200pt;}
.ws111{word-spacing:7.193600pt;}
.ws41{word-spacing:7.500800pt;}
.ws40{word-spacing:7.520000pt;}
.ws10b{word-spacing:8.128000pt;}
.wsdb{word-spacing:8.134400pt;}
.ws10a{word-spacing:8.140800pt;}
.ws3e{word-spacing:8.172800pt;}
.wse6{word-spacing:8.192000pt;}
.wsda{word-spacing:8.198400pt;}
.wsb9{word-spacing:8.467200pt;}
.ws89{word-spacing:8.473600pt;}
.ws8a{word-spacing:8.633600pt;}
.ws154{word-spacing:8.651936pt;}
.ws153{word-spacing:8.678656pt;}
.wsd0{word-spacing:8.787200pt;}
.wsb8{word-spacing:8.800000pt;}
.wsd1{word-spacing:8.806400pt;}
.wscf{word-spacing:8.812800pt;}
.wsb6{word-spacing:8.883200pt;}
.ws105{word-spacing:9.030400pt;}
.wsb7{word-spacing:9.049600pt;}
.ws104{word-spacing:9.132800pt;}
.ws57{word-spacing:9.184000pt;}
.ws58{word-spacing:9.280000pt;}
.ws8c{word-spacing:9.401600pt;}
.ws8b{word-spacing:9.433600pt;}
.wse5{word-spacing:9.504000pt;}
.wse4{word-spacing:9.561600pt;}
.wsbf{word-spacing:9.702400pt;}
.wsbe{word-spacing:9.753600pt;}
.ws55{word-spacing:9.984000pt;}
.ws56{word-spacing:10.060800pt;}
.ws8f{word-spacing:10.073600pt;}
.ws8d{word-spacing:10.092800pt;}
.ws8e{word-spacing:10.240000pt;}
.ws4f{word-spacing:10.393600pt;}
.ws4e{word-spacing:10.412800pt;}
.ws12d{word-spacing:10.425600pt;}
.ws12c{word-spacing:10.534400pt;}
.ws28{word-spacing:10.700800pt;}
.ws24{word-spacing:10.732800pt;}
.ws1f{word-spacing:10.739200pt;}
.ws21{word-spacing:10.745600pt;}
.ws20{word-spacing:10.758400pt;}
.ws22{word-spacing:10.764800pt;}
.ws1e{word-spacing:10.771200pt;}
.ws12b{word-spacing:10.777600pt;}
.ws9a{word-spacing:11.014400pt;}
.ws68{word-spacing:11.020800pt;}
.ws67{word-spacing:11.027200pt;}
.ws99{word-spacing:11.110400pt;}
.ws66{word-spacing:11.168000pt;}
.ws157{word-spacing:11.222400pt;}
.ws156{word-spacing:11.238432pt;}
.ws33{word-spacing:11.366400pt;}
.ws32{word-spacing:11.372800pt;}
.ws162{word-spacing:11.553728pt;}
.wsfb{word-spacing:11.660800pt;}
.wse3{word-spacing:11.699200pt;}
.wsfa{word-spacing:11.705600pt;}
.ws6a{word-spacing:12.326400pt;}
.ws69{word-spacing:12.396800pt;}
.wscd{word-spacing:12.608000pt;}
.wsce{word-spacing:12.620800pt;}
.wscc{word-spacing:12.665600pt;}
.ws95{word-spacing:13.286400pt;}
.ws93{word-spacing:13.292800pt;}
.ws94{word-spacing:13.401600pt;}
.wsa1{word-spacing:13.612800pt;}
.wsa2{word-spacing:13.657600pt;}
.ws14e{word-spacing:14.428800pt;}
.ws14d{word-spacing:14.439488pt;}
.ws82{word-spacing:15.187200pt;}
.ws12f{word-spacing:15.200000pt;}
.ws12e{word-spacing:15.206400pt;}
.ws83{word-spacing:15.212800pt;}
.ws48{word-spacing:15.513600pt;}
.ws23{word-spacing:15.744000pt;}
.wsbb{word-spacing:15.808000pt;}
.wsba{word-spacing:15.852800pt;}
.wsbc{word-spacing:15.929600pt;}
.ws43{word-spacing:15.942400pt;}
.ws42{word-spacing:15.968000pt;}
.ws18{word-spacing:17.100800pt;}
.ws17{word-spacing:17.107200pt;}
.ws129{word-spacing:17.120000pt;}
.ws12a{word-spacing:17.190400pt;}
.ws3d{word-spacing:18.694400pt;}
.ws3c{word-spacing:18.720000pt;}
.ws3f{word-spacing:18.726400pt;}
.ws63{word-spacing:19.040000pt;}
.ws9b{word-spacing:19.347200pt;}
.ws84{word-spacing:19.360000pt;}
.ws86{word-spacing:19.366400pt;}
.ws9c{word-spacing:19.449600pt;}
.ws85{word-spacing:19.520000pt;}
.wsd5{word-spacing:19.673600pt;}
.wsd6{word-spacing:19.686400pt;}
.ws151{word-spacing:20.504928pt;}
.ws6d{word-spacing:20.928000pt;}
.ws6c{word-spacing:21.030400pt;}
.ws92{word-spacing:21.248000pt;}
.ws91{word-spacing:21.267200pt;}
.ws7f{word-spacing:21.273600pt;}
.ws7e{word-spacing:21.337600pt;}
.wsa0{word-spacing:21.356800pt;}
.ws16b{word-spacing:21.450816pt;}
.ws16c{word-spacing:21.477536pt;}
.wsb2{word-spacing:21.574400pt;}
.ws90{word-spacing:21.894400pt;}
.ws38{word-spacing:21.907200pt;}
.ws39{word-spacing:21.939200pt;}
.ws7a{word-spacing:21.990400pt;}
.wsdd{word-spacing:22.208000pt;}
.wsdc{word-spacing:22.316800pt;}
.wsec{word-spacing:22.579200pt;}
.wsf7{word-spacing:22.937600pt;}
.wsf6{word-spacing:22.944000pt;}
.ws7d{word-spacing:22.950400pt;}
.ws4b{word-spacing:23.174400pt;}
.ws4a{word-spacing:23.187200pt;}
.ws7b{word-spacing:23.264000pt;}
.ws7c{word-spacing:23.328000pt;}
.ws74{word-spacing:24.134400pt;}
.ws73{word-spacing:24.185600pt;}
.ws9e{word-spacing:25.408000pt;}
.ws9f{word-spacing:25.420800pt;}
.ws72{word-spacing:25.433600pt;}
.ws9d{word-spacing:25.446400pt;}
.ws161{word-spacing:25.619136pt;}
.ws160{word-spacing:25.629824pt;}
.ws102{word-spacing:26.060800pt;}
.ws100{word-spacing:26.073600pt;}
.ws70{word-spacing:26.099200pt;}
.ws71{word-spacing:26.182400pt;}
.ws101{word-spacing:26.188800pt;}
.wsa9{word-spacing:26.217312pt;}
.wsac{word-spacing:26.229024pt;}
.ws81{word-spacing:26.688000pt;}
.ws2d{word-spacing:26.745600pt;}
.ws80{word-spacing:26.790400pt;}
.wsfc{word-spacing:26.963200pt;}
.wsfd{word-spacing:27.046400pt;}
.ws3a{word-spacing:27.340800pt;}
.ws3b{word-spacing:27.481600pt;}
.wse8{word-spacing:28.966400pt;}
.wse9{word-spacing:28.979200pt;}
.ws2e{word-spacing:30.899200pt;}
.wsf2{word-spacing:32.480000pt;}
.wsf3{word-spacing:32.486400pt;}
.ws75{word-spacing:32.800000pt;}
.ws76{word-spacing:32.979200pt;}
.ws155{word-spacing:34.591712pt;}
.ws52{word-spacing:36.646400pt;}
.wse2{word-spacing:36.953600pt;}
.wse1{word-spacing:37.107200pt;}
.wse0{word-spacing:37.177600pt;}
.ws10f{word-spacing:38.547200pt;}
.ws10e{word-spacing:38.688000pt;}
.ws128{word-spacing:43.526400pt;}
.wsc6{word-spacing:43.628800pt;}
.wsc5{word-spacing:43.660800pt;}
.wse7{word-spacing:43.680000pt;}
.ws166{word-spacing:44.499488pt;}
.ws114{word-spacing:48.147200pt;}
.ws113{word-spacing:48.179200pt;}
.ws117{word-spacing:49.107200pt;}
.ws115{word-spacing:49.120000pt;}
.ws116{word-spacing:49.132800pt;}
.wsf1{word-spacing:50.412800pt;}
.wsf0{word-spacing:50.419200pt;}
.wsd8{word-spacing:50.777600pt;}
.wsd7{word-spacing:50.803200pt;}
.wsdf{word-spacing:51.654400pt;}
.wsde{word-spacing:51.776000pt;}
.wsc1{word-spacing:52.633600pt;}
.wsc0{word-spacing:52.652800pt;}
.ws79{word-spacing:53.580800pt;}
.wsc3{word-spacing:54.867200pt;}
.wsc2{word-spacing:54.873600pt;}
.wsc4{word-spacing:54.880000pt;}
.wsd9{word-spacing:55.526400pt;}
.ws5f{word-spacing:55.814400pt;}
.ws5e{word-spacing:55.827200pt;}
.ws107{word-spacing:58.380800pt;}
.ws106{word-spacing:58.406400pt;}
.ws16a{word-spacing:67.125984pt;}
.ws169{word-spacing:67.131328pt;}
.ws165{word-spacing:67.168736pt;}
.ws167{word-spacing:67.179424pt;}
.ws164{word-spacing:67.195456pt;}
.ws64{word-spacing:67.673600pt;}
.ws65{word-spacing:67.987200pt;}
.wsb4{word-spacing:68.012800pt;}
.ws152{word-spacing:68.723840pt;}
.ws14f{word-spacing:68.729184pt;}
.ws143{word-spacing:68.766592pt;}
.ws14c{word-spacing:68.777280pt;}
.ws13c{word-spacing:68.793312pt;}
.ws127{word-spacing:71.513600pt;}
.wsb1{word-spacing:71.520000pt;}
.wsb0{word-spacing:75.040000pt;}
.ws60{word-spacing:77.580800pt;}
.ws49{word-spacing:82.067200pt;}
.ws4d{word-spacing:87.334400pt;}
.ws4c{word-spacing:87.507200pt;}
.wsb3{word-spacing:92.627200pt;}
.wsaf{word-spacing:116.142048pt;}
.wsb5{word-spacing:128.480000pt;}
.wsa5{word-spacing:314.273952pt;}
._40{margin-left:-68.991093pt;}
._45{margin-left:-67.440811pt;}
._2f{margin-left:-47.040000pt;}
._23{margin-left:-26.234880pt;}
._47{margin-left:-12.184320pt;}
._7{margin-left:-10.560000pt;}
._2e{margin-left:-9.420800pt;}
._3c{margin-left:-7.180800pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.056000pt;}
._a{width:2.803200pt;}
._9{width:4.057600pt;}
._f{width:5.664000pt;}
._6{width:7.590400pt;}
._b{width:9.459200pt;}
._3{width:10.560000pt;}
._d{width:13.836800pt;}
._1b{width:16.000000pt;}
._20{width:21.964800pt;}
._19{width:23.360000pt;}
._1c{width:25.536000pt;}
._1d{width:27.456000pt;}
._3d{width:28.759360pt;}
._16{width:29.760000pt;}
._1a{width:31.360000pt;}
._30{width:32.576000pt;}
._12{width:33.600000pt;}
._10{width:34.560000pt;}
._1f{width:35.520000pt;}
._17{width:37.632000pt;}
._1e{width:39.360000pt;}
._21{width:41.920000pt;}
._15{width:43.520000pt;}
._18{width:44.480000pt;}
._8{width:45.440000pt;}
._14{width:48.192000pt;}
._c{width:52.480000pt;}
._13{width:53.696000pt;}
._11{width:54.720000pt;}
._4{width:56.000000pt;}
._31{width:58.368000pt;}
._2b{width:60.480000pt;}
._5{width:63.360000pt;}
._22{width:66.254805pt;}
._46{width:67.201749pt;}
._41{width:68.799616pt;}
._2{width:70.400000pt;}
._e{width:73.920000pt;}
._29{width:78.400000pt;}
._2d{width:82.816000pt;}
._25{width:84.968363pt;}
._26{width:96.000000pt;}
._27{width:99.520000pt;}
._2a{width:103.040000pt;}
._28{width:149.440000pt;}
._2c{width:170.880000pt;}
._3e{width:183.080320pt;}
._43{width:189.471253pt;}
._33{width:194.867200pt;}
._44{width:214.096235pt;}
._42{width:221.134635pt;}
._35{width:229.657600pt;}
._3f{width:245.423125pt;}
._36{width:280.857600pt;}
._3b{width:396.070400pt;}
._37{width:405.401600pt;}
._32{width:518.348800pt;}
._24{width:593.891904pt;}
._3a{width:618.284800pt;}
._39{width:634.528000pt;}
._34{width:748.697600pt;}
._38{width:897.555200pt;}
.fs2{font-size:37.120000pt;}
.fs8{font-size:42.560000pt;}
.fs3{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.440000pt;}
.fs5{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1ff{bottom:2.800533pt;}
.y1f{bottom:39.200000pt;}
.y1e{bottom:58.720000pt;}
.y223{bottom:62.587067pt;}
.y21{bottom:62.667067pt;}
.y1d{bottom:76.960000pt;}
.y1a4{bottom:85.385627pt;}
.yea{bottom:87.867067pt;}
.y6e{bottom:88.667067pt;}
.y20e{bottom:89.208907pt;}
.y25f{bottom:93.135280pt;}
.y1c{bottom:95.040000pt;}
.y1a3{bottom:100.669467pt;}
.y20d{bottom:104.492747pt;}
.ye9{bottom:106.267067pt;}
.y6d{bottom:107.387067pt;}
.y25e{bottom:108.499280pt;}
.y10d{bottom:110.027067pt;}
.y1b{bottom:113.120000pt;}
.y1a2{bottom:115.997360pt;}
.y20c{bottom:119.776587pt;}
.y25d{bottom:123.783120pt;}
.ye8{bottom:124.667067pt;}
.y10c{bottom:128.667067pt;}
.y1a{bottom:131.200000pt;}
.y1a1{bottom:131.281200pt;}
.y6c{bottom:134.027067pt;}
.y20b{bottom:135.140587pt;}
.y25c{bottom:139.066960pt;}
.ye7{bottom:143.067067pt;}
.y1a0{bottom:146.565040pt;}
.y10b{bottom:147.387067pt;}
.y19{bottom:149.440000pt;}
.y20a{bottom:150.424427pt;}
.y6b{bottom:152.667067pt;}
.y25b{bottom:154.350800pt;}
.ye6{bottom:161.467067pt;}
.y19f{bottom:161.848880pt;}
.y98{bottom:163.067067pt;}
.y209{bottom:165.708267pt;}
.y10a{bottom:166.027067pt;}
.y18{bottom:167.520000pt;}
.y25a{bottom:169.686800pt;}
.y6a{bottom:171.387067pt;}
.y19e{bottom:177.212880pt;}
.ye5{bottom:179.867067pt;}
.y208{bottom:180.972080pt;}
.y97{bottom:181.707067pt;}
.y259{bottom:184.970640pt;}
.y17{bottom:185.600000pt;}
.y69{bottom:190.027067pt;}
.y19d{bottom:192.496720pt;}
.y109{bottom:192.667067pt;}
.y207{bottom:196.336080pt;}
.ye4{bottom:198.267067pt;}
.y258{bottom:200.254480pt;}
.y16{bottom:203.680000pt;}
.y19c{bottom:207.780560pt;}
.y96{bottom:208.427067pt;}
.y68{bottom:208.667067pt;}
.y108{bottom:211.387067pt;}
.y206{bottom:211.619920pt;}
.y257{bottom:215.538320pt;}
.y167{bottom:216.507200pt;}
.ye3{bottom:220.587067pt;}
.y15{bottom:221.920000pt;}
.y19b{bottom:223.064400pt;}
.y205{bottom:226.903760pt;}
.y95{bottom:227.067067pt;}
.y67{bottom:227.387067pt;}
.y107{bottom:230.027067pt;}
.y256{bottom:230.902320pt;}
.y19a{bottom:238.428400pt;}
.y166{bottom:238.587200pt;}
.y14{bottom:240.000000pt;}
.y204{bottom:242.187600pt;}
.ye2{bottom:243.947067pt;}
.y66{bottom:246.027067pt;}
.y255{bottom:246.186160pt;}
.y199{bottom:253.688240pt;}
.y94{bottom:253.707067pt;}
.y106{bottom:256.667067pt;}
.y203{bottom:257.455387pt;}
.y13{bottom:258.080000pt;}
.y165{bottom:260.667200pt;}
.y254{bottom:261.470000pt;}
.ydb{bottom:261.627067pt;}
.y65{bottom:264.667067pt;}
.y198{bottom:268.972080pt;}
.y93{bottom:272.427067pt;}
.y202{bottom:272.819387pt;}
.y12{bottom:276.320000pt;}
.y253{bottom:276.717760pt;}
.ye1{bottom:278.347067pt;}
.yda{bottom:278.427067pt;}
.y164{bottom:282.747200pt;}
.y64{bottom:283.387067pt;}
.y197{bottom:284.255920pt;}
.y201{bottom:288.103227pt;}
.y92{bottom:291.067067pt;}
.y252{bottom:292.081760pt;}
.y11{bottom:294.400000pt;}
.ye0{bottom:295.227067pt;}
.yd9{bottom:295.307067pt;}
.y196{bottom:299.619920pt;}
.y63{bottom:302.027067pt;}
.y200{bottom:303.387067pt;}
.y251{bottom:307.365600pt;}
.y91{bottom:309.707067pt;}
.y105{bottom:310.027067pt;}
.ydf{bottom:312.107067pt;}
.yd8{bottom:312.187200pt;}
.y10{bottom:312.480000pt;}
.y163{bottom:312.747200pt;}
.y43{bottom:313.787067pt;}
.y195{bottom:314.903760pt;}
.y1fe{bottom:315.866667pt;}
.y1fd{bottom:318.667067pt;}
.y62{bottom:320.667067pt;}
.y250{bottom:322.649440pt;}
.yde{bottom:328.987067pt;}
.yd7{bottom:329.067067pt;}
.y194{bottom:330.187600pt;}
.yf{bottom:330.560000pt;}
.y42{bottom:332.427067pt;}
.y1fc{bottom:334.027067pt;}
.y90{bottom:336.427067pt;}
.y104{bottom:336.667067pt;}
.y24f{bottom:337.933280pt;}
.y162{bottom:342.907200pt;}
.y193{bottom:345.459360pt;}
.yd6{bottom:345.867067pt;}
.ydd{bottom:345.947067pt;}
.y61{bottom:347.387067pt;}
.ye{bottom:348.000000pt;}
.y1fb{bottom:349.951467pt;}
.y24e{bottom:353.297280pt;}
.y8f{bottom:355.067067pt;}
.y103{bottom:355.387067pt;}
.y41{bottom:359.067067pt;}
.y192{bottom:360.823360pt;}
.yd5{bottom:362.667200pt;}
.ydc{bottom:362.747200pt;}
.y1fa{bottom:365.311467pt;}
.y60{bottom:366.027067pt;}
.yd{bottom:366.720000pt;}
.y24d{bottom:368.581120pt;}
.y161{bottom:372.347067pt;}
.y8e{bottom:373.707067pt;}
.y102{bottom:374.027067pt;}
.y191{bottom:376.107200pt;}
.y40{bottom:377.787067pt;}
.y1cf{bottom:379.147067pt;}
.yd4{bottom:380.267067pt;}
.yc9{bottom:380.347067pt;}
.y1f9{bottom:380.591333pt;}
.y24c{bottom:383.864960pt;}
.y190{bottom:391.387067pt;}
.y8d{bottom:392.427067pt;}
.yc{bottom:392.480000pt;}
.y5f{bottom:392.835280pt;}
.y1ce{bottom:394.507067pt;}
.y160{bottom:395.067067pt;}
.y1f8{bottom:395.863120pt;}
.y3f{bottom:396.427067pt;}
.yd3{bottom:397.067200pt;}
.yc8{bottom:397.147200pt;}
.y24b{bottom:399.148800pt;}
.y101{bottom:400.835280pt;}
.y18f{bottom:407.390800pt;}
.y1cd{bottom:410.419360pt;}
.y1f7{bottom:411.146960pt;}
.y5e{bottom:412.747200pt;}
.yd2{bottom:413.947200pt;}
.y124{bottom:414.027067pt;}
.yc7{bottom:414.027200pt;}
.y24a{bottom:414.404507pt;}
.y3e{bottom:415.067067pt;}
.y15f{bottom:417.147067pt;}
.y8c{bottom:419.067067pt;}
.y100{bottom:420.747200pt;}
.y18e{bottom:422.670667pt;}
.y1cc{bottom:425.703200pt;}
.yb{bottom:426.080000pt;}
.y1f6{bottom:426.430800pt;}
.y249{bottom:429.768507pt;}
.yd1{bottom:430.827200pt;}
.yc6{bottom:430.907200pt;}
.y123{bottom:432.667067pt;}
.y8b{bottom:437.707067pt;}
.y18d{bottom:437.950533pt;}
.y15e{bottom:439.227067pt;}
.y1cb{bottom:441.067200pt;}
.y3d{bottom:441.787067pt;}
.y1f5{bottom:441.790800pt;}
.y248{bottom:445.052347pt;}
.yd0{bottom:447.707067pt;}
.yc5{bottom:447.787067pt;}
.y5d{bottom:448.587067pt;}
.y122{bottom:451.387067pt;}
.y18c{bottom:453.222293pt;}
.y1ca{bottom:456.347067pt;}
.y8a{bottom:456.427067pt;}
.yff{bottom:456.587067pt;}
.y1f4{bottom:457.066693pt;}
.ya{bottom:459.680000pt;}
.y247{bottom:460.336187pt;}
.y3c{bottom:460.427067pt;}
.ycf{bottom:464.587067pt;}
.yc4{bottom:464.667200pt;}
.y5c{bottom:467.227067pt;}
.y18b{bottom:468.586293pt;}
.y15d{bottom:468.667067pt;}
.y121{bottom:470.027067pt;}
.y1c9{bottom:472.255520pt;}
.y1f3{bottom:472.350533pt;}
.y89{bottom:475.067067pt;}
.yfe{bottom:475.227067pt;}
.y246{bottom:475.620027pt;}
.y3b{bottom:479.067067pt;}
.yce{bottom:481.467067pt;}
.yc3{bottom:481.547067pt;}
.y18a{bottom:483.870133pt;}
.y135{bottom:485.627067pt;}
.y5b{bottom:485.867067pt;}
.y1c8{bottom:487.619520pt;}
.y1f2{bottom:487.630267pt;}
.y120{bottom:488.667067pt;}
.y245{bottom:490.984027pt;}
.y15c{bottom:491.307067pt;}
.y9{bottom:493.280000pt;}
.yfd{bottom:493.867067pt;}
.y3a{bottom:497.787067pt;}
.yc2{bottom:498.267067pt;}
.ycd{bottom:498.347067pt;}
.y189{bottom:499.150000pt;}
.y88{bottom:501.707067pt;}
.y1c7{bottom:502.903360pt;}
.y1f1{bottom:502.990267pt;}
.y5a{bottom:504.587067pt;}
.y244{bottom:506.267867pt;}
.y134{bottom:512.267067pt;}
.y188{bottom:514.425733pt;}
.yc1{bottom:515.147067pt;}
.ycc{bottom:515.227067pt;}
.y11f{bottom:515.468347pt;}
.y39{bottom:516.427067pt;}
.y15b{bottom:517.787067pt;}
.y1c6{bottom:518.187200pt;}
.y1f0{bottom:518.242133pt;}
.y87{bottom:520.427067pt;}
.yfc{bottom:520.668347pt;}
.y243{bottom:521.539760pt;}
.y59{bottom:523.227067pt;}
.y8{bottom:526.880000pt;}
.y187{bottom:529.789733pt;}
.yc0{bottom:532.027067pt;}
.ycb{bottom:532.107067pt;}
.y1c5{bottom:533.467067pt;}
.y1ef{bottom:533.525973pt;}
.y38{bottom:535.067067pt;}
.y11e{bottom:535.467067pt;}
.y15a{bottom:536.187067pt;}
.y242{bottom:536.823600pt;}
.y133{bottom:538.987067pt;}
.yfb{bottom:540.667067pt;}
.y58{bottom:541.867067pt;}
.y186{bottom:545.069600pt;}
.y86{bottom:547.067067pt;}
.y1ee{bottom:548.809813pt;}
.ybf{bottom:548.907067pt;}
.yca{bottom:548.987067pt;}
.y1c4{bottom:549.467200pt;}
.y241{bottom:552.187600pt;}
.y37{bottom:553.787067pt;}
.y159{bottom:554.587067pt;}
.y7{bottom:556.960000pt;}
.y185{bottom:560.349467pt;}
.y1ed{bottom:564.173813pt;}
.y1c3{bottom:564.747067pt;}
.y132{bottom:565.627067pt;}
.y85{bottom:565.707067pt;}
.ybe{bottom:566.427067pt;}
.yb7{bottom:566.507067pt;}
.y240{bottom:567.463360pt;}
.y57{bottom:568.587067pt;}
.y11d{bottom:571.227067pt;}
.y158{bottom:572.987067pt;}
.y184{bottom:575.629333pt;}
.yfa{bottom:576.907067pt;}
.y6{bottom:579.360000pt;}
.y1ec{bottom:579.457653pt;}
.y36{bottom:580.427067pt;}
.y1c2{bottom:580.743360pt;}
.y23f{bottom:582.747200pt;}
.ybd{bottom:583.307067pt;}
.yb6{bottom:583.387067pt;}
.y84{bottom:584.427067pt;}
.y56{bottom:587.227067pt;}
.y11c{bottom:589.867067pt;}
.y183{bottom:590.985227pt;}
.y131{bottom:592.267067pt;}
.y1eb{bottom:594.741493pt;}
.y27a{bottom:595.227067pt;}
.y1c1{bottom:596.027200pt;}
.y23e{bottom:598.027067pt;}
.y35{bottom:599.067067pt;}
.ybc{bottom:600.187067pt;}
.yb5{bottom:600.267067pt;}
.y5{bottom:601.760000pt;}
.y157{bottom:602.987067pt;}
.y83{bottom:603.067067pt;}
.y55{bottom:605.867067pt;}
.y182{bottom:606.269067pt;}
.yf9{bottom:606.347067pt;}
.y11b{bottom:608.587067pt;}
.y1ea{bottom:610.025333pt;}
.y1c0{bottom:611.307067pt;}
.y279{bottom:612.667200pt;}
.y23d{bottom:614.029467pt;}
.ybb{bottom:616.987067pt;}
.yb4{bottom:617.067067pt;}
.y34{bottom:617.787067pt;}
.y130{bottom:618.987067pt;}
.y181{bottom:621.540960pt;}
.y82{bottom:621.707067pt;}
.y4{bottom:624.160000pt;}
.y1e9{bottom:625.389333pt;}
.y1bf{bottom:627.307333pt;}
.y278{bottom:627.947067pt;}
.y23c{bottom:629.309333pt;}
.y54{bottom:632.668347pt;}
.yb3{bottom:633.867067pt;}
.yba{bottom:633.947067pt;}
.y11a{bottom:635.227067pt;}
.yf8{bottom:635.387067pt;}
.y33{bottom:636.427067pt;}
.y180{bottom:636.824800pt;}
.y1e8{bottom:640.665093pt;}
.y1be{bottom:642.587200pt;}
.y277{bottom:643.859360pt;}
.y23b{bottom:644.589067pt;}
.y12f{bottom:645.627067pt;}
.y3{bottom:646.560000pt;}
.y156{bottom:647.227067pt;}
.y155{bottom:647.307067pt;}
.y81{bottom:648.427067pt;}
.yb2{bottom:650.747067pt;}
.yb9{bottom:650.827067pt;}
.y17f{bottom:652.188800pt;}
.y53{bottom:652.667067pt;}
.y119{bottom:653.867067pt;}
.y32{bottom:655.067067pt;}
.y1e7{bottom:655.948933pt;}
.y1bd{bottom:657.867067pt;}
.y276{bottom:659.223360pt;}
.y23a{bottom:659.941120pt;}
.yf7{bottom:662.027067pt;}
.y154{bottom:665.707067pt;}
.y80{bottom:667.067067pt;}
.y17e{bottom:667.464560pt;}
.yb1{bottom:667.627067pt;}
.yb8{bottom:667.707067pt;}
.y1e6{bottom:671.216720pt;}
.y12e{bottom:672.267067pt;}
.y2{bottom:672.480000pt;}
.y118{bottom:672.587067pt;}
.y31{bottom:673.787067pt;}
.y1bc{bottom:673.863360pt;}
.y275{bottom:674.507200pt;}
.y239{bottom:675.224960pt;}
.y17d{bottom:682.748400pt;}
.y151{bottom:684.827067pt;}
.ya7{bottom:685.155227pt;}
.yb0{bottom:685.158160pt;}
.y153{bottom:685.387067pt;}
.y1e5{bottom:686.580720pt;}
.y52{bottom:688.427067pt;}
.yf6{bottom:688.667067pt;}
.y1bb{bottom:689.147200pt;}
.y274{bottom:689.787067pt;}
.y238{bottom:690.508800pt;}
.y117{bottom:691.227067pt;}
.y30{bottom:692.427067pt;}
.y7f{bottom:693.707067pt;}
.y17c{bottom:698.024267pt;}
.y12d{bottom:698.987067pt;}
.y1e4{bottom:701.864560pt;}
.ya6{bottom:702.035147pt;}
.yab{bottom:702.036613pt;}
.yaf{bottom:702.038080pt;}
.y14f{bottom:703.787067pt;}
.y150{bottom:703.867067pt;}
.y1ba{bottom:704.427067pt;}
.y273{bottom:705.775680pt;}
.y237{bottom:705.788533pt;}
.y51{bottom:707.067067pt;}
.yf5{bottom:707.387067pt;}
.y116{bottom:709.867067pt;}
.y2f{bottom:711.067067pt;}
.y7e{bottom:712.427067pt;}
.y221{bottom:712.827200pt;}
.y17b{bottom:713.388267pt;}
.y1e3{bottom:717.148400pt;}
.ya5{bottom:718.915067pt;}
.yaa{bottom:718.916533pt;}
.yae{bottom:718.918000pt;}
.y1b9{bottom:720.429600pt;}
.y272{bottom:721.059520pt;}
.y236{bottom:721.144560pt;}
.y152{bottom:722.187067pt;}
.y14e{bottom:722.267067pt;}
.y12c{bottom:725.627067pt;}
.yf4{bottom:726.027067pt;}
.y220{bottom:728.107067pt;}
.y17a{bottom:728.664027pt;}
.y2e{bottom:729.787067pt;}
.y1e2{bottom:732.412213pt;}
.y50{bottom:733.868347pt;}
.y1b8{bottom:735.685440pt;}
.ya4{bottom:735.707147pt;}
.ya9{bottom:735.708613pt;}
.yad{bottom:735.710080pt;}
.y271{bottom:736.343360pt;}
.y235{bottom:736.428400pt;}
.y115{bottom:736.587067pt;}
.y7d{bottom:739.067067pt;}
.y149{bottom:741.227067pt;}
.y14a{bottom:741.307067pt;}
.y14d{bottom:742.587067pt;}
.y179{bottom:743.947867pt;}
.y21f{bottom:744.019360pt;}
.y12b{bottom:744.267067pt;}
.yf3{bottom:744.667067pt;}
.y1e1{bottom:747.776213pt;}
.y2d{bottom:748.427067pt;}
.y1b7{bottom:750.969280pt;}
.y270{bottom:751.627200pt;}
.ya3{bottom:752.587067pt;}
.ya8{bottom:752.588533pt;}
.yac{bottom:752.590000pt;}
.y4f{bottom:753.867067pt;}
.y114{bottom:755.227067pt;}
.y7c{bottom:757.707067pt;}
.y178{bottom:759.223733pt;}
.y21e{bottom:759.383360pt;}
.y148{bottom:759.707067pt;}
.y14c{bottom:760.987200pt;}
.y12a{bottom:762.987067pt;}
.y1e0{bottom:763.060053pt;}
.yf2{bottom:763.387067pt;}
.y1b6{bottom:766.333280pt;}
.y26f{bottom:766.987200pt;}
.y234{bottom:766.988133pt;}
.y113{bottom:773.867067pt;}
.y177{bottom:774.587733pt;}
.y21d{bottom:774.667200pt;}
.y2c{bottom:775.067067pt;}
.y7b{bottom:776.427067pt;}
.y1df{bottom:778.343893pt;}
.y146{bottom:778.667200pt;}
.y1b5{bottom:781.617120pt;}
.y129{bottom:781.627067pt;}
.y233{bottom:782.348133pt;}
.y26e{bottom:782.907200pt;}
.y4e{bottom:789.627067pt;}
.y176{bottom:789.863627pt;}
.y21c{bottom:789.947067pt;}
.yf1{bottom:790.195147pt;}
.ya2{bottom:792.587067pt;}
.y1de{bottom:793.627733pt;}
.y1b4{bottom:796.900960pt;}
.y145{bottom:797.147200pt;}
.y232{bottom:797.627867pt;}
.y14b{bottom:797.787067pt;}
.y26d{bottom:798.187067pt;}
.y7a{bottom:803.067067pt;}
.y175{bottom:805.147467pt;}
.y21b{bottom:805.939520pt;}
.y4d{bottom:808.267067pt;}
.y1dd{bottom:808.987733pt;}
.yf0{bottom:810.107067pt;}
.ya1{bottom:811.227067pt;}
.y1b3{bottom:812.184800pt;}
.y231{bottom:812.907733pt;}
.y26c{bottom:814.187200pt;}
.y144{bottom:816.187067pt;}
.y174{bottom:820.427200pt;}
.y21a{bottom:821.223360pt;}
.y79{bottom:821.707067pt;}
.y1dc{bottom:824.263627pt;}
.y4c{bottom:826.987067pt;}
.y1b2{bottom:827.548800pt;}
.y230{bottom:828.183600pt;}
.y26b{bottom:829.467067pt;}
.y2b{bottom:829.707067pt;}
.ya0{bottom:829.867067pt;}
.y147{bottom:834.587067pt;}
.y143{bottom:834.667067pt;}
.y173{bottom:835.787200pt;}
.y219{bottom:836.507200pt;}
.y1db{bottom:839.547467pt;}
.y78{bottom:840.427067pt;}
.y1b1{bottom:842.800533pt;}
.y22f{bottom:843.547600pt;}
.y26a{bottom:845.467200pt;}
.yef{bottom:845.867067pt;}
.y112{bottom:848.587067pt;}
.y172{bottom:851.067067pt;}
.y218{bottom:851.787067pt;}
.y4b{bottom:853.627067pt;}
.y1da{bottom:854.827200pt;}
.y2a{bottom:856.347067pt;}
.y9f{bottom:856.587067pt;}
.y1b0{bottom:858.084373pt;}
.y22e{bottom:858.827333pt;}
.y77{bottom:859.067067pt;}
.y269{bottom:860.747067pt;}
.yee{bottom:864.587067pt;}
.y171{bottom:866.987200pt;}
.y111{bottom:867.227067pt;}
.y217{bottom:867.787200pt;}
.y1d9{bottom:870.187200pt;}
.y4a{bottom:872.267067pt;}
.y13f{bottom:872.667067pt;}
.y140{bottom:872.747067pt;}
.y1af{bottom:873.368213pt;}
.y142{bottom:873.387067pt;}
.y22d{bottom:874.107200pt;}
.y9e{bottom:875.227067pt;}
.y268{bottom:876.743360pt;}
.y76{bottom:877.707067pt;}
.y170{bottom:882.347200pt;}
.y29{bottom:883.067067pt;}
.yed{bottom:883.227067pt;}
.y1d8{bottom:885.467067pt;}
.y1ae{bottom:888.732213pt;}
.y22c{bottom:889.387067pt;}
.y49{bottom:890.987067pt;}
.y13e{bottom:891.147067pt;}
.y141{bottom:891.787067pt;}
.y267{bottom:892.027200pt;}
.y9d{bottom:893.867067pt;}
.y110{bottom:894.035147pt;}
.y16f{bottom:897.627067pt;}
.y216{bottom:899.063360pt;}
.y1d7{bottom:901.387467pt;}
.y28{bottom:901.467067pt;}
.y1ad{bottom:904.016053pt;}
.y75{bottom:904.427067pt;}
.y22b{bottom:905.387467pt;}
.y266{bottom:907.307067pt;}
.y48{bottom:909.627067pt;}
.yec{bottom:910.035147pt;}
.y13b{bottom:910.187067pt;}
.y13c{bottom:910.267067pt;}
.y16e{bottom:913.547200pt;}
.y10f{bottom:913.947067pt;}
.y215{bottom:914.347200pt;}
.y1d6{bottom:916.747333pt;}
.y128{bottom:917.795147pt;}
.y1ac{bottom:919.299893pt;}
.y27{bottom:919.867067pt;}
.y9c{bottom:920.587067pt;}
.y22a{bottom:920.667200pt;}
.y74{bottom:923.067067pt;}
.y265{bottom:923.291947pt;}
.y13d{bottom:928.587067pt;}
.y13a{bottom:928.667067pt;}
.y16d{bottom:928.903227pt;}
.y16c{bottom:928.907200pt;}
.y214{bottom:929.627067pt;}
.yeb{bottom:929.947067pt;}
.y1d5{bottom:932.027200pt;}
.y1ab{bottom:934.583733pt;}
.y229{bottom:935.947067pt;}
.y47{bottom:936.435147pt;}
.y127{bottom:937.707067pt;}
.y26{bottom:938.267067pt;}
.y264{bottom:938.575787pt;}
.y9b{bottom:939.227067pt;}
.y73{bottom:941.707067pt;}
.y16b{bottom:944.187067pt;}
.y213{bottom:945.627200pt;}
.y1d4{bottom:947.307067pt;}
.y139{bottom:947.627067pt;}
.y10e{bottom:949.707067pt;}
.y1aa{bottom:949.947733pt;}
.y227{bottom:951.947200pt;}
.y263{bottom:953.859627pt;}
.y46{bottom:956.347067pt;}
.y25{bottom:956.587067pt;}
.y9a{bottom:957.867067pt;}
.y212{bottom:960.907067pt;}
.y1d2{bottom:963.307333pt;}
.y1a9{bottom:965.211547pt;}
.y138{bottom:966.027067pt;}
.y228{bottom:967.223067pt;}
.y226{bottom:967.227067pt;}
.y72{bottom:968.427067pt;}
.y262{bottom:969.143467pt;}
.y126{bottom:973.947333pt;}
.y99{bottom:976.587067pt;}
.y16a{bottom:976.747067pt;}
.y211{bottom:976.903360pt;}
.y1d3{bottom:978.583227pt;}
.y1d1{bottom:978.587200pt;}
.y1a8{bottom:980.495387pt;}
.y225{bottom:982.587067pt;}
.y24{bottom:983.483227pt;}
.y261{bottom:984.507467pt;}
.y71{bottom:987.067067pt;}
.y210{bottom:992.187200pt;}
.y45{bottom:992.667067pt;}
.y1d0{bottom:993.867067pt;}
.y125{bottom:995.387067pt;}
.y1a7{bottom:995.779227pt;}
.y137{bottom:996.107067pt;}
.y260{bottom:999.783227pt;}
.y23{bottom:1003.395147pt;}
.y169{bottom:1004.427067pt;}
.y70{bottom:1005.707067pt;}
.y20f{bottom:1007.467067pt;}
.y1a6{bottom:1011.143227pt;}
.y224{bottom:1015.067067pt;}
.y44{bottom:1022.107067pt;}
.y136{bottom:1022.187067pt;}
.y22{bottom:1023.307067pt;}
.y6f{bottom:1024.427067pt;}
.y1a5{bottom:1026.427067pt;}
.y168{bottom:1060.587067pt;}
.y222{bottom:1060.667067pt;}
.y20{bottom:1063.067067pt;}
.y1{bottom:1108.800000pt;}
.h19{height:15.120000pt;}
.h1b{height:39.030469pt;}
.h15{height:44.388750pt;}
.h5{height:45.184000pt;}
.h7{height:53.086720pt;}
.h8{height:55.736250pt;}
.h16{height:57.020480pt;}
.h18{height:57.928960pt;}
.hc{height:61.076250pt;}
.he{height:61.398383pt;}
.h3{height:62.781250pt;}
.h9{height:66.750000pt;}
.h13{height:67.070000pt;}
.h4{height:67.776000pt;}
.ha{height:72.423750pt;}
.h11{height:73.828750pt;}
.hb{height:77.763750pt;}
.hf{height:89.110183pt;}
.h6{height:103.104000pt;}
.h17{height:118.139947pt;}
.h1a{height:118.460480pt;}
.hd{height:128.595930pt;}
.h14{height:140.030000pt;}
.h10{height:140.350000pt;}
.h12{height:140.670000pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:3.840000pt;}
.w2{width:793.241333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w3{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:37.760000pt;}
.x2{left:71.840000pt;}
.x44{left:80.400000pt;}
.x4{left:94.560000pt;}
.x23{left:100.080000pt;}
.x4a{left:105.280000pt;}
.x4f{left:107.360000pt;}
.x50{left:108.880400pt;}
.x6{left:111.272000pt;}
.x55{left:120.880533pt;}
.x24{left:122.960000pt;}
.x5a{left:125.919867pt;}
.xd{left:132.400000pt;}
.x5b{left:139.839333pt;}
.x38{left:141.440000pt;}
.x59{left:144.880400pt;}
.x11{left:156.160000pt;}
.x13{left:157.440000pt;}
.x4d{left:161.760000pt;}
.x7{left:163.282560pt;}
.x5{left:168.560000pt;}
.x47{left:212.960000pt;}
.x51{left:218.720933pt;}
.x61{left:220.480933pt;}
.x5c{left:221.761733pt;}
.x3c{left:223.760000pt;}
.xc{left:238.809200pt;}
.x42{left:261.446640pt;}
.x3d{left:279.761440pt;}
.x15{left:283.195253pt;}
.x14{left:290.559173pt;}
.x10{left:295.125040pt;}
.x16{left:296.239493pt;}
.x41{left:299.439733pt;}
.x25{left:305.600000pt;}
.x4e{left:308.080000pt;}
.x3f{left:312.485040pt;}
.x62{left:315.841867pt;}
.x52{left:320.401200pt;}
.x5d{left:323.442000pt;}
.x39{left:337.518160pt;}
.xf{left:338.472960pt;}
.xe{left:341.354720pt;}
.xa{left:346.639333pt;}
.x3a{left:348.159840pt;}
.x3e{left:350.086800pt;}
.x17{left:353.121120pt;}
.x26{left:355.920000pt;}
.x18{left:358.801440pt;}
.x30{left:360.000000pt;}
.x27{left:368.160000pt;}
.x12{left:371.283360pt;}
.x40{left:375.120000pt;}
.x3b{left:377.760000pt;}
.x9{left:380.320000pt;}
.x3{left:381.440000pt;}
.xb{left:384.720000pt;}
.x63{left:395.360667pt;}
.x5e{left:400.481067pt;}
.x8{left:401.600000pt;}
.x1a{left:405.762213pt;}
.x19{left:412.320933pt;}
.x28{left:413.520000pt;}
.x31{left:417.600000pt;}
.x29{left:421.680000pt;}
.x1c{left:453.355387pt;}
.x1b{left:456.239467pt;}
.x32{left:460.320000pt;}
.x2a{left:465.200000pt;}
.x43{left:472.160000pt;}
.x36{left:493.120000pt;}
.x35{left:502.480000pt;}
.x67{left:506.959333pt;}
.x1d{left:509.444160pt;}
.x37{left:513.440000pt;}
.x64{left:515.441600pt;}
.x56{left:516.560933pt;}
.x53{left:520.798533pt;}
.x2c{left:522.000000pt;}
.x1e{left:529.369200pt;}
.x48{left:531.680000pt;}
.x33{left:532.640000pt;}
.x45{left:534.800000pt;}
.x4b{left:536.160000pt;}
.x2b{left:557.520000pt;}
.x4c{left:601.040000pt;}
.x68{left:611.839333pt;}
.x57{left:620.401600pt;}
.x66{left:621.602800pt;}
.x46{left:629.360000pt;}
.x49{left:632.880000pt;}
.x65{left:634.002267pt;}
.x34{left:637.840000pt;}
.x69{left:638.878667pt;}
.x54{left:642.641733pt;}
.x58{left:644.481600pt;}
.x2d{left:646.000000pt;}
.x5f{left:647.521067pt;}
.x22{left:648.806667pt;}
.x20{left:651.280827pt;}
.x1f{left:655.760667pt;}
.x21{left:657.766347pt;}
.x2f{left:662.240000pt;}
.x2e{left:671.200000pt;}
.x60{left:709.200000pt;}
}


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