
/* 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_8a471ea55bd9.woff")format("woff");}.ff1{font-family:ff1;line-height:0.756836;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_bc52710b1050.woff")format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_9f994ee53fe0.woff")format("woff");}.ff3{font-family:ff3;line-height:0.905762;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_551bcba14d17.woff")format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_efeb3baff9dc.woff")format("woff");}.ff5{font-family:ff5;line-height:1.313477;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_fdbfffa8a609.woff")format("woff");}.ff6{font-family:ff6;line-height:1.313477;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_cfc007b3676a.woff")format("woff");}.ff7{font-family:ff7;line-height:1.330566;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_abcb80819c2d.woff")format("woff");}.ff8{font-family:ff8;line-height:0.360019;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_f126020c0a47.woff")format("woff");}.ff9{font-family:ff9;line-height:0.693359;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_efeb3baff9dc.woff")format("woff");}.ffa{font-family:ffa;line-height:1.313477;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_11c4162cd353.woff")format("woff");}.ffb{font-family:ffb;line-height:1.313477;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_dd3b4e5b16a8.woff")format("woff");}.ffc{font-family:ffc;line-height:0.871094;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_efeb3baff9dc.woff")format("woff");}.ffd{font-family:ffd;line-height:1.313477;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_a49ec3826c93.woff")format("woff");}.ffe{font-family:ffe;line-height:1.313477;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_efeb3baff9dc.woff")format("woff");}.fff{font-family:fff;line-height:1.313477;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_b9ea122d3a38.woff")format("woff");}.ff10{font-family:ff10;line-height:1.313477;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_efeb3baff9dc.woff")format("woff");}.ff11{font-family:ff11;line-height:1.313477;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_872dcc8e2c51.woff")format("woff");}.ff12{font-family:ff12;line-height:1.313477;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;}
.m4{transform:matrix(0.000198,-0.250004,0.250000,0.000198,0,0);-ms-transform:matrix(0.000198,-0.250004,0.250000,0.000198,0,0);-webkit-transform:matrix(0.000198,-0.250004,0.250000,0.000198,0,0);}
.m3{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);}
.m2{transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250552,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,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);}
.v1{vertical-align:-29.518056px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.879928px;}
.v2{vertical-align:27.361728px;}
.ls6a{letter-spacing:-0.964800px;}
.ls6e{letter-spacing:-0.511344px;}
.ls81{letter-spacing:-0.492048px;}
.ls8b{letter-spacing:-0.482400px;}
.ls68{letter-spacing:-0.477576px;}
.ls8c{letter-spacing:-0.463104px;}
.ls6c{letter-spacing:-0.458280px;}
.ls84{letter-spacing:-0.448632px;}
.ls88{letter-spacing:-0.443808px;}
.ls3e{letter-spacing:-0.442224px;}
.ls6d{letter-spacing:-0.438984px;}
.ls24{letter-spacing:-0.436248px;}
.ls55{letter-spacing:-0.430272px;}
.ls1b{letter-spacing:-0.424296px;}
.ls69{letter-spacing:-0.419688px;}
.ls25{letter-spacing:-0.418320px;}
.ls72{letter-spacing:-0.414864px;}
.ls2c{letter-spacing:-0.412344px;}
.ls70{letter-spacing:-0.410040px;}
.ls1d{letter-spacing:-0.406368px;}
.ls27{letter-spacing:-0.400392px;}
.ls17{letter-spacing:-0.395928px;}
.ls64{letter-spacing:-0.395568px;}
.ls44{letter-spacing:-0.394416px;}
.ls71{letter-spacing:-0.390744px;}
.ls21{letter-spacing:-0.388440px;}
.ls83{letter-spacing:-0.385920px;}
.ls2f{letter-spacing:-0.382464px;}
.ls6b{letter-spacing:-0.381096px;}
.ls73{letter-spacing:-0.371448px;}
.ls4a{letter-spacing:-0.370512px;}
.ls45{letter-spacing:-0.358560px;}
.ls1c{letter-spacing:-0.346608px;}
.ls61{letter-spacing:-0.337680px;}
.ls91{letter-spacing:-0.313560px;}
.ls18{letter-spacing:-0.311688px;}
.ls43{letter-spacing:-0.304776px;}
.ls8a{letter-spacing:-0.303912px;}
.ls86{letter-spacing:-0.294264px;}
.ls8e{letter-spacing:-0.289440px;}
.ls76{letter-spacing:-0.280872px;}
.ls4d{letter-spacing:-0.279792px;}
.ls52{letter-spacing:-0.260496px;}
.ls4e{letter-spacing:-0.250848px;}
.ls51{letter-spacing:-0.231552px;}
.ls31{letter-spacing:-0.209160px;}
.ls4f{letter-spacing:-0.202608px;}
.ls50{letter-spacing:-0.173664px;}
.ls5f{letter-spacing:-0.164016px;}
.ls23{letter-spacing:-0.149400px;}
.ls2a{letter-spacing:-0.119520px;}
.ls4c{letter-spacing:-0.115776px;}
.ls58{letter-spacing:-0.113544px;}
.ls6f{letter-spacing:-0.096480px;}
.ls57{letter-spacing:-0.095616px;}
.ls1a{letter-spacing:-0.089640px;}
.ls56{letter-spacing:-0.083664px;}
.ls3d{letter-spacing:-0.071712px;}
.ls3f{letter-spacing:-0.059760px;}
.ls77{letter-spacing:-0.053784px;}
.ls26{letter-spacing:-0.047808px;}
.ls40{letter-spacing:-0.041832px;}
.ls54{letter-spacing:-0.038592px;}
.ls33{letter-spacing:-0.035856px;}
.ls1f{letter-spacing:-0.029880px;}
.ls75{letter-spacing:-0.024120px;}
.ls30{letter-spacing:-0.023904px;}
.ls53{letter-spacing:-0.019296px;}
.ls22{letter-spacing:-0.017928px;}
.ls1e{letter-spacing:-0.011952px;}
.ls3c{letter-spacing:-0.005976px;}
.ls19{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.005976px;}
.lsf{letter-spacing:0.011952px;}
.ls29{letter-spacing:0.017928px;}
.ls11{letter-spacing:0.023904px;}
.ls74{letter-spacing:0.024120px;}
.lsc{letter-spacing:0.029880px;}
.ls10{letter-spacing:0.035856px;}
.ls41{letter-spacing:0.041832px;}
.ls7c{letter-spacing:0.047808px;}
.ls3{letter-spacing:0.053784px;}
.ls38{letter-spacing:0.059760px;}
.ls1{letter-spacing:0.065736px;}
.ls16{letter-spacing:0.071712px;}
.ls37{letter-spacing:0.077688px;}
.lsb{letter-spacing:0.083664px;}
.lse{letter-spacing:0.089640px;}
.ls5{letter-spacing:0.095616px;}
.ls9{letter-spacing:0.101592px;}
.ls4{letter-spacing:0.107568px;}
.lsa{letter-spacing:0.113544px;}
.ls36{letter-spacing:0.119520px;}
.ls8{letter-spacing:0.125496px;}
.ls2{letter-spacing:0.131472px;}
.ls14{letter-spacing:0.137448px;}
.ls48{letter-spacing:0.143424px;}
.ls42{letter-spacing:0.149400px;}
.ls49{letter-spacing:0.155376px;}
.ls3b{letter-spacing:0.161352px;}
.ls85{letter-spacing:0.164016px;}
.ls6{letter-spacing:0.167328px;}
.ls62{letter-spacing:0.168840px;}
.ls2b{letter-spacing:0.173304px;}
.ls20{letter-spacing:0.179280px;}
.ls90{letter-spacing:0.183312px;}
.ls13{letter-spacing:0.185256px;}
.ls7e{letter-spacing:0.188136px;}
.ls2d{letter-spacing:0.191232px;}
.ls0{letter-spacing:0.197208px;}
.ls65{letter-spacing:0.202608px;}
.ls12{letter-spacing:0.203184px;}
.ls82{letter-spacing:0.207432px;}
.ls2e{letter-spacing:0.209160px;}
.ls5d{letter-spacing:0.212256px;}
.lsd{letter-spacing:0.215136px;}
.ls8f{letter-spacing:0.217080px;}
.ls28{letter-spacing:0.221112px;}
.ls63{letter-spacing:0.221904px;}
.ls79{letter-spacing:0.226728px;}
.ls7{letter-spacing:0.227088px;}
.ls87{letter-spacing:0.231552px;}
.ls34{letter-spacing:0.233064px;}
.ls78{letter-spacing:0.236376px;}
.ls5e{letter-spacing:0.239040px;}
.ls80{letter-spacing:0.241200px;}
.ls15{letter-spacing:0.245016px;}
.ls5b{letter-spacing:0.246024px;}
.ls7f{letter-spacing:0.250848px;}
.ls46{letter-spacing:0.250992px;}
.ls67{letter-spacing:0.255672px;}
.ls8d{letter-spacing:0.260496px;}
.ls60{letter-spacing:0.265320px;}
.ls35{letter-spacing:0.268920px;}
.ls5c{letter-spacing:0.270144px;}
.ls7a{letter-spacing:0.274968px;}
.ls66{letter-spacing:0.279792px;}
.ls89{letter-spacing:0.284616px;}
.ls5a{letter-spacing:0.303912px;}
.ls32{letter-spacing:0.346608px;}
.ls4b{letter-spacing:0.639432px;}
.ls7d{letter-spacing:0.669312px;}
.ls7b{letter-spacing:0.693216px;}
.ls39{letter-spacing:63.847584px;}
.ls47{letter-spacing:383.508000px;}
.ls59{letter-spacing:451.757952px;}
.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;}
}
.ws0{word-spacing:-14.993784px;}
.wsfe{word-spacing:-12.339792px;}
.wsfd{word-spacing:-12.281904px;}
.ws10e{word-spacing:-0.820080px;}
.ws20{word-spacing:-0.800784px;}
.ws181{word-spacing:-0.795960px;}
.ws191{word-spacing:-0.747720px;}
.ws15a{word-spacing:-0.519912px;}
.ws5f{word-spacing:-0.233064px;}
.ws51{word-spacing:-0.203184px;}
.ws17c{word-spacing:-0.130248px;}
.ws172{word-spacing:-0.120600px;}
.ws18d{word-spacing:-0.115776px;}
.wsc7{word-spacing:-0.110952px;}
.wsb1{word-spacing:-0.107568px;}
.ws111{word-spacing:-0.106128px;}
.ws176{word-spacing:-0.101304px;}
.ws167{word-spacing:-0.096480px;}
.wsc8{word-spacing:-0.091656px;}
.ws140{word-spacing:-0.089640px;}
.ws16d{word-spacing:-0.086832px;}
.ws169{word-spacing:-0.077184px;}
.ws108{word-spacing:-0.071712px;}
.ws194{word-spacing:-0.067536px;}
.ws190{word-spacing:-0.062712px;}
.ws5e{word-spacing:-0.059760px;}
.ws114{word-spacing:-0.057888px;}
.ws130{word-spacing:-0.053784px;}
.ws7{word-spacing:-0.047808px;}
.ws3e{word-spacing:-0.041832px;}
.ws4e{word-spacing:-0.035856px;}
.ws3f{word-spacing:-0.017928px;}
.ws113{word-spacing:-0.014472px;}
.ws10b{word-spacing:-0.005976px;}
.ws3{word-spacing:0.000000px;}
.wsd2{word-spacing:0.005976px;}
.ws21{word-spacing:0.023904px;}
.ws96{word-spacing:0.035856px;}
.wsa1{word-spacing:0.041832px;}
.wsc4{word-spacing:0.043416px;}
.wsf8{word-spacing:0.053784px;}
.ws89{word-spacing:0.059760px;}
.ws2b{word-spacing:0.065736px;}
.wsc3{word-spacing:0.072360px;}
.ws11b{word-spacing:0.077688px;}
.wsc5{word-spacing:0.101304px;}
.ws40{word-spacing:0.107568px;}
.wsfc{word-spacing:0.119520px;}
.wsc1{word-spacing:0.125496px;}
.wsc6{word-spacing:0.130248px;}
.ws149{word-spacing:0.137448px;}
.ws9d{word-spacing:0.143424px;}
.ws80{word-spacing:0.149400px;}
.ws43{word-spacing:0.155376px;}
.ws9{word-spacing:0.161352px;}
.ws57{word-spacing:0.173304px;}
.wsa{word-spacing:0.179280px;}
.ws15f{word-spacing:0.203184px;}
.ws6d{word-spacing:0.209160px;}
.ws93{word-spacing:0.221112px;}
.ws8c{word-spacing:0.233064px;}
.ws4{word-spacing:0.239040px;}
.ws164{word-spacing:0.250848px;}
.ws2c{word-spacing:0.268920px;}
.ws195{word-spacing:0.467928px;}
.ws10c{word-spacing:0.492048px;}
.ws6{word-spacing:0.496008px;}
.ws18a{word-spacing:0.545112px;}
.wse8{word-spacing:0.549792px;}
.ws8{word-spacing:0.555768px;}
.ws5{word-spacing:0.573696px;}
.ws10f{word-spacing:0.574056px;}
.ws15{word-spacing:0.585648px;}
.ws112{word-spacing:0.593352px;}
.ws184{word-spacing:0.612648px;}
.ws2{word-spacing:0.614952px;}
.ws187{word-spacing:0.617472px;}
.ws17d{word-spacing:0.641592px;}
.ws166{word-spacing:0.646416px;}
.ws124{word-spacing:0.663336px;}
.ws16b{word-spacing:0.665712px;}
.ws12f{word-spacing:0.693216px;}
.ws1{word-spacing:0.699192px;}
.ws19{word-spacing:0.705168px;}
.ws174{word-spacing:0.709128px;}
.ws157{word-spacing:0.741024px;}
.ws148{word-spacing:0.747000px;}
.ws1a{word-spacing:0.758952px;}
.ws158{word-spacing:0.770904px;}
.ws70{word-spacing:0.788832px;}
.wsc{word-spacing:0.800784px;}
.wsc2{word-spacing:0.868320px;}
.ws8b{word-spacing:0.878472px;}
.wsf9{word-spacing:0.884448px;}
.ws11c{word-spacing:0.896400px;}
.wsb6{word-spacing:0.914328px;}
.wsd{word-spacing:1.254960px;}
.ws107{word-spacing:1.338624px;}
.ws56{word-spacing:1.350576px;}
.ws3c{word-spacing:1.362528px;}
.ws44{word-spacing:1.374480px;}
.ws18b{word-spacing:1.384488px;}
.wsa5{word-spacing:1.416312px;}
.ws53{word-spacing:1.446192px;}
.wse4{word-spacing:1.458144px;}
.wscb{word-spacing:1.464120px;}
.wsd0{word-spacing:1.476072px;}
.ws82{word-spacing:1.488024px;}
.ws99{word-spacing:1.517904px;}
.wsf3{word-spacing:1.529856px;}
.ws2d{word-spacing:1.553760px;}
.wsdc{word-spacing:1.571688px;}
.wscc{word-spacing:1.577664px;}
.ws42{word-spacing:1.613520px;}
.ws60{word-spacing:1.631448px;}
.wsf4{word-spacing:1.679256px;}
.ws18c{word-spacing:2.055024px;}
.ws163{word-spacing:2.059848px;}
.ws183{word-spacing:2.064672px;}
.ws186{word-spacing:2.069496px;}
.ws193{word-spacing:2.074320px;}
.ws16e{word-spacing:2.079144px;}
.wsf7{word-spacing:2.079648px;}
.ws5c{word-spacing:2.085624px;}
.ws74{word-spacing:2.091600px;}
.ws34{word-spacing:2.109528px;}
.wsb2{word-spacing:2.115504px;}
.ws8a{word-spacing:2.127456px;}
.wsbe{word-spacing:2.139408px;}
.wsa9{word-spacing:2.187216px;}
.ws122{word-spacing:2.205144px;}
.ws132{word-spacing:2.211120px;}
.wsa8{word-spacing:2.235024px;}
.ws6b{word-spacing:2.282832px;}
.ws103{word-spacing:2.306736px;}
.wsab{word-spacing:2.312712px;}
.ws49{word-spacing:2.324664px;}
.ws18e{word-spacing:2.595312px;}
.wsa2{word-spacing:2.659320px;}
.ws165{word-spacing:2.783448px;}
.ws168{word-spacing:2.788272px;}
.ws154{word-spacing:2.790792px;}
.ws79{word-spacing:2.796768px;}
.ws177{word-spacing:2.822040px;}
.wsdb{word-spacing:2.826648px;}
.wse{word-spacing:2.838600px;}
.ws97{word-spacing:2.850552px;}
.ws4b{word-spacing:2.904336px;}
.ws13{word-spacing:2.910312px;}
.ws65{word-spacing:2.916288px;}
.ws125{word-spacing:2.964096px;}
.wsaf{word-spacing:3.041784px;}
.ws10a{word-spacing:3.053736px;}
.ws1d{word-spacing:3.418272px;}
.ws17{word-spacing:3.436200px;}
.ws58{word-spacing:3.472056px;}
.wsb9{word-spacing:3.513888px;}
.ws1f{word-spacing:3.519864px;}
.ws39{word-spacing:3.525840px;}
.ws144{word-spacing:3.537792px;}
.wsd8{word-spacing:3.543768px;}
.wsde{word-spacing:3.585600px;}
.ws10{word-spacing:3.609504px;}
.ws143{word-spacing:3.621456px;}
.ws71{word-spacing:3.639384px;}
.ws92{word-spacing:3.651336px;}
.wsdd{word-spacing:3.669264px;}
.ws9a{word-spacing:3.681216px;}
.ws90{word-spacing:3.764880px;}
.ws78{word-spacing:3.770856px;}
.ws86{word-spacing:4.045752px;}
.ws171{word-spacing:4.138992px;}
.ws12b{word-spacing:4.219056px;}
.wsd1{word-spacing:4.242960px;}
.wsb0{word-spacing:4.254912px;}
.wsb{word-spacing:4.278816px;}
.ws147{word-spacing:4.290768px;}
.ws75{word-spacing:4.308696px;}
.wse7{word-spacing:4.320648px;}
.ws77{word-spacing:4.344552px;}
.ws84{word-spacing:4.350528px;}
.ws145{word-spacing:4.356504px;}
.wsf2{word-spacing:4.380408px;}
.ws100{word-spacing:4.446144px;}
.wsea{word-spacing:4.458096px;}
.ws1c{word-spacing:4.470048px;}
.ws102{word-spacing:4.493952px;}
.ws6c{word-spacing:4.499928px;}
.ws11e{word-spacing:4.505904px;}
.ws98{word-spacing:4.852512px;}
.ws7c{word-spacing:4.882392px;}
.ws151{word-spacing:4.900320px;}
.ws109{word-spacing:4.930200px;}
.ws121{word-spacing:4.960080px;}
.ws12{word-spacing:4.972032px;}
.ws173{word-spacing:5.012136px;}
.wse6{word-spacing:5.037768px;}
.ws12c{word-spacing:5.049720px;}
.ws126{word-spacing:5.061672px;}
.ws13b{word-spacing:5.067648px;}
.wsda{word-spacing:5.079600px;}
.ws7d{word-spacing:5.085576px;}
.ws13e{word-spacing:5.091552px;}
.ws3b{word-spacing:5.163264px;}
.ws8e{word-spacing:5.175216px;}
.ws17b{word-spacing:5.663376px;}
.ws192{word-spacing:5.668200px;}
.wsd5{word-spacing:5.683176px;}
.ws2a{word-spacing:5.695128px;}
.ws146{word-spacing:5.701104px;}
.wsac{word-spacing:5.707080px;}
.ws160{word-spacing:5.711616px;}
.ws67{word-spacing:5.778792px;}
.ws23{word-spacing:5.790744px;}
.wse3{word-spacing:5.808672px;}
.ws9c{word-spacing:5.814648px;}
.ws105{word-spacing:5.820624px;}
.ws76{word-spacing:5.832576px;}
.ws156{word-spacing:5.844528px;}
.wsa0{word-spacing:5.880384px;}
.ws16{word-spacing:5.892336px;}
.ws54{word-spacing:5.910264px;}
.ws38{word-spacing:5.940144px;}
.ws131{word-spacing:5.946120px;}
.ws87{word-spacing:5.952096px;}
.ws188{word-spacing:6.271200px;}
.ws152{word-spacing:6.280776px;}
.ws16c{word-spacing:6.285672px;}
.ws59{word-spacing:6.364440px;}
.ws161{word-spacing:6.367680px;}
.ws36{word-spacing:6.388344px;}
.ws180{word-spacing:6.391800px;}
.ws2f{word-spacing:6.394320px;}
.ws15d{word-spacing:6.406272px;}
.ws16a{word-spacing:6.411096px;}
.ws11{word-spacing:6.412248px;}
.ws14a{word-spacing:6.442128px;}
.ws136{word-spacing:6.466032px;}
.ws37{word-spacing:6.519816px;}
.wsca{word-spacing:6.531768px;}
.ws106{word-spacing:6.543720px;}
.ws11f{word-spacing:6.549696px;}
.wsd7{word-spacing:6.603480px;}
.wsc9{word-spacing:6.627384px;}
.wsec{word-spacing:6.639336px;}
.ws17e{word-spacing:6.922440px;}
.ws162{word-spacing:7.091280px;}
.wsb7{word-spacing:7.111440px;}
.ws3d{word-spacing:7.117416px;}
.ws123{word-spacing:7.129368px;}
.wsfa{word-spacing:7.141320px;}
.wsf{word-spacing:7.153272px;}
.ws73{word-spacing:7.230960px;}
.ws8d{word-spacing:7.236936px;}
.ws91{word-spacing:7.242912px;}
.wsad{word-spacing:7.320600px;}
.ws129{word-spacing:7.344504px;}
.ws141{word-spacing:7.350480px;}
.ws9e{word-spacing:7.362432px;}
.wsb4{word-spacing:7.368408px;}
.wsf6{word-spacing:7.380360px;}
.ws14d{word-spacing:7.404264px;}
.wsbb{word-spacing:7.738920px;}
.wsee{word-spacing:7.852464px;}
.wsbc{word-spacing:7.864416px;}
.ws17a{word-spacing:7.867944px;}
.ws18{word-spacing:7.882344px;}
.ws139{word-spacing:7.900272px;}
.wsdf{word-spacing:7.948080px;}
.wse9{word-spacing:7.977960px;}
.ws72{word-spacing:8.007840px;}
.ws46{word-spacing:8.025768px;}
.wsd9{word-spacing:8.037720px;}
.wsa7{word-spacing:8.043696px;}
.ws66{word-spacing:8.067600px;}
.ws117{word-spacing:8.073576px;}
.wseb{word-spacing:8.121384px;}
.ws175{word-spacing:8.350344px;}
.ws9f{word-spacing:8.438112px;}
.wsd3{word-spacing:8.479944px;}
.ws189{word-spacing:8.514360px;}
.ws178{word-spacing:8.519184px;}
.ws155{word-spacing:8.545680px;}
.ws6e{word-spacing:8.575560px;}
.wsa6{word-spacing:8.587512px;}
.wsa4{word-spacing:8.593488px;}
.ws159{word-spacing:8.641296px;}
.wse0{word-spacing:8.671176px;}
.ws120{word-spacing:8.677152px;}
.ws104{word-spacing:8.742888px;}
.ws26{word-spacing:8.748864px;}
.wsba{word-spacing:8.802648px;}
.wsf5{word-spacing:9.250848px;}
.wsae{word-spacing:9.274752px;}
.ws116{word-spacing:9.298656px;}
.ws6f{word-spacing:9.364392px;}
.ws29{word-spacing:9.388296px;}
.ws13c{word-spacing:9.418176px;}
.wsd4{word-spacing:9.477936px;}
.ws81{word-spacing:9.507816px;}
.ws55{word-spacing:9.519768px;}
.ws48{word-spacing:9.866376px;}
.ws13f{word-spacing:9.926136px;}
.ws17f{word-spacing:9.956736px;}
.ws12e{word-spacing:9.961992px;}
.ws64{word-spacing:9.985896px;}
.ws170{word-spacing:9.990504px;}
.ws11a{word-spacing:9.997848px;}
.ws4d{word-spacing:10.003824px;}
.wsbf{word-spacing:10.009800px;}
.wsf0{word-spacing:10.015776px;}
.ws14f{word-spacing:10.027728px;}
.wsb5{word-spacing:10.039680px;}
.wscd{word-spacing:10.057608px;}
.ws3a{word-spacing:10.081512px;}
.ws4c{word-spacing:10.099440px;}
.ws127{word-spacing:10.105416px;}
.wse5{word-spacing:10.123344px;}
.ws94{word-spacing:10.195056px;}
.wse1{word-spacing:10.201032px;}
.ws30{word-spacing:10.218960px;}
.ws14e{word-spacing:10.248840px;}
.ws61{word-spacing:10.278720px;}
.ws101{word-spacing:10.284696px;}
.ws150{word-spacing:10.302624px;}
.ws15e{word-spacing:10.589472px;}
.ws45{word-spacing:10.703016px;}
.ws52{word-spacing:10.720944px;}
.ws27{word-spacing:10.810584px;}
.ws68{word-spacing:10.816560px;}
.ws28{word-spacing:10.822536px;}
.ws14{word-spacing:10.828512px;}
.ws11d{word-spacing:10.852416px;}
.ws15b{word-spacing:10.924128px;}
.wsbd{word-spacing:11.294640px;}
.ws16f{word-spacing:11.428056px;}
.ws142{word-spacing:11.467944px;}
.ws69{word-spacing:11.509776px;}
.ws31{word-spacing:11.527704px;}
.wse2{word-spacing:11.539656px;}
.wscf{word-spacing:11.551608px;}
.ws24{word-spacing:11.569536px;}
.ws15c{word-spacing:11.665152px;}
.ws12a{word-spacing:11.922120px;}
.ws185{word-spacing:12.035880px;}
.ws179{word-spacing:12.064824px;}
.ws138{word-spacing:12.119328px;}
.ws128{word-spacing:12.179088px;}
.ws14c{word-spacing:12.250800px;}
.ws4a{word-spacing:12.370320px;}
.ws88{word-spacing:12.376296px;}
.ws1b{word-spacing:12.406176px;}
.ws5d{word-spacing:12.842424px;}
.wsd6{word-spacing:12.884256px;}
.ws95{word-spacing:12.938040px;}
.wsb8{word-spacing:12.955968px;}
.ws35{word-spacing:12.985848px;}
.ws119{word-spacing:12.997800px;}
.wsed{word-spacing:13.075488px;}
.ws4f{word-spacing:13.093416px;}
.ws50{word-spacing:13.284648px;}
.ws85{word-spacing:13.463928px;}
.ws182{word-spacing:13.565088px;}
.wsc0{word-spacing:13.565520px;}
.wsfb{word-spacing:13.601376px;}
.ws7b{word-spacing:13.708944px;}
.ws6a{word-spacing:13.858344px;}
.ws32{word-spacing:14.210928px;}
.wsa3{word-spacing:14.497776px;}
.ws13a{word-spacing:14.551560px;}
.ws83{word-spacing:14.557536px;}
.ws18f{word-spacing:15.002640px;}
.ws7e{word-spacing:15.047568px;}
.ws133{word-spacing:15.071472px;}
.wsff{word-spacing:15.131232px;}
.ws118{word-spacing:15.149160px;}
.ws135{word-spacing:15.232824px;}
.ws14b{word-spacing:15.262704px;}
.wsce{word-spacing:15.770664px;}
.ws22{word-spacing:15.824448px;}
.ws25{word-spacing:15.842376px;}
.wsf1{word-spacing:15.860304px;}
.ws9b{word-spacing:16.457904px;}
.wsb3{word-spacing:16.529616px;}
.ws63{word-spacing:17.109288px;}
.ws47{word-spacing:17.306496px;}
.ws2e{word-spacing:17.933976px;}
.ws137{word-spacing:17.957880px;}
.ws5b{word-spacing:18.005688px;}
.ws5a{word-spacing:18.035568px;}
.wsef{word-spacing:18.095328px;}
.ws41{word-spacing:18.525600px;}
.ws134{word-spacing:18.878184px;}
.ws7f{word-spacing:19.941912px;}
.ws13d{word-spacing:20.886120px;}
.ws7a{word-spacing:22.302432px;}
.wsaa{word-spacing:22.326336px;}
.ws12d{word-spacing:24.382080px;}
.ws1e{word-spacing:24.591240px;}
.ws153{word-spacing:24.633072px;}
.ws62{word-spacing:28.033416px;}
.ws33{word-spacing:28.702728px;}
.ws8f{word-spacing:50.317920px;}
.ws10d{word-spacing:63.170280px;}
.ws110{word-spacing:77.270832px;}
.ws115{word-spacing:80.358192px;}
._f{margin-left:-2.590848px;}
._0{margin-left:-1.533168px;}
._1{width:1.415232px;}
._d{width:3.760992px;}
._e{width:15.975360px;}
._a{width:67.468464px;}
._3{width:87.816096px;}
._5{width:116.379000px;}
._9{width:128.612664px;}
._4{width:145.062504px;}
._c{width:158.519664px;}
._8{width:165.386016px;}
._6{width:230.697288px;}
._7{width:272.276208px;}
._b{width:433.200024px;}
._2{width:1269.216000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.999459px;}
.fs2{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:61.753770px;}
.yde{bottom:62.848872px;}
.y110{bottom:64.450314px;}
.y1b1{bottom:66.075894px;}
.y176{bottom:66.240234px;}
.y137{bottom:68.398866px;}
.y3d{bottom:69.493158px;}
.y66{bottom:69.503616px;}
.ya2{bottom:79.033374px;}
.ydd{bottom:80.128476px;}
.y10f{bottom:81.729918px;}
.y136{bottom:81.898650px;}
.y1b0{bottom:83.355498px;}
.y175{bottom:83.519838px;}
.y3c{bottom:86.772762px;}
.y65{bottom:86.783220px;}
.y1ca{bottom:89.453232px;}
.ya1{bottom:96.312978px;}
.ydc{bottom:97.408080px;}
.y10e{bottom:99.009522px;}
.y1af{bottom:100.635102px;}
.y174{bottom:100.799442px;}
.y1c9{bottom:103.313790px;}
.y3b{bottom:104.052366px;}
.y64{bottom:104.062824px;}
.y68{bottom:108.002321px;}
.ya0{bottom:113.592582px;}
.ydb{bottom:114.687684px;}
.y10d{bottom:116.289126px;}
.y1c8{bottom:116.993448px;}
.y1ae{bottom:117.914706px;}
.y173{bottom:118.079046px;}
.y3a{bottom:121.331970px;}
.y63{bottom:121.342428px;}
.y1c7{bottom:130.854006px;}
.y9f{bottom:130.872186px;}
.yda{bottom:131.788008px;}
.y10c{bottom:133.389450px;}
.y1ad{bottom:135.015030px;}
.y172{bottom:135.358650px;}
.y39{bottom:138.611574px;}
.y62{bottom:138.622032px;}
.y1c6{bottom:144.714564px;}
.y9e{bottom:147.972510px;}
.yd9{bottom:149.067612px;}
.y10b{bottom:150.669054px;}
.y1ac{bottom:152.294634px;}
.y38{bottom:155.711898px;}
.y61{bottom:155.722356px;}
.y1c5{bottom:158.394222px;}
.y16e{bottom:159.297660px;}
.y171{bottom:163.438650px;}
.y170{bottom:166.136886px;}
.y16a{bottom:166.138092px;}
.y9d{bottom:166.332276px;}
.yd8{bottom:166.347216px;}
.y10a{bottom:167.948658px;}
.y1ab{bottom:169.574238px;}
.y1c4{bottom:172.254780px;}
.y16d{bottom:172.977318px;}
.y37{bottom:172.991502px;}
.y60{bottom:173.001960px;}
.y16f{bottom:179.997444px;}
.y169{bottom:179.998650px;}
.y9c{bottom:183.611880px;}
.yd7{bottom:183.626820px;}
.y109{bottom:185.228262px;}
.y1c3{bottom:186.115338px;}
.y16b{bottom:186.117894px;}
.y16c{bottom:186.837876px;}
.y1aa{bottom:186.853842px;}
.y36{bottom:190.271106px;}
.y5f{bottom:190.281564px;}
.y1c2{bottom:199.794996px;}
.y9b{bottom:200.891484px;}
.yd6{bottom:200.906424px;}
.y108{bottom:202.507866px;}
.y1a9{bottom:204.133446px;}
.y35{bottom:207.550710px;}
.y5e{bottom:207.561168px;}
.y167{bottom:211.676886px;}
.y164{bottom:211.678092px;}
.y168{bottom:212.398650px;}
.y1c1{bottom:213.655554px;}
.yd5{bottom:218.186028px;}
.y9a{bottom:219.251250px;}
.y107{bottom:219.787470px;}
.y1a8{bottom:221.413050px;}
.y15b{bottom:224.097318px;}
.y34{bottom:224.830314px;}
.y5d{bottom:224.840772px;}
.y166{bottom:225.537444px;}
.y162{bottom:225.538650px;}
.y1c0{bottom:227.516112px;}
.yd4{bottom:235.286352px;}
.y99{bottom:236.351574px;}
.y106{bottom:236.527740px;}
.y15a{bottom:237.957876px;}
.y1a7{bottom:238.513374px;}
.y163{bottom:238.679226px;}
.y165{bottom:239.398002px;}
.y1bf{bottom:241.195770px;}
.y33{bottom:242.109918px;}
.y5c{bottom:242.120376px;}
.y159{bottom:251.818434px;}
.yd3{bottom:252.565956px;}
.y98{bottom:253.631178px;}
.y105{bottom:254.167398px;}
.y1be{bottom:255.056328px;}
.y1a6{bottom:255.792978px;}
.y32{bottom:259.210242px;}
.y5b{bottom:259.220700px;}
.y15f{bottom:264.237822px;}
.y161{bottom:264.958650px;}
.y158{bottom:265.498092px;}
.y1bd{bottom:268.916886px;}
.yd2{bottom:269.845560px;}
.y97{bottom:270.910782px;}
.y104{bottom:271.447002px;}
.y1a5{bottom:273.072582px;}
.y135{bottom:274.139262px;}
.y31{bottom:276.129792px;}
.y5a{bottom:276.500304px;}
.y15c{bottom:278.097174px;}
.y15e{bottom:278.098380px;}
.y157{bottom:279.358650px;}
.y1bc{bottom:282.596544px;}
.yd1{bottom:287.125164px;}
.y96{bottom:288.190386px;}
.y103{bottom:288.726606px;}
.y1a4{bottom:290.352186px;}
.y15d{bottom:291.237750px;}
.y134{bottom:291.418866px;}
.y160{bottom:291.778038px;}
.y59{bottom:293.419854px;}
.y30{bottom:293.769450px;}
.y1bb{bottom:296.457102px;}
.yd0{bottom:304.404768px;}
.y133{bottom:304.918650px;}
.y95{bottom:305.469990px;}
.y102{bottom:306.006210px;}
.y1a3{bottom:307.631790px;}
.y1ba{bottom:310.317660px;}
.y58{bottom:310.699458px;}
.y2f{bottom:311.049054px;}
.y153{bottom:316.798992px;}
.y156{bottom:317.338650px;}
.ycf{bottom:321.684372px;}
.y94{bottom:322.749594px;}
.y101{bottom:323.106534px;}
.y155{bottom:323.638218px;}
.y1b9{bottom:323.997318px;}
.y1a2{bottom:324.911394px;}
.y2e{bottom:328.328658px;}
.y57{bottom:328.339116px;}
.y150{bottom:330.478650px;}
.y154{bottom:337.498776px;}
.y1b8{bottom:337.857876px;}
.yce{bottom:338.784696px;}
.y93{bottom:339.849918px;}
.y100{bottom:340.386138px;}
.y1a1{bottom:342.011718px;}
.y151{bottom:343.619226px;}
.y152{bottom:344.339208px;}
.y2d{bottom:345.608262px;}
.y56{bottom:345.618720px;}
.y1b7{bottom:351.718434px;}
.ycd{bottom:356.064300px;}
.yff{bottom:357.665742px;}
.y92{bottom:358.209684px;}
.y1a0{bottom:359.291322px;}
.y2c{bottom:362.708586px;}
.y55{bottom:362.719044px;}
.y1b6{bottom:365.398092px;}
.y14c{bottom:369.178092px;}
.y14f{bottom:369.898650px;}
.ycc{bottom:373.343904px;}
.yfe{bottom:374.945346px;}
.y91{bottom:375.489288px;}
.y14e{bottom:376.198218px;}
.y19f{bottom:376.570926px;}
.y1b5{bottom:379.258650px;}
.y2b{bottom:379.988190px;}
.y54{bottom:379.998648px;}
.y14a{bottom:383.038650px;}
.y143{bottom:388.617876px;}
.y14d{bottom:389.877876px;}
.ycb{bottom:390.623508px;}
.yfd{bottom:392.224950px;}
.y90{bottom:392.768892px;}
.y1b4{bottom:393.849054px;}
.y19e{bottom:393.850530px;}
.y14b{bottom:396.179226px;}
.y2a{bottom:397.267794px;}
.y53{bottom:397.278252px;}
.y142{bottom:402.297534px;}
.yca{bottom:407.903112px;}
.yfc{bottom:409.504554px;}
.y8f{bottom:410.048496px;}
.y1b3{bottom:411.128658px;}
.y19d{bottom:411.130134px;}
.y29{bottom:414.547398px;}
.y52{bottom:414.557856px;}
.y141{bottom:416.158092px;}
.y148{bottom:421.738254px;}
.y149{bottom:422.458800px;}
.yc9{bottom:425.182716px;}
.yfb{bottom:426.604878px;}
.y8e{bottom:427.148820px;}
.y1b2{bottom:428.228982px;}
.y19c{bottom:428.230458px;}
.y140{bottom:430.018650px;}
.y28{bottom:431.827002px;}
.y51{bottom:431.837460px;}
.y1f9{bottom:434.504304px;}
.y144{bottom:435.597606px;}
.y147{bottom:435.598812px;}
.yc8{bottom:442.283040px;}
.yfa{bottom:443.884482px;}
.y8d{bottom:445.508586px;}
.y19b{bottom:445.510062px;}
.y1f8{bottom:448.183962px;}
.y145{bottom:448.738182px;}
.y27{bottom:448.927326px;}
.y50{bottom:448.937784px;}
.y146{bottom:449.278470px;}
.yc7{bottom:459.562644px;}
.yf9{bottom:461.164086px;}
.y1f7{bottom:462.044520px;}
.y8c{bottom:462.788190px;}
.y19a{bottom:462.789666px;}
.y26{bottom:466.206930px;}
.y4f{bottom:466.217388px;}
.y13f{bottom:469.078650px;}
.y1f6{bottom:475.905078px;}
.yc6{bottom:476.842248px;}
.yf8{bottom:478.443690px;}
.y8b{bottom:480.067794px;}
.y199{bottom:480.069270px;}
.y25{bottom:483.486534px;}
.y4e{bottom:483.496992px;}
.y13d{bottom:483.659118px;}
.y1f5{bottom:489.584736px;}
.y13c{bottom:490.318650px;}
.yc5{bottom:494.121852px;}
.yf7{bottom:495.723294px;}
.y13e{bottom:497.338776px;}
.y8a{bottom:497.347398px;}
.y198{bottom:497.348874px;}
.y132{bottom:497.359224px;}
.y24{bottom:500.766138px;}
.y4d{bottom:500.776596px;}
.y1f4{bottom:503.445294px;}
.yc4{bottom:511.401456px;}
.yf6{bottom:512.642844px;}
.y13b{bottom:514.258938px;}
.y89{bottom:514.627002px;}
.y197{bottom:514.628478px;}
.y131{bottom:514.638828px;}
.y1f3{bottom:517.305852px;}
.y23{bottom:518.045742px;}
.y4c{bottom:518.056200px;}
.yc3{bottom:528.501780px;}
.yf5{bottom:530.103222px;}
.y1f2{bottom:530.985510px;}
.y13a{bottom:531.538542px;}
.y88{bottom:531.727326px;}
.y196{bottom:531.728802px;}
.y130{bottom:531.739152px;}
.y22{bottom:535.325346px;}
.y4b{bottom:535.335804px;}
.y1f1{bottom:544.846068px;}
.yc2{bottom:545.781384px;}
.yf4{bottom:547.382826px;}
.y139{bottom:548.638866px;}
.y87{bottom:549.006930px;}
.y195{bottom:549.008406px;}
.y12f{bottom:549.018756px;}
.y21{bottom:552.425670px;}
.y4a{bottom:552.436128px;}
.y1f0{bottom:558.706626px;}
.y138{bottom:562.138650px;}
.yc1{bottom:562.700934px;}
.yf3{bottom:564.662430px;}
.y86{bottom:566.286534px;}
.y194{bottom:566.288010px;}
.y12e{bottom:566.298360px;}
.y20{bottom:569.705274px;}
.y49{bottom:569.715732px;}
.y1ef{bottom:572.386284px;}
.yc0{bottom:580.340592px;}
.yf2{bottom:581.942034px;}
.y85{bottom:583.566138px;}
.y193{bottom:583.567614px;}
.y12d{bottom:583.577964px;}
.y1ee{bottom:586.246842px;}
.y1f{bottom:586.984878px;}
.y48{bottom:586.995336px;}
.ybf{bottom:597.620196px;}
.yf1{bottom:599.221638px;}
.y1ed{bottom:600.107400px;}
.y12c{bottom:600.497514px;}
.y84{bottom:600.845742px;}
.y192{bottom:600.847218px;}
.y47{bottom:603.914886px;}
.y1e{bottom:604.264482px;}
.y1ec{bottom:613.787058px;}
.ybe{bottom:614.899800px;}
.yf0{bottom:616.501242px;}
.y83{bottom:618.125346px;}
.y191{bottom:618.126822px;}
.y12b{bottom:618.137172px;}
.y1d{bottom:621.544086px;}
.y46{bottom:621.554544px;}
.y1eb{bottom:627.647616px;}
.ybd{bottom:632.000124px;}
.yef{bottom:633.601566px;}
.y82{bottom:635.225670px;}
.y190{bottom:635.227146px;}
.y12a{bottom:635.237496px;}
.y1c{bottom:638.823690px;}
.y45{bottom:638.834148px;}
.y1ea{bottom:641.508174px;}
.ybc{bottom:649.279728px;}
.yee{bottom:650.881170px;}
.y81{bottom:652.505274px;}
.y18f{bottom:652.506750px;}
.y129{bottom:652.517100px;}
.y1e9{bottom:655.187832px;}
.y1b{bottom:655.924014px;}
.y44{bottom:655.934472px;}
.ybb{bottom:666.559332px;}
.yed{bottom:668.160774px;}
.y1e8{bottom:669.048390px;}
.y80{bottom:669.784878px;}
.y18e{bottom:669.786354px;}
.y128{bottom:669.796704px;}
.y1a{bottom:673.203618px;}
.y43{bottom:673.214076px;}
.y1e7{bottom:682.908948px;}
.yba{bottom:683.838936px;}
.yec{bottom:685.440378px;}
.y7f{bottom:687.064482px;}
.y18d{bottom:687.065958px;}
.y127{bottom:687.076308px;}
.y19{bottom:690.483222px;}
.y42{bottom:690.493680px;}
.y1e6{bottom:696.588606px;}
.yb9{bottom:701.118540px;}
.yeb{bottom:702.719982px;}
.y7e{bottom:704.344086px;}
.y18c{bottom:704.345562px;}
.y126{bottom:704.355912px;}
.y18{bottom:707.762826px;}
.y41{bottom:707.773284px;}
.y1e5{bottom:710.449164px;}
.yb8{bottom:718.398144px;}
.yea{bottom:719.820306px;}
.y7d{bottom:721.444410px;}
.y18b{bottom:721.445886px;}
.y125{bottom:721.456236px;}
.y1e4{bottom:724.128822px;}
.y17{bottom:725.042430px;}
.y40{bottom:725.052888px;}
.yb7{bottom:735.498468px;}
.ye9{bottom:737.099910px;}
.y1e3{bottom:737.989380px;}
.y7c{bottom:738.724014px;}
.y18a{bottom:738.725490px;}
.y124{bottom:738.735840px;}
.y16{bottom:742.142754px;}
.y3f{bottom:742.153212px;}
.y1e2{bottom:751.849938px;}
.yb6{bottom:752.778072px;}
.ye8{bottom:754.379514px;}
.y7b{bottom:756.003618px;}
.y189{bottom:756.005094px;}
.y123{bottom:756.015444px;}
.y15{bottom:759.062304px;}
.y3e{bottom:759.432816px;}
.y1e1{bottom:765.529596px;}
.yb5{bottom:770.057676px;}
.ye7{bottom:771.659118px;}
.y7a{bottom:773.283222px;}
.y188{bottom:773.284698px;}
.y122{bottom:773.295048px;}
.y14{bottom:776.701962px;}
.y1e0{bottom:779.390154px;}
.yb4{bottom:787.337280px;}
.ye6{bottom:788.938722px;}
.y79{bottom:790.562826px;}
.y187{bottom:790.564302px;}
.y121{bottom:790.574652px;}
.y1df{bottom:793.250712px;}
.y13{bottom:793.981566px;}
.yb3{bottom:804.616884px;}
.ye5{bottom:805.858272px;}
.y1de{bottom:806.930370px;}
.y78{bottom:807.842430px;}
.y186{bottom:807.843906px;}
.y120{bottom:807.854256px;}
.y12{bottom:811.261170px;}
.y1dd{bottom:820.789722px;}
.yb2{bottom:821.896488px;}
.ye4{bottom:823.318650px;}
.y77{bottom:824.942754px;}
.y185{bottom:824.944230px;}
.y11f{bottom:824.954580px;}
.y11{bottom:828.540774px;}
.y1dc{bottom:834.650280px;}
.yb1{bottom:838.996812px;}
.y76{bottom:842.222358px;}
.y184{bottom:842.223834px;}
.y11e{bottom:842.234184px;}
.y10{bottom:845.641098px;}
.y1db{bottom:848.329938px;}
.ye3{bottom:849.778650px;}
.yb0{bottom:857.356578px;}
.y75{bottom:859.501962px;}
.y183{bottom:859.503438px;}
.y11d{bottom:859.513788px;}
.y1da{bottom:862.190496px;}
.yf{bottom:862.920702px;}
.ye2{bottom:871.738650px;}
.yaf{bottom:874.636182px;}
.y1d9{bottom:876.051054px;}
.y74{bottom:876.781566px;}
.y182{bottom:876.783042px;}
.y11c{bottom:876.793392px;}
.ye{bottom:880.200306px;}
.ye1{bottom:887.218110px;}
.y1d8{bottom:889.730712px;}
.yae{bottom:892.995948px;}
.y73{bottom:894.061170px;}
.y181{bottom:894.062646px;}
.y11b{bottom:894.072996px;}
.yd{bottom:897.479910px;}
.ye0{bottom:901.798650px;}
.y1d7{bottom:903.591270px;}
.yad{bottom:910.275552px;}
.y72{bottom:911.340774px;}
.y180{bottom:911.342250px;}
.y11a{bottom:911.352600px;}
.yc{bottom:914.759514px;}
.y1d6{bottom:917.451828px;}
.ydf{bottom:927.720990px;}
.y71{bottom:928.441098px;}
.y17f{bottom:928.442574px;}
.y119{bottom:928.452924px;}
.yac{bottom:928.456038px;}
.y1d5{bottom:931.131486px;}
.yb{bottom:932.039118px;}
.y1d4{bottom:944.992044px;}
.y70{bottom:945.720702px;}
.y17e{bottom:945.722178px;}
.y118{bottom:945.732528px;}
.yab{bottom:945.735642px;}
.ya{bottom:949.139442px;}
.y1d3{bottom:958.852602px;}
.y6f{bottom:963.000306px;}
.y17d{bottom:963.001782px;}
.y117{bottom:963.012132px;}
.yaa{bottom:963.015246px;}
.y9{bottom:966.419046px;}
.y1d2{bottom:972.532260px;}
.y6e{bottom:980.279910px;}
.y17c{bottom:980.281386px;}
.y116{bottom:980.291736px;}
.ya9{bottom:980.294850px;}
.y8{bottom:983.698650px;}
.y1d1{bottom:986.392818px;}
.y7{bottom:990.538650px;}
.y17b{bottom:997.200936px;}
.y6d{bottom:997.559514px;}
.y115{bottom:997.571340px;}
.ya8{bottom:997.574454px;}
.y1d0{bottom:1000.252170px;}
.y6{bottom:1000.978650px;}
.y4{bottom:1000.979100px;}
.y5{bottom:1007.818650px;}
.y1cf{bottom:1013.931828px;}
.y6c{bottom:1014.839118px;}
.y17a{bottom:1014.840594px;}
.y114{bottom:1014.850944px;}
.ya7{bottom:1014.854058px;}
.y3{bottom:1017.898650px;}
.y1ce{bottom:1027.792386px;}
.ya6{bottom:1031.594328px;}
.y6b{bottom:1031.939442px;}
.y179{bottom:1031.940918px;}
.y113{bottom:1031.951268px;}
.y2{bottom:1036.438632px;}
.y1cd{bottom:1041.652944px;}
.y6a{bottom:1049.219046px;}
.y178{bottom:1049.220522px;}
.y112{bottom:1049.230872px;}
.ya5{bottom:1049.233986px;}
.y1cc{bottom:1055.332602px;}
.y1{bottom:1060.558650px;}
.ya4{bottom:1066.153536px;}
.y69{bottom:1066.498650px;}
.y177{bottom:1066.500126px;}
.y111{bottom:1066.510476px;}
.y1cb{bottom:1069.193160px;}
.y67{bottom:1124.644617px;}
.h4{height:26.748984px;}
.ha{height:33.188555px;}
.h8{height:33.424102px;}
.hc{height:35.349707px;}
.hb{height:36.068483px;}
.h7{height:36.210394px;}
.h2{height:39.830273px;}
.h3{height:41.114180px;}
.h5{height:41.353920px;}
.h6{height:54.369141px;}
.h9{height:61.269059px;}
.h1{height:62.110547px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:33.075049px;}
.x13{left:53.999456px;}
.x38{left:64.621933px;}
.x28{left:70.741777px;}
.x33{left:73.801350px;}
.x29{left:76.142114px;}
.x27{left:79.381350px;}
.x16{left:81.000934px;}
.x36{left:82.441350px;}
.x22{left:98.461350px;}
.x37{left:99.721705px;}
.x17{left:108.000518px;}
.x31{left:130.681350px;}
.x35{left:133.021350px;}
.x2a{left:134.102676px;}
.xd{left:135.901350px;}
.x1{left:139.681350px;}
.xe{left:140.761350px;}
.x26{left:154.981350px;}
.x2b{left:173.343356px;}
.x30{left:176.761350px;}
.x12{left:182.879347px;}
.x1b{left:211.321837px;}
.x4{left:229.861246px;}
.x11{left:232.560259px;}
.x2c{left:257.043753px;}
.x2d{left:263.703525px;}
.x32{left:270.002324px;}
.x23{left:275.942453px;}
.x1d{left:278.462247px;}
.x1c{left:279.721681px;}
.x2{left:318.421745px;}
.x5{left:339.301350px;}
.x24{left:341.463245px;}
.x6{left:344.161350px;}
.x2e{left:354.964153px;}
.x2f{left:356.763863px;}
.x34{left:359.462823px;}
.x25{left:369.543066px;}
.x1f{left:374.222754px;}
.x1e{left:377.103014px;}
.x21{left:431.821350px;}
.x7{left:435.241350px;}
.x8{left:440.101350px;}
.x3{left:459.001350px;}
.x14{left:486.000288px;}
.xf{left:496.441350px;}
.x10{left:501.301350px;}
.x19{left:513.000269px;}
.x1a{left:539.999853px;}
.x9{left:558.901350px;}
.xa{left:563.761350px;}
.x18{left:640.800596px;}
.xb{left:682.921350px;}
.xc{left:687.961350px;}
.x20{left:863.821350px;}
@media print{
.v1{vertical-align:-26.238272pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.559936pt;}
.v2{vertical-align:24.321536pt;}
.ls6a{letter-spacing:-0.857600pt;}
.ls6e{letter-spacing:-0.454528pt;}
.ls81{letter-spacing:-0.437376pt;}
.ls8b{letter-spacing:-0.428800pt;}
.ls68{letter-spacing:-0.424512pt;}
.ls8c{letter-spacing:-0.411648pt;}
.ls6c{letter-spacing:-0.407360pt;}
.ls84{letter-spacing:-0.398784pt;}
.ls88{letter-spacing:-0.394496pt;}
.ls3e{letter-spacing:-0.393088pt;}
.ls6d{letter-spacing:-0.390208pt;}
.ls24{letter-spacing:-0.387776pt;}
.ls55{letter-spacing:-0.382464pt;}
.ls1b{letter-spacing:-0.377152pt;}
.ls69{letter-spacing:-0.373056pt;}
.ls25{letter-spacing:-0.371840pt;}
.ls72{letter-spacing:-0.368768pt;}
.ls2c{letter-spacing:-0.366528pt;}
.ls70{letter-spacing:-0.364480pt;}
.ls1d{letter-spacing:-0.361216pt;}
.ls27{letter-spacing:-0.355904pt;}
.ls17{letter-spacing:-0.351936pt;}
.ls64{letter-spacing:-0.351616pt;}
.ls44{letter-spacing:-0.350592pt;}
.ls71{letter-spacing:-0.347328pt;}
.ls21{letter-spacing:-0.345280pt;}
.ls83{letter-spacing:-0.343040pt;}
.ls2f{letter-spacing:-0.339968pt;}
.ls6b{letter-spacing:-0.338752pt;}
.ls73{letter-spacing:-0.330176pt;}
.ls4a{letter-spacing:-0.329344pt;}
.ls45{letter-spacing:-0.318720pt;}
.ls1c{letter-spacing:-0.308096pt;}
.ls61{letter-spacing:-0.300160pt;}
.ls91{letter-spacing:-0.278720pt;}
.ls18{letter-spacing:-0.277056pt;}
.ls43{letter-spacing:-0.270912pt;}
.ls8a{letter-spacing:-0.270144pt;}
.ls86{letter-spacing:-0.261568pt;}
.ls8e{letter-spacing:-0.257280pt;}
.ls76{letter-spacing:-0.249664pt;}
.ls4d{letter-spacing:-0.248704pt;}
.ls52{letter-spacing:-0.231552pt;}
.ls4e{letter-spacing:-0.222976pt;}
.ls51{letter-spacing:-0.205824pt;}
.ls31{letter-spacing:-0.185920pt;}
.ls4f{letter-spacing:-0.180096pt;}
.ls50{letter-spacing:-0.154368pt;}
.ls5f{letter-spacing:-0.145792pt;}
.ls23{letter-spacing:-0.132800pt;}
.ls2a{letter-spacing:-0.106240pt;}
.ls4c{letter-spacing:-0.102912pt;}
.ls58{letter-spacing:-0.100928pt;}
.ls6f{letter-spacing:-0.085760pt;}
.ls57{letter-spacing:-0.084992pt;}
.ls1a{letter-spacing:-0.079680pt;}
.ls56{letter-spacing:-0.074368pt;}
.ls3d{letter-spacing:-0.063744pt;}
.ls3f{letter-spacing:-0.053120pt;}
.ls77{letter-spacing:-0.047808pt;}
.ls26{letter-spacing:-0.042496pt;}
.ls40{letter-spacing:-0.037184pt;}
.ls54{letter-spacing:-0.034304pt;}
.ls33{letter-spacing:-0.031872pt;}
.ls1f{letter-spacing:-0.026560pt;}
.ls75{letter-spacing:-0.021440pt;}
.ls30{letter-spacing:-0.021248pt;}
.ls53{letter-spacing:-0.017152pt;}
.ls22{letter-spacing:-0.015936pt;}
.ls1e{letter-spacing:-0.010624pt;}
.ls3c{letter-spacing:-0.005312pt;}
.ls19{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.005312pt;}
.lsf{letter-spacing:0.010624pt;}
.ls29{letter-spacing:0.015936pt;}
.ls11{letter-spacing:0.021248pt;}
.ls74{letter-spacing:0.021440pt;}
.lsc{letter-spacing:0.026560pt;}
.ls10{letter-spacing:0.031872pt;}
.ls41{letter-spacing:0.037184pt;}
.ls7c{letter-spacing:0.042496pt;}
.ls3{letter-spacing:0.047808pt;}
.ls38{letter-spacing:0.053120pt;}
.ls1{letter-spacing:0.058432pt;}
.ls16{letter-spacing:0.063744pt;}
.ls37{letter-spacing:0.069056pt;}
.lsb{letter-spacing:0.074368pt;}
.lse{letter-spacing:0.079680pt;}
.ls5{letter-spacing:0.084992pt;}
.ls9{letter-spacing:0.090304pt;}
.ls4{letter-spacing:0.095616pt;}
.lsa{letter-spacing:0.100928pt;}
.ls36{letter-spacing:0.106240pt;}
.ls8{letter-spacing:0.111552pt;}
.ls2{letter-spacing:0.116864pt;}
.ls14{letter-spacing:0.122176pt;}
.ls48{letter-spacing:0.127488pt;}
.ls42{letter-spacing:0.132800pt;}
.ls49{letter-spacing:0.138112pt;}
.ls3b{letter-spacing:0.143424pt;}
.ls85{letter-spacing:0.145792pt;}
.ls6{letter-spacing:0.148736pt;}
.ls62{letter-spacing:0.150080pt;}
.ls2b{letter-spacing:0.154048pt;}
.ls20{letter-spacing:0.159360pt;}
.ls90{letter-spacing:0.162944pt;}
.ls13{letter-spacing:0.164672pt;}
.ls7e{letter-spacing:0.167232pt;}
.ls2d{letter-spacing:0.169984pt;}
.ls0{letter-spacing:0.175296pt;}
.ls65{letter-spacing:0.180096pt;}
.ls12{letter-spacing:0.180608pt;}
.ls82{letter-spacing:0.184384pt;}
.ls2e{letter-spacing:0.185920pt;}
.ls5d{letter-spacing:0.188672pt;}
.lsd{letter-spacing:0.191232pt;}
.ls8f{letter-spacing:0.192960pt;}
.ls28{letter-spacing:0.196544pt;}
.ls63{letter-spacing:0.197248pt;}
.ls79{letter-spacing:0.201536pt;}
.ls7{letter-spacing:0.201856pt;}
.ls87{letter-spacing:0.205824pt;}
.ls34{letter-spacing:0.207168pt;}
.ls78{letter-spacing:0.210112pt;}
.ls5e{letter-spacing:0.212480pt;}
.ls80{letter-spacing:0.214400pt;}
.ls15{letter-spacing:0.217792pt;}
.ls5b{letter-spacing:0.218688pt;}
.ls7f{letter-spacing:0.222976pt;}
.ls46{letter-spacing:0.223104pt;}
.ls67{letter-spacing:0.227264pt;}
.ls8d{letter-spacing:0.231552pt;}
.ls60{letter-spacing:0.235840pt;}
.ls35{letter-spacing:0.239040pt;}
.ls5c{letter-spacing:0.240128pt;}
.ls7a{letter-spacing:0.244416pt;}
.ls66{letter-spacing:0.248704pt;}
.ls89{letter-spacing:0.252992pt;}
.ls5a{letter-spacing:0.270144pt;}
.ls32{letter-spacing:0.308096pt;}
.ls4b{letter-spacing:0.568384pt;}
.ls7d{letter-spacing:0.594944pt;}
.ls7b{letter-spacing:0.616192pt;}
.ls39{letter-spacing:56.753408pt;}
.ls47{letter-spacing:340.896000pt;}
.ls59{letter-spacing:401.562624pt;}
.ws0{word-spacing:-13.327808pt;}
.wsfe{word-spacing:-10.968704pt;}
.wsfd{word-spacing:-10.917248pt;}
.ws10e{word-spacing:-0.728960pt;}
.ws20{word-spacing:-0.711808pt;}
.ws181{word-spacing:-0.707520pt;}
.ws191{word-spacing:-0.664640pt;}
.ws15a{word-spacing:-0.462144pt;}
.ws5f{word-spacing:-0.207168pt;}
.ws51{word-spacing:-0.180608pt;}
.ws17c{word-spacing:-0.115776pt;}
.ws172{word-spacing:-0.107200pt;}
.ws18d{word-spacing:-0.102912pt;}
.wsc7{word-spacing:-0.098624pt;}
.wsb1{word-spacing:-0.095616pt;}
.ws111{word-spacing:-0.094336pt;}
.ws176{word-spacing:-0.090048pt;}
.ws167{word-spacing:-0.085760pt;}
.wsc8{word-spacing:-0.081472pt;}
.ws140{word-spacing:-0.079680pt;}
.ws16d{word-spacing:-0.077184pt;}
.ws169{word-spacing:-0.068608pt;}
.ws108{word-spacing:-0.063744pt;}
.ws194{word-spacing:-0.060032pt;}
.ws190{word-spacing:-0.055744pt;}
.ws5e{word-spacing:-0.053120pt;}
.ws114{word-spacing:-0.051456pt;}
.ws130{word-spacing:-0.047808pt;}
.ws7{word-spacing:-0.042496pt;}
.ws3e{word-spacing:-0.037184pt;}
.ws4e{word-spacing:-0.031872pt;}
.ws3f{word-spacing:-0.015936pt;}
.ws113{word-spacing:-0.012864pt;}
.ws10b{word-spacing:-0.005312pt;}
.ws3{word-spacing:0.000000pt;}
.wsd2{word-spacing:0.005312pt;}
.ws21{word-spacing:0.021248pt;}
.ws96{word-spacing:0.031872pt;}
.wsa1{word-spacing:0.037184pt;}
.wsc4{word-spacing:0.038592pt;}
.wsf8{word-spacing:0.047808pt;}
.ws89{word-spacing:0.053120pt;}
.ws2b{word-spacing:0.058432pt;}
.wsc3{word-spacing:0.064320pt;}
.ws11b{word-spacing:0.069056pt;}
.wsc5{word-spacing:0.090048pt;}
.ws40{word-spacing:0.095616pt;}
.wsfc{word-spacing:0.106240pt;}
.wsc1{word-spacing:0.111552pt;}
.wsc6{word-spacing:0.115776pt;}
.ws149{word-spacing:0.122176pt;}
.ws9d{word-spacing:0.127488pt;}
.ws80{word-spacing:0.132800pt;}
.ws43{word-spacing:0.138112pt;}
.ws9{word-spacing:0.143424pt;}
.ws57{word-spacing:0.154048pt;}
.wsa{word-spacing:0.159360pt;}
.ws15f{word-spacing:0.180608pt;}
.ws6d{word-spacing:0.185920pt;}
.ws93{word-spacing:0.196544pt;}
.ws8c{word-spacing:0.207168pt;}
.ws4{word-spacing:0.212480pt;}
.ws164{word-spacing:0.222976pt;}
.ws2c{word-spacing:0.239040pt;}
.ws195{word-spacing:0.415936pt;}
.ws10c{word-spacing:0.437376pt;}
.ws6{word-spacing:0.440896pt;}
.ws18a{word-spacing:0.484544pt;}
.wse8{word-spacing:0.488704pt;}
.ws8{word-spacing:0.494016pt;}
.ws5{word-spacing:0.509952pt;}
.ws10f{word-spacing:0.510272pt;}
.ws15{word-spacing:0.520576pt;}
.ws112{word-spacing:0.527424pt;}
.ws184{word-spacing:0.544576pt;}
.ws2{word-spacing:0.546624pt;}
.ws187{word-spacing:0.548864pt;}
.ws17d{word-spacing:0.570304pt;}
.ws166{word-spacing:0.574592pt;}
.ws124{word-spacing:0.589632pt;}
.ws16b{word-spacing:0.591744pt;}
.ws12f{word-spacing:0.616192pt;}
.ws1{word-spacing:0.621504pt;}
.ws19{word-spacing:0.626816pt;}
.ws174{word-spacing:0.630336pt;}
.ws157{word-spacing:0.658688pt;}
.ws148{word-spacing:0.664000pt;}
.ws1a{word-spacing:0.674624pt;}
.ws158{word-spacing:0.685248pt;}
.ws70{word-spacing:0.701184pt;}
.wsc{word-spacing:0.711808pt;}
.wsc2{word-spacing:0.771840pt;}
.ws8b{word-spacing:0.780864pt;}
.wsf9{word-spacing:0.786176pt;}
.ws11c{word-spacing:0.796800pt;}
.wsb6{word-spacing:0.812736pt;}
.wsd{word-spacing:1.115520pt;}
.ws107{word-spacing:1.189888pt;}
.ws56{word-spacing:1.200512pt;}
.ws3c{word-spacing:1.211136pt;}
.ws44{word-spacing:1.221760pt;}
.ws18b{word-spacing:1.230656pt;}
.wsa5{word-spacing:1.258944pt;}
.ws53{word-spacing:1.285504pt;}
.wse4{word-spacing:1.296128pt;}
.wscb{word-spacing:1.301440pt;}
.wsd0{word-spacing:1.312064pt;}
.ws82{word-spacing:1.322688pt;}
.ws99{word-spacing:1.349248pt;}
.wsf3{word-spacing:1.359872pt;}
.ws2d{word-spacing:1.381120pt;}
.wsdc{word-spacing:1.397056pt;}
.wscc{word-spacing:1.402368pt;}
.ws42{word-spacing:1.434240pt;}
.ws60{word-spacing:1.450176pt;}
.wsf4{word-spacing:1.492672pt;}
.ws18c{word-spacing:1.826688pt;}
.ws163{word-spacing:1.830976pt;}
.ws183{word-spacing:1.835264pt;}
.ws186{word-spacing:1.839552pt;}
.ws193{word-spacing:1.843840pt;}
.ws16e{word-spacing:1.848128pt;}
.wsf7{word-spacing:1.848576pt;}
.ws5c{word-spacing:1.853888pt;}
.ws74{word-spacing:1.859200pt;}
.ws34{word-spacing:1.875136pt;}
.wsb2{word-spacing:1.880448pt;}
.ws8a{word-spacing:1.891072pt;}
.wsbe{word-spacing:1.901696pt;}
.wsa9{word-spacing:1.944192pt;}
.ws122{word-spacing:1.960128pt;}
.ws132{word-spacing:1.965440pt;}
.wsa8{word-spacing:1.986688pt;}
.ws6b{word-spacing:2.029184pt;}
.ws103{word-spacing:2.050432pt;}
.wsab{word-spacing:2.055744pt;}
.ws49{word-spacing:2.066368pt;}
.ws18e{word-spacing:2.306944pt;}
.wsa2{word-spacing:2.363840pt;}
.ws165{word-spacing:2.474176pt;}
.ws168{word-spacing:2.478464pt;}
.ws154{word-spacing:2.480704pt;}
.ws79{word-spacing:2.486016pt;}
.ws177{word-spacing:2.508480pt;}
.wsdb{word-spacing:2.512576pt;}
.wse{word-spacing:2.523200pt;}
.ws97{word-spacing:2.533824pt;}
.ws4b{word-spacing:2.581632pt;}
.ws13{word-spacing:2.586944pt;}
.ws65{word-spacing:2.592256pt;}
.ws125{word-spacing:2.634752pt;}
.wsaf{word-spacing:2.703808pt;}
.ws10a{word-spacing:2.714432pt;}
.ws1d{word-spacing:3.038464pt;}
.ws17{word-spacing:3.054400pt;}
.ws58{word-spacing:3.086272pt;}
.wsb9{word-spacing:3.123456pt;}
.ws1f{word-spacing:3.128768pt;}
.ws39{word-spacing:3.134080pt;}
.ws144{word-spacing:3.144704pt;}
.wsd8{word-spacing:3.150016pt;}
.wsde{word-spacing:3.187200pt;}
.ws10{word-spacing:3.208448pt;}
.ws143{word-spacing:3.219072pt;}
.ws71{word-spacing:3.235008pt;}
.ws92{word-spacing:3.245632pt;}
.wsdd{word-spacing:3.261568pt;}
.ws9a{word-spacing:3.272192pt;}
.ws90{word-spacing:3.346560pt;}
.ws78{word-spacing:3.351872pt;}
.ws86{word-spacing:3.596224pt;}
.ws171{word-spacing:3.679104pt;}
.ws12b{word-spacing:3.750272pt;}
.wsd1{word-spacing:3.771520pt;}
.wsb0{word-spacing:3.782144pt;}
.wsb{word-spacing:3.803392pt;}
.ws147{word-spacing:3.814016pt;}
.ws75{word-spacing:3.829952pt;}
.wse7{word-spacing:3.840576pt;}
.ws77{word-spacing:3.861824pt;}
.ws84{word-spacing:3.867136pt;}
.ws145{word-spacing:3.872448pt;}
.wsf2{word-spacing:3.893696pt;}
.ws100{word-spacing:3.952128pt;}
.wsea{word-spacing:3.962752pt;}
.ws1c{word-spacing:3.973376pt;}
.ws102{word-spacing:3.994624pt;}
.ws6c{word-spacing:3.999936pt;}
.ws11e{word-spacing:4.005248pt;}
.ws98{word-spacing:4.313344pt;}
.ws7c{word-spacing:4.339904pt;}
.ws151{word-spacing:4.355840pt;}
.ws109{word-spacing:4.382400pt;}
.ws121{word-spacing:4.408960pt;}
.ws12{word-spacing:4.419584pt;}
.ws173{word-spacing:4.455232pt;}
.wse6{word-spacing:4.478016pt;}
.ws12c{word-spacing:4.488640pt;}
.ws126{word-spacing:4.499264pt;}
.ws13b{word-spacing:4.504576pt;}
.wsda{word-spacing:4.515200pt;}
.ws7d{word-spacing:4.520512pt;}
.ws13e{word-spacing:4.525824pt;}
.ws3b{word-spacing:4.589568pt;}
.ws8e{word-spacing:4.600192pt;}
.ws17b{word-spacing:5.034112pt;}
.ws192{word-spacing:5.038400pt;}
.wsd5{word-spacing:5.051712pt;}
.ws2a{word-spacing:5.062336pt;}
.ws146{word-spacing:5.067648pt;}
.wsac{word-spacing:5.072960pt;}
.ws160{word-spacing:5.076992pt;}
.ws67{word-spacing:5.136704pt;}
.ws23{word-spacing:5.147328pt;}
.wse3{word-spacing:5.163264pt;}
.ws9c{word-spacing:5.168576pt;}
.ws105{word-spacing:5.173888pt;}
.ws76{word-spacing:5.184512pt;}
.ws156{word-spacing:5.195136pt;}
.wsa0{word-spacing:5.227008pt;}
.ws16{word-spacing:5.237632pt;}
.ws54{word-spacing:5.253568pt;}
.ws38{word-spacing:5.280128pt;}
.ws131{word-spacing:5.285440pt;}
.ws87{word-spacing:5.290752pt;}
.ws188{word-spacing:5.574400pt;}
.ws152{word-spacing:5.582912pt;}
.ws16c{word-spacing:5.587264pt;}
.ws59{word-spacing:5.657280pt;}
.ws161{word-spacing:5.660160pt;}
.ws36{word-spacing:5.678528pt;}
.ws180{word-spacing:5.681600pt;}
.ws2f{word-spacing:5.683840pt;}
.ws15d{word-spacing:5.694464pt;}
.ws16a{word-spacing:5.698752pt;}
.ws11{word-spacing:5.699776pt;}
.ws14a{word-spacing:5.726336pt;}
.ws136{word-spacing:5.747584pt;}
.ws37{word-spacing:5.795392pt;}
.wsca{word-spacing:5.806016pt;}
.ws106{word-spacing:5.816640pt;}
.ws11f{word-spacing:5.821952pt;}
.wsd7{word-spacing:5.869760pt;}
.wsc9{word-spacing:5.891008pt;}
.wsec{word-spacing:5.901632pt;}
.ws17e{word-spacing:6.153280pt;}
.ws162{word-spacing:6.303360pt;}
.wsb7{word-spacing:6.321280pt;}
.ws3d{word-spacing:6.326592pt;}
.ws123{word-spacing:6.337216pt;}
.wsfa{word-spacing:6.347840pt;}
.wsf{word-spacing:6.358464pt;}
.ws73{word-spacing:6.427520pt;}
.ws8d{word-spacing:6.432832pt;}
.ws91{word-spacing:6.438144pt;}
.wsad{word-spacing:6.507200pt;}
.ws129{word-spacing:6.528448pt;}
.ws141{word-spacing:6.533760pt;}
.ws9e{word-spacing:6.544384pt;}
.wsb4{word-spacing:6.549696pt;}
.wsf6{word-spacing:6.560320pt;}
.ws14d{word-spacing:6.581568pt;}
.wsbb{word-spacing:6.879040pt;}
.wsee{word-spacing:6.979968pt;}
.wsbc{word-spacing:6.990592pt;}
.ws17a{word-spacing:6.993728pt;}
.ws18{word-spacing:7.006528pt;}
.ws139{word-spacing:7.022464pt;}
.wsdf{word-spacing:7.064960pt;}
.wse9{word-spacing:7.091520pt;}
.ws72{word-spacing:7.118080pt;}
.ws46{word-spacing:7.134016pt;}
.wsd9{word-spacing:7.144640pt;}
.wsa7{word-spacing:7.149952pt;}
.ws66{word-spacing:7.171200pt;}
.ws117{word-spacing:7.176512pt;}
.wseb{word-spacing:7.219008pt;}
.ws175{word-spacing:7.422528pt;}
.ws9f{word-spacing:7.500544pt;}
.wsd3{word-spacing:7.537728pt;}
.ws189{word-spacing:7.568320pt;}
.ws178{word-spacing:7.572608pt;}
.ws155{word-spacing:7.596160pt;}
.ws6e{word-spacing:7.622720pt;}
.wsa6{word-spacing:7.633344pt;}
.wsa4{word-spacing:7.638656pt;}
.ws159{word-spacing:7.681152pt;}
.wse0{word-spacing:7.707712pt;}
.ws120{word-spacing:7.713024pt;}
.ws104{word-spacing:7.771456pt;}
.ws26{word-spacing:7.776768pt;}
.wsba{word-spacing:7.824576pt;}
.wsf5{word-spacing:8.222976pt;}
.wsae{word-spacing:8.244224pt;}
.ws116{word-spacing:8.265472pt;}
.ws6f{word-spacing:8.323904pt;}
.ws29{word-spacing:8.345152pt;}
.ws13c{word-spacing:8.371712pt;}
.wsd4{word-spacing:8.424832pt;}
.ws81{word-spacing:8.451392pt;}
.ws55{word-spacing:8.462016pt;}
.ws48{word-spacing:8.770112pt;}
.ws13f{word-spacing:8.823232pt;}
.ws17f{word-spacing:8.850432pt;}
.ws12e{word-spacing:8.855104pt;}
.ws64{word-spacing:8.876352pt;}
.ws170{word-spacing:8.880448pt;}
.ws11a{word-spacing:8.886976pt;}
.ws4d{word-spacing:8.892288pt;}
.wsbf{word-spacing:8.897600pt;}
.wsf0{word-spacing:8.902912pt;}
.ws14f{word-spacing:8.913536pt;}
.wsb5{word-spacing:8.924160pt;}
.wscd{word-spacing:8.940096pt;}
.ws3a{word-spacing:8.961344pt;}
.ws4c{word-spacing:8.977280pt;}
.ws127{word-spacing:8.982592pt;}
.wse5{word-spacing:8.998528pt;}
.ws94{word-spacing:9.062272pt;}
.wse1{word-spacing:9.067584pt;}
.ws30{word-spacing:9.083520pt;}
.ws14e{word-spacing:9.110080pt;}
.ws61{word-spacing:9.136640pt;}
.ws101{word-spacing:9.141952pt;}
.ws150{word-spacing:9.157888pt;}
.ws15e{word-spacing:9.412864pt;}
.ws45{word-spacing:9.513792pt;}
.ws52{word-spacing:9.529728pt;}
.ws27{word-spacing:9.609408pt;}
.ws68{word-spacing:9.614720pt;}
.ws28{word-spacing:9.620032pt;}
.ws14{word-spacing:9.625344pt;}
.ws11d{word-spacing:9.646592pt;}
.ws15b{word-spacing:9.710336pt;}
.wsbd{word-spacing:10.039680pt;}
.ws16f{word-spacing:10.158272pt;}
.ws142{word-spacing:10.193728pt;}
.ws69{word-spacing:10.230912pt;}
.ws31{word-spacing:10.246848pt;}
.wse2{word-spacing:10.257472pt;}
.wscf{word-spacing:10.268096pt;}
.ws24{word-spacing:10.284032pt;}
.ws15c{word-spacing:10.369024pt;}
.ws12a{word-spacing:10.597440pt;}
.ws185{word-spacing:10.698560pt;}
.ws179{word-spacing:10.724288pt;}
.ws138{word-spacing:10.772736pt;}
.ws128{word-spacing:10.825856pt;}
.ws14c{word-spacing:10.889600pt;}
.ws4a{word-spacing:10.995840pt;}
.ws88{word-spacing:11.001152pt;}
.ws1b{word-spacing:11.027712pt;}
.ws5d{word-spacing:11.415488pt;}
.wsd6{word-spacing:11.452672pt;}
.ws95{word-spacing:11.500480pt;}
.wsb8{word-spacing:11.516416pt;}
.ws35{word-spacing:11.542976pt;}
.ws119{word-spacing:11.553600pt;}
.wsed{word-spacing:11.622656pt;}
.ws4f{word-spacing:11.638592pt;}
.ws50{word-spacing:11.808576pt;}
.ws85{word-spacing:11.967936pt;}
.ws182{word-spacing:12.057856pt;}
.wsc0{word-spacing:12.058240pt;}
.wsfb{word-spacing:12.090112pt;}
.ws7b{word-spacing:12.185728pt;}
.ws6a{word-spacing:12.318528pt;}
.ws32{word-spacing:12.631936pt;}
.wsa3{word-spacing:12.886912pt;}
.ws13a{word-spacing:12.934720pt;}
.ws83{word-spacing:12.940032pt;}
.ws18f{word-spacing:13.335680pt;}
.ws7e{word-spacing:13.375616pt;}
.ws133{word-spacing:13.396864pt;}
.wsff{word-spacing:13.449984pt;}
.ws118{word-spacing:13.465920pt;}
.ws135{word-spacing:13.540288pt;}
.ws14b{word-spacing:13.566848pt;}
.wsce{word-spacing:14.018368pt;}
.ws22{word-spacing:14.066176pt;}
.ws25{word-spacing:14.082112pt;}
.wsf1{word-spacing:14.098048pt;}
.ws9b{word-spacing:14.629248pt;}
.wsb3{word-spacing:14.692992pt;}
.ws63{word-spacing:15.208256pt;}
.ws47{word-spacing:15.383552pt;}
.ws2e{word-spacing:15.941312pt;}
.ws137{word-spacing:15.962560pt;}
.ws5b{word-spacing:16.005056pt;}
.ws5a{word-spacing:16.031616pt;}
.wsef{word-spacing:16.084736pt;}
.ws41{word-spacing:16.467200pt;}
.ws134{word-spacing:16.780608pt;}
.ws7f{word-spacing:17.726144pt;}
.ws13d{word-spacing:18.565440pt;}
.ws7a{word-spacing:19.824384pt;}
.wsaa{word-spacing:19.845632pt;}
.ws12d{word-spacing:21.672960pt;}
.ws1e{word-spacing:21.858880pt;}
.ws153{word-spacing:21.896064pt;}
.ws62{word-spacing:24.918592pt;}
.ws33{word-spacing:25.513536pt;}
.ws8f{word-spacing:44.727040pt;}
.ws10d{word-spacing:56.151360pt;}
.ws110{word-spacing:68.685184pt;}
.ws115{word-spacing:71.429504pt;}
._f{margin-left:-2.302976pt;}
._0{margin-left:-1.362816pt;}
._1{width:1.257984pt;}
._d{width:3.343104pt;}
._e{width:14.200320pt;}
._a{width:59.971968pt;}
._3{width:78.058752pt;}
._5{width:103.448000pt;}
._9{width:114.322368pt;}
._4{width:128.944448pt;}
._c{width:140.906368pt;}
._8{width:147.009792pt;}
._6{width:205.064256pt;}
._7{width:242.023296pt;}
._b{width:385.066688pt;}
._2{width:1128.192000pt;}
.fs4{font-size:31.999519pt;}
.fs2{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:54.892240pt;}
.yde{bottom:55.865664pt;}
.y110{bottom:57.289168pt;}
.y1b1{bottom:58.734128pt;}
.y176{bottom:58.880208pt;}
.y137{bottom:60.798992pt;}
.y3d{bottom:61.771696pt;}
.y66{bottom:61.780992pt;}
.ya2{bottom:70.251888pt;}
.ydd{bottom:71.225312pt;}
.y10f{bottom:72.648816pt;}
.y136{bottom:72.798800pt;}
.y1b0{bottom:74.093776pt;}
.y175{bottom:74.239856pt;}
.y3c{bottom:77.131344pt;}
.y65{bottom:77.140640pt;}
.y1ca{bottom:79.513984pt;}
.ya1{bottom:85.611536pt;}
.ydc{bottom:86.584960pt;}
.y10e{bottom:88.008464pt;}
.y1af{bottom:89.453424pt;}
.y174{bottom:89.599504pt;}
.y1c9{bottom:91.834480pt;}
.y3b{bottom:92.490992pt;}
.y64{bottom:92.500288pt;}
.y68{bottom:96.002063pt;}
.ya0{bottom:100.971184pt;}
.ydb{bottom:101.944608pt;}
.y10d{bottom:103.368112pt;}
.y1c8{bottom:103.994176pt;}
.y1ae{bottom:104.813072pt;}
.y173{bottom:104.959152pt;}
.y3a{bottom:107.850640pt;}
.y63{bottom:107.859936pt;}
.y1c7{bottom:116.314672pt;}
.y9f{bottom:116.330832pt;}
.yda{bottom:117.144896pt;}
.y10c{bottom:118.568400pt;}
.y1ad{bottom:120.013360pt;}
.y172{bottom:120.318800pt;}
.y39{bottom:123.210288pt;}
.y62{bottom:123.219584pt;}
.y1c6{bottom:128.635168pt;}
.y9e{bottom:131.531120pt;}
.yd9{bottom:132.504544pt;}
.y10b{bottom:133.928048pt;}
.y1ac{bottom:135.373008pt;}
.y38{bottom:138.410576pt;}
.y61{bottom:138.419872pt;}
.y1c5{bottom:140.794864pt;}
.y16e{bottom:141.597920pt;}
.y171{bottom:145.278800pt;}
.y170{bottom:147.677232pt;}
.y16a{bottom:147.678304pt;}
.y9d{bottom:147.850912pt;}
.yd8{bottom:147.864192pt;}
.y10a{bottom:149.287696pt;}
.y1ab{bottom:150.732656pt;}
.y1c4{bottom:153.115360pt;}
.y16d{bottom:153.757616pt;}
.y37{bottom:153.770224pt;}
.y60{bottom:153.779520pt;}
.y16f{bottom:159.997728pt;}
.y169{bottom:159.998800pt;}
.y9c{bottom:163.210560pt;}
.yd7{bottom:163.223840pt;}
.y109{bottom:164.647344pt;}
.y1c3{bottom:165.435856pt;}
.y16b{bottom:165.438128pt;}
.y16c{bottom:166.078112pt;}
.y1aa{bottom:166.092304pt;}
.y36{bottom:169.129872pt;}
.y5f{bottom:169.139168pt;}
.y1c2{bottom:177.595552pt;}
.y9b{bottom:178.570208pt;}
.yd6{bottom:178.583488pt;}
.y108{bottom:180.006992pt;}
.y1a9{bottom:181.451952pt;}
.y35{bottom:184.489520pt;}
.y5e{bottom:184.498816pt;}
.y167{bottom:188.157232pt;}
.y164{bottom:188.158304pt;}
.y168{bottom:188.798800pt;}
.y1c1{bottom:189.916048pt;}
.yd5{bottom:193.943136pt;}
.y9a{bottom:194.890000pt;}
.y107{bottom:195.366640pt;}
.y1a8{bottom:196.811600pt;}
.y15b{bottom:199.197616pt;}
.y34{bottom:199.849168pt;}
.y5d{bottom:199.858464pt;}
.y166{bottom:200.477728pt;}
.y162{bottom:200.478800pt;}
.y1c0{bottom:202.236544pt;}
.yd4{bottom:209.143424pt;}
.y99{bottom:210.090288pt;}
.y106{bottom:210.246880pt;}
.y15a{bottom:211.518112pt;}
.y1a7{bottom:212.011888pt;}
.y163{bottom:212.159312pt;}
.y165{bottom:212.798224pt;}
.y1bf{bottom:214.396240pt;}
.y33{bottom:215.208816pt;}
.y5c{bottom:215.218112pt;}
.y159{bottom:223.838608pt;}
.yd3{bottom:224.503072pt;}
.y98{bottom:225.449936pt;}
.y105{bottom:225.926576pt;}
.y1be{bottom:226.716736pt;}
.y1a6{bottom:227.371536pt;}
.y32{bottom:230.409104pt;}
.y5b{bottom:230.418400pt;}
.y15f{bottom:234.878064pt;}
.y161{bottom:235.518800pt;}
.y158{bottom:235.998304pt;}
.y1bd{bottom:239.037232pt;}
.yd2{bottom:239.862720pt;}
.y97{bottom:240.809584pt;}
.y104{bottom:241.286224pt;}
.y1a5{bottom:242.731184pt;}
.y135{bottom:243.679344pt;}
.y31{bottom:245.448704pt;}
.y5a{bottom:245.778048pt;}
.y15c{bottom:247.197488pt;}
.y15e{bottom:247.198560pt;}
.y157{bottom:248.318800pt;}
.y1bc{bottom:251.196928pt;}
.yd1{bottom:255.222368pt;}
.y96{bottom:256.169232pt;}
.y103{bottom:256.645872pt;}
.y1a4{bottom:258.090832pt;}
.y15d{bottom:258.878000pt;}
.y134{bottom:259.038992pt;}
.y160{bottom:259.358256pt;}
.y59{bottom:260.817648pt;}
.y30{bottom:261.128400pt;}
.y1bb{bottom:263.517424pt;}
.yd0{bottom:270.582016pt;}
.y133{bottom:271.038800pt;}
.y95{bottom:271.528880pt;}
.y102{bottom:272.005520pt;}
.y1a3{bottom:273.450480pt;}
.y1ba{bottom:275.837920pt;}
.y58{bottom:276.177296pt;}
.y2f{bottom:276.488048pt;}
.y153{bottom:281.599104pt;}
.y156{bottom:282.078800pt;}
.ycf{bottom:285.941664pt;}
.y94{bottom:286.888528pt;}
.y101{bottom:287.205808pt;}
.y155{bottom:287.678416pt;}
.y1b9{bottom:287.997616pt;}
.y1a2{bottom:288.810128pt;}
.y2e{bottom:291.847696pt;}
.y57{bottom:291.856992pt;}
.y150{bottom:293.758800pt;}
.y154{bottom:299.998912pt;}
.y1b8{bottom:300.318112pt;}
.yce{bottom:301.141952pt;}
.y93{bottom:302.088816pt;}
.y100{bottom:302.565456pt;}
.y1a1{bottom:304.010416pt;}
.y151{bottom:305.439312pt;}
.y152{bottom:306.079296pt;}
.y2d{bottom:307.207344pt;}
.y56{bottom:307.216640pt;}
.y1b7{bottom:312.638608pt;}
.ycd{bottom:316.501600pt;}
.yff{bottom:317.925104pt;}
.y92{bottom:318.408608pt;}
.y1a0{bottom:319.370064pt;}
.y2c{bottom:322.407632pt;}
.y55{bottom:322.416928pt;}
.y1b6{bottom:324.798304pt;}
.y14c{bottom:328.158304pt;}
.y14f{bottom:328.798800pt;}
.ycc{bottom:331.861248pt;}
.yfe{bottom:333.284752pt;}
.y91{bottom:333.768256pt;}
.y14e{bottom:334.398416pt;}
.y19f{bottom:334.729712pt;}
.y1b5{bottom:337.118800pt;}
.y2b{bottom:337.767280pt;}
.y54{bottom:337.776576pt;}
.y14a{bottom:340.478800pt;}
.y143{bottom:345.438112pt;}
.y14d{bottom:346.558112pt;}
.ycb{bottom:347.220896pt;}
.yfd{bottom:348.644400pt;}
.y90{bottom:349.127904pt;}
.y1b4{bottom:350.088048pt;}
.y19e{bottom:350.089360pt;}
.y14b{bottom:352.159312pt;}
.y2a{bottom:353.126928pt;}
.y53{bottom:353.136224pt;}
.y142{bottom:357.597808pt;}
.yca{bottom:362.580544pt;}
.yfc{bottom:364.004048pt;}
.y8f{bottom:364.487552pt;}
.y1b3{bottom:365.447696pt;}
.y19d{bottom:365.449008pt;}
.y29{bottom:368.486576pt;}
.y52{bottom:368.495872pt;}
.y141{bottom:369.918304pt;}
.y148{bottom:374.878448pt;}
.y149{bottom:375.518933pt;}
.yc9{bottom:377.940192pt;}
.yfb{bottom:379.204336pt;}
.y8e{bottom:379.687840pt;}
.y1b2{bottom:380.647984pt;}
.y19c{bottom:380.649296pt;}
.y140{bottom:382.238800pt;}
.y28{bottom:383.846224pt;}
.y51{bottom:383.855520pt;}
.y1f9{bottom:386.226048pt;}
.y144{bottom:387.197872pt;}
.y147{bottom:387.198944pt;}
.yc8{bottom:393.140480pt;}
.yfa{bottom:394.563984pt;}
.y8d{bottom:396.007632pt;}
.y19b{bottom:396.008944pt;}
.y1f8{bottom:398.385744pt;}
.y145{bottom:398.878384pt;}
.y27{bottom:399.046512pt;}
.y50{bottom:399.055808pt;}
.y146{bottom:399.358640pt;}
.yc7{bottom:408.500128pt;}
.yf9{bottom:409.923632pt;}
.y1f7{bottom:410.706240pt;}
.y8c{bottom:411.367280pt;}
.y19a{bottom:411.368592pt;}
.y26{bottom:414.406160pt;}
.y4f{bottom:414.415456pt;}
.y13f{bottom:416.958800pt;}
.y1f6{bottom:423.026736pt;}
.yc6{bottom:423.859776pt;}
.yf8{bottom:425.283280pt;}
.y8b{bottom:426.726928pt;}
.y199{bottom:426.728240pt;}
.y25{bottom:429.765808pt;}
.y4e{bottom:429.775104pt;}
.y13d{bottom:429.919216pt;}
.y1f5{bottom:435.186432pt;}
.y13c{bottom:435.838800pt;}
.yc5{bottom:439.219424pt;}
.yf7{bottom:440.642928pt;}
.y13e{bottom:442.078912pt;}
.y8a{bottom:442.086576pt;}
.y198{bottom:442.087888pt;}
.y132{bottom:442.097088pt;}
.y24{bottom:445.125456pt;}
.y4d{bottom:445.134752pt;}
.y1f4{bottom:447.506928pt;}
.yc4{bottom:454.579072pt;}
.yf6{bottom:455.682528pt;}
.y13b{bottom:457.119056pt;}
.y89{bottom:457.446224pt;}
.y197{bottom:457.447536pt;}
.y131{bottom:457.456736pt;}
.y1f3{bottom:459.827424pt;}
.y23{bottom:460.485104pt;}
.y4c{bottom:460.494400pt;}
.yc3{bottom:469.779360pt;}
.yf5{bottom:471.202864pt;}
.y1f2{bottom:471.987120pt;}
.y13a{bottom:472.478704pt;}
.y88{bottom:472.646512pt;}
.y196{bottom:472.647824pt;}
.y130{bottom:472.657024pt;}
.y22{bottom:475.844752pt;}
.y4b{bottom:475.854048pt;}
.y1f1{bottom:484.307616pt;}
.yc2{bottom:485.139008pt;}
.yf4{bottom:486.562512pt;}
.y139{bottom:487.678992pt;}
.y87{bottom:488.006160pt;}
.y195{bottom:488.007472pt;}
.y12f{bottom:488.016672pt;}
.y21{bottom:491.045040pt;}
.y4a{bottom:491.054336pt;}
.y1f0{bottom:496.628112pt;}
.y138{bottom:499.678800pt;}
.yc1{bottom:500.178608pt;}
.yf3{bottom:501.922160pt;}
.y86{bottom:503.365808pt;}
.y194{bottom:503.367120pt;}
.y12e{bottom:503.376320pt;}
.y20{bottom:506.404688pt;}
.y49{bottom:506.413984pt;}
.y1ef{bottom:508.787808pt;}
.yc0{bottom:515.858304pt;}
.yf2{bottom:517.281808pt;}
.y85{bottom:518.725456pt;}
.y193{bottom:518.726768pt;}
.y12d{bottom:518.735968pt;}
.y1ee{bottom:521.108304pt;}
.y1f{bottom:521.764336pt;}
.y48{bottom:521.773632pt;}
.ybf{bottom:531.217952pt;}
.yf1{bottom:532.641456pt;}
.y1ed{bottom:533.428800pt;}
.y12c{bottom:533.775568pt;}
.y84{bottom:534.085104pt;}
.y192{bottom:534.086416pt;}
.y47{bottom:536.813232pt;}
.y1e{bottom:537.123984pt;}
.y1ec{bottom:545.588496pt;}
.ybe{bottom:546.577600pt;}
.yf0{bottom:548.001104pt;}
.y83{bottom:549.444752pt;}
.y191{bottom:549.446064pt;}
.y12b{bottom:549.455264pt;}
.y1d{bottom:552.483632pt;}
.y46{bottom:552.492928pt;}
.y1eb{bottom:557.908992pt;}
.ybd{bottom:561.777888pt;}
.yef{bottom:563.201392pt;}
.y82{bottom:564.645040pt;}
.y190{bottom:564.646352pt;}
.y12a{bottom:564.655552pt;}
.y1c{bottom:567.843280pt;}
.y45{bottom:567.852576pt;}
.y1ea{bottom:570.229488pt;}
.ybc{bottom:577.137536pt;}
.yee{bottom:578.561040pt;}
.y81{bottom:580.004688pt;}
.y18f{bottom:580.006000pt;}
.y129{bottom:580.015200pt;}
.y1e9{bottom:582.389184pt;}
.y1b{bottom:583.043568pt;}
.y44{bottom:583.052864pt;}
.ybb{bottom:592.497184pt;}
.yed{bottom:593.920688pt;}
.y1e8{bottom:594.709680pt;}
.y80{bottom:595.364336pt;}
.y18e{bottom:595.365648pt;}
.y128{bottom:595.374848pt;}
.y1a{bottom:598.403216pt;}
.y43{bottom:598.412512pt;}
.y1e7{bottom:607.030176pt;}
.yba{bottom:607.856832pt;}
.yec{bottom:609.280336pt;}
.y7f{bottom:610.723984pt;}
.y18d{bottom:610.725296pt;}
.y127{bottom:610.734496pt;}
.y19{bottom:613.762864pt;}
.y42{bottom:613.772160pt;}
.y1e6{bottom:619.189872pt;}
.yb9{bottom:623.216480pt;}
.yeb{bottom:624.639984pt;}
.y7e{bottom:626.083632pt;}
.y18c{bottom:626.084944pt;}
.y126{bottom:626.094144pt;}
.y18{bottom:629.122512pt;}
.y41{bottom:629.131808pt;}
.y1e5{bottom:631.510368pt;}
.yb8{bottom:638.576128pt;}
.yea{bottom:639.840272pt;}
.y7d{bottom:641.283920pt;}
.y18b{bottom:641.285232pt;}
.y125{bottom:641.294432pt;}
.y1e4{bottom:643.670064pt;}
.y17{bottom:644.482160pt;}
.y40{bottom:644.491456pt;}
.yb7{bottom:653.776416pt;}
.ye9{bottom:655.199920pt;}
.y1e3{bottom:655.990560pt;}
.y7c{bottom:656.643568pt;}
.y18a{bottom:656.644880pt;}
.y124{bottom:656.654080pt;}
.y16{bottom:659.682448pt;}
.y3f{bottom:659.691744pt;}
.y1e2{bottom:668.311056pt;}
.yb6{bottom:669.136064pt;}
.ye8{bottom:670.559568pt;}
.y7b{bottom:672.003216pt;}
.y189{bottom:672.004528pt;}
.y123{bottom:672.013728pt;}
.y15{bottom:674.722048pt;}
.y3e{bottom:675.051392pt;}
.y1e1{bottom:680.470752pt;}
.yb5{bottom:684.495712pt;}
.ye7{bottom:685.919216pt;}
.y7a{bottom:687.362864pt;}
.y188{bottom:687.364176pt;}
.y122{bottom:687.373376pt;}
.y14{bottom:690.401744pt;}
.y1e0{bottom:692.791248pt;}
.yb4{bottom:699.855360pt;}
.ye6{bottom:701.278864pt;}
.y79{bottom:702.722512pt;}
.y187{bottom:702.723824pt;}
.y121{bottom:702.733024pt;}
.y1df{bottom:705.111744pt;}
.y13{bottom:705.761392pt;}
.yb3{bottom:715.215008pt;}
.ye5{bottom:716.318464pt;}
.y1de{bottom:717.271440pt;}
.y78{bottom:718.082160pt;}
.y186{bottom:718.083472pt;}
.y120{bottom:718.092672pt;}
.y12{bottom:721.121040pt;}
.y1dd{bottom:729.590864pt;}
.yb2{bottom:730.574656pt;}
.ye4{bottom:731.838800pt;}
.y77{bottom:733.282448pt;}
.y185{bottom:733.283760pt;}
.y11f{bottom:733.292960pt;}
.y11{bottom:736.480688pt;}
.y1dc{bottom:741.911360pt;}
.yb1{bottom:745.774944pt;}
.y76{bottom:748.642096pt;}
.y184{bottom:748.643408pt;}
.y11e{bottom:748.652608pt;}
.y10{bottom:751.680976pt;}
.y1db{bottom:754.071056pt;}
.ye3{bottom:755.358800pt;}
.yb0{bottom:762.094736pt;}
.y75{bottom:764.001744pt;}
.y183{bottom:764.003056pt;}
.y11d{bottom:764.012256pt;}
.y1da{bottom:766.391552pt;}
.yf{bottom:767.040624pt;}
.ye2{bottom:774.878800pt;}
.yaf{bottom:777.454384pt;}
.y1d9{bottom:778.712048pt;}
.y74{bottom:779.361392pt;}
.y182{bottom:779.362704pt;}
.y11c{bottom:779.371904pt;}
.ye{bottom:782.400272pt;}
.ye1{bottom:788.638320pt;}
.y1d8{bottom:790.871744pt;}
.yae{bottom:793.774176pt;}
.y73{bottom:794.721040pt;}
.y181{bottom:794.722352pt;}
.y11b{bottom:794.731552pt;}
.yd{bottom:797.759920pt;}
.ye0{bottom:801.598800pt;}
.y1d7{bottom:803.192240pt;}
.yad{bottom:809.133824pt;}
.y72{bottom:810.080688pt;}
.y180{bottom:810.082000pt;}
.y11a{bottom:810.091200pt;}
.yc{bottom:813.119568pt;}
.y1d6{bottom:815.512736pt;}
.ydf{bottom:824.640880pt;}
.y71{bottom:825.280976pt;}
.y17f{bottom:825.282288pt;}
.y119{bottom:825.291488pt;}
.yac{bottom:825.294256pt;}
.y1d5{bottom:827.672432pt;}
.yb{bottom:828.479216pt;}
.y1d4{bottom:839.992928pt;}
.y70{bottom:840.640624pt;}
.y17e{bottom:840.641936pt;}
.y118{bottom:840.651136pt;}
.yab{bottom:840.653904pt;}
.ya{bottom:843.679504pt;}
.y1d3{bottom:852.313424pt;}
.y6f{bottom:856.000272pt;}
.y17d{bottom:856.001584pt;}
.y117{bottom:856.010784pt;}
.yaa{bottom:856.013552pt;}
.y9{bottom:859.039152pt;}
.y1d2{bottom:864.473120pt;}
.y6e{bottom:871.359920pt;}
.y17c{bottom:871.361232pt;}
.y116{bottom:871.370432pt;}
.ya9{bottom:871.373200pt;}
.y8{bottom:874.398800pt;}
.y1d1{bottom:876.793616pt;}
.y7{bottom:880.478800pt;}
.y17b{bottom:886.400832pt;}
.y6d{bottom:886.719568pt;}
.y115{bottom:886.730080pt;}
.ya8{bottom:886.732848pt;}
.y1d0{bottom:889.113040pt;}
.y6{bottom:889.758800pt;}
.y4{bottom:889.759200pt;}
.y5{bottom:895.838800pt;}
.y1cf{bottom:901.272736pt;}
.y6c{bottom:902.079216pt;}
.y17a{bottom:902.080528pt;}
.y114{bottom:902.089728pt;}
.ya7{bottom:902.092496pt;}
.y3{bottom:904.798800pt;}
.y1ce{bottom:913.593232pt;}
.ya6{bottom:916.972736pt;}
.y6b{bottom:917.279504pt;}
.y179{bottom:917.280816pt;}
.y113{bottom:917.290016pt;}
.y2{bottom:921.278784pt;}
.y1cd{bottom:925.913728pt;}
.y6a{bottom:932.639152pt;}
.y178{bottom:932.640464pt;}
.y112{bottom:932.649664pt;}
.ya5{bottom:932.652432pt;}
.y1cc{bottom:938.073424pt;}
.y1{bottom:942.718800pt;}
.ya4{bottom:947.692032pt;}
.y69{bottom:947.998800pt;}
.y177{bottom:948.000112pt;}
.y111{bottom:948.009312pt;}
.y1cb{bottom:950.393920pt;}
.y67{bottom:999.684104pt;}
.h4{height:23.776875pt;}
.ha{height:29.500937pt;}
.h8{height:29.710312pt;}
.hc{height:31.421962pt;}
.hb{height:32.060874pt;}
.h7{height:32.187017pt;}
.h2{height:35.404688pt;}
.h3{height:36.545938pt;}
.h5{height:36.759040pt;}
.h6{height:48.328125pt;}
.h9{height:54.461386pt;}
.h1{height:55.209375pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:29.400044pt;}
.x13{left:47.999517pt;}
.x38{left:57.441718pt;}
.x28{left:62.881579pt;}
.x33{left:65.601200pt;}
.x29{left:67.681879pt;}
.x27{left:70.561200pt;}
.x16{left:72.000830pt;}
.x36{left:73.281200pt;}
.x22{left:87.521200pt;}
.x37{left:88.641516pt;}
.x17{left:96.000461pt;}
.x31{left:116.161200pt;}
.x35{left:118.241200pt;}
.x2a{left:119.202378pt;}
.xd{left:120.801200pt;}
.x1{left:124.161200pt;}
.xe{left:125.121200pt;}
.x26{left:137.761200pt;}
.x2b{left:154.082983pt;}
.x30{left:157.121200pt;}
.x12{left:162.559420pt;}
.x1b{left:187.841633pt;}
.x4{left:204.321108pt;}
.x11{left:206.720230pt;}
.x2c{left:228.483336pt;}
.x2d{left:234.403133pt;}
.x32{left:240.002065pt;}
.x23{left:245.282180pt;}
.x1d{left:247.521997pt;}
.x1c{left:248.641494pt;}
.x2{left:283.041551pt;}
.x5{left:301.601200pt;}
.x24{left:303.522884pt;}
.x6{left:305.921200pt;}
.x2e{left:315.523692pt;}
.x2f{left:317.123434pt;}
.x34{left:319.522509pt;}
.x25{left:328.482726pt;}
.x1f{left:332.642448pt;}
.x1e{left:335.202679pt;}
.x21{left:383.841200pt;}
.x7{left:386.881200pt;}
.x8{left:391.201200pt;}
.x3{left:408.001200pt;}
.x14{left:432.000256pt;}
.xf{left:441.281200pt;}
.x10{left:445.601200pt;}
.x19{left:456.000239pt;}
.x1a{left:479.999869pt;}
.x9{left:496.801200pt;}
.xa{left:501.121200pt;}
.x18{left:569.600530pt;}
.xb{left:607.041200pt;}
.xc{left:611.521200pt;}
.x20{left:767.841200pt;}
}


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