
/* 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_94d61dba2403.woff")format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_70318c8da59d.woff")format("woff");}.ff2{font-family:ff2;line-height:1.079590;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_580462e098a1.woff")format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_122261ac3601.woff")format("woff");}.ff4{font-family:ff4;line-height:1.079590;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_8d10f41ee6a9.woff")format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_d1f68735d8f7.woff")format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_ff340688dfd3.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_8f706ac9e637.woff")format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_98d390ad7923.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_8d10f41ee6a9.woff")format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_e140a343b23b.woff")format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_3c346039bead.woff")format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_ff340688dfd3.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_8d10f41ee6a9.woff")format("woff");}.ffe{font-family:ffe;line-height:0.750000;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_a35380e904c8.woff")format("woff");}.fff{font-family:fff;line-height:0.938965;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_81d8559bdf1b.woff")format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_ff340688dfd3.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_7a4646a0fd42.woff")format("woff");}.ff12{font-family:ff12;line-height:0.935547;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_2605c1593f9f.woff")format("woff");}.ff13{font-family:ff13;line-height:0.871000;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_9b4b11f25fc6.woff")format("woff");}.ff14{font-family:ff14;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_8d10f41ee6a9.woff")format("woff");}.ff15{font-family:ff15;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_86cff70dc121.woff")format("woff");}.ff16{font-family:ff16;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_d0ef129f7888.woff")format("woff");}.ff17{font-family:ff17;line-height:0.938477;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:ff18;src:url("fonts/font_0023_ff340688dfd3.woff")format("woff");}.ff18{font-family:ff18;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:ff19;src:url("fonts/font_0024_e9db9744b3d1.woff")format("woff");}.ff19{font-family:ff19;line-height:0.938477;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:ff1a;src:url("fonts/font_0025_ddc0954d4c1f.woff")format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url("fonts/font_0026_8d10f41ee6a9.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.750000;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:ff1c;src:url("fonts/font_0027_c5c233045c43.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.938965;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:ff1d;src:url("fonts/font_0028_f1015ea5e611.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;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:ff1e;src:url("fonts/font_0029_ff340688dfd3.woff")format("woff");}.ff1e{font-family:ff1e;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.481704px;}
.v1{vertical-align:27.971400px;}
.v2{vertical-align:30.231504px;}
.v5{vertical-align:34.562016px;}
.ls26{letter-spacing:-0.021600px;}
.ls48{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls41{letter-spacing:0.028800px;}
.ls5{letter-spacing:0.050544px;}
.ls35{letter-spacing:0.183024px;}
.ls1d{letter-spacing:0.199584px;}
.ls28{letter-spacing:0.204336px;}
.ls1e{letter-spacing:0.209088px;}
.ls2d{letter-spacing:0.232848px;}
.ls3{letter-spacing:0.250560px;}
.ls27{letter-spacing:0.278880px;}
.ls4b{letter-spacing:0.282384px;}
.ls4c{letter-spacing:0.298368px;}
.ls32{letter-spacing:0.301104px;}
.ls44{letter-spacing:0.303696px;}
.ls49{letter-spacing:0.309024px;}
.ls47{letter-spacing:0.314352px;}
.ls6{letter-spacing:0.324720px;}
.ls45{letter-spacing:0.325008px;}
.ls39{letter-spacing:0.330336px;}
.ls38{letter-spacing:0.330624px;}
.ls46{letter-spacing:0.335664px;}
.ls43{letter-spacing:0.336528px;}
.ls22{letter-spacing:0.340992px;}
.ls20{letter-spacing:0.346320px;}
.ls4a{letter-spacing:0.351648px;}
.ls2e{letter-spacing:0.354240px;}
.ls21{letter-spacing:0.356976px;}
.ls18{letter-spacing:0.366048px;}
.ls1b{letter-spacing:0.371952px;}
.ls1f{letter-spacing:0.372960px;}
.ls2a{letter-spacing:0.377856px;}
.ls16{letter-spacing:0.383760px;}
.ls33{letter-spacing:0.389664px;}
.ls13{letter-spacing:0.395568px;}
.ls2c{letter-spacing:0.400320px;}
.ls23{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.lsd{letter-spacing:0.407376px;}
.ls11{letter-spacing:0.413280px;}
.ls8{letter-spacing:0.419184px;}
.lse{letter-spacing:0.425088px;}
.lsa{letter-spacing:0.430992px;}
.ls40{letter-spacing:0.433920px;}
.ls10{letter-spacing:0.436896px;}
.ls25{letter-spacing:0.442800px;}
.ls15{letter-spacing:0.448704px;}
.lsc{letter-spacing:0.454608px;}
.ls19{letter-spacing:0.460512px;}
.ls14{letter-spacing:0.466416px;}
.lsb{letter-spacing:0.472320px;}
.ls17{letter-spacing:0.478224px;}
.ls29{letter-spacing:0.484128px;}
.lsf{letter-spacing:0.490032px;}
.ls12{letter-spacing:0.495936px;}
.ls36{letter-spacing:0.501840px;}
.ls2b{letter-spacing:0.507744px;}
.ls9{letter-spacing:0.513648px;}
.ls3f{letter-spacing:0.519552px;}
.ls42{letter-spacing:0.531360px;}
.ls3d{letter-spacing:0.543168px;}
.ls1a{letter-spacing:0.572688px;}
.ls2f{letter-spacing:0.576720px;}
.ls30{letter-spacing:0.589680px;}
.ls7{letter-spacing:0.590400px;}
.ls3e{letter-spacing:0.596160px;}
.ls31{letter-spacing:0.602640px;}
.ls4{letter-spacing:0.614016px;}
.ls3c{letter-spacing:0.643536px;}
.ls1c{letter-spacing:0.670873px;}
.ls37{letter-spacing:0.826560px;}
.ls34{letter-spacing:0.962352px;}
.ls3a{letter-spacing:134.953632px;}
.ls3b{letter-spacing:379.585872px;}
.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;}
}
.ws10e{word-spacing:-17.056656px;}
.ws5{word-spacing:-17.003520px;}
.ws7{word-spacing:-16.985808px;}
.ws10f{word-spacing:-16.932672px;}
.ws6{word-spacing:-16.926768px;}
.ws10c{word-spacing:-16.885440px;}
.ws10d{word-spacing:-16.861824px;}
.ws110{word-spacing:-16.796880px;}
.ws2{word-spacing:-12.835200px;}
.ws4{word-spacing:-10.859184px;}
.ws8{word-spacing:-10.808640px;}
.ws3{word-spacing:-10.008000px;}
.ws5b{word-spacing:-8.406720px;}
.wsc{word-spacing:-0.336528px;}
.ws114{word-spacing:-0.272160px;}
.ws102{word-spacing:-0.259200px;}
.wsfb{word-spacing:-0.242064px;}
.wse4{word-spacing:-0.233280px;}
.wsc9{word-spacing:-0.220320px;}
.wsfe{word-spacing:-0.218448px;}
.wsf6{word-spacing:-0.212544px;}
.ws60{word-spacing:-0.183024px;}
.ws50{word-spacing:-0.177120px;}
.wsc7{word-spacing:-0.171216px;}
.wsbb{word-spacing:-0.165312px;}
.wse{word-spacing:-0.159840px;}
.wsfc{word-spacing:-0.159408px;}
.wsfa{word-spacing:-0.153504px;}
.ws9{word-spacing:-0.149184px;}
.ws10{word-spacing:-0.147600px;}
.wsac{word-spacing:-0.141696px;}
.wsde{word-spacing:-0.135792px;}
.wsf{word-spacing:-0.133200px;}
.ws24{word-spacing:-0.129888px;}
.wsa{word-spacing:-0.127872px;}
.wsf7{word-spacing:-0.123984px;}
.ws99{word-spacing:-0.118080px;}
.wsff{word-spacing:-0.117216px;}
.wse3{word-spacing:-0.112176px;}
.ws18f{word-spacing:-0.111888px;}
.ws90{word-spacing:-0.106272px;}
.ws1a8{word-spacing:-0.101232px;}
.wsb{word-spacing:-0.100224px;}
.ws19f{word-spacing:-0.095904px;}
.wsf9{word-spacing:-0.094464px;}
.ws194{word-spacing:-0.090576px;}
.ws51{word-spacing:-0.088560px;}
.ws5c{word-spacing:-0.085536px;}
.ws111{word-spacing:-0.082656px;}
.ws5e{word-spacing:-0.076032px;}
.ws0{word-spacing:-0.072000px;}
.ws5d{word-spacing:-0.066528px;}
.ws5a{word-spacing:-0.057024px;}
.wsd8{word-spacing:-0.053136px;}
.wsd{word-spacing:-0.047232px;}
.ws1{word-spacing:0.000000px;}
.ws25{word-spacing:0.007200px;}
.ws6a{word-spacing:0.014400px;}
.wsae{word-spacing:0.036000px;}
.ws93{word-spacing:0.177120px;}
.ws6f{word-spacing:0.307008px;}
.wsaf{word-spacing:0.436896px;}
.ws171{word-spacing:0.584496px;}
.ws44{word-spacing:0.631728px;}
.wsef{word-spacing:0.655344px;}
.ws20{word-spacing:0.714384px;}
.ws21{word-spacing:0.732096px;}
.ws6c{word-spacing:0.738000px;}
.ws1e{word-spacing:0.802944px;}
.ws14b{word-spacing:0.991872px;}
.ws105{word-spacing:1.033200px;}
.ws15a{word-spacing:1.045008px;}
.wsaa{word-spacing:1.210320px;}
.ws157{word-spacing:1.233936px;}
.ws63{word-spacing:1.257552px;}
.ws126{word-spacing:1.310688px;}
.ws91{word-spacing:1.340208px;}
.wsd2{word-spacing:1.399248px;}
.wsda{word-spacing:1.529136px;}
.wsd9{word-spacing:1.570464px;}
.ws22{word-spacing:1.605888px;}
.ws1a3{word-spacing:1.747584px;}
.ws70{word-spacing:1.771200px;}
.wsa1{word-spacing:1.777104px;}
.ws92{word-spacing:1.806624px;}
.ws34{word-spacing:1.812528px;}
.ws98{word-spacing:1.871568px;}
.ws87{word-spacing:1.895184px;}
.ws9e{word-spacing:2.054592px;}
.ws127{word-spacing:2.101824px;}
.ws168{word-spacing:2.119536px;}
.ws58{word-spacing:2.299968px;}
.ws2d{word-spacing:2.515104px;}
.ws19c{word-spacing:2.557440px;}
.ws8d{word-spacing:2.580048px;}
.wseb{word-spacing:2.603664px;}
.ws19{word-spacing:2.656800px;}
.ws1a{word-spacing:2.680416px;}
.ws7f{word-spacing:2.709936px;}
.ws188{word-spacing:2.715840px;}
.wsa3{word-spacing:2.768976px;}
.ws16{word-spacing:3.129120px;}
.ws15{word-spacing:3.158640px;}
.ws181{word-spacing:3.205872px;}
.wsca{word-spacing:3.217680px;}
.ws13b{word-spacing:3.223584px;}
.ws113{word-spacing:3.253104px;}
.ws1a2{word-spacing:3.532464px;}
.ws11f{word-spacing:3.690000px;}
.ws2b{word-spacing:3.707712px;}
.ws1a7{word-spacing:3.708288px;}
.wsb6{word-spacing:3.813984px;}
.ws94{word-spacing:3.902544px;}
.wscb{word-spacing:3.943872px;}
.ws15c{word-spacing:3.949776px;}
.ws125{word-spacing:3.979296px;}
.ws1d{word-spacing:4.162320px;}
.ws11d{word-spacing:4.209552px;}
.ws16a{word-spacing:4.321728px;}
.ws169{word-spacing:4.368960px;}
.ws15d{word-spacing:4.439808px;}
.ws6e{word-spacing:4.481136px;}
.ws19d{word-spacing:4.550112px;}
.ws136{word-spacing:4.587408px;}
.ws13e{word-spacing:4.634640px;}
.ws158{word-spacing:4.888512px;}
.ws3a{word-spacing:4.894416px;}
.ws12d{word-spacing:4.929840px;}
.ws176{word-spacing:4.971168px;}
.ws23{word-spacing:5.136480px;}
.ws1f{word-spacing:5.219136px;}
.ws140{word-spacing:5.230944px;}
.ws81{word-spacing:5.248656px;}
.ws117{word-spacing:5.260464px;}
.ws4e{word-spacing:5.313600px;}
.ws116{word-spacing:5.378544px;}
.ws106{word-spacing:5.461200px;}
.ws32{word-spacing:5.467104px;}
.ws14f{word-spacing:5.591088px;}
.ws160{word-spacing:5.620608px;}
.ws84{word-spacing:5.809536px;}
.ws109{word-spacing:5.980752px;}
.ws8c{word-spacing:6.004368px;}
.ws52{word-spacing:6.027984px;}
.ws175{word-spacing:6.057504px;}
.ws13a{word-spacing:6.063408px;}
.ws37{word-spacing:6.075216px;}
.ws185{word-spacing:6.110640px;}
.ws1c{word-spacing:6.264144px;}
.ws195{word-spacing:6.287040px;}
.wsd5{word-spacing:6.334992px;}
.ws1a0{word-spacing:6.452208px;}
.ws16e{word-spacing:6.488496px;}
.ws17{word-spacing:6.512112px;}
.ws18{word-spacing:6.523920px;}
.ws3c{word-spacing:6.547536px;}
.ws119{word-spacing:6.571152px;}
.ws121{word-spacing:6.577056px;}
.ws120{word-spacing:6.594768px;}
.ws148{word-spacing:6.612480px;}
.ws143{word-spacing:6.618384px;}
.ws197{word-spacing:6.921072px;}
.ws9a{word-spacing:7.084800px;}
.ws189{word-spacing:7.102512px;}
.ws161{word-spacing:7.149744px;}
.ws4c{word-spacing:7.167456px;}
.ws129{word-spacing:7.185168px;}
.ws138{word-spacing:7.244208px;}
.ws69{word-spacing:7.391808px;}
.wsd3{word-spacing:7.397712px;}
.ws17a{word-spacing:7.503984px;}
.ws17d{word-spacing:7.509888px;}
.wse0{word-spacing:7.781472px;}
.ws11c{word-spacing:7.864128px;}
.ws13{word-spacing:8.035344px;}
.ws14{word-spacing:8.094384px;}
.ws2c{word-spacing:8.159328px;}
.wscf{word-spacing:8.241984px;}
.ws115{word-spacing:8.265600px;}
.wsa0{word-spacing:8.442720px;}
.ws95{word-spacing:8.613936px;}
.ws13d{word-spacing:8.802864px;}
.ws6d{word-spacing:8.814672px;}
.ws182{word-spacing:8.838288px;}
.ws187{word-spacing:8.861904px;}
.ws19e{word-spacing:8.972352px;}
.wsba{word-spacing:9.168912px;}
.ws18c{word-spacing:9.169488px;}
.ws12f{word-spacing:9.227952px;}
.wsf4{word-spacing:9.269280px;}
.ws8e{word-spacing:9.334224px;}
.ws68{word-spacing:9.357840px;}
.ws147{word-spacing:9.428688px;}
.ws128{word-spacing:9.505440px;}
.wsbc{word-spacing:9.688464px;}
.ws12b{word-spacing:9.895104px;}
.ws124{word-spacing:9.906912px;}
.ws36{word-spacing:9.912816px;}
.ws172{word-spacing:9.930528px;}
.ws196{word-spacing:10.032624px;}
.wsb0{word-spacing:10.267056px;}
.ws15f{word-spacing:10.272960px;}
.ws199{word-spacing:10.277712px;}
.ws14d{word-spacing:10.367424px;}
.wsc5{word-spacing:10.455984px;}
.ws66{word-spacing:10.497312px;}
.ws67{word-spacing:10.532736px;}
.ws96{word-spacing:10.579968px;}
.ws198{word-spacing:10.703952px;}
.ws107{word-spacing:10.733472px;}
.wsc6{word-spacing:10.768896px;}
.wsab{word-spacing:10.881072px;}
.ws9c{word-spacing:10.957824px;}
.ws163{word-spacing:11.205792px;}
.wse6{word-spacing:11.323872px;}
.ws85{word-spacing:11.329776px;}
.ws9b{word-spacing:11.518704px;}
.ws80{word-spacing:11.878848px;}
.ws7d{word-spacing:11.884752px;}
.wsf0{word-spacing:11.896560px;}
.ws74{word-spacing:12.244896px;}
.ws65{word-spacing:12.262608px;}
.ws3d{word-spacing:12.481056px;}
.ws142{word-spacing:12.581424px;}
.ws64{word-spacing:12.605040px;}
.ws104{word-spacing:12.740832px;}
.ws19b{word-spacing:13.010976px;}
.wsdc{word-spacing:13.106880px;}
.ws3f{word-spacing:13.130496px;}
.ws3e{word-spacing:13.165920px;}
.ws72{word-spacing:13.201344px;}
.ws11a{word-spacing:13.207248px;}
.ws61{word-spacing:13.242672px;}
.ws100{word-spacing:13.260384px;}
.ws2a{word-spacing:13.667760px;}
.wsee{word-spacing:13.945248px;}
.ws59{word-spacing:14.194224px;}
.ws16d{word-spacing:14.216832px;}
.ws103{word-spacing:14.358528px;}
.wsdf{word-spacing:14.476608px;}
.wsb3{word-spacing:14.523840px;}
.ws149{word-spacing:14.576976px;}
.ws123{word-spacing:14.618304px;}
.ws190{word-spacing:14.795856px;}
.ws17b{word-spacing:14.895792px;}
.ws118{word-spacing:14.901696px;}
.ws15b{word-spacing:14.919408px;}
.ws86{word-spacing:14.943024px;}
.ws33{word-spacing:14.954832px;}
.ws14c{word-spacing:15.019776px;}
.ws8a{word-spacing:15.149664px;}
.ws19a{word-spacing:15.184800px;}
.ws167{word-spacing:15.214608px;}
.wsf1{word-spacing:15.438960px;}
.wsb9{word-spacing:15.627888px;}
.ws47{word-spacing:15.793200px;}
.ws12{word-spacing:16.218288px;}
.ws191{word-spacing:16.351632px;}
.ws1b{word-spacing:16.371792px;}
.wscd{word-spacing:16.383600px;}
.ws132{word-spacing:16.519392px;}
.wsa4{word-spacing:16.537104px;}
.ws130{word-spacing:16.602048px;}
.ws162{word-spacing:16.607952px;}
.wsa6{word-spacing:16.613856px;}
.wsa7{word-spacing:16.666992px;}
.wsdb{word-spacing:16.944480px;}
.ws7a{word-spacing:16.974000px;}
.ws12c{word-spacing:17.038944px;}
.ws180{word-spacing:17.145216px;}
.ws83{word-spacing:17.257392px;}
.ws49{word-spacing:17.334144px;}
.ws159{word-spacing:17.345952px;}
.ws179{word-spacing:17.393184px;}
.wsf2{word-spacing:17.469936px;}
.ws55{word-spacing:17.735616px;}
.ws139{word-spacing:17.900928px;}
.ws8f{word-spacing:17.930448px;}
.ws13c{word-spacing:18.119376px;}
.wsf5{word-spacing:18.148896px;}
.ws9f{word-spacing:18.337824px;}
.ws45{word-spacing:18.426384px;}
.ws152{word-spacing:18.520848px;}
.ws164{word-spacing:18.544464px;}
.ws62{word-spacing:18.597600px;}
.ws3b{word-spacing:18.780624px;}
.ws29{word-spacing:18.786528px;}
.ws16b{word-spacing:18.940032px;}
.ws26{word-spacing:19.140768px;}
.ws7c{word-spacing:19.258848px;}
.ws131{word-spacing:19.412352px;}
.ws14e{word-spacing:19.459584px;}
.ws97{word-spacing:19.890576px;}
.wse7{word-spacing:19.908288px;}
.ws71{word-spacing:19.920096px;}
.wse8{word-spacing:19.949616px;}
.ws134{word-spacing:20.587248px;}
.ws48{word-spacing:21.112704px;}
.ws79{word-spacing:21.213072px;}
.wsa2{word-spacing:21.266208px;}
.ws112{word-spacing:21.348864px;}
.ws186{word-spacing:21.496464px;}
.ws56{word-spacing:21.573216px;}
.ws150{word-spacing:22.311216px;}
.ws4d{word-spacing:22.511952px;}
.ws145{word-spacing:22.600512px;}
.ws183{word-spacing:22.630032px;}
.ws122{word-spacing:22.677264px;}
.wse9{word-spacing:23.261760px;}
.wsc8{word-spacing:23.315040px;}
.wsd4{word-spacing:23.822640px;}
.ws18b{word-spacing:23.834448px;}
.ws46{word-spacing:24.111936px;}
.ws192{word-spacing:24.135840px;}
.ws18e{word-spacing:24.141168px;}
.ws17e{word-spacing:24.318576px;}
.wse1{word-spacing:24.537024px;}
.wsec{word-spacing:24.590160px;}
.ws12e{word-spacing:24.696432px;}
.ws89{word-spacing:24.879456px;}
.ws1a1{word-spacing:24.945696px;}
.wsd7{word-spacing:25.156944px;}
.ws17f{word-spacing:25.221888px;}
.ws137{word-spacing:25.280928px;}
.ws15e{word-spacing:25.469856px;}
.ws18a{word-spacing:25.493472px;}
.wsce{word-spacing:25.717824px;}
.wsb8{word-spacing:25.818192px;}
.ws11e{word-spacing:25.900848px;}
.ws178{word-spacing:25.918560px;}
.ws11b{word-spacing:25.942176px;}
.ws108{word-spacing:26.532576px;}
.ws16c{word-spacing:26.568000px;}
.ws17c{word-spacing:26.579808px;}
.wse5{word-spacing:26.585712px;}
.ws38{word-spacing:26.621136px;}
.ws135{word-spacing:26.650656px;}
.ws9d{word-spacing:27.689760px;}
.ws4a{word-spacing:27.719280px;}
.ws11{word-spacing:27.807840px;}
.ws170{word-spacing:28.474992px;}
.ws144{word-spacing:28.516320px;}
.wsed{word-spacing:28.799712px;}
.ws78{word-spacing:28.835136px;}
.ws177{word-spacing:28.941408px;}
.ws2f{word-spacing:28.947312px;}
.ws30{word-spacing:28.976832px;}
.ws8b{word-spacing:29.272032px;}
.ws5f{word-spacing:29.342880px;}
.wsb2{word-spacing:29.950992px;}
.wsd6{word-spacing:30.547296px;}
.wsb4{word-spacing:30.688992px;}
.wsbf{word-spacing:30.771648px;}
.wscc{word-spacing:32.100048px;}
.wse2{word-spacing:32.141376px;}
.wsd1{word-spacing:32.164992px;}
.ws133{word-spacing:32.401152px;}
.ws153{word-spacing:32.542848px;}
.wsc2{word-spacing:32.979744px;}
.ws18d{word-spacing:33.870096px;}
.ws166{word-spacing:33.918480px;}
.ws57{word-spacing:34.089696px;}
.ws101{word-spacing:34.272720px;}
.ws141{word-spacing:34.331760px;}
.wsea{word-spacing:34.544304px;}
.ws165{word-spacing:34.621056px;}
.ws1a4{word-spacing:34.621344px;}
.ws156{word-spacing:34.916256px;}
.ws31{word-spacing:35.211456px;}
.ws73{word-spacing:35.258688px;}
.ws1a6{word-spacing:35.729568px;}
.ws77{word-spacing:35.790048px;}
.ws7e{word-spacing:36.557568px;}
.ws10a{word-spacing:36.587088px;}
.ws28{word-spacing:37.077120px;}
.wsb1{word-spacing:37.283760px;}
.ws7b{word-spacing:37.407744px;}
.ws10b{word-spacing:37.437264px;}
.ws42{word-spacing:38.175264px;}
.ws146{word-spacing:38.263824px;}
.ws12a{word-spacing:39.108096px;}
.ws41{word-spacing:39.775248px;}
.wsad{word-spacing:39.816000px;}
.wsa8{word-spacing:39.958272px;}
.wsbe{word-spacing:40.371552px;}
.ws184{word-spacing:41.026896px;}
.ws173{word-spacing:41.292576px;}
.ws13f{word-spacing:41.552352px;}
.ws40{word-spacing:41.705856px;}
.wsb5{word-spacing:43.896240px;}
.ws193{word-spacing:45.106848px;}
.ws16f{word-spacing:45.779616px;}
.ws4b{word-spacing:46.434960px;}
.ws75{word-spacing:46.594368px;}
.wsa5{word-spacing:47.420928px;}
.ws6b{word-spacing:48.324240px;}
.ws154{word-spacing:49.032720px;}
.ws54{word-spacing:49.168512px;}
.ws53{word-spacing:49.203936px;}
.wsfd{word-spacing:49.977360px;}
.wsf8{word-spacing:50.030496px;}
.ws88{word-spacing:50.803920px;}
.ws39{word-spacing:51.057792px;}
.ws174{word-spacing:53.950752px;}
.wsbd{word-spacing:54.003888px;}
.ws1a5{word-spacing:54.153792px;}
.wsc1{word-spacing:54.381744px;}
.wsdd{word-spacing:55.639296px;}
.wsa9{word-spacing:55.904976px;}
.ws4f{word-spacing:60.521904px;}
.wsb7{word-spacing:61.153632px;}
.ws151{word-spacing:61.986096px;}
.ws2e{word-spacing:64.696032px;}
.ws43{word-spacing:64.843632px;}
.ws14a{word-spacing:67.960944px;}
.ws155{word-spacing:69.891552px;}
.wsc4{word-spacing:74.986704px;}
.ws35{word-spacing:87.745248px;}
.wsd0{word-spacing:88.512768px;}
.ws82{word-spacing:89.959248px;}
.wsc3{word-spacing:96.247008px;}
.wsc0{word-spacing:100.810800px;}
.wsf3{word-spacing:102.204144px;}
.ws27{word-spacing:105.215184px;}
.ws76{word-spacing:124.497648px;}
._11{margin-left:-50.184000px;}
._d{margin-left:-36.545760px;}
._4{margin-left:-20.016000px;}
._8{margin-left:-17.978400px;}
._e{margin-left:-14.205024px;}
._7{margin-left:-10.975200px;}
._2{margin-left:-9.307200px;}
._6{margin-left:-8.013600px;}
._0{margin-left:-6.239016px;}
._5{margin-left:-3.974400px;}
._3{margin-left:-1.512000px;}
._9{width:1.127472px;}
._b{width:2.184480px;}
._c{width:8.135712px;}
._1{width:12.835200px;}
._f{width:16.436736px;}
._10{width:50.160384px;}
._12{width:54.375840px;}
._a{width:88.852896px;}
._14{width:98.461008px;}
._15{width:127.803888px;}
._13{width:294.084144px;}
._16{width:314.299440px;}
.fc3{color:rgb(64,108,108);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc0{color:rgb(28,28,27);}
.fsa{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs1{font-size:48.972000px;}
.fs6{font-size:53.280000px;}
.fs5{font-size:59.040000px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:42.520500px;}
.y66{bottom:110.028084px;}
.y10e{bottom:115.089828px;}
.y146{bottom:116.146650px;}
.y181{bottom:116.155572px;}
.ya4{bottom:116.920680px;}
.y4b{bottom:121.547586px;}
.y65{bottom:124.066680px;}
.y1b8{bottom:124.446876px;}
.y6{bottom:127.151250px;}
.y10d{bottom:132.369360px;}
.y180{bottom:133.435104px;}
.ya3{bottom:134.198736px;}
.y145{bottom:136.681734px;}
.y4a{bottom:138.827118px;}
.y1b7{bottom:141.726408px;}
.y64{bottom:143.866500px;}
.y10c{bottom:149.648892px;}
.ya2{bottom:151.476792px;}
.y63{bottom:152.866500px;}
.y144{bottom:153.961266px;}
.y49{bottom:156.106650px;}
.y1b6{bottom:159.005940px;}
.y17f{bottom:159.715284px;}
.y220{bottom:161.866500px;}
.yda{bottom:165.134256px;}
.y10b{bottom:166.926948px;}
.ya1{bottom:168.756324px;}
.y143{bottom:171.240798px;}
.y48{bottom:173.393808px;}
.y1b5{bottom:176.285472px;}
.y17e{bottom:176.994816px;}
.y1eb{bottom:182.400330px;}
.yd9{bottom:182.413788px;}
.y10a{bottom:184.206480px;}
.ya0{bottom:186.035856px;}
.y142{bottom:188.520330px;}
.y47{bottom:190.673340px;}
.y1b4{bottom:193.565004px;}
.y17d{bottom:193.914204px;}
.y62{bottom:194.273562px;}
.y1ea{bottom:199.678386px;}
.yd8{bottom:199.693320px;}
.y21f{bottom:200.026500px;}
.y109{bottom:201.484536px;}
.y9f{bottom:203.313912px;}
.y141{bottom:205.799862px;}
.y46{bottom:207.952872px;}
.y1b3{bottom:210.482916px;}
.y17c{bottom:211.192260px;}
.y61{bottom:211.553094px;}
.y1e9{bottom:216.597774px;}
.yd7{bottom:216.972852px;}
.y108{bottom:218.762592px;}
.y9e{bottom:220.593444px;}
.y21e{bottom:220.906500px;}
.y140{bottom:223.079394px;}
.y45{bottom:225.230928px;}
.y1b2{bottom:227.762448px;}
.y17b{bottom:228.471792px;}
.y60{bottom:228.831150px;}
.y1e8{bottom:233.875830px;}
.yd6{bottom:234.252384px;}
.y107{bottom:236.042124px;}
.y9d{bottom:237.512832px;}
.y13f{bottom:239.998782px;}
.y21d{bottom:241.786500px;}
.y44{bottom:242.510460px;}
.y1b1{bottom:245.041980px;}
.y5f{bottom:245.750538px;}
.y17a{bottom:245.751324px;}
.y1e7{bottom:251.153886px;}
.yd5{bottom:251.531916px;}
.y106{bottom:253.321656px;}
.y9c{bottom:254.790888px;}
.y13e{bottom:257.276838px;}
.y43{bottom:259.789992px;}
.y1b0{bottom:262.321512px;}
.y21c{bottom:262.666500px;}
.y5e{bottom:263.028594px;}
.y179{bottom:263.029380px;}
.y1e6{bottom:268.433418px;}
.yd4{bottom:268.809972px;}
.y105{bottom:270.599712px;}
.y9b{bottom:272.068944px;}
.y13d{bottom:274.556370px;}
.y42{bottom:277.069524px;}
.y1af{bottom:279.601044px;}
.y5d{bottom:280.306650px;}
.y178{bottom:280.308912px;}
.y21b{bottom:283.546500px;}
.y1e5{bottom:285.712950px;}
.yd3{bottom:286.089504px;}
.y104{bottom:287.519100px;}
.y9a{bottom:289.347000px;}
.y13c{bottom:291.834426px;}
.y41{bottom:294.349056px;}
.y1ae{bottom:296.880576px;}
.y177{bottom:297.588444px;}
.y5c{bottom:297.591324px;}
.y1e4{bottom:302.991006px;}
.yd2{bottom:303.369036px;}
.y21a{bottom:304.786500px;}
.y103{bottom:304.797156px;}
.y99{bottom:306.625056px;}
.y13b{bottom:309.112482px;}
.y40{bottom:311.628588px;}
.y1ad{bottom:314.160108px;}
.y176{bottom:314.866500px;}
.y5b{bottom:314.869380px;}
.y1e3{bottom:320.270538px;}
.yd1{bottom:320.286948px;}
.y102{bottom:322.075212px;}
.y98{bottom:323.904588px;}
.y219{bottom:325.666500px;}
.y13a{bottom:326.390538px;}
.y3f{bottom:328.546500px;}
.y1ac{bottom:331.439640px;}
.y5a{bottom:332.148912px;}
.y1e2{bottom:337.548594px;}
.yd0{bottom:337.566480px;}
.y101{bottom:339.353268px;}
.y175{bottom:341.169870px;}
.y97{bottom:341.184120px;}
.y139{bottom:343.668594px;}
.y3e{bottom:345.841266px;}
.y218{bottom:346.546500px;}
.y1ab{bottom:348.719172px;}
.y59{bottom:349.428444px;}
.y1e1{bottom:354.826650px;}
.ycf{bottom:354.844536px;}
.y100{bottom:356.631324px;}
.y174{bottom:358.449402px;}
.y96{bottom:358.462176px;}
.y138{bottom:360.946650px;}
.y3d{bottom:363.120798px;}
.y1aa{bottom:365.998704px;}
.y58{bottom:366.714138px;}
.y217{bottom:367.426500px;}
.yce{bottom:372.122592px;}
.y1e0{bottom:372.466650px;}
.yff{bottom:373.909380px;}
.y173{bottom:375.727458px;}
.y95{bottom:375.741708px;}
.y137{bottom:378.586500px;}
.y3c{bottom:380.398854px;}
.y1a9{bottom:383.278236px;}
.y57{bottom:383.993670px;}
.yf{bottom:388.075500px;}
.y216{bottom:388.306500px;}
.ycd{bottom:389.402124px;}
.yfe{bottom:391.188912px;}
.y172{bottom:392.646846px;}
.y1df{bottom:392.986650px;}
.y94{bottom:393.019764px;}
.y136{bottom:396.951324px;}
.y3b{bottom:397.676910px;}
.y1a8{bottom:400.557768px;}
.y56{bottom:401.273202px;}
.ycc{bottom:406.680180px;}
.yfd{bottom:408.468444px;}
.y215{bottom:409.186500px;}
.ye{bottom:409.675500px;}
.y171{bottom:409.926378px;}
.y93{bottom:410.297820px;}
.y1de{bottom:413.540016px;}
.y135{bottom:414.229380px;}
.y3a{bottom:414.954966px;}
.y1a7{bottom:417.477156px;}
.y55{bottom:418.551258px;}
.ycb{bottom:423.958236px;}
.yfc{bottom:425.746500px;}
.y92{bottom:427.577352px;}
.y214{bottom:430.066500px;}
.y1dd{bottom:430.819548px;}
.yd{bottom:431.275500px;}
.y134{bottom:431.508912px;}
.y39{bottom:432.233022px;}
.y1a6{bottom:434.755212px;}
.y54{bottom:435.470646px;}
.y170{bottom:436.206558px;}
.yca{bottom:441.237768px;}
.yfb{bottom:443.026500px;}
.y91{bottom:444.496740px;}
.y1dc{bottom:448.099080px;}
.y133{bottom:448.788444px;}
.y38{bottom:449.511078px;}
.y213{bottom:450.946500px;}
.y1a5{bottom:452.034744px;}
.y53{bottom:452.750178px;}
.y16f{bottom:453.484614px;}
.yc9{bottom:458.517300px;}
.yfa{bottom:461.746500px;}
.y90{bottom:461.774796px;}
.y1db{bottom:465.378612px;}
.y132{bottom:466.066500px;}
.y37{bottom:466.790610px;}
.y1a4{bottom:469.312800px;}
.y52{bottom:470.029710px;}
.y16e{bottom:470.764146px;}
.y212{bottom:471.826500px;}
.yc8{bottom:475.795356px;}
.yf9{bottom:479.026500px;}
.y8f{bottom:479.054328px;}
.y1da{bottom:482.656668px;}
.y131{bottom:482.986650px;}
.y36{bottom:484.070142px;}
.y1a3{bottom:486.590856px;}
.y51{bottom:487.309242px;}
.y16d{bottom:488.043678px;}
.yc{bottom:491.179500px;}
.y211{bottom:492.706500px;}
.yc7{bottom:493.074888px;}
.yf8{bottom:496.308372px;}
.y8e{bottom:496.333860px;}
.y1d9{bottom:499.936200px;}
.y35{bottom:501.348198px;}
.y1a2{bottom:503.870388px;}
.y130{bottom:504.226500px;}
.y50{bottom:504.588774px;}
.y16c{bottom:505.321734px;}
.yc6{bottom:509.994276px;}
.yb{bottom:512.779500px;}
.y210{bottom:513.586500px;}
.yf7{bottom:513.587904px;}
.y8d{bottom:513.611916px;}
.y1d8{bottom:517.215732px;}
.y34{bottom:518.267586px;}
.y1a1{bottom:521.148444px;}
.y4f{bottom:521.868306px;}
.y12f{bottom:522.231792px;}
.y16b{bottom:522.599790px;}
.yc5{bottom:527.272332px;}
.yf6{bottom:530.867436px;}
.y8c{bottom:530.891448px;}
.ya{bottom:534.379500px;}
.y20f{bottom:534.466500px;}
.y1d7{bottom:534.493788px;}
.y33{bottom:535.547118px;}
.y1a0{bottom:538.426500px;}
.y4e{bottom:539.147838px;}
.y12e{bottom:539.149704px;}
.y16a{bottom:539.879322px;}
.yc4{bottom:544.550388px;}
.yf5{bottom:548.146968px;}
.y8b{bottom:548.170980px;}
.y1d6{bottom:551.413176px;}
.y32{bottom:552.826650px;}
.y20e{bottom:554.237988px;}
.y9{bottom:555.979500px;}
.y19f{bottom:556.066650px;}
.y4d{bottom:556.427370px;}
.y12d{bottom:556.789380px;}
.y169{bottom:557.158854px;}
.yc3{bottom:561.828444px;}
.yf4{bottom:565.426500px;}
.y8a{bottom:565.450512px;}
.y1d5{bottom:568.692708px;}
.y20d{bottom:569.719824px;}
.y31{bottom:570.826650px;}
.y4c{bottom:573.705426px;}
.y12c{bottom:574.068912px;}
.y168{bottom:574.436910px;}
.y19e{bottom:576.237804px;}
.y8{bottom:577.579500px;}
.yc2{bottom:579.106500px;}
.y89{bottom:582.730044px;}
.yf3{bottom:582.733320px;}
.y20c{bottom:585.559968px;}
.y1d4{bottom:585.970764px;}
.y30{bottom:591.005406px;}
.y12b{bottom:591.708588px;}
.y167{bottom:591.716442px;}
.yc1{bottom:597.106500px;}
.y7{bottom:599.179500px;}
.y88{bottom:600.009576px;}
.yf2{bottom:600.012852px;}
.y20b{bottom:601.040472px;}
.y19d{bottom:602.517984px;}
.y1d3{bottom:603.250296px;}
.y2f{bottom:608.284938px;}
.y12a{bottom:608.626500px;}
.y166{bottom:608.635830px;}
.y20a{bottom:616.522308px;}
.y87{bottom:617.287632px;}
.yf1{bottom:617.292384px;}
.yc0{bottom:617.626500px;}
.y19c{bottom:619.796040px;}
.y1d2{bottom:620.529828px;}
.y2e{bottom:625.564470px;}
.y165{bottom:625.913886px;}
.y129{bottom:626.986650px;}
.y209{bottom:632.002812px;}
.y86{bottom:634.207020px;}
.yf0{bottom:634.210296px;}
.y19b{bottom:637.074096px;}
.y1d1{bottom:637.809360px;}
.ybf{bottom:637.860120px;}
.y2d{bottom:642.483858px;}
.y164{bottom:643.193418px;}
.y128{bottom:644.989704px;}
.y208{bottom:647.483316px;}
.y85{bottom:651.485076px;}
.yef{bottom:651.488352px;}
.y19a{bottom:654.353628px;}
.y1d0{bottom:655.088892px;}
.ybe{bottom:655.139652px;}
.y2c{bottom:659.761914px;}
.y163{bottom:660.472950px;}
.y127{bottom:662.269236px;}
.y207{bottom:662.965152px;}
.y84{bottom:668.763132px;}
.yee{bottom:668.766408px;}
.y199{bottom:671.633160px;}
.y1cf{bottom:672.368424px;}
.ybd{bottom:672.419184px;}
.y2b{bottom:677.041446px;}
.y162{bottom:677.751006px;}
.y206{bottom:678.445656px;}
.y126{bottom:679.908912px;}
.y83{bottom:686.041188px;}
.yed{bottom:686.045940px;}
.y198{bottom:688.911216px;}
.y5{bottom:689.592150px;}
.y1ce{bottom:689.646480px;}
.ybc{bottom:689.698716px;}
.y205{bottom:693.926160px;}
.y2a{bottom:694.319502px;}
.y161{bottom:695.030538px;}
.y125{bottom:697.188444px;}
.y82{bottom:703.319244px;}
.yec{bottom:703.325472px;}
.y1cd{bottom:706.924536px;}
.ybb{bottom:706.978248px;}
.y204{bottom:709.407996px;}
.y29{bottom:711.597558px;}
.y160{bottom:712.308594px;}
.y124{bottom:714.466500px;}
.y197{bottom:715.192872px;}
.y4{bottom:719.592750px;}
.y81{bottom:720.597300px;}
.yeb{bottom:720.603528px;}
.y1cc{bottom:724.202592px;}
.yba{bottom:724.257780px;}
.y203{bottom:725.248140px;}
.y28{bottom:728.875614px;}
.y15f{bottom:729.586650px;}
.y196{bottom:732.470928px;}
.y123{bottom:732.826650px;}
.y80{bottom:737.875356px;}
.yea{bottom:737.881584px;}
.y202{bottom:740.728644px;}
.y1cb{bottom:741.480648px;}
.yb9{bottom:741.537312px;}
.y27{bottom:746.155146px;}
.y15e{bottom:746.867436px;}
.y195{bottom:749.390316px;}
.y122{bottom:750.826650px;}
.y7f{bottom:755.153412px;}
.ye9{bottom:755.159640px;}
.y201{bottom:756.209148px;}
.y1ca{bottom:758.400036px;}
.yb8{bottom:758.455224px;}
.y26{bottom:763.434678px;}
.y15d{bottom:764.146968px;}
.y194{bottom:766.669848px;}
.y121{bottom:768.829530px;}
.y200{bottom:771.690984px;}
.y7e{bottom:772.431468px;}
.ye8{bottom:772.437696px;}
.y1c9{bottom:775.679568px;}
.yb7{bottom:775.733280px;}
.y25{bottom:780.712734px;}
.y3{bottom:781.284450px;}
.y15c{bottom:781.426500px;}
.y193{bottom:783.949380px;}
.y120{bottom:786.109062px;}
.y1ff{bottom:787.171488px;}
.y7d{bottom:789.709524px;}
.ye7{bottom:789.715752px;}
.y1c8{bottom:792.957624px;}
.yb6{bottom:793.011336px;}
.y24{bottom:797.992266px;}
.y15b{bottom:798.706500px;}
.y192{bottom:801.228912px;}
.y1fe{bottom:802.651992px;}
.y11f{bottom:803.388594px;}
.y7c{bottom:806.989056px;}
.ye6{bottom:806.995284px;}
.y1c7{bottom:810.237156px;}
.yb5{bottom:810.289392px;}
.y2{bottom:811.285050px;}
.y23{bottom:815.271798px;}
.y15a{bottom:817.430856px;}
.y1fd{bottom:818.133828px;}
.y191{bottom:818.508444px;}
.y11e{bottom:820.666650px;}
.y7b{bottom:824.268588px;}
.ye5{bottom:824.274816px;}
.y1c6{bottom:827.516688px;}
.yb4{bottom:827.568924px;}
.y22{bottom:832.189710px;}
.y1fc{bottom:833.614332px;}
.y159{bottom:834.710388px;}
.y190{bottom:835.793808px;}
.y11d{bottom:839.026500px;}
.y7a{bottom:841.186500px;}
.ye4{bottom:841.192728px;}
.y1{bottom:841.285650px;}
.y1c5{bottom:844.794744px;}
.yb3{bottom:844.848456px;}
.y1fb{bottom:849.454476px;}
.y21{bottom:849.469242px;}
.y158{bottom:851.988444px;}
.y18f{bottom:853.073340px;}
.y11c{bottom:857.028768px;}
.ye3{bottom:858.472260px;}
.y79{bottom:859.186500px;}
.y1c4{bottom:862.072800px;}
.yb2{bottom:862.127988px;}
.y1fa{bottom:864.934980px;}
.y20{bottom:866.748774px;}
.y157{bottom:869.266500px;}
.y18e{bottom:870.352872px;}
.y11b{bottom:874.308300px;}
.ye2{bottom:875.751792px;}
.y78{bottom:879.346650px;}
.y1c3{bottom:879.352332px;}
.yb1{bottom:879.407520px;}
.y1f9{bottom:880.416816px;}
.y156{bottom:886.186320px;}
.y18d{bottom:887.632404px;}
.y11a{bottom:891.946500px;}
.ye1{bottom:893.029848px;}
.y1f8{bottom:895.897320px;}
.y1c2{bottom:896.631864px;}
.y77{bottom:896.636220px;}
.yb0{bottom:896.687052px;}
.y1f{bottom:902.026650px;}
.y18c{bottom:904.911936px;}
.y155{bottom:905.986500px;}
.y119{bottom:910.306500px;}
.ye0{bottom:910.309380px;}
.y1f7{bottom:911.377824px;}
.y1c1{bottom:913.909920px;}
.y76{bottom:913.914276px;}
.yaf{bottom:913.965108px;}
.y1e{bottom:918.585498px;}
.y18b{bottom:922.191468px;}
.y1f6{bottom:926.859660px;}
.y152{bottom:927.230388px;}
.ydf{bottom:927.588912px;}
.y118{bottom:928.313736px;}
.y1c0{bottom:931.189452px;}
.y75{bottom:931.193808px;}
.yae{bottom:931.243164px;}
.y1d{bottom:934.066002px;}
.y154{bottom:935.870892px;}
.y18a{bottom:939.110856px;}
.y1f5{bottom:942.340164px;}
.y151{bottom:944.508444px;}
.yde{bottom:944.868444px;}
.y117{bottom:945.233124px;}
.y1bf{bottom:948.110316px;}
.y74{bottom:948.114672px;}
.yad{bottom:948.164028px;}
.y1c{bottom:949.906146px;}
.y153{bottom:953.148948px;}
.y189{bottom:956.390388px;}
.y1f4{bottom:957.820668px;}
.y150{bottom:961.786500px;}
.ydd{bottom:962.146500px;}
.y116{bottom:962.872800px;}
.y1b{bottom:965.386650px;}
.y1be{bottom:965.389848px;}
.y73{bottom:965.392728px;}
.yac{bottom:965.443560px;}
.y1f3{bottom:973.660812px;}
.y188{bottom:973.668444px;}
.ydc{bottom:979.785780px;}
.y14e{bottom:979.790070px;}
.y115{bottom:979.790712px;}
.y1a{bottom:981.588624px;}
.y1bd{bottom:982.669380px;}
.y72{bottom:982.672260px;}
.yab{bottom:982.723092px;}
.y1f2{bottom:989.142648px;}
.y187{bottom:990.946500px;}
.y14b{bottom:997.066650px;}
.y14d{bottom:997.068126px;}
.y14f{bottom:997.069602px;}
.y114{bottom:997.430388px;}
.ydb{bottom:998.506500px;}
.y19{bottom:998.866680px;}
.y1bc{bottom:999.948912px;}
.y71{bottom:999.951792px;}
.yaa{bottom:1000.002624px;}
.y1f1{bottom:1004.623152px;}
.y14c{bottom:1014.346182px;}
.y113{bottom:1014.708444px;}
.y18{bottom:1016.866500px;}
.y1bb{bottom:1017.228444px;}
.y70{bottom:1017.229848px;}
.y186{bottom:1017.238812px;}
.ya9{bottom:1017.282156px;}
.y1f0{bottom:1020.103656px;}
.y112{bottom:1031.986500px;}
.y14a{bottom:1032.346500px;}
.y1ba{bottom:1034.506500px;}
.y6f{bottom:1034.509380px;}
.y185{bottom:1034.518344px;}
.ya8{bottom:1034.561688px;}
.y1ef{bottom:1035.585492px;}
.y17{bottom:1040.626650px;}
.y111{bottom:1050.346500px;}
.y149{bottom:1050.348948px;}
.y1ee{bottom:1051.065996px;}
.y6e{bottom:1051.788912px;}
.y1b9{bottom:1051.790388px;}
.y184{bottom:1051.797876px;}
.ya7{bottom:1051.841220px;}
.y148{bottom:1058.986500px;}
.y16{bottom:1061.506650px;}
.y1ed{bottom:1066.546500px;}
.y110{bottom:1068.370332px;}
.y6d{bottom:1069.068444px;}
.y183{bottom:1069.077408px;}
.ya6{bottom:1069.120752px;}
.y15{bottom:1082.386650px;}
.y1ec{bottom:1083.466500px;}
.y147{bottom:1085.626500px;}
.y10f{bottom:1085.649864px;}
.y6c{bottom:1086.346500px;}
.y182{bottom:1086.355464px;}
.ya5{bottom:1086.400284px;}
.y6b{bottom:1103.986500px;}
.y14{bottom:1106.866770px;}
.y6a{bottom:1123.426626px;}
.y13{bottom:1126.666950px;}
.y69{bottom:1137.106446px;}
.y68{bottom:1155.826524px;}
.y12{bottom:1160.866950px;}
.y67{bottom:1175.986884px;}
.y11{bottom:1197.587100px;}
.h10{height:20.981250px;}
.h13{height:34.595859px;}
.h11{height:34.619062px;}
.h6{height:35.640000px;}
.h16{height:38.789297px;}
.h9{height:38.815312px;}
.hc{height:42.982734px;}
.h7{height:43.011562px;}
.h12{height:45.448891px;}
.h14{height:45.462954px;}
.h15{height:47.176172px;}
.ha{height:47.988281px;}
.h5{height:52.148438px;}
.he{height:52.417969px;}
.h8{height:53.586563px;}
.hf{height:58.534135px;}
.hd{height:58.537207px;}
.hb{height:60.804844px;}
.h4{height:62.578125px;}
.h2{height:63.624355px;}
.h3{height:73.007812px;}
.h17{height:77.573578px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.447600px;}
.xd{left:113.398104px;}
.x8{left:131.095728px;}
.xe{left:140.398572px;}
.x3{left:161.575500px;}
.x11{left:185.488896px;}
.x7{left:204.891000px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.xa{left:310.497000px;}
.x6{left:374.247000px;}
.x12{left:396.618888px;}
.x4{left:433.944000px;}
.x9{left:473.489972px;}
.xf{left:475.962000px;}
.xb{left:478.439004px;}
.x13{left:481.964016px;}
.x10{left:496.663656px;}
.xc{left:505.439472px;}
@media print{
.v3{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.761515pt;}
.v1{vertical-align:24.863467pt;}
.v2{vertical-align:26.872448pt;}
.v5{vertical-align:30.721792pt;}
.ls26{letter-spacing:-0.019200pt;}
.ls48{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls41{letter-spacing:0.025600pt;}
.ls5{letter-spacing:0.044928pt;}
.ls35{letter-spacing:0.162688pt;}
.ls1d{letter-spacing:0.177408pt;}
.ls28{letter-spacing:0.181632pt;}
.ls1e{letter-spacing:0.185856pt;}
.ls2d{letter-spacing:0.206976pt;}
.ls3{letter-spacing:0.222720pt;}
.ls27{letter-spacing:0.247893pt;}
.ls4b{letter-spacing:0.251008pt;}
.ls4c{letter-spacing:0.265216pt;}
.ls32{letter-spacing:0.267648pt;}
.ls44{letter-spacing:0.269952pt;}
.ls49{letter-spacing:0.274688pt;}
.ls47{letter-spacing:0.279424pt;}
.ls6{letter-spacing:0.288640pt;}
.ls45{letter-spacing:0.288896pt;}
.ls39{letter-spacing:0.293632pt;}
.ls38{letter-spacing:0.293888pt;}
.ls46{letter-spacing:0.298368pt;}
.ls43{letter-spacing:0.299136pt;}
.ls22{letter-spacing:0.303104pt;}
.ls20{letter-spacing:0.307840pt;}
.ls4a{letter-spacing:0.312576pt;}
.ls2e{letter-spacing:0.314880pt;}
.ls21{letter-spacing:0.317312pt;}
.ls18{letter-spacing:0.325376pt;}
.ls1b{letter-spacing:0.330624pt;}
.ls1f{letter-spacing:0.331520pt;}
.ls2a{letter-spacing:0.335872pt;}
.ls16{letter-spacing:0.341120pt;}
.ls33{letter-spacing:0.346368pt;}
.ls13{letter-spacing:0.351616pt;}
.ls2c{letter-spacing:0.355840pt;}
.ls23{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.lsd{letter-spacing:0.362112pt;}
.ls11{letter-spacing:0.367360pt;}
.ls8{letter-spacing:0.372608pt;}
.lse{letter-spacing:0.377856pt;}
.lsa{letter-spacing:0.383104pt;}
.ls40{letter-spacing:0.385707pt;}
.ls10{letter-spacing:0.388352pt;}
.ls25{letter-spacing:0.393600pt;}
.ls15{letter-spacing:0.398848pt;}
.lsc{letter-spacing:0.404096pt;}
.ls19{letter-spacing:0.409344pt;}
.ls14{letter-spacing:0.414592pt;}
.lsb{letter-spacing:0.419840pt;}
.ls17{letter-spacing:0.425088pt;}
.ls29{letter-spacing:0.430336pt;}
.lsf{letter-spacing:0.435584pt;}
.ls12{letter-spacing:0.440832pt;}
.ls36{letter-spacing:0.446080pt;}
.ls2b{letter-spacing:0.451328pt;}
.ls9{letter-spacing:0.456576pt;}
.ls3f{letter-spacing:0.461824pt;}
.ls42{letter-spacing:0.472320pt;}
.ls3d{letter-spacing:0.482816pt;}
.ls1a{letter-spacing:0.509056pt;}
.ls2f{letter-spacing:0.512640pt;}
.ls30{letter-spacing:0.524160pt;}
.ls7{letter-spacing:0.524800pt;}
.ls3e{letter-spacing:0.529920pt;}
.ls31{letter-spacing:0.535680pt;}
.ls4{letter-spacing:0.545792pt;}
.ls3c{letter-spacing:0.572032pt;}
.ls1c{letter-spacing:0.596332pt;}
.ls37{letter-spacing:0.734720pt;}
.ls34{letter-spacing:0.855424pt;}
.ls3a{letter-spacing:119.958784pt;}
.ls3b{letter-spacing:337.409664pt;}
.ws10e{word-spacing:-15.161472pt;}
.ws5{word-spacing:-15.114240pt;}
.ws7{word-spacing:-15.098496pt;}
.ws10f{word-spacing:-15.051264pt;}
.ws6{word-spacing:-15.046016pt;}
.ws10c{word-spacing:-15.009280pt;}
.ws10d{word-spacing:-14.988288pt;}
.ws110{word-spacing:-14.930560pt;}
.ws2{word-spacing:-11.409067pt;}
.ws4{word-spacing:-9.652608pt;}
.ws8{word-spacing:-9.607680pt;}
.ws3{word-spacing:-8.896000pt;}
.ws5b{word-spacing:-7.472640pt;}
.wsc{word-spacing:-0.299136pt;}
.ws114{word-spacing:-0.241920pt;}
.ws102{word-spacing:-0.230400pt;}
.wsfb{word-spacing:-0.215168pt;}
.wse4{word-spacing:-0.207360pt;}
.wsc9{word-spacing:-0.195840pt;}
.wsfe{word-spacing:-0.194176pt;}
.wsf6{word-spacing:-0.188928pt;}
.ws60{word-spacing:-0.162688pt;}
.ws50{word-spacing:-0.157440pt;}
.wsc7{word-spacing:-0.152192pt;}
.wsbb{word-spacing:-0.146944pt;}
.wse{word-spacing:-0.142080pt;}
.wsfc{word-spacing:-0.141696pt;}
.wsfa{word-spacing:-0.136448pt;}
.ws9{word-spacing:-0.132608pt;}
.ws10{word-spacing:-0.131200pt;}
.wsac{word-spacing:-0.125952pt;}
.wsde{word-spacing:-0.120704pt;}
.wsf{word-spacing:-0.118400pt;}
.ws24{word-spacing:-0.115456pt;}
.wsa{word-spacing:-0.113664pt;}
.wsf7{word-spacing:-0.110208pt;}
.ws99{word-spacing:-0.104960pt;}
.wsff{word-spacing:-0.104192pt;}
.wse3{word-spacing:-0.099712pt;}
.ws18f{word-spacing:-0.099456pt;}
.ws90{word-spacing:-0.094464pt;}
.ws1a8{word-spacing:-0.089984pt;}
.wsb{word-spacing:-0.089088pt;}
.ws19f{word-spacing:-0.085248pt;}
.wsf9{word-spacing:-0.083968pt;}
.ws194{word-spacing:-0.080512pt;}
.ws51{word-spacing:-0.078720pt;}
.ws5c{word-spacing:-0.076032pt;}
.ws111{word-spacing:-0.073472pt;}
.ws5e{word-spacing:-0.067584pt;}
.ws0{word-spacing:-0.064000pt;}
.ws5d{word-spacing:-0.059136pt;}
.ws5a{word-spacing:-0.050688pt;}
.wsd8{word-spacing:-0.047232pt;}
.wsd{word-spacing:-0.041984pt;}
.ws1{word-spacing:0.000000pt;}
.ws25{word-spacing:0.006400pt;}
.ws6a{word-spacing:0.012800pt;}
.wsae{word-spacing:0.032000pt;}
.ws93{word-spacing:0.157440pt;}
.ws6f{word-spacing:0.272896pt;}
.wsaf{word-spacing:0.388352pt;}
.ws171{word-spacing:0.519552pt;}
.ws44{word-spacing:0.561536pt;}
.wsef{word-spacing:0.582528pt;}
.ws20{word-spacing:0.635008pt;}
.ws21{word-spacing:0.650752pt;}
.ws6c{word-spacing:0.656000pt;}
.ws1e{word-spacing:0.713728pt;}
.ws14b{word-spacing:0.881664pt;}
.ws105{word-spacing:0.918400pt;}
.ws15a{word-spacing:0.928896pt;}
.wsaa{word-spacing:1.075840pt;}
.ws157{word-spacing:1.096832pt;}
.ws63{word-spacing:1.117824pt;}
.ws126{word-spacing:1.165056pt;}
.ws91{word-spacing:1.191296pt;}
.wsd2{word-spacing:1.243776pt;}
.wsda{word-spacing:1.359232pt;}
.wsd9{word-spacing:1.395968pt;}
.ws22{word-spacing:1.427456pt;}
.ws1a3{word-spacing:1.553408pt;}
.ws70{word-spacing:1.574400pt;}
.wsa1{word-spacing:1.579648pt;}
.ws92{word-spacing:1.605888pt;}
.ws34{word-spacing:1.611136pt;}
.ws98{word-spacing:1.663616pt;}
.ws87{word-spacing:1.684608pt;}
.ws9e{word-spacing:1.826304pt;}
.ws127{word-spacing:1.868288pt;}
.ws168{word-spacing:1.884032pt;}
.ws58{word-spacing:2.044416pt;}
.ws2d{word-spacing:2.235648pt;}
.ws19c{word-spacing:2.273280pt;}
.ws8d{word-spacing:2.293376pt;}
.wseb{word-spacing:2.314368pt;}
.ws19{word-spacing:2.361600pt;}
.ws1a{word-spacing:2.382592pt;}
.ws7f{word-spacing:2.408832pt;}
.ws188{word-spacing:2.414080pt;}
.wsa3{word-spacing:2.461312pt;}
.ws16{word-spacing:2.781440pt;}
.ws15{word-spacing:2.807680pt;}
.ws181{word-spacing:2.849664pt;}
.wsca{word-spacing:2.860160pt;}
.ws13b{word-spacing:2.865408pt;}
.ws113{word-spacing:2.891648pt;}
.ws1a2{word-spacing:3.139968pt;}
.ws11f{word-spacing:3.280000pt;}
.ws2b{word-spacing:3.295744pt;}
.ws1a7{word-spacing:3.296256pt;}
.wsb6{word-spacing:3.390208pt;}
.ws94{word-spacing:3.468928pt;}
.wscb{word-spacing:3.505664pt;}
.ws15c{word-spacing:3.510912pt;}
.ws125{word-spacing:3.537152pt;}
.ws1d{word-spacing:3.699840pt;}
.ws11d{word-spacing:3.741824pt;}
.ws16a{word-spacing:3.841536pt;}
.ws169{word-spacing:3.883520pt;}
.ws15d{word-spacing:3.946496pt;}
.ws6e{word-spacing:3.983232pt;}
.ws19d{word-spacing:4.044544pt;}
.ws136{word-spacing:4.077696pt;}
.ws13e{word-spacing:4.119680pt;}
.ws158{word-spacing:4.345344pt;}
.ws3a{word-spacing:4.350592pt;}
.ws12d{word-spacing:4.382080pt;}
.ws176{word-spacing:4.418816pt;}
.ws23{word-spacing:4.565760pt;}
.ws1f{word-spacing:4.639232pt;}
.ws140{word-spacing:4.649728pt;}
.ws81{word-spacing:4.665472pt;}
.ws117{word-spacing:4.675968pt;}
.ws4e{word-spacing:4.723200pt;}
.ws116{word-spacing:4.780928pt;}
.ws106{word-spacing:4.854400pt;}
.ws32{word-spacing:4.859648pt;}
.ws14f{word-spacing:4.969856pt;}
.ws160{word-spacing:4.996096pt;}
.ws84{word-spacing:5.164032pt;}
.ws109{word-spacing:5.316224pt;}
.ws8c{word-spacing:5.337216pt;}
.ws52{word-spacing:5.358208pt;}
.ws175{word-spacing:5.384448pt;}
.ws13a{word-spacing:5.389696pt;}
.ws37{word-spacing:5.400192pt;}
.ws185{word-spacing:5.431680pt;}
.ws1c{word-spacing:5.568128pt;}
.ws195{word-spacing:5.588480pt;}
.wsd5{word-spacing:5.631104pt;}
.ws1a0{word-spacing:5.735296pt;}
.ws16e{word-spacing:5.767552pt;}
.ws17{word-spacing:5.788544pt;}
.ws18{word-spacing:5.799040pt;}
.ws3c{word-spacing:5.820032pt;}
.ws119{word-spacing:5.841024pt;}
.ws121{word-spacing:5.846272pt;}
.ws120{word-spacing:5.862016pt;}
.ws148{word-spacing:5.877760pt;}
.ws143{word-spacing:5.883008pt;}
.ws197{word-spacing:6.152064pt;}
.ws9a{word-spacing:6.297600pt;}
.ws189{word-spacing:6.313344pt;}
.ws161{word-spacing:6.355328pt;}
.ws4c{word-spacing:6.371072pt;}
.ws129{word-spacing:6.386816pt;}
.ws138{word-spacing:6.439296pt;}
.ws69{word-spacing:6.570496pt;}
.wsd3{word-spacing:6.575744pt;}
.ws17a{word-spacing:6.670208pt;}
.ws17d{word-spacing:6.675456pt;}
.wse0{word-spacing:6.916864pt;}
.ws11c{word-spacing:6.990336pt;}
.ws13{word-spacing:7.142528pt;}
.ws14{word-spacing:7.195008pt;}
.ws2c{word-spacing:7.252736pt;}
.wscf{word-spacing:7.326208pt;}
.ws115{word-spacing:7.347200pt;}
.wsa0{word-spacing:7.504640pt;}
.ws95{word-spacing:7.656832pt;}
.ws13d{word-spacing:7.824768pt;}
.ws6d{word-spacing:7.835264pt;}
.ws182{word-spacing:7.856256pt;}
.ws187{word-spacing:7.877248pt;}
.ws19e{word-spacing:7.975424pt;}
.wsba{word-spacing:8.150144pt;}
.ws18c{word-spacing:8.150656pt;}
.ws12f{word-spacing:8.202624pt;}
.wsf4{word-spacing:8.239360pt;}
.ws8e{word-spacing:8.297088pt;}
.ws68{word-spacing:8.318080pt;}
.ws147{word-spacing:8.381056pt;}
.ws128{word-spacing:8.449280pt;}
.wsbc{word-spacing:8.611968pt;}
.ws12b{word-spacing:8.795648pt;}
.ws124{word-spacing:8.806144pt;}
.ws36{word-spacing:8.811392pt;}
.ws172{word-spacing:8.827136pt;}
.ws196{word-spacing:8.917888pt;}
.wsb0{word-spacing:9.126272pt;}
.ws15f{word-spacing:9.131520pt;}
.ws199{word-spacing:9.135744pt;}
.ws14d{word-spacing:9.215488pt;}
.wsc5{word-spacing:9.294208pt;}
.ws66{word-spacing:9.330944pt;}
.ws67{word-spacing:9.362432pt;}
.ws96{word-spacing:9.404416pt;}
.ws198{word-spacing:9.514624pt;}
.ws107{word-spacing:9.540864pt;}
.wsc6{word-spacing:9.572352pt;}
.wsab{word-spacing:9.672064pt;}
.ws9c{word-spacing:9.740288pt;}
.ws163{word-spacing:9.960704pt;}
.wse6{word-spacing:10.065664pt;}
.ws85{word-spacing:10.070912pt;}
.ws9b{word-spacing:10.238848pt;}
.ws80{word-spacing:10.558976pt;}
.ws7d{word-spacing:10.564224pt;}
.wsf0{word-spacing:10.574720pt;}
.ws74{word-spacing:10.884352pt;}
.ws65{word-spacing:10.900096pt;}
.ws3d{word-spacing:11.094272pt;}
.ws142{word-spacing:11.183488pt;}
.ws64{word-spacing:11.204480pt;}
.ws104{word-spacing:11.325184pt;}
.ws19b{word-spacing:11.565312pt;}
.wsdc{word-spacing:11.650560pt;}
.ws3f{word-spacing:11.671552pt;}
.ws3e{word-spacing:11.703040pt;}
.ws72{word-spacing:11.734528pt;}
.ws11a{word-spacing:11.739776pt;}
.ws61{word-spacing:11.771264pt;}
.ws100{word-spacing:11.787008pt;}
.ws2a{word-spacing:12.149120pt;}
.wsee{word-spacing:12.395776pt;}
.ws59{word-spacing:12.617088pt;}
.ws16d{word-spacing:12.637184pt;}
.ws103{word-spacing:12.763136pt;}
.wsdf{word-spacing:12.868096pt;}
.wsb3{word-spacing:12.910080pt;}
.ws149{word-spacing:12.957312pt;}
.ws123{word-spacing:12.994048pt;}
.ws190{word-spacing:13.151872pt;}
.ws17b{word-spacing:13.240704pt;}
.ws118{word-spacing:13.245952pt;}
.ws15b{word-spacing:13.261696pt;}
.ws86{word-spacing:13.282688pt;}
.ws33{word-spacing:13.293184pt;}
.ws14c{word-spacing:13.350912pt;}
.ws8a{word-spacing:13.466368pt;}
.ws19a{word-spacing:13.497600pt;}
.ws167{word-spacing:13.524096pt;}
.wsf1{word-spacing:13.723520pt;}
.wsb9{word-spacing:13.891456pt;}
.ws47{word-spacing:14.038400pt;}
.ws12{word-spacing:14.416256pt;}
.ws191{word-spacing:14.534784pt;}
.ws1b{word-spacing:14.552704pt;}
.wscd{word-spacing:14.563200pt;}
.ws132{word-spacing:14.683904pt;}
.wsa4{word-spacing:14.699648pt;}
.ws130{word-spacing:14.757376pt;}
.ws162{word-spacing:14.762624pt;}
.wsa6{word-spacing:14.767872pt;}
.wsa7{word-spacing:14.815104pt;}
.wsdb{word-spacing:15.061760pt;}
.ws7a{word-spacing:15.088000pt;}
.ws12c{word-spacing:15.145728pt;}
.ws180{word-spacing:15.240192pt;}
.ws83{word-spacing:15.339904pt;}
.ws49{word-spacing:15.408128pt;}
.ws159{word-spacing:15.418624pt;}
.ws179{word-spacing:15.460608pt;}
.wsf2{word-spacing:15.528832pt;}
.ws55{word-spacing:15.764992pt;}
.ws139{word-spacing:15.911936pt;}
.ws8f{word-spacing:15.938176pt;}
.ws13c{word-spacing:16.106112pt;}
.wsf5{word-spacing:16.132352pt;}
.ws9f{word-spacing:16.300288pt;}
.ws45{word-spacing:16.379008pt;}
.ws152{word-spacing:16.462976pt;}
.ws164{word-spacing:16.483968pt;}
.ws62{word-spacing:16.531200pt;}
.ws3b{word-spacing:16.693888pt;}
.ws29{word-spacing:16.699136pt;}
.ws16b{word-spacing:16.835584pt;}
.ws26{word-spacing:17.014016pt;}
.ws7c{word-spacing:17.118976pt;}
.ws131{word-spacing:17.255424pt;}
.ws14e{word-spacing:17.297408pt;}
.ws97{word-spacing:17.680512pt;}
.wse7{word-spacing:17.696256pt;}
.ws71{word-spacing:17.706752pt;}
.wse8{word-spacing:17.732992pt;}
.ws134{word-spacing:18.299776pt;}
.ws48{word-spacing:18.766848pt;}
.ws79{word-spacing:18.856064pt;}
.wsa2{word-spacing:18.903296pt;}
.ws112{word-spacing:18.976768pt;}
.ws186{word-spacing:19.107968pt;}
.ws56{word-spacing:19.176192pt;}
.ws150{word-spacing:19.832192pt;}
.ws4d{word-spacing:20.010624pt;}
.ws145{word-spacing:20.089344pt;}
.ws183{word-spacing:20.115584pt;}
.ws122{word-spacing:20.157568pt;}
.wse9{word-spacing:20.677120pt;}
.wsc8{word-spacing:20.724480pt;}
.wsd4{word-spacing:21.175680pt;}
.ws18b{word-spacing:21.186176pt;}
.ws46{word-spacing:21.432832pt;}
.ws192{word-spacing:21.454080pt;}
.ws18e{word-spacing:21.458816pt;}
.ws17e{word-spacing:21.616512pt;}
.wse1{word-spacing:21.810688pt;}
.wsec{word-spacing:21.857920pt;}
.ws12e{word-spacing:21.952384pt;}
.ws89{word-spacing:22.115072pt;}
.ws1a1{word-spacing:22.173952pt;}
.wsd7{word-spacing:22.361728pt;}
.ws17f{word-spacing:22.419456pt;}
.ws137{word-spacing:22.471936pt;}
.ws15e{word-spacing:22.639872pt;}
.ws18a{word-spacing:22.660864pt;}
.wsce{word-spacing:22.860288pt;}
.wsb8{word-spacing:22.949504pt;}
.ws11e{word-spacing:23.022976pt;}
.ws178{word-spacing:23.038720pt;}
.ws11b{word-spacing:23.059712pt;}
.ws108{word-spacing:23.584512pt;}
.ws16c{word-spacing:23.616000pt;}
.ws17c{word-spacing:23.626496pt;}
.wse5{word-spacing:23.631744pt;}
.ws38{word-spacing:23.663232pt;}
.ws135{word-spacing:23.689472pt;}
.ws9d{word-spacing:24.613120pt;}
.ws4a{word-spacing:24.639360pt;}
.ws11{word-spacing:24.718080pt;}
.ws170{word-spacing:25.311104pt;}
.ws144{word-spacing:25.347840pt;}
.wsed{word-spacing:25.599744pt;}
.ws78{word-spacing:25.631232pt;}
.ws177{word-spacing:25.725696pt;}
.ws2f{word-spacing:25.730944pt;}
.ws30{word-spacing:25.757184pt;}
.ws8b{word-spacing:26.019584pt;}
.ws5f{word-spacing:26.082560pt;}
.wsb2{word-spacing:26.623104pt;}
.wsd6{word-spacing:27.153152pt;}
.wsb4{word-spacing:27.279104pt;}
.wsbf{word-spacing:27.352576pt;}
.wscc{word-spacing:28.533376pt;}
.wse2{word-spacing:28.570112pt;}
.wsd1{word-spacing:28.591104pt;}
.ws133{word-spacing:28.801024pt;}
.ws153{word-spacing:28.926976pt;}
.wsc2{word-spacing:29.315328pt;}
.ws18d{word-spacing:30.106752pt;}
.ws166{word-spacing:30.149760pt;}
.ws57{word-spacing:30.301952pt;}
.ws101{word-spacing:30.464640pt;}
.ws141{word-spacing:30.517120pt;}
.wsea{word-spacing:30.706048pt;}
.ws165{word-spacing:30.774272pt;}
.ws1a4{word-spacing:30.774528pt;}
.ws156{word-spacing:31.036672pt;}
.ws31{word-spacing:31.299072pt;}
.ws73{word-spacing:31.341056pt;}
.ws1a6{word-spacing:31.759616pt;}
.ws77{word-spacing:31.813376pt;}
.ws7e{word-spacing:32.495616pt;}
.ws10a{word-spacing:32.521856pt;}
.ws28{word-spacing:32.957440pt;}
.wsb1{word-spacing:33.141120pt;}
.ws7b{word-spacing:33.251328pt;}
.ws10b{word-spacing:33.277568pt;}
.ws42{word-spacing:33.933568pt;}
.ws146{word-spacing:34.012288pt;}
.ws12a{word-spacing:34.762752pt;}
.ws41{word-spacing:35.355776pt;}
.wsad{word-spacing:35.392000pt;}
.wsa8{word-spacing:35.518464pt;}
.wsbe{word-spacing:35.885824pt;}
.ws184{word-spacing:36.468352pt;}
.ws173{word-spacing:36.704512pt;}
.ws13f{word-spacing:36.935424pt;}
.ws40{word-spacing:37.071872pt;}
.wsb5{word-spacing:39.018880pt;}
.ws193{word-spacing:40.094976pt;}
.ws16f{word-spacing:40.692992pt;}
.ws4b{word-spacing:41.275520pt;}
.ws75{word-spacing:41.417216pt;}
.wsa5{word-spacing:42.151936pt;}
.ws6b{word-spacing:42.954880pt;}
.ws154{word-spacing:43.584640pt;}
.ws54{word-spacing:43.705344pt;}
.ws53{word-spacing:43.736832pt;}
.wsfd{word-spacing:44.424320pt;}
.wsf8{word-spacing:44.471552pt;}
.ws88{word-spacing:45.159040pt;}
.ws39{word-spacing:45.384704pt;}
.ws174{word-spacing:47.956224pt;}
.wsbd{word-spacing:48.003456pt;}
.ws1a5{word-spacing:48.136704pt;}
.wsc1{word-spacing:48.339328pt;}
.wsdd{word-spacing:49.457152pt;}
.wsa9{word-spacing:49.693312pt;}
.ws4f{word-spacing:53.797248pt;}
.wsb7{word-spacing:54.358784pt;}
.ws151{word-spacing:55.098752pt;}
.ws2e{word-spacing:57.507584pt;}
.ws43{word-spacing:57.638784pt;}
.ws14a{word-spacing:60.409728pt;}
.ws155{word-spacing:62.125824pt;}
.wsc4{word-spacing:66.654848pt;}
.ws35{word-spacing:77.995776pt;}
.wsd0{word-spacing:78.678016pt;}
.ws82{word-spacing:79.963776pt;}
.wsc3{word-spacing:85.552896pt;}
.wsc0{word-spacing:89.609600pt;}
.wsf3{word-spacing:90.848128pt;}
.ws27{word-spacing:93.524608pt;}
.ws76{word-spacing:110.664576pt;}
._11{margin-left:-44.608000pt;}
._d{margin-left:-32.485120pt;}
._4{margin-left:-17.792000pt;}
._8{margin-left:-15.980800pt;}
._e{margin-left:-12.626688pt;}
._7{margin-left:-9.755733pt;}
._2{margin-left:-8.273067pt;}
._6{margin-left:-7.123200pt;}
._0{margin-left:-5.545792pt;}
._5{margin-left:-3.532800pt;}
._3{margin-left:-1.344000pt;}
._9{width:1.002197pt;}
._b{width:1.941760pt;}
._c{width:7.231744pt;}
._1{width:11.409067pt;}
._f{width:14.610432pt;}
._10{width:44.587008pt;}
._12{width:48.334080pt;}
._a{width:78.980352pt;}
._14{width:87.520896pt;}
._15{width:113.603456pt;}
._13{width:261.408128pt;}
._16{width:279.377280pt;}
.fsa{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs1{font-size:43.530667pt;}
.fs6{font-size:47.360000pt;}
.fs5{font-size:52.480000pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:37.796000pt;}
.y66{bottom:97.802741pt;}
.y10e{bottom:102.302069pt;}
.y146{bottom:103.241467pt;}
.y181{bottom:103.249397pt;}
.ya4{bottom:103.929493pt;}
.y4b{bottom:108.042299pt;}
.y65{bottom:110.281493pt;}
.y1b8{bottom:110.619445pt;}
.y6{bottom:113.023333pt;}
.y10d{bottom:117.661653pt;}
.y180{bottom:118.608981pt;}
.ya3{bottom:119.287765pt;}
.y145{bottom:121.494875pt;}
.y4a{bottom:123.401883pt;}
.y1b7{bottom:125.979029pt;}
.y64{bottom:127.881333pt;}
.y10c{bottom:133.021237pt;}
.ya2{bottom:134.646037pt;}
.y63{bottom:135.881333pt;}
.y144{bottom:136.854459pt;}
.y49{bottom:138.761467pt;}
.y1b6{bottom:141.338613pt;}
.y17f{bottom:141.969141pt;}
.y220{bottom:143.881333pt;}
.yda{bottom:146.786005pt;}
.y10b{bottom:148.379509pt;}
.ya1{bottom:150.005621pt;}
.y143{bottom:152.214043pt;}
.y48{bottom:154.127829pt;}
.y1b5{bottom:156.698197pt;}
.y17e{bottom:157.328725pt;}
.y1eb{bottom:162.133627pt;}
.yd9{bottom:162.145589pt;}
.y10a{bottom:163.739093pt;}
.ya0{bottom:165.365205pt;}
.y142{bottom:167.573627pt;}
.y47{bottom:169.487413pt;}
.y1b4{bottom:172.057781pt;}
.y17d{bottom:172.368181pt;}
.y62{bottom:172.687611pt;}
.y1ea{bottom:177.491899pt;}
.yd8{bottom:177.505173pt;}
.y21f{bottom:177.801333pt;}
.y109{bottom:179.097365pt;}
.y9f{bottom:180.723477pt;}
.y141{bottom:182.933211pt;}
.y46{bottom:184.846997pt;}
.y1b3{bottom:187.095925pt;}
.y17c{bottom:187.726453pt;}
.y61{bottom:188.047195pt;}
.y1e9{bottom:192.531355pt;}
.yd7{bottom:192.864757pt;}
.y108{bottom:194.455637pt;}
.y9e{bottom:196.083061pt;}
.y21e{bottom:196.361333pt;}
.y140{bottom:198.292795pt;}
.y45{bottom:200.205269pt;}
.y1b2{bottom:202.455509pt;}
.y17b{bottom:203.086037pt;}
.y60{bottom:203.405467pt;}
.y1e8{bottom:207.889627pt;}
.yd6{bottom:208.224341pt;}
.y107{bottom:209.815221pt;}
.y9d{bottom:211.122517pt;}
.y13f{bottom:213.332251pt;}
.y21d{bottom:214.921333pt;}
.y44{bottom:215.564853pt;}
.y1b1{bottom:217.815093pt;}
.y5f{bottom:218.444923pt;}
.y17a{bottom:218.445621pt;}
.y1e7{bottom:223.247899pt;}
.yd5{bottom:223.583925pt;}
.y106{bottom:225.174805pt;}
.y9c{bottom:226.480789pt;}
.y13e{bottom:228.690523pt;}
.y43{bottom:230.924437pt;}
.y1b0{bottom:233.174677pt;}
.y21c{bottom:233.481333pt;}
.y5e{bottom:233.803195pt;}
.y179{bottom:233.803893pt;}
.y1e6{bottom:238.607483pt;}
.yd4{bottom:238.942197pt;}
.y105{bottom:240.533077pt;}
.y9b{bottom:241.839061pt;}
.y13d{bottom:244.050107pt;}
.y42{bottom:246.284021pt;}
.y1af{bottom:248.534261pt;}
.y5d{bottom:249.161467pt;}
.y178{bottom:249.163477pt;}
.y21b{bottom:252.041333pt;}
.y1e5{bottom:253.967067pt;}
.yd3{bottom:254.301781pt;}
.y104{bottom:255.572533pt;}
.y9a{bottom:257.197333pt;}
.y13c{bottom:259.408379pt;}
.y41{bottom:261.643605pt;}
.y1ae{bottom:263.893845pt;}
.y177{bottom:264.523061pt;}
.y5c{bottom:264.525621pt;}
.y1e4{bottom:269.325339pt;}
.yd2{bottom:269.661365pt;}
.y21a{bottom:270.921333pt;}
.y103{bottom:270.930805pt;}
.y99{bottom:272.555605pt;}
.y13b{bottom:274.766651pt;}
.y40{bottom:277.003189pt;}
.y1ad{bottom:279.253429pt;}
.y176{bottom:279.881333pt;}
.y5b{bottom:279.883893pt;}
.y1e3{bottom:284.684923pt;}
.yd1{bottom:284.699509pt;}
.y102{bottom:286.289077pt;}
.y98{bottom:287.915189pt;}
.y219{bottom:289.481333pt;}
.y13a{bottom:290.124923pt;}
.y3f{bottom:292.041333pt;}
.y1ac{bottom:294.613013pt;}
.y5a{bottom:295.243477pt;}
.y1e2{bottom:300.043195pt;}
.yd0{bottom:300.059093pt;}
.y101{bottom:301.647349pt;}
.y175{bottom:303.262107pt;}
.y97{bottom:303.274773pt;}
.y139{bottom:305.483195pt;}
.y3e{bottom:307.414459pt;}
.y218{bottom:308.041333pt;}
.y1ab{bottom:309.972597pt;}
.y59{bottom:310.603061pt;}
.y1e1{bottom:315.401467pt;}
.ycf{bottom:315.417365pt;}
.y100{bottom:317.005621pt;}
.y174{bottom:318.621691pt;}
.y96{bottom:318.633045pt;}
.y138{bottom:320.841467pt;}
.y3d{bottom:322.774043pt;}
.y1aa{bottom:325.332181pt;}
.y58{bottom:325.968123pt;}
.y217{bottom:326.601333pt;}
.yce{bottom:330.775637pt;}
.y1e0{bottom:331.081467pt;}
.yff{bottom:332.363893pt;}
.y173{bottom:333.979963pt;}
.y95{bottom:333.992629pt;}
.y137{bottom:336.521333pt;}
.y3c{bottom:338.132315pt;}
.y1a9{bottom:340.691765pt;}
.y57{bottom:341.327707pt;}
.yf{bottom:344.956000pt;}
.y216{bottom:345.161333pt;}
.ycd{bottom:346.135221pt;}
.yfe{bottom:347.723477pt;}
.y172{bottom:349.019419pt;}
.y1df{bottom:349.321467pt;}
.y94{bottom:349.350901pt;}
.y136{bottom:352.845621pt;}
.y3b{bottom:353.490587pt;}
.y1a8{bottom:356.051349pt;}
.y56{bottom:356.687291pt;}
.ycc{bottom:361.493493pt;}
.yfd{bottom:363.083061pt;}
.y215{bottom:363.721333pt;}
.ye{bottom:364.156000pt;}
.y171{bottom:364.379003pt;}
.y93{bottom:364.709173pt;}
.y1de{bottom:367.591125pt;}
.y135{bottom:368.203893pt;}
.y3a{bottom:368.848859pt;}
.y1a7{bottom:371.090805pt;}
.y55{bottom:372.045563pt;}
.ycb{bottom:376.851765pt;}
.yfc{bottom:378.441333pt;}
.y92{bottom:380.068757pt;}
.y214{bottom:382.281333pt;}
.y1dd{bottom:382.950709pt;}
.yd{bottom:383.356000pt;}
.y134{bottom:383.563477pt;}
.y39{bottom:384.207131pt;}
.y1a6{bottom:386.449077pt;}
.y54{bottom:387.085019pt;}
.y170{bottom:387.739163pt;}
.yca{bottom:392.211349pt;}
.yfb{bottom:393.801333pt;}
.y91{bottom:395.108213pt;}
.y1dc{bottom:398.310293pt;}
.y133{bottom:398.923061pt;}
.y38{bottom:399.565403pt;}
.y213{bottom:400.841333pt;}
.y1a5{bottom:401.808661pt;}
.y53{bottom:402.444603pt;}
.y16f{bottom:403.097435pt;}
.yc9{bottom:407.570933pt;}
.yfa{bottom:410.441333pt;}
.y90{bottom:410.466485pt;}
.y1db{bottom:413.669877pt;}
.y132{bottom:414.281333pt;}
.y37{bottom:414.924987pt;}
.y1a4{bottom:417.166933pt;}
.y52{bottom:417.804187pt;}
.y16e{bottom:418.457019pt;}
.y212{bottom:419.401333pt;}
.yc8{bottom:422.929205pt;}
.yf9{bottom:425.801333pt;}
.y8f{bottom:425.826069pt;}
.y1da{bottom:429.028149pt;}
.y131{bottom:429.321467pt;}
.y36{bottom:430.284571pt;}
.y1a3{bottom:432.525205pt;}
.y51{bottom:433.163771pt;}
.y16d{bottom:433.816603pt;}
.yc{bottom:436.604000pt;}
.y211{bottom:437.961333pt;}
.yc7{bottom:438.288789pt;}
.yf8{bottom:441.162997pt;}
.y8e{bottom:441.185653pt;}
.y1d9{bottom:444.387733pt;}
.y35{bottom:445.642843pt;}
.y1a2{bottom:447.884789pt;}
.y130{bottom:448.201333pt;}
.y50{bottom:448.523355pt;}
.y16c{bottom:449.174875pt;}
.yc6{bottom:453.328245pt;}
.yb{bottom:455.804000pt;}
.y210{bottom:456.521333pt;}
.yf7{bottom:456.522581pt;}
.y8d{bottom:456.543925pt;}
.y1d8{bottom:459.747317pt;}
.y34{bottom:460.682299pt;}
.y1a1{bottom:463.243061pt;}
.y4f{bottom:463.882939pt;}
.y12f{bottom:464.206037pt;}
.y16b{bottom:464.533147pt;}
.yc5{bottom:468.686517pt;}
.yf6{bottom:471.882165pt;}
.y8c{bottom:471.903509pt;}
.ya{bottom:475.004000pt;}
.y20f{bottom:475.081333pt;}
.y1d7{bottom:475.105589pt;}
.y33{bottom:476.041883pt;}
.y1a0{bottom:478.601333pt;}
.y4e{bottom:479.242523pt;}
.y12e{bottom:479.244181pt;}
.y16a{bottom:479.892731pt;}
.yc4{bottom:484.044789pt;}
.yf5{bottom:487.241749pt;}
.y8b{bottom:487.263093pt;}
.y1d6{bottom:490.145045pt;}
.y32{bottom:491.401467pt;}
.y20e{bottom:492.655989pt;}
.y9{bottom:494.204000pt;}
.y19f{bottom:494.281467pt;}
.y4d{bottom:494.602107pt;}
.y12d{bottom:494.923893pt;}
.y169{bottom:495.252315pt;}
.yc3{bottom:499.403061pt;}
.yf4{bottom:502.601333pt;}
.y8a{bottom:502.622677pt;}
.y1d5{bottom:505.504629pt;}
.y20d{bottom:506.417621pt;}
.y31{bottom:507.401467pt;}
.y4c{bottom:509.960379pt;}
.y12c{bottom:510.283477pt;}
.y168{bottom:510.610587pt;}
.y19e{bottom:512.211381pt;}
.y8{bottom:513.404000pt;}
.yc2{bottom:514.761333pt;}
.y89{bottom:517.982261pt;}
.yf3{bottom:517.985173pt;}
.y20c{bottom:520.497749pt;}
.y1d4{bottom:520.862901pt;}
.y30{bottom:525.338139pt;}
.y12b{bottom:525.963189pt;}
.y167{bottom:525.970171pt;}
.yc1{bottom:530.761333pt;}
.y7{bottom:532.604000pt;}
.y88{bottom:533.341845pt;}
.yf2{bottom:533.344757pt;}
.y20b{bottom:534.258197pt;}
.y19d{bottom:535.571541pt;}
.y1d3{bottom:536.222485pt;}
.y2f{bottom:540.697723pt;}
.y12a{bottom:541.001333pt;}
.y166{bottom:541.009627pt;}
.y20a{bottom:548.019829pt;}
.y87{bottom:548.700117pt;}
.yf1{bottom:548.704341pt;}
.yc0{bottom:549.001333pt;}
.y19c{bottom:550.929813pt;}
.y1d2{bottom:551.582069pt;}
.y2e{bottom:556.057307pt;}
.y165{bottom:556.367899pt;}
.y129{bottom:557.321467pt;}
.y209{bottom:561.780277pt;}
.y86{bottom:563.739573pt;}
.yf0{bottom:563.742485pt;}
.y19b{bottom:566.288085pt;}
.y1d1{bottom:566.941653pt;}
.ybf{bottom:566.986773pt;}
.y2d{bottom:571.096763pt;}
.y164{bottom:571.727483pt;}
.y128{bottom:573.324181pt;}
.y208{bottom:575.540725pt;}
.y85{bottom:579.097845pt;}
.yef{bottom:579.100757pt;}
.y19a{bottom:581.647669pt;}
.y1d0{bottom:582.301237pt;}
.ybe{bottom:582.346357pt;}
.y2c{bottom:586.455035pt;}
.y163{bottom:587.087067pt;}
.y127{bottom:588.683765pt;}
.y207{bottom:589.302357pt;}
.y84{bottom:594.456117pt;}
.yee{bottom:594.459029pt;}
.y199{bottom:597.007253pt;}
.y1cf{bottom:597.660821pt;}
.ybd{bottom:597.705941pt;}
.y2b{bottom:601.814619pt;}
.y162{bottom:602.445339pt;}
.y206{bottom:603.062805pt;}
.y126{bottom:604.363477pt;}
.y83{bottom:609.814389pt;}
.yed{bottom:609.818613pt;}
.y198{bottom:612.365525pt;}
.y5{bottom:612.970800pt;}
.y1ce{bottom:613.019093pt;}
.ybc{bottom:613.065525pt;}
.y205{bottom:616.823253pt;}
.y2a{bottom:617.172891pt;}
.y161{bottom:617.804923pt;}
.y125{bottom:619.723061pt;}
.y82{bottom:625.172661pt;}
.yec{bottom:625.178197pt;}
.y1cd{bottom:628.377365pt;}
.ybb{bottom:628.425109pt;}
.y204{bottom:630.584885pt;}
.y29{bottom:632.531163pt;}
.y160{bottom:633.163195pt;}
.y124{bottom:635.081333pt;}
.y197{bottom:635.726997pt;}
.y4{bottom:639.638000pt;}
.y81{bottom:640.530933pt;}
.yeb{bottom:640.536469pt;}
.y1cc{bottom:643.735637pt;}
.yba{bottom:643.784693pt;}
.y203{bottom:644.665013pt;}
.y28{bottom:647.889435pt;}
.y15f{bottom:648.521467pt;}
.y196{bottom:651.085269pt;}
.y123{bottom:651.401467pt;}
.y80{bottom:655.889205pt;}
.yea{bottom:655.894741pt;}
.y202{bottom:658.425461pt;}
.y1cb{bottom:659.093909pt;}
.yb9{bottom:659.144277pt;}
.y27{bottom:663.249019pt;}
.y15e{bottom:663.882165pt;}
.y195{bottom:666.124725pt;}
.y122{bottom:667.401467pt;}
.y7f{bottom:671.247477pt;}
.ye9{bottom:671.253013pt;}
.y201{bottom:672.185909pt;}
.y1ca{bottom:674.133365pt;}
.yb8{bottom:674.182421pt;}
.y26{bottom:678.608603pt;}
.y15d{bottom:679.241749pt;}
.y194{bottom:681.484309pt;}
.y121{bottom:683.404027pt;}
.y200{bottom:685.947541pt;}
.y7e{bottom:686.605749pt;}
.ye8{bottom:686.611285pt;}
.y1c9{bottom:689.492949pt;}
.yb7{bottom:689.540693pt;}
.y25{bottom:693.966875pt;}
.y3{bottom:694.475067pt;}
.y15c{bottom:694.601333pt;}
.y193{bottom:696.843893pt;}
.y120{bottom:698.763611pt;}
.y1ff{bottom:699.707989pt;}
.y7d{bottom:701.964021pt;}
.ye7{bottom:701.969557pt;}
.y1c8{bottom:704.851221pt;}
.yb6{bottom:704.898965pt;}
.y24{bottom:709.326459pt;}
.y15b{bottom:709.961333pt;}
.y192{bottom:712.203477pt;}
.y1fe{bottom:713.468437pt;}
.y11f{bottom:714.123195pt;}
.y7c{bottom:717.323605pt;}
.ye6{bottom:717.329141pt;}
.y1c7{bottom:720.210805pt;}
.yb5{bottom:720.257237pt;}
.y2{bottom:721.142267pt;}
.y23{bottom:724.686043pt;}
.y15a{bottom:726.605205pt;}
.y1fd{bottom:727.230069pt;}
.y191{bottom:727.563061pt;}
.y11e{bottom:729.481467pt;}
.y7b{bottom:732.683189pt;}
.ye5{bottom:732.688725pt;}
.y1c6{bottom:735.570389pt;}
.yb4{bottom:735.616821pt;}
.y22{bottom:739.724187pt;}
.y1fc{bottom:740.990517pt;}
.y159{bottom:741.964789pt;}
.y190{bottom:742.927829pt;}
.y11d{bottom:745.801333pt;}
.y7a{bottom:747.721333pt;}
.ye4{bottom:747.726869pt;}
.y1{bottom:747.809467pt;}
.y1c5{bottom:750.928661pt;}
.yb3{bottom:750.976405pt;}
.y1fb{bottom:755.070645pt;}
.y21{bottom:755.083771pt;}
.y158{bottom:757.323061pt;}
.y18f{bottom:758.287413pt;}
.y11c{bottom:761.803349pt;}
.ye3{bottom:763.086453pt;}
.y79{bottom:763.721333pt;}
.y1c4{bottom:766.286933pt;}
.yb2{bottom:766.335989pt;}
.y1fa{bottom:768.831093pt;}
.y20{bottom:770.443355pt;}
.y157{bottom:772.681333pt;}
.y18e{bottom:773.646997pt;}
.y11b{bottom:777.162933pt;}
.ye2{bottom:778.446037pt;}
.y78{bottom:781.641467pt;}
.y1c3{bottom:781.646517pt;}
.yb1{bottom:781.695573pt;}
.y1f9{bottom:782.592725pt;}
.y156{bottom:787.721173pt;}
.y18d{bottom:789.006581pt;}
.y11a{bottom:792.841333pt;}
.ye1{bottom:793.804309pt;}
.y1f8{bottom:796.353173pt;}
.y1c2{bottom:797.006101pt;}
.y77{bottom:797.009973pt;}
.yb0{bottom:797.055157pt;}
.y1f{bottom:801.801467pt;}
.y18c{bottom:804.366165pt;}
.y155{bottom:805.321333pt;}
.y119{bottom:809.161333pt;}
.ye0{bottom:809.163893pt;}
.y1f7{bottom:810.113621pt;}
.y1c1{bottom:812.364373pt;}
.y76{bottom:812.368245pt;}
.yaf{bottom:812.413429pt;}
.y1e{bottom:816.520443pt;}
.y18b{bottom:819.725749pt;}
.y1f6{bottom:823.875253pt;}
.y152{bottom:824.204789pt;}
.ydf{bottom:824.523477pt;}
.y118{bottom:825.167765pt;}
.y1c0{bottom:827.723957pt;}
.y75{bottom:827.727829pt;}
.yae{bottom:827.771701pt;}
.y1d{bottom:830.280891pt;}
.y154{bottom:831.885237pt;}
.y18a{bottom:834.765205pt;}
.y1f5{bottom:837.635701pt;}
.y151{bottom:839.563061pt;}
.yde{bottom:839.883061pt;}
.y117{bottom:840.207221pt;}
.y1bf{bottom:842.764725pt;}
.y74{bottom:842.768597pt;}
.yad{bottom:842.812469pt;}
.y1c{bottom:844.361019pt;}
.y153{bottom:847.243509pt;}
.y189{bottom:850.124789pt;}
.y1f4{bottom:851.396149pt;}
.y150{bottom:854.921333pt;}
.ydd{bottom:855.241333pt;}
.y116{bottom:855.886933pt;}
.y1b{bottom:858.121467pt;}
.y1be{bottom:858.124309pt;}
.y73{bottom:858.126869pt;}
.yac{bottom:858.172053pt;}
.y1f3{bottom:865.476277pt;}
.y188{bottom:865.483061pt;}
.ydc{bottom:870.920693pt;}
.y14e{bottom:870.924507pt;}
.y115{bottom:870.925077pt;}
.y1a{bottom:872.523221pt;}
.y1bd{bottom:873.483893pt;}
.y72{bottom:873.486453pt;}
.yab{bottom:873.531637pt;}
.y1f2{bottom:879.237909pt;}
.y187{bottom:880.841333pt;}
.y14b{bottom:886.281467pt;}
.y14d{bottom:886.282779pt;}
.y14f{bottom:886.284091pt;}
.y114{bottom:886.604789pt;}
.ydb{bottom:887.561333pt;}
.y19{bottom:887.881493pt;}
.y1bc{bottom:888.843477pt;}
.y71{bottom:888.846037pt;}
.yaa{bottom:888.891221pt;}
.y1f1{bottom:892.998357pt;}
.y14c{bottom:901.641051pt;}
.y113{bottom:901.963061pt;}
.y18{bottom:903.881333pt;}
.y1bb{bottom:904.203061pt;}
.y70{bottom:904.204309pt;}
.y186{bottom:904.212277pt;}
.ya9{bottom:904.250805pt;}
.y1f0{bottom:906.758805pt;}
.y112{bottom:917.321333pt;}
.y14a{bottom:917.641333pt;}
.y1ba{bottom:919.561333pt;}
.y6f{bottom:919.563893pt;}
.y185{bottom:919.571861pt;}
.ya8{bottom:919.610389pt;}
.y1ef{bottom:920.520437pt;}
.y17{bottom:925.001467pt;}
.y111{bottom:933.641333pt;}
.y149{bottom:933.643509pt;}
.y1ee{bottom:934.280885pt;}
.y6e{bottom:934.923477pt;}
.y1b9{bottom:934.924789pt;}
.y184{bottom:934.931445pt;}
.ya7{bottom:934.969973pt;}
.y148{bottom:941.321333pt;}
.y16{bottom:943.561467pt;}
.y1ed{bottom:948.041333pt;}
.y110{bottom:949.662517pt;}
.y6d{bottom:950.283061pt;}
.y183{bottom:950.291029pt;}
.ya6{bottom:950.329557pt;}
.y15{bottom:962.121467pt;}
.y1ec{bottom:963.081333pt;}
.y147{bottom:965.001333pt;}
.y10f{bottom:965.022101pt;}
.y6c{bottom:965.641333pt;}
.y182{bottom:965.649301pt;}
.ya5{bottom:965.689141pt;}
.y6b{bottom:981.321333pt;}
.y14{bottom:983.881573pt;}
.y6a{bottom:998.601445pt;}
.y13{bottom:1001.481733pt;}
.y69{bottom:1010.761285pt;}
.y68{bottom:1027.401355pt;}
.y12{bottom:1031.881733pt;}
.y67{bottom:1045.321675pt;}
.y11{bottom:1064.521867pt;}
.h10{height:18.650000pt;}
.h13{height:30.751875pt;}
.h11{height:30.772500pt;}
.h6{height:31.680000pt;}
.h16{height:34.479375pt;}
.h9{height:34.502500pt;}
.hc{height:38.206875pt;}
.h7{height:38.232500pt;}
.h12{height:40.399015pt;}
.h14{height:40.411515pt;}
.h15{height:41.934375pt;}
.ha{height:42.656250pt;}
.h5{height:46.354167pt;}
.he{height:46.593750pt;}
.h8{height:47.632500pt;}
.hf{height:52.030343pt;}
.hd{height:52.033073pt;}
.hb{height:54.048750pt;}
.h4{height:55.625000pt;}
.h2{height:56.554982pt;}
.h3{height:64.895833pt;}
.h17{height:68.954292pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.397867pt;}
.xd{left:100.798315pt;}
.x8{left:116.529536pt;}
.xe{left:124.798731pt;}
.x3{left:143.622667pt;}
.x11{left:164.879019pt;}
.x7{left:182.125333pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.xa{left:275.997333pt;}
.x6{left:332.664000pt;}
.x12{left:352.550123pt;}
.x4{left:385.728000pt;}
.x9{left:420.879975pt;}
.xf{left:423.077333pt;}
.xb{left:425.279115pt;}
.x13{left:428.412459pt;}
.x10{left:441.478805pt;}
.xc{left:449.279531pt;}
}


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