
/* 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_4d930366ac8b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_ad30faccf0c3.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_12199ef712d0.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_1458b96cfc9d.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_4472b4ac1641.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_86b6d180e916.woff")format("woff");}.ff6{font-family:ff6;line-height:1.468000;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_46dfc1b67f71.woff")format("woff");}.ff7{font-family:ff7;line-height:1.416000;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_bf40b9edc7ad.woff")format("woff");}.ff8{font-family:ff8;line-height:1.450000;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_3f702523a74b.woff")format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_f3706ec343c5.woff")format("woff");}.ffa{font-family:ffa;line-height:1.342000;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_6ed8a9cd4688.woff")format("woff");}.ffb{font-family:ffb;line-height:1.295000;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_ce78f993f195.woff")format("woff");}.ffc{font-family:ffc;line-height:1.305000;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_66cf4cdbb09f.woff")format("woff");}.ffd{font-family:ffd;line-height:1.349000;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_d4ab431b65d7.woff")format("woff");}.ffe{font-family:ffe;line-height:1.362000;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_725121c7175c.woff")format("woff");}.fff{font-family:fff;line-height:1.393000;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_29ba715529e4.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_7ffb3e767567.woff")format("woff");}.ff11{font-family:ff11;line-height:1.362000;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_94ff83a570e1.woff")format("woff");}.ff12{font-family:ff12;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:ff13;src:url("fonts/font_0018_4ab4723e6ff0.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_5d8d6eb3341b.woff")format("woff");}.ff14{font-family:ff14;line-height:1.384000;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_e9cce325c9df.woff")format("woff");}.ff15{font-family:ff15;line-height:1.349000;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.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m5{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:-31.500000px;}
.v9{vertical-align:-20.298000px;}
.v4{vertical-align:-17.946000px;}
.v2{vertical-align:-10.134000px;}
.v8{vertical-align:-7.560000px;}
.v6{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.970000px;}
.v3{vertical-align:23.946000px;}
.v1{vertical-align:39.678000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000180px;}
.ls2b{letter-spacing:0.002400px;}
.ls4{letter-spacing:2.274000px;}
.ls3{letter-spacing:2.337000px;}
.ls16{letter-spacing:2.862000px;}
.ls8{letter-spacing:2.982060px;}
.ls2c{letter-spacing:2.984400px;}
.ls7{letter-spacing:2.988000px;}
.lsd{letter-spacing:2.988060px;}
.lsc{letter-spacing:2.988180px;}
.ls30{letter-spacing:2.994000px;}
.ls2{letter-spacing:8.574000px;}
.ls18{letter-spacing:11.642400px;}
.ls9{letter-spacing:11.878200px;}
.ls1f{letter-spacing:12.254400px;}
.ls15{letter-spacing:12.256200px;}
.ls20{letter-spacing:12.258000px;}
.ls14{letter-spacing:12.260400px;}
.lsb{letter-spacing:13.162200px;}
.ls2a{letter-spacing:13.190400px;}
.ls23{letter-spacing:13.988400px;}
.ls24{letter-spacing:13.990200px;}
.ls17{letter-spacing:14.628000px;}
.ls19{letter-spacing:14.634000px;}
.lsa{letter-spacing:14.868000px;}
.ls25{letter-spacing:15.092400px;}
.lse{letter-spacing:15.240180px;}
.ls13{letter-spacing:15.246000px;}
.lsf{letter-spacing:15.278400px;}
.ls26{letter-spacing:15.736200px;}
.ls1{letter-spacing:16.198560px;}
.ls2f{letter-spacing:16.764000px;}
.ls2e{letter-spacing:17.115600px;}
.ls2d{letter-spacing:17.643600px;}
.ls1a{letter-spacing:17.814000px;}
.ls6{letter-spacing:18.388200px;}
.ls1c{letter-spacing:18.592200px;}
.ls27{letter-spacing:19.198200px;}
.ls29{letter-spacing:19.516200px;}
.ls1e{letter-spacing:21.582000px;}
.ls1d{letter-spacing:21.588000px;}
.ls28{letter-spacing:22.188000px;}
.ls5{letter-spacing:22.858200px;}
.ls10{letter-spacing:24.240000px;}
.ls11{letter-spacing:24.260400px;}
.ls1b{letter-spacing:24.618000px;}
.ls22{letter-spacing:211.302180px;}
.ls21{letter-spacing:701.352180px;}
.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;}
}
.wsc6{word-spacing:-30.261600px;}
.ws1{word-spacing:-25.258858px;}
.wsbe{word-spacing:-24.516000px;}
.ws9{word-spacing:-16.980000px;}
.wsb{word-spacing:-16.200000px;}
.ws4{word-spacing:-15.786786px;}
.ws8{word-spacing:-15.282000px;}
.ws6{word-spacing:-12.735000px;}
.ws19{word-spacing:-12.258000px;}
.wsec{word-spacing:-10.903097px;}
.ws138{word-spacing:-10.215000px;}
.wsf{word-spacing:-9.450000px;}
.ws126{word-spacing:-9.000000px;}
.ws12{word-spacing:-1.816363px;}
.wsf2{word-spacing:-1.296000px;}
.wsf3{word-spacing:-1.242000px;}
.wscd{word-spacing:-1.188000px;}
.wsef{word-spacing:-1.134000px;}
.wsaf{word-spacing:-1.080000px;}
.ws2c{word-spacing:-0.918000px;}
.ws15a{word-spacing:-0.900000px;}
.ws70{word-spacing:-0.864000px;}
.ws123{word-spacing:-0.855000px;}
.ws15c{word-spacing:-0.810000px;}
.ws133{word-spacing:-0.765000px;}
.wsd4{word-spacing:-0.720000px;}
.wsd9{word-spacing:-0.702000px;}
.wsa0{word-spacing:-0.648000px;}
.ws9f{word-spacing:-0.642000px;}
.ws9e{word-spacing:-0.594000px;}
.ws12e{word-spacing:-0.495000px;}
.ws1b{word-spacing:-0.486000px;}
.wsd6{word-spacing:-0.480000px;}
.ws13b{word-spacing:-0.450000px;}
.ws18{word-spacing:-0.378000px;}
.wsc7{word-spacing:-0.324000px;}
.ws128{word-spacing:-0.315000px;}
.ws2a{word-spacing:-0.216000px;}
.ws3f{word-spacing:-0.108000px;}
.ws132{word-spacing:-0.090000px;}
.ws64{word-spacing:-0.054000px;}
.ws41{word-spacing:-0.048000px;}
.ws10d{word-spacing:-0.045000px;}
.ws11{word-spacing:-0.031500px;}
.wsbd{word-spacing:-0.006000px;}
.ws11b{word-spacing:-0.003000px;}
.ws2{word-spacing:0.000000px;}
.ws6d{word-spacing:0.054000px;}
.ws3{word-spacing:0.113574px;}
.ws110{word-spacing:0.135000px;}
.ws21{word-spacing:0.162000px;}
.ws5{word-spacing:0.170361px;}
.wse3{word-spacing:0.216000px;}
.ws103{word-spacing:0.270000px;}
.ws79{word-spacing:0.432000px;}
.ws14a{word-spacing:0.450000px;}
.ws0{word-spacing:0.454296px;}
.ws71{word-spacing:0.486000px;}
.ws139{word-spacing:0.540000px;}
.ws6e{word-spacing:0.594000px;}
.ws69{word-spacing:0.648000px;}
.ws60{word-spacing:0.702000px;}
.ws12f{word-spacing:0.765000px;}
.wsfc{word-spacing:0.810000px;}
.ws57{word-spacing:0.864000px;}
.ws75{word-spacing:0.900000px;}
.ws74{word-spacing:0.918000px;}
.wsd5{word-spacing:0.960000px;}
.wsa8{word-spacing:0.972000px;}
.ws10c{word-spacing:0.990000px;}
.wse1{word-spacing:1.080000px;}
.ws146{word-spacing:1.125000px;}
.ws14{word-spacing:1.134000px;}
.ws140{word-spacing:1.170000px;}
.ws55{word-spacing:1.188000px;}
.wsea{word-spacing:1.195515px;}
.ws152{word-spacing:1.215000px;}
.ws68{word-spacing:1.242000px;}
.wsb3{word-spacing:1.296000px;}
.ws9a{word-spacing:1.404000px;}
.wsa6{word-spacing:1.458000px;}
.ws156{word-spacing:1.485000px;}
.ws5b{word-spacing:1.512000px;}
.wsa9{word-spacing:1.566000px;}
.wsb4{word-spacing:1.620000px;}
.ws151{word-spacing:1.665000px;}
.wsae{word-spacing:1.674000px;}
.ws1d{word-spacing:1.728000px;}
.wsa7{word-spacing:1.782000px;}
.ws1a{word-spacing:1.836000px;}
.ws10f{word-spacing:1.845000px;}
.ws7c{word-spacing:1.890000px;}
.wsda{word-spacing:1.944000px;}
.ws2e{word-spacing:1.998000px;}
.ws155{word-spacing:2.070000px;}
.ws5d{word-spacing:2.160000px;}
.ws142{word-spacing:2.205000px;}
.wsc0{word-spacing:2.214000px;}
.ws85{word-spacing:2.256000px;}
.ws10a{word-spacing:2.268000px;}
.wsb5{word-spacing:2.322000px;}
.wseb{word-spacing:2.343209px;}
.wscf{word-spacing:2.376000px;}
.ws149{word-spacing:2.385000px;}
.wsd0{word-spacing:2.430000px;}
.ws157{word-spacing:2.475000px;}
.ws11c{word-spacing:2.520000px;}
.ws56{word-spacing:2.538000px;}
.ws93{word-spacing:2.592000px;}
.wsfa{word-spacing:2.646000px;}
.ws13a{word-spacing:2.655000px;}
.wsa3{word-spacing:2.700000px;}
.wsdc{word-spacing:2.754000px;}
.ws125{word-spacing:2.790000px;}
.ws97{word-spacing:2.808000px;}
.wsc3{word-spacing:2.832000px;}
.ws2d{word-spacing:2.862000px;}
.ws11a{word-spacing:2.880000px;}
.ws76{word-spacing:2.916000px;}
.ws8c{word-spacing:3.024000px;}
.wse0{word-spacing:3.078000px;}
.wsee{word-spacing:3.168000px;}
.ws15e{word-spacing:3.195000px;}
.ws116{word-spacing:3.285000px;}
.wsb2{word-spacing:3.294000px;}
.ws141{word-spacing:3.330000px;}
.wsdf{word-spacing:3.348000px;}
.wsb1{word-spacing:3.402000px;}
.wsc4{word-spacing:3.456000px;}
.ws119{word-spacing:3.465000px;}
.ws32{word-spacing:3.510000px;}
.ws6a{word-spacing:3.564000px;}
.ws107{word-spacing:3.618000px;}
.ws16{word-spacing:3.672000px;}
.ws130{word-spacing:3.690000px;}
.ws94{word-spacing:3.726000px;}
.ws115{word-spacing:3.780000px;}
.wsf7{word-spacing:3.834000px;}
.ws118{word-spacing:3.870000px;}
.ws95{word-spacing:3.888000px;}
.ws112{word-spacing:3.915000px;}
.wsa2{word-spacing:3.942000px;}
.ws145{word-spacing:3.960000px;}
.ws15{word-spacing:4.158000px;}
.ws15b{word-spacing:4.185000px;}
.wsa4{word-spacing:4.212000px;}
.ws96{word-spacing:4.320000px;}
.ws148{word-spacing:4.359000px;}
.ws147{word-spacing:4.365000px;}
.wsf4{word-spacing:4.374000px;}
.ws28{word-spacing:4.428000px;}
.ws67{word-spacing:4.431600px;}
.ws3a{word-spacing:4.482000px;}
.ws111{word-spacing:4.545000px;}
.wsc9{word-spacing:4.590000px;}
.ws77{word-spacing:4.644000px;}
.ws78{word-spacing:4.662000px;}
.ws5e{word-spacing:4.698000px;}
.ws154{word-spacing:4.725000px;}
.wsc1{word-spacing:4.752000px;}
.ws127{word-spacing:4.770000px;}
.ws6c{word-spacing:4.806000px;}
.wsa5{word-spacing:4.860000px;}
.ws86{word-spacing:4.944000px;}
.ws106{word-spacing:4.950000px;}
.ws6b{word-spacing:5.022000px;}
.ws129{word-spacing:5.040000px;}
.ws100{word-spacing:5.121600px;}
.ws108{word-spacing:5.130000px;}
.wsf5{word-spacing:5.184000px;}
.ws153{word-spacing:5.220000px;}
.wsab{word-spacing:5.238000px;}
.wsb7{word-spacing:5.292000px;}
.ws31{word-spacing:5.346000px;}
.ws25{word-spacing:5.454000px;}
.ws7d{word-spacing:5.508000px;}
.wsf6{word-spacing:5.562000px;}
.ws17{word-spacing:5.616000px;}
.ws82{word-spacing:5.670000px;}
.ws88{word-spacing:5.712000px;}
.ws4c{word-spacing:5.724000px;}
.ws8a{word-spacing:5.778000px;}
.ws14f{word-spacing:5.805000px;}
.ws7b{word-spacing:5.832000px;}
.ws150{word-spacing:5.850000px;}
.ws5f{word-spacing:5.886000px;}
.ws134{word-spacing:5.895000px;}
.ws11d{word-spacing:5.985000px;}
.wse7{word-spacing:5.994000px;}
.ws29{word-spacing:6.102000px;}
.ws62{word-spacing:6.126000px;}
.ws63{word-spacing:6.132000px;}
.ws65{word-spacing:6.156000px;}
.ws7a{word-spacing:6.210000px;}
.ws66{word-spacing:6.264000px;}
.ws59{word-spacing:6.297600px;}
.wsba{word-spacing:6.318000px;}
.ws159{word-spacing:6.345000px;}
.ws124{word-spacing:6.390000px;}
.ws73{word-spacing:6.423600px;}
.ws10b{word-spacing:6.426000px;}
.ws135{word-spacing:6.525000px;}
.wsff{word-spacing:6.588000px;}
.ws158{word-spacing:6.615000px;}
.ws98{word-spacing:6.665400px;}
.wsfb{word-spacing:6.804000px;}
.ws9c{word-spacing:6.858000px;}
.ws13d{word-spacing:6.885000px;}
.wsca{word-spacing:6.912000px;}
.wscb{word-spacing:6.966000px;}
.wsdd{word-spacing:7.020000px;}
.wsaa{word-spacing:7.128000px;}
.ws58{word-spacing:7.182000px;}
.wscc{word-spacing:7.236000px;}
.ws5c{word-spacing:7.290000px;}
.ws143{word-spacing:7.425000px;}
.ws5a{word-spacing:7.452000px;}
.ws101{word-spacing:7.506000px;}
.ws30{word-spacing:7.560000px;}
.wsfd{word-spacing:7.599600px;}
.ws144{word-spacing:7.605000px;}
.wsf8{word-spacing:7.668000px;}
.ws114{word-spacing:7.695000px;}
.wsc8{word-spacing:7.830000px;}
.wse5{word-spacing:7.938000px;}
.wse8{word-spacing:8.100000px;}
.ws8d{word-spacing:8.154000px;}
.ws89{word-spacing:8.160000px;}
.ws122{word-spacing:8.235000px;}
.wsdb{word-spacing:8.262000px;}
.ws72{word-spacing:8.370000px;}
.ws3c{word-spacing:8.424000px;}
.ws23{word-spacing:8.478000px;}
.ws50{word-spacing:8.532000px;}
.wsf1{word-spacing:8.535000px;}
.wsde{word-spacing:8.583600px;}
.ws109{word-spacing:8.640000px;}
.ws7e{word-spacing:8.748000px;}
.wsf9{word-spacing:8.802000px;}
.ws2b{word-spacing:8.910000px;}
.ws52{word-spacing:8.964000px;}
.ws14b{word-spacing:9.000000px;}
.wsf0{word-spacing:9.063000px;}
.ws91{word-spacing:9.072000px;}
.wsd1{word-spacing:9.075600px;}
.wsfe{word-spacing:9.153600px;}
.ws20{word-spacing:9.180000px;}
.ws15f{word-spacing:9.235500px;}
.wsb0{word-spacing:9.342000px;}
.wsb8{word-spacing:9.396000px;}
.ws81{word-spacing:9.558000px;}
.ws136{word-spacing:9.585000px;}
.ws137{word-spacing:9.606000px;}
.ws33{word-spacing:9.612000px;}
.ws11f{word-spacing:9.630000px;}
.ws121{word-spacing:9.675000px;}
.wse4{word-spacing:9.720000px;}
.wsd{word-spacing:9.739500px;}
.wsc5{word-spacing:9.774000px;}
.ws99{word-spacing:9.828000px;}
.ws15d{word-spacing:10.035000px;}
.wsd8{word-spacing:10.098000px;}
.wsd3{word-spacing:10.176000px;}
.ws6f{word-spacing:10.206000px;}
.ws131{word-spacing:10.215000px;}
.wsac{word-spacing:10.260000px;}
.ws54{word-spacing:10.368000px;}
.ws161{word-spacing:10.395000px;}
.wsad{word-spacing:10.422000px;}
.ws4f{word-spacing:10.476000px;}
.ws61{word-spacing:10.584000px;}
.ws53{word-spacing:10.638000px;}
.ws27{word-spacing:10.746000px;}
.wse9{word-spacing:10.842000px;}
.ws13c{word-spacing:10.845000px;}
.wsbc{word-spacing:10.854000px;}
.ws14e{word-spacing:10.890000px;}
.ws2f{word-spacing:10.908000px;}
.ws9b{word-spacing:11.016000px;}
.ws12d{word-spacing:11.025000px;}
.ws3d{word-spacing:11.124000px;}
.ws3e{word-spacing:11.340000px;}
.ws36{word-spacing:11.502000px;}
.wsc2{word-spacing:11.547600px;}
.ws34{word-spacing:11.556000px;}
.wsa1{word-spacing:11.610000px;}
.ws4e{word-spacing:11.718000px;}
.wsb9{word-spacing:11.772000px;}
.ws1f{word-spacing:11.880000px;}
.ws22{word-spacing:11.934000px;}
.ws90{word-spacing:11.988000px;}
.ws11e{word-spacing:12.060000px;}
.ws10{word-spacing:12.288000px;}
.ws1c{word-spacing:12.312000px;}
.ws8b{word-spacing:12.366000px;}
.ws13f{word-spacing:12.375000px;}
.wsbb{word-spacing:12.474000px;}
.ws13{word-spacing:12.481177px;}
.ws4a{word-spacing:12.582000px;}
.wsce{word-spacing:13.011600px;}
.wse6{word-spacing:13.068000px;}
.ws84{word-spacing:13.128000px;}
.ws160{word-spacing:13.140000px;}
.ws14d{word-spacing:13.230000px;}
.ws9d{word-spacing:13.284000px;}
.ws113{word-spacing:13.410000px;}
.ws117{word-spacing:13.467000px;}
.ws13e{word-spacing:13.500000px;}
.ws12a{word-spacing:13.545000px;}
.wsb6{word-spacing:13.662000px;}
.ws3b{word-spacing:13.770000px;}
.ws8f{word-spacing:13.932000px;}
.wsed{word-spacing:14.052000px;}
.wsd7{word-spacing:14.094000px;}
.ws102{word-spacing:14.418000px;}
.ws8e{word-spacing:14.634000px;}
.ws105{word-spacing:14.688000px;}
.ws47{word-spacing:14.904000px;}
.ws1e{word-spacing:15.066000px;}
.ws83{word-spacing:15.120000px;}
.ws24{word-spacing:15.279600px;}
.ws51{word-spacing:15.351600px;}
.ws37{word-spacing:16.470000px;}
.wsd2{word-spacing:16.479600px;}
.ws39{word-spacing:16.524000px;}
.ws87{word-spacing:16.590000px;}
.ws14c{word-spacing:16.830000px;}
.ws104{word-spacing:16.902000px;}
.ws10e{word-spacing:17.325000px;}
.ws4b{word-spacing:17.496000px;}
.ws26{word-spacing:17.670000px;}
.ws35{word-spacing:18.333600px;}
.ws4d{word-spacing:18.519600px;}
.ws42{word-spacing:19.710000px;}
.ws120{word-spacing:19.833000px;}
.ws12c{word-spacing:20.205000px;}
.ws40{word-spacing:20.628000px;}
.ws92{word-spacing:20.790000px;}
.ws46{word-spacing:21.654000px;}
.ws38{word-spacing:23.319600px;}
.ws80{word-spacing:23.328000px;}
.ws12b{word-spacing:23.724000px;}
.wse2{word-spacing:25.920000px;}
.ws43{word-spacing:25.974000px;}
.ws45{word-spacing:28.461600px;}
.ws48{word-spacing:28.890000px;}
.ws44{word-spacing:29.808000px;}
.ws7f{word-spacing:31.212000px;}
.ws49{word-spacing:41.148000px;}
.wse{word-spacing:97.579500px;}
.wsc{word-spacing:97.581000px;}
.wsa{word-spacing:197.202000px;}
.ws7{word-spacing:883.076946px;}
.wsbf{word-spacing:1043.280000px;}
._2c{margin-left:-18.000000px;}
._17{margin-left:-12.258000px;}
._c{margin-left:-7.155162px;}
._b{margin-left:-5.678700px;}
._7{margin-left:-4.542960px;}
._1{margin-left:-2.725776px;}
._2{margin-left:-1.249314px;}
._0{width:1.362888px;}
._8{width:2.952924px;}
._1d{width:7.062858px;}
._13{width:8.444571px;}
._5{width:9.483429px;}
._11{width:10.746000px;}
._1e{width:11.989776px;}
._10{width:13.327593px;}
._a{width:14.878194px;}
._d{width:16.979313px;}
._6{width:18.682923px;}
._9{width:20.386533px;}
._4{width:37.252272px;}
._3{width:45.145665px;}
._e{width:59.999987px;}
._29{width:91.962000px;}
._21{width:97.902000px;}
._1f{width:104.868000px;}
._1b{width:159.678000px;}
._25{width:367.200000px;}
._1c{width:378.402000px;}
._23{width:380.160000px;}
._2b{width:389.340000px;}
._27{width:415.260000px;}
._28{width:436.050000px;}
._18{width:448.825629px;}
._14{width:486.756000px;}
._20{width:519.750000px;}
._2a{width:548.349429px;}
._24{width:612.468000px;}
._26{width:634.554000px;}
._22{width:651.348000px;}
._15{width:681.478200px;}
._1a{width:786.024000px;}
._16{width:877.716000px;}
._19{width:905.796000px;}
._f{width:1335.099966px;}
._12{width:1852.291776px;}
.fc5{color:rgb(83,172,228);}
.fc4{color:rgb(73,73,81);}
.fc2{color:rgb(0,174,239);}
.fc1{color:rgb(91,75,75);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:30.000000px;}
.fs9{font-size:31.500000px;}
.fse{font-size:33.600000px;}
.fsc{font-size:37.200000px;}
.fsd{font-size:37.800000px;}
.fs3{font-size:45.000000px;}
.fsb{font-size:47.820600px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:53.798400px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:56.787000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:62.466000px;}
.fs0{font-size:90.859200px;}
.fs1{font-size:113.574000px;}
.fs4{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:60.739471px;}
.y63{bottom:61.444500px;}
.y62{bottom:80.710500px;}
.y18{bottom:86.239471px;}
.y17{bottom:111.475500px;}
.y16{bottom:129.409500px;}
.y15{bottom:147.342000px;}
.y9a{bottom:149.478000px;}
.ydc{bottom:150.220500px;}
.y1a0{bottom:150.894000px;}
.y15e{bottom:151.189500px;}
.y10f{bottom:151.266000px;}
.y61{bottom:151.324500px;}
.y52{bottom:151.383000px;}
.yae{bottom:159.270000px;}
.y126{bottom:163.552500px;}
.y19f{bottom:164.394000px;}
.y15d{bottom:164.689500px;}
.y99{bottom:165.228000px;}
.y14{bottom:165.274500px;}
.ydb{bottom:165.970500px;}
.y10e{bottom:167.016000px;}
.y60{bottom:167.074500px;}
.y51{bottom:167.133000px;}
.yad{bottom:172.770000px;}
.y15c{bottom:178.189500px;}
.y125{bottom:179.302500px;}
.y98{bottom:180.978000px;}
.yda{bottom:181.720500px;}
.y10d{bottom:182.766000px;}
.y5f{bottom:182.824500px;}
.y50{bottom:182.883000px;}
.y19e{bottom:182.968500px;}
.yac{bottom:186.270000px;}
.y19d{bottom:194.382000px;}
.y124{bottom:195.052500px;}
.y97{bottom:196.728000px;}
.y15b{bottom:196.764000px;}
.yd9{bottom:197.470500px;}
.y10c{bottom:198.516000px;}
.y5e{bottom:198.574500px;}
.y4f{bottom:198.633000px;}
.y11c{bottom:199.770000px;}
.y15a{bottom:206.683500px;}
.y19c{bottom:207.882000px;}
.y123{bottom:210.802500px;}
.y96{bottom:212.478000px;}
.yd8{bottom:213.220500px;}
.y10b{bottom:214.266000px;}
.y5d{bottom:214.324500px;}
.y4e{bottom:214.383000px;}
.y159{bottom:220.183500px;}
.y19b{bottom:226.456500px;}
.y122{bottom:226.552500px;}
.y95{bottom:228.228000px;}
.yd7{bottom:228.970500px;}
.y10a{bottom:230.016000px;}
.y5c{bottom:230.074500px;}
.y4d{bottom:230.133000px;}
.y13{bottom:237.006000px;}
.y19a{bottom:237.124500px;}
.y158{bottom:238.758000px;}
.y121{bottom:242.302500px;}
.y94{bottom:243.978000px;}
.yd6{bottom:244.720500px;}
.y109{bottom:245.766000px;}
.y5b{bottom:245.824500px;}
.y4c{bottom:245.883000px;}
.y157{bottom:248.677500px;}
.y12{bottom:254.938500px;}
.y199{bottom:255.699000px;}
.y93{bottom:259.728000px;}
.yd5{bottom:260.470500px;}
.y108{bottom:261.516000px;}
.y5a{bottom:261.574500px;}
.y4b{bottom:261.633000px;}
.y156{bottom:262.177500px;}
.y198{bottom:265.618500px;}
.y120{bottom:268.872000px;}
.y11{bottom:272.871000px;}
.y92{bottom:275.478000px;}
.y155{bottom:275.677500px;}
.yd4{bottom:276.220500px;}
.y107{bottom:277.266000px;}
.y59{bottom:277.324500px;}
.y4a{bottom:277.383000px;}
.y197{bottom:279.118500px;}
.y10{bottom:290.803500px;}
.y91{bottom:291.228000px;}
.yd3{bottom:291.970500px;}
.y196{bottom:292.618500px;}
.y11f{bottom:292.950000px;}
.y106{bottom:293.016000px;}
.y58{bottom:293.074500px;}
.y49{bottom:293.133000px;}
.y154{bottom:294.252000px;}
.y153{bottom:304.171500px;}
.y11e{bottom:306.399000px;}
.y90{bottom:306.978000px;}
.yd2{bottom:307.720500px;}
.yf{bottom:308.736000px;}
.y105{bottom:308.766000px;}
.y57{bottom:308.824500px;}
.y48{bottom:308.883000px;}
.y195{bottom:311.193000px;}
.y152{bottom:317.671500px;}
.y11d{bottom:319.849500px;}
.y194{bottom:321.112500px;}
.ycd{bottom:322.728000px;}
.yd1{bottom:323.470500px;}
.y104{bottom:324.516000px;}
.y56{bottom:324.574500px;}
.y47{bottom:324.633000px;}
.ye{bottom:326.668500px;}
.y8f{bottom:327.957000px;}
.y151{bottom:331.171500px;}
.y193{bottom:334.612500px;}
.ycc{bottom:338.478000px;}
.y103{bottom:340.266000px;}
.y55{bottom:340.324500px;}
.y46{bottom:340.383000px;}
.yd0{bottom:344.451000px;}
.yd{bottom:344.602500px;}
.y150{bottom:344.671500px;}
.y192{bottom:348.112500px;}
.y8e{bottom:349.683000px;}
.ycb{bottom:354.228000px;}
.y102{bottom:356.016000px;}
.y54{bottom:356.074500px;}
.y45{bottom:356.133000px;}
.y191{bottom:361.612500px;}
.y14f{bottom:363.247500px;}
.y190{bottom:366.687000px;}
.yca{bottom:369.978000px;}
.ycf{bottom:371.715000px;}
.y101{bottom:371.766000px;}
.y53{bottom:371.824500px;}
.y14e{bottom:373.167000px;}
.y18f{bottom:376.606500px;}
.yc9{bottom:385.728000px;}
.y14d{bottom:386.667000px;}
.yce{bottom:387.465000px;}
.y100{bottom:387.516000px;}
.y44{bottom:387.574500px;}
.y18e{bottom:390.106500px;}
.yc{bottom:398.400000px;}
.y14c{bottom:400.167000px;}
.yc8{bottom:401.478000px;}
.y8d{bottom:403.215000px;}
.yff{bottom:403.266000px;}
.y18d{bottom:408.681000px;}
.yb{bottom:416.332500px;}
.yc7{bottom:417.228000px;}
.y14b{bottom:418.741500px;}
.y8c{bottom:418.965000px;}
.yfe{bottom:419.016000px;}
.y18c{bottom:419.349000px;}
.y14a{bottom:428.661000px;}
.y18b{bottom:432.849000px;}
.yc6{bottom:432.978000px;}
.y8b{bottom:434.715000px;}
.yfd{bottom:434.766000px;}
.y149{bottom:442.161000px;}
.y18a{bottom:446.349000px;}
.yc5{bottom:448.728000px;}
.y8a{bottom:450.465000px;}
.yfc{bottom:450.516000px;}
.ya{bottom:452.199000px;}
.y148{bottom:460.735500px;}
.yc4{bottom:464.478000px;}
.y189{bottom:464.923500px;}
.y89{bottom:466.215000px;}
.yfb{bottom:466.266000px;}
.y9{bottom:470.131500px;}
.y147{bottom:470.655000px;}
.y43{bottom:472.449000px;}
.y188{bottom:475.590000px;}
.yc3{bottom:480.228000px;}
.y88{bottom:481.965000px;}
.yfa{bottom:482.016000px;}
.y8{bottom:488.064000px;}
.y187{bottom:489.090000px;}
.y146{bottom:489.229500px;}
.y42{bottom:494.521500px;}
.yc2{bottom:495.978000px;}
.y87{bottom:497.715000px;}
.yf9{bottom:497.766000px;}
.y29{bottom:501.555002px;}
.y186{bottom:502.590000px;}
.y7{bottom:505.996500px;}
.y145{bottom:506.622000px;}
.y41{bottom:510.271500px;}
.yc1{bottom:511.728000px;}
.y86{bottom:513.465000px;}
.y139{bottom:513.516000px;}
.y185{bottom:516.090000px;}
.yf8{bottom:518.746500px;}
.yab{bottom:521.695500px;}
.y28{bottom:523.305002px;}
.y40{bottom:526.021500px;}
.yc0{bottom:527.478000px;}
.y85{bottom:529.215000px;}
.y138{bottom:529.266000px;}
.y184{bottom:534.664500px;}
.yaa{bottom:537.445500px;}
.y144{bottom:539.988000px;}
.y3f{bottom:541.771500px;}
.ybf{bottom:543.228000px;}
.y84{bottom:544.965000px;}
.y137{bottom:545.016000px;}
.y183{bottom:545.331000px;}
.y6{bottom:550.828500px;}
.ya9{bottom:553.195500px;}
.y143{bottom:555.738000px;}
.y3e{bottom:557.521500px;}
.y182{bottom:558.831000px;}
.ybe{bottom:558.978000px;}
.yf7{bottom:559.878000px;}
.y83{bottom:560.715000px;}
.y136{bottom:560.766000px;}
.y27{bottom:560.805002px;}
.ya8{bottom:568.945500px;}
.y181{bottom:572.331000px;}
.y3d{bottom:573.271500px;}
.y142{bottom:574.147500px;}
.ybd{bottom:574.728000px;}
.yf6{bottom:575.628000px;}
.y82{bottom:576.465000px;}
.y135{bottom:576.516000px;}
.y26{bottom:582.555002px;}
.ya7{bottom:584.695500px;}
.y180{bottom:585.831000px;}
.y11b{bottom:586.833000px;}
.y3c{bottom:589.021500px;}
.ybc{bottom:590.478000px;}
.yf5{bottom:591.378000px;}
.y81{bottom:592.215000px;}
.y134{bottom:592.266000px;}
.y17f{bottom:599.331000px;}
.ya6{bottom:600.445500px;}
.y25{bottom:602.055002px;}
.y11a{bottom:602.583000px;}
.y3b{bottom:604.771500px;}
.ybb{bottom:606.228000px;}
.yf4{bottom:607.128000px;}
.y80{bottom:607.965000px;}
.y133{bottom:608.016000px;}
.ya5{bottom:616.195500px;}
.y17e{bottom:617.905500px;}
.y119{bottom:618.333000px;}
.y3a{bottom:620.521500px;}
.y141{bottom:620.529000px;}
.yba{bottom:621.978000px;}
.yf3{bottom:622.878000px;}
.y7f{bottom:623.715000px;}
.y132{bottom:623.766000px;}
.y17d{bottom:628.573500px;}
.ya4{bottom:631.945500px;}
.y118{bottom:634.083000px;}
.yb9{bottom:637.728000px;}
.yf2{bottom:638.628000px;}
.y7e{bottom:639.465000px;}
.y131{bottom:639.516000px;}
.y24{bottom:639.555002px;}
.y17c{bottom:642.073500px;}
.y39{bottom:642.828000px;}
.y140{bottom:645.246000px;}
.ya3{bottom:647.695500px;}
.y117{bottom:649.833000px;}
.yb8{bottom:653.478000px;}
.yf1{bottom:654.378000px;}
.y7d{bottom:655.215000px;}
.y17b{bottom:655.573500px;}
.y13f{bottom:660.996000px;}
.y23{bottom:661.305002px;}
.y130{bottom:661.990500px;}
.ya2{bottom:663.445500px;}
.y116{bottom:665.583000px;}
.yb7{bottom:669.228000px;}
.yf0{bottom:670.128000px;}
.y7c{bottom:670.965000px;}
.y17a{bottom:674.148000px;}
.y13e{bottom:676.746000px;}
.ya1{bottom:679.195500px;}
.y22{bottom:680.805002px;}
.y115{bottom:681.333000px;}
.y179{bottom:684.814500px;}
.yb6{bottom:684.978000px;}
.yef{bottom:685.878000px;}
.y7b{bottom:686.715000px;}
.y13d{bottom:692.496000px;}
.y38{bottom:693.166500px;}
.y12f{bottom:694.351500px;}
.ya0{bottom:694.945500px;}
.y114{bottom:697.083000px;}
.y178{bottom:698.314500px;}
.yb5{bottom:700.728000px;}
.yee{bottom:701.628000px;}
.y7a{bottom:702.465000px;}
.y37{bottom:708.111000px;}
.y13c{bottom:708.246000px;}
.y12e{bottom:710.101500px;}
.y9f{bottom:710.695500px;}
.y177{bottom:711.814500px;}
.y113{bottom:712.833000px;}
.yb4{bottom:716.478000px;}
.yed{bottom:717.378000px;}
.y79{bottom:718.215000px;}
.y21{bottom:719.805002px;}
.y13b{bottom:723.996000px;}
.y12d{bottom:725.851500px;}
.y9e{bottom:726.445500px;}
.y112{bottom:728.583000px;}
.y176{bottom:730.389000px;}
.yb3{bottom:732.228000px;}
.yec{bottom:733.128000px;}
.y78{bottom:733.965000px;}
.y36{bottom:738.198000px;}
.y175{bottom:741.055500px;}
.y12c{bottom:741.601500px;}
.y9d{bottom:742.195500px;}
.y111{bottom:744.333000px;}
.y13a{bottom:745.723500px;}
.yb2{bottom:747.978000px;}
.y77{bottom:749.715000px;}
.yeb{bottom:754.108500px;}
.y174{bottom:754.555500px;}
.y35{bottom:756.187500px;}
.y12b{bottom:757.351500px;}
.y9c{bottom:757.945500px;}
.y110{bottom:760.083000px;}
.y76{bottom:765.465000px;}
.y12a{bottom:773.101500px;}
.y173{bottom:773.130000px;}
.y34{bottom:774.175500px;}
.yea{bottom:775.833000px;}
.y9b{bottom:778.926000px;}
.y75{bottom:781.215000px;}
.y1be{bottom:783.499500px;}
.y172{bottom:783.798000px;}
.y1b0{bottom:784.993500px;}
.y129{bottom:788.851500px;}
.y33{bottom:793.359000px;}
.y74{bottom:796.965000px;}
.y1bd{bottom:796.999500px;}
.y171{bottom:797.298000px;}
.y5{bottom:798.076500px;}
.y1af{bottom:798.493500px;}
.y1bc{bottom:810.499500px;}
.y170{bottom:810.798000px;}
.y73{bottom:812.715000px;}
.yb1{bottom:813.057000px;}
.y1ae{bottom:817.068000px;}
.y32{bottom:825.078000px;}
.yb0{bottom:826.557000px;}
.ye9{bottom:826.660500px;}
.y1ad{bottom:826.987500px;}
.y72{bottom:828.465000px;}
.y1bb{bottom:829.074000px;}
.y16f{bottom:829.372500px;}
.y4{bottom:833.941500px;}
.y1ba{bottom:838.993500px;}
.y16e{bottom:839.740500px;}
.yaf{bottom:840.057000px;}
.y1ac{bottom:840.487500px;}
.ye8{bottom:842.410500px;}
.y71{bottom:844.215000px;}
.y128{bottom:846.357000px;}
.y1b9{bottom:852.493500px;}
.y16d{bottom:853.240500px;}
.y1ab{bottom:853.987500px;}
.y20{bottom:856.559999px;}
.y127{bottom:859.857000px;}
.y70{bottom:859.965000px;}
.y31{bottom:860.683500px;}
.ye7{bottom:862.644000px;}
.y16c{bottom:866.740500px;}
.y3{bottom:869.806500px;}
.y1b8{bottom:871.068000px;}
.y1aa{bottom:872.562000px;}
.y6f{bottom:875.715000px;}
.y30{bottom:878.617500px;}
.y1b7{bottom:880.987500px;}
.y1a9{bottom:882.481500px;}
.ye6{bottom:882.876000px;}
.y16b{bottom:885.315000px;}
.y6e{bottom:891.465000px;}
.y1b6{bottom:894.487500px;}
.y16a{bottom:895.234500px;}
.y2f{bottom:895.578000px;}
.y1a8{bottom:895.981500px;}
.ye5{bottom:898.626000px;}
.y1f{bottom:900.501009px;}
.y6d{bottom:907.215000px;}
.y169{bottom:908.734500px;}
.y1a7{bottom:909.481500px;}
.y1b5{bottom:913.062000px;}
.y1e{bottom:918.201002px;}
.ye4{bottom:918.859500px;}
.y6c{bottom:922.965000px;}
.y1b4{bottom:922.981500px;}
.y168{bottom:927.309000px;}
.y1a6{bottom:928.056000px;}
.y2{bottom:932.571000px;}
.ye3{bottom:934.609500px;}
.y1b3{bottom:936.481500px;}
.y167{bottom:937.228500px;}
.y6b{bottom:938.715000px;}
.y1a5{bottom:943.051500px;}
.ye2{bottom:950.359500px;}
.y166{bottom:950.728500px;}
.y2e{bottom:951.507000px;}
.y1a4{bottom:952.971000px;}
.y6a{bottom:954.465000px;}
.y1b2{bottom:955.056000px;}
.y1{bottom:962.460000px;}
.ye1{bottom:966.109500px;}
.y1a3{bottom:966.471000px;}
.y1d{bottom:967.379995px;}
.y165{bottom:969.303000px;}
.y1b1{bottom:970.051500px;}
.y69{bottom:970.215000px;}
.y164{bottom:979.971000px;}
.ye0{bottom:981.859500px;}
.y68{bottom:985.965000px;}
.y2d{bottom:987.507000px;}
.y163{bottom:993.471000px;}
.ydf{bottom:997.609500px;}
.y1a2{bottom:998.545500px;}
.y67{bottom:1001.715000px;}
.y1c{bottom:1003.379995px;}
.y1a1{bottom:1008.465000px;}
.y162{bottom:1012.045500px;}
.y66{bottom:1017.465000px;}
.y161{bottom:1021.965000px;}
.y2c{bottom:1023.507000px;}
.yde{bottom:1024.177500px;}
.y65{bottom:1033.215000px;}
.y160{bottom:1035.465000px;}
.y1b{bottom:1039.380001px;}
.y64{bottom:1048.965000px;}
.ydd{bottom:1051.012500px;}
.y15f{bottom:1054.039500px;}
.y1a{bottom:1075.380001px;}
.y2b{bottom:1111.008000px;}
.y2a{bottom:1128.567000px;}
.h12{height:33.894000px;}
.h20{height:34.800000px;}
.h7{height:36.495000px;}
.h13{height:37.591896px;}
.ha{height:40.608000px;}
.h5{height:42.079167px;}
.h4{height:42.192741px;}
.h9{height:43.794000px;}
.h22{height:44.505000px;}
.h23{height:45.090000px;}
.h25{height:45.135000px;}
.h24{height:45.297000px;}
.h21{height:46.080000px;}
.hb{height:47.220000px;}
.hc{height:48.660000px;}
.h1f{height:51.933172px;}
.h19{height:52.128000px;}
.h18{height:53.232000px;}
.h15{height:53.406000px;}
.h16{height:54.108000px;}
.h1b{height:54.754800px;}
.h17{height:54.760800px;}
.h1a{height:61.324200px;}
.h1d{height:61.330200px;}
.h14{height:62.406144px;}
.h11{height:62.640000px;}
.h10{height:63.072000px;}
.h1e{height:64.272600px;}
.h1c{height:64.278600px;}
.h2{height:67.326667px;}
.hd{height:72.960288px;}
.h3{height:84.385482px;}
.h8{height:94.440000px;}
.he{height:99.564000px;}
.hf{height:139.200000px;}
.h6{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:891.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:43.741500px;}
.x6{left:52.707000px;}
.x5{left:59.647500px;}
.x7{left:66.157500px;}
.xd{left:72.135000px;}
.x8{left:93.055500px;}
.x1{left:101.298000px;}
.xe{left:109.792500px;}
.x3{left:174.000000px;}
.x2{left:180.000000px;}
.x4{left:189.000000px;}
.x10{left:378.867000px;}
.xf{left:451.395000px;}
.x9{left:459.157500px;}
.xc{left:465.135000px;}
.x12{left:473.557500px;}
.xa{left:486.055500px;}
.x13{left:660.901500px;}
.x14{left:667.642500px;}
.x11{left:703.360500px;}
.x15{left:738.382500px;}
@media print{
.v7{vertical-align:-28.000000pt;}
.v9{vertical-align:-18.042667pt;}
.v4{vertical-align:-15.952000pt;}
.v2{vertical-align:-9.008000pt;}
.v8{vertical-align:-6.720000pt;}
.v6{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.973333pt;}
.v3{vertical-align:21.285333pt;}
.v1{vertical-align:35.269333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000160pt;}
.ls2b{letter-spacing:0.002133pt;}
.ls4{letter-spacing:2.021333pt;}
.ls3{letter-spacing:2.077333pt;}
.ls16{letter-spacing:2.544000pt;}
.ls8{letter-spacing:2.650720pt;}
.ls2c{letter-spacing:2.652800pt;}
.ls7{letter-spacing:2.656000pt;}
.lsd{letter-spacing:2.656053pt;}
.lsc{letter-spacing:2.656160pt;}
.ls30{letter-spacing:2.661333pt;}
.ls2{letter-spacing:7.621333pt;}
.ls18{letter-spacing:10.348800pt;}
.ls9{letter-spacing:10.558400pt;}
.ls1f{letter-spacing:10.892800pt;}
.ls15{letter-spacing:10.894400pt;}
.ls20{letter-spacing:10.896000pt;}
.ls14{letter-spacing:10.898133pt;}
.lsb{letter-spacing:11.699733pt;}
.ls2a{letter-spacing:11.724800pt;}
.ls23{letter-spacing:12.434133pt;}
.ls24{letter-spacing:12.435733pt;}
.ls17{letter-spacing:13.002667pt;}
.ls19{letter-spacing:13.008000pt;}
.lsa{letter-spacing:13.216000pt;}
.ls25{letter-spacing:13.415467pt;}
.lse{letter-spacing:13.546827pt;}
.ls13{letter-spacing:13.552000pt;}
.lsf{letter-spacing:13.580800pt;}
.ls26{letter-spacing:13.987733pt;}
.ls1{letter-spacing:14.398720pt;}
.ls2f{letter-spacing:14.901333pt;}
.ls2e{letter-spacing:15.213867pt;}
.ls2d{letter-spacing:15.683200pt;}
.ls1a{letter-spacing:15.834667pt;}
.ls6{letter-spacing:16.345067pt;}
.ls1c{letter-spacing:16.526400pt;}
.ls27{letter-spacing:17.065067pt;}
.ls29{letter-spacing:17.347733pt;}
.ls1e{letter-spacing:19.184000pt;}
.ls1d{letter-spacing:19.189333pt;}
.ls28{letter-spacing:19.722667pt;}
.ls5{letter-spacing:20.318400pt;}
.ls10{letter-spacing:21.546667pt;}
.ls11{letter-spacing:21.564800pt;}
.ls1b{letter-spacing:21.882667pt;}
.ls22{letter-spacing:187.824160pt;}
.ls21{letter-spacing:623.424160pt;}
.wsc6{word-spacing:-26.899200pt;}
.ws1{word-spacing:-22.452318pt;}
.wsbe{word-spacing:-21.792000pt;}
.ws9{word-spacing:-15.093333pt;}
.wsb{word-spacing:-14.400000pt;}
.ws4{word-spacing:-14.032699pt;}
.ws8{word-spacing:-13.584000pt;}
.ws6{word-spacing:-11.320000pt;}
.ws19{word-spacing:-10.896000pt;}
.wsec{word-spacing:-9.691642pt;}
.ws138{word-spacing:-9.080000pt;}
.wsf{word-spacing:-8.400000pt;}
.ws126{word-spacing:-8.000000pt;}
.ws12{word-spacing:-1.614545pt;}
.wsf2{word-spacing:-1.152000pt;}
.wsf3{word-spacing:-1.104000pt;}
.wscd{word-spacing:-1.056000pt;}
.wsef{word-spacing:-1.008000pt;}
.wsaf{word-spacing:-0.960000pt;}
.ws2c{word-spacing:-0.816000pt;}
.ws15a{word-spacing:-0.800000pt;}
.ws70{word-spacing:-0.768000pt;}
.ws123{word-spacing:-0.760000pt;}
.ws15c{word-spacing:-0.720000pt;}
.ws133{word-spacing:-0.680000pt;}
.wsd4{word-spacing:-0.640000pt;}
.wsd9{word-spacing:-0.624000pt;}
.wsa0{word-spacing:-0.576000pt;}
.ws9f{word-spacing:-0.570667pt;}
.ws9e{word-spacing:-0.528000pt;}
.ws12e{word-spacing:-0.440000pt;}
.ws1b{word-spacing:-0.432000pt;}
.wsd6{word-spacing:-0.426667pt;}
.ws13b{word-spacing:-0.400000pt;}
.ws18{word-spacing:-0.336000pt;}
.wsc7{word-spacing:-0.288000pt;}
.ws128{word-spacing:-0.280000pt;}
.ws2a{word-spacing:-0.192000pt;}
.ws3f{word-spacing:-0.096000pt;}
.ws132{word-spacing:-0.080000pt;}
.ws64{word-spacing:-0.048000pt;}
.ws41{word-spacing:-0.042667pt;}
.ws10d{word-spacing:-0.040000pt;}
.ws11{word-spacing:-0.028000pt;}
.wsbd{word-spacing:-0.005333pt;}
.ws11b{word-spacing:-0.002667pt;}
.ws2{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.048000pt;}
.ws3{word-spacing:0.100955pt;}
.ws110{word-spacing:0.120000pt;}
.ws21{word-spacing:0.144000pt;}
.ws5{word-spacing:0.151432pt;}
.wse3{word-spacing:0.192000pt;}
.ws103{word-spacing:0.240000pt;}
.ws79{word-spacing:0.384000pt;}
.ws14a{word-spacing:0.400000pt;}
.ws0{word-spacing:0.403819pt;}
.ws71{word-spacing:0.432000pt;}
.ws139{word-spacing:0.480000pt;}
.ws6e{word-spacing:0.528000pt;}
.ws69{word-spacing:0.576000pt;}
.ws60{word-spacing:0.624000pt;}
.ws12f{word-spacing:0.680000pt;}
.wsfc{word-spacing:0.720000pt;}
.ws57{word-spacing:0.768000pt;}
.ws75{word-spacing:0.800000pt;}
.ws74{word-spacing:0.816000pt;}
.wsd5{word-spacing:0.853333pt;}
.wsa8{word-spacing:0.864000pt;}
.ws10c{word-spacing:0.880000pt;}
.wse1{word-spacing:0.960000pt;}
.ws146{word-spacing:1.000000pt;}
.ws14{word-spacing:1.008000pt;}
.ws140{word-spacing:1.040000pt;}
.ws55{word-spacing:1.056000pt;}
.wsea{word-spacing:1.062680pt;}
.ws152{word-spacing:1.080000pt;}
.ws68{word-spacing:1.104000pt;}
.wsb3{word-spacing:1.152000pt;}
.ws9a{word-spacing:1.248000pt;}
.wsa6{word-spacing:1.296000pt;}
.ws156{word-spacing:1.320000pt;}
.ws5b{word-spacing:1.344000pt;}
.wsa9{word-spacing:1.392000pt;}
.wsb4{word-spacing:1.440000pt;}
.ws151{word-spacing:1.480000pt;}
.wsae{word-spacing:1.488000pt;}
.ws1d{word-spacing:1.536000pt;}
.wsa7{word-spacing:1.584000pt;}
.ws1a{word-spacing:1.632000pt;}
.ws10f{word-spacing:1.640000pt;}
.ws7c{word-spacing:1.680000pt;}
.wsda{word-spacing:1.728000pt;}
.ws2e{word-spacing:1.776000pt;}
.ws155{word-spacing:1.840000pt;}
.ws5d{word-spacing:1.920000pt;}
.ws142{word-spacing:1.960000pt;}
.wsc0{word-spacing:1.968000pt;}
.ws85{word-spacing:2.005333pt;}
.ws10a{word-spacing:2.016000pt;}
.wsb5{word-spacing:2.064000pt;}
.wseb{word-spacing:2.082853pt;}
.wscf{word-spacing:2.112000pt;}
.ws149{word-spacing:2.120000pt;}
.wsd0{word-spacing:2.160000pt;}
.ws157{word-spacing:2.200000pt;}
.ws11c{word-spacing:2.240000pt;}
.ws56{word-spacing:2.256000pt;}
.ws93{word-spacing:2.304000pt;}
.wsfa{word-spacing:2.352000pt;}
.ws13a{word-spacing:2.360000pt;}
.wsa3{word-spacing:2.400000pt;}
.wsdc{word-spacing:2.448000pt;}
.ws125{word-spacing:2.480000pt;}
.ws97{word-spacing:2.496000pt;}
.wsc3{word-spacing:2.517333pt;}
.ws2d{word-spacing:2.544000pt;}
.ws11a{word-spacing:2.560000pt;}
.ws76{word-spacing:2.592000pt;}
.ws8c{word-spacing:2.688000pt;}
.wse0{word-spacing:2.736000pt;}
.wsee{word-spacing:2.816000pt;}
.ws15e{word-spacing:2.840000pt;}
.ws116{word-spacing:2.920000pt;}
.wsb2{word-spacing:2.928000pt;}
.ws141{word-spacing:2.960000pt;}
.wsdf{word-spacing:2.976000pt;}
.wsb1{word-spacing:3.024000pt;}
.wsc4{word-spacing:3.072000pt;}
.ws119{word-spacing:3.080000pt;}
.ws32{word-spacing:3.120000pt;}
.ws6a{word-spacing:3.168000pt;}
.ws107{word-spacing:3.216000pt;}
.ws16{word-spacing:3.264000pt;}
.ws130{word-spacing:3.280000pt;}
.ws94{word-spacing:3.312000pt;}
.ws115{word-spacing:3.360000pt;}
.wsf7{word-spacing:3.408000pt;}
.ws118{word-spacing:3.440000pt;}
.ws95{word-spacing:3.456000pt;}
.ws112{word-spacing:3.480000pt;}
.wsa2{word-spacing:3.504000pt;}
.ws145{word-spacing:3.520000pt;}
.ws15{word-spacing:3.696000pt;}
.ws15b{word-spacing:3.720000pt;}
.wsa4{word-spacing:3.744000pt;}
.ws96{word-spacing:3.840000pt;}
.ws148{word-spacing:3.874667pt;}
.ws147{word-spacing:3.880000pt;}
.wsf4{word-spacing:3.888000pt;}
.ws28{word-spacing:3.936000pt;}
.ws67{word-spacing:3.939200pt;}
.ws3a{word-spacing:3.984000pt;}
.ws111{word-spacing:4.040000pt;}
.wsc9{word-spacing:4.080000pt;}
.ws77{word-spacing:4.128000pt;}
.ws78{word-spacing:4.144000pt;}
.ws5e{word-spacing:4.176000pt;}
.ws154{word-spacing:4.200000pt;}
.wsc1{word-spacing:4.224000pt;}
.ws127{word-spacing:4.240000pt;}
.ws6c{word-spacing:4.272000pt;}
.wsa5{word-spacing:4.320000pt;}
.ws86{word-spacing:4.394667pt;}
.ws106{word-spacing:4.400000pt;}
.ws6b{word-spacing:4.464000pt;}
.ws129{word-spacing:4.480000pt;}
.ws100{word-spacing:4.552533pt;}
.ws108{word-spacing:4.560000pt;}
.wsf5{word-spacing:4.608000pt;}
.ws153{word-spacing:4.640000pt;}
.wsab{word-spacing:4.656000pt;}
.wsb7{word-spacing:4.704000pt;}
.ws31{word-spacing:4.752000pt;}
.ws25{word-spacing:4.848000pt;}
.ws7d{word-spacing:4.896000pt;}
.wsf6{word-spacing:4.944000pt;}
.ws17{word-spacing:4.992000pt;}
.ws82{word-spacing:5.040000pt;}
.ws88{word-spacing:5.077333pt;}
.ws4c{word-spacing:5.088000pt;}
.ws8a{word-spacing:5.136000pt;}
.ws14f{word-spacing:5.160000pt;}
.ws7b{word-spacing:5.184000pt;}
.ws150{word-spacing:5.200000pt;}
.ws5f{word-spacing:5.232000pt;}
.ws134{word-spacing:5.240000pt;}
.ws11d{word-spacing:5.320000pt;}
.wse7{word-spacing:5.328000pt;}
.ws29{word-spacing:5.424000pt;}
.ws62{word-spacing:5.445333pt;}
.ws63{word-spacing:5.450667pt;}
.ws65{word-spacing:5.472000pt;}
.ws7a{word-spacing:5.520000pt;}
.ws66{word-spacing:5.568000pt;}
.ws59{word-spacing:5.597867pt;}
.wsba{word-spacing:5.616000pt;}
.ws159{word-spacing:5.640000pt;}
.ws124{word-spacing:5.680000pt;}
.ws73{word-spacing:5.709867pt;}
.ws10b{word-spacing:5.712000pt;}
.ws135{word-spacing:5.800000pt;}
.wsff{word-spacing:5.856000pt;}
.ws158{word-spacing:5.880000pt;}
.ws98{word-spacing:5.924800pt;}
.wsfb{word-spacing:6.048000pt;}
.ws9c{word-spacing:6.096000pt;}
.ws13d{word-spacing:6.120000pt;}
.wsca{word-spacing:6.144000pt;}
.wscb{word-spacing:6.192000pt;}
.wsdd{word-spacing:6.240000pt;}
.wsaa{word-spacing:6.336000pt;}
.ws58{word-spacing:6.384000pt;}
.wscc{word-spacing:6.432000pt;}
.ws5c{word-spacing:6.480000pt;}
.ws143{word-spacing:6.600000pt;}
.ws5a{word-spacing:6.624000pt;}
.ws101{word-spacing:6.672000pt;}
.ws30{word-spacing:6.720000pt;}
.wsfd{word-spacing:6.755200pt;}
.ws144{word-spacing:6.760000pt;}
.wsf8{word-spacing:6.816000pt;}
.ws114{word-spacing:6.840000pt;}
.wsc8{word-spacing:6.960000pt;}
.wse5{word-spacing:7.056000pt;}
.wse8{word-spacing:7.200000pt;}
.ws8d{word-spacing:7.248000pt;}
.ws89{word-spacing:7.253333pt;}
.ws122{word-spacing:7.320000pt;}
.wsdb{word-spacing:7.344000pt;}
.ws72{word-spacing:7.440000pt;}
.ws3c{word-spacing:7.488000pt;}
.ws23{word-spacing:7.536000pt;}
.ws50{word-spacing:7.584000pt;}
.wsf1{word-spacing:7.586667pt;}
.wsde{word-spacing:7.629867pt;}
.ws109{word-spacing:7.680000pt;}
.ws7e{word-spacing:7.776000pt;}
.wsf9{word-spacing:7.824000pt;}
.ws2b{word-spacing:7.920000pt;}
.ws52{word-spacing:7.968000pt;}
.ws14b{word-spacing:8.000000pt;}
.wsf0{word-spacing:8.056000pt;}
.ws91{word-spacing:8.064000pt;}
.wsd1{word-spacing:8.067200pt;}
.wsfe{word-spacing:8.136533pt;}
.ws20{word-spacing:8.160000pt;}
.ws15f{word-spacing:8.209333pt;}
.wsb0{word-spacing:8.304000pt;}
.wsb8{word-spacing:8.352000pt;}
.ws81{word-spacing:8.496000pt;}
.ws136{word-spacing:8.520000pt;}
.ws137{word-spacing:8.538667pt;}
.ws33{word-spacing:8.544000pt;}
.ws11f{word-spacing:8.560000pt;}
.ws121{word-spacing:8.600000pt;}
.wse4{word-spacing:8.640000pt;}
.wsd{word-spacing:8.657333pt;}
.wsc5{word-spacing:8.688000pt;}
.ws99{word-spacing:8.736000pt;}
.ws15d{word-spacing:8.920000pt;}
.wsd8{word-spacing:8.976000pt;}
.wsd3{word-spacing:9.045333pt;}
.ws6f{word-spacing:9.072000pt;}
.ws131{word-spacing:9.080000pt;}
.wsac{word-spacing:9.120000pt;}
.ws54{word-spacing:9.216000pt;}
.ws161{word-spacing:9.240000pt;}
.wsad{word-spacing:9.264000pt;}
.ws4f{word-spacing:9.312000pt;}
.ws61{word-spacing:9.408000pt;}
.ws53{word-spacing:9.456000pt;}
.ws27{word-spacing:9.552000pt;}
.wse9{word-spacing:9.637333pt;}
.ws13c{word-spacing:9.640000pt;}
.wsbc{word-spacing:9.648000pt;}
.ws14e{word-spacing:9.680000pt;}
.ws2f{word-spacing:9.696000pt;}
.ws9b{word-spacing:9.792000pt;}
.ws12d{word-spacing:9.800000pt;}
.ws3d{word-spacing:9.888000pt;}
.ws3e{word-spacing:10.080000pt;}
.ws36{word-spacing:10.224000pt;}
.wsc2{word-spacing:10.264533pt;}
.ws34{word-spacing:10.272000pt;}
.wsa1{word-spacing:10.320000pt;}
.ws4e{word-spacing:10.416000pt;}
.wsb9{word-spacing:10.464000pt;}
.ws1f{word-spacing:10.560000pt;}
.ws22{word-spacing:10.608000pt;}
.ws90{word-spacing:10.656000pt;}
.ws11e{word-spacing:10.720000pt;}
.ws10{word-spacing:10.922667pt;}
.ws1c{word-spacing:10.944000pt;}
.ws8b{word-spacing:10.992000pt;}
.ws13f{word-spacing:11.000000pt;}
.wsbb{word-spacing:11.088000pt;}
.ws13{word-spacing:11.094379pt;}
.ws4a{word-spacing:11.184000pt;}
.wsce{word-spacing:11.565867pt;}
.wse6{word-spacing:11.616000pt;}
.ws84{word-spacing:11.669333pt;}
.ws160{word-spacing:11.680000pt;}
.ws14d{word-spacing:11.760000pt;}
.ws9d{word-spacing:11.808000pt;}
.ws113{word-spacing:11.920000pt;}
.ws117{word-spacing:11.970667pt;}
.ws13e{word-spacing:12.000000pt;}
.ws12a{word-spacing:12.040000pt;}
.wsb6{word-spacing:12.144000pt;}
.ws3b{word-spacing:12.240000pt;}
.ws8f{word-spacing:12.384000pt;}
.wsed{word-spacing:12.490667pt;}
.wsd7{word-spacing:12.528000pt;}
.ws102{word-spacing:12.816000pt;}
.ws8e{word-spacing:13.008000pt;}
.ws105{word-spacing:13.056000pt;}
.ws47{word-spacing:13.248000pt;}
.ws1e{word-spacing:13.392000pt;}
.ws83{word-spacing:13.440000pt;}
.ws24{word-spacing:13.581867pt;}
.ws51{word-spacing:13.645867pt;}
.ws37{word-spacing:14.640000pt;}
.wsd2{word-spacing:14.648533pt;}
.ws39{word-spacing:14.688000pt;}
.ws87{word-spacing:14.746667pt;}
.ws14c{word-spacing:14.960000pt;}
.ws104{word-spacing:15.024000pt;}
.ws10e{word-spacing:15.400000pt;}
.ws4b{word-spacing:15.552000pt;}
.ws26{word-spacing:15.706667pt;}
.ws35{word-spacing:16.296533pt;}
.ws4d{word-spacing:16.461867pt;}
.ws42{word-spacing:17.520000pt;}
.ws120{word-spacing:17.629333pt;}
.ws12c{word-spacing:17.960000pt;}
.ws40{word-spacing:18.336000pt;}
.ws92{word-spacing:18.480000pt;}
.ws46{word-spacing:19.248000pt;}
.ws38{word-spacing:20.728533pt;}
.ws80{word-spacing:20.736000pt;}
.ws12b{word-spacing:21.088000pt;}
.wse2{word-spacing:23.040000pt;}
.ws43{word-spacing:23.088000pt;}
.ws45{word-spacing:25.299200pt;}
.ws48{word-spacing:25.680000pt;}
.ws44{word-spacing:26.496000pt;}
.ws7f{word-spacing:27.744000pt;}
.ws49{word-spacing:36.576000pt;}
.wse{word-spacing:86.737333pt;}
.wsc{word-spacing:86.738667pt;}
.wsa{word-spacing:175.290667pt;}
.ws7{word-spacing:784.957285pt;}
.wsbf{word-spacing:927.360000pt;}
._2c{margin-left:-16.000000pt;}
._17{margin-left:-10.896000pt;}
._c{margin-left:-6.360144pt;}
._b{margin-left:-5.047733pt;}
._7{margin-left:-4.038187pt;}
._1{margin-left:-2.422912pt;}
._2{margin-left:-1.110501pt;}
._0{width:1.211456pt;}
._8{width:2.624821pt;}
._1d{width:6.278096pt;}
._13{width:7.506285pt;}
._5{width:8.429715pt;}
._11{width:9.552000pt;}
._1e{width:10.657579pt;}
._10{width:11.846749pt;}
._a{width:13.225061pt;}
._d{width:15.092723pt;}
._6{width:16.607043pt;}
._9{width:18.121363pt;}
._4{width:33.113131pt;}
._3{width:40.129480pt;}
._e{width:53.333322pt;}
._29{width:81.744000pt;}
._21{width:87.024000pt;}
._1f{width:93.216000pt;}
._1b{width:141.936000pt;}
._25{width:326.400000pt;}
._1c{width:336.357333pt;}
._23{width:337.920000pt;}
._2b{width:346.080000pt;}
._27{width:369.120000pt;}
._28{width:387.600000pt;}
._18{width:398.956115pt;}
._14{width:432.672000pt;}
._20{width:462.000000pt;}
._2a{width:487.421715pt;}
._24{width:544.416000pt;}
._26{width:564.048000pt;}
._22{width:578.976000pt;}
._15{width:605.758400pt;}
._1a{width:698.688000pt;}
._16{width:780.192000pt;}
._19{width:805.152000pt;}
._f{width:1186.755525pt;}
._12{width:1646.481579pt;}
.fsf{font-size:26.666667pt;}
.fs9{font-size:28.000000pt;}
.fse{font-size:29.866667pt;}
.fsc{font-size:33.066667pt;}
.fsd{font-size:33.600000pt;}
.fs3{font-size:40.000000pt;}
.fsb{font-size:42.507200pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:47.820800pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.477333pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:55.525333pt;}
.fs0{font-size:80.763733pt;}
.fs1{font-size:100.954667pt;}
.fs4{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:53.990641pt;}
.y63{bottom:54.617333pt;}
.y62{bottom:71.742667pt;}
.y18{bottom:76.657308pt;}
.y17{bottom:99.089333pt;}
.y16{bottom:115.030667pt;}
.y15{bottom:130.970667pt;}
.y9a{bottom:132.869333pt;}
.ydc{bottom:133.529333pt;}
.y1a0{bottom:134.128000pt;}
.y15e{bottom:134.390667pt;}
.y10f{bottom:134.458667pt;}
.y61{bottom:134.510667pt;}
.y52{bottom:134.562667pt;}
.yae{bottom:141.573333pt;}
.y126{bottom:145.380000pt;}
.y19f{bottom:146.128000pt;}
.y15d{bottom:146.390667pt;}
.y99{bottom:146.869333pt;}
.y14{bottom:146.910667pt;}
.ydb{bottom:147.529333pt;}
.y10e{bottom:148.458667pt;}
.y60{bottom:148.510667pt;}
.y51{bottom:148.562667pt;}
.yad{bottom:153.573333pt;}
.y15c{bottom:158.390667pt;}
.y125{bottom:159.380000pt;}
.y98{bottom:160.869333pt;}
.yda{bottom:161.529333pt;}
.y10d{bottom:162.458667pt;}
.y5f{bottom:162.510667pt;}
.y50{bottom:162.562667pt;}
.y19e{bottom:162.638667pt;}
.yac{bottom:165.573333pt;}
.y19d{bottom:172.784000pt;}
.y124{bottom:173.380000pt;}
.y97{bottom:174.869333pt;}
.y15b{bottom:174.901333pt;}
.yd9{bottom:175.529333pt;}
.y10c{bottom:176.458667pt;}
.y5e{bottom:176.510667pt;}
.y4f{bottom:176.562667pt;}
.y11c{bottom:177.573333pt;}
.y15a{bottom:183.718667pt;}
.y19c{bottom:184.784000pt;}
.y123{bottom:187.380000pt;}
.y96{bottom:188.869333pt;}
.yd8{bottom:189.529333pt;}
.y10b{bottom:190.458667pt;}
.y5d{bottom:190.510667pt;}
.y4e{bottom:190.562667pt;}
.y159{bottom:195.718667pt;}
.y19b{bottom:201.294667pt;}
.y122{bottom:201.380000pt;}
.y95{bottom:202.869333pt;}
.yd7{bottom:203.529333pt;}
.y10a{bottom:204.458667pt;}
.y5c{bottom:204.510667pt;}
.y4d{bottom:204.562667pt;}
.y13{bottom:210.672000pt;}
.y19a{bottom:210.777333pt;}
.y158{bottom:212.229333pt;}
.y121{bottom:215.380000pt;}
.y94{bottom:216.869333pt;}
.yd6{bottom:217.529333pt;}
.y109{bottom:218.458667pt;}
.y5b{bottom:218.510667pt;}
.y4c{bottom:218.562667pt;}
.y157{bottom:221.046667pt;}
.y12{bottom:226.612000pt;}
.y199{bottom:227.288000pt;}
.y93{bottom:230.869333pt;}
.yd5{bottom:231.529333pt;}
.y108{bottom:232.458667pt;}
.y5a{bottom:232.510667pt;}
.y4b{bottom:232.562667pt;}
.y156{bottom:233.046667pt;}
.y198{bottom:236.105333pt;}
.y120{bottom:238.997333pt;}
.y11{bottom:242.552000pt;}
.y92{bottom:244.869333pt;}
.y155{bottom:245.046667pt;}
.yd4{bottom:245.529333pt;}
.y107{bottom:246.458667pt;}
.y59{bottom:246.510667pt;}
.y4a{bottom:246.562667pt;}
.y197{bottom:248.105333pt;}
.y10{bottom:258.492000pt;}
.y91{bottom:258.869333pt;}
.yd3{bottom:259.529333pt;}
.y196{bottom:260.105333pt;}
.y11f{bottom:260.400000pt;}
.y106{bottom:260.458667pt;}
.y58{bottom:260.510667pt;}
.y49{bottom:260.562667pt;}
.y154{bottom:261.557333pt;}
.y153{bottom:270.374667pt;}
.y11e{bottom:272.354667pt;}
.y90{bottom:272.869333pt;}
.yd2{bottom:273.529333pt;}
.yf{bottom:274.432000pt;}
.y105{bottom:274.458667pt;}
.y57{bottom:274.510667pt;}
.y48{bottom:274.562667pt;}
.y195{bottom:276.616000pt;}
.y152{bottom:282.374667pt;}
.y11d{bottom:284.310667pt;}
.y194{bottom:285.433333pt;}
.ycd{bottom:286.869333pt;}
.yd1{bottom:287.529333pt;}
.y104{bottom:288.458667pt;}
.y56{bottom:288.510667pt;}
.y47{bottom:288.562667pt;}
.ye{bottom:290.372000pt;}
.y8f{bottom:291.517333pt;}
.y151{bottom:294.374667pt;}
.y193{bottom:297.433333pt;}
.ycc{bottom:300.869333pt;}
.y103{bottom:302.458667pt;}
.y55{bottom:302.510667pt;}
.y46{bottom:302.562667pt;}
.yd0{bottom:306.178667pt;}
.yd{bottom:306.313333pt;}
.y150{bottom:306.374667pt;}
.y192{bottom:309.433333pt;}
.y8e{bottom:310.829333pt;}
.ycb{bottom:314.869333pt;}
.y102{bottom:316.458667pt;}
.y54{bottom:316.510667pt;}
.y45{bottom:316.562667pt;}
.y191{bottom:321.433333pt;}
.y14f{bottom:322.886667pt;}
.y190{bottom:325.944000pt;}
.yca{bottom:328.869333pt;}
.ycf{bottom:330.413333pt;}
.y101{bottom:330.458667pt;}
.y53{bottom:330.510667pt;}
.y14e{bottom:331.704000pt;}
.y18f{bottom:334.761333pt;}
.yc9{bottom:342.869333pt;}
.y14d{bottom:343.704000pt;}
.yce{bottom:344.413333pt;}
.y100{bottom:344.458667pt;}
.y44{bottom:344.510667pt;}
.y18e{bottom:346.761333pt;}
.yc{bottom:354.133333pt;}
.y14c{bottom:355.704000pt;}
.yc8{bottom:356.869333pt;}
.y8d{bottom:358.413333pt;}
.yff{bottom:358.458667pt;}
.y18d{bottom:363.272000pt;}
.yb{bottom:370.073333pt;}
.yc7{bottom:370.869333pt;}
.y14b{bottom:372.214667pt;}
.y8c{bottom:372.413333pt;}
.yfe{bottom:372.458667pt;}
.y18c{bottom:372.754667pt;}
.y14a{bottom:381.032000pt;}
.y18b{bottom:384.754667pt;}
.yc6{bottom:384.869333pt;}
.y8b{bottom:386.413333pt;}
.yfd{bottom:386.458667pt;}
.y149{bottom:393.032000pt;}
.y18a{bottom:396.754667pt;}
.yc5{bottom:398.869333pt;}
.y8a{bottom:400.413333pt;}
.yfc{bottom:400.458667pt;}
.ya{bottom:401.954667pt;}
.y148{bottom:409.542667pt;}
.yc4{bottom:412.869333pt;}
.y189{bottom:413.265333pt;}
.y89{bottom:414.413333pt;}
.yfb{bottom:414.458667pt;}
.y9{bottom:417.894667pt;}
.y147{bottom:418.360000pt;}
.y43{bottom:419.954667pt;}
.y188{bottom:422.746667pt;}
.yc3{bottom:426.869333pt;}
.y88{bottom:428.413333pt;}
.yfa{bottom:428.458667pt;}
.y8{bottom:433.834667pt;}
.y187{bottom:434.746667pt;}
.y146{bottom:434.870667pt;}
.y42{bottom:439.574667pt;}
.yc2{bottom:440.869333pt;}
.y87{bottom:442.413333pt;}
.yf9{bottom:442.458667pt;}
.y29{bottom:445.826668pt;}
.y186{bottom:446.746667pt;}
.y7{bottom:449.774667pt;}
.y145{bottom:450.330667pt;}
.y41{bottom:453.574667pt;}
.yc1{bottom:454.869333pt;}
.y86{bottom:456.413333pt;}
.y139{bottom:456.458667pt;}
.y185{bottom:458.746667pt;}
.yf8{bottom:461.108000pt;}
.yab{bottom:463.729333pt;}
.y28{bottom:465.160002pt;}
.y40{bottom:467.574667pt;}
.yc0{bottom:468.869333pt;}
.y85{bottom:470.413333pt;}
.y138{bottom:470.458667pt;}
.y184{bottom:475.257333pt;}
.yaa{bottom:477.729333pt;}
.y144{bottom:479.989333pt;}
.y3f{bottom:481.574667pt;}
.ybf{bottom:482.869333pt;}
.y84{bottom:484.413333pt;}
.y137{bottom:484.458667pt;}
.y183{bottom:484.738667pt;}
.y6{bottom:489.625333pt;}
.ya9{bottom:491.729333pt;}
.y143{bottom:493.989333pt;}
.y3e{bottom:495.574667pt;}
.y182{bottom:496.738667pt;}
.ybe{bottom:496.869333pt;}
.yf7{bottom:497.669333pt;}
.y83{bottom:498.413333pt;}
.y136{bottom:498.458667pt;}
.y27{bottom:498.493335pt;}
.ya8{bottom:505.729333pt;}
.y181{bottom:508.738667pt;}
.y3d{bottom:509.574667pt;}
.y142{bottom:510.353333pt;}
.ybd{bottom:510.869333pt;}
.yf6{bottom:511.669333pt;}
.y82{bottom:512.413333pt;}
.y135{bottom:512.458667pt;}
.y26{bottom:517.826668pt;}
.ya7{bottom:519.729333pt;}
.y180{bottom:520.738667pt;}
.y11b{bottom:521.629333pt;}
.y3c{bottom:523.574667pt;}
.ybc{bottom:524.869333pt;}
.yf5{bottom:525.669333pt;}
.y81{bottom:526.413333pt;}
.y134{bottom:526.458667pt;}
.y17f{bottom:532.738667pt;}
.ya6{bottom:533.729333pt;}
.y25{bottom:535.160002pt;}
.y11a{bottom:535.629333pt;}
.y3b{bottom:537.574667pt;}
.ybb{bottom:538.869333pt;}
.yf4{bottom:539.669333pt;}
.y80{bottom:540.413333pt;}
.y133{bottom:540.458667pt;}
.ya5{bottom:547.729333pt;}
.y17e{bottom:549.249333pt;}
.y119{bottom:549.629333pt;}
.y3a{bottom:551.574667pt;}
.y141{bottom:551.581333pt;}
.yba{bottom:552.869333pt;}
.yf3{bottom:553.669333pt;}
.y7f{bottom:554.413333pt;}
.y132{bottom:554.458667pt;}
.y17d{bottom:558.732000pt;}
.ya4{bottom:561.729333pt;}
.y118{bottom:563.629333pt;}
.yb9{bottom:566.869333pt;}
.yf2{bottom:567.669333pt;}
.y7e{bottom:568.413333pt;}
.y131{bottom:568.458667pt;}
.y24{bottom:568.493335pt;}
.y17c{bottom:570.732000pt;}
.y39{bottom:571.402667pt;}
.y140{bottom:573.552000pt;}
.ya3{bottom:575.729333pt;}
.y117{bottom:577.629333pt;}
.yb8{bottom:580.869333pt;}
.yf1{bottom:581.669333pt;}
.y7d{bottom:582.413333pt;}
.y17b{bottom:582.732000pt;}
.y13f{bottom:587.552000pt;}
.y23{bottom:587.826668pt;}
.y130{bottom:588.436000pt;}
.ya2{bottom:589.729333pt;}
.y116{bottom:591.629333pt;}
.yb7{bottom:594.869333pt;}
.yf0{bottom:595.669333pt;}
.y7c{bottom:596.413333pt;}
.y17a{bottom:599.242667pt;}
.y13e{bottom:601.552000pt;}
.ya1{bottom:603.729333pt;}
.y22{bottom:605.160002pt;}
.y115{bottom:605.629333pt;}
.y179{bottom:608.724000pt;}
.yb6{bottom:608.869333pt;}
.yef{bottom:609.669333pt;}
.y7b{bottom:610.413333pt;}
.y13d{bottom:615.552000pt;}
.y38{bottom:616.148000pt;}
.y12f{bottom:617.201333pt;}
.ya0{bottom:617.729333pt;}
.y114{bottom:619.629333pt;}
.y178{bottom:620.724000pt;}
.yb5{bottom:622.869333pt;}
.yee{bottom:623.669333pt;}
.y7a{bottom:624.413333pt;}
.y37{bottom:629.432000pt;}
.y13c{bottom:629.552000pt;}
.y12e{bottom:631.201333pt;}
.y9f{bottom:631.729333pt;}
.y177{bottom:632.724000pt;}
.y113{bottom:633.629333pt;}
.yb4{bottom:636.869333pt;}
.yed{bottom:637.669333pt;}
.y79{bottom:638.413333pt;}
.y21{bottom:639.826668pt;}
.y13b{bottom:643.552000pt;}
.y12d{bottom:645.201333pt;}
.y9e{bottom:645.729333pt;}
.y112{bottom:647.629333pt;}
.y176{bottom:649.234667pt;}
.yb3{bottom:650.869333pt;}
.yec{bottom:651.669333pt;}
.y78{bottom:652.413333pt;}
.y36{bottom:656.176000pt;}
.y175{bottom:658.716000pt;}
.y12c{bottom:659.201333pt;}
.y9d{bottom:659.729333pt;}
.y111{bottom:661.629333pt;}
.y13a{bottom:662.865333pt;}
.yb2{bottom:664.869333pt;}
.y77{bottom:666.413333pt;}
.yeb{bottom:670.318667pt;}
.y174{bottom:670.716000pt;}
.y35{bottom:672.166667pt;}
.y12b{bottom:673.201333pt;}
.y9c{bottom:673.729333pt;}
.y110{bottom:675.629333pt;}
.y76{bottom:680.413333pt;}
.y12a{bottom:687.201333pt;}
.y173{bottom:687.226667pt;}
.y34{bottom:688.156000pt;}
.yea{bottom:689.629333pt;}
.y9b{bottom:692.378667pt;}
.y75{bottom:694.413333pt;}
.y1be{bottom:696.444000pt;}
.y172{bottom:696.709333pt;}
.y1b0{bottom:697.772000pt;}
.y129{bottom:701.201333pt;}
.y33{bottom:705.208000pt;}
.y74{bottom:708.413333pt;}
.y1bd{bottom:708.444000pt;}
.y171{bottom:708.709333pt;}
.y5{bottom:709.401333pt;}
.y1af{bottom:709.772000pt;}
.y1bc{bottom:720.444000pt;}
.y170{bottom:720.709333pt;}
.y73{bottom:722.413333pt;}
.yb1{bottom:722.717333pt;}
.y1ae{bottom:726.282667pt;}
.y32{bottom:733.402667pt;}
.yb0{bottom:734.717333pt;}
.ye9{bottom:734.809333pt;}
.y1ad{bottom:735.100000pt;}
.y72{bottom:736.413333pt;}
.y1bb{bottom:736.954667pt;}
.y16f{bottom:737.220000pt;}
.y4{bottom:741.281333pt;}
.y1ba{bottom:745.772000pt;}
.y16e{bottom:746.436000pt;}
.yaf{bottom:746.717333pt;}
.y1ac{bottom:747.100000pt;}
.ye8{bottom:748.809333pt;}
.y71{bottom:750.413333pt;}
.y128{bottom:752.317333pt;}
.y1b9{bottom:757.772000pt;}
.y16d{bottom:758.436000pt;}
.y1ab{bottom:759.100000pt;}
.y20{bottom:761.386666pt;}
.y127{bottom:764.317333pt;}
.y70{bottom:764.413333pt;}
.y31{bottom:765.052000pt;}
.ye7{bottom:766.794667pt;}
.y16c{bottom:770.436000pt;}
.y3{bottom:773.161333pt;}
.y1b8{bottom:774.282667pt;}
.y1aa{bottom:775.610667pt;}
.y6f{bottom:778.413333pt;}
.y30{bottom:780.993333pt;}
.y1b7{bottom:783.100000pt;}
.y1a9{bottom:784.428000pt;}
.ye6{bottom:784.778667pt;}
.y16b{bottom:786.946667pt;}
.y6e{bottom:792.413333pt;}
.y1b6{bottom:795.100000pt;}
.y16a{bottom:795.764000pt;}
.y2f{bottom:796.069333pt;}
.y1a8{bottom:796.428000pt;}
.ye5{bottom:798.778667pt;}
.y1f{bottom:800.445341pt;}
.y6d{bottom:806.413333pt;}
.y169{bottom:807.764000pt;}
.y1a7{bottom:808.428000pt;}
.y1b5{bottom:811.610667pt;}
.y1e{bottom:816.178668pt;}
.ye4{bottom:816.764000pt;}
.y6c{bottom:820.413333pt;}
.y1b4{bottom:820.428000pt;}
.y168{bottom:824.274667pt;}
.y1a6{bottom:824.938667pt;}
.y2{bottom:828.952000pt;}
.ye3{bottom:830.764000pt;}
.y1b3{bottom:832.428000pt;}
.y167{bottom:833.092000pt;}
.y6b{bottom:834.413333pt;}
.y1a5{bottom:838.268000pt;}
.ye2{bottom:844.764000pt;}
.y166{bottom:845.092000pt;}
.y2e{bottom:845.784000pt;}
.y1a4{bottom:847.085333pt;}
.y6a{bottom:848.413333pt;}
.y1b2{bottom:848.938667pt;}
.y1{bottom:855.520000pt;}
.ye1{bottom:858.764000pt;}
.y1a3{bottom:859.085333pt;}
.y1d{bottom:859.893329pt;}
.y165{bottom:861.602667pt;}
.y1b1{bottom:862.268000pt;}
.y69{bottom:862.413333pt;}
.y164{bottom:871.085333pt;}
.ye0{bottom:872.764000pt;}
.y68{bottom:876.413333pt;}
.y2d{bottom:877.784000pt;}
.y163{bottom:883.085333pt;}
.ydf{bottom:886.764000pt;}
.y1a2{bottom:887.596000pt;}
.y67{bottom:890.413333pt;}
.y1c{bottom:891.893329pt;}
.y1a1{bottom:896.413333pt;}
.y162{bottom:899.596000pt;}
.y66{bottom:904.413333pt;}
.y161{bottom:908.413333pt;}
.y2c{bottom:909.784000pt;}
.yde{bottom:910.380000pt;}
.y65{bottom:918.413333pt;}
.y160{bottom:920.413333pt;}
.y1b{bottom:923.893334pt;}
.y64{bottom:932.413333pt;}
.ydd{bottom:934.233333pt;}
.y15f{bottom:936.924000pt;}
.y1a{bottom:955.893334pt;}
.y2b{bottom:987.562667pt;}
.y2a{bottom:1003.170667pt;}
.h12{height:30.128000pt;}
.h20{height:30.933333pt;}
.h7{height:32.440000pt;}
.h13{height:33.415019pt;}
.ha{height:36.096000pt;}
.h5{height:37.403704pt;}
.h4{height:37.504659pt;}
.h9{height:38.928000pt;}
.h22{height:39.560000pt;}
.h23{height:40.080000pt;}
.h25{height:40.120000pt;}
.h24{height:40.264000pt;}
.h21{height:40.960000pt;}
.hb{height:41.973333pt;}
.hc{height:43.253333pt;}
.h1f{height:46.162819pt;}
.h19{height:46.336000pt;}
.h18{height:47.317333pt;}
.h15{height:47.472000pt;}
.h16{height:48.096000pt;}
.h1b{height:48.670933pt;}
.h17{height:48.676267pt;}
.h1a{height:54.510400pt;}
.h1d{height:54.515733pt;}
.h14{height:55.472128pt;}
.h11{height:55.680000pt;}
.h10{height:56.064000pt;}
.h1e{height:57.131200pt;}
.h1c{height:57.136533pt;}
.h2{height:59.845926pt;}
.hd{height:64.853589pt;}
.h3{height:75.009317pt;}
.h8{height:83.946667pt;}
.he{height:88.501333pt;}
.hf{height:123.733333pt;}
.h6{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:792.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:38.881333pt;}
.x6{left:46.850667pt;}
.x5{left:53.020000pt;}
.x7{left:58.806667pt;}
.xd{left:64.120000pt;}
.x8{left:82.716000pt;}
.x1{left:90.042667pt;}
.xe{left:97.593333pt;}
.x3{left:154.666667pt;}
.x2{left:160.000000pt;}
.x4{left:168.000000pt;}
.x10{left:336.770667pt;}
.xf{left:401.240000pt;}
.x9{left:408.140000pt;}
.xc{left:413.453333pt;}
.x12{left:420.940000pt;}
.xa{left:432.049333pt;}
.x13{left:587.468000pt;}
.x14{left:593.460000pt;}
.x11{left:625.209333pt;}
.x15{left:656.340000pt;}
}


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