
/* 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_69d6c76b26d7.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_19c4c385e2eb.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_b5417e12fdbc.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_580462e098a1.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_ebd00e506afd.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_36dafb1ba313.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_6a80a1344351.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_cefc5863a237.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_311e5bb15818.woff")format("woff");}.ff9{font-family:ff9;line-height:0.860352;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_95efcc8d5973.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_d0a9559c1bd6.woff")format("woff");}.ffb{font-family:ffb;line-height:0.887695;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_487caa677caa.woff")format("woff");}.ffc{font-family:ffc;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:ffd;src:url("fonts/font_0012_ddec20b2c40c.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_a47f15841ce2.woff")format("woff");}.ffe{font-family:ffe;line-height:0.887695;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_79afcbefe365.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_6372a6b43aa1.woff")format("woff");}.ff10{font-family:ff10;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:ff11;src:url("fonts/font_0016_34a18719de52.woff")format("woff");}.ff11{font-family:ff11;line-height:0.887695;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_7ae097e78a35.woff")format("woff");}.ff12{font-family:ff12;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:ff13;src:url("fonts/font_0018_8b66090a1ce8.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_88e851c7bc9a.woff")format("woff");}.ff14{font-family:ff14;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:ff15;src:url("fonts/font_0020_65ae47d5d231.woff")format("woff");}.ff15{font-family:ff15;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:ff16;src:url("fonts/font_0021_a47f15841ce2.woff")format("woff");}.ff16{font-family:ff16;line-height:0.887695;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);}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.720000px;}
.v3{vertical-align:24.480000px;}
.v1{vertical-align:27.971400px;}
.ls31{letter-spacing:-0.909216px;}
.ls44{letter-spacing:-0.732096px;}
.ls34{letter-spacing:-0.708480px;}
.ls56{letter-spacing:-0.678960px;}
.ls35{letter-spacing:-0.578592px;}
.ls2e{letter-spacing:-0.532224px;}
.ls33{letter-spacing:-0.525456px;}
.ls20{letter-spacing:-0.522144px;}
.ls3e{letter-spacing:-0.484128px;}
.ls55{letter-spacing:-0.466416px;}
.ls41{letter-spacing:-0.454608px;}
.ls47{letter-spacing:-0.442800px;}
.ls3d{letter-spacing:-0.377856px;}
.ls45{letter-spacing:-0.371952px;}
.ls30{letter-spacing:-0.289872px;}
.ls2f{letter-spacing:-0.199584px;}
.ls32{letter-spacing:-0.007200px;}
.ls1f{letter-spacing:-0.003600px;}
.ls1{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls25{letter-spacing:0.230256px;}
.ls21{letter-spacing:0.233856px;}
.ls4{letter-spacing:0.250560px;}
.ls48{letter-spacing:0.271584px;}
.ls23{letter-spacing:0.277488px;}
.ls4f{letter-spacing:0.287712px;}
.ls4b{letter-spacing:0.293040px;}
.ls5{letter-spacing:0.298368px;}
.ls40{letter-spacing:0.301104px;}
.ls52{letter-spacing:0.303696px;}
.ls58{letter-spacing:0.309024px;}
.ls50{letter-spacing:0.314352px;}
.ls3a{letter-spacing:0.318816px;}
.ls4a{letter-spacing:0.319680px;}
.ls1c{letter-spacing:0.324720px;}
.ls59{letter-spacing:0.325008px;}
.ls51{letter-spacing:0.330336px;}
.ls3c{letter-spacing:0.330624px;}
.ls2c{letter-spacing:0.335664px;}
.ls24{letter-spacing:0.336528px;}
.ls54{letter-spacing:0.340992px;}
.ls49{letter-spacing:0.346320px;}
.ls18{letter-spacing:0.348336px;}
.ls3{letter-spacing:0.351648px;}
.ls37{letter-spacing:0.354240px;}
.ls4e{letter-spacing:0.356976px;}
.ls1e{letter-spacing:0.360144px;}
.ls57{letter-spacing:0.362304px;}
.ls39{letter-spacing:0.366048px;}
.ls4d{letter-spacing:0.367632px;}
.ls8{letter-spacing:0.371952px;}
.ls53{letter-spacing:0.372960px;}
.ls1b{letter-spacing:0.377856px;}
.ls4c{letter-spacing:0.378288px;}
.ls5a{letter-spacing:0.383616px;}
.ls16{letter-spacing:0.383760px;}
.ls3b{letter-spacing:0.389664px;}
.ls1d{letter-spacing:0.395568px;}
.ls2a{letter-spacing:0.401472px;}
.lsc{letter-spacing:0.407376px;}
.ls2{letter-spacing:0.412320px;}
.lsb{letter-spacing:0.413280px;}
.ls7{letter-spacing:0.419184px;}
.ls12{letter-spacing:0.425088px;}
.ls13{letter-spacing:0.430992px;}
.lsa{letter-spacing:0.436896px;}
.lse{letter-spacing:0.442800px;}
.ls15{letter-spacing:0.448704px;}
.lsf{letter-spacing:0.454608px;}
.ls11{letter-spacing:0.460512px;}
.ls17{letter-spacing:0.466416px;}
.ls19{letter-spacing:0.472320px;}
.ls14{letter-spacing:0.478224px;}
.lsd{letter-spacing:0.484128px;}
.ls2d{letter-spacing:0.489600px;}
.ls10{letter-spacing:0.490032px;}
.ls29{letter-spacing:0.495936px;}
.ls36{letter-spacing:0.501840px;}
.ls43{letter-spacing:0.507744px;}
.ls9{letter-spacing:0.513648px;}
.ls2b{letter-spacing:0.519552px;}
.ls42{letter-spacing:0.525456px;}
.ls1a{letter-spacing:0.537264px;}
.ls6{letter-spacing:0.590400px;}
.ls38{letter-spacing:0.654480px;}
.ls28{letter-spacing:0.693360px;}
.ls27{letter-spacing:0.765072px;}
.ls46{letter-spacing:0.826560px;}
.ls3f{letter-spacing:0.885600px;}
.ls26{letter-spacing:0.938880px;}
.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;}
}
.ws3{word-spacing:-17.003520px;}
.ws4{word-spacing:-16.926768px;}
.ws56{word-spacing:-16.903152px;}
.ws127{word-spacing:-16.808688px;}
.ws2{word-spacing:-12.835200px;}
.ws55{word-spacing:-8.496000px;}
.ws9c{word-spacing:-1.548720px;}
.wsfc{word-spacing:-0.625824px;}
.ws7c{word-spacing:-0.430992px;}
.wsc9{word-spacing:-0.377856px;}
.wsca{word-spacing:-0.336960px;}
.ws176{word-spacing:-0.330624px;}
.wsb8{word-spacing:-0.218448px;}
.wsba{word-spacing:-0.206640px;}
.ws9b{word-spacing:-0.200736px;}
.ws9{word-spacing:-0.194832px;}
.ws1b4{word-spacing:-0.183024px;}
.ws6a{word-spacing:-0.171216px;}
.ws11a{word-spacing:-0.159408px;}
.ws51{word-spacing:-0.153504px;}
.ws126{word-spacing:-0.147600px;}
.ws1c{word-spacing:-0.141696px;}
.ws1be{word-spacing:-0.138528px;}
.wsd7{word-spacing:-0.135792px;}
.ws1e5{word-spacing:-0.133200px;}
.ws1c8{word-spacing:-0.127872px;}
.ws6{word-spacing:-0.122544px;}
.ws1d4{word-spacing:-0.117216px;}
.ws8e{word-spacing:-0.112176px;}
.wsa{word-spacing:-0.111888px;}
.ws8{word-spacing:-0.108576px;}
.ws1c9{word-spacing:-0.106560px;}
.ws38{word-spacing:-0.106272px;}
.wsb9{word-spacing:-0.101232px;}
.ws86{word-spacing:-0.100368px;}
.ws1cc{word-spacing:-0.095904px;}
.ws54{word-spacing:-0.094464px;}
.ws7{word-spacing:-0.091872px;}
.ws1a7{word-spacing:-0.088560px;}
.ws1c4{word-spacing:-0.085248px;}
.wsd0{word-spacing:-0.076752px;}
.ws0{word-spacing:-0.072000px;}
.ws1c3{word-spacing:-0.069264px;}
.ws39{word-spacing:-0.053136px;}
.ws11b{word-spacing:-0.047232px;}
.ws58{word-spacing:-0.033264px;}
.ws1{word-spacing:0.000000px;}
.ws59{word-spacing:0.038016px;}
.wsb2{word-spacing:0.188928px;}
.ws57{word-spacing:0.304128px;}
.ws17a{word-spacing:0.507744px;}
.wseb{word-spacing:0.513648px;}
.wsea{word-spacing:0.537264px;}
.ws109{word-spacing:0.625824px;}
.ws45{word-spacing:0.637632px;}
.ws1d6{word-spacing:0.671328px;}
.ws5{word-spacing:0.692640px;}
.ws77{word-spacing:0.696672px;}
.ws43{word-spacing:0.714384px;}
.ws15f{word-spacing:0.720288px;}
.ws44{word-spacing:0.808848px;}
.ws163{word-spacing:0.814752px;}
.ws48{word-spacing:0.826560px;}
.ws1a2{word-spacing:0.856080px;}
.wsd3{word-spacing:0.861984px;}
.ws198{word-spacing:0.873792px;}
.ws21{word-spacing:0.903312px;}
.ws20{word-spacing:0.950544px;}
.ws1df{word-spacing:1.049616px;}
.ws28{word-spacing:1.086336px;}
.wsf2{word-spacing:1.092240px;}
.ws2a{word-spacing:1.139472px;}
.ws29{word-spacing:1.186704px;}
.ws2b{word-spacing:1.222128px;}
.ws112{word-spacing:1.328400px;}
.ws6c{word-spacing:1.334304px;}
.wsae{word-spacing:1.387440px;}
.wsd4{word-spacing:1.399248px;}
.ws162{word-spacing:1.446480px;}
.ws64{word-spacing:1.540944px;}
.ws19b{word-spacing:1.546848px;}
.ws7d{word-spacing:1.552752px;}
.ws151{word-spacing:1.564560px;}
.ws1cd{word-spacing:1.715616px;}
.ws148{word-spacing:1.729872px;}
.ws1ad{word-spacing:1.747584px;}
.wsc5{word-spacing:1.847952px;}
.ws9e{word-spacing:1.889280px;}
.ws1ba{word-spacing:1.891440px;}
.wsd{word-spacing:1.895184px;}
.ws122{word-spacing:1.966032px;}
.ws1a4{word-spacing:2.013264px;}
.ws149{word-spacing:2.030976px;}
.ws15e{word-spacing:2.119536px;}
.ws17{word-spacing:2.125440px;}
.ws93{word-spacing:2.166768px;}
.ws1d2{word-spacing:2.173824px;}
.ws120{word-spacing:2.190384px;}
.ws1cf{word-spacing:2.456208px;}
.ws1b9{word-spacing:2.653344px;}
.ws52{word-spacing:2.768976px;}
.ws7f{word-spacing:2.887056px;}
.ws85{word-spacing:2.910672px;}
.ws1c2{word-spacing:2.967696px;}
.ws178{word-spacing:3.005136px;}
.wsf{word-spacing:3.052368px;}
.ws14c{word-spacing:3.176352px;}
.ws7a{word-spacing:3.400704px;}
.ws84{word-spacing:3.512880px;}
.ws11{word-spacing:3.542400px;}
.ws100{word-spacing:3.560112px;}
.ws169{word-spacing:3.571920px;}
.ws2c{word-spacing:3.583728px;}
.ws4e{word-spacing:3.630960px;}
.ws14{word-spacing:3.695904px;}
.ws53{word-spacing:3.749040px;}
.wse1{word-spacing:3.896640px;}
.ws1a3{word-spacing:4.026528px;}
.ws1c5{word-spacing:4.107888px;}
.ws9a{word-spacing:4.250880px;}
.ws99{word-spacing:4.256784px;}
.wsfd{word-spacing:4.304016px;}
.ws16b{word-spacing:4.321728px;}
.ws166{word-spacing:4.392576px;}
.ws173{word-spacing:4.433904px;}
.ws5d{word-spacing:4.498848px;}
.ws104{word-spacing:4.504752px;}
.ws170{word-spacing:4.652352px;}
.ws3a{word-spacing:4.752720px;}
.ws16{word-spacing:4.941648px;}
.wse5{word-spacing:5.118768px;}
.ws18{word-spacing:5.207328px;}
.ws12{word-spacing:5.425776px;}
.ws36{word-spacing:5.431680px;}
.ws75{word-spacing:5.437584px;}
.ws153{word-spacing:5.596992px;}
.ws66{word-spacing:5.638320px;}
.wse3{word-spacing:5.673744px;}
.wsb{word-spacing:5.679648px;}
.ws19{word-spacing:5.738688px;}
.ws107{word-spacing:5.750496px;}
.wsee{word-spacing:5.756400px;}
.wse8{word-spacing:5.821344px;}
.ws97{word-spacing:5.839056px;}
.wse7{word-spacing:5.880384px;}
.ws4a{word-spacing:5.939424px;}
.ws161{word-spacing:5.957136px;}
.ws1d5{word-spacing:6.063264px;}
.wsc7{word-spacing:6.240528px;}
.ws194{word-spacing:6.246432px;}
.wsef{word-spacing:6.329088px;}
.ws193{word-spacing:6.382224px;}
.ws175{word-spacing:6.394032px;}
.ws10{word-spacing:6.760080px;}
.wsb6{word-spacing:6.830928px;}
.wsc0{word-spacing:6.842736px;}
.ws1e0{word-spacing:6.851808px;}
.ws128{word-spacing:6.907680px;}
.ws113{word-spacing:6.913584px;}
.ws15{word-spacing:7.114320px;}
.ws12a{word-spacing:7.291440px;}
.wsa4{word-spacing:7.297344px;}
.ws116{word-spacing:7.362288px;}
.wse4{word-spacing:7.385904px;}
.ws1a0{word-spacing:7.486272px;}
.ws1d0{word-spacing:7.555104px;}
.ws147{word-spacing:7.645680px;}
.ws7b{word-spacing:7.657488px;}
.ws103{word-spacing:7.704720px;}
.ws1ce{word-spacing:7.768224px;}
.ws65{word-spacing:7.905456px;}
.ws68{word-spacing:7.934976px;}
.ws74{word-spacing:7.999920px;}
.ws1e1{word-spacing:8.029296px;}
.ws96{word-spacing:8.112096px;}
.ws69{word-spacing:8.135712px;}
.ws11c{word-spacing:8.147520px;}
.ws18b{word-spacing:8.200656px;}
.ws14e{word-spacing:8.236080px;}
.ws12b{word-spacing:8.283312px;}
.ws13e{word-spacing:8.419104px;}
.ws1bd{word-spacing:8.434224px;}
.ws164{word-spacing:8.442720px;}
.wsb4{word-spacing:8.531280px;}
.wsbe{word-spacing:8.590320px;}
.ws15a{word-spacing:8.684784px;}
.ws16a{word-spacing:8.755632px;}
.wsf0{word-spacing:8.897328px;}
.ws159{word-spacing:9.050832px;}
.ws12e{word-spacing:9.056736px;}
.wse{word-spacing:9.222048px;}
.wsdc{word-spacing:9.381456px;}
.wse9{word-spacing:9.464112px;}
.ws139{word-spacing:9.517248px;}
.wsf5{word-spacing:9.794736px;}
.ws78{word-spacing:10.107648px;}
.ws3f{word-spacing:10.196208px;}
.wsbb{word-spacing:10.278864px;}
.ws179{word-spacing:10.379232px;}
.ws67{word-spacing:10.615392px;}
.ws1b0{word-spacing:10.633104px;}
.wsb3{word-spacing:10.863360px;}
.wsc4{word-spacing:10.934208px;}
.ws63{word-spacing:11.052288px;}
.wsc{word-spacing:11.300256px;}
.ws15d{word-spacing:11.707632px;}
.ws174{word-spacing:11.831616px;}
.ws110{word-spacing:11.861136px;}
.ws16f{word-spacing:11.967408px;}
.ws157{word-spacing:12.008736px;}
.wse0{word-spacing:12.315744px;}
.wsbf{word-spacing:12.386592px;}
.wsb1{word-spacing:12.451536px;}
.ws13{word-spacing:12.569616px;}
.ws33{word-spacing:12.605040px;}
.ws35{word-spacing:12.699504px;}
.ws34{word-spacing:12.793968px;}
.ws1ab{word-spacing:12.876624px;}
.ws1c6{word-spacing:12.947040px;}
.ws40{word-spacing:12.965184px;}
.ws2f{word-spacing:12.976992px;}
.wsfa{word-spacing:13.012416px;}
.wsd8{word-spacing:13.018320px;}
.wsfb{word-spacing:13.106880px;}
.ws17e{word-spacing:13.384368px;}
.ws50{word-spacing:13.496544px;}
.ws1e3{word-spacing:13.629024px;}
.ws1b2{word-spacing:13.667760px;}
.ws10a{word-spacing:13.691376px;}
.wsce{word-spacing:13.709088px;}
.ws8d{word-spacing:13.714992px;}
.wsd6{word-spacing:13.744512px;}
.ws87{word-spacing:13.856688px;}
.ws18c{word-spacing:13.892112px;}
.ws80{word-spacing:14.151888px;}
.ws89{word-spacing:14.163696px;}
.ws1b5{word-spacing:14.172480px;}
.ws13f{word-spacing:14.234544px;}
.ws72{word-spacing:14.452992px;}
.ws49{word-spacing:14.458896px;}
.ws199{word-spacing:14.653728px;}
.ws142{word-spacing:14.830848px;}
.ws155{word-spacing:14.860368px;}
.wse6{word-spacing:14.895792px;}
.wsc8{word-spacing:14.948928px;}
.ws17c{word-spacing:14.954832px;}
.ws130{word-spacing:15.078816px;}
.ws14b{word-spacing:15.120144px;}
.ws1bf{word-spacing:15.158160px;}
.ws167{word-spacing:15.208704px;}
.wsd5{word-spacing:15.255936px;}
.ws121{word-spacing:15.362208px;}
.wsf3{word-spacing:15.421248px;}
.ws8f{word-spacing:15.456672px;}
.ws165{word-spacing:15.527520px;}
.wsde{word-spacing:15.533424px;}
.ws114{word-spacing:15.551136px;}
.ws1a6{word-spacing:15.633792px;}
.ws18a{word-spacing:15.663312px;}
.ws18e{word-spacing:15.722352px;}
.ws1bc{word-spacing:15.765552px;}
.ws19f{word-spacing:15.769584px;}
.ws1d7{word-spacing:15.893424px;}
.ws5b{word-spacing:16.070688px;}
.ws181{word-spacing:16.159248px;}
.ws13b{word-spacing:16.200576px;}
.ws30{word-spacing:16.336368px;}
.ws32{word-spacing:16.348176px;}
.ws31{word-spacing:16.454448px;}
.ws102{word-spacing:16.478064px;}
.ws3e{word-spacing:16.507584px;}
.ws3b{word-spacing:16.596144px;}
.ws3d{word-spacing:16.631568px;}
.ws3c{word-spacing:16.755552px;}
.ws143{word-spacing:16.802784px;}
.ws22{word-spacing:16.891344px;}
.ws23{word-spacing:16.950384px;}
.wsaf{word-spacing:17.292816px;}
.ws1d{word-spacing:17.393184px;}
.ws16c{word-spacing:17.446320px;}
.ws4c{word-spacing:17.475840px;}
.wsad{word-spacing:17.493552px;}
.ws17f{word-spacing:17.706096px;}
.ws5a{word-spacing:17.723808px;}
.ws1b1{word-spacing:17.812368px;}
.wsd2{word-spacing:17.883216px;}
.ws123{word-spacing:18.007200px;}
.ws108{word-spacing:18.013104px;}
.ws8c{word-spacing:18.042624px;}
.ws1ac{word-spacing:18.119376px;}
.ws19e{word-spacing:18.160704px;}
.ws8a{word-spacing:18.184320px;}
.ws137{word-spacing:18.255168px;}
.ws9f{word-spacing:18.420480px;}
.ws1e2{word-spacing:18.434880px;}
.ws1d9{word-spacing:18.488160px;}
.wsdb{word-spacing:18.491328px;}
.ws1a5{word-spacing:18.503136px;}
.ws168{word-spacing:18.603504px;}
.wsff{word-spacing:18.609408px;}
.ws158{word-spacing:18.721584px;}
.ws192{word-spacing:18.757008px;}
.ws73{word-spacing:18.833760px;}
.ws1a1{word-spacing:18.863280px;}
.wscf{word-spacing:18.987264px;}
.ws10e{word-spacing:19.010880px;}
.wsb5{word-spacing:19.146672px;}
.ws10d{word-spacing:19.252944px;}
.ws1aa{word-spacing:19.595376px;}
.ws88{word-spacing:19.607184px;}
.ws42{word-spacing:19.666224px;}
.ws119{word-spacing:19.672128px;}
.ws15b{word-spacing:19.689840px;}
.ws1dc{word-spacing:19.713600px;}
.ws1b6{word-spacing:20.225088px;}
.wsa6{word-spacing:20.303856px;}
.ws4f{word-spacing:20.362896px;}
.ws98{word-spacing:20.374704px;}
.ws132{word-spacing:20.841120px;}
.ws124{word-spacing:21.077280px;}
.wscc{word-spacing:21.325248px;}
.ws2e{word-spacing:21.431520px;}
.ws125{word-spacing:21.443328px;}
.wscd{word-spacing:21.490560px;}
.wsf1{word-spacing:21.803472px;}
.ws133{word-spacing:21.862512px;}
.ws1b3{word-spacing:22.051440px;}
.ws1a{word-spacing:22.311216px;}
.ws156{word-spacing:22.358448px;}
.ws90{word-spacing:22.476528px;}
.ws19a{word-spacing:22.759920px;}
.ws131{word-spacing:22.889808px;}
.ws189{word-spacing:22.895712px;}
.ws47{word-spacing:22.931136px;}
.ws17b{word-spacing:23.013792px;}
.ws92{word-spacing:23.084640px;}
.ws1d3{word-spacing:23.800176px;}
.ws5c{word-spacing:23.828544px;}
.ws26{word-spacing:24.241824px;}
.wsdf{word-spacing:24.283152px;}
.ws27{word-spacing:24.318576px;}
.wscb{word-spacing:24.525216px;}
.ws19d{word-spacing:24.643296px;}
.ws37{word-spacing:24.773184px;}
.ws18d{word-spacing:24.838128px;}
.wsa7{word-spacing:25.121520px;}
.ws9d{word-spacing:25.186464px;}
.wsbd{word-spacing:25.280928px;}
.ws1b{word-spacing:25.298640px;}
.ws1dd{word-spacing:25.329312px;}
.ws196{word-spacing:25.564320px;}
.ws5f{word-spacing:26.042544px;}
.ws60{word-spacing:26.083872px;}
.ws12d{word-spacing:26.148816px;}
.ws12c{word-spacing:26.290512px;}
.wsac{word-spacing:26.361360px;}
.ws10b{word-spacing:26.367264px;}
.ws81{word-spacing:27.016704px;}
.wsa8{word-spacing:27.317808px;}
.wsda{word-spacing:27.618912px;}
.ws2d{word-spacing:27.666144px;}
.ws105{word-spacing:27.689760px;}
.wsc2{word-spacing:27.801936px;}
.ws13c{word-spacing:27.984960px;}
.ws154{word-spacing:28.516320px;}
.ws1c0{word-spacing:28.808496px;}
.ws1ae{word-spacing:28.864656px;}
.wsc6{word-spacing:29.100816px;}
.ws177{word-spacing:29.207088px;}
.ws182{word-spacing:29.289744px;}
.ws144{word-spacing:29.584944px;}
.wsa0{word-spacing:29.720736px;}
.ws24{word-spacing:30.033648px;}
.ws190{word-spacing:30.216672px;}
.ws4b{word-spacing:30.411504px;}
.wse2{word-spacing:30.511872px;}
.wsa9{word-spacing:31.049136px;}
.ws15c{word-spacing:31.362048px;}
.wsa1{word-spacing:31.385664px;}
.wsb7{word-spacing:31.415184px;}
.wsb0{word-spacing:31.917024px;}
.ws19c{word-spacing:31.993776px;}
.ws17d{word-spacing:32.271264px;}
.wsf4{word-spacing:32.277168px;}
.ws1b8{word-spacing:32.282352px;}
.ws172{word-spacing:32.377536px;}
.ws6e{word-spacing:32.838048px;}
.ws18f{word-spacing:32.897088px;}
.ws183{word-spacing:32.932512px;}
.ws13a{word-spacing:33.015168px;}
.wsbc{word-spacing:33.499296px;}
.ws1d1{word-spacing:33.534432px;}
.ws1de{word-spacing:33.891408px;}
.ws6f{word-spacing:34.095600px;}
.ws94{word-spacing:34.467552px;}
.ws5e{word-spacing:34.674192px;}
.wsa5{word-spacing:34.975296px;}
.ws115{word-spacing:34.993008px;}
.ws4d{word-spacing:35.677872px;}
.ws71{word-spacing:35.713296px;}
.ws186{word-spacing:35.790048px;}
.ws185{word-spacing:35.825472px;}
.ws11e{word-spacing:35.872704px;}
.ws187{word-spacing:35.914032px;}
.ws1db{word-spacing:36.091872px;}
.ws1af{word-spacing:36.167904px;}
.wsed{word-spacing:36.274176px;}
.ws1b7{word-spacing:36.566064px;}
.ws160{word-spacing:36.616608px;}
.ws141{word-spacing:36.781920px;}
.ws140{word-spacing:36.923616px;}
.ws46{word-spacing:36.947232px;}
.ws184{word-spacing:37.147968px;}
.ws14d{word-spacing:37.283760px;}
.ws8b{word-spacing:37.401840px;}
.ws76{word-spacing:38.240208px;}
.ws1e4{word-spacing:38.308320px;}
.ws16d{word-spacing:38.423232px;}
.wsf8{word-spacing:38.759760px;}
.ws12f{word-spacing:38.919168px;}
.wsab{word-spacing:39.356064px;}
.ws1c1{word-spacing:39.608352px;}
.ws14a{word-spacing:40.229856px;}
.ws145{word-spacing:40.265280px;}
.ws25{word-spacing:40.271184px;}
.ws79{word-spacing:40.288896px;}
.ws1ca{word-spacing:41.041584px;}
.ws1d8{word-spacing:41.430528px;}
.ws1da{word-spacing:41.537088px;}
.ws138{word-spacing:41.581872px;}
.ws136{word-spacing:41.782608px;}
.ws134{word-spacing:42.107328px;}
.ws111{word-spacing:42.154560px;}
.ws16e{word-spacing:42.184080px;}
.wsc3{word-spacing:42.219504px;}
.ws1a9{word-spacing:42.798096px;}
.ws152{word-spacing:42.839424px;}
.ws101{word-spacing:43.057872px;}
.ws7e{word-spacing:43.536096px;}
.ws180{word-spacing:43.748640px;}
.wsf7{word-spacing:43.955280px;}
.ws150{word-spacing:44.226864px;}
.wsaa{word-spacing:44.285904px;}
.ws135{word-spacing:44.533872px;}
.ws10c{word-spacing:45.071136px;}
.ws1cb{word-spacing:45.080208px;}
.ws6b{word-spacing:45.667440px;}
.ws146{word-spacing:45.679248px;}
.ws195{word-spacing:46.122048px;}
.ws14f{word-spacing:46.895472px;}
.wsfe{word-spacing:47.733840px;}
.ws41{word-spacing:47.958192px;}
.ws91{word-spacing:48.064464px;}
.ws70{word-spacing:48.111696px;}
.ws83{word-spacing:48.643056px;}
.ws10f{word-spacing:49.079952px;}
.ws6d{word-spacing:50.862960px;}
.ws1c7{word-spacing:51.878736px;}
.ws1e{word-spacing:52.740432px;}
.ws171{word-spacing:52.964784px;}
.ws118{word-spacing:53.720496px;}
.ws117{word-spacing:53.732304px;}
.ws1a8{word-spacing:56.418624px;}
.wsa3{word-spacing:56.849616px;}
.wsc1{word-spacing:58.585392px;}
.ws13d{word-spacing:58.827456px;}
.wsd9{word-spacing:61.289424px;}
.ws106{word-spacing:62.511552px;}
.wsa2{word-spacing:68.941008px;}
.ws191{word-spacing:74.538000px;}
.wsf9{word-spacing:79.810272px;}
.ws11d{word-spacing:81.923904px;}
.ws61{word-spacing:83.447136px;}
.ws188{word-spacing:86.027184px;}
.ws1f{word-spacing:87.143040px;}
.wsdd{word-spacing:87.875136px;}
.wsec{word-spacing:88.329744px;}
.wsf6{word-spacing:88.630848px;}
.ws197{word-spacing:88.683984px;}
.ws129{word-spacing:88.719408px;}
.ws95{word-spacing:92.002032px;}
.ws82{word-spacing:101.601936px;}
.ws11f{word-spacing:102.900816px;}
.ws62{word-spacing:105.900048px;}
.wsd1{word-spacing:132.680592px;}
.ws1bb{word-spacing:919.522224px;}
._12{margin-left:-63.489312px;}
._19{margin-left:-53.833248px;}
._d{margin-left:-48.294720px;}
._f{margin-left:-44.150688px;}
._e{margin-left:-40.714560px;}
._c{margin-left:-39.095136px;}
._6{margin-left:-22.003200px;}
._4{margin-left:-20.016000px;}
._a{margin-left:-17.978400px;}
._13{margin-left:-15.285456px;}
._9{margin-left:-11.008800px;}
._2{margin-left:-9.307200px;}
._8{margin-left:-7.977600px;}
._0{margin-left:-6.239016px;}
._5{margin-left:-3.974400px;}
._b{margin-left:-2.538144px;}
._3{margin-left:-1.512000px;}
._7{width:1.987200px;}
._14{width:3.727872px;}
._11{width:8.106192px;}
._16{width:9.609408px;}
._1{width:12.835200px;}
._10{width:15.610176px;}
._15{width:36.102960px;}
._18{width:77.490432px;}
._17{width:154.895616px;}
.fc3{color:rgb(64,108,108);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc0{color:rgb(28,28,27);}
.fsb{font-size:28.800000px;}
.fs6{font-size:36.000000px;}
.fsc{font-size:44.640000px;}
.fs9{font-size:47.520000px;}
.fs1{font-size:48.972000px;}
.fs5{font-size:53.280000px;}
.fsa{font-size:56.160000px;}
.fs4{font-size:59.040000px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:74.880000px;}
.fs8{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:42.520500px;}
.yda{bottom:115.072404px;}
.y4b{bottom:115.437846px;}
.y210{bottom:116.100786px;}
.y173{bottom:116.885148px;}
.y64{bottom:119.029056px;}
.y145{bottom:120.115752px;}
.ya2{bottom:120.152226px;}
.y1ab{bottom:120.186960px;}
.y6{bottom:127.151250px;}
.y20f{bottom:131.581290px;}
.yd9{bottom:132.351936px;}
.y4a{bottom:132.717378px;}
.y172{bottom:133.804536px;}
.y10d{bottom:135.628728px;}
.y63{bottom:135.948444px;}
.y144{bottom:137.393808px;}
.ya1{bottom:137.431758px;}
.y1aa{bottom:137.466492px;}
.y20e{bottom:147.063126px;}
.yd8{bottom:149.271324px;}
.y49{bottom:149.635290px;}
.y171{bottom:151.082592px;}
.y10c{bottom:152.906784px;}
.y62{bottom:153.226500px;}
.y143{bottom:154.673340px;}
.ya0{bottom:154.709814px;}
.y1a9{bottom:154.746024px;}
.y20d{bottom:162.543630px;}
.yd7{bottom:166.549380px;}
.y48{bottom:167.274966px;}
.y170{bottom:168.362124px;}
.y61{bottom:170.151258px;}
.y10b{bottom:170.186316px;}
.y142{bottom:171.952872px;}
.y9f{bottom:171.989346px;}
.y1a8{bottom:172.025556px;}
.y20c{bottom:178.024134px;}
.yd6{bottom:183.828912px;}
.y47{bottom:184.554498px;}
.y16f{bottom:185.641656px;}
.y10a{bottom:187.464372px;}
.y60{bottom:187.790934px;}
.y141{bottom:189.230928px;}
.y9e{bottom:189.268878px;}
.y1a7{bottom:189.305088px;}
.y20b{bottom:193.505970px;}
.yd5{bottom:200.748300px;}
.y46{bottom:201.834030px;}
.y16e{bottom:202.919712px;}
.y1d3{bottom:202.935120px;}
.y109{bottom:204.742428px;}
.y5f{bottom:205.070466px;}
.y140{bottom:206.510460px;}
.y9d{bottom:206.548410px;}
.y1a6{bottom:206.584620px;}
.y20a{bottom:208.986474px;}
.yd4{bottom:218.403210px;}
.y45{bottom:219.113562px;}
.y16d{bottom:220.199244px;}
.y1d2{bottom:220.213176px;}
.y108{bottom:222.020484px;}
.y5e{bottom:222.349998px;}
.y13f{bottom:223.789992px;}
.y9c{bottom:223.827942px;}
.y1a5{bottom:223.864152px;}
.y209{bottom:224.826618px;}
.yd3{bottom:235.681266px;}
.y44{bottom:236.393094px;}
.y16c{bottom:237.477300px;}
.y1d1{bottom:237.492708px;}
.y107{bottom:239.300016px;}
.y5d{bottom:239.628054px;}
.y208{bottom:240.307122px;}
.y13e{bottom:241.069524px;}
.y9b{bottom:241.107474px;}
.y1a4{bottom:241.143684px;}
.yd2{bottom:252.960798px;}
.y43{bottom:253.311006px;}
.y16b{bottom:254.755356px;}
.y1d0{bottom:254.772240px;}
.y207{bottom:255.788958px;}
.y106{bottom:256.579548px;}
.y5c{bottom:256.907586px;}
.y13d{bottom:258.349056px;}
.y9a{bottom:258.385530px;}
.y1a3{bottom:258.423216px;}
.yd1{bottom:270.238854px;}
.y42{bottom:270.590538px;}
.y206{bottom:271.269462px;}
.y16a{bottom:272.033412px;}
.y1cf{bottom:272.050296px;}
.y105{bottom:273.857604px;}
.y5b{bottom:274.187118px;}
.y13c{bottom:275.628588px;}
.y99{bottom:275.665062px;}
.y1a2{bottom:275.701272px;}
.y205{bottom:286.749966px;}
.yd0{bottom:287.516910px;}
.y41{bottom:287.868594px;}
.y169{bottom:289.311468px;}
.y1ce{bottom:289.329828px;}
.y104{bottom:291.137136px;}
.y5a{bottom:291.466650px;}
.y13b{bottom:292.546500px;}
.y98{bottom:292.584450px;}
.y1a1{bottom:292.620660px;}
.y204{bottom:302.231802px;}
.ycf{bottom:304.794966px;}
.y40{bottom:305.146650px;}
.y168{bottom:306.589524px;}
.y1cd{bottom:306.609360px;}
.y59{bottom:308.386500px;}
.y103{bottom:308.416668px;}
.y13a{bottom:309.466650px;}
.y97{bottom:309.862506px;}
.y1a0{bottom:309.900192px;}
.y203{bottom:318.071946px;}
.y3f{bottom:322.066500px;}
.yce{bottom:322.073022px;}
.y167{bottom:323.508912px;}
.y1cc{bottom:323.527272px;}
.y102{bottom:325.334580px;}
.y58{bottom:326.054190px;}
.y139{bottom:327.141636px;}
.y96{bottom:327.142038px;}
.y19f{bottom:327.178248px;}
.y202{bottom:333.552450px;}
.ycd{bottom:339.351078px;}
.y3e{bottom:339.715284px;}
.y166{bottom:340.788444px;}
.y1cb{bottom:340.806804px;}
.y101{bottom:342.614112px;}
.y57{bottom:343.333722px;}
.y138{bottom:344.421168px;}
.y95{bottom:344.421570px;}
.y19e{bottom:344.457780px;}
.y201{bottom:349.034286px;}
.ycc{bottom:356.630610px;}
.y3d{bottom:356.994816px;}
.y165{bottom:358.066500px;}
.y1ca{bottom:358.086336px;}
.y100{bottom:359.893644px;}
.y56{bottom:360.251634px;}
.y137{bottom:361.699224px;}
.y94{bottom:361.699626px;}
.y19d{bottom:361.737312px;}
.y200{bottom:364.514790px;}
.y10{bottom:366.475500px;}
.ycb{bottom:373.910142px;}
.y3c{bottom:374.274348px;}
.y1c9{bottom:375.364392px;}
.y164{bottom:376.066500px;}
.yff{bottom:377.171700px;}
.y55{bottom:377.531166px;}
.y93{bottom:378.977682px;}
.y136{bottom:378.978756px;}
.y19c{bottom:379.015368px;}
.y1ff{bottom:379.995294px;}
.yf{bottom:388.075500px;}
.yca{bottom:390.828054px;}
.y3b{bottom:391.192260px;}
.y1c8{bottom:392.643924px;}
.yfe{bottom:394.451232px;}
.y54{bottom:394.810698px;}
.y1fe{bottom:395.477130px;}
.y163{bottom:395.908950px;}
.y92{bottom:396.255738px;}
.y135{bottom:396.258288px;}
.y19b{bottom:396.294900px;}
.yc9{bottom:408.107586px;}
.y3a{bottom:408.471792px;}
.ye{bottom:409.675500px;}
.y1c7{bottom:409.923456px;}
.y1fd{bottom:410.957634px;}
.yfd{bottom:411.730764px;}
.y53{bottom:412.088754px;}
.y91{bottom:413.533794px;}
.y134{bottom:413.536344px;}
.y162{bottom:413.548626px;}
.y19a{bottom:413.574432px;}
.yc8{bottom:425.387118px;}
.y39{bottom:425.751324px;}
.y1fc{bottom:426.438138px;}
.y1c6{bottom:427.201512px;}
.yfc{bottom:429.008820px;}
.y52{bottom:429.368286px;}
.y90{bottom:430.453182px;}
.y133{bottom:430.455732px;}
.y161{bottom:430.828158px;}
.y199{bottom:430.853964px;}
.y1fb{bottom:441.919974px;}
.yc7{bottom:442.666650px;}
.y38{bottom:443.029380px;}
.y1c5{bottom:444.481044px;}
.yfb{bottom:446.288352px;}
.y51{bottom:446.646342px;}
.y8f{bottom:448.092858px;}
.y132{bottom:448.095408px;}
.y160{bottom:448.107690px;}
.y198{bottom:448.133496px;}
.y1fa{bottom:457.760118px;}
.yc6{bottom:459.586500px;}
.y37{bottom:460.308912px;}
.y1c4{bottom:461.760576px;}
.yfa{bottom:463.567884px;}
.y50{bottom:463.924398px;}
.y8e{bottom:465.370914px;}
.y131{bottom:465.373464px;}
.y15f{bottom:465.385746px;}
.y197{bottom:465.413028px;}
.yd{bottom:469.579500px;}
.y1f9{bottom:473.240622px;}
.yc5{bottom:477.240576px;}
.y36{bottom:477.588444px;}
.y1c3{bottom:479.038632px;}
.yf9{bottom:480.845940px;}
.y4f{bottom:481.202454px;}
.y15e{bottom:482.305134px;}
.y196{bottom:482.330940px;}
.y8d{bottom:482.650446px;}
.y130{bottom:482.652996px;}
.y1f8{bottom:488.721126px;}
.yc{bottom:491.179500px;}
.yc4{bottom:494.520108px;}
.y35{bottom:494.866500px;}
.y1c2{bottom:496.318164px;}
.yf8{bottom:498.125472px;}
.y4e{bottom:498.480510px;}
.y15d{bottom:499.583190px;}
.y8c{bottom:499.928502px;}
.y12f{bottom:499.932528px;}
.y195{bottom:499.970616px;}
.y1f7{bottom:504.202962px;}
.yc3{bottom:511.799640px;}
.yb{bottom:512.779500px;}
.y34{bottom:512.866500px;}
.y1c1{bottom:513.597696px;}
.yf7{bottom:515.405004px;}
.y4d{bottom:515.758566px;}
.y12e{bottom:516.850440px;}
.y15c{bottom:516.862722px;}
.y8b{bottom:517.206558px;}
.y194{bottom:517.250148px;}
.y1f6{bottom:519.683466px;}
.yc2{bottom:529.079172px;}
.y1c0{bottom:530.877228px;}
.yf6{bottom:532.322916px;}
.y4c{bottom:533.038098px;}
.y8a{bottom:534.125946px;}
.y12d{bottom:534.128496px;}
.y15b{bottom:534.142254px;}
.y193{bottom:534.169536px;}
.ya{bottom:534.379500px;}
.y1f5{bottom:535.163970px;}
.yc1{bottom:546.358704px;}
.y1bf{bottom:548.156760px;}
.yf5{bottom:549.602448px;}
.y33{bottom:549.967812px;}
.y1f4{bottom:550.645806px;}
.y15a{bottom:551.060166px;}
.y89{bottom:551.405478px;}
.y12c{bottom:551.406552px;}
.y192{bottom:551.447592px;}
.y9{bottom:555.979500px;}
.yc0{bottom:563.276616px;}
.y1be{bottom:565.076148px;}
.y1f3{bottom:566.126310px;}
.yf4{bottom:566.881980px;}
.y32{bottom:567.247344px;}
.y88{bottom:568.683534px;}
.y12b{bottom:568.684608px;}
.y159{bottom:568.699842px;}
.y191{bottom:568.727124px;}
.y8{bottom:577.579500px;}
.ybf{bottom:580.556148px;}
.y1f2{bottom:581.966454px;}
.y1bd{bottom:582.355680px;}
.yf3{bottom:584.160036px;}
.y31{bottom:584.526876px;}
.y87{bottom:585.963066px;}
.y12a{bottom:585.964140px;}
.y158{bottom:585.979374px;}
.y190{bottom:586.006656px;}
.y1f1{bottom:597.448290px;}
.ybe{bottom:597.835680px;}
.y7{bottom:599.179500px;}
.y1bc{bottom:599.635212px;}
.yf2{bottom:601.439568px;}
.y30{bottom:601.806408px;}
.y86{bottom:603.242598px;}
.y129{bottom:603.243672px;}
.y157{bottom:603.258906px;}
.y18f{bottom:603.284712px;}
.y1f0{bottom:612.928794px;}
.ybd{bottom:615.113736px;}
.y1bb{bottom:616.914744px;}
.yf1{bottom:618.719100px;}
.y2f{bottom:619.084464px;}
.y128{bottom:620.521728px;}
.y85{bottom:620.522130px;}
.y156{bottom:620.538438px;}
.y18e{bottom:620.564244px;}
.y1ef{bottom:628.409298px;}
.ybc{bottom:632.393268px;}
.y1ba{bottom:634.194276px;}
.yf0{bottom:635.998632px;}
.y2e{bottom:636.363996px;}
.y127{bottom:637.801260px;}
.y84{bottom:637.801662px;}
.y155{bottom:637.817970px;}
.y18d{bottom:637.842300px;}
.y1ee{bottom:643.891134px;}
.ybb{bottom:649.671324px;}
.y1b9{bottom:651.472332px;}
.yef{bottom:653.278164px;}
.y2d{bottom:653.642052px;}
.y126{bottom:655.080792px;}
.y83{bottom:655.081194px;}
.y154{bottom:655.097502px;}
.y18c{bottom:655.120356px;}
.y1ed{bottom:659.371638px;}
.yba{bottom:666.949380px;}
.y1b8{bottom:668.751864px;}
.yee{bottom:670.557696px;}
.y2c{bottom:670.920108px;}
.y125{bottom:672.360324px;}
.y82{bottom:672.360726px;}
.y153{bottom:672.375558px;}
.y18b{bottom:672.398412px;}
.y1ec{bottom:674.852142px;}
.yb9{bottom:684.228912px;}
.y1b7{bottom:686.031396px;}
.yed{bottom:687.837228px;}
.y2b{bottom:688.198164px;}
.y5{bottom:689.592150px;}
.y124{bottom:689.638380px;}
.y81{bottom:689.638782px;}
.y152{bottom:689.655090px;}
.y18a{bottom:689.676468px;}
.y1eb{bottom:690.333978px;}
.yb8{bottom:701.508444px;}
.y1b6{bottom:703.310928px;}
.yec{bottom:705.116760px;}
.y2a{bottom:705.476220px;}
.y1ea{bottom:706.174122px;}
.y123{bottom:706.557768px;}
.y80{bottom:706.918314px;}
.y151{bottom:706.934622px;}
.y189{bottom:706.954524px;}
.yb7{bottom:718.786500px;}
.y4{bottom:719.592750px;}
.y1b5{bottom:720.590460px;}
.y1e9{bottom:721.654626px;}
.yeb{bottom:722.036148px;}
.y29{bottom:722.754276px;}
.y122{bottom:723.835824px;}
.y7f{bottom:723.837702px;}
.y150{bottom:723.852534px;}
.y188{bottom:723.873912px;}
.yb6{bottom:736.066650px;}
.y1e8{bottom:737.135130px;}
.y1b4{bottom:737.869992px;}
.yea{bottom:739.315680px;}
.y28{bottom:739.673664px;}
.y121{bottom:741.115356px;}
.y7e{bottom:741.117234px;}
.y14f{bottom:741.130590px;}
.y187{bottom:741.151968px;}
.y1e7{bottom:752.616966px;}
.y1b3{bottom:755.148048px;}
.yb5{bottom:755.506650px;}
.ye9{bottom:756.595212px;}
.y27{bottom:756.953196px;}
.y120{bottom:758.393412px;}
.y7d{bottom:758.396766px;}
.y14e{bottom:758.408646px;}
.y186{bottom:758.430024px;}
.y1e6{bottom:768.097470px;}
.y1b2{bottom:772.067436px;}
.ye8{bottom:773.874744px;}
.y26{bottom:774.232728px;}
.yb4{bottom:774.946500px;}
.y11f{bottom:775.671468px;}
.y7c{bottom:775.676298px;}
.y14d{bottom:775.686702px;}
.y185{bottom:775.708080px;}
.y3{bottom:781.284450px;}
.y1e5{bottom:783.577974px;}
.y1b1{bottom:789.346968px;}
.ye7{bottom:791.152800px;}
.yb3{bottom:791.506500px;}
.y25{bottom:791.512260px;}
.y11e{bottom:792.949524px;}
.y7b{bottom:792.955830px;}
.y14c{bottom:792.964758px;}
.y184{bottom:792.986136px;}
.y1e4{bottom:799.059810px;}
.y1b0{bottom:806.626500px;}
.ye6{bottom:808.432332px;}
.y24{bottom:808.791792px;}
.y11d{bottom:810.229056px;}
.y7a{bottom:810.235362px;}
.y14b{bottom:810.242814px;}
.y183{bottom:810.264192px;}
.yb2{bottom:810.284070px;}
.y2{bottom:811.285050px;}
.y1e3{bottom:814.540314px;}
.y1af{bottom:824.626500px;}
.ye5{bottom:825.710388px;}
.y23{bottom:826.069848px;}
.y11c{bottom:827.508588px;}
.y79{bottom:827.514894px;}
.y14a{bottom:827.520870px;}
.y182{bottom:827.543724px;}
.yb1{bottom:827.563602px;}
.y1e2{bottom:830.380458px;}
.y1{bottom:841.285650px;}
.ye4{bottom:842.988444px;}
.y22{bottom:843.349380px;}
.y11b{bottom:844.426500px;}
.y78{bottom:844.792950px;}
.y149{bottom:844.798926px;}
.y181{bottom:844.823256px;}
.yb0{bottom:844.843134px;}
.y1e1{bottom:845.860962px;}
.ye3{bottom:860.266500px;}
.y21{bottom:860.628912px;}
.y1e0{bottom:861.342798px;}
.y11a{bottom:861.706500px;}
.y77{bottom:862.072482px;}
.y148{bottom:862.078458px;}
.y180{bottom:862.102788px;}
.yaf{bottom:862.122666px;}
.y1df{bottom:876.823302px;}
.ye2{bottom:877.546500px;}
.y20{bottom:877.908444px;}
.y1ae{bottom:878.997846px;}
.y119{bottom:879.036792px;}
.y76{bottom:879.350538px;}
.y147{bottom:879.357990px;}
.y17f{bottom:879.380844px;}
.yae{bottom:879.400722px;}
.y1de{bottom:892.303806px;}
.y1f{bottom:895.186500px;}
.ye1{bottom:896.275902px;}
.y118{bottom:896.316324px;}
.y75{bottom:896.628594px;}
.y146{bottom:896.636046px;}
.y17e{bottom:896.660376px;}
.yad{bottom:896.680254px;}
.y1dd{bottom:907.785642px;}
.y1e{bottom:911.386650px;}
.y1ad{bottom:913.555434px;}
.y117{bottom:913.594380px;}
.y74{bottom:913.906650px;}
.ye0{bottom:913.915578px;}
.y17d{bottom:913.939908px;}
.yac{bottom:913.959786px;}
.y1dc{bottom:923.266146px;}
.y1d{bottom:926.146500px;}
.y73{bottom:930.833490px;}
.ydf{bottom:930.834966px;}
.y17c{bottom:930.857820px;}
.y116{bottom:930.873912px;}
.yab{bottom:930.877698px;}
.y1db{bottom:938.746650px;}
.y1c{bottom:943.066650px;}
.y72{bottom:948.111546px;}
.yde{bottom:948.113022px;}
.y17b{bottom:948.137352px;}
.y115{bottom:948.153444px;}
.yaa{bottom:948.157230px;}
.y1da{bottom:955.666500px;}
.y1b{bottom:958.546500px;}
.y71{bottom:965.391078px;}
.ydd{bottom:965.392554px;}
.y17a{bottom:965.415408px;}
.y114{bottom:965.432976px;}
.ya9{bottom:965.436762px;}
.y1d9{bottom:976.186500px;}
.y1ac{bottom:982.311942px;}
.y70{bottom:982.670610px;}
.ydc{bottom:982.672086px;}
.y179{bottom:982.693464px;}
.y113{bottom:982.712508px;}
.ya8{bottom:982.716294px;}
.y216{bottom:992.383008px;}
.y1a{bottom:994.185924px;}
.y1d8{bottom:996.349380px;}
.y6f{bottom:999.950142px;}
.ydb{bottom:999.951618px;}
.y178{bottom:999.971520px;}
.y112{bottom:999.992040px;}
.ya7{bottom:999.995826px;}
.y215{bottom:1007.863512px;}
.y1d7{bottom:1013.628912px;}
.y6e{bottom:1017.229674px;}
.y177{bottom:1017.249576px;}
.y111{bottom:1017.271572px;}
.ya6{bottom:1017.275358px;}
.y19{bottom:1018.306500px;}
.y214{bottom:1023.345348px;}
.y1d6{bottom:1030.908444px;}
.y110{bottom:1034.189484px;}
.y6d{bottom:1034.509206px;}
.y176{bottom:1034.527632px;}
.ya5{bottom:1034.554890px;}
.y213{bottom:1038.825852px;}
.y1d5{bottom:1048.186500px;}
.y18{bottom:1048.906500px;}
.y6c{bottom:1051.788738px;}
.y175{bottom:1051.805688px;}
.y10f{bottom:1051.829160px;}
.ya4{bottom:1051.832946px;}
.y212{bottom:1054.665996px;}
.y1d4{bottom:1065.826500px;}
.y6b{bottom:1068.706650px;}
.y174{bottom:1068.725076px;}
.y10e{bottom:1068.748548px;}
.ya3{bottom:1068.752334px;}
.y17{bottom:1069.788594px;}
.y211{bottom:1070.146500px;}
.y16{bottom:1087.066650px;}
.y6a{bottom:1092.106500px;}
.y15{bottom:1108.306770px;}
.y68{bottom:1110.451734px;}
.y67{bottom:1123.771590px;}
.y14{bottom:1128.106950px;}
.y66{bottom:1137.451410px;}
.y13{bottom:1151.507274px;}
.y65{bottom:1155.811950px;}
.y69{bottom:1166.626950px;}
.y12{bottom:1169.146950px;}
.h12{height:32.520938px;}
.h11{height:34.595859px;}
.hd{height:34.619062px;}
.h8{height:38.815312px;}
.h6{height:39.350391px;}
.hf{height:40.913438px;}
.hc{height:42.982734px;}
.h9{height:43.011562px;}
.h7{height:44.946563px;}
.h10{height:45.461250px;}
.h14{height:47.176172px;}
.h13{height:47.207813px;}
.h5{height:52.148438px;}
.he{height:52.417969px;}
.h15{height:52.453125px;}
.ha{height:54.551250px;}
.hb{height:60.804844px;}
.h4{height:62.578125px;}
.h2{height:63.624355px;}
.h3{height:73.007812px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:100.887450px;}
.x8{left:108.387450px;}
.xd{left:116.787966px;}
.x7{left:130.963236px;}
.x3{left:161.575500px;}
.x6{left:204.762000px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.xb{left:374.187000px;}
.x4{left:433.944000px;}
.x9{left:465.927786px;}
.xa{left:473.425866px;}
.xc{left:481.828848px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.640000pt;}
.v3{vertical-align:21.760000pt;}
.v1{vertical-align:24.863467pt;}
.ls31{letter-spacing:-0.808192pt;}
.ls44{letter-spacing:-0.650752pt;}
.ls34{letter-spacing:-0.629760pt;}
.ls56{letter-spacing:-0.603520pt;}
.ls35{letter-spacing:-0.514304pt;}
.ls2e{letter-spacing:-0.473088pt;}
.ls33{letter-spacing:-0.467072pt;}
.ls20{letter-spacing:-0.464128pt;}
.ls3e{letter-spacing:-0.430336pt;}
.ls55{letter-spacing:-0.414592pt;}
.ls41{letter-spacing:-0.404096pt;}
.ls47{letter-spacing:-0.393600pt;}
.ls3d{letter-spacing:-0.335872pt;}
.ls45{letter-spacing:-0.330624pt;}
.ls30{letter-spacing:-0.257664pt;}
.ls2f{letter-spacing:-0.177408pt;}
.ls32{letter-spacing:-0.006400pt;}
.ls1f{letter-spacing:-0.003200pt;}
.ls1{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls25{letter-spacing:0.204672pt;}
.ls21{letter-spacing:0.207872pt;}
.ls4{letter-spacing:0.222720pt;}
.ls48{letter-spacing:0.241408pt;}
.ls23{letter-spacing:0.246656pt;}
.ls4f{letter-spacing:0.255744pt;}
.ls4b{letter-spacing:0.260480pt;}
.ls5{letter-spacing:0.265216pt;}
.ls40{letter-spacing:0.267648pt;}
.ls52{letter-spacing:0.269952pt;}
.ls58{letter-spacing:0.274688pt;}
.ls50{letter-spacing:0.279424pt;}
.ls3a{letter-spacing:0.283392pt;}
.ls4a{letter-spacing:0.284160pt;}
.ls1c{letter-spacing:0.288640pt;}
.ls59{letter-spacing:0.288896pt;}
.ls51{letter-spacing:0.293632pt;}
.ls3c{letter-spacing:0.293888pt;}
.ls2c{letter-spacing:0.298368pt;}
.ls24{letter-spacing:0.299136pt;}
.ls54{letter-spacing:0.303104pt;}
.ls49{letter-spacing:0.307840pt;}
.ls18{letter-spacing:0.309632pt;}
.ls3{letter-spacing:0.312576pt;}
.ls37{letter-spacing:0.314880pt;}
.ls4e{letter-spacing:0.317312pt;}
.ls1e{letter-spacing:0.320128pt;}
.ls57{letter-spacing:0.322048pt;}
.ls39{letter-spacing:0.325376pt;}
.ls4d{letter-spacing:0.326784pt;}
.ls8{letter-spacing:0.330624pt;}
.ls53{letter-spacing:0.331520pt;}
.ls1b{letter-spacing:0.335872pt;}
.ls4c{letter-spacing:0.336256pt;}
.ls5a{letter-spacing:0.340992pt;}
.ls16{letter-spacing:0.341120pt;}
.ls3b{letter-spacing:0.346368pt;}
.ls1d{letter-spacing:0.351616pt;}
.ls2a{letter-spacing:0.356864pt;}
.lsc{letter-spacing:0.362112pt;}
.ls2{letter-spacing:0.366507pt;}
.lsb{letter-spacing:0.367360pt;}
.ls7{letter-spacing:0.372608pt;}
.ls12{letter-spacing:0.377856pt;}
.ls13{letter-spacing:0.383104pt;}
.lsa{letter-spacing:0.388352pt;}
.lse{letter-spacing:0.393600pt;}
.ls15{letter-spacing:0.398848pt;}
.lsf{letter-spacing:0.404096pt;}
.ls11{letter-spacing:0.409344pt;}
.ls17{letter-spacing:0.414592pt;}
.ls19{letter-spacing:0.419840pt;}
.ls14{letter-spacing:0.425088pt;}
.lsd{letter-spacing:0.430336pt;}
.ls2d{letter-spacing:0.435200pt;}
.ls10{letter-spacing:0.435584pt;}
.ls29{letter-spacing:0.440832pt;}
.ls36{letter-spacing:0.446080pt;}
.ls43{letter-spacing:0.451328pt;}
.ls9{letter-spacing:0.456576pt;}
.ls2b{letter-spacing:0.461824pt;}
.ls42{letter-spacing:0.467072pt;}
.ls1a{letter-spacing:0.477568pt;}
.ls6{letter-spacing:0.524800pt;}
.ls38{letter-spacing:0.581760pt;}
.ls28{letter-spacing:0.616320pt;}
.ls27{letter-spacing:0.680064pt;}
.ls46{letter-spacing:0.734720pt;}
.ls3f{letter-spacing:0.787200pt;}
.ls26{letter-spacing:0.834560pt;}
.ws3{word-spacing:-15.114240pt;}
.ws4{word-spacing:-15.046016pt;}
.ws56{word-spacing:-15.025024pt;}
.ws127{word-spacing:-14.941056pt;}
.ws2{word-spacing:-11.409067pt;}
.ws55{word-spacing:-7.552000pt;}
.ws9c{word-spacing:-1.376640pt;}
.wsfc{word-spacing:-0.556288pt;}
.ws7c{word-spacing:-0.383104pt;}
.wsc9{word-spacing:-0.335872pt;}
.wsca{word-spacing:-0.299520pt;}
.ws176{word-spacing:-0.293888pt;}
.wsb8{word-spacing:-0.194176pt;}
.wsba{word-spacing:-0.183680pt;}
.ws9b{word-spacing:-0.178432pt;}
.ws9{word-spacing:-0.173184pt;}
.ws1b4{word-spacing:-0.162688pt;}
.ws6a{word-spacing:-0.152192pt;}
.ws11a{word-spacing:-0.141696pt;}
.ws51{word-spacing:-0.136448pt;}
.ws126{word-spacing:-0.131200pt;}
.ws1c{word-spacing:-0.125952pt;}
.ws1be{word-spacing:-0.123136pt;}
.wsd7{word-spacing:-0.120704pt;}
.ws1e5{word-spacing:-0.118400pt;}
.ws1c8{word-spacing:-0.113664pt;}
.ws6{word-spacing:-0.108928pt;}
.ws1d4{word-spacing:-0.104192pt;}
.ws8e{word-spacing:-0.099712pt;}
.wsa{word-spacing:-0.099456pt;}
.ws8{word-spacing:-0.096512pt;}
.ws1c9{word-spacing:-0.094720pt;}
.ws38{word-spacing:-0.094464pt;}
.wsb9{word-spacing:-0.089984pt;}
.ws86{word-spacing:-0.089216pt;}
.ws1cc{word-spacing:-0.085248pt;}
.ws54{word-spacing:-0.083968pt;}
.ws7{word-spacing:-0.081664pt;}
.ws1a7{word-spacing:-0.078720pt;}
.ws1c4{word-spacing:-0.075776pt;}
.wsd0{word-spacing:-0.068224pt;}
.ws0{word-spacing:-0.064000pt;}
.ws1c3{word-spacing:-0.061568pt;}
.ws39{word-spacing:-0.047232pt;}
.ws11b{word-spacing:-0.041984pt;}
.ws58{word-spacing:-0.029568pt;}
.ws1{word-spacing:0.000000pt;}
.ws59{word-spacing:0.033792pt;}
.wsb2{word-spacing:0.167936pt;}
.ws57{word-spacing:0.270336pt;}
.ws17a{word-spacing:0.451328pt;}
.wseb{word-spacing:0.456576pt;}
.wsea{word-spacing:0.477568pt;}
.ws109{word-spacing:0.556288pt;}
.ws45{word-spacing:0.566784pt;}
.ws1d6{word-spacing:0.596736pt;}
.ws5{word-spacing:0.615680pt;}
.ws77{word-spacing:0.619264pt;}
.ws43{word-spacing:0.635008pt;}
.ws15f{word-spacing:0.640256pt;}
.ws44{word-spacing:0.718976pt;}
.ws163{word-spacing:0.724224pt;}
.ws48{word-spacing:0.734720pt;}
.ws1a2{word-spacing:0.760960pt;}
.wsd3{word-spacing:0.766208pt;}
.ws198{word-spacing:0.776704pt;}
.ws21{word-spacing:0.802944pt;}
.ws20{word-spacing:0.844928pt;}
.ws1df{word-spacing:0.932992pt;}
.ws28{word-spacing:0.965632pt;}
.wsf2{word-spacing:0.970880pt;}
.ws2a{word-spacing:1.012864pt;}
.ws29{word-spacing:1.054848pt;}
.ws2b{word-spacing:1.086336pt;}
.ws112{word-spacing:1.180800pt;}
.ws6c{word-spacing:1.186048pt;}
.wsae{word-spacing:1.233280pt;}
.wsd4{word-spacing:1.243776pt;}
.ws162{word-spacing:1.285760pt;}
.ws64{word-spacing:1.369728pt;}
.ws19b{word-spacing:1.374976pt;}
.ws7d{word-spacing:1.380224pt;}
.ws151{word-spacing:1.390720pt;}
.ws1cd{word-spacing:1.524992pt;}
.ws148{word-spacing:1.537664pt;}
.ws1ad{word-spacing:1.553408pt;}
.wsc5{word-spacing:1.642624pt;}
.ws9e{word-spacing:1.679360pt;}
.ws1ba{word-spacing:1.681280pt;}
.wsd{word-spacing:1.684608pt;}
.ws122{word-spacing:1.747584pt;}
.ws1a4{word-spacing:1.789568pt;}
.ws149{word-spacing:1.805312pt;}
.ws15e{word-spacing:1.884032pt;}
.ws17{word-spacing:1.889280pt;}
.ws93{word-spacing:1.926016pt;}
.ws1d2{word-spacing:1.932288pt;}
.ws120{word-spacing:1.947008pt;}
.ws1cf{word-spacing:2.183296pt;}
.ws1b9{word-spacing:2.358528pt;}
.ws52{word-spacing:2.461312pt;}
.ws7f{word-spacing:2.566272pt;}
.ws85{word-spacing:2.587264pt;}
.ws1c2{word-spacing:2.637952pt;}
.ws178{word-spacing:2.671232pt;}
.wsf{word-spacing:2.713216pt;}
.ws14c{word-spacing:2.823424pt;}
.ws7a{word-spacing:3.022848pt;}
.ws84{word-spacing:3.122560pt;}
.ws11{word-spacing:3.148800pt;}
.ws100{word-spacing:3.164544pt;}
.ws169{word-spacing:3.175040pt;}
.ws2c{word-spacing:3.185536pt;}
.ws4e{word-spacing:3.227520pt;}
.ws14{word-spacing:3.285248pt;}
.ws53{word-spacing:3.332480pt;}
.wse1{word-spacing:3.463680pt;}
.ws1a3{word-spacing:3.579136pt;}
.ws1c5{word-spacing:3.651456pt;}
.ws9a{word-spacing:3.778560pt;}
.ws99{word-spacing:3.783808pt;}
.wsfd{word-spacing:3.825792pt;}
.ws16b{word-spacing:3.841536pt;}
.ws166{word-spacing:3.904512pt;}
.ws173{word-spacing:3.941248pt;}
.ws5d{word-spacing:3.998976pt;}
.ws104{word-spacing:4.004224pt;}
.ws170{word-spacing:4.135424pt;}
.ws3a{word-spacing:4.224640pt;}
.ws16{word-spacing:4.392576pt;}
.wse5{word-spacing:4.550016pt;}
.ws18{word-spacing:4.628736pt;}
.ws12{word-spacing:4.822912pt;}
.ws36{word-spacing:4.828160pt;}
.ws75{word-spacing:4.833408pt;}
.ws153{word-spacing:4.975104pt;}
.ws66{word-spacing:5.011840pt;}
.wse3{word-spacing:5.043328pt;}
.wsb{word-spacing:5.048576pt;}
.ws19{word-spacing:5.101056pt;}
.ws107{word-spacing:5.111552pt;}
.wsee{word-spacing:5.116800pt;}
.wse8{word-spacing:5.174528pt;}
.ws97{word-spacing:5.190272pt;}
.wse7{word-spacing:5.227008pt;}
.ws4a{word-spacing:5.279488pt;}
.ws161{word-spacing:5.295232pt;}
.ws1d5{word-spacing:5.389568pt;}
.wsc7{word-spacing:5.547136pt;}
.ws194{word-spacing:5.552384pt;}
.wsef{word-spacing:5.625856pt;}
.ws193{word-spacing:5.673088pt;}
.ws175{word-spacing:5.683584pt;}
.ws10{word-spacing:6.008960pt;}
.wsb6{word-spacing:6.071936pt;}
.wsc0{word-spacing:6.082432pt;}
.ws1e0{word-spacing:6.090496pt;}
.ws128{word-spacing:6.140160pt;}
.ws113{word-spacing:6.145408pt;}
.ws15{word-spacing:6.323840pt;}
.ws12a{word-spacing:6.481280pt;}
.wsa4{word-spacing:6.486528pt;}
.ws116{word-spacing:6.544256pt;}
.wse4{word-spacing:6.565248pt;}
.ws1a0{word-spacing:6.654464pt;}
.ws1d0{word-spacing:6.715648pt;}
.ws147{word-spacing:6.796160pt;}
.ws7b{word-spacing:6.806656pt;}
.ws103{word-spacing:6.848640pt;}
.ws1ce{word-spacing:6.905088pt;}
.ws65{word-spacing:7.027072pt;}
.ws68{word-spacing:7.053312pt;}
.ws74{word-spacing:7.111040pt;}
.ws1e1{word-spacing:7.137152pt;}
.ws96{word-spacing:7.210752pt;}
.ws69{word-spacing:7.231744pt;}
.ws11c{word-spacing:7.242240pt;}
.ws18b{word-spacing:7.289472pt;}
.ws14e{word-spacing:7.320960pt;}
.ws12b{word-spacing:7.362944pt;}
.ws13e{word-spacing:7.483648pt;}
.ws1bd{word-spacing:7.497088pt;}
.ws164{word-spacing:7.504640pt;}
.wsb4{word-spacing:7.583360pt;}
.wsbe{word-spacing:7.635840pt;}
.ws15a{word-spacing:7.719808pt;}
.ws16a{word-spacing:7.782784pt;}
.wsf0{word-spacing:7.908736pt;}
.ws159{word-spacing:8.045184pt;}
.ws12e{word-spacing:8.050432pt;}
.wse{word-spacing:8.197376pt;}
.wsdc{word-spacing:8.339072pt;}
.wse9{word-spacing:8.412544pt;}
.ws139{word-spacing:8.459776pt;}
.wsf5{word-spacing:8.706432pt;}
.ws78{word-spacing:8.984576pt;}
.ws3f{word-spacing:9.063296pt;}
.wsbb{word-spacing:9.136768pt;}
.ws179{word-spacing:9.225984pt;}
.ws67{word-spacing:9.435904pt;}
.ws1b0{word-spacing:9.451648pt;}
.wsb3{word-spacing:9.656320pt;}
.wsc4{word-spacing:9.719296pt;}
.ws63{word-spacing:9.824256pt;}
.wsc{word-spacing:10.044672pt;}
.ws15d{word-spacing:10.406784pt;}
.ws174{word-spacing:10.516992pt;}
.ws110{word-spacing:10.543232pt;}
.ws16f{word-spacing:10.637696pt;}
.ws157{word-spacing:10.674432pt;}
.wse0{word-spacing:10.947328pt;}
.wsbf{word-spacing:11.010304pt;}
.wsb1{word-spacing:11.068032pt;}
.ws13{word-spacing:11.172992pt;}
.ws33{word-spacing:11.204480pt;}
.ws35{word-spacing:11.288448pt;}
.ws34{word-spacing:11.372416pt;}
.ws1ab{word-spacing:11.445888pt;}
.ws1c6{word-spacing:11.508480pt;}
.ws40{word-spacing:11.524608pt;}
.ws2f{word-spacing:11.535104pt;}
.wsfa{word-spacing:11.566592pt;}
.wsd8{word-spacing:11.571840pt;}
.wsfb{word-spacing:11.650560pt;}
.ws17e{word-spacing:11.897216pt;}
.ws50{word-spacing:11.996928pt;}
.ws1e3{word-spacing:12.114688pt;}
.ws1b2{word-spacing:12.149120pt;}
.ws10a{word-spacing:12.170112pt;}
.wsce{word-spacing:12.185856pt;}
.ws8d{word-spacing:12.191104pt;}
.wsd6{word-spacing:12.217344pt;}
.ws87{word-spacing:12.317056pt;}
.ws18c{word-spacing:12.348544pt;}
.ws80{word-spacing:12.579456pt;}
.ws89{word-spacing:12.589952pt;}
.ws1b5{word-spacing:12.597760pt;}
.ws13f{word-spacing:12.652928pt;}
.ws72{word-spacing:12.847104pt;}
.ws49{word-spacing:12.852352pt;}
.ws199{word-spacing:13.025536pt;}
.ws142{word-spacing:13.182976pt;}
.ws155{word-spacing:13.209216pt;}
.wse6{word-spacing:13.240704pt;}
.wsc8{word-spacing:13.287936pt;}
.ws17c{word-spacing:13.293184pt;}
.ws130{word-spacing:13.403392pt;}
.ws14b{word-spacing:13.440128pt;}
.ws1bf{word-spacing:13.473920pt;}
.ws167{word-spacing:13.518848pt;}
.wsd5{word-spacing:13.560832pt;}
.ws121{word-spacing:13.655296pt;}
.wsf3{word-spacing:13.707776pt;}
.ws8f{word-spacing:13.739264pt;}
.ws165{word-spacing:13.802240pt;}
.wsde{word-spacing:13.807488pt;}
.ws114{word-spacing:13.823232pt;}
.ws1a6{word-spacing:13.896704pt;}
.ws18a{word-spacing:13.922944pt;}
.ws18e{word-spacing:13.975424pt;}
.ws1bc{word-spacing:14.013824pt;}
.ws19f{word-spacing:14.017408pt;}
.ws1d7{word-spacing:14.127488pt;}
.ws5b{word-spacing:14.285056pt;}
.ws181{word-spacing:14.363776pt;}
.ws13b{word-spacing:14.400512pt;}
.ws30{word-spacing:14.521216pt;}
.ws32{word-spacing:14.531712pt;}
.ws31{word-spacing:14.626176pt;}
.ws102{word-spacing:14.647168pt;}
.ws3e{word-spacing:14.673408pt;}
.ws3b{word-spacing:14.752128pt;}
.ws3d{word-spacing:14.783616pt;}
.ws3c{word-spacing:14.893824pt;}
.ws143{word-spacing:14.935808pt;}
.ws22{word-spacing:15.014528pt;}
.ws23{word-spacing:15.067008pt;}
.wsaf{word-spacing:15.371392pt;}
.ws1d{word-spacing:15.460608pt;}
.ws16c{word-spacing:15.507840pt;}
.ws4c{word-spacing:15.534080pt;}
.wsad{word-spacing:15.549824pt;}
.ws17f{word-spacing:15.738752pt;}
.ws5a{word-spacing:15.754496pt;}
.ws1b1{word-spacing:15.833216pt;}
.wsd2{word-spacing:15.896192pt;}
.ws123{word-spacing:16.006400pt;}
.ws108{word-spacing:16.011648pt;}
.ws8c{word-spacing:16.037888pt;}
.ws1ac{word-spacing:16.106112pt;}
.ws19e{word-spacing:16.142848pt;}
.ws8a{word-spacing:16.163840pt;}
.ws137{word-spacing:16.226816pt;}
.ws9f{word-spacing:16.373760pt;}
.ws1e2{word-spacing:16.386560pt;}
.ws1d9{word-spacing:16.433920pt;}
.wsdb{word-spacing:16.436736pt;}
.ws1a5{word-spacing:16.447232pt;}
.ws168{word-spacing:16.536448pt;}
.wsff{word-spacing:16.541696pt;}
.ws158{word-spacing:16.641408pt;}
.ws192{word-spacing:16.672896pt;}
.ws73{word-spacing:16.741120pt;}
.ws1a1{word-spacing:16.767360pt;}
.wscf{word-spacing:16.877568pt;}
.ws10e{word-spacing:16.898560pt;}
.wsb5{word-spacing:17.019264pt;}
.ws10d{word-spacing:17.113728pt;}
.ws1aa{word-spacing:17.418112pt;}
.ws88{word-spacing:17.428608pt;}
.ws42{word-spacing:17.481088pt;}
.ws119{word-spacing:17.486336pt;}
.ws15b{word-spacing:17.502080pt;}
.ws1dc{word-spacing:17.523200pt;}
.ws1b6{word-spacing:17.977856pt;}
.wsa6{word-spacing:18.047872pt;}
.ws4f{word-spacing:18.100352pt;}
.ws98{word-spacing:18.110848pt;}
.ws132{word-spacing:18.525440pt;}
.ws124{word-spacing:18.735360pt;}
.wscc{word-spacing:18.955776pt;}
.ws2e{word-spacing:19.050240pt;}
.ws125{word-spacing:19.060736pt;}
.wscd{word-spacing:19.102720pt;}
.wsf1{word-spacing:19.380864pt;}
.ws133{word-spacing:19.433344pt;}
.ws1b3{word-spacing:19.601280pt;}
.ws1a{word-spacing:19.832192pt;}
.ws156{word-spacing:19.874176pt;}
.ws90{word-spacing:19.979136pt;}
.ws19a{word-spacing:20.231040pt;}
.ws131{word-spacing:20.346496pt;}
.ws189{word-spacing:20.351744pt;}
.ws47{word-spacing:20.383232pt;}
.ws17b{word-spacing:20.456704pt;}
.ws92{word-spacing:20.519680pt;}
.ws1d3{word-spacing:21.155712pt;}
.ws5c{word-spacing:21.180928pt;}
.ws26{word-spacing:21.548288pt;}
.wsdf{word-spacing:21.585024pt;}
.ws27{word-spacing:21.616512pt;}
.wscb{word-spacing:21.800192pt;}
.ws19d{word-spacing:21.905152pt;}
.ws37{word-spacing:22.020608pt;}
.ws18d{word-spacing:22.078336pt;}
.wsa7{word-spacing:22.330240pt;}
.ws9d{word-spacing:22.387968pt;}
.wsbd{word-spacing:22.471936pt;}
.ws1b{word-spacing:22.487680pt;}
.ws1dd{word-spacing:22.514944pt;}
.ws196{word-spacing:22.723840pt;}
.ws5f{word-spacing:23.148928pt;}
.ws60{word-spacing:23.185664pt;}
.ws12d{word-spacing:23.243392pt;}
.ws12c{word-spacing:23.369344pt;}
.wsac{word-spacing:23.432320pt;}
.ws10b{word-spacing:23.437568pt;}
.ws81{word-spacing:24.014848pt;}
.wsa8{word-spacing:24.282496pt;}
.wsda{word-spacing:24.550144pt;}
.ws2d{word-spacing:24.592128pt;}
.ws105{word-spacing:24.613120pt;}
.wsc2{word-spacing:24.712832pt;}
.ws13c{word-spacing:24.875520pt;}
.ws154{word-spacing:25.347840pt;}
.ws1c0{word-spacing:25.607552pt;}
.ws1ae{word-spacing:25.657472pt;}
.wsc6{word-spacing:25.867392pt;}
.ws177{word-spacing:25.961856pt;}
.ws182{word-spacing:26.035328pt;}
.ws144{word-spacing:26.297728pt;}
.wsa0{word-spacing:26.418432pt;}
.ws24{word-spacing:26.696576pt;}
.ws190{word-spacing:26.859264pt;}
.ws4b{word-spacing:27.032448pt;}
.wse2{word-spacing:27.121664pt;}
.wsa9{word-spacing:27.599232pt;}
.ws15c{word-spacing:27.877376pt;}
.wsa1{word-spacing:27.898368pt;}
.wsb7{word-spacing:27.924608pt;}
.wsb0{word-spacing:28.370688pt;}
.ws19c{word-spacing:28.438912pt;}
.ws17d{word-spacing:28.685568pt;}
.wsf4{word-spacing:28.690816pt;}
.ws1b8{word-spacing:28.695424pt;}
.ws172{word-spacing:28.780032pt;}
.ws6e{word-spacing:29.189376pt;}
.ws18f{word-spacing:29.241856pt;}
.ws183{word-spacing:29.273344pt;}
.ws13a{word-spacing:29.346816pt;}
.wsbc{word-spacing:29.777152pt;}
.ws1d1{word-spacing:29.808384pt;}
.ws1de{word-spacing:30.125696pt;}
.ws6f{word-spacing:30.307200pt;}
.ws94{word-spacing:30.637824pt;}
.ws5e{word-spacing:30.821504pt;}
.wsa5{word-spacing:31.089152pt;}
.ws115{word-spacing:31.104896pt;}
.ws4d{word-spacing:31.713664pt;}
.ws71{word-spacing:31.745152pt;}
.ws186{word-spacing:31.813376pt;}
.ws185{word-spacing:31.844864pt;}
.ws11e{word-spacing:31.886848pt;}
.ws187{word-spacing:31.923584pt;}
.ws1db{word-spacing:32.081664pt;}
.ws1af{word-spacing:32.149248pt;}
.wsed{word-spacing:32.243712pt;}
.ws1b7{word-spacing:32.503168pt;}
.ws160{word-spacing:32.548096pt;}
.ws141{word-spacing:32.695040pt;}
.ws140{word-spacing:32.820992pt;}
.ws46{word-spacing:32.841984pt;}
.ws184{word-spacing:33.020416pt;}
.ws14d{word-spacing:33.141120pt;}
.ws8b{word-spacing:33.246080pt;}
.ws76{word-spacing:33.991296pt;}
.ws1e4{word-spacing:34.051840pt;}
.ws16d{word-spacing:34.153984pt;}
.wsf8{word-spacing:34.453120pt;}
.ws12f{word-spacing:34.594816pt;}
.wsab{word-spacing:34.983168pt;}
.ws1c1{word-spacing:35.207424pt;}
.ws14a{word-spacing:35.759872pt;}
.ws145{word-spacing:35.791360pt;}
.ws25{word-spacing:35.796608pt;}
.ws79{word-spacing:35.812352pt;}
.ws1ca{word-spacing:36.481408pt;}
.ws1d8{word-spacing:36.827136pt;}
.ws1da{word-spacing:36.921856pt;}
.ws138{word-spacing:36.961664pt;}
.ws136{word-spacing:37.140096pt;}
.ws134{word-spacing:37.428736pt;}
.ws111{word-spacing:37.470720pt;}
.ws16e{word-spacing:37.496960pt;}
.wsc3{word-spacing:37.528448pt;}
.ws1a9{word-spacing:38.042752pt;}
.ws152{word-spacing:38.079488pt;}
.ws101{word-spacing:38.273664pt;}
.ws7e{word-spacing:38.698752pt;}
.ws180{word-spacing:38.887680pt;}
.wsf7{word-spacing:39.071360pt;}
.ws150{word-spacing:39.312768pt;}
.wsaa{word-spacing:39.365248pt;}
.ws135{word-spacing:39.585664pt;}
.ws10c{word-spacing:40.063232pt;}
.ws1cb{word-spacing:40.071296pt;}
.ws6b{word-spacing:40.593280pt;}
.ws146{word-spacing:40.603776pt;}
.ws195{word-spacing:40.997376pt;}
.ws14f{word-spacing:41.684864pt;}
.wsfe{word-spacing:42.430080pt;}
.ws41{word-spacing:42.629504pt;}
.ws91{word-spacing:42.723968pt;}
.ws70{word-spacing:42.765952pt;}
.ws83{word-spacing:43.238272pt;}
.ws10f{word-spacing:43.626624pt;}
.ws6d{word-spacing:45.211520pt;}
.ws1c7{word-spacing:46.114432pt;}
.ws1e{word-spacing:46.880384pt;}
.ws171{word-spacing:47.079808pt;}
.ws118{word-spacing:47.751552pt;}
.ws117{word-spacing:47.762048pt;}
.ws1a8{word-spacing:50.149888pt;}
.wsa3{word-spacing:50.532992pt;}
.wsc1{word-spacing:52.075904pt;}
.ws13d{word-spacing:52.291072pt;}
.wsd9{word-spacing:54.479488pt;}
.ws106{word-spacing:55.565824pt;}
.wsa2{word-spacing:61.280896pt;}
.ws191{word-spacing:66.256000pt;}
.wsf9{word-spacing:70.942464pt;}
.ws11d{word-spacing:72.821248pt;}
.ws61{word-spacing:74.175232pt;}
.ws188{word-spacing:76.468608pt;}
.ws1f{word-spacing:77.460480pt;}
.wsdd{word-spacing:78.111232pt;}
.wsec{word-spacing:78.515328pt;}
.wsf6{word-spacing:78.782976pt;}
.ws197{word-spacing:78.830208pt;}
.ws129{word-spacing:78.861696pt;}
.ws95{word-spacing:81.779584pt;}
.ws82{word-spacing:90.312832pt;}
.ws11f{word-spacing:91.467392pt;}
.ws62{word-spacing:94.133376pt;}
.wsd1{word-spacing:117.938304pt;}
.ws1bb{word-spacing:817.353088pt;}
._12{margin-left:-56.434944pt;}
._19{margin-left:-47.851776pt;}
._d{margin-left:-42.928640pt;}
._f{margin-left:-39.245056pt;}
._e{margin-left:-36.190720pt;}
._c{margin-left:-34.751232pt;}
._6{margin-left:-19.558400pt;}
._4{margin-left:-17.792000pt;}
._a{margin-left:-15.980800pt;}
._13{margin-left:-13.587072pt;}
._9{margin-left:-9.785600pt;}
._2{margin-left:-8.273067pt;}
._8{margin-left:-7.091200pt;}
._0{margin-left:-5.545792pt;}
._5{margin-left:-3.532800pt;}
._b{margin-left:-2.256128pt;}
._3{margin-left:-1.344000pt;}
._7{width:1.766400pt;}
._14{width:3.313664pt;}
._11{width:7.205504pt;}
._16{width:8.541696pt;}
._1{width:11.409067pt;}
._10{width:13.875712pt;}
._15{width:32.091520pt;}
._18{width:68.880384pt;}
._17{width:137.684992pt;}
.fsb{font-size:25.600000pt;}
.fs6{font-size:32.000000pt;}
.fsc{font-size:39.680000pt;}
.fs9{font-size:42.240000pt;}
.fs1{font-size:43.530667pt;}
.fs5{font-size:47.360000pt;}
.fsa{font-size:49.920000pt;}
.fs4{font-size:52.480000pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:66.560000pt;}
.fs8{font-size:74.240000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:37.796000pt;}
.yda{bottom:102.286581pt;}
.y4b{bottom:102.611419pt;}
.y210{bottom:103.200699pt;}
.y173{bottom:103.897909pt;}
.y64{bottom:105.803605pt;}
.y145{bottom:106.769557pt;}
.ya2{bottom:106.801979pt;}
.y1ab{bottom:106.832853pt;}
.y6{bottom:113.023333pt;}
.y20f{bottom:116.961147pt;}
.yd9{bottom:117.646165pt;}
.y4a{bottom:117.971003pt;}
.y172{bottom:118.937365pt;}
.y10d{bottom:120.558869pt;}
.y63{bottom:120.843061pt;}
.y144{bottom:122.127829pt;}
.ya1{bottom:122.161563pt;}
.y1aa{bottom:122.192437pt;}
.y20e{bottom:130.722779pt;}
.yd8{bottom:132.685621pt;}
.y49{bottom:133.009147pt;}
.y171{bottom:134.295637pt;}
.y10c{bottom:135.917141pt;}
.y62{bottom:136.201333pt;}
.y143{bottom:137.487413pt;}
.ya0{bottom:137.519835pt;}
.y1a9{bottom:137.552021pt;}
.y20d{bottom:144.483227pt;}
.yd7{bottom:148.043893pt;}
.y48{bottom:148.688859pt;}
.y170{bottom:149.655221pt;}
.y61{bottom:151.245563pt;}
.y10b{bottom:151.276725pt;}
.y142{bottom:152.846997pt;}
.y9f{bottom:152.879419pt;}
.y1a8{bottom:152.911605pt;}
.y20c{bottom:158.243675pt;}
.yd6{bottom:163.403477pt;}
.y47{bottom:164.048443pt;}
.y16f{bottom:165.014805pt;}
.y10a{bottom:166.634997pt;}
.y60{bottom:166.925275pt;}
.y141{bottom:168.205269pt;}
.y9e{bottom:168.239003pt;}
.y1a7{bottom:168.271189pt;}
.y20b{bottom:172.005307pt;}
.yd5{bottom:178.442933pt;}
.y46{bottom:179.408027pt;}
.y16e{bottom:180.373077pt;}
.y1d3{bottom:180.386773pt;}
.y109{bottom:181.993269pt;}
.y5f{bottom:182.284859pt;}
.y140{bottom:183.564853pt;}
.y9d{bottom:183.598587pt;}
.y1a6{bottom:183.630773pt;}
.y20a{bottom:185.765755pt;}
.yd4{bottom:194.136187pt;}
.y45{bottom:194.767611pt;}
.y16d{bottom:195.732661pt;}
.y1d2{bottom:195.745045pt;}
.y108{bottom:197.351541pt;}
.y5e{bottom:197.644443pt;}
.y13f{bottom:198.924437pt;}
.y9c{bottom:198.958171pt;}
.y1a5{bottom:198.990357pt;}
.y209{bottom:199.845883pt;}
.yd3{bottom:209.494459pt;}
.y44{bottom:210.127195pt;}
.y16c{bottom:211.090933pt;}
.y1d1{bottom:211.104629pt;}
.y107{bottom:212.711125pt;}
.y5d{bottom:213.002715pt;}
.y208{bottom:213.606331pt;}
.y13e{bottom:214.284021pt;}
.y9b{bottom:214.317755pt;}
.y1a4{bottom:214.349941pt;}
.yd2{bottom:224.854043pt;}
.y43{bottom:225.165339pt;}
.y16b{bottom:226.449205pt;}
.y1d0{bottom:226.464213pt;}
.y207{bottom:227.367963pt;}
.y106{bottom:228.070709pt;}
.y5c{bottom:228.362299pt;}
.y13d{bottom:229.643605pt;}
.y9a{bottom:229.676027pt;}
.y1a3{bottom:229.709525pt;}
.yd1{bottom:240.212315pt;}
.y42{bottom:240.524923pt;}
.y206{bottom:241.128411pt;}
.y16a{bottom:241.807477pt;}
.y1cf{bottom:241.822485pt;}
.y105{bottom:243.428981pt;}
.y5b{bottom:243.721883pt;}
.y13c{bottom:245.003189pt;}
.y99{bottom:245.035611pt;}
.y1a2{bottom:245.067797pt;}
.y205{bottom:254.888859pt;}
.yd0{bottom:255.570587pt;}
.y41{bottom:255.883195pt;}
.y169{bottom:257.165749pt;}
.y1ce{bottom:257.182069pt;}
.y104{bottom:258.788565pt;}
.y5a{bottom:259.081467pt;}
.y13b{bottom:260.041333pt;}
.y98{bottom:260.075067pt;}
.y1a1{bottom:260.107253pt;}
.y204{bottom:268.650491pt;}
.ycf{bottom:270.928859pt;}
.y40{bottom:271.241467pt;}
.y168{bottom:272.524021pt;}
.y1cd{bottom:272.541653pt;}
.y59{bottom:274.121333pt;}
.y103{bottom:274.148149pt;}
.y13a{bottom:275.081467pt;}
.y97{bottom:275.433339pt;}
.y1a0{bottom:275.466837pt;}
.y203{bottom:282.730619pt;}
.y3f{bottom:286.281333pt;}
.yce{bottom:286.287131pt;}
.y167{bottom:287.563477pt;}
.y1cc{bottom:287.579797pt;}
.y102{bottom:289.186293pt;}
.y58{bottom:289.825947pt;}
.y139{bottom:290.792565pt;}
.y96{bottom:290.792923pt;}
.y19f{bottom:290.825109pt;}
.y202{bottom:296.491067pt;}
.ycd{bottom:301.645403pt;}
.y3e{bottom:301.969141pt;}
.y166{bottom:302.923061pt;}
.y1cb{bottom:302.939381pt;}
.y101{bottom:304.545877pt;}
.y57{bottom:305.185531pt;}
.y138{bottom:306.152149pt;}
.y95{bottom:306.152507pt;}
.y19e{bottom:306.184693pt;}
.y201{bottom:310.252699pt;}
.ycc{bottom:317.004987pt;}
.y3d{bottom:317.328725pt;}
.y165{bottom:318.281333pt;}
.y1ca{bottom:318.298965pt;}
.y100{bottom:319.905461pt;}
.y56{bottom:320.223675pt;}
.y137{bottom:321.510421pt;}
.y94{bottom:321.510779pt;}
.y19d{bottom:321.544277pt;}
.y200{bottom:324.013147pt;}
.y10{bottom:325.756000pt;}
.ycb{bottom:332.364571pt;}
.y3c{bottom:332.688309pt;}
.y1c9{bottom:333.657237pt;}
.y164{bottom:334.281333pt;}
.yff{bottom:335.263733pt;}
.y55{bottom:335.583259pt;}
.y93{bottom:336.869051pt;}
.y136{bottom:336.870005pt;}
.y19c{bottom:336.902549pt;}
.y1ff{bottom:337.773595pt;}
.yf{bottom:344.956000pt;}
.yca{bottom:347.402715pt;}
.y3b{bottom:347.726453pt;}
.y1c8{bottom:349.016821pt;}
.yfe{bottom:350.623317pt;}
.y54{bottom:350.942843pt;}
.y1fe{bottom:351.535227pt;}
.y163{bottom:351.919067pt;}
.y92{bottom:352.227323pt;}
.y135{bottom:352.229589pt;}
.y19b{bottom:352.262133pt;}
.yc9{bottom:362.762299pt;}
.y3a{bottom:363.086037pt;}
.ye{bottom:364.156000pt;}
.y1c7{bottom:364.376405pt;}
.y1fd{bottom:365.295675pt;}
.yfd{bottom:365.982901pt;}
.y53{bottom:366.301115pt;}
.y91{bottom:367.585595pt;}
.y134{bottom:367.587861pt;}
.y162{bottom:367.598779pt;}
.y19a{bottom:367.621717pt;}
.yc8{bottom:378.121883pt;}
.y39{bottom:378.445621pt;}
.y1fc{bottom:379.056123pt;}
.y1c6{bottom:379.734677pt;}
.yfc{bottom:381.341173pt;}
.y52{bottom:381.660699pt;}
.y90{bottom:382.625051pt;}
.y133{bottom:382.627317pt;}
.y161{bottom:382.958363pt;}
.y199{bottom:382.981301pt;}
.y1fb{bottom:392.817755pt;}
.yc7{bottom:393.481467pt;}
.y38{bottom:393.803893pt;}
.y1c5{bottom:395.094261pt;}
.yfb{bottom:396.700757pt;}
.y51{bottom:397.018971pt;}
.y8f{bottom:398.304763pt;}
.y132{bottom:398.307029pt;}
.y160{bottom:398.317947pt;}
.y198{bottom:398.340885pt;}
.y1fa{bottom:406.897883pt;}
.yc6{bottom:408.521333pt;}
.y37{bottom:409.163477pt;}
.y1c4{bottom:410.453845pt;}
.yfa{bottom:412.060341pt;}
.y50{bottom:412.377243pt;}
.y8e{bottom:413.663035pt;}
.y131{bottom:413.665301pt;}
.y15f{bottom:413.676219pt;}
.y197{bottom:413.700469pt;}
.yd{bottom:417.404000pt;}
.y1f9{bottom:420.658331pt;}
.yc5{bottom:424.213845pt;}
.y36{bottom:424.523061pt;}
.y1c3{bottom:425.812117pt;}
.yf9{bottom:427.418613pt;}
.y4f{bottom:427.735515pt;}
.y15e{bottom:428.715675pt;}
.y196{bottom:428.738613pt;}
.y8d{bottom:429.022619pt;}
.y130{bottom:429.024885pt;}
.y1f8{bottom:434.418779pt;}
.yc{bottom:436.604000pt;}
.yc4{bottom:439.573429pt;}
.y35{bottom:439.881333pt;}
.y1c2{bottom:441.171701pt;}
.yf8{bottom:442.778197pt;}
.y4e{bottom:443.093787pt;}
.y15d{bottom:444.073947pt;}
.y8c{bottom:444.380891pt;}
.y12f{bottom:444.384469pt;}
.y195{bottom:444.418325pt;}
.y1f7{bottom:448.180411pt;}
.yc3{bottom:454.933013pt;}
.yb{bottom:455.804000pt;}
.y34{bottom:455.881333pt;}
.y1c1{bottom:456.531285pt;}
.yf7{bottom:458.137781pt;}
.y4d{bottom:458.452059pt;}
.y12e{bottom:459.422613pt;}
.y15c{bottom:459.433531pt;}
.y8b{bottom:459.739163pt;}
.y194{bottom:459.777909pt;}
.y1f6{bottom:461.940859pt;}
.yc2{bottom:470.292597pt;}
.y1c0{bottom:471.890869pt;}
.yf6{bottom:473.175925pt;}
.y4c{bottom:473.811643pt;}
.y8a{bottom:474.778619pt;}
.y12d{bottom:474.780885pt;}
.y15b{bottom:474.793115pt;}
.y193{bottom:474.817365pt;}
.ya{bottom:475.004000pt;}
.y1f5{bottom:475.701307pt;}
.yc1{bottom:485.652181pt;}
.y1bf{bottom:487.250453pt;}
.yf5{bottom:488.535509pt;}
.y33{bottom:488.860277pt;}
.y1f4{bottom:489.462939pt;}
.y15a{bottom:489.831259pt;}
.y89{bottom:490.138203pt;}
.y12c{bottom:490.139157pt;}
.y192{bottom:490.175637pt;}
.y9{bottom:494.204000pt;}
.yc0{bottom:500.690325pt;}
.y1be{bottom:502.289909pt;}
.y1f3{bottom:503.223387pt;}
.yf4{bottom:503.895093pt;}
.y32{bottom:504.219861pt;}
.y88{bottom:505.496475pt;}
.y12b{bottom:505.497429pt;}
.y159{bottom:505.510971pt;}
.y191{bottom:505.535221pt;}
.y8{bottom:513.404000pt;}
.ybf{bottom:516.049909pt;}
.y1f2{bottom:517.303515pt;}
.y1bd{bottom:517.649493pt;}
.yf3{bottom:519.253365pt;}
.y31{bottom:519.579445pt;}
.y87{bottom:520.856059pt;}
.y12a{bottom:520.857013pt;}
.y158{bottom:520.870555pt;}
.y190{bottom:520.894805pt;}
.y1f1{bottom:531.065147pt;}
.ybe{bottom:531.409493pt;}
.y7{bottom:532.604000pt;}
.y1bc{bottom:533.009077pt;}
.yf2{bottom:534.612949pt;}
.y30{bottom:534.939029pt;}
.y86{bottom:536.215643pt;}
.y129{bottom:536.216597pt;}
.y157{bottom:536.230139pt;}
.y18f{bottom:536.253077pt;}
.y1f0{bottom:544.825595pt;}
.ybd{bottom:546.767765pt;}
.y1bb{bottom:548.368661pt;}
.yf1{bottom:549.972533pt;}
.y2f{bottom:550.297301pt;}
.y128{bottom:551.574869pt;}
.y85{bottom:551.575227pt;}
.y156{bottom:551.589723pt;}
.y18e{bottom:551.612661pt;}
.y1ef{bottom:558.586043pt;}
.ybc{bottom:562.127349pt;}
.y1ba{bottom:563.728245pt;}
.yf0{bottom:565.332117pt;}
.y2e{bottom:565.656885pt;}
.y127{bottom:566.934453pt;}
.y84{bottom:566.934811pt;}
.y155{bottom:566.949307pt;}
.y18d{bottom:566.970933pt;}
.y1ee{bottom:572.347675pt;}
.ybb{bottom:577.485621pt;}
.y1b9{bottom:579.086517pt;}
.yef{bottom:580.691701pt;}
.y2d{bottom:581.015157pt;}
.y126{bottom:582.294037pt;}
.y83{bottom:582.294395pt;}
.y154{bottom:582.308891pt;}
.y18c{bottom:582.329205pt;}
.y1ed{bottom:586.108123pt;}
.yba{bottom:592.843893pt;}
.y1b8{bottom:594.446101pt;}
.yee{bottom:596.051285pt;}
.y2c{bottom:596.373429pt;}
.y125{bottom:597.653621pt;}
.y82{bottom:597.653979pt;}
.y153{bottom:597.667163pt;}
.y18b{bottom:597.687477pt;}
.y1ec{bottom:599.868571pt;}
.yb9{bottom:608.203477pt;}
.y1b7{bottom:609.805685pt;}
.yed{bottom:611.410869pt;}
.y2b{bottom:611.731701pt;}
.y5{bottom:612.970800pt;}
.y124{bottom:613.011893pt;}
.y81{bottom:613.012251pt;}
.y152{bottom:613.026747pt;}
.y18a{bottom:613.045749pt;}
.y1eb{bottom:613.630203pt;}
.yb8{bottom:623.563061pt;}
.y1b6{bottom:625.165269pt;}
.yec{bottom:626.770453pt;}
.y2a{bottom:627.089973pt;}
.y1ea{bottom:627.710331pt;}
.y123{bottom:628.051349pt;}
.y80{bottom:628.371835pt;}
.y151{bottom:628.386331pt;}
.y189{bottom:628.404021pt;}
.yb7{bottom:638.921333pt;}
.y4{bottom:639.638000pt;}
.y1b5{bottom:640.524853pt;}
.y1e9{bottom:641.470779pt;}
.yeb{bottom:641.809909pt;}
.y29{bottom:642.448245pt;}
.y122{bottom:643.409621pt;}
.y7f{bottom:643.411291pt;}
.y150{bottom:643.424475pt;}
.y188{bottom:643.443477pt;}
.yb6{bottom:654.281467pt;}
.y1e8{bottom:655.231227pt;}
.y1b4{bottom:655.884437pt;}
.yea{bottom:657.169493pt;}
.y28{bottom:657.487701pt;}
.y121{bottom:658.769205pt;}
.y7e{bottom:658.770875pt;}
.y14f{bottom:658.782747pt;}
.y187{bottom:658.801749pt;}
.y1e7{bottom:668.992859pt;}
.y1b3{bottom:671.242709pt;}
.yb5{bottom:671.561467pt;}
.ye9{bottom:672.529077pt;}
.y27{bottom:672.847285pt;}
.y120{bottom:674.127477pt;}
.y7d{bottom:674.130459pt;}
.y14e{bottom:674.141019pt;}
.y186{bottom:674.160021pt;}
.y1e6{bottom:682.753307pt;}
.y1b2{bottom:686.282165pt;}
.ye8{bottom:687.888661pt;}
.y26{bottom:688.206869pt;}
.yb4{bottom:688.841333pt;}
.y11f{bottom:689.485749pt;}
.y7c{bottom:689.490043pt;}
.y14d{bottom:689.499291pt;}
.y185{bottom:689.518293pt;}
.y3{bottom:694.475067pt;}
.y1e5{bottom:696.513755pt;}
.y1b1{bottom:701.641749pt;}
.ye7{bottom:703.246933pt;}
.yb3{bottom:703.561333pt;}
.y25{bottom:703.566453pt;}
.y11e{bottom:704.844021pt;}
.y7b{bottom:704.849627pt;}
.y14c{bottom:704.857563pt;}
.y184{bottom:704.876565pt;}
.y1e4{bottom:710.275387pt;}
.y1b0{bottom:717.001333pt;}
.ye6{bottom:718.606517pt;}
.y24{bottom:718.926037pt;}
.y11d{bottom:720.203605pt;}
.y7a{bottom:720.209211pt;}
.y14b{bottom:720.215835pt;}
.y183{bottom:720.234837pt;}
.yb2{bottom:720.252507pt;}
.y2{bottom:721.142267pt;}
.y1e3{bottom:724.035835pt;}
.y1af{bottom:733.001333pt;}
.ye5{bottom:733.964789pt;}
.y23{bottom:734.284309pt;}
.y11c{bottom:735.563189pt;}
.y79{bottom:735.568795pt;}
.y14a{bottom:735.574107pt;}
.y182{bottom:735.594421pt;}
.yb1{bottom:735.612091pt;}
.y1e2{bottom:738.115963pt;}
.y1{bottom:747.809467pt;}
.ye4{bottom:749.323061pt;}
.y22{bottom:749.643893pt;}
.y11b{bottom:750.601333pt;}
.y78{bottom:750.927067pt;}
.y149{bottom:750.932379pt;}
.y181{bottom:750.954005pt;}
.yb0{bottom:750.971675pt;}
.y1e1{bottom:751.876411pt;}
.ye3{bottom:764.681333pt;}
.y21{bottom:765.003477pt;}
.y1e0{bottom:765.638043pt;}
.y11a{bottom:765.961333pt;}
.y77{bottom:766.286651pt;}
.y148{bottom:766.291963pt;}
.y180{bottom:766.313589pt;}
.yaf{bottom:766.331259pt;}
.y1df{bottom:779.398491pt;}
.ye2{bottom:780.041333pt;}
.y20{bottom:780.363061pt;}
.y1ae{bottom:781.331419pt;}
.y119{bottom:781.366037pt;}
.y76{bottom:781.644923pt;}
.y147{bottom:781.651547pt;}
.y17f{bottom:781.671861pt;}
.yae{bottom:781.689531pt;}
.y1de{bottom:793.158939pt;}
.y1f{bottom:795.721333pt;}
.ye1{bottom:796.689691pt;}
.y118{bottom:796.725621pt;}
.y75{bottom:797.003195pt;}
.y146{bottom:797.009819pt;}
.y17e{bottom:797.031445pt;}
.yad{bottom:797.049115pt;}
.y1dd{bottom:806.920571pt;}
.y1e{bottom:810.121467pt;}
.y1ad{bottom:812.049275pt;}
.y117{bottom:812.083893pt;}
.y74{bottom:812.361467pt;}
.ye0{bottom:812.369403pt;}
.y17d{bottom:812.391029pt;}
.yac{bottom:812.408699pt;}
.y1dc{bottom:820.681019pt;}
.y1d{bottom:823.241333pt;}
.y73{bottom:827.407547pt;}
.ydf{bottom:827.408859pt;}
.y17c{bottom:827.429173pt;}
.y116{bottom:827.443477pt;}
.yab{bottom:827.446843pt;}
.y1db{bottom:834.441467pt;}
.y1c{bottom:838.281467pt;}
.y72{bottom:842.765819pt;}
.yde{bottom:842.767131pt;}
.y17b{bottom:842.788757pt;}
.y115{bottom:842.803061pt;}
.yaa{bottom:842.806427pt;}
.y1da{bottom:849.481333pt;}
.y1b{bottom:852.041333pt;}
.y71{bottom:858.125403pt;}
.ydd{bottom:858.126715pt;}
.y17a{bottom:858.147029pt;}
.y114{bottom:858.162645pt;}
.ya9{bottom:858.166011pt;}
.y1d9{bottom:867.721333pt;}
.y1ac{bottom:873.166171pt;}
.y70{bottom:873.484987pt;}
.ydc{bottom:873.486299pt;}
.y179{bottom:873.505301pt;}
.y113{bottom:873.522229pt;}
.ya8{bottom:873.525595pt;}
.y216{bottom:882.118229pt;}
.y1a{bottom:883.720821pt;}
.y1d8{bottom:885.643893pt;}
.y6f{bottom:888.844571pt;}
.ydb{bottom:888.845883pt;}
.y178{bottom:888.863573pt;}
.y112{bottom:888.881813pt;}
.ya7{bottom:888.885179pt;}
.y215{bottom:895.878677pt;}
.y1d7{bottom:901.003477pt;}
.y6e{bottom:904.204155pt;}
.y177{bottom:904.221845pt;}
.y111{bottom:904.241397pt;}
.ya6{bottom:904.244763pt;}
.y19{bottom:905.161333pt;}
.y214{bottom:909.640309pt;}
.y1d6{bottom:916.363061pt;}
.y110{bottom:919.279541pt;}
.y6d{bottom:919.563739pt;}
.y176{bottom:919.580117pt;}
.ya5{bottom:919.604347pt;}
.y213{bottom:923.400757pt;}
.y1d5{bottom:931.721333pt;}
.y18{bottom:932.361333pt;}
.y6c{bottom:934.923323pt;}
.y175{bottom:934.938389pt;}
.y10f{bottom:934.959253pt;}
.ya4{bottom:934.962619pt;}
.y212{bottom:937.480885pt;}
.y1d4{bottom:947.401333pt;}
.y6b{bottom:949.961467pt;}
.y174{bottom:949.977845pt;}
.y10e{bottom:949.998709pt;}
.ya3{bottom:950.002075pt;}
.y17{bottom:950.923195pt;}
.y211{bottom:951.241333pt;}
.y16{bottom:966.281467pt;}
.y6a{bottom:970.761333pt;}
.y15{bottom:985.161573pt;}
.y68{bottom:987.068208pt;}
.y67{bottom:998.908080pt;}
.y14{bottom:1002.761733pt;}
.y66{bottom:1011.067920pt;}
.y13{bottom:1023.562021pt;}
.y65{bottom:1027.388400pt;}
.y69{bottom:1037.001733pt;}
.y12{bottom:1039.241733pt;}
.h12{height:28.907500pt;}
.h11{height:30.751875pt;}
.hd{height:30.772500pt;}
.h8{height:34.502500pt;}
.h6{height:34.978125pt;}
.hf{height:36.367500pt;}
.hc{height:38.206875pt;}
.h9{height:38.232500pt;}
.h7{height:39.952500pt;}
.h10{height:40.410000pt;}
.h14{height:41.934375pt;}
.h13{height:41.962500pt;}
.h5{height:46.354167pt;}
.he{height:46.593750pt;}
.h15{height:46.625000pt;}
.ha{height:48.490000pt;}
.hb{height:54.048750pt;}
.h4{height:55.625000pt;}
.h2{height:56.554982pt;}
.h3{height:64.895833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:89.677733pt;}
.x8{left:96.344400pt;}
.xd{left:103.811525pt;}
.x7{left:116.411765pt;}
.x3{left:143.622667pt;}
.x6{left:182.010667pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.xb{left:332.610667pt;}
.x4{left:385.728000pt;}
.x9{left:414.158032pt;}
.xa{left:420.822992pt;}
.xc{left:428.292309pt;}
}


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