
/* 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_a6d73b7640cc.woff")format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_e4412bd64dfd.woff")format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_a06b3575c6b4.woff")format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_bd15cef8c048.woff")format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_d1a2d91c17f3.woff")format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_97f6d6d169c5.woff")format("woff");}.ff6{font-family:ff6;line-height:0.907000;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_b506de8a13a2.woff")format("woff");}.ff7{font-family:ff7;line-height:0.705000;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_fee0a42dc745.woff")format("woff");}.ff8{font-family:ff8;line-height:0.928000;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_e7a21fb31bd5.woff")format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_a6b54f6baf56.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_aa6b9d7769de.woff")format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_0195863e4d11.woff")format("woff");}.ffc{font-family:ffc;line-height:0.917000;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_55d8a3f54fbe.woff")format("woff");}.ffd{font-family:ffd;line-height:0.685000;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_ad9137be9e7d.woff")format("woff");}.ffe{font-family:ffe;line-height:0.872000;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_2f2bdfa0e7e0.woff")format("woff");}.fff{font-family:fff;line-height:2.409000;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_8082b24b777d.woff")format("woff");}.ff10{font-family:ff10;line-height:0.451000;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_9ad5c50ed748.woff")format("woff");}.ff11{font-family:ff11;line-height:0.698000;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_96a843839523.woff")format("woff");}.ff12{font-family:ff12;line-height:0.663000;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_563533b2901c.woff")format("woff");}.ff13{font-family:ff13;line-height:0.922000;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_fc89202a9cd1.woff")format("woff");}.ff14{font-family:ff14;line-height:0.888000;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_b586b12ebc80.woff")format("woff");}.ff15{font-family:ff15;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1d{vertical-align:-51.108600px;}
.v15{vertical-align:-48.418800px;}
.v4{vertical-align:-21.691800px;}
.v1c{vertical-align:-14.611800px;}
.v17{vertical-align:-12.553200px;}
.v7{vertical-align:-8.966400px;}
.v9{vertical-align:-7.289400px;}
.v1b{vertical-align:-5.977800px;}
.v0{vertical-align:0.000000px;}
.v1f{vertical-align:3.984600px;}
.v19{vertical-align:5.811000px;}
.v2{vertical-align:10.576800px;}
.v1{vertical-align:12.087600px;}
.vc{vertical-align:14.777400px;}
.vb{vertical-align:17.268600px;}
.v5{vertical-align:20.613000px;}
.v6{vertical-align:21.691800px;}
.v3{vertical-align:22.953000px;}
.v12{vertical-align:24.681000px;}
.v13{vertical-align:26.068800px;}
.v18{vertical-align:30.054000px;}
.v10{vertical-align:31.472400px;}
.vd{vertical-align:35.367000px;}
.v8{vertical-align:37.755600px;}
.vf{vertical-align:40.438800px;}
.v14{vertical-align:48.418800px;}
.v1a{vertical-align:52.071000px;}
.va{vertical-align:72.462000px;}
.ve{vertical-align:84.284400px;}
.v1e{vertical-align:89.753400px;}
.v16{vertical-align:120.150600px;}
.v11{vertical-align:125.287800px;}
.ls0{letter-spacing:0.000000px;}
.ls9d{letter-spacing:0.000030px;}
.ls45{letter-spacing:0.000600px;}
.lsd{letter-spacing:0.006608px;}
.lsb{letter-spacing:0.006638px;}
.ls7c{letter-spacing:0.007873px;}
.ls4b{letter-spacing:0.011891px;}
.ls95{letter-spacing:0.012491px;}
.ls9{letter-spacing:0.013217px;}
.ls14{letter-spacing:0.014040px;}
.ls49{letter-spacing:0.018510px;}
.ls4a{letter-spacing:0.018647px;}
.ls4d{letter-spacing:0.019247px;}
.ls46{letter-spacing:0.019975px;}
.lse{letter-spacing:0.023684px;}
.ls72{letter-spacing:0.028003px;}
.ls37{letter-spacing:0.028393px;}
.ls71{letter-spacing:0.028603px;}
.ls15{letter-spacing:0.029088px;}
.ls18{letter-spacing:0.029688px;}
.ls78{letter-spacing:0.203616px;}
.ls3e{letter-spacing:0.479320px;}
.ls62{letter-spacing:0.947812px;}
.ls59{letter-spacing:0.948412px;}
.ls5c{letter-spacing:1.023620px;}
.ls8b{letter-spacing:1.038583px;}
.ls1e{letter-spacing:1.603670px;}
.ls38{letter-spacing:2.146308px;}
.ls10{letter-spacing:2.168684px;}
.ls6b{letter-spacing:2.406556px;}
.lsc{letter-spacing:2.969329px;}
.ls56{letter-spacing:2.978201px;}
.ls11{letter-spacing:2.996309px;}
.ls8a{letter-spacing:3.001962px;}
.ls3a{letter-spacing:3.007247px;}
.lsa{letter-spacing:3.007847px;}
.ls84{letter-spacing:3.456607px;}
.ls86{letter-spacing:3.457207px;}
.ls63{letter-spacing:4.012220px;}
.ls76{letter-spacing:4.259046px;}
.ls28{letter-spacing:4.665336px;}
.ls26{letter-spacing:4.665936px;}
.ls80{letter-spacing:4.718803px;}
.ls65{letter-spacing:5.033464px;}
.ls6c{letter-spacing:5.395156px;}
.ls73{letter-spacing:5.395756px;}
.ls52{letter-spacing:5.667583px;}
.ls8{letter-spacing:7.179035px;}
.ls19{letter-spacing:7.180358px;}
.ls53{letter-spacing:7.470666px;}
.ls75{letter-spacing:7.693183px;}
.ls74{letter-spacing:7.707223px;}
.ls43{letter-spacing:8.302865px;}
.ls3d{letter-spacing:8.303465px;}
.ls1d{letter-spacing:8.324650px;}
.ls5a{letter-spacing:9.412710px;}
.ls66{letter-spacing:9.440633px;}
.ls4c{letter-spacing:9.812447px;}
.ls3b{letter-spacing:9.949183px;}
.ls1b{letter-spacing:9.969158px;}
.ls13{letter-spacing:10.123183px;}
.ls12{letter-spacing:10.142408px;}
.lsf{letter-spacing:10.148608px;}
.lsa2{letter-spacing:12.171172px;}
.ls81{letter-spacing:13.257176px;}
.ls2d{letter-spacing:13.269583px;}
.ls20{letter-spacing:13.270183px;}
.ls1f{letter-spacing:13.276492px;}
.ls7d{letter-spacing:13.277092px;}
.ls23{letter-spacing:13.283400px;}
.ls42{letter-spacing:13.692583px;}
.ls1a{letter-spacing:13.751092px;}
.ls33{letter-spacing:13.840183px;}
.ls89{letter-spacing:14.735983px;}
.ls2e{letter-spacing:15.425639px;}
.ls2b{letter-spacing:15.426239px;}
.ls34{letter-spacing:15.547333px;}
.ls50{letter-spacing:16.125223px;}
.ls39{letter-spacing:16.290647px;}
.ls30{letter-spacing:16.532639px;}
.ls55{letter-spacing:16.584275px;}
.ls16{letter-spacing:16.590583px;}
.ls17{letter-spacing:16.591183px;}
.ls54{letter-spacing:16.597492px;}
.ls51{letter-spacing:16.604623px;}
.ls36{letter-spacing:16.722960px;}
.ls8f{letter-spacing:16.807416px;}
.ls44{letter-spacing:17.269218px;}
.ls5e{letter-spacing:17.295020px;}
.ls5d{letter-spacing:17.295620px;}
.ls88{letter-spacing:17.312983px;}
.ls2c{letter-spacing:17.542446px;}
.lsa0{letter-spacing:17.976216px;}
.ls85{letter-spacing:18.002203px;}
.ls77{letter-spacing:18.316264px;}
.ls32{letter-spacing:18.338204px;}
.ls6e{letter-spacing:18.678556px;}
.ls6{letter-spacing:18.773132px;}
.ls8c{letter-spacing:18.891647px;}
.ls4f{letter-spacing:19.120709px;}
.ls29{letter-spacing:19.608119px;}
.ls6f{letter-spacing:19.791246px;}
.lsa1{letter-spacing:19.810372px;}
.ls79{letter-spacing:19.912183px;}
.ls5{letter-spacing:19.925700px;}
.ls25{letter-spacing:20.353446px;}
.ls40{letter-spacing:20.404720px;}
.ls61{letter-spacing:20.616020px;}
.ls24{letter-spacing:20.759736px;}
.ls70{letter-spacing:20.926756px;}
.ls6d{letter-spacing:21.637264px;}
.ls4{letter-spacing:21.822932px;}
.ls8d{letter-spacing:22.020816px;}
.ls31{letter-spacing:22.684200px;}
.ls2{letter-spacing:22.910051px;}
.ls27{letter-spacing:22.929719px;}
.ls2a{letter-spacing:23.764183px;}
.ls7e{letter-spacing:23.770492px;}
.ls1c{letter-spacing:23.882270px;}
.ls60{letter-spacing:23.937620px;}
.ls83{letter-spacing:24.644203px;}
.ls91{letter-spacing:25.137047px;}
.ls5b{letter-spacing:26.016510px;}
.ls6a{letter-spacing:26.044433px;}
.ls58{letter-spacing:26.470393px;}
.ls87{letter-spacing:26.539976px;}
.ls67{letter-spacing:27.085183px;}
.ls82{letter-spacing:27.092092px;}
.ls69{letter-spacing:27.475264px;}
.ls3f{letter-spacing:28.228265px;}
.ls5f{letter-spacing:28.723075px;}
.ls22{letter-spacing:28.781050px;}
.ls41{letter-spacing:28.862465px;}
.ls7a{letter-spacing:28.892616px;}
.ls57{letter-spacing:29.338110px;}
.ls7b{letter-spacing:29.365433px;}
.ls4e{letter-spacing:29.670193px;}
.ls7{letter-spacing:29.824783px;}
.ls48{letter-spacing:29.887950px;}
.ls3{letter-spacing:29.888400px;}
.ls35{letter-spacing:29.953451px;}
.ls1{letter-spacing:30.326051px;}
.ls68{letter-spacing:31.881833px;}
.ls64{letter-spacing:32.390310px;}
.ls3c{letter-spacing:35.208665px;}
.ls9e{letter-spacing:50.353247px;}
.ls90{letter-spacing:51.033047px;}
.ls92{letter-spacing:53.565047px;}
.ls47{letter-spacing:59.775600px;}
.ls9c{letter-spacing:65.174447px;}
.ls21{letter-spacing:81.910183px;}
.ls2f{letter-spacing:91.673046px;}
.ls7f{letter-spacing:154.690183px;}
.ls8e{letter-spacing:281.588447px;}
.ls98{letter-spacing:441.324047px;}
.ls93{letter-spacing:476.359247px;}
.ls94{letter-spacing:480.842447px;}
.ls9f{letter-spacing:516.234047px;}
.ls9a{letter-spacing:581.821847px;}
.ls9b{letter-spacing:601.165847px;}
.ls99{letter-spacing:605.649047px;}
.ls97{letter-spacing:621.340247px;}
.ls96{letter-spacing:645.167447px;}
.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;}
}
.wsf9{word-spacing:-59.835376px;}
.wsb0{word-spacing:-38.913916px;}
.wsae{word-spacing:-28.991166px;}
.wsca{word-spacing:-28.981633px;}
.wsbb{word-spacing:-28.931390px;}
.wsb7{word-spacing:-12.619874px;}
.wsb5{word-spacing:-12.617458px;}
.wse{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.047821px;}
.wsb3{word-spacing:-0.041843px;}
.ws25{word-spacing:0.000000px;}
.ws1ce{word-spacing:5.953048px;}
.ws107{word-spacing:6.401948px;}
.ws131{word-spacing:8.416426px;}
.ws52{word-spacing:9.274716px;}
.wsbe{word-spacing:9.883789px;}
.wse8{word-spacing:10.713589px;}
.ws20b{word-spacing:11.285662px;}
.ws1d5{word-spacing:11.524765px;}
.ws1f7{word-spacing:11.620406px;}
.ws184{word-spacing:11.763868px;}
.ws220{word-spacing:11.904751px;}
.ws21f{word-spacing:11.907329px;}
.ws5{word-spacing:11.955150px;}
.ws1de{word-spacing:12.146432px;}
.ws1c3{word-spacing:12.194253px;}
.ws206{word-spacing:12.481177px;}
.ws200{word-spacing:12.528997px;}
.ws1b5{word-spacing:12.624638px;}
.ws1f9{word-spacing:12.672459px;}
.ws1dd{word-spacing:12.720280px;}
.ws1a2{word-spacing:12.815921px;}
.ws1fc{word-spacing:13.007203px;}
.ws20c{word-spacing:13.055024px;}
.ws21a{word-spacing:13.102844px;}
.wsb4{word-spacing:13.210408px;}
.ws12c{word-spacing:13.329959px;}
.ws1b4{word-spacing:13.341947px;}
.ws1fa{word-spacing:13.389768px;}
.ws1f8{word-spacing:13.437589px;}
.ws7f{word-spacing:13.449510px;}
.ws1bf{word-spacing:13.483283px;}
.ws103{word-spacing:13.509286px;}
.ws1be{word-spacing:13.513768px;}
.ws185{word-spacing:13.533230px;}
.wsa9{word-spacing:13.569061px;}
.wsad{word-spacing:13.688612px;}
.ws21e{word-spacing:13.724512px;}
.ws135{word-spacing:13.748388px;}
.ws1fd{word-spacing:13.772333px;}
.wsda{word-spacing:13.794224px;}
.wsde{word-spacing:13.808164px;}
.ws1b2{word-spacing:13.867974px;}
.ws209{word-spacing:13.887976px;}
.ws1df{word-spacing:13.915795px;}
.ws152{word-spacing:13.927715px;}
.ws1c4{word-spacing:13.963615px;}
.ws134{word-spacing:13.987490px;}
.ws78{word-spacing:14.047266px;}
.ws12e{word-spacing:14.107042px;}
.ws74{word-spacing:14.166817px;}
.ws1bd{word-spacing:14.176136px;}
.ws207{word-spacing:14.202718px;}
.ws201{word-spacing:14.250539px;}
.wsc2{word-spacing:14.286368px;}
.wsd1{word-spacing:14.346144px;}
.ws8{word-spacing:14.394001px;}
.ws7e{word-spacing:14.405920px;}
.ws1db{word-spacing:14.441821px;}
.wsc{word-spacing:14.489642px;}
.wsfe{word-spacing:14.585246px;}
.ws1fb{word-spacing:14.585283px;}
.ws203{word-spacing:14.633104px;}
.ws5c{word-spacing:14.645022px;}
.ws1ae{word-spacing:14.680924px;}
.ws128{word-spacing:14.704798px;}
.ws1b0{word-spacing:14.728745px;}
.ws8a{word-spacing:14.764573px;}
.ws27{word-spacing:14.824349px;}
.ws21b{word-spacing:14.824386px;}
.wsf6{word-spacing:14.854194px;}
.wsfc{word-spacing:14.869710px;}
.ws161{word-spacing:14.884124px;}
.wsc5{word-spacing:14.943900px;}
.ws62{word-spacing:15.003676px;}
.wsaa{word-spacing:15.123227px;}
.ws188{word-spacing:15.159130px;}
.ws90{word-spacing:15.183002px;}
.ws19a{word-spacing:15.206951px;}
.ws10e{word-spacing:15.242778px;}
.ws12d{word-spacing:15.302554px;}
.wsd0{word-spacing:15.398364px;}
.ws11a{word-spacing:15.419557px;}
.ws12b{word-spacing:15.422105px;}
.ws1b3{word-spacing:15.446054px;}
.ws119{word-spacing:15.481880px;}
.ws118{word-spacing:15.505556px;}
.ws160{word-spacing:15.541656px;}
.ws208{word-spacing:15.541695px;}
.ws36{word-spacing:15.601432px;}
.ws1a3{word-spacing:15.637336px;}
.wsac{word-spacing:15.661207px;}
.wse2{word-spacing:15.720983px;}
.ws24{word-spacing:15.732977px;}
.ws57{word-spacing:15.780758px;}
.wse1{word-spacing:15.840534px;}
.wsa2{word-spacing:15.900310px;}
.wsc1{word-spacing:15.960085px;}
.wsce{word-spacing:16.019861px;}
.ws1dc{word-spacing:16.019901px;}
.ws106{word-spacing:16.031282px;}
.ws26{word-spacing:16.067635px;}
.wse6{word-spacing:16.079636px;}
.ws204{word-spacing:16.115542px;}
.ws157{word-spacing:16.139412px;}
.ws4f{word-spacing:16.199188px;}
.ws202{word-spacing:16.211183px;}
.ws1af{word-spacing:16.259004px;}
.ws3f{word-spacing:16.318739px;}
.wsd3{word-spacing:16.378514px;}
.ws20e{word-spacing:16.402466px;}
.wsf7{word-spacing:16.438290px;}
.wsa5{word-spacing:16.498066px;}
.wsb2{word-spacing:16.511282px;}
.wsc9{word-spacing:16.557841px;}
.ws4e{word-spacing:16.617617px;}
.ws14{word-spacing:16.677392px;}
.wsb{word-spacing:16.689389px;}
.ws1e7{word-spacing:16.737210px;}
.ws19c{word-spacing:16.785031px;}
.wsf2{word-spacing:16.796944px;}
.ws191{word-spacing:16.841324px;}
.ws187{word-spacing:16.841924px;}
.ws18e{word-spacing:16.865917px;}
.ws227{word-spacing:16.877434px;}
.ws1{word-spacing:16.880672px;}
.ws194{word-spacing:16.889015px;}
.ws19d{word-spacing:16.907020px;}
.ws1c2{word-spacing:16.910442px;}
.wsa7{word-spacing:16.916495px;}
.ws20{word-spacing:16.928492px;}
.wsaf{word-spacing:17.036046px;}
.ws1f6{word-spacing:17.037331px;}
.ws179{word-spacing:17.043047px;}
.ws81{word-spacing:17.095822px;}
.ws1a4{word-spacing:17.119775px;}
.ws177{word-spacing:17.135020px;}
.ws18{word-spacing:17.155597px;}
.ws7{word-spacing:17.167595px;}
.ws76{word-spacing:17.215373px;}
.ws23{word-spacing:17.215416px;}
.ws116{word-spacing:17.232851px;}
.ws115{word-spacing:17.233451px;}
.ws3c{word-spacing:17.275148px;}
.ws170{word-spacing:17.311057px;}
.ws13f{word-spacing:17.334924px;}
.wscc{word-spacing:17.383590px;}
.ws199{word-spacing:17.406698px;}
.wsf8{word-spacing:17.454475px;}
.ws20f{word-spacing:17.502340px;}
.ws35{word-spacing:17.514251px;}
.ws205{word-spacing:17.550160px;}
.ws10{word-spacing:17.574026px;}
.ws100{word-spacing:17.633802px;}
.ws3e{word-spacing:17.693578px;}
.ws217{word-spacing:17.693622px;}
.ws50{word-spacing:17.753353px;}
.ws1b6{word-spacing:17.789263px;}
.ws6f{word-spacing:17.813129px;}
.ws1d4{word-spacing:17.837084px;}
.ws82{word-spacing:17.872904px;}
.ws219{word-spacing:17.884904px;}
.ws2d{word-spacing:17.932680px;}
.wsa8{word-spacing:17.992456px;}
.ws221{word-spacing:18.028366px;}
.ws223{word-spacing:18.041807px;}
.ws7d{word-spacing:18.052231px;}
.ws1d6{word-spacing:18.076187px;}
.ws51{word-spacing:18.112007px;}
.wsa{word-spacing:18.124007px;}
.ws4d{word-spacing:18.171782px;}
.ws1e8{word-spacing:18.171828px;}
.ws10f{word-spacing:18.185135px;}
.ws19b{word-spacing:18.219649px;}
.ws75{word-spacing:18.231558px;}
.ws22{word-spacing:18.267469px;}
.wsb9{word-spacing:18.291334px;}
.ws16a{word-spacing:18.315290px;}
.ws21{word-spacing:18.317804px;}
.ws6e{word-spacing:18.351109px;}
.ws87{word-spacing:18.410885px;}
.ws17f{word-spacing:18.458752px;}
.ws136{word-spacing:18.470660px;}
.ws1f5{word-spacing:18.506572px;}
.ws3d{word-spacing:18.590212px;}
.ws189{word-spacing:18.590924px;}
.ws20a{word-spacing:18.602213px;}
.ws93{word-spacing:18.649987px;}
.ws171{word-spacing:18.650034px;}
.ws2f{word-spacing:18.709763px;}
.ws1ac{word-spacing:18.745675px;}
.ws54{word-spacing:18.769538px;}
.ws1d{word-spacing:18.829314px;}
.ws181{word-spacing:18.841316px;}
.wsc0{word-spacing:18.889090px;}
.ws210{word-spacing:18.936958px;}
.ws9b{word-spacing:18.948865px;}
.ws174{word-spacing:18.984778px;}
.ws5e{word-spacing:19.008641px;}
.ws218{word-spacing:19.032599px;}
.ws40{word-spacing:19.068416px;}
.ws168{word-spacing:19.080419px;}
.ws83{word-spacing:19.128192px;}
.ws176{word-spacing:19.128240px;}
.ws197{word-spacing:19.176061px;}
.wsf{word-spacing:19.187968px;}
.ws19{word-spacing:19.247743px;}
.wsa3{word-spacing:19.307519px;}
.ws1b7{word-spacing:19.319522px;}
.ws222{word-spacing:19.415164px;}
.wsab{word-spacing:19.427070px;}
.ws6{word-spacing:19.462984px;}
.ws1a{word-spacing:19.486846px;}
.ws213{word-spacing:19.510805px;}
.ws111{word-spacing:19.538735px;}
.ws37{word-spacing:19.546621px;}
.ws11e{word-spacing:19.565346px;}
.ws13{word-spacing:19.606397px;}
.ws49{word-spacing:19.666172px;}
.ws178{word-spacing:19.702087px;}
.ws12{word-spacing:19.725948px;}
.ws180{word-spacing:19.749908px;}
.ws91{word-spacing:19.785724px;}
.ws183{word-spacing:19.795522px;}
.ws182{word-spacing:19.797728px;}
.ws125{word-spacing:19.813357px;}
.ws149{word-spacing:19.815127px;}
.ws121{word-spacing:19.833272px;}
.wsf3{word-spacing:19.839491px;}
.ws16{word-spacing:19.845499px;}
.wsb1{word-spacing:19.879441px;}
.ws1f{word-spacing:19.905275px;}
.ws9e{word-spacing:19.920292px;}
.ws186{word-spacing:19.941190px;}
.ws31{word-spacing:19.965050px;}
.wsbf{word-spacing:20.024826px;}
.ws198{word-spacing:20.036831px;}
.ws133{word-spacing:20.084602px;}
.ws101{word-spacing:20.144377px;}
.ws9{word-spacing:20.180293px;}
.ws175{word-spacing:20.228114px;}
.ws3b{word-spacing:20.263928px;}
.wsa6{word-spacing:20.323704px;}
.ws169{word-spacing:20.371576px;}
.ws92{word-spacing:20.383480px;}
.wsf5{word-spacing:20.444528px;}
.ws1ab{word-spacing:20.467217px;}
.ws1b8{word-spacing:20.483765px;}
.wsa4{word-spacing:20.503031px;}
.ws1c5{word-spacing:20.505997px;}
.ws1c6{word-spacing:20.515037px;}
.ws167{word-spacing:20.562806px;}
.ws17{word-spacing:20.622582px;}
.wsc8{word-spacing:20.703990px;}
.wscb{word-spacing:20.704590px;}
.ws1f2{word-spacing:20.706320px;}
.ws29{word-spacing:20.742133px;}
.ws1f0{word-spacing:20.754140px;}
.ws47{word-spacing:20.801909px;}
.ws11b{word-spacing:20.861684px;}
.ws4c{word-spacing:20.879557px;}
.ws59{word-spacing:20.921460px;}
.ws1bc{word-spacing:20.945423px;}
.ws58{word-spacing:20.981236px;}
.ws17a{word-spacing:20.993243px;}
.ws11{word-spacing:21.100787px;}
.ws163{word-spacing:21.160562px;}
.ws33{word-spacing:21.220338px;}
.ws1c9{word-spacing:21.232346px;}
.ws1c{word-spacing:21.280114px;}
.ws85{word-spacing:21.339889px;}
.ws6b{word-spacing:21.399665px;}
.ws1ff{word-spacing:21.471449px;}
.ws60{word-spacing:21.519216px;}
.ws1b1{word-spacing:21.567091px;}
.wsc3{word-spacing:21.578992px;}
.ws65{word-spacing:21.638767px;}
.ws1f4{word-spacing:21.662732px;}
.wsd8{word-spacing:21.698543px;}
.ws226{word-spacing:21.710552px;}
.ws1e2{word-spacing:21.726413px;}
.ws96{word-spacing:21.758318px;}
.ws1f1{word-spacing:21.758373px;}
.ws1f3{word-spacing:21.806194px;}
.ws2c{word-spacing:21.818094px;}
.ws1bb{word-spacing:21.854014px;}
.ws8f{word-spacing:21.877870px;}
.ws1c0{word-spacing:21.901835px;}
.ws32{word-spacing:21.937645px;}
.ws211{word-spacing:21.949655px;}
.ws1ad{word-spacing:21.996589px;}
.ws6a{word-spacing:21.997421px;}
.ws1b9{word-spacing:21.997476px;}
.ws18a{word-spacing:22.045297px;}
.ws95{word-spacing:22.057196px;}
.ws8d{word-spacing:22.116972px;}
.ws173{word-spacing:22.140938px;}
.ws63{word-spacing:22.176748px;}
.wse5{word-spacing:22.236523px;}
.ws1e9{word-spacing:22.284400px;}
.ws61{word-spacing:22.296299px;}
.ws113{word-spacing:22.329157px;}
.ws1ca{word-spacing:22.332220px;}
.ws45{word-spacing:22.356074px;}
.ws112{word-spacing:22.402240px;}
.ws1b{word-spacing:22.415850px;}
.ws212{word-spacing:22.427861px;}
.wsdd{word-spacing:22.475626px;}
.ws3a{word-spacing:22.535401px;}
.ws1fe{word-spacing:22.571323px;}
.wsd2{word-spacing:22.595177px;}
.ws6d{word-spacing:22.654952px;}
.ws1c7{word-spacing:22.666964px;}
.ws8c{word-spacing:22.714728px;}
.ws225{word-spacing:22.762606px;}
.ws9c{word-spacing:22.774504px;}
.ws13a{word-spacing:22.834279px;}
.ws215{word-spacing:22.850317px;}
.ws214{word-spacing:22.858247px;}
.ws10d{word-spacing:22.894055px;}
.wsee{word-spacing:22.906067px;}
.ws30{word-spacing:22.953830px;}
.ws6c{word-spacing:23.013606px;}
.ws18b{word-spacing:23.049529px;}
.wscd{word-spacing:23.066190px;}
.ws4b{word-spacing:23.073382px;}
.ws1c1{word-spacing:23.097350px;}
.ws130{word-spacing:23.133157px;}
.ws172{word-spacing:23.145170px;}
.ws71{word-spacing:23.192933px;}
.ws192{word-spacing:23.192991px;}
.ws5b{word-spacing:23.252708px;}
.ws1ba{word-spacing:23.288632px;}
.ws5d{word-spacing:23.312484px;}
.ws1ea{word-spacing:23.336453px;}
.wsd7{word-spacing:23.372260px;}
.wsc4{word-spacing:23.432035px;}
.ws86{word-spacing:23.491811px;}
.ws42{word-spacing:23.551586px;}
.ws20d{word-spacing:23.575556px;}
.ws2a{word-spacing:23.611362px;}
.ws1eb{word-spacing:23.623376px;}
.ws79{word-spacing:23.671138px;}
.ws1c8{word-spacing:23.671197px;}
.ws7a{word-spacing:23.730913px;}
.ws1ec{word-spacing:23.761306px;}
.ws18d{word-spacing:23.766838px;}
.ws38{word-spacing:23.790689px;}
.wsd9{word-spacing:23.850464px;}
.wsef{word-spacing:23.862479px;}
.ws46{word-spacing:23.910240px;}
.ws15{word-spacing:23.970016px;}
.ws34{word-spacing:24.029791px;}
.ws7b{word-spacing:24.089567px;}
.wse3{word-spacing:24.149342px;}
.ws193{word-spacing:24.149403px;}
.ws48{word-spacing:24.209118px;}
.ws2e{word-spacing:24.268894px;}
.ws16b{word-spacing:24.292865px;}
.wsfd{word-spacing:24.328669px;}
.ws216{word-spacing:24.388506px;}
.ws12f{word-spacing:24.448220px;}
.ws28{word-spacing:24.507996px;}
.ws228{word-spacing:24.531968px;}
.wse9{word-spacing:24.567772px;}
.ws18c{word-spacing:24.675430px;}
.ws7c{word-spacing:24.687323px;}
.ws18f{word-spacing:24.723250px;}
.wse0{word-spacing:24.747098px;}
.ws102{word-spacing:24.806874px;}
.ws224{word-spacing:24.818891px;}
.ws1ed{word-spacing:24.866712px;}
.ws1a5{word-spacing:24.914533px;}
.ws56{word-spacing:24.926425px;}
.ws14b{word-spacing:25.045976px;}
.ws195{word-spacing:25.105815px;}
.ws16c{word-spacing:25.153636px;}
.ws43{word-spacing:25.165528px;}
.ws5f{word-spacing:25.225303px;}
.ws229{word-spacing:25.249277px;}
.ws69{word-spacing:25.285079px;}
.ws64{word-spacing:25.344854px;}
.ws19e{word-spacing:25.347928px;}
.wsc7{word-spacing:25.404630px;}
.wsdc{word-spacing:25.464406px;}
.ws89{word-spacing:25.524181px;}
.ws190{word-spacing:25.536200px;}
.ws77{word-spacing:25.643732px;}
.ws1ee{word-spacing:25.679662px;}
.wsd5{word-spacing:25.703508px;}
.ws8b{word-spacing:25.763284px;}
.ws1a6{word-spacing:25.775303px;}
.ws9a{word-spacing:25.823059px;}
.ws16e{word-spacing:25.823124px;}
.ws4{word-spacing:25.918765px;}
.ws129{word-spacing:25.942610px;}
.ws196{word-spacing:25.966586px;}
.ws94{word-spacing:26.002386px;}
.wsed{word-spacing:26.062162px;}
.ws16d{word-spacing:26.110048px;}
.ws41{word-spacing:26.121937px;}
.ws1e{word-spacing:26.181713px;}
.wsb6{word-spacing:26.209957px;}
.wsb8{word-spacing:26.241488px;}
.ws44{word-spacing:26.301264px;}
.ws17c{word-spacing:26.301330px;}
.ws2b{word-spacing:26.361040px;}
.wsc6{word-spacing:26.378790px;}
.ws55{word-spacing:26.420815px;}
.wsff{word-spacing:26.480591px;}
.wsd6{word-spacing:26.540366px;}
.ws4a{word-spacing:26.600142px;}
.ws88{word-spacing:26.659918px;}
.ws70{word-spacing:26.719693px;}
.wseb{word-spacing:26.813407px;}
.wsea{word-spacing:26.839244px;}
.wsdf{word-spacing:26.899020px;}
.ws9f{word-spacing:26.958796px;}
.ws1ef{word-spacing:26.970818px;}
.ws72{word-spacing:27.018571px;}
.ws16f{word-spacing:27.066460px;}
.ws12a{word-spacing:27.078347px;}
.ws9d{word-spacing:27.138122px;}
.ws53{word-spacing:27.257674px;}
.wsec{word-spacing:27.317449px;}
.ws1aa{word-spacing:27.353383px;}
.ws98{word-spacing:27.377225px;}
.ws14a{word-spacing:27.556552px;}
.ws132{word-spacing:27.616327px;}
.ws17b{word-spacing:27.688127px;}
.ws123{word-spacing:27.735878px;}
.ws1cb{word-spacing:27.831589px;}
.wsa0{word-spacing:27.855430px;}
.ws8e{word-spacing:27.974981px;}
.ws15b{word-spacing:28.034756px;}
.ws84{word-spacing:28.094532px;}
.ws1e0{word-spacing:28.118513px;}
.ws68{word-spacing:28.154308px;}
.ws66{word-spacing:28.176524px;}
.ws127{word-spacing:28.214083px;}
.ws1d7{word-spacing:28.309795px;}
.ws137{word-spacing:28.393410px;}
.ws99{word-spacing:28.453186px;}
.ws1cc{word-spacing:28.453257px;}
.ws73{word-spacing:28.572737px;}
.wsf1{word-spacing:28.596719px;}
.ws1d2{word-spacing:28.612124px;}
.ws120{word-spacing:28.632512px;}
.ws1d1{word-spacing:28.644539px;}
.ws11f{word-spacing:28.662956px;}
.ws10a{word-spacing:28.692040px;}
.ws10b{word-spacing:28.692288px;}
.ws1a9{word-spacing:28.837361px;}
.ws1d8{word-spacing:28.883642px;}
.ws67{word-spacing:28.991166px;}
.ws5a{word-spacing:29.050942px;}
.ws97{word-spacing:29.110717px;}
.ws80{word-spacing:29.170493px;}
.ws11c{word-spacing:29.290044px;}
.ws164{word-spacing:29.469371px;}
.wsd4{word-spacing:29.588922px;}
.ws0{word-spacing:29.708473px;}
.wsd{word-spacing:29.814808px;}
.ws39{word-spacing:29.815408px;}
.ws104{word-spacing:29.829892px;}
.ws15a{word-spacing:29.865311px;}
.ws3{word-spacing:29.875957px;}
.ws122{word-spacing:29.885372px;}
.ws1e1{word-spacing:30.079157px;}
.ws17e{word-spacing:30.114486px;}
.ws1a8{word-spacing:30.366081px;}
.ws19f{word-spacing:30.509543px;}
.ws138{word-spacing:30.591808px;}
.ws139{word-spacing:30.605107px;}
.ws1a7{word-spacing:30.844287px;}
.ws1a1{word-spacing:31.274672px;}
.wse4{word-spacing:31.501741px;}
.ws1d3{word-spacing:31.609417px;}
.ws1d9{word-spacing:31.627124px;}
.ws105{word-spacing:31.740844px;}
.ws17d{word-spacing:31.814929px;}
.wsa1{word-spacing:31.860395px;}
.ws21d{word-spacing:32.518008px;}
.ws162{word-spacing:32.816804px;}
.ws1a0{word-spacing:33.283138px;}
.wsf4{word-spacing:33.427355px;}
.ws1d0{word-spacing:34.739993px;}
.ws1cd{word-spacing:34.956859px;}
.ws1e3{word-spacing:35.100320px;}
.ws1da{word-spacing:35.387244px;}
.ws21c{word-spacing:36.008912px;}
.wsf0{word-spacing:38.208659px;}
.ws1cf{word-spacing:39.260713px;}
.ws1e4{word-spacing:39.499816px;}
.ws1e5{word-spacing:41.795204px;}
.ws1e6{word-spacing:48.490088px;}
.ws158{word-spacing:62.068764px;}
.ws13b{word-spacing:62.094358px;}
.ws15f{word-spacing:62.106884px;}
.ws15e{word-spacing:62.107424px;}
.ws14f{word-spacing:69.602364px;}
.ws150{word-spacing:71.455408px;}
.ws140{word-spacing:72.761328px;}
.ws141{word-spacing:86.184614px;}
.ws151{word-spacing:88.647215px;}
.ws15c{word-spacing:93.459958px;}
.ws15d{word-spacing:94.817624px;}
.ws14e{word-spacing:120.804284px;}
.ws13d{word-spacing:125.286884px;}
.ws14c{word-spacing:129.770024px;}
.ws13c{word-spacing:129.770624px;}
.ws14d{word-spacing:138.952484px;}
.ws13e{word-spacing:155.922824px;}
.ws159{word-spacing:199.177424px;}
.ws124{word-spacing:218.435591px;}
.ws145{word-spacing:225.162884px;}
.ws146{word-spacing:229.646024px;}
.ws143{word-spacing:229.646084px;}
.ws148{word-spacing:229.646624px;}
.ws142{word-spacing:234.129224px;}
.ws147{word-spacing:243.992084px;}
.ws144{word-spacing:243.992624px;}
.ws154{word-spacing:257.610460px;}
.ws156{word-spacing:274.048750px;}
.ws155{word-spacing:274.049350px;}
.wsdb{word-spacing:294.693025px;}
.wsfb{word-spacing:296.105810px;}
.ws166{word-spacing:300.215084px;}
.ws165{word-spacing:309.180824px;}
.ws153{word-spacing:353.508966px;}
.ws126{word-spacing:360.984848px;}
.ws11d{word-spacing:373.772591px;}
.ws114{word-spacing:451.588991px;}
.wsbd{word-spacing:487.230916px;}
.ws117{word-spacing:492.383591px;}
.ws110{word-spacing:510.307391px;}
.wsbc{word-spacing:515.072591px;}
.ws109{word-spacing:537.223991px;}
.wsba{word-spacing:551.268191px;}
.ws108{word-spacing:573.534791px;}
.wse7{word-spacing:598.935191px;}
.wsfa{word-spacing:603.195580px;}
.ws10c{word-spacing:717.231191px;}
.wscf{word-spacing:736.480391px;}
._21{margin-left:-1443.366325px;}
._1e{margin-left:-1399.216433px;}
._22{margin-left:-1303.240304px;}
._30{margin-left:-59.264764px;}
._74{margin-left:-26.258807px;}
._71{margin-left:-25.102742px;}
._1{margin-left:-7.651277px;}
._4{margin-left:-5.690651px;}
._2{margin-left:-3.777832px;}
._0{margin-left:-1.912819px;}
._5{width:1.004228px;}
._8{width:2.391011px;}
._c{width:3.670238px;}
._20{width:4.985159px;}
._3{width:6.347735px;}
._1f{width:8.423730px;}
._26{width:10.877698px;}
._2a{width:12.773263px;}
._28{width:14.443894px;}
._23{width:15.601432px;}
._12{width:16.689350px;}
._14{width:18.721720px;}
._7{width:20.610683px;}
._6{width:21.854019px;}
._9{width:23.432089px;}
._11{width:25.105752px;}
._b{width:26.420828px;}
._1c{width:28.154308px;}
._15{width:29.290044px;}
._a{width:31.131206px;}
._f{width:32.517926px;}
._1a{width:34.562254px;}
._24{width:35.656896px;}
._6c{width:36.702218px;}
._e{width:37.718404px;}
._10{width:39.093242px;}
._19{width:40.527857px;}
._2f{width:41.603818px;}
._18{width:43.229716px;}
._1d{width:44.233944px;}
._13{width:45.489232px;}
._25{width:46.923846px;}
._2b{width:47.940031px;}
._2d{width:49.864808px;}
._73{width:51.431887px;}
._1b{width:52.542752px;}
._17{width:54.096918px;}
._35{width:55.123009px;}
._6d{width:56.248840px;}
._72{width:57.948910px;}
._55{width:62.186560px;}
._69{width:64.408800px;}
._66{width:66.394521px;}
._6a{width:67.558277px;}
._50{width:73.583764px;}
._4a{width:75.580481px;}
._3c{width:76.999063px;}
._68{width:79.352400px;}
._67{width:81.594000px;}
._44{width:87.175032px;}
._65{width:88.721983px;}
._64{width:90.394800px;}
._62{width:91.518520px;}
._2e{width:93.243733px;}
._61{width:95.117875px;}
._3d{width:96.603965px;}
._2c{width:97.689310px;}
._45{width:100.423034px;}
._60{width:104.286406px;}
._16{width:117.094129px;}
._63{width:119.499742px;}
._29{width:124.607858px;}
._3e{width:129.830400px;}
._5c{width:131.394924px;}
._4e{width:133.529812px;}
._51{width:135.082378px;}
._47{width:136.209308px;}
._4f{width:138.209224px;}
._4d{width:140.434953px;}
._4c{width:144.175800px;}
._d{width:148.416412px;}
._41{width:152.240553px;}
._3f{width:155.982000px;}
._42{width:162.607260px;}
._6e{width:166.924565px;}
._40{width:171.574200px;}
._6b{width:185.245646px;}
._5b{width:199.237200px;}
._34{width:202.289897px;}
._5e{width:223.112057px;}
._59{width:226.198837px;}
._48{width:234.189000px;}
._46{width:248.717480px;}
._4b{width:256.339565px;}
._39{width:260.762048px;}
._53{width:265.602926px;}
._57{width:268.926492px;}
._54{width:273.937210px;}
._70{width:286.176857px;}
._31{width:294.740846px;}
._27{width:296.153630px;}
._32{width:300.610092px;}
._56{width:303.996925px;}
._33{width:306.509846px;}
._6f{width:309.240600px;}
._3a{width:329.957698px;}
._5f{width:352.299355px;}
._58{width:361.040692px;}
._5a{width:397.515895px;}
._3b{width:412.494956px;}
._52{width:425.777666px;}
._38{width:445.210895px;}
._49{width:572.229956px;}
._43{width:582.856556px;}
._36{width:607.341869px;}
._37{width:608.752085px;}
._5d{width:637.395378px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:29.887800px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:123.265200px;}
.y188{bottom:136.714650px;}
.y1f0{bottom:141.197850px;}
.y29{bottom:141.198000px;}
.y93{bottom:141.198150px;}
.y187{bottom:149.288250px;}
.y28{bottom:156.141900px;}
.yc9{bottom:159.130650px;}
.y59{bottom:159.130800px;}
.y2b9{bottom:159.532650px;}
.y157{bottom:160.259850px;}
.yda{bottom:162.330300px;}
.y1c8{bottom:162.866700px;}
.y2d2{bottom:163.987650px;}
.y289{bottom:168.097050px;}
.y27{bottom:171.085950px;}
.y2b8{bottom:174.476700px;}
.y186{bottom:174.808650px;}
.yc8{bottom:177.063450px;}
.y7e{bottom:177.063600px;}
.y156{bottom:178.192650px;}
.yd9{bottom:180.263100px;}
.y1c7{bottom:180.799500px;}
.ya3{bottom:181.189950px;}
.y288{bottom:183.041100px;}
.y26{bottom:185.566650px;}
.y58{bottom:187.014450px;}
.y2b7{bottom:189.420600px;}
.y21c{bottom:190.287450px;}
.y2d1{bottom:192.007500px;}
.y185{bottom:192.741300px;}
.y1ef{bottom:194.996100px;}
.y7d{bottom:194.996250px;}
.y92{bottom:194.996400px;}
.y155{bottom:196.125300px;}
.y287{bottom:197.985000px;}
.yd8{bottom:198.195900px;}
.y1c6{bottom:199.479450px;}
.y25{bottom:200.510550px;}
.y111{bottom:201.013200px;}
.y2b6{bottom:204.364650px;}
.y57{bottom:204.947250px;}
.y2d0{bottom:206.951400px;}
.y21b{bottom:208.220100px;}
.y184{bottom:210.674100px;}
.yc7{bottom:212.928900px;}
.y7c{bottom:212.929050px;}
.yd7{bottom:216.128550px;}
.y1c5{bottom:217.412250px;}
.y110{bottom:218.945850px;}
.y2b5{bottom:219.308550px;}
.y2cf{bottom:221.895300px;}
.y242{bottom:221.895450px;}
.y56{bottom:222.880050px;}
.y154{bottom:223.024500px;}
.yc6{bottom:225.708450px;}
.y286{bottom:227.872950px;}
.y183{bottom:228.606900px;}
.yc5{bottom:230.861700px;}
.y7b{bottom:230.861850px;}
.yd6{bottom:234.061350px;}
.y2b4{bottom:234.252450px;}
.y24{bottom:235.326750px;}
.y1c4{bottom:235.942800px;}
.y2ce{bottom:236.839350px;}
.y10f{bottom:236.878650px;}
.y91{bottom:239.828250px;}
.y55{bottom:240.812700px;}
.y285{bottom:242.816850px;}
.y137{bottom:245.100150px;}
.y182{bottom:246.539550px;}
.y1ee{bottom:248.794350px;}
.y7a{bottom:248.794500px;}
.y2b3{bottom:249.196500px;}
.y2cd{bottom:251.783250px;}
.yd5{bottom:251.994150px;}
.y23{bottom:253.259550px;}
.y241{bottom:253.305750px;}
.y1c3{bottom:254.473200px;}
.y284{bottom:257.760900px;}
.y54{bottom:258.745500px;}
.y2b2{bottom:264.140400px;}
.y181{bottom:264.472350px;}
.y1ed{bottom:266.727150px;}
.y79{bottom:266.727300px;}
.y14e{bottom:268.723650px;}
.yd4{bottom:269.926800px;}
.y21a{bottom:270.473400px;}
.y22{bottom:271.192350px;}
.y240{bottom:271.238400px;}
.y14d{bottom:272.418000px;}
.y283{bottom:272.704800px;}
.ya2{bottom:276.419100px;}
.y53{bottom:276.678300px;}
.y10e{bottom:277.144350px;}
.y2b1{bottom:279.084450px;}
.y1aa{bottom:279.426600px;}
.y2cc{bottom:281.671200px;}
.y90{bottom:281.671350px;}
.y180{bottom:282.405150px;}
.yc4{bottom:284.659950px;}
.y78{bottom:284.660100px;}
.y23f{bottom:285.476850px;}
.y282{bottom:287.648850px;}
.yd3{bottom:287.859600px;}
.y219{bottom:288.323250px;}
.y21{bottom:289.125000px;}
.y23e{bottom:289.171200px;}
.y14c{bottom:289.385550px;}
.y14b{bottom:293.080050px;}
.y1c2{bottom:293.386800px;}
.y2b0{bottom:294.028350px;}
.ya1{bottom:294.351900px;}
.y52{bottom:294.610950px;}
.y2cb{bottom:296.615100px;}
.y153{bottom:297.996000px;}
.y8f{bottom:299.604000px;}
.y17f{bottom:300.337800px;}
.y1ec{bottom:302.592600px;}
.y77{bottom:302.592750px;}
.y218{bottom:306.255900px;}
.y20{bottom:307.057800px;}
.y23d{bottom:307.840800px;}
.y2af{bottom:308.972250px;}
.y1c1{bottom:311.319450px;}
.y2ca{bottom:311.559150px;}
.y14a{bottom:312.108600px;}
.ya0{bottom:312.284550px;}
.y51{bottom:312.543750px;}
.yd2{bottom:315.004200px;}
.y152{bottom:315.928650px;}
.y281{bottom:317.536650px;}
.y8e{bottom:317.536800px;}
.y17e{bottom:318.270600px;}
.y1a9{bottom:319.526100px;}
.y1eb{bottom:320.525400px;}
.y76{bottom:320.525550px;}
.y2ae{bottom:323.916300px;}
.y217{bottom:324.188700px;}
.y1f{bottom:324.990600px;}
.y23c{bottom:325.773450px;}
.y2c9{bottom:326.503050px;}
.y1c0{bottom:329.252250px;}
.y149{bottom:330.041400px;}
.y9f{bottom:330.217350px;}
.y50{bottom:330.476550px;}
.y280{bottom:332.480700px;}
.yd1{bottom:332.937000px;}
.y151{bottom:333.861450px;}
.y8d{bottom:335.469600px;}
.yc3{bottom:338.458200px;}
.y75{bottom:338.458350px;}
.y2ad{bottom:338.860200px;}
.y2c8{bottom:341.447100px;}
.y216{bottom:342.121500px;}
.y1e{bottom:342.923250px;}
.y1bf{bottom:347.185050px;}
.y27f{bottom:347.424600px;}
.y17d{bottom:347.791950px;}
.y9e{bottom:348.150150px;}
.y4f{bottom:348.409200px;}
.yd0{bottom:350.869800px;}
.y150{bottom:351.794250px;}
.y23b{bottom:353.319900px;}
.y8c{bottom:353.402250px;}
.y2ac{bottom:353.804250px;}
.y1ea{bottom:356.390850px;}
.y74{bottom:356.391000px;}
.y215{bottom:360.054150px;}
.y1d{bottom:360.856050px;}
.y27e{bottom:362.368650px;}
.y1be{bottom:365.117850px;}
.y17c{bottom:365.724750px;}
.y9d{bottom:366.082800px;}
.y4e{bottom:366.342000px;}
.y1a5{bottom:367.620450px;}
.y2ab{bottom:368.748150px;}
.ycf{bottom:368.802450px;}
.y148{bottom:370.307100px;}
.y23a{bottom:371.252700px;}
.y2c7{bottom:371.334900px;}
.y8b{bottom:371.335050px;}
.y1e9{bottom:374.323650px;}
.y73{bottom:374.323800px;}
.y27d{bottom:377.312550px;}
.y214{bottom:377.986950px;}
.y1c{bottom:378.788850px;}
.yc2{bottom:383.670600px;}
.y2aa{bottom:383.692050px;}
.y9c{bottom:384.015600px;}
.y4d{bottom:384.274800px;}
.y1a4{bottom:385.553100px;}
.y2c6{bottom:386.278950px;}
.yce{bottom:386.735250px;}
.y17b{bottom:388.712850px;}
.y239{bottom:389.185350px;}
.y8a{bottom:389.267850px;}
.yf2{bottom:392.256450px;}
.y72{bottom:392.256600px;}
.y213{bottom:395.919750px;}
.y1b{bottom:396.721500px;}
.y136{bottom:398.418750px;}
.y2a9{bottom:398.636100px;}
.y1bd{bottom:398.911050px;}
.y2c5{bottom:401.222850px;}
.yc1{bottom:401.603250px;}
.y9b{bottom:401.948400px;}
.y261{bottom:402.013950px;}
.y4c{bottom:402.207450px;}
.y1a3{bottom:403.485900px;}
.y178{bottom:406.344750px;}
.y238{bottom:407.118150px;}
.y89{bottom:407.200500px;}
.y1e8{bottom:408.579450px;}
.y71{bottom:410.189250px;}
.y2a8{bottom:413.580000px;}
.y212{bottom:413.852400px;}
.ycd{bottom:413.879850px;}
.y1a{bottom:414.654300px;}
.y2c4{bottom:416.166900px;}
.y9a{bottom:419.881050px;}
.y260{bottom:419.946600px;}
.y4b{bottom:420.140250px;}
.y17a{bottom:420.541650px;}
.y1a2{bottom:421.418700px;}
.y27c{bottom:422.144400px;}
.yc0{bottom:422.769450px;}
.y179{bottom:425.024700px;}
.y237{bottom:425.050950px;}
.y88{bottom:425.133300px;}
.y1e7{bottom:426.512250px;}
.y70{bottom:428.122050px;}
.y2a7{bottom:428.524050px;}
.y2c3{bottom:431.110800px;}
.y211{bottom:431.785200px;}
.ycc{bottom:431.812650px;}
.y19{bottom:432.587100px;}
.y1bc{bottom:432.704250px;}
.y27b{bottom:437.088450px;}
.y99{bottom:437.813850px;}
.y25f{bottom:437.879400px;}
.y4a{bottom:438.073050px;}
.y1a1{bottom:439.351350px;}
.ybf{bottom:440.702100px;}
.y12f{bottom:442.361850px;}
.y10d{bottom:442.365600px;}
.y177{bottom:442.749300px;}
.y236{bottom:442.983600px;}
.y87{bottom:443.066100px;}
.y2a6{bottom:443.467950px;}
.y1e6{bottom:444.444900px;}
.y2c2{bottom:446.054700px;}
.y6f{bottom:446.054850px;}
.y210{bottom:450.315750px;}
.y18{bottom:450.519750px;}
.y1bb{bottom:450.637050px;}
.y27a{bottom:452.032350px;}
.y98{bottom:455.746650px;}
.y25e{bottom:455.812200px;}
.y49{bottom:456.005700px;}
.y1a0{bottom:457.284150px;}
.y2a5{bottom:458.411850px;}
.ybe{bottom:458.634900px;}
.ycb{bottom:458.711850px;}
.y10c{bottom:460.298400px;}
.y235{bottom:460.916400px;}
.y86{bottom:460.998750px;}
.y1e5{bottom:462.377700px;}
.y6e{bottom:463.987500px;}
.y176{bottom:465.395100px;}
.y174{bottom:465.737550px;}
.y12e{bottom:466.219050px;}
.yf1{bottom:466.815900px;}
.y279{bottom:466.976250px;}
.y20f{bottom:468.248400px;}
.y17{bottom:468.452550px;}
.y1ba{bottom:468.569850px;}
.y2a4{bottom:473.355900px;}
.y97{bottom:473.679300px;}
.y25d{bottom:473.744850px;}
.y48{bottom:473.938500px;}
.y19f{bottom:475.216950px;}
.y2c1{bottom:475.942650px;}
.y12d{bottom:476.469900px;}
.ybd{bottom:476.567700px;}
.y10b{bottom:478.231050px;}
.y234{bottom:478.849200px;}
.y85{bottom:478.931550px;}
.y1e4{bottom:480.310500px;}
.y6d{bottom:481.920300px;}
.y171{bottom:483.369300px;}
.yf0{bottom:484.748550px;}
.y16{bottom:486.385350px;}
.y1b9{bottom:486.502500px;}
.y20e{bottom:486.778950px;}
.y2a3{bottom:488.299800px;}
.y2c0{bottom:490.886700px;}
.y96{bottom:491.612100px;}
.y25c{bottom:491.677650px;}
.y47{bottom:491.871300px;}
.y19e{bottom:493.149600px;}
.ybc{bottom:494.500350px;}
.y10a{bottom:496.163850px;}
.y233{bottom:496.781850px;}
.y278{bottom:496.864200px;}
.y84{bottom:496.864350px;}
.y173{bottom:497.566200px;}
.y6c{bottom:499.853100px;}
.y172{bottom:502.049400px;}
.yef{bottom:502.681350px;}
.y2a2{bottom:503.243850px;}
.y175{bottom:503.668350px;}
.y15{bottom:504.318000px;}
.y1b8{bottom:504.435300px;}
.y2bf{bottom:505.830600px;}
.yca{bottom:506.826000px;}
.y12c{bottom:509.523450px;}
.y25b{bottom:509.610450px;}
.y46{bottom:509.803950px;}
.y19d{bottom:511.082400px;}
.y277{bottom:511.808250px;}
.y109{bottom:514.096650px;}
.y232{bottom:514.714650px;}
.y83{bottom:514.797000px;}
.ybb{bottom:515.666550px;}
.y6b{bottom:517.785750px;}
.y2a1{bottom:518.187750px;}
.y2be{bottom:520.774500px;}
.y14{bottom:522.250800px;}
.y1b7{bottom:522.368100px;}
.y170{bottom:524.298600px;}
.y147{bottom:524.633400px;}
.y276{bottom:526.752150px;}
.y12b{bottom:527.456250px;}
.y25a{bottom:527.543100px;}
.y45{bottom:527.736750px;}
.yee{bottom:531.503700px;}
.y108{bottom:532.029300px;}
.y231{bottom:532.647450px;}
.y82{bottom:532.729800px;}
.y2a0{bottom:533.131650px;}
.y95{bottom:534.509850px;}
.y6a{bottom:535.718550px;}
.yba{bottom:536.832600px;}
.y13{bottom:540.183600px;}
.y19c{bottom:540.244500px;}
.y1b6{bottom:540.300750px;}
.y275{bottom:541.696050px;}
.yed{bottom:541.754550px;}
.y1a8{bottom:542.072400px;}
.y16f{bottom:542.231400px;}
.y20d{bottom:542.572200px;}
.y12a{bottom:545.389050px;}
.y259{bottom:545.475900px;}
.y44{bottom:545.669550px;}
.y29f{bottom:548.075700px;}
.y107{bottom:549.962100px;}
.y2bd{bottom:550.662450px;}
.y81{bottom:550.662600px;}
.y69{bottom:553.651350px;}
.y1e3{bottom:553.694100px;}
.yb9{bottom:554.765250px;}
.y274{bottom:556.640100px;}
.y12{bottom:558.116250px;}
.y19b{bottom:558.177300px;}
.y1b5{bottom:558.233550px;}
.y20c{bottom:560.505000px;}
.y29e{bottom:563.019600px;}
.y129{bottom:563.321850px;}
.y258{bottom:563.408700px;}
.y16e{bottom:565.427100px;}
.y2bc{bottom:565.606500px;}
.y16c{bottom:565.871250px;}
.y106{bottom:567.894900px;}
.y80{bottom:568.595250px;}
.y68{bottom:571.584000px;}
.y1e2{bottom:571.626750px;}
.y43{bottom:572.568600px;}
.yb8{bottom:572.698050px;}
.y11{bottom:576.049050px;}
.y19a{bottom:576.110100px;}
.y1b4{bottom:576.166350px;}
.y20b{bottom:578.437650px;}
.y16b{bottom:578.445000px;}
.yec{bottom:579.997350px;}
.y29d{bottom:580.550400px;}
.y128{bottom:581.254500px;}
.y257{bottom:581.341350px;}
.y1a7{bottom:582.338100px;}
.y105{bottom:585.827550px;}
.y7f{bottom:586.528050px;}
.y16d{bottom:588.554700px;}
.y67{bottom:589.516800px;}
.y1e1{bottom:589.559550px;}
.y230{bottom:591.462300px;}
.yb7{bottom:593.864100px;}
.y199{bottom:594.042750px;}
.y1b3{bottom:594.099000px;}
.y2bb{bottom:595.494300px;}
.y29c{bottom:595.494450px;}
.y20a{bottom:596.287500px;}
.y127{bottom:599.187300px;}
.y256{bottom:599.274150px;}
.y273{bottom:601.471950px;}
.y10{bottom:602.948250px;}
.y104{bottom:603.760350px;}
.y1e0{bottom:604.063500px;}
.y42{bottom:604.460850px;}
.y66{bottom:607.449600px;}
.y1df{bottom:607.758000px;}
.yeb{bottom:608.063850px;}
.yea{bottom:608.535000px;}
.y22f{bottom:609.394950px;}
.y29b{bottom:610.438350px;}
.yb6{bottom:611.796900px;}
.y1b2{bottom:612.031800px;}
.ye9{bottom:612.229350px;}
.y16a{bottom:612.298350px;}
.y209{bottom:614.817900px;}
.y272{bottom:616.416000px;}
.y126{bottom:617.120100px;}
.y14f{bottom:617.188800px;}
.y255{bottom:617.206950px;}
.y198{bottom:620.941950px;}
.y103{bottom:621.693150px;}
.y41{bottom:622.393500px;}
.y1de{bottom:623.231100px;}
.y65{bottom:625.382250px;}
.y1dd{bottom:626.925600px;}
.y22e{bottom:627.327750px;}
.yb5{bottom:629.729700px;}
.y1b1{bottom:629.964600px;}
.y169{bottom:630.231150px;}
.y271{bottom:631.359900px;}
.y125{bottom:635.052750px;}
.y254{bottom:635.139600px;}
.y208{bottom:636.934950px;}
.y102{bottom:639.625800px;}
.y40{bottom:640.326300px;}
.y1dc{bottom:642.398700px;}
.y64{bottom:643.315050px;}
.yf{bottom:643.335150px;}
.y22d{bottom:646.007700px;}
.y1db{bottom:646.093200px;}
.y270{bottom:646.303800px;}
.yb4{bottom:647.662350px;}
.ye8{bottom:648.114300px;}
.y168{bottom:648.163800px;}
.y124{bottom:652.985550px;}
.y253{bottom:653.072400px;}
.y197{bottom:654.660450px;}
.y29a{bottom:655.270200px;}
.y3f{bottom:658.259100px;}
.ye{bottom:658.279050px;}
.y63{bottom:661.247850px;}
.y1da{bottom:661.566300px;}
.y1b0{bottom:663.757800px;}
.y22c{bottom:663.940500px;}
.y1d9{bottom:665.260800px;}
.yb3{bottom:665.595150px;}
.y167{bottom:666.096600px;}
.y2ba{bottom:670.214100px;}
.y299{bottom:670.214250px;}
.y123{bottom:670.918350px;}
.y252{bottom:671.005200px;}
.y135{bottom:671.910150px;}
.y196{bottom:672.593250px;}
.yd{bottom:673.223100px;}
.y101{bottom:674.832450px;}
.y3e{bottom:676.191750px;}
.ye7{bottom:678.220800px;}
.y62{bottom:679.180500px;}
.y1d8{bottom:680.553450px;}
.y1af{bottom:681.690600px;}
.y22b{bottom:682.471050px;}
.yb2{bottom:683.527950px;}
.y166{bottom:684.029400px;}
.y1d7{bottom:684.247800px;}
.y298{bottom:685.158150px;}
.yc{bottom:688.167000px;}
.y122{bottom:688.851000px;}
.y251{bottom:688.937850px;}
.y207{bottom:688.992150px;}
.y134{bottom:689.842800px;}
.y195{bottom:690.525900px;}
.y26f{bottom:691.135650px;}
.y100{bottom:692.765250px;}
.y3d{bottom:694.124550px;}
.y146{bottom:696.323850px;}
.y61{bottom:697.113300px;}
.y1ae{bottom:699.623250px;}
.y297{bottom:700.102050px;}
.y22a{bottom:700.403700px;}
.yb1{bottom:701.460600px;}
.y1d6{bottom:702.886350px;}
.yb{bottom:703.111050px;}
.y26e{bottom:706.079700px;}
.y121{bottom:706.783800px;}
.y250{bottom:706.870650px;}
.y206{bottom:706.924950px;}
.ye6{bottom:708.327450px;}
.y194{bottom:708.458700px;}
.y165{bottom:709.856400px;}
.yff{bottom:710.697900px;}
.y3c{bottom:712.057350px;}
.y164{bottom:713.550750px;}
.y60{bottom:715.046100px;}
.y1ad{bottom:717.556050px;}
.ya{bottom:718.054950px;}
.y229{bottom:718.934250px;}
.yb0{bottom:719.393400px;}
.y1d5{bottom:720.819000px;}
.y26d{bottom:721.023600px;}
.y144{bottom:723.304350px;}
.y120{bottom:724.716600px;}
.y24f{bottom:724.803450px;}
.y205{bottom:724.857600px;}
.ye4{bottom:726.260100px;}
.y133{bottom:727.119750px;}
.ye5{bottom:728.082450px;}
.yfe{bottom:728.630700px;}
.y3b{bottom:729.990000px;}
.y5f{bottom:732.978750px;}
.y9{bottom:732.998850px;}
.y193{bottom:733.799400px;}
.y26c{bottom:735.967650px;}
.y228{bottom:736.867050px;}
.y1d4{bottom:738.751800px;}
.y163{bottom:739.071000px;}
.yaf{bottom:740.559450px;}
.y140{bottom:741.087600px;}
.y143{bottom:741.237000px;}
.y132{bottom:742.063650px;}
.y11f{bottom:742.649250px;}
.y24e{bottom:742.736100px;}
.y204{bottom:742.790400px;}
.y141{bottom:744.225900px;}
.y296{bottom:744.934050px;}
.ye3{bottom:745.079100px;}
.y3a{bottom:747.922800px;}
.y8{bottom:747.942900px;}
.y5e{bottom:750.911550px;}
.yfd{bottom:753.838800px;}
.y227{bottom:755.397450px;}
.y1d3{bottom:756.684600px;}
.y162{bottom:757.003800px;}
.y131{bottom:757.007700px;}
.y203{bottom:757.294350px;}
.yae{bottom:758.492250px;}
.y192{bottom:759.140100px;}
.y142{bottom:759.169800px;}
.y295{bottom:759.877950px;}
.y11e{bottom:760.582050px;}
.y24d{bottom:760.668900px;}
.y202{bottom:760.988850px;}
.y7{bottom:762.886800px;}
.yfc{bottom:764.089500px;}
.y1ac{bottom:764.387550px;}
.y26b{bottom:765.855450px;}
.y39{bottom:765.855600px;}
.y5d{bottom:768.844350px;}
.y145{bottom:771.125250px;}
.y130{bottom:771.951600px;}
.y226{bottom:773.330250px;}
.y1d2{bottom:774.617250px;}
.y294{bottom:774.821850px;}
.y161{bottom:774.936450px;}
.ye2{bottom:775.252050px;}
.yad{bottom:776.425050px;}
.y201{bottom:776.461950px;}
.y6{bottom:777.830850px;}
.y11d{bottom:778.514850px;}
.y24c{bottom:778.601700px;}
.y200{bottom:780.156450px;}
.y26a{bottom:780.799500px;}
.y38{bottom:783.788250px;}
.y13f{bottom:785.851200px;}
.y5c{bottom:786.777000px;}
.y293{bottom:789.765900px;}
.y1d1{bottom:792.550050px;}
.y5{bottom:792.774750px;}
.y160{bottom:792.869250px;}
.yac{bottom:794.357700px;}
.y225{bottom:795.447300px;}
.y1ff{bottom:795.629550px;}
.y269{bottom:795.743400px;}
.y190{bottom:796.137150px;}
.y11c{bottom:796.447500px;}
.y24b{bottom:796.534350px;}
.y191{bottom:796.585650px;}
.ye1{bottom:798.564750px;}
.y1fe{bottom:799.324050px;}
.yfb{bottom:800.237550px;}
.y1a6{bottom:800.373300px;}
.y37{bottom:801.721050px;}
.y13e{bottom:803.784000px;}
.y1ab{bottom:804.653250px;}
.y5b{bottom:804.709800px;}
.y1d0{bottom:810.482850px;}
.y268{bottom:810.687450px;}
.yab{bottom:812.290500px;}
.y15e{bottom:813.823350px;}
.y224{bottom:813.977850px;}
.y11b{bottom:814.380300px;}
.y24a{bottom:814.467150px;}
.y1fd{bottom:814.797150px;}
.yfa{bottom:818.170200px;}
.y1fc{bottom:818.491500px;}
.y36{bottom:819.653850px;}
.y13d{bottom:821.716650px;}
.y267{bottom:825.631350px;}
.ye0{bottom:828.671250px;}
.y1cf{bottom:829.013250px;}
.yaa{bottom:830.223300px;}
.y15b{bottom:831.797550px;}
.y15f{bottom:831.797700px;}
.y11a{bottom:832.313100px;}
.y249{bottom:832.399950px;}
.y1fb{bottom:833.784150px;}
.y292{bottom:834.597750px;}
.y223{bottom:836.094900px;}
.yf9{bottom:836.103000px;}
.y1fa{bottom:837.478650px;}
.y35{bottom:837.586500px;}
.y13c{bottom:839.649450px;}
.y266{bottom:840.575400px;}
.y18f{bottom:844.290000px;}
.y15d{bottom:845.994450px;}
.ydf{bottom:846.604050px;}
.y1ce{bottom:846.946050px;}
.ya9{bottom:848.155950px;}
.y291{bottom:849.541650px;}
.y118{bottom:850.245750px;}
.y15c{bottom:850.477650px;}
.yf8{bottom:854.035800px;}
.y222{bottom:854.625300px;}
.y34{bottom:855.519300px;}
.y119{bottom:855.668850px;}
.y1f9{bottom:856.117050px;}
.y13b{bottom:857.582250px;}
.y18e{bottom:862.222650px;}
.y290{bottom:864.485700px;}
.yde{bottom:864.536850px;}
.y1cd{bottom:865.476600px;}
.y117{bottom:868.178550px;}
.y15a{bottom:868.202250px;}
.ya8{bottom:869.322000px;}
.y4{bottom:870.463200px;}
.y33{bottom:873.452100px;}
.y1f8{bottom:874.049850px;}
.y13a{bottom:875.514900px;}
.y5a{bottom:878.875050px;}
.y28f{bottom:879.429600px;}
.y18d{bottom:880.155450px;}
.y3{bottom:885.407250px;}
.y116{bottom:886.111200px;}
.ya7{bottom:887.254800px;}
.y159{bottom:889.156350px;}
.yf7{bottom:889.242300px;}
.y32{bottom:891.384750px;}
.y248{bottom:891.428550px;}
.y1f7{bottom:891.982650px;}
.y139{bottom:893.447700px;}
.y28e{bottom:894.373650px;}
.y94{bottom:896.807850px;}
.y18c{bottom:898.088250px;}
.y265{bottom:900.351150px;}
.y158{bottom:901.729950px;}
.ydd{bottom:903.230700px;}
.y1cc{bottom:903.848700px;}
.y115{bottom:904.044000px;}
.ya6{bottom:905.187600px;}
.y221{bottom:907.009650px;}
.yf6{bottom:907.175100px;}
.y1cb{bottom:907.543050px;}
.y31{bottom:909.317550px;}
.y247{bottom:909.361350px;}
.y1f6{bottom:909.915450px;}
.y138{bottom:911.380500px;}
.y264{bottom:915.295050px;}
.y18b{bottom:916.020900px;}
.ydc{bottom:921.163350px;}
.ya5{bottom:923.120250px;}
.y28d{bottom:924.261450px;}
.y220{bottom:924.942300px;}
.y1ca{bottom:926.752200px;}
.y30{bottom:927.250350px;}
.y246{bottom:927.294000px;}
.y1f5{bottom:927.848100px;}
.y2{bottom:930.239100px;}
.yf5{bottom:931.719000px;}
.y18a{bottom:933.953700px;}
.y114{bottom:936.216600px;}
.ydb{bottom:939.096150px;}
.y28c{bottom:939.205500px;}
.y1c9{bottom:941.488650px;}
.yf4{bottom:941.969850px;}
.y21f{bottom:942.792150px;}
.y245{bottom:945.143850px;}
.y2f{bottom:945.183000px;}
.y1f4{bottom:945.780900px;}
.ya4{bottom:950.019450px;}
.y1{bottom:951.160650px;}
.y189{bottom:951.886500px;}
.y113{bottom:954.149400px;}
.y244{bottom:959.730600px;}
.y263{bottom:960.127050px;}
.y21e{bottom:960.724800px;}
.y2e{bottom:963.115800px;}
.y243{bottom:963.425100px;}
.y1f3{bottom:963.713700px;}
.y28b{bottom:969.093450px;}
.yf3{bottom:970.618350px;}
.y112{bottom:972.082200px;}
.y262{bottom:975.070950px;}
.y21d{bottom:978.657600px;}
.y2d{bottom:981.048600px;}
.y1f2{bottom:982.244100px;}
.y28a{bottom:984.037350px;}
.y2c{bottom:998.981250px;}
.y1f1{bottom:1000.774650px;}
.y2b{bottom:1034.846850px;}
.h1c{height:2.988780px;}
.h22{height:28.704161px;}
.h4{height:29.833916px;}
.h6{height:29.875759px;}
.h1d{height:30.246130px;}
.h2b{height:34.239550px;}
.h3{height:35.865450px;}
.h2a{height:38.224150px;}
.h5{height:40.410716px;}
.h27{height:41.005330px;}
.h7{height:42.799330px;}
.hc{height:44.236916px;}
.h1{height:44.831700px;}
.h23{height:44.832300px;}
.h2{height:47.953050px;}
.h1a{height:51.407580px;}
.ha{height:51.525716px;}
.h14{height:51.567559px;}
.h28{height:51.568159px;}
.h29{height:52.340567px;}
.h17{height:52.787516px;}
.h8{height:53.370116px;}
.h24{height:54.514916px;}
.h18{height:55.902716px;}
.h20{height:55.903316px;}
.hb{height:57.690763px;}
.h19{height:59.609100px;}
.h1f{height:59.609700px;}
.h21{height:59.887916px;}
.hf{height:61.493700px;}
.he{height:65.200916px;}
.h9{height:65.444700px;}
.h1e{height:70.680716px;}
.hd{height:75.450780px;}
.h12{height:83.238130px;}
.h26{height:83.476500px;}
.h16{height:83.802730px;}
.h15{height:85.270500px;}
.h13{height:85.835100px;}
.h10{height:87.273180px;}
.h25{height:94.870330px;}
.h1b{height:123.139380px;}
.h11{height:128.276580px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:190.008750px;}
.x5c{left:196.360050px;}
.x3{left:197.573400px;}
.x23{left:199.068300px;}
.x1{left:204.810900px;}
.x9{left:207.941550px;}
.x51{left:211.951650px;}
.x47{left:213.772200px;}
.x5d{left:216.119550px;}
.x16{left:218.557800px;}
.x2f{left:222.765750px;}
.x4b{left:223.819050px;}
.xd{left:225.353100px;}
.x13{left:227.036550px;}
.x49{left:235.176600px;}
.x14{left:241.980600px;}
.x6{left:243.807000px;}
.x4c{left:253.914600px;}
.xe{left:255.596250px;}
.x28{left:262.680150px;}
.x59{left:268.032900px;}
.x45{left:270.111600px;}
.x4e{left:272.582100px;}
.x2{left:274.565550px;}
.x12{left:275.705250px;}
.x46{left:283.299300px;}
.x2a{left:285.992550px;}
.x24{left:288.156000px;}
.x11{left:298.570350px;}
.x5b{left:300.307350px;}
.x4f{left:302.677650px;}
.x57{left:306.720750px;}
.x44{left:330.526350px;}
.x22{left:335.536050px;}
.x33{left:336.843600px;}
.x52{left:337.912800px;}
.x55{left:345.535950px;}
.x25{left:350.700600px;}
.x42{left:355.050900px;}
.x21{left:358.157550px;}
.x10{left:364.240950px;}
.x1e{left:367.154700px;}
.x17{left:371.308650px;}
.xf{left:375.084000px;}
.x19{left:378.147000px;}
.x50{left:380.571750px;}
.x18{left:384.788850px;}
.x3a{left:390.325950px;}
.x3e{left:391.527450px;}
.xc{left:393.273900px;}
.x5{left:396.242700px;}
.x7{left:398.668200px;}
.x36{left:401.488350px;}
.x35{left:406.987500px;}
.x3c{left:408.336750px;}
.x3b{left:411.605400px;}
.x3f{left:415.151100px;}
.x40{left:417.190500px;}
.x48{left:419.954850px;}
.x1f{left:422.302650px;}
.x27{left:426.327750px;}
.x3d{left:429.997800px;}
.x53{left:433.832100px;}
.x38{left:438.806700px;}
.x32{left:441.004650px;}
.x2c{left:444.752250px;}
.x1b{left:447.745650px;}
.x41{left:450.998550px;}
.x20{left:453.600000px;}
.xa{left:456.021600px;}
.x2d{left:457.828200px;}
.x37{left:461.642700px;}
.x4d{left:466.899750px;}
.x39{left:474.407850px;}
.x15{left:475.763550px;}
.x58{left:479.946450px;}
.x34{left:481.179300px;}
.x29{left:485.241150px;}
.x56{left:497.314650px;}
.x1d{left:500.877300px;}
.x5a{left:503.529450px;}
.xb{left:513.047550px;}
.x5e{left:518.173050px;}
.x1c{left:519.490050px;}
.x2e{left:521.755200px;}
.x54{left:529.751550px;}
.x43{left:532.194600px;}
.x1a{left:534.856800px;}
.x26{left:571.760400px;}
.x30{left:578.790900px;}
.x2b{left:591.057450px;}
.x31{left:647.875050px;}
.x4{left:652.376550px;}
.x4a{left:656.603250px;}
@media print{
.v1d{vertical-align:-45.429867pt;}
.v15{vertical-align:-43.038933pt;}
.v4{vertical-align:-19.281600pt;}
.v1c{vertical-align:-12.988267pt;}
.v17{vertical-align:-11.158400pt;}
.v7{vertical-align:-7.970133pt;}
.v9{vertical-align:-6.479467pt;}
.v1b{vertical-align:-5.313600pt;}
.v0{vertical-align:0.000000pt;}
.v1f{vertical-align:3.541867pt;}
.v19{vertical-align:5.165333pt;}
.v2{vertical-align:9.401600pt;}
.v1{vertical-align:10.744533pt;}
.vc{vertical-align:13.135467pt;}
.vb{vertical-align:15.349867pt;}
.v5{vertical-align:18.322667pt;}
.v6{vertical-align:19.281600pt;}
.v3{vertical-align:20.402667pt;}
.v12{vertical-align:21.938667pt;}
.v13{vertical-align:23.172267pt;}
.v18{vertical-align:26.714667pt;}
.v10{vertical-align:27.975467pt;}
.vd{vertical-align:31.437333pt;}
.v8{vertical-align:33.560533pt;}
.vf{vertical-align:35.945600pt;}
.v14{vertical-align:43.038933pt;}
.v1a{vertical-align:46.285333pt;}
.va{vertical-align:64.410667pt;}
.ve{vertical-align:74.919467pt;}
.v1e{vertical-align:79.780800pt;}
.v16{vertical-align:106.800533pt;}
.v11{vertical-align:111.366933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9d{letter-spacing:0.000027pt;}
.ls45{letter-spacing:0.000533pt;}
.lsd{letter-spacing:0.005874pt;}
.lsb{letter-spacing:0.005901pt;}
.ls7c{letter-spacing:0.006998pt;}
.ls4b{letter-spacing:0.010570pt;}
.ls95{letter-spacing:0.011103pt;}
.ls9{letter-spacing:0.011748pt;}
.ls14{letter-spacing:0.012480pt;}
.ls49{letter-spacing:0.016453pt;}
.ls4a{letter-spacing:0.016575pt;}
.ls4d{letter-spacing:0.017108pt;}
.ls46{letter-spacing:0.017756pt;}
.lse{letter-spacing:0.021053pt;}
.ls72{letter-spacing:0.024892pt;}
.ls37{letter-spacing:0.025238pt;}
.ls71{letter-spacing:0.025425pt;}
.ls15{letter-spacing:0.025856pt;}
.ls18{letter-spacing:0.026389pt;}
.ls78{letter-spacing:0.180992pt;}
.ls3e{letter-spacing:0.426062pt;}
.ls62{letter-spacing:0.842499pt;}
.ls59{letter-spacing:0.843033pt;}
.ls5c{letter-spacing:0.909885pt;}
.ls8b{letter-spacing:0.923185pt;}
.ls1e{letter-spacing:1.425485pt;}
.ls38{letter-spacing:1.907829pt;}
.ls10{letter-spacing:1.927719pt;}
.ls6b{letter-spacing:2.139161pt;}
.lsc{letter-spacing:2.639404pt;}
.ls56{letter-spacing:2.647290pt;}
.ls11{letter-spacing:2.663386pt;}
.ls8a{letter-spacing:2.668411pt;}
.ls3a{letter-spacing:2.673108pt;}
.lsa{letter-spacing:2.673642pt;}
.ls84{letter-spacing:3.072540pt;}
.ls86{letter-spacing:3.073073pt;}
.ls63{letter-spacing:3.566418pt;}
.ls76{letter-spacing:3.785819pt;}
.ls28{letter-spacing:4.146965pt;}
.ls26{letter-spacing:4.147499pt;}
.ls80{letter-spacing:4.194492pt;}
.ls65{letter-spacing:4.474190pt;}
.ls6c{letter-spacing:4.795694pt;}
.ls73{letter-spacing:4.796227pt;}
.ls52{letter-spacing:5.037852pt;}
.ls8{letter-spacing:6.381364pt;}
.ls19{letter-spacing:6.382541pt;}
.ls53{letter-spacing:6.640592pt;}
.ls75{letter-spacing:6.838385pt;}
.ls74{letter-spacing:6.850865pt;}
.ls43{letter-spacing:7.380324pt;}
.ls3d{letter-spacing:7.380858pt;}
.ls1d{letter-spacing:7.399689pt;}
.ls5a{letter-spacing:8.366853pt;}
.ls66{letter-spacing:8.391674pt;}
.ls4c{letter-spacing:8.722175pt;}
.ls3b{letter-spacing:8.843718pt;}
.ls1b{letter-spacing:8.861474pt;}
.ls13{letter-spacing:8.998385pt;}
.ls12{letter-spacing:9.015474pt;}
.lsf{letter-spacing:9.020985pt;}
.lsa2{letter-spacing:10.818820pt;}
.ls81{letter-spacing:11.784157pt;}
.ls2d{letter-spacing:11.795185pt;}
.ls20{letter-spacing:11.795718pt;}
.ls1f{letter-spacing:11.801326pt;}
.ls7d{letter-spacing:11.801859pt;}
.ls23{letter-spacing:11.807467pt;}
.ls42{letter-spacing:12.171185pt;}
.ls1a{letter-spacing:12.223193pt;}
.ls33{letter-spacing:12.302385pt;}
.ls89{letter-spacing:13.098652pt;}
.ls2e{letter-spacing:13.711679pt;}
.ls2b{letter-spacing:13.712212pt;}
.ls34{letter-spacing:13.819851pt;}
.ls50{letter-spacing:14.333532pt;}
.ls39{letter-spacing:14.480575pt;}
.ls30{letter-spacing:14.695679pt;}
.ls55{letter-spacing:14.741578pt;}
.ls16{letter-spacing:14.747185pt;}
.ls17{letter-spacing:14.747718pt;}
.ls54{letter-spacing:14.753326pt;}
.ls51{letter-spacing:14.759665pt;}
.ls36{letter-spacing:14.864853pt;}
.ls8f{letter-spacing:14.939925pt;}
.ls44{letter-spacing:15.350416pt;}
.ls5e{letter-spacing:15.373351pt;}
.ls5d{letter-spacing:15.373885pt;}
.ls88{letter-spacing:15.389318pt;}
.ls2c{letter-spacing:15.593285pt;}
.lsa0{letter-spacing:15.978859pt;}
.ls85{letter-spacing:16.001958pt;}
.ls77{letter-spacing:16.281123pt;}
.ls32{letter-spacing:16.300626pt;}
.ls6e{letter-spacing:16.603161pt;}
.ls6{letter-spacing:16.687229pt;}
.ls8c{letter-spacing:16.792575pt;}
.ls4f{letter-spacing:16.996186pt;}
.ls29{letter-spacing:17.429439pt;}
.ls6f{letter-spacing:17.592219pt;}
.lsa1{letter-spacing:17.609220pt;}
.ls79{letter-spacing:17.699718pt;}
.ls5{letter-spacing:17.711733pt;}
.ls25{letter-spacing:18.091952pt;}
.ls40{letter-spacing:18.137529pt;}
.ls61{letter-spacing:18.325351pt;}
.ls24{letter-spacing:18.453099pt;}
.ls70{letter-spacing:18.601561pt;}
.ls6d{letter-spacing:19.233123pt;}
.ls4{letter-spacing:19.398162pt;}
.ls8d{letter-spacing:19.574059pt;}
.ls31{letter-spacing:20.163733pt;}
.ls2{letter-spacing:20.364490pt;}
.ls27{letter-spacing:20.381972pt;}
.ls2a{letter-spacing:21.123718pt;}
.ls7e{letter-spacing:21.129326pt;}
.ls1c{letter-spacing:21.228685pt;}
.ls60{letter-spacing:21.277885pt;}
.ls83{letter-spacing:21.905958pt;}
.ls91{letter-spacing:22.344042pt;}
.ls5b{letter-spacing:23.125787pt;}
.ls6a{letter-spacing:23.150607pt;}
.ls58{letter-spacing:23.529238pt;}
.ls87{letter-spacing:23.591090pt;}
.ls67{letter-spacing:24.075718pt;}
.ls82{letter-spacing:24.081859pt;}
.ls69{letter-spacing:24.422457pt;}
.ls3f{letter-spacing:25.091791pt;}
.ls5f{letter-spacing:25.531622pt;}
.ls22{letter-spacing:25.583155pt;}
.ls41{letter-spacing:25.655524pt;}
.ls7a{letter-spacing:25.682325pt;}
.ls57{letter-spacing:26.078320pt;}
.ls7b{letter-spacing:26.102607pt;}
.ls4e{letter-spacing:26.373505pt;}
.ls7{letter-spacing:26.510918pt;}
.ls48{letter-spacing:26.567067pt;}
.ls3{letter-spacing:26.567467pt;}
.ls35{letter-spacing:26.625290pt;}
.ls1{letter-spacing:26.956490pt;}
.ls68{letter-spacing:28.339407pt;}
.ls64{letter-spacing:28.791387pt;}
.ls3c{letter-spacing:31.296591pt;}
.ls9e{letter-spacing:44.758442pt;}
.ls90{letter-spacing:45.362708pt;}
.ls92{letter-spacing:47.613375pt;}
.ls47{letter-spacing:53.133867pt;}
.ls9c{letter-spacing:57.932842pt;}
.ls21{letter-spacing:72.809052pt;}
.ls2f{letter-spacing:81.487152pt;}
.ls7f{letter-spacing:137.502385pt;}
.ls8e{letter-spacing:250.300842pt;}
.ls98{letter-spacing:392.288042pt;}
.ls93{letter-spacing:423.430442pt;}
.ls94{letter-spacing:427.415508pt;}
.ls9f{letter-spacing:458.874708pt;}
.ls9a{letter-spacing:517.174975pt;}
.ls9b{letter-spacing:534.369642pt;}
.ls99{letter-spacing:538.354708pt;}
.ls97{letter-spacing:552.302442pt;}
.ls96{letter-spacing:573.482175pt;}
.wsf9{word-spacing:-53.187001pt;}
.wsb0{word-spacing:-34.590147pt;}
.wsae{word-spacing:-25.769925pt;}
.wsca{word-spacing:-25.761452pt;}
.wsbb{word-spacing:-25.716791pt;}
.wsb7{word-spacing:-11.217666pt;}
.wsb5{word-spacing:-11.215518pt;}
.wse{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.042507pt;}
.wsb3{word-spacing:-0.037194pt;}
.ws25{word-spacing:0.000000pt;}
.ws1ce{word-spacing:5.291598pt;}
.ws107{word-spacing:5.690621pt;}
.ws131{word-spacing:7.481267pt;}
.ws52{word-spacing:8.244192pt;}
.wsbe{word-spacing:8.785590pt;}
.wse8{word-spacing:9.523190pt;}
.ws20b{word-spacing:10.031699pt;}
.ws1d5{word-spacing:10.244235pt;}
.ws1f7{word-spacing:10.329250pt;}
.ws184{word-spacing:10.456771pt;}
.ws220{word-spacing:10.582001pt;}
.ws21f{word-spacing:10.584293pt;}
.ws5{word-spacing:10.626800pt;}
.ws1de{word-spacing:10.796829pt;}
.ws1c3{word-spacing:10.839336pt;}
.ws206{word-spacing:11.094379pt;}
.ws200{word-spacing:11.136886pt;}
.ws1b5{word-spacing:11.221901pt;}
.ws1f9{word-spacing:11.264408pt;}
.ws1dd{word-spacing:11.306915pt;}
.ws1a2{word-spacing:11.391930pt;}
.ws1fc{word-spacing:11.561958pt;}
.ws20c{word-spacing:11.604466pt;}
.ws21a{word-spacing:11.646973pt;}
.wsb4{word-spacing:11.742585pt;}
.ws12c{word-spacing:11.848852pt;}
.ws1b4{word-spacing:11.859509pt;}
.ws1fa{word-spacing:11.902016pt;}
.ws1f8{word-spacing:11.944523pt;}
.ws7f{word-spacing:11.955120pt;}
.ws1bf{word-spacing:11.985141pt;}
.ws103{word-spacing:12.008254pt;}
.ws1be{word-spacing:12.012238pt;}
.ws185{word-spacing:12.029538pt;}
.wsa9{word-spacing:12.061388pt;}
.wsad{word-spacing:12.167655pt;}
.ws21e{word-spacing:12.199566pt;}
.ws135{word-spacing:12.220789pt;}
.ws1fd{word-spacing:12.242074pt;}
.wsda{word-spacing:12.261533pt;}
.wsde{word-spacing:12.273923pt;}
.ws1b2{word-spacing:12.327088pt;}
.ws209{word-spacing:12.344868pt;}
.ws1df{word-spacing:12.369595pt;}
.ws152{word-spacing:12.380191pt;}
.ws1c4{word-spacing:12.412102pt;}
.ws134{word-spacing:12.433325pt;}
.ws78{word-spacing:12.486459pt;}
.ws12e{word-spacing:12.539593pt;}
.ws74{word-spacing:12.592726pt;}
.ws1bd{word-spacing:12.601010pt;}
.ws207{word-spacing:12.624638pt;}
.ws201{word-spacing:12.667146pt;}
.wsc2{word-spacing:12.698994pt;}
.wsd1{word-spacing:12.752128pt;}
.ws8{word-spacing:12.794667pt;}
.ws7e{word-spacing:12.805262pt;}
.ws1db{word-spacing:12.837174pt;}
.wsc{word-spacing:12.879682pt;}
.wsfe{word-spacing:12.964663pt;}
.ws1fb{word-spacing:12.964696pt;}
.ws203{word-spacing:13.007203pt;}
.ws5c{word-spacing:13.017797pt;}
.ws1ae{word-spacing:13.049710pt;}
.ws128{word-spacing:13.070931pt;}
.ws1b0{word-spacing:13.092218pt;}
.ws8a{word-spacing:13.124065pt;}
.ws27{word-spacing:13.177199pt;}
.ws21b{word-spacing:13.177232pt;}
.wsf6{word-spacing:13.203728pt;}
.wsfc{word-spacing:13.217520pt;}
.ws161{word-spacing:13.230333pt;}
.wsc5{word-spacing:13.283467pt;}
.ws62{word-spacing:13.336601pt;}
.wsaa{word-spacing:13.442868pt;}
.ws188{word-spacing:13.474782pt;}
.ws90{word-spacing:13.496002pt;}
.ws19a{word-spacing:13.517290pt;}
.ws10e{word-spacing:13.549136pt;}
.ws12d{word-spacing:13.602270pt;}
.wsd0{word-spacing:13.687435pt;}
.ws11a{word-spacing:13.706273pt;}
.ws12b{word-spacing:13.708538pt;}
.ws1b3{word-spacing:13.729826pt;}
.ws119{word-spacing:13.761671pt;}
.ws118{word-spacing:13.782717pt;}
.ws160{word-spacing:13.814805pt;}
.ws208{word-spacing:13.814840pt;}
.ws36{word-spacing:13.867939pt;}
.ws1a3{word-spacing:13.899854pt;}
.wsac{word-spacing:13.921073pt;}
.wse2{word-spacing:13.974207pt;}
.ws24{word-spacing:13.984869pt;}
.ws57{word-spacing:14.027341pt;}
.wse1{word-spacing:14.080475pt;}
.wsa2{word-spacing:14.133609pt;}
.wsc1{word-spacing:14.186742pt;}
.wsce{word-spacing:14.239876pt;}
.ws1dc{word-spacing:14.239912pt;}
.ws106{word-spacing:14.250029pt;}
.ws26{word-spacing:14.282342pt;}
.wse6{word-spacing:14.293010pt;}
.ws204{word-spacing:14.324926pt;}
.ws157{word-spacing:14.346144pt;}
.ws4f{word-spacing:14.399278pt;}
.ws202{word-spacing:14.409941pt;}
.ws1af{word-spacing:14.452448pt;}
.ws3f{word-spacing:14.505546pt;}
.wsd3{word-spacing:14.558679pt;}
.ws20e{word-spacing:14.579970pt;}
.wsf7{word-spacing:14.611813pt;}
.wsa5{word-spacing:14.664947pt;}
.wsb2{word-spacing:14.676695pt;}
.wsc9{word-spacing:14.718081pt;}
.ws4e{word-spacing:14.771215pt;}
.ws14{word-spacing:14.824349pt;}
.wsb{word-spacing:14.835013pt;}
.ws1e7{word-spacing:14.877520pt;}
.ws19c{word-spacing:14.920027pt;}
.wsf2{word-spacing:14.930617pt;}
.ws191{word-spacing:14.970066pt;}
.ws187{word-spacing:14.970599pt;}
.ws18e{word-spacing:14.991926pt;}
.ws227{word-spacing:15.002164pt;}
.ws1{word-spacing:15.005042pt;}
.ws194{word-spacing:15.012458pt;}
.ws19d{word-spacing:15.028462pt;}
.ws1c2{word-spacing:15.031504pt;}
.wsa7{word-spacing:15.036884pt;}
.ws20{word-spacing:15.047549pt;}
.wsaf{word-spacing:15.143152pt;}
.ws1f6{word-spacing:15.144294pt;}
.ws179{word-spacing:15.149375pt;}
.ws81{word-spacing:15.196286pt;}
.ws1a4{word-spacing:15.217578pt;}
.ws177{word-spacing:15.231129pt;}
.ws18{word-spacing:15.249420pt;}
.ws7{word-spacing:15.260085pt;}
.ws76{word-spacing:15.302554pt;}
.ws23{word-spacing:15.302592pt;}
.ws116{word-spacing:15.318090pt;}
.ws115{word-spacing:15.318623pt;}
.ws3c{word-spacing:15.355687pt;}
.ws170{word-spacing:15.387606pt;}
.ws13f{word-spacing:15.408821pt;}
.wscc{word-spacing:15.452080pt;}
.ws199{word-spacing:15.472621pt;}
.wsf8{word-spacing:15.515089pt;}
.ws20f{word-spacing:15.557635pt;}
.ws35{word-spacing:15.568223pt;}
.ws205{word-spacing:15.600142pt;}
.ws10{word-spacing:15.621357pt;}
.ws100{word-spacing:15.674491pt;}
.ws3e{word-spacing:15.727625pt;}
.ws217{word-spacing:15.727664pt;}
.ws50{word-spacing:15.780758pt;}
.ws1b6{word-spacing:15.812678pt;}
.ws6f{word-spacing:15.833892pt;}
.ws1d4{word-spacing:15.855186pt;}
.ws82{word-spacing:15.887026pt;}
.ws219{word-spacing:15.897693pt;}
.ws2d{word-spacing:15.940160pt;}
.wsa8{word-spacing:15.993294pt;}
.ws221{word-spacing:16.025214pt;}
.ws223{word-spacing:16.037162pt;}
.ws7d{word-spacing:16.046428pt;}
.ws1d6{word-spacing:16.067722pt;}
.ws51{word-spacing:16.099562pt;}
.wsa{word-spacing:16.110229pt;}
.ws4d{word-spacing:16.152695pt;}
.ws1e8{word-spacing:16.152736pt;}
.ws10f{word-spacing:16.164564pt;}
.ws19b{word-spacing:16.195243pt;}
.ws75{word-spacing:16.205829pt;}
.ws22{word-spacing:16.237750pt;}
.wsb9{word-spacing:16.258963pt;}
.ws16a{word-spacing:16.280258pt;}
.ws21{word-spacing:16.282493pt;}
.ws6e{word-spacing:16.312097pt;}
.ws87{word-spacing:16.365231pt;}
.ws17f{word-spacing:16.407779pt;}
.ws136{word-spacing:16.418365pt;}
.ws1f5{word-spacing:16.450286pt;}
.ws3d{word-spacing:16.524633pt;}
.ws189{word-spacing:16.525266pt;}
.ws20a{word-spacing:16.535301pt;}
.ws93{word-spacing:16.577766pt;}
.ws171{word-spacing:16.577808pt;}
.ws2f{word-spacing:16.630900pt;}
.ws1ac{word-spacing:16.662822pt;}
.ws54{word-spacing:16.684034pt;}
.ws1d{word-spacing:16.737168pt;}
.ws181{word-spacing:16.747837pt;}
.wsc0{word-spacing:16.790302pt;}
.ws210{word-spacing:16.832851pt;}
.ws9b{word-spacing:16.843436pt;}
.ws174{word-spacing:16.875358pt;}
.ws5e{word-spacing:16.896570pt;}
.ws218{word-spacing:16.917866pt;}
.ws40{word-spacing:16.949703pt;}
.ws168{word-spacing:16.960373pt;}
.ws83{word-spacing:17.002837pt;}
.ws176{word-spacing:17.002880pt;}
.ws197{word-spacing:17.045387pt;}
.wsf{word-spacing:17.055971pt;}
.ws19{word-spacing:17.109105pt;}
.wsa3{word-spacing:17.162239pt;}
.ws1b7{word-spacing:17.172909pt;}
.ws222{word-spacing:17.257923pt;}
.wsab{word-spacing:17.268507pt;}
.ws6{word-spacing:17.300430pt;}
.ws1a{word-spacing:17.321641pt;}
.ws213{word-spacing:17.342938pt;}
.ws111{word-spacing:17.367764pt;}
.ws37{word-spacing:17.374774pt;}
.ws11e{word-spacing:17.391419pt;}
.ws13{word-spacing:17.427908pt;}
.ws49{word-spacing:17.481042pt;}
.ws178{word-spacing:17.512966pt;}
.ws12{word-spacing:17.534176pt;}
.ws180{word-spacing:17.555474pt;}
.ws91{word-spacing:17.587310pt;}
.ws183{word-spacing:17.596020pt;}
.ws182{word-spacing:17.597981pt;}
.ws125{word-spacing:17.611873pt;}
.ws149{word-spacing:17.613446pt;}
.ws121{word-spacing:17.629575pt;}
.wsf3{word-spacing:17.635103pt;}
.ws16{word-spacing:17.640444pt;}
.wsb1{word-spacing:17.670614pt;}
.ws1f{word-spacing:17.693578pt;}
.ws9e{word-spacing:17.706926pt;}
.ws186{word-spacing:17.725502pt;}
.ws31{word-spacing:17.746711pt;}
.wsbf{word-spacing:17.799845pt;}
.ws198{word-spacing:17.810517pt;}
.ws133{word-spacing:17.852979pt;}
.ws101{word-spacing:17.906113pt;}
.ws9{word-spacing:17.938038pt;}
.ws175{word-spacing:17.980546pt;}
.ws3b{word-spacing:18.012381pt;}
.wsa6{word-spacing:18.065515pt;}
.ws169{word-spacing:18.108067pt;}
.ws92{word-spacing:18.118649pt;}
.wsf5{word-spacing:18.172914pt;}
.ws1ab{word-spacing:18.193082pt;}
.ws1b8{word-spacing:18.207791pt;}
.wsa4{word-spacing:18.224916pt;}
.ws1c5{word-spacing:18.227553pt;}
.ws1c6{word-spacing:18.235589pt;}
.ws167{word-spacing:18.278050pt;}
.ws17{word-spacing:18.331184pt;}
.wsc8{word-spacing:18.403547pt;}
.wscb{word-spacing:18.404080pt;}
.ws1f2{word-spacing:18.405618pt;}
.ws29{word-spacing:18.437452pt;}
.ws1f0{word-spacing:18.448125pt;}
.ws47{word-spacing:18.490586pt;}
.ws11b{word-spacing:18.543719pt;}
.ws4c{word-spacing:18.559606pt;}
.ws59{word-spacing:18.596853pt;}
.ws1bc{word-spacing:18.618154pt;}
.ws58{word-spacing:18.649987pt;}
.ws17a{word-spacing:18.660661pt;}
.ws11{word-spacing:18.756255pt;}
.ws163{word-spacing:18.809389pt;}
.ws33{word-spacing:18.862523pt;}
.ws1c9{word-spacing:18.873197pt;}
.ws1c{word-spacing:18.915657pt;}
.ws85{word-spacing:18.968790pt;}
.ws6b{word-spacing:19.021924pt;}
.ws1ff{word-spacing:19.085733pt;}
.ws60{word-spacing:19.128192pt;}
.ws1b1{word-spacing:19.170747pt;}
.wsc3{word-spacing:19.181326pt;}
.ws65{word-spacing:19.234460pt;}
.ws1f4{word-spacing:19.255762pt;}
.wsd8{word-spacing:19.287594pt;}
.ws226{word-spacing:19.298269pt;}
.ws1e2{word-spacing:19.312367pt;}
.ws96{word-spacing:19.340727pt;}
.ws1f1{word-spacing:19.340776pt;}
.ws1f3{word-spacing:19.383283pt;}
.ws2c{word-spacing:19.393861pt;}
.ws1bb{word-spacing:19.425790pt;}
.ws8f{word-spacing:19.446995pt;}
.ws1c0{word-spacing:19.468298pt;}
.ws32{word-spacing:19.500129pt;}
.ws211{word-spacing:19.510805pt;}
.ws1ad{word-spacing:19.552524pt;}
.ws6a{word-spacing:19.553263pt;}
.ws1b9{word-spacing:19.553312pt;}
.ws18a{word-spacing:19.595819pt;}
.ws95{word-spacing:19.606397pt;}
.ws8d{word-spacing:19.659531pt;}
.ws173{word-spacing:19.680834pt;}
.ws63{word-spacing:19.712665pt;}
.wse5{word-spacing:19.765798pt;}
.ws1e9{word-spacing:19.808355pt;}
.ws61{word-spacing:19.818932pt;}
.ws113{word-spacing:19.848140pt;}
.ws1ca{word-spacing:19.850862pt;}
.ws45{word-spacing:19.872066pt;}
.ws112{word-spacing:19.913102pt;}
.ws1b{word-spacing:19.925200pt;}
.ws212{word-spacing:19.935877pt;}
.wsdd{word-spacing:19.978334pt;}
.ws3a{word-spacing:20.031468pt;}
.ws1fe{word-spacing:20.063398pt;}
.wsd2{word-spacing:20.084602pt;}
.ws6d{word-spacing:20.137735pt;}
.ws1c7{word-spacing:20.148413pt;}
.ws8c{word-spacing:20.190869pt;}
.ws225{word-spacing:20.233427pt;}
.ws9c{word-spacing:20.244003pt;}
.ws13a{word-spacing:20.297137pt;}
.ws215{word-spacing:20.311393pt;}
.ws214{word-spacing:20.318442pt;}
.ws10d{word-spacing:20.350271pt;}
.wsee{word-spacing:20.360949pt;}
.ws30{word-spacing:20.403405pt;}
.ws6c{word-spacing:20.456539pt;}
.ws18b{word-spacing:20.488470pt;}
.wscd{word-spacing:20.503280pt;}
.ws4b{word-spacing:20.509673pt;}
.ws1c1{word-spacing:20.530978pt;}
.ws130{word-spacing:20.562806pt;}
.ws172{word-spacing:20.573485pt;}
.ws71{word-spacing:20.615940pt;}
.ws192{word-spacing:20.615992pt;}
.ws5b{word-spacing:20.669074pt;}
.ws1ba{word-spacing:20.701006pt;}
.ws5d{word-spacing:20.722208pt;}
.ws1ea{word-spacing:20.743514pt;}
.wsd7{word-spacing:20.775342pt;}
.wsc4{word-spacing:20.828476pt;}
.ws86{word-spacing:20.881610pt;}
.ws42{word-spacing:20.934743pt;}
.ws20d{word-spacing:20.956050pt;}
.ws2a{word-spacing:20.987877pt;}
.ws1eb{word-spacing:20.998557pt;}
.ws79{word-spacing:21.041011pt;}
.ws1c8{word-spacing:21.041064pt;}
.ws7a{word-spacing:21.094145pt;}
.ws1ec{word-spacing:21.121161pt;}
.ws18d{word-spacing:21.126078pt;}
.ws38{word-spacing:21.147279pt;}
.wsd9{word-spacing:21.200413pt;}
.wsef{word-spacing:21.211093pt;}
.ws46{word-spacing:21.253547pt;}
.ws15{word-spacing:21.306681pt;}
.ws34{word-spacing:21.359814pt;}
.ws7b{word-spacing:21.412948pt;}
.wse3{word-spacing:21.466082pt;}
.ws193{word-spacing:21.466136pt;}
.ws48{word-spacing:21.519216pt;}
.ws2e{word-spacing:21.572350pt;}
.ws16b{word-spacing:21.593658pt;}
.wsfd{word-spacing:21.625484pt;}
.ws216{word-spacing:21.678672pt;}
.ws12f{word-spacing:21.731751pt;}
.ws28{word-spacing:21.784885pt;}
.ws228{word-spacing:21.806194pt;}
.wse9{word-spacing:21.838019pt;}
.ws18c{word-spacing:21.933715pt;}
.ws7c{word-spacing:21.944287pt;}
.ws18f{word-spacing:21.976222pt;}
.wse0{word-spacing:21.997421pt;}
.ws102{word-spacing:22.050555pt;}
.ws224{word-spacing:22.061237pt;}
.ws1ed{word-spacing:22.103744pt;}
.ws1a5{word-spacing:22.146251pt;}
.ws56{word-spacing:22.156822pt;}
.ws14b{word-spacing:22.263090pt;}
.ws195{word-spacing:22.316280pt;}
.ws16c{word-spacing:22.358787pt;}
.ws43{word-spacing:22.369358pt;}
.ws5f{word-spacing:22.422492pt;}
.ws229{word-spacing:22.443802pt;}
.ws69{word-spacing:22.475626pt;}
.ws64{word-spacing:22.528759pt;}
.ws19e{word-spacing:22.531491pt;}
.wsc7{word-spacing:22.581893pt;}
.wsdc{word-spacing:22.635027pt;}
.ws89{word-spacing:22.688161pt;}
.ws190{word-spacing:22.698845pt;}
.ws77{word-spacing:22.794429pt;}
.ws1ee{word-spacing:22.826366pt;}
.wsd5{word-spacing:22.847563pt;}
.ws8b{word-spacing:22.900697pt;}
.ws1a6{word-spacing:22.911381pt;}
.ws9a{word-spacing:22.953830pt;}
.ws16e{word-spacing:22.953888pt;}
.ws4{word-spacing:23.038902pt;}
.ws129{word-spacing:23.060098pt;}
.ws196{word-spacing:23.081410pt;}
.ws94{word-spacing:23.113232pt;}
.wsed{word-spacing:23.166366pt;}
.ws16d{word-spacing:23.208931pt;}
.ws41{word-spacing:23.219500pt;}
.ws1e{word-spacing:23.272634pt;}
.wsb6{word-spacing:23.297740pt;}
.wsb8{word-spacing:23.325767pt;}
.ws44{word-spacing:23.378901pt;}
.ws17c{word-spacing:23.378960pt;}
.ws2b{word-spacing:23.432035pt;}
.wsc6{word-spacing:23.447813pt;}
.ws55{word-spacing:23.485169pt;}
.wsff{word-spacing:23.538303pt;}
.wsd6{word-spacing:23.591437pt;}
.ws4a{word-spacing:23.644571pt;}
.ws88{word-spacing:23.697705pt;}
.ws70{word-spacing:23.750838pt;}
.wseb{word-spacing:23.834140pt;}
.wsea{word-spacing:23.857106pt;}
.wsdf{word-spacing:23.910240pt;}
.ws9f{word-spacing:23.963374pt;}
.ws1ef{word-spacing:23.974061pt;}
.ws72{word-spacing:24.016508pt;}
.ws16f{word-spacing:24.059075pt;}
.ws12a{word-spacing:24.069642pt;}
.ws9d{word-spacing:24.122775pt;}
.ws53{word-spacing:24.229043pt;}
.wsec{word-spacing:24.282177pt;}
.ws1aa{word-spacing:24.314118pt;}
.ws98{word-spacing:24.335311pt;}
.ws14a{word-spacing:24.494713pt;}
.ws132{word-spacing:24.547846pt;}
.ws17b{word-spacing:24.611669pt;}
.ws123{word-spacing:24.654114pt;}
.ws1cb{word-spacing:24.739190pt;}
.wsa0{word-spacing:24.760382pt;}
.ws8e{word-spacing:24.866650pt;}
.ws15b{word-spacing:24.919783pt;}
.ws84{word-spacing:24.972917pt;}
.ws1e0{word-spacing:24.994234pt;}
.ws68{word-spacing:25.026051pt;}
.ws66{word-spacing:25.045799pt;}
.ws127{word-spacing:25.079185pt;}
.ws1d7{word-spacing:25.164262pt;}
.ws137{word-spacing:25.238587pt;}
.ws99{word-spacing:25.291721pt;}
.ws1cc{word-spacing:25.291784pt;}
.ws73{word-spacing:25.397988pt;}
.wsf1{word-spacing:25.419306pt;}
.ws1d2{word-spacing:25.432999pt;}
.ws120{word-spacing:25.451122pt;}
.ws1d1{word-spacing:25.461813pt;}
.ws11f{word-spacing:25.478183pt;}
.ws10a{word-spacing:25.504035pt;}
.ws10b{word-spacing:25.504256pt;}
.ws1a9{word-spacing:25.633210pt;}
.ws1d8{word-spacing:25.674349pt;}
.ws67{word-spacing:25.769925pt;}
.ws5a{word-spacing:25.823059pt;}
.ws97{word-spacing:25.876193pt;}
.ws80{word-spacing:25.929327pt;}
.ws11c{word-spacing:26.035595pt;}
.ws164{word-spacing:26.194996pt;}
.wsd4{word-spacing:26.301264pt;}
.ws0{word-spacing:26.407532pt;}
.wsd{word-spacing:26.502051pt;}
.ws39{word-spacing:26.502585pt;}
.ws104{word-spacing:26.515459pt;}
.ws15a{word-spacing:26.546943pt;}
.ws3{word-spacing:26.556406pt;}
.ws122{word-spacing:26.564775pt;}
.ws1e1{word-spacing:26.737029pt;}
.ws17e{word-spacing:26.768432pt;}
.ws1a8{word-spacing:26.992072pt;}
.ws19f{word-spacing:27.119594pt;}
.ws138{word-spacing:27.192718pt;}
.ws139{word-spacing:27.204540pt;}
.ws1a7{word-spacing:27.417144pt;}
.ws1a1{word-spacing:27.799709pt;}
.wse4{word-spacing:28.001548pt;}
.ws1d3{word-spacing:28.097259pt;}
.ws1d9{word-spacing:28.112999pt;}
.ws105{word-spacing:28.214083pt;}
.ws17d{word-spacing:28.279937pt;}
.wsa1{word-spacing:28.320351pt;}
.ws21d{word-spacing:28.904896pt;}
.ws162{word-spacing:29.170493pt;}
.ws1a0{word-spacing:29.585011pt;}
.wsf4{word-spacing:29.713204pt;}
.ws1d0{word-spacing:30.879994pt;}
.ws1cd{word-spacing:31.072763pt;}
.ws1e3{word-spacing:31.200285pt;}
.ws1da{word-spacing:31.455328pt;}
.ws21c{word-spacing:32.007922pt;}
.wsf0{word-spacing:33.963253pt;}
.ws1cf{word-spacing:34.898411pt;}
.ws1e4{word-spacing:35.110947pt;}
.ws1e5{word-spacing:37.151293pt;}
.ws1e6{word-spacing:43.102301pt;}
.ws158{word-spacing:55.172235pt;}
.ws13b{word-spacing:55.194985pt;}
.ws15f{word-spacing:55.206119pt;}
.ws15e{word-spacing:55.206599pt;}
.ws14f{word-spacing:61.868768pt;}
.ws150{word-spacing:63.515918pt;}
.ws140{word-spacing:64.676736pt;}
.ws141{word-spacing:76.608546pt;}
.ws151{word-spacing:78.797524pt;}
.ws15c{word-spacing:83.075518pt;}
.ws15d{word-spacing:84.282333pt;}
.ws14e{word-spacing:107.381586pt;}
.ws13d{word-spacing:111.366119pt;}
.ws14c{word-spacing:115.351133pt;}
.ws13c{word-spacing:115.351666pt;}
.ws14d{word-spacing:123.513319pt;}
.ws13e{word-spacing:138.598066pt;}
.ws159{word-spacing:177.046599pt;}
.ws124{word-spacing:194.164970pt;}
.ws145{word-spacing:200.144786pt;}
.ws146{word-spacing:204.129799pt;}
.ws143{word-spacing:204.129853pt;}
.ws148{word-spacing:204.130333pt;}
.ws142{word-spacing:208.114866pt;}
.ws147{word-spacing:216.881853pt;}
.ws144{word-spacing:216.882333pt;}
.ws154{word-spacing:228.987075pt;}
.ws156{word-spacing:243.598889pt;}
.ws155{word-spacing:243.599422pt;}
.wsdb{word-spacing:261.949356pt;}
.wsfb{word-spacing:263.205164pt;}
.ws166{word-spacing:266.857853pt;}
.ws165{word-spacing:274.827399pt;}
.ws153{word-spacing:314.230192pt;}
.ws126{word-spacing:320.875421pt;}
.ws11d{word-spacing:332.242303pt;}
.ws114{word-spacing:401.412436pt;}
.wsbd{word-spacing:433.094147pt;}
.ws117{word-spacing:437.674303pt;}
.ws110{word-spacing:453.606570pt;}
.wsbc{word-spacing:457.842303pt;}
.ws109{word-spacing:477.532436pt;}
.wsba{word-spacing:490.016170pt;}
.ws108{word-spacing:509.808703pt;}
.wse7{word-spacing:532.386836pt;}
.wsfa{word-spacing:536.173849pt;}
.ws10c{word-spacing:637.538836pt;}
.wscf{word-spacing:654.649236pt;}
._21{margin-left:-1282.992289pt;}
._1e{margin-left:-1243.747941pt;}
._22{margin-left:-1158.435826pt;}
._30{margin-left:-52.679790pt;}
._74{margin-left:-23.341162pt;}
._71{margin-left:-22.313549pt;}
._1{margin-left:-6.801135pt;}
._4{margin-left:-5.058357pt;}
._2{margin-left:-3.358073pt;}
._0{margin-left:-1.700284pt;}
._5{width:0.892647pt;}
._8{width:2.125343pt;}
._c{width:3.262434pt;}
._20{width:4.431252pt;}
._3{width:5.642431pt;}
._1f{width:7.487760pt;}
._26{width:9.669065pt;}
._2a{width:11.354011pt;}
._28{width:12.839017pt;}
._23{width:13.867939pt;}
._12{width:14.834978pt;}
._14{width:16.641529pt;}
._7{width:18.320607pt;}
._6{width:19.425795pt;}
._9{width:20.828524pt;}
._11{width:22.316224pt;}
._b{width:23.485181pt;}
._1c{width:25.026051pt;}
._15{width:26.035595pt;}
._a{width:27.672183pt;}
._f{width:28.904823pt;}
._1a{width:30.722004pt;}
._24{width:31.695019pt;}
._6c{width:32.624194pt;}
._e{width:33.527470pt;}
._10{width:34.749549pt;}
._19{width:36.024762pt;}
._2f{width:36.981171pt;}
._18{width:38.426414pt;}
._1d{width:39.319061pt;}
._13{width:40.434873pt;}
._25{width:41.710085pt;}
._2b{width:42.613361pt;}
._2d{width:44.324274pt;}
._73{width:45.717233pt;}
._1b{width:46.704669pt;}
._17{width:48.086149pt;}
._35{width:48.998230pt;}
._6d{width:49.998969pt;}
._72{width:51.510142pt;}
._55{width:55.276942pt;}
._69{width:57.252267pt;}
._66{width:59.017352pt;}
._6a{width:60.051802pt;}
._50{width:65.407790pt;}
._4a{width:67.182650pt;}
._3c{width:68.443612pt;}
._68{width:70.535467pt;}
._67{width:72.528000pt;}
._44{width:77.488917pt;}
._65{width:78.863985pt;}
._64{width:80.350933pt;}
._62{width:81.349795pt;}
._2e{width:82.883318pt;}
._61{width:84.549222pt;}
._3d{width:85.870191pt;}
._2c{width:86.834942pt;}
._45{width:89.264919pt;}
._60{width:92.699027pt;}
._16{width:104.083670pt;}
._63{width:106.221993pt;}
._29{width:110.762541pt;}
._3e{width:115.404800pt;}
._5c{width:116.795488pt;}
._4e{width:118.693166pt;}
._51{width:120.073225pt;}
._47{width:121.074940pt;}
._4f{width:122.852644pt;}
._4d{width:124.831069pt;}
._4c{width:128.156267pt;}
._d{width:131.925699pt;}
._41{width:135.324936pt;}
._3f{width:138.650667pt;}
._42{width:144.539787pt;}
._6e{width:148.377391pt;}
._40{width:152.510400pt;}
._6b{width:164.662797pt;}
._5b{width:177.099733pt;}
._34{width:179.813242pt;}
._5e{width:198.321828pt;}
._59{width:201.065633pt;}
._48{width:208.168000pt;}
._46{width:221.082205pt;}
._4b{width:227.857391pt;}
._39{width:231.788487pt;}
._53{width:236.091490pt;}
._57{width:239.045771pt;}
._54{width:243.499742pt;}
._70{width:254.379428pt;}
._31{width:261.991863pt;}
._27{width:263.247671pt;}
._32{width:267.208971pt;}
._56{width:270.219489pt;}
._33{width:272.453196pt;}
._6f{width:274.880533pt;}
._3a{width:293.295731pt;}
._5f{width:313.154982pt;}
._58{width:320.925059pt;}
._5a{width:353.347462pt;}
._3b{width:366.662183pt;}
._52{width:378.469037pt;}
._38{width:395.743018pt;}
._49{width:508.648850pt;}
._43{width:518.094717pt;}
._36{width:539.859439pt;}
._37{width:541.112964pt;}
._5d{width:566.573669pt;}
.fs3{font-size:26.566933pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:109.569067pt;}
.y188{bottom:121.524133pt;}
.y1f0{bottom:125.509200pt;}
.y29{bottom:125.509333pt;}
.y93{bottom:125.509467pt;}
.y187{bottom:132.700667pt;}
.y28{bottom:138.792800pt;}
.yc9{bottom:141.449467pt;}
.y59{bottom:141.449600pt;}
.y2b9{bottom:141.806800pt;}
.y157{bottom:142.453200pt;}
.yda{bottom:144.293600pt;}
.y1c8{bottom:144.770400pt;}
.y2d2{bottom:145.766800pt;}
.y289{bottom:149.419600pt;}
.y27{bottom:152.076400pt;}
.y2b8{bottom:155.090400pt;}
.y186{bottom:155.385467pt;}
.yc8{bottom:157.389733pt;}
.y7e{bottom:157.389867pt;}
.y156{bottom:158.393467pt;}
.yd9{bottom:160.233867pt;}
.y1c7{bottom:160.710667pt;}
.ya3{bottom:161.057733pt;}
.y288{bottom:162.703200pt;}
.y26{bottom:164.948133pt;}
.y58{bottom:166.235067pt;}
.y2b7{bottom:168.373867pt;}
.y21c{bottom:169.144400pt;}
.y2d1{bottom:170.673333pt;}
.y185{bottom:171.325600pt;}
.y1ef{bottom:173.329867pt;}
.y7d{bottom:173.330000pt;}
.y92{bottom:173.330133pt;}
.y155{bottom:174.333600pt;}
.y287{bottom:175.986667pt;}
.yd8{bottom:176.174133pt;}
.y1c6{bottom:177.315067pt;}
.y25{bottom:178.231600pt;}
.y111{bottom:178.678400pt;}
.y2b6{bottom:181.657467pt;}
.y57{bottom:182.175333pt;}
.y2d0{bottom:183.956800pt;}
.y21b{bottom:185.084533pt;}
.y184{bottom:187.265867pt;}
.yc7{bottom:189.270133pt;}
.y7c{bottom:189.270267pt;}
.yd7{bottom:192.114267pt;}
.y1c5{bottom:193.255333pt;}
.y110{bottom:194.618533pt;}
.y2b5{bottom:194.940933pt;}
.y2cf{bottom:197.240267pt;}
.y242{bottom:197.240400pt;}
.y56{bottom:198.115600pt;}
.y154{bottom:198.244000pt;}
.yc6{bottom:200.629733pt;}
.y286{bottom:202.553733pt;}
.y183{bottom:203.206133pt;}
.yc5{bottom:205.210400pt;}
.y7b{bottom:205.210533pt;}
.yd6{bottom:208.054533pt;}
.y2b4{bottom:208.224400pt;}
.y24{bottom:209.179333pt;}
.y1c4{bottom:209.726933pt;}
.y2ce{bottom:210.523867pt;}
.y10f{bottom:210.558800pt;}
.y91{bottom:213.180667pt;}
.y55{bottom:214.055733pt;}
.y285{bottom:215.837200pt;}
.y137{bottom:217.866800pt;}
.y182{bottom:219.146267pt;}
.y1ee{bottom:221.150533pt;}
.y7a{bottom:221.150667pt;}
.y2b3{bottom:221.508000pt;}
.y2cd{bottom:223.807333pt;}
.yd5{bottom:223.994800pt;}
.y23{bottom:225.119600pt;}
.y241{bottom:225.160667pt;}
.y1c3{bottom:226.198400pt;}
.y284{bottom:229.120800pt;}
.y54{bottom:229.996000pt;}
.y2b2{bottom:234.791467pt;}
.y181{bottom:235.086533pt;}
.y1ed{bottom:237.090800pt;}
.y79{bottom:237.090933pt;}
.y14e{bottom:238.865467pt;}
.yd4{bottom:239.934933pt;}
.y21a{bottom:240.420800pt;}
.y22{bottom:241.059867pt;}
.y240{bottom:241.100800pt;}
.y14d{bottom:242.149333pt;}
.y283{bottom:242.404267pt;}
.ya2{bottom:245.705867pt;}
.y53{bottom:245.936267pt;}
.y10e{bottom:246.350533pt;}
.y2b1{bottom:248.075067pt;}
.y1aa{bottom:248.379200pt;}
.y2cc{bottom:250.374400pt;}
.y90{bottom:250.374533pt;}
.y180{bottom:251.026800pt;}
.yc4{bottom:253.031067pt;}
.y78{bottom:253.031200pt;}
.y23f{bottom:253.757200pt;}
.y282{bottom:255.687867pt;}
.yd3{bottom:255.875200pt;}
.y219{bottom:256.287333pt;}
.y21{bottom:257.000000pt;}
.y23e{bottom:257.041067pt;}
.y14c{bottom:257.231600pt;}
.y14b{bottom:260.515600pt;}
.y1c2{bottom:260.788267pt;}
.y2b0{bottom:261.358533pt;}
.ya1{bottom:261.646133pt;}
.y52{bottom:261.876400pt;}
.y2cb{bottom:263.657867pt;}
.y153{bottom:264.885333pt;}
.y8f{bottom:266.314667pt;}
.y17f{bottom:266.966933pt;}
.y1ec{bottom:268.971200pt;}
.y77{bottom:268.971333pt;}
.y218{bottom:272.227467pt;}
.y20{bottom:272.940267pt;}
.y23d{bottom:273.636267pt;}
.y2af{bottom:274.642000pt;}
.y1c1{bottom:276.728400pt;}
.y2ca{bottom:276.941467pt;}
.y14a{bottom:277.429867pt;}
.ya0{bottom:277.586267pt;}
.y51{bottom:277.816667pt;}
.yd2{bottom:280.003733pt;}
.y152{bottom:280.825467pt;}
.y281{bottom:282.254800pt;}
.y8e{bottom:282.254933pt;}
.y17e{bottom:282.907200pt;}
.y1a9{bottom:284.023200pt;}
.y1eb{bottom:284.911467pt;}
.y76{bottom:284.911600pt;}
.y2ae{bottom:287.925600pt;}
.y217{bottom:288.167733pt;}
.y1f{bottom:288.880533pt;}
.y23c{bottom:289.576400pt;}
.y2c9{bottom:290.224933pt;}
.y1c0{bottom:292.668667pt;}
.y149{bottom:293.370133pt;}
.y9f{bottom:293.526533pt;}
.y50{bottom:293.756933pt;}
.y280{bottom:295.538400pt;}
.yd1{bottom:295.944000pt;}
.y151{bottom:296.765733pt;}
.y8d{bottom:298.195200pt;}
.yc3{bottom:300.851733pt;}
.y75{bottom:300.851867pt;}
.y2ad{bottom:301.209067pt;}
.y2c8{bottom:303.508533pt;}
.y216{bottom:304.108000pt;}
.y1e{bottom:304.820667pt;}
.y1bf{bottom:308.608933pt;}
.y27f{bottom:308.821867pt;}
.y17d{bottom:309.148400pt;}
.y9e{bottom:309.466800pt;}
.y4f{bottom:309.697067pt;}
.yd0{bottom:311.884267pt;}
.y150{bottom:312.706000pt;}
.y23b{bottom:314.062133pt;}
.y8c{bottom:314.135333pt;}
.y2ac{bottom:314.492667pt;}
.y1ea{bottom:316.791867pt;}
.y74{bottom:316.792000pt;}
.y215{bottom:320.048133pt;}
.y1d{bottom:320.760933pt;}
.y27e{bottom:322.105467pt;}
.y1be{bottom:324.549200pt;}
.y17c{bottom:325.088667pt;}
.y9d{bottom:325.406933pt;}
.y4e{bottom:325.637333pt;}
.y1a5{bottom:326.773733pt;}
.y2ab{bottom:327.776133pt;}
.ycf{bottom:327.824400pt;}
.y148{bottom:329.161867pt;}
.y23a{bottom:330.002400pt;}
.y2c7{bottom:330.075467pt;}
.y8b{bottom:330.075600pt;}
.y1e9{bottom:332.732133pt;}
.y73{bottom:332.732267pt;}
.y27d{bottom:335.388933pt;}
.y214{bottom:335.988400pt;}
.y1c{bottom:336.701200pt;}
.yc2{bottom:341.040533pt;}
.y2aa{bottom:341.059600pt;}
.y9c{bottom:341.347200pt;}
.y4d{bottom:341.577600pt;}
.y1a4{bottom:342.713867pt;}
.y2c6{bottom:343.359067pt;}
.yce{bottom:343.764667pt;}
.y17b{bottom:345.522533pt;}
.y239{bottom:345.942533pt;}
.y8a{bottom:346.015867pt;}
.yf2{bottom:348.672400pt;}
.y72{bottom:348.672533pt;}
.y213{bottom:351.928667pt;}
.y1b{bottom:352.641333pt;}
.y136{bottom:354.150000pt;}
.y2a9{bottom:354.343200pt;}
.y1bd{bottom:354.587600pt;}
.y2c5{bottom:356.642533pt;}
.yc1{bottom:356.980667pt;}
.y9b{bottom:357.287467pt;}
.y261{bottom:357.345733pt;}
.y4c{bottom:357.517733pt;}
.y1a3{bottom:358.654133pt;}
.y178{bottom:361.195333pt;}
.y238{bottom:361.882800pt;}
.y89{bottom:361.956000pt;}
.y1e8{bottom:363.181733pt;}
.y71{bottom:364.612667pt;}
.y2a8{bottom:367.626667pt;}
.y212{bottom:367.868800pt;}
.ycd{bottom:367.893200pt;}
.y1a{bottom:368.581600pt;}
.y2c4{bottom:369.926133pt;}
.y9a{bottom:373.227600pt;}
.y260{bottom:373.285867pt;}
.y4b{bottom:373.458000pt;}
.y17a{bottom:373.814800pt;}
.y1a2{bottom:374.594400pt;}
.y27c{bottom:375.239467pt;}
.yc0{bottom:375.795067pt;}
.y179{bottom:377.799733pt;}
.y237{bottom:377.823067pt;}
.y88{bottom:377.896267pt;}
.y1e7{bottom:379.122000pt;}
.y70{bottom:380.552933pt;}
.y2a7{bottom:380.910267pt;}
.y2c3{bottom:383.209600pt;}
.y211{bottom:383.809067pt;}
.ycc{bottom:383.833467pt;}
.y19{bottom:384.521867pt;}
.y1bc{bottom:384.626000pt;}
.y27b{bottom:388.523067pt;}
.y99{bottom:389.167867pt;}
.y25f{bottom:389.226133pt;}
.y4a{bottom:389.398267pt;}
.y1a1{bottom:390.534533pt;}
.ybf{bottom:391.735200pt;}
.y12f{bottom:393.210533pt;}
.y10d{bottom:393.213867pt;}
.y177{bottom:393.554933pt;}
.y236{bottom:393.763200pt;}
.y87{bottom:393.836533pt;}
.y2a6{bottom:394.193733pt;}
.y1e6{bottom:395.062133pt;}
.y2c2{bottom:396.493067pt;}
.y6f{bottom:396.493200pt;}
.y210{bottom:400.280667pt;}
.y18{bottom:400.462000pt;}
.y1bb{bottom:400.566267pt;}
.y27a{bottom:401.806533pt;}
.y98{bottom:405.108133pt;}
.y25e{bottom:405.166400pt;}
.y49{bottom:405.338400pt;}
.y1a0{bottom:406.474800pt;}
.y2a5{bottom:407.477200pt;}
.ybe{bottom:407.675467pt;}
.ycb{bottom:407.743867pt;}
.y10c{bottom:409.154133pt;}
.y235{bottom:409.703467pt;}
.y86{bottom:409.776667pt;}
.y1e5{bottom:411.002400pt;}
.y6e{bottom:412.433333pt;}
.y176{bottom:413.684533pt;}
.y174{bottom:413.988933pt;}
.y12e{bottom:414.416933pt;}
.yf1{bottom:414.947467pt;}
.y279{bottom:415.090000pt;}
.y20f{bottom:416.220800pt;}
.y17{bottom:416.402267pt;}
.y1ba{bottom:416.506533pt;}
.y2a4{bottom:420.760800pt;}
.y97{bottom:421.048267pt;}
.y25d{bottom:421.106533pt;}
.y48{bottom:421.278667pt;}
.y19f{bottom:422.415067pt;}
.y2c1{bottom:423.060133pt;}
.y12d{bottom:423.528800pt;}
.ybd{bottom:423.615733pt;}
.y10b{bottom:425.094267pt;}
.y234{bottom:425.643733pt;}
.y85{bottom:425.716933pt;}
.y1e4{bottom:426.942667pt;}
.y6d{bottom:428.373600pt;}
.y171{bottom:429.661600pt;}
.yf0{bottom:430.887600pt;}
.y16{bottom:432.342533pt;}
.y1b9{bottom:432.446667pt;}
.y20e{bottom:432.692400pt;}
.y2a3{bottom:434.044267pt;}
.y2c0{bottom:436.343733pt;}
.y96{bottom:436.988533pt;}
.y25c{bottom:437.046800pt;}
.y47{bottom:437.218933pt;}
.y19e{bottom:438.355200pt;}
.ybc{bottom:439.555867pt;}
.y10a{bottom:441.034533pt;}
.y233{bottom:441.583867pt;}
.y278{bottom:441.657067pt;}
.y84{bottom:441.657200pt;}
.y173{bottom:442.281067pt;}
.y6c{bottom:444.313867pt;}
.y172{bottom:446.266133pt;}
.yef{bottom:446.827867pt;}
.y2a2{bottom:447.327867pt;}
.y175{bottom:447.705200pt;}
.y15{bottom:448.282667pt;}
.y1b8{bottom:448.386933pt;}
.y2bf{bottom:449.627200pt;}
.yca{bottom:450.512000pt;}
.y12c{bottom:452.909733pt;}
.y25b{bottom:452.987067pt;}
.y46{bottom:453.159067pt;}
.y19d{bottom:454.295467pt;}
.y277{bottom:454.940667pt;}
.y109{bottom:456.974800pt;}
.y232{bottom:457.524133pt;}
.y83{bottom:457.597333pt;}
.ybb{bottom:458.370267pt;}
.y6b{bottom:460.254000pt;}
.y2a1{bottom:460.611333pt;}
.y2be{bottom:462.910667pt;}
.y14{bottom:464.222933pt;}
.y1b7{bottom:464.327200pt;}
.y170{bottom:466.043200pt;}
.y147{bottom:466.340800pt;}
.y276{bottom:468.224133pt;}
.y12b{bottom:468.850000pt;}
.y25a{bottom:468.927200pt;}
.y45{bottom:469.099333pt;}
.yee{bottom:472.447733pt;}
.y108{bottom:472.914933pt;}
.y231{bottom:473.464400pt;}
.y82{bottom:473.537600pt;}
.y2a0{bottom:473.894800pt;}
.y95{bottom:475.119867pt;}
.y6a{bottom:476.194267pt;}
.yba{bottom:477.184533pt;}
.y13{bottom:480.163200pt;}
.y19c{bottom:480.217333pt;}
.y1b6{bottom:480.267333pt;}
.y275{bottom:481.507600pt;}
.yed{bottom:481.559600pt;}
.y1a8{bottom:481.842133pt;}
.y16f{bottom:481.983467pt;}
.y20d{bottom:482.286400pt;}
.y12a{bottom:484.790267pt;}
.y259{bottom:484.867467pt;}
.y44{bottom:485.039600pt;}
.y29f{bottom:487.178400pt;}
.y107{bottom:488.855200pt;}
.y2bd{bottom:489.477733pt;}
.y81{bottom:489.477867pt;}
.y69{bottom:492.134533pt;}
.y1e3{bottom:492.172533pt;}
.yb9{bottom:493.124667pt;}
.y274{bottom:494.791200pt;}
.y12{bottom:496.103333pt;}
.y19b{bottom:496.157600pt;}
.y1b5{bottom:496.207600pt;}
.y20c{bottom:498.226667pt;}
.y29e{bottom:500.461867pt;}
.y129{bottom:500.730533pt;}
.y258{bottom:500.807733pt;}
.y16e{bottom:502.601867pt;}
.y2bc{bottom:502.761333pt;}
.y16c{bottom:502.996667pt;}
.y106{bottom:504.795467pt;}
.y80{bottom:505.418000pt;}
.y68{bottom:508.074667pt;}
.y1e2{bottom:508.112667pt;}
.y43{bottom:508.949867pt;}
.yb8{bottom:509.064933pt;}
.y11{bottom:512.043600pt;}
.y19a{bottom:512.097867pt;}
.y1b4{bottom:512.147867pt;}
.y20b{bottom:514.166800pt;}
.y16b{bottom:514.173333pt;}
.yec{bottom:515.553200pt;}
.y29d{bottom:516.044800pt;}
.y128{bottom:516.670667pt;}
.y257{bottom:516.747867pt;}
.y1a7{bottom:517.633867pt;}
.y105{bottom:520.735600pt;}
.y7f{bottom:521.358267pt;}
.y16d{bottom:523.159733pt;}
.y67{bottom:524.014933pt;}
.y1e1{bottom:524.052933pt;}
.y230{bottom:525.744267pt;}
.yb7{bottom:527.879200pt;}
.y199{bottom:528.038000pt;}
.y1b3{bottom:528.088000pt;}
.y2bb{bottom:529.328267pt;}
.y29c{bottom:529.328400pt;}
.y20a{bottom:530.033333pt;}
.y127{bottom:532.610933pt;}
.y256{bottom:532.688133pt;}
.y273{bottom:534.641733pt;}
.y10{bottom:535.954000pt;}
.y104{bottom:536.675867pt;}
.y1e0{bottom:536.945333pt;}
.y42{bottom:537.298533pt;}
.y66{bottom:539.955200pt;}
.y1df{bottom:540.229333pt;}
.yeb{bottom:540.501200pt;}
.yea{bottom:540.920000pt;}
.y22f{bottom:541.684400pt;}
.y29b{bottom:542.611867pt;}
.yb6{bottom:543.819467pt;}
.y1b2{bottom:544.028267pt;}
.ye9{bottom:544.203867pt;}
.y16a{bottom:544.265200pt;}
.y209{bottom:546.504800pt;}
.y272{bottom:547.925333pt;}
.y126{bottom:548.551200pt;}
.y14f{bottom:548.612267pt;}
.y255{bottom:548.628400pt;}
.y198{bottom:551.948400pt;}
.y103{bottom:552.616133pt;}
.y41{bottom:553.238667pt;}
.y1de{bottom:553.983200pt;}
.y65{bottom:555.895333pt;}
.y1dd{bottom:557.267200pt;}
.y22e{bottom:557.624667pt;}
.yb5{bottom:559.759733pt;}
.y1b1{bottom:559.968533pt;}
.y169{bottom:560.205467pt;}
.y271{bottom:561.208800pt;}
.y125{bottom:564.491333pt;}
.y254{bottom:564.568533pt;}
.y208{bottom:566.164400pt;}
.y102{bottom:568.556267pt;}
.y40{bottom:569.178933pt;}
.y1dc{bottom:571.021067pt;}
.y64{bottom:571.835600pt;}
.yf{bottom:571.853467pt;}
.y22d{bottom:574.229067pt;}
.y1db{bottom:574.305067pt;}
.y270{bottom:574.492267pt;}
.yb4{bottom:575.699867pt;}
.ye8{bottom:576.101600pt;}
.y168{bottom:576.145600pt;}
.y124{bottom:580.431600pt;}
.y253{bottom:580.508800pt;}
.y197{bottom:581.920400pt;}
.y29a{bottom:582.462400pt;}
.y3f{bottom:585.119200pt;}
.ye{bottom:585.136933pt;}
.y63{bottom:587.775867pt;}
.y1da{bottom:588.058933pt;}
.y1b0{bottom:590.006933pt;}
.y22c{bottom:590.169333pt;}
.y1d9{bottom:591.342933pt;}
.yb3{bottom:591.640133pt;}
.y167{bottom:592.085867pt;}
.y2ba{bottom:595.745867pt;}
.y299{bottom:595.746000pt;}
.y123{bottom:596.371867pt;}
.y252{bottom:596.449067pt;}
.y135{bottom:597.253467pt;}
.y196{bottom:597.860667pt;}
.yd{bottom:598.420533pt;}
.y101{bottom:599.851067pt;}
.y3e{bottom:601.059333pt;}
.ye7{bottom:602.862933pt;}
.y62{bottom:603.716000pt;}
.y1d8{bottom:604.936400pt;}
.y1af{bottom:605.947200pt;}
.y22b{bottom:606.640933pt;}
.yb2{bottom:607.580400pt;}
.y166{bottom:608.026133pt;}
.y1d7{bottom:608.220267pt;}
.y298{bottom:609.029467pt;}
.yc{bottom:611.704000pt;}
.y122{bottom:612.312000pt;}
.y251{bottom:612.389200pt;}
.y207{bottom:612.437467pt;}
.y134{bottom:613.193600pt;}
.y195{bottom:613.800800pt;}
.y26f{bottom:614.342800pt;}
.y100{bottom:615.791333pt;}
.y3d{bottom:616.999600pt;}
.y146{bottom:618.954533pt;}
.y61{bottom:619.656267pt;}
.y1ae{bottom:621.887333pt;}
.y297{bottom:622.312933pt;}
.y22a{bottom:622.581067pt;}
.yb1{bottom:623.520533pt;}
.y1d6{bottom:624.787867pt;}
.yb{bottom:624.987600pt;}
.y26e{bottom:627.626400pt;}
.y121{bottom:628.252267pt;}
.y250{bottom:628.329467pt;}
.y206{bottom:628.377733pt;}
.ye6{bottom:629.624400pt;}
.y194{bottom:629.741067pt;}
.y165{bottom:630.983467pt;}
.yff{bottom:631.731467pt;}
.y3c{bottom:632.939867pt;}
.y164{bottom:634.267333pt;}
.y60{bottom:635.596533pt;}
.y1ad{bottom:637.827600pt;}
.ya{bottom:638.271067pt;}
.y229{bottom:639.052667pt;}
.yb0{bottom:639.460800pt;}
.y1d5{bottom:640.728000pt;}
.y26d{bottom:640.909867pt;}
.y144{bottom:642.937200pt;}
.y120{bottom:644.192533pt;}
.y24f{bottom:644.269733pt;}
.y205{bottom:644.317867pt;}
.ye4{bottom:645.564533pt;}
.y133{bottom:646.328667pt;}
.ye5{bottom:647.184400pt;}
.yfe{bottom:647.671733pt;}
.y3b{bottom:648.880000pt;}
.y5f{bottom:651.536667pt;}
.y9{bottom:651.554533pt;}
.y193{bottom:652.266133pt;}
.y26c{bottom:654.193467pt;}
.y228{bottom:654.992933pt;}
.y1d4{bottom:656.668267pt;}
.y163{bottom:656.952000pt;}
.yaf{bottom:658.275067pt;}
.y140{bottom:658.744533pt;}
.y143{bottom:658.877333pt;}
.y132{bottom:659.612133pt;}
.y11f{bottom:660.132667pt;}
.y24e{bottom:660.209867pt;}
.y204{bottom:660.258133pt;}
.y141{bottom:661.534133pt;}
.y296{bottom:662.163600pt;}
.ye3{bottom:662.292533pt;}
.y3a{bottom:664.820267pt;}
.y8{bottom:664.838133pt;}
.y5e{bottom:667.476933pt;}
.yfd{bottom:670.078933pt;}
.y227{bottom:671.464400pt;}
.y1d3{bottom:672.608533pt;}
.y162{bottom:672.892267pt;}
.y131{bottom:672.895733pt;}
.y203{bottom:673.150533pt;}
.yae{bottom:674.215333pt;}
.y192{bottom:674.791200pt;}
.y142{bottom:674.817600pt;}
.y295{bottom:675.447067pt;}
.y11e{bottom:676.072933pt;}
.y24d{bottom:676.150133pt;}
.y202{bottom:676.434533pt;}
.y7{bottom:678.121600pt;}
.yfc{bottom:679.190667pt;}
.y1ac{bottom:679.455600pt;}
.y26b{bottom:680.760400pt;}
.y39{bottom:680.760533pt;}
.y5d{bottom:683.417200pt;}
.y145{bottom:685.444667pt;}
.y130{bottom:686.179200pt;}
.y226{bottom:687.404667pt;}
.y1d2{bottom:688.548667pt;}
.y294{bottom:688.730533pt;}
.y161{bottom:688.832400pt;}
.ye2{bottom:689.112933pt;}
.yad{bottom:690.155600pt;}
.y201{bottom:690.188400pt;}
.y6{bottom:691.405200pt;}
.y11d{bottom:692.013200pt;}
.y24c{bottom:692.090400pt;}
.y200{bottom:693.472400pt;}
.y26a{bottom:694.044000pt;}
.y38{bottom:696.700667pt;}
.y13f{bottom:698.534400pt;}
.y5c{bottom:699.357333pt;}
.y293{bottom:702.014133pt;}
.y1d1{bottom:704.488933pt;}
.y5{bottom:704.688667pt;}
.y160{bottom:704.772667pt;}
.yac{bottom:706.095733pt;}
.y225{bottom:707.064267pt;}
.y1ff{bottom:707.226267pt;}
.y269{bottom:707.327467pt;}
.y190{bottom:707.677467pt;}
.y11c{bottom:707.953333pt;}
.y24b{bottom:708.030533pt;}
.y191{bottom:708.076133pt;}
.ye1{bottom:709.835333pt;}
.y1fe{bottom:710.510267pt;}
.yfb{bottom:711.322267pt;}
.y1a6{bottom:711.442933pt;}
.y37{bottom:712.640933pt;}
.y13e{bottom:714.474667pt;}
.y1ab{bottom:715.247333pt;}
.y5b{bottom:715.297600pt;}
.y1d0{bottom:720.429200pt;}
.y268{bottom:720.611067pt;}
.yab{bottom:722.036000pt;}
.y15e{bottom:723.398533pt;}
.y224{bottom:723.535867pt;}
.y11b{bottom:723.893600pt;}
.y24a{bottom:723.970800pt;}
.y1fd{bottom:724.264133pt;}
.yfa{bottom:727.262400pt;}
.y1fc{bottom:727.548000pt;}
.y36{bottom:728.581200pt;}
.y13d{bottom:730.414800pt;}
.y267{bottom:733.894533pt;}
.ye0{bottom:736.596667pt;}
.y1cf{bottom:736.900667pt;}
.yaa{bottom:737.976267pt;}
.y15b{bottom:739.375600pt;}
.y15f{bottom:739.375733pt;}
.y11a{bottom:739.833867pt;}
.y249{bottom:739.911067pt;}
.y1fb{bottom:741.141467pt;}
.y292{bottom:741.864667pt;}
.y223{bottom:743.195467pt;}
.yf9{bottom:743.202667pt;}
.y1fa{bottom:744.425467pt;}
.y35{bottom:744.521333pt;}
.y13c{bottom:746.355067pt;}
.y266{bottom:747.178133pt;}
.y18f{bottom:750.480000pt;}
.y15d{bottom:751.995067pt;}
.ydf{bottom:752.536933pt;}
.y1ce{bottom:752.840933pt;}
.ya9{bottom:753.916400pt;}
.y291{bottom:755.148133pt;}
.y118{bottom:755.774000pt;}
.y15c{bottom:755.980133pt;}
.yf8{bottom:759.142933pt;}
.y222{bottom:759.666933pt;}
.y34{bottom:760.461600pt;}
.y119{bottom:760.594533pt;}
.y1f9{bottom:760.992933pt;}
.y13b{bottom:762.295333pt;}
.y18e{bottom:766.420133pt;}
.y290{bottom:768.431733pt;}
.yde{bottom:768.477200pt;}
.y1cd{bottom:769.312533pt;}
.y117{bottom:771.714267pt;}
.y15a{bottom:771.735333pt;}
.ya8{bottom:772.730667pt;}
.y4{bottom:773.745067pt;}
.y33{bottom:776.401867pt;}
.y1f8{bottom:776.933200pt;}
.y13a{bottom:778.235467pt;}
.y5a{bottom:781.222267pt;}
.y28f{bottom:781.715200pt;}
.y18d{bottom:782.360400pt;}
.y3{bottom:787.028667pt;}
.y116{bottom:787.654400pt;}
.ya7{bottom:788.670933pt;}
.y159{bottom:790.361200pt;}
.yf7{bottom:790.437600pt;}
.y32{bottom:792.342000pt;}
.y248{bottom:792.380933pt;}
.y1f7{bottom:792.873467pt;}
.y139{bottom:794.175733pt;}
.y28e{bottom:794.998800pt;}
.y94{bottom:797.162533pt;}
.y18c{bottom:798.300667pt;}
.y265{bottom:800.312133pt;}
.y158{bottom:801.537733pt;}
.ydd{bottom:802.871733pt;}
.y1cc{bottom:803.421067pt;}
.y115{bottom:803.594667pt;}
.ya6{bottom:804.611200pt;}
.y221{bottom:806.230800pt;}
.yf6{bottom:806.377867pt;}
.y1cb{bottom:806.704933pt;}
.y31{bottom:808.282267pt;}
.y247{bottom:808.321200pt;}
.y1f6{bottom:808.813733pt;}
.y138{bottom:810.116000pt;}
.y264{bottom:813.595600pt;}
.y18b{bottom:814.240800pt;}
.ydc{bottom:818.811867pt;}
.ya5{bottom:820.551333pt;}
.y28d{bottom:821.565733pt;}
.y220{bottom:822.170933pt;}
.y1ca{bottom:823.779733pt;}
.y30{bottom:824.222533pt;}
.y246{bottom:824.261333pt;}
.y1f5{bottom:824.753867pt;}
.y2{bottom:826.879200pt;}
.yf5{bottom:828.194667pt;}
.y18a{bottom:830.181067pt;}
.y114{bottom:832.192533pt;}
.ydb{bottom:834.752133pt;}
.y28c{bottom:834.849333pt;}
.y1c9{bottom:836.878800pt;}
.yf4{bottom:837.306533pt;}
.y21f{bottom:838.037467pt;}
.y245{bottom:840.127867pt;}
.y2f{bottom:840.162667pt;}
.y1f4{bottom:840.694133pt;}
.ya4{bottom:844.461733pt;}
.y1{bottom:845.476133pt;}
.y189{bottom:846.121333pt;}
.y113{bottom:848.132800pt;}
.y244{bottom:853.093867pt;}
.y263{bottom:853.446267pt;}
.y21e{bottom:853.977600pt;}
.y2e{bottom:856.102933pt;}
.y243{bottom:856.377867pt;}
.y1f3{bottom:856.634400pt;}
.y28b{bottom:861.416400pt;}
.yf3{bottom:862.771867pt;}
.y112{bottom:864.073067pt;}
.y262{bottom:866.729733pt;}
.y21d{bottom:869.917867pt;}
.y2d{bottom:872.043200pt;}
.y1f2{bottom:873.105867pt;}
.y28a{bottom:874.699867pt;}
.y2c{bottom:887.983333pt;}
.y1f1{bottom:889.577467pt;}
.y2b{bottom:919.863867pt;}
.h1c{height:2.656693pt;}
.h22{height:25.514810pt;}
.h4{height:26.519037pt;}
.h6{height:26.556230pt;}
.h1d{height:26.885449pt;}
.h2b{height:30.435155pt;}
.h3{height:31.880400pt;}
.h2a{height:33.977022pt;}
.h5{height:35.920637pt;}
.h27{height:36.449182pt;}
.h7{height:38.043849pt;}
.hc{height:39.321703pt;}
.h1{height:39.850400pt;}
.h23{height:39.850933pt;}
.h2{height:42.624933pt;}
.h1a{height:45.695627pt;}
.ha{height:45.800637pt;}
.h14{height:45.837830pt;}
.h28{height:45.838364pt;}
.h29{height:46.524949pt;}
.h17{height:46.922237pt;}
.h8{height:47.440103pt;}
.h24{height:48.457703pt;}
.h18{height:49.691303pt;}
.h20{height:49.691837pt;}
.hb{height:51.280678pt;}
.h19{height:52.985867pt;}
.h1f{height:52.986400pt;}
.h21{height:53.233703pt;}
.hf{height:54.661067pt;}
.he{height:57.956370pt;}
.h9{height:58.173067pt;}
.h1e{height:62.827303pt;}
.hd{height:67.067360pt;}
.h12{height:73.989449pt;}
.h26{height:74.201333pt;}
.h16{height:74.491315pt;}
.h15{height:75.796000pt;}
.h13{height:76.297867pt;}
.h10{height:77.576160pt;}
.h25{height:84.329182pt;}
.h1b{height:109.457227pt;}
.h11{height:114.023627pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:168.896667pt;}
.x5c{left:174.542267pt;}
.x3{left:175.620800pt;}
.x23{left:176.949600pt;}
.x1{left:182.054133pt;}
.x9{left:184.836933pt;}
.x51{left:188.401467pt;}
.x47{left:190.019733pt;}
.x5d{left:192.106267pt;}
.x16{left:194.273600pt;}
.x2f{left:198.014000pt;}
.x4b{left:198.950267pt;}
.xd{left:200.313867pt;}
.x13{left:201.810267pt;}
.x49{left:209.045867pt;}
.x14{left:215.093867pt;}
.x6{left:216.717333pt;}
.x4c{left:225.701867pt;}
.xe{left:227.196667pt;}
.x28{left:233.493467pt;}
.x59{left:238.251467pt;}
.x45{left:240.099200pt;}
.x4e{left:242.295200pt;}
.x2{left:244.058267pt;}
.x12{left:245.071333pt;}
.x46{left:251.821600pt;}
.x2a{left:254.215600pt;}
.x24{left:256.138667pt;}
.x11{left:265.395867pt;}
.x5b{left:266.939867pt;}
.x4f{left:269.046800pt;}
.x57{left:272.640667pt;}
.x44{left:293.801200pt;}
.x22{left:298.254267pt;}
.x33{left:299.416533pt;}
.x52{left:300.366933pt;}
.x55{left:307.143067pt;}
.x25{left:311.733867pt;}
.x42{left:315.600800pt;}
.x21{left:318.362267pt;}
.x10{left:323.769733pt;}
.x1e{left:326.359733pt;}
.x17{left:330.052133pt;}
.xf{left:333.408000pt;}
.x19{left:336.130667pt;}
.x50{left:338.286000pt;}
.x18{left:342.034533pt;}
.x3a{left:346.956400pt;}
.x3e{left:348.024400pt;}
.xc{left:349.576800pt;}
.x5{left:352.215733pt;}
.x7{left:354.371733pt;}
.x36{left:356.878533pt;}
.x35{left:361.766667pt;}
.x3c{left:362.966000pt;}
.x3b{left:365.871467pt;}
.x3f{left:369.023200pt;}
.x40{left:370.836000pt;}
.x48{left:373.293200pt;}
.x1f{left:375.380133pt;}
.x27{left:378.958000pt;}
.x3d{left:382.220267pt;}
.x53{left:385.628533pt;}
.x38{left:390.050400pt;}
.x32{left:392.004133pt;}
.x2c{left:395.335333pt;}
.x1b{left:397.996133pt;}
.x41{left:400.887600pt;}
.x20{left:403.200000pt;}
.xa{left:405.352533pt;}
.x2d{left:406.958400pt;}
.x37{left:410.349067pt;}
.x4d{left:415.022000pt;}
.x39{left:421.695867pt;}
.x15{left:422.900933pt;}
.x58{left:426.619067pt;}
.x34{left:427.714933pt;}
.x29{left:431.325467pt;}
.x56{left:442.057467pt;}
.x1d{left:445.224267pt;}
.x5a{left:447.581733pt;}
.xb{left:456.042267pt;}
.x5e{left:460.598267pt;}
.x1c{left:461.768933pt;}
.x2e{left:463.782400pt;}
.x54{left:470.890267pt;}
.x43{left:473.061867pt;}
.x1a{left:475.428267pt;}
.x26{left:508.231467pt;}
.x30{left:514.480800pt;}
.x2b{left:525.384400pt;}
.x31{left:575.888933pt;}
.x4{left:579.890267pt;}
.x4a{left:583.647333pt;}
}


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