
/* 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_8a6355f68ecb.woff")format("woff");}.ff1{font-family:ff1;line-height:1.025000;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_5700eea74877.woff")format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_b11bebfef16c.woff")format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_2c416079bf0d.woff")format("woff");}.ff4{font-family:ff4;line-height:0.775000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_8853b8e4bf31.woff")format("woff");}.ff5{font-family:ff5;line-height:0.938040;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_5f34e7086d9a.woff")format("woff");}.ff6{font-family:ff6;line-height:1.015000;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_0add32625348.woff")format("woff");}.ff7{font-family:ff7;line-height:0.247000;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_dab13314301b.woff")format("woff");}.ff8{font-family:ff8;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_b9802eeaee9d.woff")format("woff");}.ff9{font-family:ff9;line-height:0.944000;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_a39b3da7e8fe.woff")format("woff");}.ffa{font-family:ffa;line-height:0.942068;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_61403df19598.woff")format("woff");}.ffb{font-family:ffb;line-height:1.112000;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_ad8847810f22.woff")format("woff");}.ffc{font-family:ffc;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_fba425f041c8.woff")format("woff");}.ffd{font-family:ffd;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_3c04639cc34d.woff")format("woff");}.ffe{font-family:ffe;line-height:0.385000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_a5e3e2571364.woff")format("woff");}.fff{font-family:fff;line-height:0.419000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_26ce00a5f80f.woff")format("woff");}.ff10{font-family:ff10;line-height:0.607000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_7dc735671672.woff")format("woff");}.ff11{font-family:ff11;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_f61de9f47cff.woff")format("woff");}.ff12{font-family:ff12;line-height:0.607000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_722d67532dc2.woff")format("woff");}.ff13{font-family:ff13;line-height:0.966000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_69e333ff49a8.woff")format("woff");}.ff14{font-family:ff14;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_beb8adb89ebd.woff")format("woff");}.ff15{font-family:ff15;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_f910464f8125.woff")format("woff");}.ff16{font-family:ff16;line-height:0.728000;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:ff17;src:url("fonts/font_0022_d17575495abd.woff")format("woff");}.ff17{font-family:ff17;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-23.910000px;}
.va{vertical-align:-20.298000px;}
.v4{vertical-align:-17.946000px;}
.v2{vertical-align:-10.134000px;}
.v9{vertical-align:-8.046000px;}
.v6{vertical-align:-6.324000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.952000px;}
.v8{vertical-align:17.946000px;}
.v3{vertical-align:23.946000px;}
.v1{vertical-align:39.678000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000016px;}
.lsf{letter-spacing:0.000180px;}
.ls23{letter-spacing:0.000319px;}
.ls6{letter-spacing:1.962000px;}
.ls5{letter-spacing:2.022000px;}
.ls17{letter-spacing:2.982060px;}
.ls25{letter-spacing:2.983440px;}
.ls12{letter-spacing:2.988000px;}
.ls9{letter-spacing:2.988060px;}
.ls26{letter-spacing:2.989440px;}
.ls27{letter-spacing:2.990400px;}
.ls19{letter-spacing:2.994000px;}
.ls4{letter-spacing:7.962000px;}
.ls2e{letter-spacing:10.215000px;}
.lsa{letter-spacing:12.254400px;}
.ls29{letter-spacing:13.460400px;}
.lse{letter-spacing:13.534200px;}
.lsb{letter-spacing:13.608000px;}
.ls16{letter-spacing:13.866000px;}
.ls2b{letter-spacing:13.934400px;}
.ls21{letter-spacing:15.246000px;}
.ls2a{letter-spacing:15.662400px;}
.ls2{letter-spacing:16.198560px;}
.ls28{letter-spacing:16.296000px;}
.ls10{letter-spacing:16.524000px;}
.ls1f{letter-spacing:16.681286px;}
.ls7{letter-spacing:17.250000px;}
.lsc{letter-spacing:18.082200px;}
.ls11{letter-spacing:19.542000px;}
.ls1d{letter-spacing:19.602000px;}
.ls1a{letter-spacing:19.728000px;}
.ls1b{letter-spacing:22.032000px;}
.lsd{letter-spacing:23.256000px;}
.ls15{letter-spacing:23.844000px;}
.ls24{letter-spacing:25.224000px;}
.ls2d{letter-spacing:26.136000px;}
.ls1c{letter-spacing:26.808000px;}
.ls2c{letter-spacing:27.018000px;}
.ls18{letter-spacing:27.114000px;}
.ls1e{letter-spacing:28.230000px;}
.ls8{letter-spacing:32.874000px;}
.ls13{letter-spacing:40.790400px;}
.ls14{letter-spacing:42.642000px;}
.ls3{letter-spacing:102.988500px;}
.ls20{letter-spacing:149.286000px;}
.ls22{letter-spacing:222.432000px;}
.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;}
}
.ws5c{word-spacing:-24.516000px;}
.ws3{word-spacing:-16.980000px;}
.ws8{word-spacing:-16.200000px;}
.ws2{word-spacing:-15.282000px;}
.ws0{word-spacing:-12.735000px;}
.ws18{word-spacing:-12.258000px;}
.wsfe{word-spacing:-10.944000px;}
.ws141{word-spacing:-10.215000px;}
.wse9{word-spacing:-8.580600px;}
.wsc8{word-spacing:-3.240000px;}
.wse3{word-spacing:-3.228000px;}
.wsf9{word-spacing:-2.940000px;}
.ws3e{word-spacing:-2.862000px;}
.wsd7{word-spacing:-2.700000px;}
.wsb0{word-spacing:-2.592000px;}
.wsd{word-spacing:-2.484000px;}
.ws13e{word-spacing:-2.340000px;}
.ws157{word-spacing:-2.295000px;}
.ws72{word-spacing:-2.268000px;}
.ws107{word-spacing:-2.214000px;}
.wsb6{word-spacing:-2.160000px;}
.ws124{word-spacing:-2.115000px;}
.ws12a{word-spacing:-2.070000px;}
.ws84{word-spacing:-2.052000px;}
.ws85{word-spacing:-1.998000px;}
.ws9a{word-spacing:-1.944000px;}
.ws47{word-spacing:-1.890000px;}
.ws8c{word-spacing:-1.836000px;}
.ws132{word-spacing:-1.800000px;}
.ws15b{word-spacing:-1.710000px;}
.wsb3{word-spacing:-1.674000px;}
.wsbc{word-spacing:-1.632000px;}
.ws54{word-spacing:-1.620000px;}
.ws4d{word-spacing:-1.566000px;}
.ws1a{word-spacing:-1.512000px;}
.ws121{word-spacing:-1.485000px;}
.ws1e{word-spacing:-1.458000px;}
.ws120{word-spacing:-1.440000px;}
.ws46{word-spacing:-1.404000px;}
.ws86{word-spacing:-1.350000px;}
.ws8a{word-spacing:-1.296000px;}
.wsc9{word-spacing:-1.242000px;}
.ws40{word-spacing:-1.080000px;}
.ws2a{word-spacing:-1.026000px;}
.wsd6{word-spacing:-0.972000px;}
.ws12c{word-spacing:-0.945000px;}
.wsa6{word-spacing:-0.918000px;}
.ws6b{word-spacing:-0.864000px;}
.ws148{word-spacing:-0.855000px;}
.wsaf{word-spacing:-0.810000px;}
.ws15f{word-spacing:-0.765000px;}
.ws9f{word-spacing:-0.648000px;}
.ws156{word-spacing:-0.630000px;}
.ws57{word-spacing:-0.594000px;}
.ws165{word-spacing:-0.585000px;}
.ws3f{word-spacing:-0.540000px;}
.ws123{word-spacing:-0.495000px;}
.ws12{word-spacing:-0.486000px;}
.ws109{word-spacing:-0.480000px;}
.ws77{word-spacing:-0.432000px;}
.wsf1{word-spacing:-0.378000px;}
.ws64{word-spacing:-0.270000px;}
.ws11a{word-spacing:-0.162000px;}
.ws152{word-spacing:-0.135000px;}
.ws7e{word-spacing:-0.108000px;}
.ws49{word-spacing:-0.054000px;}
.ws5b{word-spacing:-0.053798px;}
.ws3d{word-spacing:-0.048000px;}
.ws11e{word-spacing:-0.045000px;}
.wsb{word-spacing:-0.030000px;}
.ws135{word-spacing:-0.006000px;}
.ws12b{word-spacing:-0.003000px;}
.ws4{word-spacing:0.000000px;}
.ws129{word-spacing:0.045000px;}
.wsae{word-spacing:0.054000px;}
.wsb9{word-spacing:0.162000px;}
.ws83{word-spacing:0.216000px;}
.ws7c{word-spacing:0.270000px;}
.wsfb{word-spacing:0.288000px;}
.wsaa{word-spacing:0.324000px;}
.ws169{word-spacing:0.495000px;}
.wsf4{word-spacing:0.540000px;}
.wsd4{word-spacing:0.594000px;}
.ws9d{word-spacing:0.648000px;}
.ws15a{word-spacing:0.765000px;}
.ws134{word-spacing:0.855000px;}
.ws118{word-spacing:0.918000px;}
.ws5e{word-spacing:0.972000px;}
.ws14{word-spacing:1.026000px;}
.ws37{word-spacing:1.080000px;}
.ws111{word-spacing:1.134000px;}
.ws164{word-spacing:1.170000px;}
.wsf{word-spacing:1.242000px;}
.ws75{word-spacing:1.254000px;}
.ws76{word-spacing:1.296000px;}
.ws13{word-spacing:1.350000px;}
.ws8b{word-spacing:1.404000px;}
.ws43{word-spacing:1.458000px;}
.ws13b{word-spacing:1.485000px;}
.ws87{word-spacing:1.512000px;}
.ws102{word-spacing:1.620000px;}
.ws55{word-spacing:1.674000px;}
.wse8{word-spacing:1.721542px;}
.wsc6{word-spacing:1.728000px;}
.ws145{word-spacing:1.755000px;}
.ws8d{word-spacing:1.782000px;}
.wsff{word-spacing:1.836000px;}
.wsbb{word-spacing:1.872000px;}
.ws25{word-spacing:1.998000px;}
.ws150{word-spacing:2.025000px;}
.wscd{word-spacing:2.052000px;}
.ws13f{word-spacing:2.070000px;}
.ws6c{word-spacing:2.106000px;}
.ws14b{word-spacing:2.115000px;}
.ws9c{word-spacing:2.160000px;}
.ws65{word-spacing:2.214000px;}
.ws133{word-spacing:2.250000px;}
.ws11{word-spacing:2.268000px;}
.ws104{word-spacing:2.322000px;}
.ws89{word-spacing:2.430000px;}
.ws3a{word-spacing:2.538000px;}
.wsd5{word-spacing:2.592000px;}
.ws60{word-spacing:2.700000px;}
.ws130{word-spacing:2.745000px;}
.ws9e{word-spacing:2.754000px;}
.wse7{word-spacing:2.773595px;}
.wsac{word-spacing:2.808000px;}
.wsbf{word-spacing:2.862000px;}
.wsb4{word-spacing:2.916000px;}
.ws30{word-spacing:2.970000px;}
.wsdb{word-spacing:3.024000px;}
.ws48{word-spacing:3.132000px;}
.ws103{word-spacing:3.186000px;}
.ws11d{word-spacing:3.240000px;}
.ws53{word-spacing:3.348000px;}
.wsd3{word-spacing:3.402000px;}
.ws39{word-spacing:3.456000px;}
.wsd1{word-spacing:3.510000px;}
.ws6f{word-spacing:3.564000px;}
.wsa2{word-spacing:3.672000px;}
.ws7f{word-spacing:3.726000px;}
.ws16{word-spacing:3.780000px;}
.ws146{word-spacing:3.825000px;}
.ws4c{word-spacing:3.834000px;}
.ws1d{word-spacing:3.888000px;}
.wscc{word-spacing:3.942000px;}
.ws56{word-spacing:3.996000px;}
.wsf0{word-spacing:4.088400px;}
.wsa5{word-spacing:4.104000px;}
.ws42{word-spacing:4.158000px;}
.ws14a{word-spacing:4.185000px;}
.ws81{word-spacing:4.212000px;}
.ws5f{word-spacing:4.320000px;}
.wsa1{word-spacing:4.374000px;}
.wsb2{word-spacing:4.428000px;}
.ws158{word-spacing:4.455000px;}
.wsa7{word-spacing:4.482000px;}
.ws82{word-spacing:4.536000px;}
.ws36{word-spacing:4.590000px;}
.wsbe{word-spacing:4.644000px;}
.ws137{word-spacing:4.725000px;}
.ws51{word-spacing:4.752000px;}
.ws17{word-spacing:4.806000px;}
.wse{word-spacing:4.860000px;}
.ws13a{word-spacing:4.905000px;}
.wscb{word-spacing:4.914000px;}
.ws50{word-spacing:4.968000px;}
.ws80{word-spacing:5.022000px;}
.ws151{word-spacing:5.085000px;}
.ws22{word-spacing:5.130000px;}
.ws10b{word-spacing:5.136000px;}
.ws24{word-spacing:5.184000px;}
.ws122{word-spacing:5.265000px;}
.ws63{word-spacing:5.292000px;}
.ws19{word-spacing:5.295600px;}
.ws7d{word-spacing:5.400000px;}
.wsd2{word-spacing:5.454000px;}
.ws10{word-spacing:5.508000px;}
.ws62{word-spacing:5.562000px;}
.ws136{word-spacing:5.574000px;}
.ws12e{word-spacing:5.580000px;}
.wsa0{word-spacing:5.616000px;}
.ws7b{word-spacing:5.670000px;}
.ws41{word-spacing:5.709600px;}
.ws159{word-spacing:5.712000px;}
.ws128{word-spacing:5.715000px;}
.wsa3{word-spacing:5.724000px;}
.ws2b{word-spacing:5.757600px;}
.ws127{word-spacing:5.760000px;}
.ws74{word-spacing:5.778000px;}
.ws59{word-spacing:5.820000px;}
.ws5a{word-spacing:5.832000px;}
.ws6e{word-spacing:5.886000px;}
.wsb5{word-spacing:5.940000px;}
.ws4f{word-spacing:5.994000px;}
.ws20{word-spacing:6.156000px;}
.ws138{word-spacing:6.165000px;}
.wsc5{word-spacing:6.210000px;}
.wsd0{word-spacing:6.264000px;}
.ws79{word-spacing:6.318000px;}
.wsb7{word-spacing:6.372000px;}
.ws61{word-spacing:6.426000px;}
.wsb1{word-spacing:6.480000px;}
.ws33{word-spacing:6.534000px;}
.ws119{word-spacing:6.588000px;}
.ws73{word-spacing:6.642000px;}
.wsd8{word-spacing:6.750000px;}
.ws4b{word-spacing:6.753600px;}
.ws4a{word-spacing:6.759600px;}
.wse4{word-spacing:6.804000px;}
.ws162{word-spacing:6.840000px;}
.wsdd{word-spacing:6.858000px;}
.ws154{word-spacing:6.885000px;}
.ws2d{word-spacing:6.912000px;}
.ws153{word-spacing:6.930000px;}
.ws1b{word-spacing:6.966000px;}
.ws167{word-spacing:6.972000px;}
.ws166{word-spacing:6.975000px;}
.ws10f{word-spacing:7.020000px;}
.ws8f{word-spacing:7.074000px;}
.wsf5{word-spacing:7.128000px;}
.ws131{word-spacing:7.155000px;}
.ws2e{word-spacing:7.182000px;}
.ws88{word-spacing:7.236000px;}
.ws78{word-spacing:7.290000px;}
.ws6d{word-spacing:7.344000px;}
.ws26{word-spacing:7.398000px;}
.ws144{word-spacing:7.470000px;}
.wsee{word-spacing:7.560000px;}
.ws52{word-spacing:7.614000px;}
.ws14e{word-spacing:7.620000px;}
.ws14d{word-spacing:7.650000px;}
.ws66{word-spacing:7.668000px;}
.ws8e{word-spacing:7.722000px;}
.ws147{word-spacing:7.740000px;}
.wsc0{word-spacing:7.776000px;}
.ws101{word-spacing:7.851600px;}
.ws5d{word-spacing:7.884000px;}
.ws71{word-spacing:7.992000px;}
.ws2c{word-spacing:8.067600px;}
.ws163{word-spacing:8.082000px;}
.wsef{word-spacing:8.100000px;}
.ws125{word-spacing:8.145000px;}
.wsa4{word-spacing:8.154000px;}
.wsc7{word-spacing:8.262000px;}
.ws13c{word-spacing:8.280000px;}
.wsb8{word-spacing:8.316000px;}
.ws11f{word-spacing:8.415000px;}
.wsa9{word-spacing:8.424000px;}
.wsdc{word-spacing:8.460000px;}
.ws21{word-spacing:8.478000px;}
.ws155{word-spacing:8.550000px;}
.wsab{word-spacing:8.586000px;}
.ws161{word-spacing:8.595000px;}
.ws4e{word-spacing:8.640000px;}
.ws7a{word-spacing:8.694000px;}
.ws99{word-spacing:8.748000px;}
.wsc2{word-spacing:8.856000px;}
.ws112{word-spacing:8.910000px;}
.ws126{word-spacing:9.000000px;}
.wse2{word-spacing:9.018000px;}
.ws15d{word-spacing:9.036000px;}
.ws15c{word-spacing:9.045000px;}
.ws44{word-spacing:9.072000px;}
.ws106{word-spacing:9.087600px;}
.ws1f{word-spacing:9.126000px;}
.ws58{word-spacing:9.180000px;}
.wsce{word-spacing:9.342000px;}
.ws27{word-spacing:9.396000px;}
.ws139{word-spacing:9.405000px;}
.ws10c{word-spacing:9.552000px;}
.ws90{word-spacing:9.558000px;}
.ws2f{word-spacing:9.720000px;}
.wsf2{word-spacing:9.828000px;}
.ws70{word-spacing:9.882000px;}
.wsf6{word-spacing:9.990000px;}
.wsc4{word-spacing:10.044000px;}
.ws3c{word-spacing:10.098000px;}
.wsd9{word-spacing:10.152000px;}
.ws110{word-spacing:10.179600px;}
.wsa8{word-spacing:10.260000px;}
.ws31{word-spacing:10.314000px;}
.ws108{word-spacing:10.416000px;}
.ws35{word-spacing:10.476000px;}
.ws1c{word-spacing:10.584000px;}
.ws10e{word-spacing:10.638000px;}
.ws23{word-spacing:10.800000px;}
.ws117{word-spacing:10.854000px;}
.ws116{word-spacing:10.908000px;}
.ws68{word-spacing:10.962000px;}
.ws69{word-spacing:11.016000px;}
.wsfa{word-spacing:11.184000px;}
.ws38{word-spacing:11.286000px;}
.ws67{word-spacing:11.340000px;}
.ws11b{word-spacing:11.394000px;}
.wsf8{word-spacing:11.424000px;}
.wsde{word-spacing:11.448000px;}
.ws28{word-spacing:11.502000px;}
.wsdf{word-spacing:11.556000px;}
.ws12f{word-spacing:11.655000px;}
.wse5{word-spacing:11.718000px;}
.ws115{word-spacing:11.772000px;}
.wscf{word-spacing:11.880000px;}
.ws114{word-spacing:12.096000px;}
.ws13d{word-spacing:12.240000px;}
.wsca{word-spacing:12.258000px;}
.wsa{word-spacing:12.288000px;}
.ws15{word-spacing:12.312000px;}
.wse1{word-spacing:12.462000px;}
.ws140{word-spacing:12.510000px;}
.ws143{word-spacing:12.555000px;}
.ws113{word-spacing:12.639600px;}
.wsba{word-spacing:12.768000px;}
.wsfd{word-spacing:12.864000px;}
.ws32{word-spacing:12.906000px;}
.wse0{word-spacing:12.960000px;}
.ws12d{word-spacing:13.140000px;}
.ws34{word-spacing:13.344000px;}
.wse6{word-spacing:13.628871px;}
.wsda{word-spacing:13.920000px;}
.ws3b{word-spacing:14.013600px;}
.wsc1{word-spacing:14.202000px;}
.wsc{word-spacing:14.298359px;}
.ws6a{word-spacing:14.472000px;}
.wsad{word-spacing:15.282000px;}
.ws92{word-spacing:15.552000px;}
.wsbd{word-spacing:15.648000px;}
.wsc3{word-spacing:15.690000px;}
.ws100{word-spacing:15.864000px;}
.ws45{word-spacing:15.866400px;}
.ws10a{word-spacing:16.032000px;}
.ws7{word-spacing:16.146000px;}
.ws14f{word-spacing:16.200000px;}
.ws95{word-spacing:16.416000px;}
.wsf3{word-spacing:16.635600px;}
.ws14c{word-spacing:16.695000px;}
.ws97{word-spacing:17.010000px;}
.ws94{word-spacing:17.982000px;}
.ws11c{word-spacing:18.036000px;}
.ws142{word-spacing:18.315000px;}
.ws29{word-spacing:18.321600px;}
.ws149{word-spacing:18.720000px;}
.ws98{word-spacing:20.250000px;}
.ws168{word-spacing:20.295000px;}
.ws10d{word-spacing:20.424000px;}
.ws105{word-spacing:20.832000px;}
.wsf7{word-spacing:22.320000px;}
.ws9b{word-spacing:22.410000px;}
.wsfc{word-spacing:23.760000px;}
.ws160{word-spacing:23.895000px;}
.ws96{word-spacing:25.650000px;}
.ws93{word-spacing:27.378000px;}
.ws91{word-spacing:28.512000px;}
.ws15e{word-spacing:34.920000px;}
.ws6{word-spacing:35.880000px;}
.ws9{word-spacing:102.957000px;}
.wsea{word-spacing:106.110000px;}
.wseb{word-spacing:117.774000px;}
.wsec{word-spacing:194.262000px;}
.ws5{word-spacing:197.202000px;}
.wsed{word-spacing:210.084000px;}
.ws1{word-spacing:914.979115px;}
._3{margin-left:-6.000000px;}
._12{margin-left:-4.428000px;}
._7{margin-left:-2.880000px;}
._a{margin-left:-1.584000px;}
._0{width:1.962000px;}
._5{width:2.988000px;}
._11{width:7.926000px;}
._9{width:8.940000px;}
._13{width:9.954000px;}
._14{width:11.016000px;}
._6{width:12.528981px;}
._b{width:19.062000px;}
._4{width:22.194000px;}
._1{width:59.999986px;}
._d{width:118.368000px;}
._e{width:153.468000px;}
._10{width:161.676000px;}
._f{width:169.908000px;}
._c{width:478.254000px;}
._2{width:1335.099966px;}
._8{width:1858.206000px;}
.fc4{color:rgb(83,172,228);}
.fc3{color:rgb(73,73,81);}
.fc1{color:rgb(0,174,239);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.000000px;}
.fs7{font-size:31.500000px;}
.fse{font-size:33.600000px;}
.fsd{font-size:35.865600px;}
.fsa{font-size:37.200000px;}
.fsb{font-size:37.800000px;}
.fs0{font-size:45.000000px;}
.fs9{font-size:47.820600px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:53.798400px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:62.466000px;}
.fsc{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:60.739471px;}
.y52{bottom:62.938500px;}
.y51{bottom:82.204500px;}
.y1{bottom:86.239471px;}
.y1ec{bottom:149.151000px;}
.y107{bottom:152.497500px;}
.y1ab{bottom:152.683500px;}
.y84{bottom:152.760000px;}
.y50{bottom:154.018500px;}
.y3d{bottom:154.077000px;}
.y224{bottom:154.599000px;}
.y14f{bottom:155.460000px;}
.y16b{bottom:157.776000px;}
.y14d{bottom:163.746000px;}
.y223{bottom:164.518500px;}
.y1aa{bottom:166.183500px;}
.y1eb{bottom:167.725500px;}
.y106{bottom:168.247500px;}
.y83{bottom:168.510000px;}
.y14e{bottom:168.960000px;}
.y4f{bottom:169.768500px;}
.y3c{bottom:169.827000px;}
.y16a{bottom:171.276000px;}
.y1ea{bottom:177.645000px;}
.y14c{bottom:180.637500px;}
.y222{bottom:183.093000px;}
.y12c{bottom:183.997500px;}
.y82{bottom:184.260000px;}
.y1a9{bottom:184.758000px;}
.y169{bottom:184.776000px;}
.y4e{bottom:185.518500px;}
.y3b{bottom:185.577000px;}
.y105{bottom:190.722000px;}
.y221{bottom:193.012500px;}
.y1a8{bottom:194.677500px;}
.y1e9{bottom:196.219500px;}
.y14b{bottom:197.529000px;}
.y12b{bottom:199.747500px;}
.y81{bottom:200.010000px;}
.y4d{bottom:201.268500px;}
.y3a{bottom:201.327000px;}
.y1e8{bottom:206.139000px;}
.y1a7{bottom:208.177500px;}
.y220{bottom:211.587000px;}
.y104{bottom:214.689000px;}
.y12a{bottom:215.497500px;}
.y80{bottom:215.760000px;}
.y4c{bottom:217.018500px;}
.y39{bottom:217.077000px;}
.y21f{bottom:221.508000px;}
.y1e7{bottom:224.715000px;}
.y14a{bottom:226.525500px;}
.y1a6{bottom:226.752000px;}
.y129{bottom:231.247500px;}
.y7f{bottom:231.510000px;}
.y4b{bottom:232.768500px;}
.y38{bottom:232.827000px;}
.y1e6{bottom:234.634500px;}
.y21e{bottom:235.008000px;}
.y1a5{bottom:236.671500px;}
.y149{bottom:243.417000px;}
.y128{bottom:246.997500px;}
.y7e{bottom:247.260000px;}
.y4a{bottom:248.518500px;}
.y37{bottom:248.577000px;}
.y1e5{bottom:253.209000px;}
.y21d{bottom:253.582500px;}
.y1a4{bottom:255.246000px;}
.y127{bottom:262.747500px;}
.y7d{bottom:263.010000px;}
.y1e4{bottom:263.128500px;}
.y21c{bottom:263.502000px;}
.y103{bottom:264.229500px;}
.y49{bottom:264.268500px;}
.y36{bottom:264.327000px;}
.y1a3{bottom:265.167000px;}
.y148{bottom:272.491500px;}
.y1e3{bottom:276.628500px;}
.y21b{bottom:277.002000px;}
.y126{bottom:278.497500px;}
.y7c{bottom:278.760000px;}
.y102{bottom:279.979500px;}
.y48{bottom:280.018500px;}
.y35{bottom:280.077000px;}
.y1a2{bottom:283.741500px;}
.yad{bottom:285.186000px;}
.y147{bottom:285.991500px;}
.y125{bottom:294.247500px;}
.yd4{bottom:294.510000px;}
.y1e2{bottom:295.203000px;}
.y21a{bottom:295.576500px;}
.y101{bottom:295.729500px;}
.y47{bottom:295.768500px;}
.y34{bottom:295.827000px;}
.y1a1{bottom:298.735500px;}
.y146{bottom:299.491500px;}
.y7b{bottom:300.936000px;}
.y219{bottom:305.496000px;}
.y1a0{bottom:308.655000px;}
.yac{bottom:309.153000px;}
.y124{bottom:309.997500px;}
.y1e1{bottom:310.197000px;}
.yd3{bottom:310.260000px;}
.y46{bottom:311.518500px;}
.y33{bottom:311.577000px;}
.y1e0{bottom:320.116500px;}
.y218{bottom:324.070500px;}
.y7a{bottom:324.903000px;}
.y123{bottom:325.747500px;}
.yd2{bottom:326.010000px;}
.y19f{bottom:327.229500px;}
.y45{bottom:327.268500px;}
.y32{bottom:327.327000px;}
.y217{bottom:334.363500px;}
.y19e{bottom:337.149000px;}
.y1df{bottom:338.691000px;}
.y122{bottom:341.497500px;}
.yd1{bottom:341.760000px;}
.y44{bottom:343.018500px;}
.y31{bottom:343.077000px;}
.y100{bottom:347.169000px;}
.y1de{bottom:348.612000px;}
.yab{bottom:350.214000px;}
.y216{bottom:352.938000px;}
.y19d{bottom:355.723500px;}
.y180{bottom:357.247500px;}
.yd0{bottom:357.510000px;}
.y43{bottom:358.768500px;}
.y30{bottom:358.827000px;}
.yff{bottom:360.669000px;}
.y215{bottom:363.232500px;}
.y121{bottom:363.972000px;}
.y19c{bottom:365.644500px;}
.yaa{bottom:365.964000px;}
.y79{bottom:366.477000px;}
.y1dd{bottom:367.186500px;}
.y145{bottom:368.488500px;}
.ycf{bottom:373.260000px;}
.y42{bottom:374.518500px;}
.y2f{bottom:374.577000px;}
.y1dc{bottom:377.106000px;}
.y19b{bottom:379.144500px;}
.y17f{bottom:379.722000px;}
.ya9{bottom:381.714000px;}
.y214{bottom:381.807000px;}
.y78{bottom:382.227000px;}
.y144{bottom:384.238500px;}
.yfc{bottom:389.010000px;}
.y41{bottom:390.268500px;}
.y2e{bottom:390.327000px;}
.y213{bottom:392.100000px;}
.y1db{bottom:395.680500px;}
.yce{bottom:395.736000px;}
.ya8{bottom:397.464000px;}
.y19a{bottom:397.719000px;}
.y77{bottom:397.977000px;}
.y143{bottom:399.988500px;}
.y120{bottom:403.215000px;}
.yfb{bottom:404.760000px;}
.y212{bottom:405.600000px;}
.y40{bottom:406.018500px;}
.y2d{bottom:406.077000px;}
.y199{bottom:407.638500px;}
.y1da{bottom:410.674500px;}
.ya7{bottom:413.214000px;}
.y76{bottom:413.727000px;}
.y142{bottom:415.738500px;}
.y11f{bottom:418.965000px;}
.yfa{bottom:420.510000px;}
.y1d9{bottom:420.594000px;}
.y3f{bottom:421.768500px;}
.y211{bottom:424.174500px;}
.y198{bottom:426.213000px;}
.ycd{bottom:427.984500px;}
.ya6{bottom:428.964000px;}
.y75{bottom:429.477000px;}
.y17e{bottom:429.567000px;}
.y141{bottom:431.488500px;}
.y210{bottom:434.094000px;}
.y11e{bottom:434.715000px;}
.y197{bottom:436.132500px;}
.yf9{bottom:436.260000px;}
.y2c{bottom:437.517000px;}
.y3e{bottom:437.518500px;}
.y1d8{bottom:439.168500px;}
.ycc{bottom:443.734500px;}
.ya5{bottom:444.714000px;}
.y17d{bottom:445.317000px;}
.y140{bottom:447.238500px;}
.y1d7{bottom:449.089500px;}
.y11d{bottom:450.465000px;}
.y74{bottom:451.951500px;}
.yf8{bottom:452.010000px;}
.y20f{bottom:452.668500px;}
.y196{bottom:454.707000px;}
.ycb{bottom:459.484500px;}
.ya4{bottom:460.464000px;}
.y17c{bottom:461.067000px;}
.y20e{bottom:462.588000px;}
.y13f{bottom:462.988500px;}
.y195{bottom:464.626500px;}
.y11c{bottom:466.215000px;}
.y1d6{bottom:467.664000px;}
.yf7{bottom:467.760000px;}
.y168{bottom:474.909000px;}
.yca{bottom:475.234500px;}
.ya3{bottom:476.214000px;}
.y17b{bottom:476.817000px;}
.y1d5{bottom:477.583500px;}
.y194{bottom:478.126500px;}
.y13e{bottom:478.738500px;}
.y11{bottom:480.314996px;}
.y20d{bottom:481.162500px;}
.y11b{bottom:481.965000px;}
.y153{bottom:483.031500px;}
.yf6{bottom:483.510000px;}
.y167{bottom:490.659000px;}
.yc9{bottom:490.984500px;}
.y1d4{bottom:491.083500px;}
.ya2{bottom:491.964000px;}
.y17a{bottom:492.567000px;}
.y13d{bottom:494.488500px;}
.y193{bottom:496.701000px;}
.y11a{bottom:497.715000px;}
.y2b{bottom:497.793000px;}
.y152{bottom:498.102000px;}
.yf5{bottom:499.260000px;}
.y2a{bottom:500.781000px;}
.y73{bottom:501.745500px;}
.y10{bottom:502.064996px;}
.y166{bottom:506.409000px;}
.yc8{bottom:506.734500px;}
.ya1{bottom:507.714000px;}
.y179{bottom:508.317000px;}
.y1d3{bottom:509.658000px;}
.y13c{bottom:510.238500px;}
.y192{bottom:511.696500px;}
.y119{bottom:513.465000px;}
.yf4{bottom:515.010000px;}
.y72{bottom:517.495500px;}
.y1d2{bottom:519.577500px;}
.y191{bottom:521.616000px;}
.y165{bottom:522.159000px;}
.yc7{bottom:522.484500px;}
.ya0{bottom:523.464000px;}
.y178{bottom:524.067000px;}
.y29{bottom:524.611500px;}
.y13b{bottom:525.988500px;}
.y118{bottom:529.215000px;}
.yf3{bottom:530.760000px;}
.y20c{bottom:533.077500px;}
.y71{bottom:533.245500px;}
.y190{bottom:535.116000px;}
.y164{bottom:537.909000px;}
.y1d1{bottom:538.152000px;}
.yc6{bottom:538.234500px;}
.y9f{bottom:539.214000px;}
.yf{bottom:539.564996px;}
.y177{bottom:539.817000px;}
.y28{bottom:540.361500px;}
.y13a{bottom:541.738500px;}
.y117{bottom:544.965000px;}
.yf2{bottom:546.510000px;}
.y70{bottom:548.995500px;}
.y20b{bottom:551.652000px;}
.y1d0{bottom:553.146000px;}
.y163{bottom:553.659000px;}
.y18f{bottom:553.690500px;}
.y176{bottom:555.567000px;}
.y27{bottom:556.111500px;}
.y139{bottom:557.488500px;}
.yc5{bottom:560.709000px;}
.y116{bottom:560.715000px;}
.ye{bottom:561.314996px;}
.y9e{bottom:561.390000px;}
.yf1{bottom:562.260000px;}
.y1cf{bottom:563.067000px;}
.y6f{bottom:564.745500px;}
.y20a{bottom:566.646000px;}
.y18e{bottom:568.684500px;}
.y162{bottom:569.409000px;}
.y175{bottom:571.317000px;}
.y26{bottom:571.861500px;}
.y138{bottom:573.238500px;}
.y115{bottom:576.465000px;}
.y209{bottom:576.565500px;}
.y1ce{bottom:576.567000px;}
.y6e{bottom:580.495500px;}
.yd{bottom:580.814996px;}
.y1cd{bottom:581.641500px;}
.y18d{bottom:583.678500px;}
.yf0{bottom:584.734500px;}
.y161{bottom:585.159000px;}
.y174{bottom:587.067000px;}
.y25{bottom:587.611500px;}
.y137{bottom:588.988500px;}
.y9d{bottom:589.512000px;}
.y1cc{bottom:591.561000px;}
.y114{bottom:592.215000px;}
.y208{bottom:595.140000px;}
.y160{bottom:600.909000px;}
.y18c{bottom:601.071000px;}
.y173{bottom:602.817000px;}
.y24{bottom:603.361500px;}
.y6d{bottom:604.405500px;}
.y136{bottom:604.738500px;}
.y207{bottom:605.061000px;}
.y9c{bottom:605.262000px;}
.y113{bottom:607.965000px;}
.y1cb{bottom:610.135500px;}
.yc4{bottom:610.144500px;}
.y15f{bottom:616.659000px;}
.yef{bottom:616.990500px;}
.yc{bottom:618.314996px;}
.y172{bottom:618.567000px;}
.y23{bottom:619.111500px;}
.y1ca{bottom:620.055000px;}
.y6c{bottom:620.155500px;}
.y135{bottom:620.488500px;}
.y9b{bottom:621.012000px;}
.y206{bottom:623.635500px;}
.y112{bottom:623.715000px;}
.yc3{bottom:625.894500px;}
.y15e{bottom:632.409000px;}
.yee{bottom:632.740500px;}
.y171{bottom:634.317000px;}
.y22{bottom:634.861500px;}
.y6b{bottom:635.905500px;}
.y134{bottom:636.238500px;}
.y9a{bottom:636.762000px;}
.y1c9{bottom:638.629500px;}
.y111{bottom:639.465000px;}
.y18b{bottom:639.679500px;}
.yb{bottom:640.064996px;}
.yc2{bottom:641.644500px;}
.y15d{bottom:648.159000px;}
.yed{bottom:648.490500px;}
.y170{bottom:650.067000px;}
.y21{bottom:650.611500px;}
.y133{bottom:651.988500px;}
.y99{bottom:652.512000px;}
.y1c8{bottom:653.623500px;}
.y110{bottom:655.215000px;}
.y18a{bottom:655.429500px;}
.yc1{bottom:657.394500px;}
.y6a{bottom:660.622500px;}
.y15c{bottom:663.909000px;}
.yec{bottom:664.240500px;}
.y16f{bottom:665.817000px;}
.y132{bottom:667.738500px;}
.y98{bottom:668.262000px;}
.y205{bottom:668.617500px;}
.y1c7{bottom:668.619000px;}
.y10f{bottom:670.965000px;}
.y20{bottom:672.919500px;}
.yc0{bottom:673.144500px;}
.y1c6{bottom:678.538500px;}
.ya{bottom:679.064996px;}
.y15b{bottom:679.659000px;}
.yeb{bottom:679.990500px;}
.y189{bottom:680.146500px;}
.y131{bottom:683.488500px;}
.y97{bottom:684.012000px;}
.y69{bottom:685.338000px;}
.y10e{bottom:686.715000px;}
.ybf{bottom:688.894500px;}
.y1c5{bottom:692.038500px;}
.y15a{bottom:695.409000px;}
.yea{bottom:695.740500px;}
.y204{bottom:697.113000px;}
.y130{bottom:699.238500px;}
.y96{bottom:699.762000px;}
.y68{bottom:701.088000px;}
.y10d{bottom:702.465000px;}
.y1c4{bottom:705.538500px;}
.y203{bottom:707.032500px;}
.ybe{bottom:711.070500px;}
.y159{bottom:711.159000px;}
.ye9{bottom:711.490500px;}
.y12f{bottom:714.988500px;}
.y95{bottom:715.512000px;}
.y67{bottom:716.838000px;}
.y10c{bottom:718.215000px;}
.y1c3{bottom:724.113000px;}
.y1f{bottom:724.752000px;}
.y202{bottom:725.607000px;}
.y158{bottom:726.909000px;}
.ye8{bottom:727.240500px;}
.y188{bottom:730.710000px;}
.y94{bottom:731.262000px;}
.y16e{bottom:732.295500px;}
.y66{bottom:732.588000px;}
.y10b{bottom:733.965000px;}
.y1c2{bottom:734.032500px;}
.y201{bottom:735.526500px;}
.y157{bottom:742.659000px;}
.ybd{bottom:742.929000px;}
.ye7{bottom:742.990500px;}
.y187{bottom:746.460000px;}
.y93{bottom:747.012000px;}
.y16d{bottom:747.367500px;}
.y65{bottom:748.338000px;}
.yfe{bottom:748.987500px;}
.y10a{bottom:749.715000px;}
.y1c1{bottom:752.607000px;}
.y200{bottom:754.101000px;}
.y1e{bottom:755.302500px;}
.y156{bottom:758.409000px;}
.ybc{bottom:758.679000px;}
.ye6{bottom:758.740500px;}
.y16c{bottom:760.867500px;}
.y186{bottom:762.210000px;}
.yfd{bottom:762.487500px;}
.y92{bottom:762.762000px;}
.y1ff{bottom:764.020500px;}
.y109{bottom:765.465000px;}
.y1c0{bottom:767.601000px;}
.y64{bottom:773.055000px;}
.y1d{bottom:773.566500px;}
.y155{bottom:774.159000px;}
.ybb{bottom:774.429000px;}
.ye5{bottom:774.490500px;}
.y1bf{bottom:777.522000px;}
.y185{bottom:777.960000px;}
.y91{bottom:778.512000px;}
.y108{bottom:781.215000px;}
.y1fe{bottom:782.595000px;}
.y12e{bottom:783.949500px;}
.y154{bottom:789.909000px;}
.yba{bottom:790.179000px;}
.ye4{bottom:790.240500px;}
.y1c{bottom:791.829000px;}
.y184{bottom:793.710000px;}
.y90{bottom:794.262000px;}
.y1be{bottom:796.096500px;}
.y63{bottom:796.965000px;}
.y12d{bottom:797.449500px;}
.y1fd{bottom:797.590500px;}
.yb9{bottom:805.929000px;}
.ye3{bottom:805.990500px;}
.y1bd{bottom:806.016000px;}
.y183{bottom:809.460000px;}
.y8f{bottom:810.012000px;}
.y1b{bottom:810.025500px;}
.y1fc{bottom:812.584500px;}
.y62{bottom:812.715000px;}
.y151{bottom:817.027500px;}
.y9{bottom:818.082010px;}
.yb8{bottom:821.679000px;}
.ye2{bottom:821.740500px;}
.y1fb{bottom:822.504000px;}
.y1bc{bottom:824.590500px;}
.y182{bottom:825.210000px;}
.y8e{bottom:825.762000px;}
.y61{bottom:828.465000px;}
.y150{bottom:830.527500px;}
.yb7{bottom:837.429000px;}
.ye1{bottom:837.490500px;}
.y1bb{bottom:839.584500px;}
.y1fa{bottom:841.078500px;}
.y8d{bottom:841.512000px;}
.y1a{bottom:842.050500px;}
.y60{bottom:844.215000px;}
.y181{bottom:847.684500px;}
.y1f9{bottom:850.998000px;}
.yb6{bottom:853.179000px;}
.ye0{bottom:853.240500px;}
.y1ba{bottom:854.578500px;}
.y5f{bottom:859.965000px;}
.y19{bottom:860.050500px;}
.y8c{bottom:863.688000px;}
.y1b9{bottom:864.499500px;}
.y8{bottom:865.400995px;}
.yb5{bottom:868.929000px;}
.ydf{bottom:868.990500px;}
.y1f8{bottom:869.572500px;}
.y5e{bottom:875.715000px;}
.y1f7{bottom:879.493500px;}
.y1b8{bottom:883.074000px;}
.yb4{bottom:884.679000px;}
.yde{bottom:884.740500px;}
.y5d{bottom:891.465000px;}
.y8b{bottom:891.810000px;}
.y1b7{bottom:892.993500px;}
.y18{bottom:896.683500px;}
.y1f6{bottom:898.068000px;}
.y7{bottom:898.559999px;}
.yb3{bottom:900.429000px;}
.ydd{bottom:900.490500px;}
.y5c{bottom:907.215000px;}
.y8a{bottom:907.560000px;}
.y1b6{bottom:911.568000px;}
.y1f5{bottom:913.062000px;}
.y17{bottom:914.617500px;}
.yb2{bottom:916.179000px;}
.ydc{bottom:916.240500px;}
.y1b5{bottom:921.487500px;}
.y5b{bottom:922.965000px;}
.y1f4{bottom:922.981500px;}
.y89{bottom:923.310000px;}
.y16{bottom:931.578000px;}
.yb1{bottom:931.929000px;}
.ydb{bottom:931.990500px;}
.y6{bottom:936.500997px;}
.y5a{bottom:938.715000px;}
.y88{bottom:939.060000px;}
.y1b4{bottom:940.062000px;}
.y1f3{bottom:941.556000px;}
.yb0{bottom:947.679000px;}
.yda{bottom:947.740500px;}
.y1b3{bottom:949.981500px;}
.y1f2{bottom:951.475500px;}
.y5{bottom:954.201002px;}
.y59{bottom:954.465000px;}
.y87{bottom:954.810000px;}
.y22e{bottom:963.183000px;}
.yaf{bottom:963.429000px;}
.y228{bottom:963.481500px;}
.yd9{bottom:963.490500px;}
.y1b2{bottom:968.556000px;}
.y1f1{bottom:970.050000px;}
.y58{bottom:970.215000px;}
.y86{bottom:970.560000px;}
.y1b1{bottom:978.477000px;}
.yd8{bottom:979.240500px;}
.y1f0{bottom:979.971000px;}
.y227{bottom:982.056000px;}
.y22d{bottom:982.131000px;}
.yae{bottom:985.605000px;}
.y57{bottom:985.965000px;}
.y15{bottom:987.507000px;}
.y226{bottom:991.977000px;}
.y22c{bottom:992.424000px;}
.y85{bottom:992.736000px;}
.y1ef{bottom:993.471000px;}
.yd7{bottom:994.990500px;}
.y1b0{bottom:997.051500px;}
.y56{bottom:1001.715000px;}
.y22b{bottom:1006.297500px;}
.y1af{bottom:1006.971000px;}
.y225{bottom:1010.551500px;}
.yd6{bottom:1010.740500px;}
.y1ee{bottom:1012.045500px;}
.y55{bottom:1017.465000px;}
.y1ed{bottom:1021.965000px;}
.y14{bottom:1023.507000px;}
.y22a{bottom:1024.873500px;}
.y1ae{bottom:1025.545500px;}
.yd5{bottom:1026.490500px;}
.y54{bottom:1033.215000px;}
.y229{bottom:1035.091500px;}
.y1ad{bottom:1035.465000px;}
.y4{bottom:1039.380001px;}
.y53{bottom:1048.965000px;}
.y1ac{bottom:1054.039500px;}
.y3{bottom:1075.380001px;}
.y13{bottom:1111.008000px;}
.y12{bottom:1128.567000px;}
.h10{height:22.260000px;}
.h1c{height:24.450000px;}
.h1b{height:34.861217px;}
.h15{height:34.992000px;}
.h3{height:36.495000px;}
.h1d{height:38.475000px;}
.h1f{height:38.787000px;}
.h8{height:38.928000px;}
.h1e{height:39.015000px;}
.h20{height:39.105000px;}
.h6{height:40.608000px;}
.h16{height:41.040000px;}
.h7{height:42.498000px;}
.h5{height:43.794000px;}
.h11{height:43.845696px;}
.he{height:44.010000px;}
.h1a{height:44.026022px;}
.h19{height:45.064800px;}
.h12{height:46.170000px;}
.h9{height:47.220000px;}
.hb{height:47.973888px;}
.ha{height:48.660000px;}
.hf{height:49.618500px;}
.h14{height:55.752000px;}
.h18{height:56.265000px;}
.h13{height:58.122000px;}
.h17{height:68.430000px;}
.hc{height:78.992160px;}
.h4{height:94.440000px;}
.hd{height:97.800000px;}
.h2{height:1188.000000px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:891.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:43.741500px;}
.x6{left:52.707000px;}
.x5{left:59.647500px;}
.x7{left:66.157500px;}
.x10{left:72.135000px;}
.xd{left:79.756500px;}
.xc{left:86.331000px;}
.x9{left:93.055500px;}
.xe{left:95.035500px;}
.x11{left:154.233000px;}
.x13{left:167.961000px;}
.x2{left:174.000000px;}
.x1{left:180.000000px;}
.x3{left:189.000000px;}
.x4{left:201.000000px;}
.x14{left:214.629000px;}
.x15{left:228.342000px;}
.x16{left:350.611500px;}
.xa{left:459.157500px;}
.x12{left:465.220500px;}
.x8{left:477.295500px;}
.xf{left:486.055500px;}
.x17{left:771.351000px;}
.x18{left:781.240500px;}
@media print{
.v7{vertical-align:-21.253333pt;}
.va{vertical-align:-18.042667pt;}
.v4{vertical-align:-15.952000pt;}
.v2{vertical-align:-9.008000pt;}
.v9{vertical-align:-7.152000pt;}
.v6{vertical-align:-5.621333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.624000pt;}
.v8{vertical-align:15.952000pt;}
.v3{vertical-align:21.285333pt;}
.v1{vertical-align:35.269333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000015pt;}
.lsf{letter-spacing:0.000160pt;}
.ls23{letter-spacing:0.000283pt;}
.ls6{letter-spacing:1.744000pt;}
.ls5{letter-spacing:1.797333pt;}
.ls17{letter-spacing:2.650720pt;}
.ls25{letter-spacing:2.651947pt;}
.ls12{letter-spacing:2.656000pt;}
.ls9{letter-spacing:2.656053pt;}
.ls26{letter-spacing:2.657280pt;}
.ls27{letter-spacing:2.658133pt;}
.ls19{letter-spacing:2.661333pt;}
.ls4{letter-spacing:7.077333pt;}
.ls2e{letter-spacing:9.080000pt;}
.lsa{letter-spacing:10.892800pt;}
.ls29{letter-spacing:11.964800pt;}
.lse{letter-spacing:12.030400pt;}
.lsb{letter-spacing:12.096000pt;}
.ls16{letter-spacing:12.325333pt;}
.ls2b{letter-spacing:12.386133pt;}
.ls21{letter-spacing:13.552000pt;}
.ls2a{letter-spacing:13.922133pt;}
.ls2{letter-spacing:14.398720pt;}
.ls28{letter-spacing:14.485333pt;}
.ls10{letter-spacing:14.688000pt;}
.ls1f{letter-spacing:14.827810pt;}
.ls7{letter-spacing:15.333333pt;}
.lsc{letter-spacing:16.073067pt;}
.ls11{letter-spacing:17.370667pt;}
.ls1d{letter-spacing:17.424000pt;}
.ls1a{letter-spacing:17.536000pt;}
.ls1b{letter-spacing:19.584000pt;}
.lsd{letter-spacing:20.672000pt;}
.ls15{letter-spacing:21.194667pt;}
.ls24{letter-spacing:22.421333pt;}
.ls2d{letter-spacing:23.232000pt;}
.ls1c{letter-spacing:23.829333pt;}
.ls2c{letter-spacing:24.016000pt;}
.ls18{letter-spacing:24.101333pt;}
.ls1e{letter-spacing:25.093333pt;}
.ls8{letter-spacing:29.221333pt;}
.ls13{letter-spacing:36.258133pt;}
.ls14{letter-spacing:37.904000pt;}
.ls3{letter-spacing:91.545333pt;}
.ls20{letter-spacing:132.698667pt;}
.ls22{letter-spacing:197.717333pt;}
.ws5c{word-spacing:-21.792000pt;}
.ws3{word-spacing:-15.093333pt;}
.ws8{word-spacing:-14.400000pt;}
.ws2{word-spacing:-13.584000pt;}
.ws0{word-spacing:-11.320000pt;}
.ws18{word-spacing:-10.896000pt;}
.wsfe{word-spacing:-9.728000pt;}
.ws141{word-spacing:-9.080000pt;}
.wse9{word-spacing:-7.627200pt;}
.wsc8{word-spacing:-2.880000pt;}
.wse3{word-spacing:-2.869333pt;}
.wsf9{word-spacing:-2.613333pt;}
.ws3e{word-spacing:-2.544000pt;}
.wsd7{word-spacing:-2.400000pt;}
.wsb0{word-spacing:-2.304000pt;}
.wsd{word-spacing:-2.208000pt;}
.ws13e{word-spacing:-2.080000pt;}
.ws157{word-spacing:-2.040000pt;}
.ws72{word-spacing:-2.016000pt;}
.ws107{word-spacing:-1.968000pt;}
.wsb6{word-spacing:-1.920000pt;}
.ws124{word-spacing:-1.880000pt;}
.ws12a{word-spacing:-1.840000pt;}
.ws84{word-spacing:-1.824000pt;}
.ws85{word-spacing:-1.776000pt;}
.ws9a{word-spacing:-1.728000pt;}
.ws47{word-spacing:-1.680000pt;}
.ws8c{word-spacing:-1.632000pt;}
.ws132{word-spacing:-1.600000pt;}
.ws15b{word-spacing:-1.520000pt;}
.wsb3{word-spacing:-1.488000pt;}
.wsbc{word-spacing:-1.450667pt;}
.ws54{word-spacing:-1.440000pt;}
.ws4d{word-spacing:-1.392000pt;}
.ws1a{word-spacing:-1.344000pt;}
.ws121{word-spacing:-1.320000pt;}
.ws1e{word-spacing:-1.296000pt;}
.ws120{word-spacing:-1.280000pt;}
.ws46{word-spacing:-1.248000pt;}
.ws86{word-spacing:-1.200000pt;}
.ws8a{word-spacing:-1.152000pt;}
.wsc9{word-spacing:-1.104000pt;}
.ws40{word-spacing:-0.960000pt;}
.ws2a{word-spacing:-0.912000pt;}
.wsd6{word-spacing:-0.864000pt;}
.ws12c{word-spacing:-0.840000pt;}
.wsa6{word-spacing:-0.816000pt;}
.ws6b{word-spacing:-0.768000pt;}
.ws148{word-spacing:-0.760000pt;}
.wsaf{word-spacing:-0.720000pt;}
.ws15f{word-spacing:-0.680000pt;}
.ws9f{word-spacing:-0.576000pt;}
.ws156{word-spacing:-0.560000pt;}
.ws57{word-spacing:-0.528000pt;}
.ws165{word-spacing:-0.520000pt;}
.ws3f{word-spacing:-0.480000pt;}
.ws123{word-spacing:-0.440000pt;}
.ws12{word-spacing:-0.432000pt;}
.ws109{word-spacing:-0.426667pt;}
.ws77{word-spacing:-0.384000pt;}
.wsf1{word-spacing:-0.336000pt;}
.ws64{word-spacing:-0.240000pt;}
.ws11a{word-spacing:-0.144000pt;}
.ws152{word-spacing:-0.120000pt;}
.ws7e{word-spacing:-0.096000pt;}
.ws49{word-spacing:-0.048000pt;}
.ws5b{word-spacing:-0.047821pt;}
.ws3d{word-spacing:-0.042667pt;}
.ws11e{word-spacing:-0.040000pt;}
.wsb{word-spacing:-0.026667pt;}
.ws135{word-spacing:-0.005333pt;}
.ws12b{word-spacing:-0.002667pt;}
.ws4{word-spacing:0.000000pt;}
.ws129{word-spacing:0.040000pt;}
.wsae{word-spacing:0.048000pt;}
.wsb9{word-spacing:0.144000pt;}
.ws83{word-spacing:0.192000pt;}
.ws7c{word-spacing:0.240000pt;}
.wsfb{word-spacing:0.256000pt;}
.wsaa{word-spacing:0.288000pt;}
.ws169{word-spacing:0.440000pt;}
.wsf4{word-spacing:0.480000pt;}
.wsd4{word-spacing:0.528000pt;}
.ws9d{word-spacing:0.576000pt;}
.ws15a{word-spacing:0.680000pt;}
.ws134{word-spacing:0.760000pt;}
.ws118{word-spacing:0.816000pt;}
.ws5e{word-spacing:0.864000pt;}
.ws14{word-spacing:0.912000pt;}
.ws37{word-spacing:0.960000pt;}
.ws111{word-spacing:1.008000pt;}
.ws164{word-spacing:1.040000pt;}
.wsf{word-spacing:1.104000pt;}
.ws75{word-spacing:1.114667pt;}
.ws76{word-spacing:1.152000pt;}
.ws13{word-spacing:1.200000pt;}
.ws8b{word-spacing:1.248000pt;}
.ws43{word-spacing:1.296000pt;}
.ws13b{word-spacing:1.320000pt;}
.ws87{word-spacing:1.344000pt;}
.ws102{word-spacing:1.440000pt;}
.ws55{word-spacing:1.488000pt;}
.wse8{word-spacing:1.530259pt;}
.wsc6{word-spacing:1.536000pt;}
.ws145{word-spacing:1.560000pt;}
.ws8d{word-spacing:1.584000pt;}
.wsff{word-spacing:1.632000pt;}
.wsbb{word-spacing:1.664000pt;}
.ws25{word-spacing:1.776000pt;}
.ws150{word-spacing:1.800000pt;}
.wscd{word-spacing:1.824000pt;}
.ws13f{word-spacing:1.840000pt;}
.ws6c{word-spacing:1.872000pt;}
.ws14b{word-spacing:1.880000pt;}
.ws9c{word-spacing:1.920000pt;}
.ws65{word-spacing:1.968000pt;}
.ws133{word-spacing:2.000000pt;}
.ws11{word-spacing:2.016000pt;}
.ws104{word-spacing:2.064000pt;}
.ws89{word-spacing:2.160000pt;}
.ws3a{word-spacing:2.256000pt;}
.wsd5{word-spacing:2.304000pt;}
.ws60{word-spacing:2.400000pt;}
.ws130{word-spacing:2.440000pt;}
.ws9e{word-spacing:2.448000pt;}
.wse7{word-spacing:2.465418pt;}
.wsac{word-spacing:2.496000pt;}
.wsbf{word-spacing:2.544000pt;}
.wsb4{word-spacing:2.592000pt;}
.ws30{word-spacing:2.640000pt;}
.wsdb{word-spacing:2.688000pt;}
.ws48{word-spacing:2.784000pt;}
.ws103{word-spacing:2.832000pt;}
.ws11d{word-spacing:2.880000pt;}
.ws53{word-spacing:2.976000pt;}
.wsd3{word-spacing:3.024000pt;}
.ws39{word-spacing:3.072000pt;}
.wsd1{word-spacing:3.120000pt;}
.ws6f{word-spacing:3.168000pt;}
.wsa2{word-spacing:3.264000pt;}
.ws7f{word-spacing:3.312000pt;}
.ws16{word-spacing:3.360000pt;}
.ws146{word-spacing:3.400000pt;}
.ws4c{word-spacing:3.408000pt;}
.ws1d{word-spacing:3.456000pt;}
.wscc{word-spacing:3.504000pt;}
.ws56{word-spacing:3.552000pt;}
.wsf0{word-spacing:3.634133pt;}
.wsa5{word-spacing:3.648000pt;}
.ws42{word-spacing:3.696000pt;}
.ws14a{word-spacing:3.720000pt;}
.ws81{word-spacing:3.744000pt;}
.ws5f{word-spacing:3.840000pt;}
.wsa1{word-spacing:3.888000pt;}
.wsb2{word-spacing:3.936000pt;}
.ws158{word-spacing:3.960000pt;}
.wsa7{word-spacing:3.984000pt;}
.ws82{word-spacing:4.032000pt;}
.ws36{word-spacing:4.080000pt;}
.wsbe{word-spacing:4.128000pt;}
.ws137{word-spacing:4.200000pt;}
.ws51{word-spacing:4.224000pt;}
.ws17{word-spacing:4.272000pt;}
.wse{word-spacing:4.320000pt;}
.ws13a{word-spacing:4.360000pt;}
.wscb{word-spacing:4.368000pt;}
.ws50{word-spacing:4.416000pt;}
.ws80{word-spacing:4.464000pt;}
.ws151{word-spacing:4.520000pt;}
.ws22{word-spacing:4.560000pt;}
.ws10b{word-spacing:4.565333pt;}
.ws24{word-spacing:4.608000pt;}
.ws122{word-spacing:4.680000pt;}
.ws63{word-spacing:4.704000pt;}
.ws19{word-spacing:4.707200pt;}
.ws7d{word-spacing:4.800000pt;}
.wsd2{word-spacing:4.848000pt;}
.ws10{word-spacing:4.896000pt;}
.ws62{word-spacing:4.944000pt;}
.ws136{word-spacing:4.954667pt;}
.ws12e{word-spacing:4.960000pt;}
.wsa0{word-spacing:4.992000pt;}
.ws7b{word-spacing:5.040000pt;}
.ws41{word-spacing:5.075200pt;}
.ws159{word-spacing:5.077333pt;}
.ws128{word-spacing:5.080000pt;}
.wsa3{word-spacing:5.088000pt;}
.ws2b{word-spacing:5.117867pt;}
.ws127{word-spacing:5.120000pt;}
.ws74{word-spacing:5.136000pt;}
.ws59{word-spacing:5.173333pt;}
.ws5a{word-spacing:5.184000pt;}
.ws6e{word-spacing:5.232000pt;}
.wsb5{word-spacing:5.280000pt;}
.ws4f{word-spacing:5.328000pt;}
.ws20{word-spacing:5.472000pt;}
.ws138{word-spacing:5.480000pt;}
.wsc5{word-spacing:5.520000pt;}
.wsd0{word-spacing:5.568000pt;}
.ws79{word-spacing:5.616000pt;}
.wsb7{word-spacing:5.664000pt;}
.ws61{word-spacing:5.712000pt;}
.wsb1{word-spacing:5.760000pt;}
.ws33{word-spacing:5.808000pt;}
.ws119{word-spacing:5.856000pt;}
.ws73{word-spacing:5.904000pt;}
.wsd8{word-spacing:6.000000pt;}
.ws4b{word-spacing:6.003200pt;}
.ws4a{word-spacing:6.008533pt;}
.wse4{word-spacing:6.048000pt;}
.ws162{word-spacing:6.080000pt;}
.wsdd{word-spacing:6.096000pt;}
.ws154{word-spacing:6.120000pt;}
.ws2d{word-spacing:6.144000pt;}
.ws153{word-spacing:6.160000pt;}
.ws1b{word-spacing:6.192000pt;}
.ws167{word-spacing:6.197333pt;}
.ws166{word-spacing:6.200000pt;}
.ws10f{word-spacing:6.240000pt;}
.ws8f{word-spacing:6.288000pt;}
.wsf5{word-spacing:6.336000pt;}
.ws131{word-spacing:6.360000pt;}
.ws2e{word-spacing:6.384000pt;}
.ws88{word-spacing:6.432000pt;}
.ws78{word-spacing:6.480000pt;}
.ws6d{word-spacing:6.528000pt;}
.ws26{word-spacing:6.576000pt;}
.ws144{word-spacing:6.640000pt;}
.wsee{word-spacing:6.720000pt;}
.ws52{word-spacing:6.768000pt;}
.ws14e{word-spacing:6.773333pt;}
.ws14d{word-spacing:6.800000pt;}
.ws66{word-spacing:6.816000pt;}
.ws8e{word-spacing:6.864000pt;}
.ws147{word-spacing:6.880000pt;}
.wsc0{word-spacing:6.912000pt;}
.ws101{word-spacing:6.979200pt;}
.ws5d{word-spacing:7.008000pt;}
.ws71{word-spacing:7.104000pt;}
.ws2c{word-spacing:7.171200pt;}
.ws163{word-spacing:7.184000pt;}
.wsef{word-spacing:7.200000pt;}
.ws125{word-spacing:7.240000pt;}
.wsa4{word-spacing:7.248000pt;}
.wsc7{word-spacing:7.344000pt;}
.ws13c{word-spacing:7.360000pt;}
.wsb8{word-spacing:7.392000pt;}
.ws11f{word-spacing:7.480000pt;}
.wsa9{word-spacing:7.488000pt;}
.wsdc{word-spacing:7.520000pt;}
.ws21{word-spacing:7.536000pt;}
.ws155{word-spacing:7.600000pt;}
.wsab{word-spacing:7.632000pt;}
.ws161{word-spacing:7.640000pt;}
.ws4e{word-spacing:7.680000pt;}
.ws7a{word-spacing:7.728000pt;}
.ws99{word-spacing:7.776000pt;}
.wsc2{word-spacing:7.872000pt;}
.ws112{word-spacing:7.920000pt;}
.ws126{word-spacing:8.000000pt;}
.wse2{word-spacing:8.016000pt;}
.ws15d{word-spacing:8.032000pt;}
.ws15c{word-spacing:8.040000pt;}
.ws44{word-spacing:8.064000pt;}
.ws106{word-spacing:8.077867pt;}
.ws1f{word-spacing:8.112000pt;}
.ws58{word-spacing:8.160000pt;}
.wsce{word-spacing:8.304000pt;}
.ws27{word-spacing:8.352000pt;}
.ws139{word-spacing:8.360000pt;}
.ws10c{word-spacing:8.490667pt;}
.ws90{word-spacing:8.496000pt;}
.ws2f{word-spacing:8.640000pt;}
.wsf2{word-spacing:8.736000pt;}
.ws70{word-spacing:8.784000pt;}
.wsf6{word-spacing:8.880000pt;}
.wsc4{word-spacing:8.928000pt;}
.ws3c{word-spacing:8.976000pt;}
.wsd9{word-spacing:9.024000pt;}
.ws110{word-spacing:9.048533pt;}
.wsa8{word-spacing:9.120000pt;}
.ws31{word-spacing:9.168000pt;}
.ws108{word-spacing:9.258667pt;}
.ws35{word-spacing:9.312000pt;}
.ws1c{word-spacing:9.408000pt;}
.ws10e{word-spacing:9.456000pt;}
.ws23{word-spacing:9.600000pt;}
.ws117{word-spacing:9.648000pt;}
.ws116{word-spacing:9.696000pt;}
.ws68{word-spacing:9.744000pt;}
.ws69{word-spacing:9.792000pt;}
.wsfa{word-spacing:9.941333pt;}
.ws38{word-spacing:10.032000pt;}
.ws67{word-spacing:10.080000pt;}
.ws11b{word-spacing:10.128000pt;}
.wsf8{word-spacing:10.154667pt;}
.wsde{word-spacing:10.176000pt;}
.ws28{word-spacing:10.224000pt;}
.wsdf{word-spacing:10.272000pt;}
.ws12f{word-spacing:10.360000pt;}
.wse5{word-spacing:10.416000pt;}
.ws115{word-spacing:10.464000pt;}
.wscf{word-spacing:10.560000pt;}
.ws114{word-spacing:10.752000pt;}
.ws13d{word-spacing:10.880000pt;}
.wsca{word-spacing:10.896000pt;}
.wsa{word-spacing:10.922667pt;}
.ws15{word-spacing:10.944000pt;}
.wse1{word-spacing:11.077333pt;}
.ws140{word-spacing:11.120000pt;}
.ws143{word-spacing:11.160000pt;}
.ws113{word-spacing:11.235200pt;}
.wsba{word-spacing:11.349333pt;}
.wsfd{word-spacing:11.434667pt;}
.ws32{word-spacing:11.472000pt;}
.wse0{word-spacing:11.520000pt;}
.ws12d{word-spacing:11.680000pt;}
.ws34{word-spacing:11.861333pt;}
.wse6{word-spacing:12.114552pt;}
.wsda{word-spacing:12.373333pt;}
.ws3b{word-spacing:12.456533pt;}
.wsc1{word-spacing:12.624000pt;}
.wsc{word-spacing:12.709653pt;}
.ws6a{word-spacing:12.864000pt;}
.wsad{word-spacing:13.584000pt;}
.ws92{word-spacing:13.824000pt;}
.wsbd{word-spacing:13.909333pt;}
.wsc3{word-spacing:13.946667pt;}
.ws100{word-spacing:14.101333pt;}
.ws45{word-spacing:14.103467pt;}
.ws10a{word-spacing:14.250667pt;}
.ws7{word-spacing:14.352000pt;}
.ws14f{word-spacing:14.400000pt;}
.ws95{word-spacing:14.592000pt;}
.wsf3{word-spacing:14.787200pt;}
.ws14c{word-spacing:14.840000pt;}
.ws97{word-spacing:15.120000pt;}
.ws94{word-spacing:15.984000pt;}
.ws11c{word-spacing:16.032000pt;}
.ws142{word-spacing:16.280000pt;}
.ws29{word-spacing:16.285867pt;}
.ws149{word-spacing:16.640000pt;}
.ws98{word-spacing:18.000000pt;}
.ws168{word-spacing:18.040000pt;}
.ws10d{word-spacing:18.154667pt;}
.ws105{word-spacing:18.517333pt;}
.wsf7{word-spacing:19.840000pt;}
.ws9b{word-spacing:19.920000pt;}
.wsfc{word-spacing:21.120000pt;}
.ws160{word-spacing:21.240000pt;}
.ws96{word-spacing:22.800000pt;}
.ws93{word-spacing:24.336000pt;}
.ws91{word-spacing:25.344000pt;}
.ws15e{word-spacing:31.040000pt;}
.ws6{word-spacing:31.893333pt;}
.ws9{word-spacing:91.517333pt;}
.wsea{word-spacing:94.320000pt;}
.wseb{word-spacing:104.688000pt;}
.wsec{word-spacing:172.677333pt;}
.ws5{word-spacing:175.290667pt;}
.wsed{word-spacing:186.741333pt;}
.ws1{word-spacing:813.314769pt;}
._3{margin-left:-5.333333pt;}
._12{margin-left:-3.936000pt;}
._7{margin-left:-2.560000pt;}
._a{margin-left:-1.408000pt;}
._0{width:1.744000pt;}
._5{width:2.656000pt;}
._11{width:7.045333pt;}
._9{width:7.946667pt;}
._13{width:8.848000pt;}
._14{width:9.792000pt;}
._6{width:11.136872pt;}
._b{width:16.944000pt;}
._4{width:19.728000pt;}
._1{width:53.333321pt;}
._d{width:105.216000pt;}
._e{width:136.416000pt;}
._10{width:143.712000pt;}
._f{width:151.029333pt;}
._c{width:425.114667pt;}
._2{width:1186.755525pt;}
._8{width:1651.738667pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:28.000000pt;}
.fse{font-size:29.866667pt;}
.fsd{font-size:31.880533pt;}
.fsa{font-size:33.066667pt;}
.fsb{font-size:33.600000pt;}
.fs0{font-size:40.000000pt;}
.fs9{font-size:42.507200pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:47.820800pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:55.525333pt;}
.fsc{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:53.990641pt;}
.y52{bottom:55.945333pt;}
.y51{bottom:73.070667pt;}
.y1{bottom:76.657308pt;}
.y1ec{bottom:132.578667pt;}
.y107{bottom:135.553333pt;}
.y1ab{bottom:135.718667pt;}
.y84{bottom:135.786667pt;}
.y50{bottom:136.905333pt;}
.y3d{bottom:136.957333pt;}
.y224{bottom:137.421333pt;}
.y14f{bottom:138.186667pt;}
.y16b{bottom:140.245333pt;}
.y14d{bottom:145.552000pt;}
.y223{bottom:146.238667pt;}
.y1aa{bottom:147.718667pt;}
.y1eb{bottom:149.089333pt;}
.y106{bottom:149.553333pt;}
.y83{bottom:149.786667pt;}
.y14e{bottom:150.186667pt;}
.y4f{bottom:150.905333pt;}
.y3c{bottom:150.957333pt;}
.y16a{bottom:152.245333pt;}
.y1ea{bottom:157.906667pt;}
.y14c{bottom:160.566667pt;}
.y222{bottom:162.749333pt;}
.y12c{bottom:163.553333pt;}
.y82{bottom:163.786667pt;}
.y1a9{bottom:164.229333pt;}
.y169{bottom:164.245333pt;}
.y4e{bottom:164.905333pt;}
.y3b{bottom:164.957333pt;}
.y105{bottom:169.530667pt;}
.y221{bottom:171.566667pt;}
.y1a8{bottom:173.046667pt;}
.y1e9{bottom:174.417333pt;}
.y14b{bottom:175.581333pt;}
.y12b{bottom:177.553333pt;}
.y81{bottom:177.786667pt;}
.y4d{bottom:178.905333pt;}
.y3a{bottom:178.957333pt;}
.y1e8{bottom:183.234667pt;}
.y1a7{bottom:185.046667pt;}
.y220{bottom:188.077333pt;}
.y104{bottom:190.834667pt;}
.y12a{bottom:191.553333pt;}
.y80{bottom:191.786667pt;}
.y4c{bottom:192.905333pt;}
.y39{bottom:192.957333pt;}
.y21f{bottom:196.896000pt;}
.y1e7{bottom:199.746667pt;}
.y14a{bottom:201.356000pt;}
.y1a6{bottom:201.557333pt;}
.y129{bottom:205.553333pt;}
.y7f{bottom:205.786667pt;}
.y4b{bottom:206.905333pt;}
.y38{bottom:206.957333pt;}
.y1e6{bottom:208.564000pt;}
.y21e{bottom:208.896000pt;}
.y1a5{bottom:210.374667pt;}
.y149{bottom:216.370667pt;}
.y128{bottom:219.553333pt;}
.y7e{bottom:219.786667pt;}
.y4a{bottom:220.905333pt;}
.y37{bottom:220.957333pt;}
.y1e5{bottom:225.074667pt;}
.y21d{bottom:225.406667pt;}
.y1a4{bottom:226.885333pt;}
.y127{bottom:233.553333pt;}
.y7d{bottom:233.786667pt;}
.y1e4{bottom:233.892000pt;}
.y21c{bottom:234.224000pt;}
.y103{bottom:234.870667pt;}
.y49{bottom:234.905333pt;}
.y36{bottom:234.957333pt;}
.y1a3{bottom:235.704000pt;}
.y148{bottom:242.214667pt;}
.y1e3{bottom:245.892000pt;}
.y21b{bottom:246.224000pt;}
.y126{bottom:247.553333pt;}
.y7c{bottom:247.786667pt;}
.y102{bottom:248.870667pt;}
.y48{bottom:248.905333pt;}
.y35{bottom:248.957333pt;}
.y1a2{bottom:252.214667pt;}
.yad{bottom:253.498667pt;}
.y147{bottom:254.214667pt;}
.y125{bottom:261.553333pt;}
.yd4{bottom:261.786667pt;}
.y1e2{bottom:262.402667pt;}
.y21a{bottom:262.734667pt;}
.y101{bottom:262.870667pt;}
.y47{bottom:262.905333pt;}
.y34{bottom:262.957333pt;}
.y1a1{bottom:265.542667pt;}
.y146{bottom:266.214667pt;}
.y7b{bottom:267.498667pt;}
.y219{bottom:271.552000pt;}
.y1a0{bottom:274.360000pt;}
.yac{bottom:274.802667pt;}
.y124{bottom:275.553333pt;}
.y1e1{bottom:275.730667pt;}
.yd3{bottom:275.786667pt;}
.y46{bottom:276.905333pt;}
.y33{bottom:276.957333pt;}
.y1e0{bottom:284.548000pt;}
.y218{bottom:288.062667pt;}
.y7a{bottom:288.802667pt;}
.y123{bottom:289.553333pt;}
.yd2{bottom:289.786667pt;}
.y19f{bottom:290.870667pt;}
.y45{bottom:290.905333pt;}
.y32{bottom:290.957333pt;}
.y217{bottom:297.212000pt;}
.y19e{bottom:299.688000pt;}
.y1df{bottom:301.058667pt;}
.y122{bottom:303.553333pt;}
.yd1{bottom:303.786667pt;}
.y44{bottom:304.905333pt;}
.y31{bottom:304.957333pt;}
.y100{bottom:308.594667pt;}
.y1de{bottom:309.877333pt;}
.yab{bottom:311.301333pt;}
.y216{bottom:313.722667pt;}
.y19d{bottom:316.198667pt;}
.y180{bottom:317.553333pt;}
.yd0{bottom:317.786667pt;}
.y43{bottom:318.905333pt;}
.y30{bottom:318.957333pt;}
.yff{bottom:320.594667pt;}
.y215{bottom:322.873333pt;}
.y121{bottom:323.530667pt;}
.y19c{bottom:325.017333pt;}
.yaa{bottom:325.301333pt;}
.y79{bottom:325.757333pt;}
.y1dd{bottom:326.388000pt;}
.y145{bottom:327.545333pt;}
.ycf{bottom:331.786667pt;}
.y42{bottom:332.905333pt;}
.y2f{bottom:332.957333pt;}
.y1dc{bottom:335.205333pt;}
.y19b{bottom:337.017333pt;}
.y17f{bottom:337.530667pt;}
.ya9{bottom:339.301333pt;}
.y214{bottom:339.384000pt;}
.y78{bottom:339.757333pt;}
.y144{bottom:341.545333pt;}
.yfc{bottom:345.786667pt;}
.y41{bottom:346.905333pt;}
.y2e{bottom:346.957333pt;}
.y213{bottom:348.533333pt;}
.y1db{bottom:351.716000pt;}
.yce{bottom:351.765333pt;}
.ya8{bottom:353.301333pt;}
.y19a{bottom:353.528000pt;}
.y77{bottom:353.757333pt;}
.y143{bottom:355.545333pt;}
.y120{bottom:358.413333pt;}
.yfb{bottom:359.786667pt;}
.y212{bottom:360.533333pt;}
.y40{bottom:360.905333pt;}
.y2d{bottom:360.957333pt;}
.y199{bottom:362.345333pt;}
.y1da{bottom:365.044000pt;}
.ya7{bottom:367.301333pt;}
.y76{bottom:367.757333pt;}
.y142{bottom:369.545333pt;}
.y11f{bottom:372.413333pt;}
.yfa{bottom:373.786667pt;}
.y1d9{bottom:373.861333pt;}
.y3f{bottom:374.905333pt;}
.y211{bottom:377.044000pt;}
.y198{bottom:378.856000pt;}
.ycd{bottom:380.430667pt;}
.ya6{bottom:381.301333pt;}
.y75{bottom:381.757333pt;}
.y17e{bottom:381.837333pt;}
.y141{bottom:383.545333pt;}
.y210{bottom:385.861333pt;}
.y11e{bottom:386.413333pt;}
.y197{bottom:387.673333pt;}
.yf9{bottom:387.786667pt;}
.y2c{bottom:388.904000pt;}
.y3e{bottom:388.905333pt;}
.y1d8{bottom:390.372000pt;}
.ycc{bottom:394.430667pt;}
.ya5{bottom:395.301333pt;}
.y17d{bottom:395.837333pt;}
.y140{bottom:397.545333pt;}
.y1d7{bottom:399.190667pt;}
.y11d{bottom:400.413333pt;}
.y74{bottom:401.734667pt;}
.yf8{bottom:401.786667pt;}
.y20f{bottom:402.372000pt;}
.y196{bottom:404.184000pt;}
.ycb{bottom:408.430667pt;}
.ya4{bottom:409.301333pt;}
.y17c{bottom:409.837333pt;}
.y20e{bottom:411.189333pt;}
.y13f{bottom:411.545333pt;}
.y195{bottom:413.001333pt;}
.y11c{bottom:414.413333pt;}
.y1d6{bottom:415.701333pt;}
.yf7{bottom:415.786667pt;}
.y168{bottom:422.141333pt;}
.yca{bottom:422.430667pt;}
.ya3{bottom:423.301333pt;}
.y17b{bottom:423.837333pt;}
.y1d5{bottom:424.518667pt;}
.y194{bottom:425.001333pt;}
.y13e{bottom:425.545333pt;}
.y11{bottom:426.946663pt;}
.y20d{bottom:427.700000pt;}
.y11b{bottom:428.413333pt;}
.y153{bottom:429.361333pt;}
.yf6{bottom:429.786667pt;}
.y167{bottom:436.141333pt;}
.yc9{bottom:436.430667pt;}
.y1d4{bottom:436.518667pt;}
.ya2{bottom:437.301333pt;}
.y17a{bottom:437.837333pt;}
.y13d{bottom:439.545333pt;}
.y193{bottom:441.512000pt;}
.y11a{bottom:442.413333pt;}
.y2b{bottom:442.482667pt;}
.y152{bottom:442.757333pt;}
.yf5{bottom:443.786667pt;}
.y2a{bottom:445.138667pt;}
.y73{bottom:445.996000pt;}
.y10{bottom:446.279997pt;}
.y166{bottom:450.141333pt;}
.yc8{bottom:450.430667pt;}
.ya1{bottom:451.301333pt;}
.y179{bottom:451.837333pt;}
.y1d3{bottom:453.029333pt;}
.y13c{bottom:453.545333pt;}
.y192{bottom:454.841333pt;}
.y119{bottom:456.413333pt;}
.yf4{bottom:457.786667pt;}
.y72{bottom:459.996000pt;}
.y1d2{bottom:461.846667pt;}
.y191{bottom:463.658667pt;}
.y165{bottom:464.141333pt;}
.yc7{bottom:464.430667pt;}
.ya0{bottom:465.301333pt;}
.y178{bottom:465.837333pt;}
.y29{bottom:466.321333pt;}
.y13b{bottom:467.545333pt;}
.y118{bottom:470.413333pt;}
.yf3{bottom:471.786667pt;}
.y20c{bottom:473.846667pt;}
.y71{bottom:473.996000pt;}
.y190{bottom:475.658667pt;}
.y164{bottom:478.141333pt;}
.y1d1{bottom:478.357333pt;}
.yc6{bottom:478.430667pt;}
.y9f{bottom:479.301333pt;}
.yf{bottom:479.613330pt;}
.y177{bottom:479.837333pt;}
.y28{bottom:480.321333pt;}
.y13a{bottom:481.545333pt;}
.y117{bottom:484.413333pt;}
.yf2{bottom:485.786667pt;}
.y70{bottom:487.996000pt;}
.y20b{bottom:490.357333pt;}
.y1d0{bottom:491.685333pt;}
.y163{bottom:492.141333pt;}
.y18f{bottom:492.169333pt;}
.y176{bottom:493.837333pt;}
.y27{bottom:494.321333pt;}
.y139{bottom:495.545333pt;}
.yc5{bottom:498.408000pt;}
.y116{bottom:498.413333pt;}
.ye{bottom:498.946663pt;}
.y9e{bottom:499.013333pt;}
.yf1{bottom:499.786667pt;}
.y1cf{bottom:500.504000pt;}
.y6f{bottom:501.996000pt;}
.y20a{bottom:503.685333pt;}
.y18e{bottom:505.497333pt;}
.y162{bottom:506.141333pt;}
.y175{bottom:507.837333pt;}
.y26{bottom:508.321333pt;}
.y138{bottom:509.545333pt;}
.y115{bottom:512.413333pt;}
.y209{bottom:512.502667pt;}
.y1ce{bottom:512.504000pt;}
.y6e{bottom:515.996000pt;}
.yd{bottom:516.279997pt;}
.y1cd{bottom:517.014667pt;}
.y18d{bottom:518.825333pt;}
.yf0{bottom:519.764000pt;}
.y161{bottom:520.141333pt;}
.y174{bottom:521.837333pt;}
.y25{bottom:522.321333pt;}
.y137{bottom:523.545333pt;}
.y9d{bottom:524.010667pt;}
.y1cc{bottom:525.832000pt;}
.y114{bottom:526.413333pt;}
.y208{bottom:529.013333pt;}
.y160{bottom:534.141333pt;}
.y18c{bottom:534.285333pt;}
.y173{bottom:535.837333pt;}
.y24{bottom:536.321333pt;}
.y6d{bottom:537.249333pt;}
.y136{bottom:537.545333pt;}
.y207{bottom:537.832000pt;}
.y9c{bottom:538.010667pt;}
.y113{bottom:540.413333pt;}
.y1cb{bottom:542.342667pt;}
.yc4{bottom:542.350667pt;}
.y15f{bottom:548.141333pt;}
.yef{bottom:548.436000pt;}
.yc{bottom:549.613330pt;}
.y172{bottom:549.837333pt;}
.y23{bottom:550.321333pt;}
.y1ca{bottom:551.160000pt;}
.y6c{bottom:551.249333pt;}
.y135{bottom:551.545333pt;}
.y9b{bottom:552.010667pt;}
.y206{bottom:554.342667pt;}
.y112{bottom:554.413333pt;}
.yc3{bottom:556.350667pt;}
.y15e{bottom:562.141333pt;}
.yee{bottom:562.436000pt;}
.y171{bottom:563.837333pt;}
.y22{bottom:564.321333pt;}
.y6b{bottom:565.249333pt;}
.y134{bottom:565.545333pt;}
.y9a{bottom:566.010667pt;}
.y1c9{bottom:567.670667pt;}
.y111{bottom:568.413333pt;}
.y18b{bottom:568.604000pt;}
.yb{bottom:568.946663pt;}
.yc2{bottom:570.350667pt;}
.y15d{bottom:576.141333pt;}
.yed{bottom:576.436000pt;}
.y170{bottom:577.837333pt;}
.y21{bottom:578.321333pt;}
.y133{bottom:579.545333pt;}
.y99{bottom:580.010667pt;}
.y1c8{bottom:580.998667pt;}
.y110{bottom:582.413333pt;}
.y18a{bottom:582.604000pt;}
.yc1{bottom:584.350667pt;}
.y6a{bottom:587.220000pt;}
.y15c{bottom:590.141333pt;}
.yec{bottom:590.436000pt;}
.y16f{bottom:591.837333pt;}
.y132{bottom:593.545333pt;}
.y98{bottom:594.010667pt;}
.y205{bottom:594.326667pt;}
.y1c7{bottom:594.328000pt;}
.y10f{bottom:596.413333pt;}
.y20{bottom:598.150667pt;}
.yc0{bottom:598.350667pt;}
.y1c6{bottom:603.145333pt;}
.ya{bottom:603.613330pt;}
.y15b{bottom:604.141333pt;}
.yeb{bottom:604.436000pt;}
.y189{bottom:604.574667pt;}
.y131{bottom:607.545333pt;}
.y97{bottom:608.010667pt;}
.y69{bottom:609.189333pt;}
.y10e{bottom:610.413333pt;}
.ybf{bottom:612.350667pt;}
.y1c5{bottom:615.145333pt;}
.y15a{bottom:618.141333pt;}
.yea{bottom:618.436000pt;}
.y204{bottom:619.656000pt;}
.y130{bottom:621.545333pt;}
.y96{bottom:622.010667pt;}
.y68{bottom:623.189333pt;}
.y10d{bottom:624.413333pt;}
.y1c4{bottom:627.145333pt;}
.y203{bottom:628.473333pt;}
.ybe{bottom:632.062667pt;}
.y159{bottom:632.141333pt;}
.ye9{bottom:632.436000pt;}
.y12f{bottom:635.545333pt;}
.y95{bottom:636.010667pt;}
.y67{bottom:637.189333pt;}
.y10c{bottom:638.413333pt;}
.y1c3{bottom:643.656000pt;}
.y1f{bottom:644.224000pt;}
.y202{bottom:644.984000pt;}
.y158{bottom:646.141333pt;}
.ye8{bottom:646.436000pt;}
.y188{bottom:649.520000pt;}
.y94{bottom:650.010667pt;}
.y16e{bottom:650.929333pt;}
.y66{bottom:651.189333pt;}
.y10b{bottom:652.413333pt;}
.y1c2{bottom:652.473333pt;}
.y201{bottom:653.801333pt;}
.y157{bottom:660.141333pt;}
.ybd{bottom:660.381333pt;}
.ye7{bottom:660.436000pt;}
.y187{bottom:663.520000pt;}
.y93{bottom:664.010667pt;}
.y16d{bottom:664.326667pt;}
.y65{bottom:665.189333pt;}
.yfe{bottom:665.766667pt;}
.y10a{bottom:666.413333pt;}
.y1c1{bottom:668.984000pt;}
.y200{bottom:670.312000pt;}
.y1e{bottom:671.380000pt;}
.y156{bottom:674.141333pt;}
.ybc{bottom:674.381333pt;}
.ye6{bottom:674.436000pt;}
.y16c{bottom:676.326667pt;}
.y186{bottom:677.520000pt;}
.yfd{bottom:677.766667pt;}
.y92{bottom:678.010667pt;}
.y1ff{bottom:679.129333pt;}
.y109{bottom:680.413333pt;}
.y1c0{bottom:682.312000pt;}
.y64{bottom:687.160000pt;}
.y1d{bottom:687.614667pt;}
.y155{bottom:688.141333pt;}
.ybb{bottom:688.381333pt;}
.ye5{bottom:688.436000pt;}
.y1bf{bottom:691.130667pt;}
.y185{bottom:691.520000pt;}
.y91{bottom:692.010667pt;}
.y108{bottom:694.413333pt;}
.y1fe{bottom:695.640000pt;}
.y12e{bottom:696.844000pt;}
.y154{bottom:702.141333pt;}
.yba{bottom:702.381333pt;}
.ye4{bottom:702.436000pt;}
.y1c{bottom:703.848000pt;}
.y184{bottom:705.520000pt;}
.y90{bottom:706.010667pt;}
.y1be{bottom:707.641333pt;}
.y63{bottom:708.413333pt;}
.y12d{bottom:708.844000pt;}
.y1fd{bottom:708.969333pt;}
.yb9{bottom:716.381333pt;}
.ye3{bottom:716.436000pt;}
.y1bd{bottom:716.458667pt;}
.y183{bottom:719.520000pt;}
.y8f{bottom:720.010667pt;}
.y1b{bottom:720.022667pt;}
.y1fc{bottom:722.297333pt;}
.y62{bottom:722.413333pt;}
.y151{bottom:726.246667pt;}
.y9{bottom:727.184009pt;}
.yb8{bottom:730.381333pt;}
.ye2{bottom:730.436000pt;}
.y1fb{bottom:731.114667pt;}
.y1bc{bottom:732.969333pt;}
.y182{bottom:733.520000pt;}
.y8e{bottom:734.010667pt;}
.y61{bottom:736.413333pt;}
.y150{bottom:738.246667pt;}
.yb7{bottom:744.381333pt;}
.ye1{bottom:744.436000pt;}
.y1bb{bottom:746.297333pt;}
.y1fa{bottom:747.625333pt;}
.y8d{bottom:748.010667pt;}
.y1a{bottom:748.489333pt;}
.y60{bottom:750.413333pt;}
.y181{bottom:753.497333pt;}
.y1f9{bottom:756.442667pt;}
.yb6{bottom:758.381333pt;}
.ye0{bottom:758.436000pt;}
.y1ba{bottom:759.625333pt;}
.y5f{bottom:764.413333pt;}
.y19{bottom:764.489333pt;}
.y8c{bottom:767.722667pt;}
.y1b9{bottom:768.444000pt;}
.y8{bottom:769.245329pt;}
.yb5{bottom:772.381333pt;}
.ydf{bottom:772.436000pt;}
.y1f8{bottom:772.953333pt;}
.y5e{bottom:778.413333pt;}
.y1f7{bottom:781.772000pt;}
.y1b8{bottom:784.954667pt;}
.yb4{bottom:786.381333pt;}
.yde{bottom:786.436000pt;}
.y5d{bottom:792.413333pt;}
.y8b{bottom:792.720000pt;}
.y1b7{bottom:793.772000pt;}
.y18{bottom:797.052000pt;}
.y1f6{bottom:798.282667pt;}
.y7{bottom:798.719999pt;}
.yb3{bottom:800.381333pt;}
.ydd{bottom:800.436000pt;}
.y5c{bottom:806.413333pt;}
.y8a{bottom:806.720000pt;}
.y1b6{bottom:810.282667pt;}
.y1f5{bottom:811.610667pt;}
.y17{bottom:812.993333pt;}
.yb2{bottom:814.381333pt;}
.ydc{bottom:814.436000pt;}
.y1b5{bottom:819.100000pt;}
.y5b{bottom:820.413333pt;}
.y1f4{bottom:820.428000pt;}
.y89{bottom:820.720000pt;}
.y16{bottom:828.069333pt;}
.yb1{bottom:828.381333pt;}
.ydb{bottom:828.436000pt;}
.y6{bottom:832.445331pt;}
.y5a{bottom:834.413333pt;}
.y88{bottom:834.720000pt;}
.y1b4{bottom:835.610667pt;}
.y1f3{bottom:836.938667pt;}
.yb0{bottom:842.381333pt;}
.yda{bottom:842.436000pt;}
.y1b3{bottom:844.428000pt;}
.y1f2{bottom:845.756000pt;}
.y5{bottom:848.178668pt;}
.y59{bottom:848.413333pt;}
.y87{bottom:848.720000pt;}
.y22e{bottom:856.162667pt;}
.yaf{bottom:856.381333pt;}
.y228{bottom:856.428000pt;}
.yd9{bottom:856.436000pt;}
.y1b2{bottom:860.938667pt;}
.y1f1{bottom:862.266667pt;}
.y58{bottom:862.413333pt;}
.y86{bottom:862.720000pt;}
.y1b1{bottom:869.757333pt;}
.yd8{bottom:870.436000pt;}
.y1f0{bottom:871.085333pt;}
.y227{bottom:872.938667pt;}
.y22d{bottom:873.005333pt;}
.yae{bottom:876.093333pt;}
.y57{bottom:876.413333pt;}
.y15{bottom:877.784000pt;}
.y226{bottom:881.757333pt;}
.y22c{bottom:882.154667pt;}
.y85{bottom:882.432000pt;}
.y1ef{bottom:883.085333pt;}
.yd7{bottom:884.436000pt;}
.y1b0{bottom:886.268000pt;}
.y56{bottom:890.413333pt;}
.y22b{bottom:894.486667pt;}
.y1af{bottom:895.085333pt;}
.y225{bottom:898.268000pt;}
.yd6{bottom:898.436000pt;}
.y1ee{bottom:899.596000pt;}
.y55{bottom:904.413333pt;}
.y1ed{bottom:908.413333pt;}
.y14{bottom:909.784000pt;}
.y22a{bottom:910.998667pt;}
.y1ae{bottom:911.596000pt;}
.yd5{bottom:912.436000pt;}
.y54{bottom:918.413333pt;}
.y229{bottom:920.081333pt;}
.y1ad{bottom:920.413333pt;}
.y4{bottom:923.893334pt;}
.y53{bottom:932.413333pt;}
.y1ac{bottom:936.924000pt;}
.y3{bottom:955.893334pt;}
.y13{bottom:987.562667pt;}
.y12{bottom:1003.170667pt;}
.h10{height:19.786667pt;}
.h1c{height:21.733333pt;}
.h1b{height:30.987749pt;}
.h15{height:31.104000pt;}
.h3{height:32.440000pt;}
.h1d{height:34.200000pt;}
.h1f{height:34.477333pt;}
.h8{height:34.602667pt;}
.h1e{height:34.680000pt;}
.h20{height:34.760000pt;}
.h6{height:36.096000pt;}
.h16{height:36.480000pt;}
.h7{height:37.776000pt;}
.h5{height:38.928000pt;}
.h11{height:38.973952pt;}
.he{height:39.120000pt;}
.h1a{height:39.134242pt;}
.h19{height:40.057600pt;}
.h12{height:41.040000pt;}
.h9{height:41.973333pt;}
.hb{height:42.643456pt;}
.ha{height:43.253333pt;}
.hf{height:44.105333pt;}
.h14{height:49.557333pt;}
.h18{height:50.013333pt;}
.h13{height:51.664000pt;}
.h17{height:60.826667pt;}
.hc{height:70.215253pt;}
.h4{height:83.946667pt;}
.hd{height:86.933333pt;}
.h2{height:1056.000000pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:792.000000pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:38.881333pt;}
.x6{left:46.850667pt;}
.x5{left:53.020000pt;}
.x7{left:58.806667pt;}
.x10{left:64.120000pt;}
.xd{left:70.894667pt;}
.xc{left:76.738667pt;}
.x9{left:82.716000pt;}
.xe{left:84.476000pt;}
.x11{left:137.096000pt;}
.x13{left:149.298667pt;}
.x2{left:154.666667pt;}
.x1{left:160.000000pt;}
.x3{left:168.000000pt;}
.x4{left:178.666667pt;}
.x14{left:190.781333pt;}
.x15{left:202.970667pt;}
.x16{left:311.654667pt;}
.xa{left:408.140000pt;}
.x12{left:413.529333pt;}
.x8{left:424.262667pt;}
.xf{left:432.049333pt;}
.x17{left:685.645333pt;}
.x18{left:694.436000pt;}
}


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