
/* 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_7cad378bf2a5.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_3754298a59cb.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_c1db0dfdf38e.woff")format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_8055e888f7ad.woff")format("woff");}.ff4{font-family:ff4;line-height:0.156000;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_4eb3d48bbd70.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_3b13975cadbf.woff")format("woff");}.ff6{font-family:ff6;line-height:0.429000;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_e3ec7b122db3.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_81e640bdbbb3.woff")format("woff");}.ff8{font-family:ff8;line-height:0.635000;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_bec352af55f8.woff")format("woff");}.ff9{font-family:ff9;line-height:0.666000;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_9b2f03d88b08.woff")format("woff");}.ffa{font-family:ffa;line-height:0.923000;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_f63d4cd54811.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_b9d22cf6dc77.woff")format("woff");}.ffc{font-family:ffc;line-height:0.972000;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_5efb81d49c44.woff")format("woff");}.ffd{font-family:ffd;line-height:0.966000;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_b9d22cf6dc77.woff")format("woff");}.ffe{font-family:ffe;line-height:0.972000;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_5efb81d49c44.woff")format("woff");}.fff{font-family:fff;line-height:0.966000;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_b9d22cf6dc77.woff")format("woff");}.ff10{font-family:ff10;line-height:0.972000;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_5efb81d49c44.woff")format("woff");}.ff11{font-family:ff11;line-height:0.966000;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_8ee40e5e1f60.woff")format("woff");}.ff12{font-family:ff12;line-height:0.903000;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_4fd0946aa417.woff")format("woff");}.ff13{font-family:ff13;line-height:0.486000;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_b01a67f850f7.woff")format("woff");}.ff14{font-family:ff14;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:ff15;src:url("fonts/font_0020_022eb4dde991.woff")format("woff");}.ff15{font-family:ff15;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:ff16;src:url("fonts/font_0021_af21bad6f602.woff")format("woff");}.ff16{font-family:ff16;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_40aba2e9709a.woff")format("woff");}.ff17{font-family:ff17;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_7d61cdf616ea.woff")format("woff");}.ff18{font-family:ff18;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_e3019b992b6f.woff")format("woff");}.ff19{font-family:ff19;line-height:0.677000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_24b89b52d277.woff")format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url("fonts/font_0026_7918ec625612.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_3a2128c67b62.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.897235;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_7918ec625612.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_7918ec625612.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_5880eef8ec91.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.966000;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:ff20;src:url("fonts/font_0031_7918ec625612.woff")format("woff");}.ff20{font-family:ff20;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_7918ec625612.woff")format("woff");}.ff21{font-family:ff21;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_7918ec625612.woff")format("woff");}.ff22{font-family:ff22;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_b9d22cf6dc77.woff")format("woff");}.ff23{font-family:ff23;line-height:0.972000;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:ff24;src:url("fonts/font_0035_7918ec625612.woff")format("woff");}.ff24{font-family:ff24;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_b9d22cf6dc77.woff")format("woff");}.ff25{font-family:ff25;line-height:0.972000;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:ff26;src:url("fonts/font_0037_7918ec625612.woff")format("woff");}.ff26{font-family:ff26;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_6b7275e88307.woff")format("woff");}.ff27{font-family:ff27;line-height:0.764000;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:ff28;src:url("fonts/font_0039_7918ec625612.woff")format("woff");}.ff28{font-family:ff28;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_459d5fc4bf38.woff")format("woff");}.ff29{font-family:ff29;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:ff2a;src:url("fonts/font_0041_7918ec625612.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url("fonts/font_0042_459d5fc4bf38.woff")format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url("fonts/font_0043_7918ec625612.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url("fonts/font_0044_459d5fc4bf38.woff")format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url("fonts/font_0045_afcb1e9d2250.woff")format("woff");}.ff2e{font-family:ff2e;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;}
.m27{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2c{transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);}
.m2b{transform:matrix(0.241481,0.064705,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.064705,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.064705,-0.064705,0.241481,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.696000px;}
.v1{vertical-align:-17.934000px;}
.v3{vertical-align:-8.970000px;}
.v6{vertical-align:-6.354000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:8.982000px;}
.v8{vertical-align:17.934000px;}
.va{vertical-align:30.054000px;}
.v7{vertical-align:31.470000px;}
.v5{vertical-align:40.434000px;}
.v4{vertical-align:84.282000px;}
.v9{vertical-align:121.920000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000065px;}
.ls1e{letter-spacing:0.000208px;}
.ls7{letter-spacing:0.000300px;}
.ls16{letter-spacing:0.000312px;}
.ls3f{letter-spacing:0.000503px;}
.ls3e{letter-spacing:0.000590px;}
.ls3d{letter-spacing:0.000759px;}
.ls40{letter-spacing:0.001017px;}
.lsa{letter-spacing:0.001140px;}
.ls1f{letter-spacing:0.001690px;}
.ls13{letter-spacing:0.001698px;}
.ls41{letter-spacing:0.002023px;}
.ls2e{letter-spacing:0.002222px;}
.ls42{letter-spacing:0.002245px;}
.ls11{letter-spacing:0.003031px;}
.ls9{letter-spacing:0.003269px;}
.lsd{letter-spacing:0.004200px;}
.ls21{letter-spacing:0.004379px;}
.ls2c{letter-spacing:0.005277px;}
.ls27{letter-spacing:0.006065px;}
.ls20{letter-spacing:0.007690px;}
.ls12{letter-spacing:2.984525px;}
.ls2b{letter-spacing:2.985720px;}
.lsb{letter-spacing:2.989140px;}
.ls19{letter-spacing:2.990525px;}
.ls2a{letter-spacing:2.991720px;}
.ls32{letter-spacing:2.991954px;}
.ls15{letter-spacing:3.150538px;}
.ls1a{letter-spacing:3.153031px;}
.ls14{letter-spacing:3.153181px;}
.ls18{letter-spacing:3.156538px;}
.ls8{letter-spacing:4.276379px;}
.ls17{letter-spacing:6.134525px;}
.lsc{letter-spacing:7.173181px;}
.ls34{letter-spacing:12.035277px;}
.ls28{letter-spacing:13.278538px;}
.lsf{letter-spacing:13.281031px;}
.ls10{letter-spacing:13.284538px;}
.ls30{letter-spacing:13.286685px;}
.ls3c{letter-spacing:13.785644px;}
.ls31{letter-spacing:16.267140px;}
.ls2f{letter-spacing:16.602538px;}
.ls1{letter-spacing:17.994205px;}
.ls43{letter-spacing:19.433072px;}
.ls22{letter-spacing:19.594851px;}
.ls2{letter-spacing:19.928338px;}
.ls26{letter-spacing:20.454538px;}
.ls4{letter-spacing:20.931720px;}
.ls1c{letter-spacing:20.979644px;}
.ls2d{letter-spacing:22.911954px;}
.ls5{letter-spacing:23.881409px;}
.ls25{letter-spacing:26.027732px;}
.ls6{letter-spacing:27.109409px;}
.ls1b{letter-spacing:29.882338px;}
.ls0{letter-spacing:34.373673px;}
.ls23{letter-spacing:74.328538px;}
.ls39{letter-spacing:74.715644px;}
.ls1d{letter-spacing:83.391644px;}
.ls35{letter-spacing:88.215644px;}
.ls3b{letter-spacing:98.349644px;}
.ls37{letter-spacing:103.623644px;}
.ls36{letter-spacing:106.569644px;}
.ls38{letter-spacing:107.295644px;}
.ls3a{letter-spacing:107.349644px;}
.ls33{letter-spacing:501.812338px;}
.ls29{letter-spacing:541.100338px;}
.ls24{letter-spacing:881.870338px;}
.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;}
}
.wsb8{word-spacing:-53.984775px;}
.ws74{word-spacing:-38.937826px;}
.ws78{word-spacing:-16.605662px;}
.ws21{word-spacing:-14.993795px;}
.ws10c{word-spacing:-6.862239px;}
.ws76{word-spacing:-6.646143px;}
.wsa3{word-spacing:-6.443810px;}
.wsa8{word-spacing:-3.338540px;}
.ws77{word-spacing:-3.335478px;}
.wse0{word-spacing:-3.096376px;}
.ws5a{word-spacing:-3.036600px;}
.ws10a{word-spacing:-2.857274px;}
.ws12e{word-spacing:-2.748778px;}
.ws170{word-spacing:-2.697969px;}
.wsf{word-spacing:-2.618171px;}
.ws136{word-spacing:-2.393113px;}
.ws88{word-spacing:-2.342304px;}
.ws115{word-spacing:-2.326680px;}
.ws69{word-spacing:-2.080191px;}
.ws174{word-spacing:-2.037449px;}
.ws144{word-spacing:-1.986640px;}
.wsa5{word-spacing:-1.960640px;}
.wsf0{word-spacing:-1.721537px;}
.wsd{word-spacing:-1.661762px;}
.ws10d{word-spacing:-1.601986px;}
.ws123{word-spacing:-1.482435px;}
.wsfb{word-spacing:-1.422659px;}
.ws58{word-spacing:-1.362884px;}
.ws15d{word-spacing:-1.326120px;}
.ws99{word-spacing:-1.243332px;}
.wsaf{word-spacing:-1.183557px;}
.ws11f{word-spacing:-1.123781px;}
.ws16a{word-spacing:-1.122883px;}
.ws48{word-spacing:-1.064006px;}
.ws80{word-spacing:-1.004230px;}
.ws57{word-spacing:-0.944454px;}
.ws9f{word-spacing:-0.884679px;}
.wsab{word-spacing:-0.824903px;}
.wsdd{word-spacing:-0.765128px;}
.ws6c{word-spacing:-0.705352px;}
.wsf1{word-spacing:-0.585801px;}
.ws16c{word-spacing:-0.563982px;}
.ws10f{word-spacing:-0.526025px;}
.wse9{word-spacing:-0.466250px;}
.ws10e{word-spacing:-0.406474px;}
.ws13e{word-spacing:-0.360745px;}
.wsea{word-spacing:-0.346698px;}
.wse{word-spacing:-0.286923px;}
.ws32{word-spacing:-0.227147px;}
.ws142{word-spacing:-0.208318px;}
.ws47{word-spacing:-0.167372px;}
.ws141{word-spacing:-0.157509px;}
.ws145{word-spacing:-0.106699px;}
.ws28{word-spacing:-0.059776px;}
.ws8e{word-spacing:-0.050809px;}
.ws33{word-spacing:-0.047820px;}
.wsa7{word-spacing:-0.041843px;}
.ws166{word-spacing:-0.005081px;}
.ws34{word-spacing:0.000000px;}
.ws75{word-spacing:0.011955px;}
.ws171{word-spacing:0.096537px;}
.ws41{word-spacing:0.191282px;}
.wse7{word-spacing:0.248965px;}
.ws44{word-spacing:0.251058px;}
.ws147{word-spacing:0.299774px;}
.ws4f{word-spacing:0.310833px;}
.ws49{word-spacing:0.370609px;}
.ws94{word-spacing:0.430384px;}
.ws12{word-spacing:0.490160px;}
.ws4d{word-spacing:0.549936px;}
.ws13{word-spacing:0.669487px;}
.ws143{word-spacing:0.706248px;}
.ws14b{word-spacing:0.757057px;}
.ws85{word-spacing:0.789038px;}
.ws24{word-spacing:0.848814px;}
.wsa0{word-spacing:0.908589px;}
.ws122{word-spacing:0.968365px;}
.ws73{word-spacing:1.028140px;}
.ws8{word-spacing:1.087916px;}
.ws16b{word-spacing:1.163531px;}
.wsc5{word-spacing:1.267243px;}
.ws119{word-spacing:1.315958px;}
.ws4c{word-spacing:1.327018px;}
.ws4a{word-spacing:1.446570px;}
.wsa2{word-spacing:1.566121px;}
.ws13d{word-spacing:1.620813px;}
.ws111{word-spacing:1.625896px;}
.ws6f{word-spacing:1.685672px;}
.ws46{word-spacing:1.805223px;}
.ws133{word-spacing:1.824050px;}
.ws6d{word-spacing:1.864999px;}
.ws6e{word-spacing:1.924774px;}
.ws89{word-spacing:1.925669px;}
.ws7c{word-spacing:1.984550px;}
.ws112{word-spacing:2.044326px;}
.wsde{word-spacing:2.163877px;}
.ws11c{word-spacing:2.223652px;}
.ws11{word-spacing:2.283428px;}
.ws113{word-spacing:2.343204px;}
.ws16{word-spacing:2.402979px;}
.ws157{word-spacing:2.433761px;}
.wsd7{word-spacing:2.462755px;}
.ws95{word-spacing:2.522530px;}
.ws16d{word-spacing:2.535379px;}
.ws90{word-spacing:2.586188px;}
.ws12d{word-spacing:2.636997px;}
.ws12b{word-spacing:2.642082px;}
.ws8c{word-spacing:2.687807px;}
.ws27{word-spacing:2.701857px;}
.wsc1{word-spacing:2.738616px;}
.wsd3{word-spacing:2.761633px;}
.wsb6{word-spacing:2.789425px;}
.ws9{word-spacing:2.821408px;}
.ws173{word-spacing:2.840234px;}
.ws3d{word-spacing:2.881184px;}
.ws1c{word-spacing:2.891043px;}
.ws43{word-spacing:2.940960px;}
.wsbf{word-spacing:2.941853px;}
.ws6{word-spacing:2.992662px;}
.wsb{word-spacing:3.000735px;}
.ws8f{word-spacing:3.001936px;}
.ws65{word-spacing:3.043471px;}
.ws7{word-spacing:3.060511px;}
.ws116{word-spacing:3.094280px;}
.ws18{word-spacing:3.120286px;}
.ws87{word-spacing:3.145089px;}
.ws3f{word-spacing:3.180062px;}
.ws146{word-spacing:3.195899px;}
.ws1b{word-spacing:3.239838px;}
.ws1f{word-spacing:3.246708px;}
.wsb4{word-spacing:3.297517px;}
.ws1{word-spacing:3.299613px;}
.ws39{word-spacing:3.359389px;}
.wse8{word-spacing:3.399135px;}
.ws22{word-spacing:3.419164px;}
.ws42{word-spacing:3.478940px;}
.ws15{word-spacing:3.538716px;}
.ws2d{word-spacing:3.598491px;}
.ws140{word-spacing:3.602372px;}
.ws1a{word-spacing:3.658267px;}
.ws14{word-spacing:3.718042px;}
.ws12f{word-spacing:3.754800px;}
.ws36{word-spacing:3.777818px;}
.ws66{word-spacing:3.837594px;}
.ws35{word-spacing:3.897369px;}
.ws11b{word-spacing:3.957145px;}
.ws132{word-spacing:3.958037px;}
.ws19{word-spacing:4.016920px;}
.wsb3{word-spacing:4.059655px;}
.ws9c{word-spacing:4.076696px;}
.ws72{word-spacing:4.136472px;}
.wsad{word-spacing:4.196247px;}
.ws161{word-spacing:4.262892px;}
.wsa4{word-spacing:4.315798px;}
.ws131{word-spacing:4.364510px;}
.ws7f{word-spacing:4.375574px;}
.ws93{word-spacing:4.435350px;}
.ws5c{word-spacing:4.495125px;}
.ws12c{word-spacing:4.516938px;}
.wsa1{word-spacing:4.554901px;}
.ws54{word-spacing:4.674452px;}
.ws162{word-spacing:4.720175px;}
.wsc{word-spacing:4.734228px;}
.ws3c{word-spacing:4.794003px;}
.ws10b{word-spacing:4.853779px;}
.ws137{word-spacing:4.872602px;}
.wsc2{word-spacing:4.913554px;}
.ws15a{word-spacing:4.974221px;}
.wsc3{word-spacing:5.033106px;}
.ws2e{word-spacing:5.092881px;}
.ws68{word-spacing:5.152657px;}
.ws14a{word-spacing:5.177457px;}
.ws17{word-spacing:5.212432px;}
.ws164{word-spacing:5.228267px;}
.ws31{word-spacing:5.272208px;}
.ws159{word-spacing:5.279076px;}
.ws4b{word-spacing:5.331984px;}
.ws158{word-spacing:5.380694px;}
.ws3e{word-spacing:5.391759px;}
.ws163{word-spacing:5.431503px;}
.ws38{word-spacing:5.511310px;}
.ws6a{word-spacing:5.571086px;}
.ws148{word-spacing:5.583931px;}
.ws37{word-spacing:5.630862px;}
.ws138{word-spacing:5.685549px;}
.ws98{word-spacing:5.750413px;}
.ws4e{word-spacing:5.810188px;}
.ws126{word-spacing:5.869964px;}
.ws9a{word-spacing:5.929740px;}
.wsd0{word-spacing:6.049291px;}
.ws30{word-spacing:6.109066px;}
.ws149{word-spacing:6.142832px;}
.wsd9{word-spacing:6.168842px;}
.ws7d{word-spacing:6.228618px;}
.wscd{word-spacing:6.288393px;}
.wseb{word-spacing:6.348169px;}
.ws165{word-spacing:6.396878px;}
.ws52{word-spacing:6.467720px;}
.ws15e{word-spacing:6.498497px;}
.ws11e{word-spacing:6.527496px;}
.ws5b{word-spacing:6.587271px;}
.ws15b{word-spacing:6.600115px;}
.ws14c{word-spacing:6.650924px;}
.wsdc{word-spacing:6.706822px;}
.ws82{word-spacing:6.766598px;}
.ws7b{word-spacing:6.826374px;}
.ws151{word-spacing:6.854161px;}
.ws45{word-spacing:6.886149px;}
.ws13b{word-spacing:6.904970px;}
.ws59{word-spacing:6.945925px;}
.ws67{word-spacing:7.005700px;}
.ws2f{word-spacing:7.065476px;}
.wsda{word-spacing:7.125252px;}
.ws14e{word-spacing:7.159016px;}
.ws26{word-spacing:7.244803px;}
.ws83{word-spacing:7.304578px;}
.ws156{word-spacing:7.362253px;}
.wscf{word-spacing:7.364354px;}
.ws135{word-spacing:7.413062px;}
.wsa6{word-spacing:7.483905px;}
.wsed{word-spacing:7.603456px;}
.wsd1{word-spacing:7.663232px;}
.wsa{word-spacing:7.723008px;}
.ws121{word-spacing:7.842559px;}
.ws50{word-spacing:7.895464px;}
.ws40{word-spacing:7.902334px;}
.ws110{word-spacing:7.962110px;}
.ws150{word-spacing:7.971963px;}
.ws12a{word-spacing:8.021886px;}
.ws20{word-spacing:8.073582px;}
.ws9d{word-spacing:8.081661px;}
.ws160{word-spacing:8.124391px;}
.ws3a{word-spacing:8.141437px;}
.wsdf{word-spacing:8.201212px;}
.wsd2{word-spacing:8.260988px;}
.ws169{word-spacing:8.276819px;}
.ws55{word-spacing:8.320764px;}
.wse2{word-spacing:8.378437px;}
.ws10{word-spacing:8.380539px;}
.ws125{word-spacing:8.440315px;}
.ws120{word-spacing:8.500090px;}
.ws11a{word-spacing:8.559866px;}
.ws152{word-spacing:8.581674px;}
.ws2c{word-spacing:8.619642px;}
.ws2b{word-spacing:8.679417px;}
.ws79{word-spacing:8.798968px;}
.ws2a{word-spacing:8.858744px;}
.ws175{word-spacing:8.886529px;}
.ws23{word-spacing:8.918520px;}
.ws130{word-spacing:8.988147px;}
.ws7e{word-spacing:9.038071px;}
.ws153{word-spacing:9.089766px;}
.ws9e{word-spacing:9.157622px;}
.ws139{word-spacing:9.191384px;}
.wsc4{word-spacing:9.217398px;}
.ws6b{word-spacing:9.396724px;}
.ws25{word-spacing:9.516276px;}
.ws124{word-spacing:9.576051px;}
.ws11d{word-spacing:9.635827px;}
.ws172{word-spacing:9.648667px;}
.wscc{word-spacing:9.695602px;}
.ws9b{word-spacing:9.755378px;}
.wsd6{word-spacing:9.874929px;}
.wsce{word-spacing:9.934705px;}
.ws92{word-spacing:9.953522px;}
.wsae{word-spacing:9.994480px;}
.ws13c{word-spacing:10.105950px;}
.ws3b{word-spacing:10.114032px;}
.wsec{word-spacing:10.173807px;}
.ws84{word-spacing:10.293358px;}
.wsdb{word-spacing:10.353134px;}
.ws8d{word-spacing:10.359996px;}
.ws81{word-spacing:10.472685px;}
.wsac{word-spacing:10.711788px;}
.ws97{word-spacing:10.831339px;}
.wsee{word-spacing:10.891114px;}
.ws13a{word-spacing:10.918897px;}
.ws15f{word-spacing:10.969706px;}
.ws129{word-spacing:11.070441px;}
.ws53{word-spacing:11.309544px;}
.ws96{word-spacing:11.369319px;}
.ws13f{word-spacing:11.376180px;}
.ws16f{word-spacing:11.426989px;}
.wsd8{word-spacing:11.608422px;}
.ws7a{word-spacing:11.727973px;}
.ws167{word-spacing:11.782653px;}
.ws16e{word-spacing:11.833463px;}
.wsfd{word-spacing:11.940162px;}
.ws128{word-spacing:12.086626px;}
.ws127{word-spacing:12.206178px;}
.wsef{word-spacing:12.325729px;}
.ws56{word-spacing:13.640792px;}
.ws14f{word-spacing:14.424732px;}
.ws155{word-spacing:15.136061px;}
.ws71{word-spacing:16.438290px;}
.wsa9{word-spacing:16.472442px;}
.ws14d{word-spacing:16.761955px;}
.ws8a{word-spacing:16.965192px;}
.wse6{word-spacing:17.122700px;}
.ws168{word-spacing:18.184613px;}
.ws118{word-spacing:18.392930px;}
.wsd5{word-spacing:18.769538px;}
.ws1e{word-spacing:19.200797px;}
.wsf8{word-spacing:19.459924px;}
.ws29{word-spacing:19.845499px;}
.wsd4{word-spacing:20.084602px;}
.wsc0{word-spacing:20.577726px;}
.wsb5{word-spacing:20.628535px;}
.ws86{word-spacing:20.679344px;}
.ws64{word-spacing:20.730154px;}
.wsfc{word-spacing:20.780963px;}
.wsf2{word-spacing:20.838271px;}
.wscb{word-spacing:21.035009px;}
.ws70{word-spacing:21.339889px;}
.wse4{word-spacing:22.022822px;}
.wsb2{word-spacing:22.356048px;}
.ws0{word-spacing:22.834279px;}
.ws5{word-spacing:22.894055px;}
.ws4{word-spacing:23.910240px;}
.ws15c{word-spacing:24.027671px;}
.wse3{word-spacing:24.388416px;}
.ws51{word-spacing:25.464406px;}
.ws134{word-spacing:26.319166px;}
.ws8b{word-spacing:28.651308px;}
.ws1d{word-spacing:28.854545px;}
.ws154{word-spacing:29.210209px;}
.wsf6{word-spacing:30.828273px;}
.wsc9{word-spacing:31.930184px;}
.ws3{word-spacing:35.769809px;}
.ws2{word-spacing:36.534938px;}
.ws60{word-spacing:37.585337px;}
.ws91{word-spacing:46.028054px;}
.ws117{word-spacing:54.622127px;}
.wsb7{word-spacing:56.748795px;}
.wsbe{word-spacing:59.119505px;}
.ws62{word-spacing:61.303658px;}
.wsf9{word-spacing:69.447053px;}
.wse5{word-spacing:70.118026px;}
.wsf7{word-spacing:70.352551px;}
.ws63{word-spacing:70.426027px;}
.wsbd{word-spacing:72.832477px;}
.wsba{word-spacing:74.227160px;}
.ws108{word-spacing:74.836871px;}
.ws114{word-spacing:77.808509px;}
.ws61{word-spacing:81.799024px;}
.wsff{word-spacing:83.728481px;}
.wsbc{word-spacing:83.743279px;}
.ws104{word-spacing:88.402927px;}
.ws109{word-spacing:89.012637px;}
.ws107{word-spacing:99.530142px;}
.ws102{word-spacing:107.115626px;}
.ws101{word-spacing:110.708166px;}
.ws103{word-spacing:113.807527px;}
.ws106{word-spacing:115.941513px;}
.wse1{word-spacing:119.337344px;}
.ws105{word-spacing:134.102698px;}
.ws100{word-spacing:134.109626px;}
.wsfe{word-spacing:140.025074px;}
.wsfa{word-spacing:155.432320px;}
.wsb1{word-spacing:183.601505px;}
.wsbb{word-spacing:186.892554px;}
.wsb0{word-spacing:196.492921px;}
.wsaa{word-spacing:203.120938px;}
.wsb9{word-spacing:227.086554px;}
.wsca{word-spacing:828.520818px;}
.ws5d{word-spacing:1230.401798px;}
.ws5f{word-spacing:1230.404395px;}
.ws5e{word-spacing:1230.406343px;}
.wsc6{word-spacing:1590.648316px;}
.wsc8{word-spacing:1590.650466px;}
.wsc7{word-spacing:1590.652079px;}
.wsf3{word-spacing:1627.585522px;}
.wsf5{word-spacing:1627.587727px;}
.wsf4{word-spacing:1627.589381px;}
._4{margin-left:-34.370970px;}
._b{margin-left:-31.430003px;}
._e{margin-left:-29.887800px;}
._7a{margin-left:-28.719125px;}
._7{margin-left:-26.827258px;}
._8{margin-left:-25.661606px;}
._7b{margin-left:-24.478068px;}
._2{margin-left:-6.121037px;}
._6{margin-left:-4.901599px;}
._3{margin-left:-3.060518px;}
._1{margin-left:-1.912819px;}
._0{width:1.972595px;}
._f{width:3.646312px;}
._17{width:4.888880px;}
._38{width:6.515088px;}
._2f{width:8.993228px;}
._a{width:10.281403px;}
._18{width:13.026447px;}
._39{width:16.617617px;}
._9{width:18.990713px;}
._16{width:20.081585px;}
._d{width:21.531179px;}
._54{width:22.665132px;}
._47{width:23.928168px;}
._78{width:25.796103px;}
._53{width:31.137722px;}
._5{width:34.386705px;}
._76{width:39.857040px;}
._79{width:42.082560px;}
._4e{width:51.620188px;}
._75{width:53.918786px;}
._4d{width:55.919245px;}
._12{width:61.303249px;}
._73{width:67.979520px;}
._77{width:70.205040px;}
._11{width:72.677065px;}
._3e{width:74.115570px;}
._70{width:76.978752px;}
._43{width:80.009014px;}
._6e{width:82.209286px;}
._55{width:84.883590px;}
._71{width:87.544252px;}
._72{width:88.607480px;}
._4f{width:90.595275px;}
._52{width:92.515123px;}
._15{width:94.445005px;}
._3d{width:96.283434px;}
._74{width:98.327520px;}
._13{width:99.979131px;}
._51{width:101.389579px;}
._42{width:104.628471px;}
._14{width:106.790739px;}
._50{width:112.580099px;}
._62{width:114.580732px;}
._41{width:116.476077px;}
._1d{width:117.630416px;}
._65{width:122.087446px;}
._49{width:123.180088px;}
._6c{width:124.952793px;}
._64{width:127.670001px;}
._5c{width:131.849874px;}
._4b{width:138.185262px;}
._2e{width:144.994423px;}
._61{width:148.677614px;}
._5e{width:150.242804px;}
._4a{width:160.769607px;}
._66{width:164.920787px;}
._2b{width:169.459053px;}
._56{width:170.950310px;}
._6a{width:174.575734px;}
._57{width:177.595940px;}
._30{width:184.412200px;}
._35{width:189.887942px;}
._67{width:192.091655px;}
._3a{width:195.070818px;}
._1e{width:204.102476px;}
._5d{width:208.106316px;}
._1a{width:211.809013px;}
._28{width:217.063390px;}
._60{width:221.424504px;}
._3c{width:224.079373px;}
._6b{width:226.398725px;}
._6d{width:243.252137px;}
._69{width:245.484149px;}
._3b{width:256.196360px;}
._5b{width:257.704262px;}
._5f{width:266.005985px;}
._68{width:268.287318px;}
._63{width:271.285061px;}
._32{width:276.230703px;}
._1c{width:280.688564px;}
._19{width:288.332124px;}
._6f{width:300.960028px;}
._3f{width:347.573323px;}
._1b{width:349.437972px;}
._5a{width:355.800061px;}
._2d{width:359.582784px;}
._37{width:422.397904px;}
._2c{width:430.226977px;}
._40{width:479.790747px;}
._36{width:496.243371px;}
._34{width:561.528987px;}
._2a{width:565.532796px;}
._29{width:579.743210px;}
._23{width:589.813917px;}
._44{width:599.458160px;}
._20{width:617.476886px;}
._1f{width:634.641190px;}
._27{width:636.447575px;}
._59{width:639.694684px;}
._46{width:685.836178px;}
._33{width:716.193665px;}
._22{width:761.341821px;}
._45{width:767.702159px;}
._31{width:787.461381px;}
._58{width:800.695604px;}
._21{width:839.888091px;}
._25{width:976.876267px;}
._26{width:986.328498px;}
._24{width:1103.258771px;}
._4c{width:1716.972616px;}
._10{width:1743.966616px;}
._48{width:2591.548144px;}
._c{width:2618.543072px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:29.826317px;}
.fse{font-size:30.834778px;}
.fsf{font-size:30.834782px;}
.fs10{font-size:30.834787px;}
.fs8{font-size:33.872429px;}
.fsc{font-size:34.729430px;}
.fsd{font-size:34.912685px;}
.fsb{font-size:35.227181px;}
.fs5{font-size:35.566200px;}
.fs7{font-size:39.246077px;}
.fs9{font-size:40.758682px;}
.fs4{font-size:40.905648px;}
.fs3{font-size:41.842800px;}
.fsa{font-size:41.937120px;}
.fs11{font-size:42.487200px;}
.fs6{font-size:45.117475px;}
.fs12{font-size:50.580000px;}
.fs2{font-size:50.809200px;}
.fs0{font-size:59.775600px;}
.fs1{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y106{bottom:2.253636px;}
.y81{bottom:2.763363px;}
.y232{bottom:3.679911px;}
.y108{bottom:3.942184px;}
.y139{bottom:4.808507px;}
.y19a{bottom:5.104681px;}
.y191{bottom:7.239346px;}
.y231{bottom:17.286244px;}
.y138{bottom:18.083273px;}
.y80{bottom:18.794481px;}
.y199{bottom:21.030996px;}
.y190{bottom:21.056526px;}
.y11d{bottom:21.628073px;}
.y105{bottom:22.835127px;}
.y230{bottom:28.039919px;}
.y16f{bottom:28.301003px;}
.y22b{bottom:28.453137px;}
.y237{bottom:31.305131px;}
.y193{bottom:33.271131px;}
.y226{bottom:34.481018px;}
.y12f{bottom:34.573652px;}
.y161{bottom:35.355124px;}
.y11c{bottom:37.008797px;}
.y211{bottom:37.260284px;}
.y18b{bottom:37.550594px;}
.y7b{bottom:38.708897px;}
.y1c1{bottom:39.453429px;}
.yff{bottom:39.727436px;}
.y16e{bottom:45.539344px;}
.y1b3{bottom:46.460749px;}
.y131{bottom:47.244729px;}
.y22c{bottom:49.402500px;}
.y1bb{bottom:52.347583px;}
.y160{bottom:53.948644px;}
.y225{bottom:55.272033px;}
.y210{bottom:56.641908px;}
.y1be{bottom:59.122085px;}
.y166{bottom:59.296467px;}
.y1b2{bottom:61.924760px;}
.y1c4{bottom:63.008406px;}
.y15a{bottom:69.208585px;}
.y22d{bottom:70.351863px;}
.y236{bottom:70.352159px;}
.y100{bottom:71.416980px;}
.y21f{bottom:71.864064px;}
.y20a{bottom:72.549002px;}
.y1b4{bottom:72.670018px;}
.y238{bottom:74.185936px;}
.y234{bottom:74.274704px;}
.y11b{bottom:74.288288px;}
.y167{bottom:76.490773px;}
.y104{bottom:77.647488px;}
.y7d{bottom:77.872606px;}
.y132{bottom:78.899405px;}
.y177{bottom:81.313455px;}
.y13a{bottom:82.200286px;}
.y1b1{bottom:82.201351px;}
.y194{bottom:82.314967px;}
.y18d{bottom:82.584294px;}
.y224{bottom:83.730764px;}
.y220{bottom:86.785375px;}
.y20f{bottom:87.310985px;}
.y20b{bottom:87.470312px;}
.y235{bottom:91.301226px;}
.y22e{bottom:91.301522px;}
.y11a{bottom:92.191390px;}
.y13c{bottom:94.870524px;}
.y168{bottom:99.136731px;}
.y221{bottom:101.706264px;}
.y20c{bottom:102.391201px;}
.y101{bottom:103.106523px;}
.y16d{bottom:105.911323px;}
.y1b5{bottom:106.027933px;}
.y17e{bottom:106.176488px;}
.y114{bottom:106.885211px;}
.y172{bottom:107.434427px;}
.y178{bottom:110.249980px;}
.y133{bottom:110.755533px;}
.y22f{bottom:112.250885px;}
.y198{bottom:112.622849px;}
.y17d{bottom:114.144453px;}
.y1ba{bottom:114.438196px;}
.y171{bottom:115.612340px;}
.y119{bottom:116.032895px;}
.y169{bottom:116.121439px;}
.y222{bottom:116.627575px;}
.y20d{bottom:117.312512px;}
.y1c2{bottom:121.584214px;}
.y124{bottom:121.748494px;}
.y1b6{bottom:123.223285px;}
.y1bc{bottom:124.950052px;}
.y7e{bottom:125.839449px;}
.y1bf{bottom:126.118036px;}
.y15b{bottom:126.464626px;}
.y1b7{bottom:127.657731px;}
.y1bd{bottom:131.069802px;}
.y189{bottom:131.317500px;}
.y195{bottom:131.359150px;}
.y223{bottom:131.548885px;}
.y20e{bottom:132.233823px;}
.y179{bottom:132.266968px;}
.y16a{bottom:133.315396px;}
.y1b0{bottom:133.405186px;}
.y41{bottom:133.699500px;}
.y102{bottom:134.796066px;}
.y1fa{bottom:138.049500px;}
.y2c{bottom:138.183000px;}
.y1b9{bottom:138.498569px;}
.y186{bottom:138.697500px;}
.y120{bottom:140.991726px;}
.yd1{bottom:141.384000px;}
.y115{bottom:141.459038px;}
.y1c0{bottom:141.535230px;}
.y76{bottom:142.359000px;}
.y134{bottom:142.410209px;}
.y219{bottom:146.539744px;}
.y204{bottom:147.224681px;}
.y18e{bottom:147.701976px;}
.y27b{bottom:148.644000px;}
.y182{bottom:148.948500px;}
.y12d{bottom:151.338000px;}
.y24e{bottom:151.450500px;}
.y13d{bottom:151.929688px;}
.y40{bottom:152.379000px;}
.y2b{bottom:153.126000px;}
.y184{bottom:153.127500px;}
.y17a{bottom:154.074445px;}
.y16b{bottom:155.961353px;}
.y1f9{bottom:156.730500px;}
.y146{bottom:156.861000px;}
.y2ae{bottom:157.302000px;}
.y1b8{bottom:158.354297px;}
.y21e{bottom:158.406023px;}
.y185{bottom:159.058500px;}
.y75{bottom:161.038500px;}
.y21a{bottom:161.460633px;}
.y15f{bottom:161.846942px;}
.y209{bottom:161.985611px;}
.y183{bottom:162.093000px;}
.y205{bottom:162.145570px;}
.y188{bottom:163.146000px;}
.y27a{bottom:163.587000px;}
.y1ae{bottom:164.311500px;}
.y103{bottom:166.485610px;}
.y187{bottom:167.629500px;}
.y2a{bottom:168.070500px;}
.y12c{bottom:170.017500px;}
.y24d{bottom:170.130000px;}
.y3f{bottom:171.060000px;}
.y145{bottom:171.804000px;}
.y2ad{bottom:172.246500px;}
.y16c{bottom:173.155660px;}
.y7f{bottom:173.806292px;}
.y135{bottom:174.266337px;}
.y121{bottom:174.864828px;}
.y1f8{bottom:175.410000px;}
.y116{bottom:175.799453px;}
.y21b{bottom:176.381944px;}
.y206{bottom:177.066881px;}
.y279{bottom:178.531500px;}
.yd0{bottom:178.743000px;}
.yd9{bottom:179.085000px;}
.y74{bottom:179.718000px;}
.y196{bottom:180.611060px;}
.y1ad{bottom:182.991000px;}
.y29{bottom:183.015000px;}
.y17b{bottom:183.220569px;}
.yfd{bottom:183.495636px;}
.y15c{bottom:183.721071px;}
.y144{bottom:186.748500px;}
.y2ac{bottom:187.191000px;}
.y12b{bottom:188.697000px;}
.y24c{bottom:188.809500px;}
.y3e{bottom:189.739500px;}
.y21c{bottom:191.303254px;}
.y207{bottom:191.988192px;}
.y278{bottom:193.476000px;}
.y1f7{bottom:194.089500px;}
.ycf{bottom:197.422500px;}
.yd8{bottom:197.766000px;}
.y73{bottom:198.399000px;}
.y1ac{bottom:201.670500px;}
.y2ab{bottom:202.134000px;}
.yfe{bottom:203.851988px;}
.y28{bottom:205.431000px;}
.y136{bottom:205.921013px;}
.y21d{bottom:206.224144px;}
.y208{bottom:206.909081px;}
.y12a{bottom:207.376500px;}
.y24b{bottom:207.490500px;}
.y3d{bottom:208.419000px;}
.y122{bottom:208.971732px;}
.y13e{bottom:209.190055px;}
.y117{bottom:210.373280px;}
.y1f6{bottom:212.769000px;}
.y18f{bottom:212.819658px;}
.y7c{bottom:213.212270px;}
.yce{bottom:216.103500px;}
.yd7{bottom:216.445500px;}
.y72{bottom:217.078500px;}
.y1ab{bottom:220.350000px;}
.y27{bottom:220.374000px;}
.y213{bottom:221.214791px;}
.y1fe{bottom:221.899729px;}
.y277{bottom:223.363500px;}
.y129{bottom:226.057500px;}
.y24a{bottom:226.170000px;}
.y3c{bottom:227.100000px;}
.y197{bottom:229.654896px;}
.y143{bottom:230.272500px;}
.y1f5{bottom:231.450000px;}
.y2aa{bottom:232.023000px;}
.y218{bottom:233.081070px;}
.ycd{bottom:234.783000px;}
.y26{bottom:235.318500px;}
.y71{bottom:235.758000px;}
.y214{bottom:236.136102px;}
.y203{bottom:236.661713px;}
.y1ff{bottom:236.821040px;}
.y137{bottom:237.777141px;}
.y276{bottom:238.306500px;}
.y1aa{bottom:239.031000px;}
.y13b{bottom:241.015100px;}
.y15d{bottom:241.220027px;}
.y123{bottom:242.844834px;}
.y128{bottom:244.737000px;}
.y249{bottom:244.849500px;}
.y118{bottom:244.947108px;}
.y1c6{bottom:245.716500px;}
.y3b{bottom:245.779500px;}
.y2a9{bottom:246.966000px;}
.y1f4{bottom:250.129500px;}
.y130{bottom:250.447379px;}
.y215{bottom:251.057413px;}
.y200{bottom:251.742350px;}
.yd6{bottom:252.448500px;}
.y275{bottom:253.251000px;}
.ycc{bottom:253.462500px;}
.y70{bottom:254.439000px;}
.y1a9{bottom:257.710500px;}
.y25{bottom:257.734500px;}
.y18c{bottom:258.059220px;}
.y8a{bottom:260.656500px;}
.y1c5{bottom:260.661000px;}
.y2a8{bottom:261.910500px;}
.y79{bottom:262.569000px;}
.y127{bottom:263.416500px;}
.y248{bottom:263.530500px;}
.y3a{bottom:264.459000px;}
.y216{bottom:265.978302px;}
.y201{bottom:266.663240px;}
.y274{bottom:268.195500px;}
.y1f3{bottom:268.809000px;}
.yd5{bottom:271.128000px;}
.ycb{bottom:272.143500px;}
.y24{bottom:272.679000px;}
.y6f{bottom:273.118500px;}
.y88{bottom:275.601000px;}
.y1a8{bottom:276.390000px;}
.y2a7{bottom:276.855000px;}
.y148{bottom:278.541000px;}
.y89{bottom:280.084500px;}
.y217{bottom:280.899613px;}
.y78{bottom:281.248500px;}
.y202{bottom:281.584550px;}
.y247{bottom:282.210000px;}
.y39{bottom:283.138500px;}
.y1af{bottom:287.177400px;}
.y1f2{bottom:287.490000px;}
.y23{bottom:287.622000px;}
.yd4{bottom:289.807500px;}
.y87{bottom:290.545500px;}
.yca{bottom:290.823000px;}
.y6e{bottom:291.798000px;}
.y1c3{bottom:293.055717px;}
.y1a7{bottom:295.071000px;}
.y147{bottom:297.222000px;}
.y273{bottom:298.083000px;}
.y15e{bottom:298.476068px;}
.y246{bottom:300.889500px;}
.y38{bottom:301.819500px;}
.y22{bottom:302.566500px;}
.y1f1{bottom:306.169500px;}
.y2a6{bottom:306.742500px;}
.yc9{bottom:309.502500px;}
.y6d{bottom:310.479000px;}
.y126{bottom:311.424000px;}
.y272{bottom:313.027500px;}
.y1a6{bottom:313.750500px;}
.y181{bottom:315.811500px;}
.y21{bottom:317.509500px;}
.y245{bottom:319.570500px;}
.y37{bottom:320.499000px;}
.y2a5{bottom:321.687000px;}
.y1f0{bottom:324.849000px;}
.y125{bottom:326.368500px;}
.y271{bottom:327.970500px;}
.yc8{bottom:328.183500px;}
.y6c{bottom:329.158500px;}
.y180{bottom:330.756000px;}
.y1a5{bottom:332.430000px;}
.y86{bottom:334.069500px;}
.y2a4{bottom:336.630000px;}
.y244{bottom:338.250000px;}
.y36{bottom:339.178500px;}
.y270{bottom:342.915000px;}
.y1ef{bottom:343.530000px;}
.y176{bottom:343.628580px;}
.y17f{bottom:345.699000px;}
.yc7{bottom:346.863000px;}
.y6b{bottom:347.838000px;}
.y85{bottom:349.012500px;}
.y1a4{bottom:351.111000px;}
.y2a3{bottom:351.574500px;}
.y93{bottom:354.856500px;}
.y243{bottom:356.929500px;}
.y1fc{bottom:356.970000px;}
.y35{bottom:357.859500px;}
.y20{bottom:361.122000px;}
.y1ee{bottom:362.209500px;}
.y94{bottom:362.238000px;}
.yc6{bottom:365.542500px;}
.y6a{bottom:366.517500px;}
.y11f{bottom:369.187500px;}
.y1a3{bottom:369.790500px;}
.y90{bottom:372.489000px;}
.y26f{bottom:372.802500px;}
.y242{bottom:375.609000px;}
.y34{bottom:376.539000px;}
.y1f{bottom:379.801500px;}
.y1ed{bottom:380.889000px;}
.y2a2{bottom:381.462000px;}
.y11e{bottom:384.130500px;}
.yd3{bottom:384.222000px;}
.y69{bottom:385.198500px;}
.y92{bottom:386.685000px;}
.y1a2{bottom:388.470000px;}
.y91{bottom:391.168500px;}
.y241{bottom:394.290000px;}
.y33{bottom:395.218500px;}
.y2a1{bottom:396.406500px;}
.y1e{bottom:398.482500px;}
.y113{bottom:399.075000px;}
.y1ec{bottom:399.568500px;}
.yc5{bottom:402.903000px;}
.y68{bottom:403.878000px;}
.y26e{bottom:404.536500px;}
.y17c{bottom:406.617261px;}
.y1a1{bottom:407.149500px;}
.y2a0{bottom:411.349500px;}
.y158{bottom:412.074000px;}
.y240{bottom:412.969500px;}
.y32{bottom:413.899500px;}
.y1d{bottom:417.162000px;}
.y1eb{bottom:418.249500px;}
.y142{bottom:418.680000px;}
.yc4{bottom:421.582500px;}
.y67{bottom:422.557500px;}
.y1a0{bottom:425.830500px;}
.y29f{bottom:426.294000px;}
.yd2{bottom:427.005000px;}
.y23f{bottom:431.649000px;}
.y31{bottom:432.579000px;}
.y1c{bottom:435.841500px;}
.y1ea{bottom:436.929000px;}
.yc3{bottom:440.262000px;}
.y66{bottom:441.238500px;}
.y19f{bottom:444.510000px;}
.y23e{bottom:450.330000px;}
.y30{bottom:451.258500px;}
.y1b{bottom:454.521000px;}
.y1e9{bottom:455.608500px;}
.y29e{bottom:456.181500px;}
.y26d{bottom:458.668500px;}
.yc2{bottom:458.943000px;}
.y65{bottom:459.918000px;}
.y157{bottom:464.928000px;}
.y23d{bottom:469.009500px;}
.ya0{bottom:469.938000px;}
.y29d{bottom:471.126000px;}
.y1a{bottom:473.202000px;}
.y26c{bottom:473.613000px;}
.y1e8{bottom:474.289500px;}
.y64{bottom:478.597500px;}
.y156{bottom:483.607500px;}
.y29c{bottom:486.070500px;}
.y23c{bottom:487.689000px;}
.y2f{bottom:488.163000px;}
.y26b{bottom:488.557500px;}
.y9f{bottom:488.619000px;}
.y19e{bottom:491.812500px;}
.y19{bottom:491.881500px;}
.y1e7{bottom:492.969000px;}
.y63{bottom:497.278500px;}
.y29b{bottom:501.013500px;}
.y155{bottom:502.288500px;}
.y26a{bottom:503.500500px;}
.y23b{bottom:506.370000px;}
.y9e{bottom:507.298500px;}
.y18{bottom:510.561000px;}
.y1e6{bottom:511.648500px;}
.yc1{bottom:514.833000px;}
.y62{bottom:515.958000px;}
.y154{bottom:520.968000px;}
.y9d{bottom:525.978000px;}
.y17{bottom:529.242000px;}
.yc0{bottom:529.777500px;}
.y1e5{bottom:530.329500px;}
.y29a{bottom:530.901000px;}
.yfb{bottom:531.553500px;}
.y19c{bottom:532.161000px;}
.y269{bottom:533.389500px;}
.y61{bottom:534.637500px;}
.y153{bottom:539.647500px;}
.yfa{bottom:541.804500px;}
.y9c{bottom:544.659000px;}
.y299{bottom:545.845500px;}
.y16{bottom:547.921500px;}
.y268{bottom:548.332500px;}
.y1e4{bottom:549.009000px;}
.y19d{bottom:549.168000px;}
.y60{bottom:553.317000px;}
.y2e{bottom:553.332000px;}
.ybf{bottom:554.284500px;}
.y23a{bottom:554.377500px;}
.y152{bottom:558.328500px;}
.y175{bottom:559.251000px;}
.y298{bottom:560.790000px;}
.y267{bottom:563.277000px;}
.y9b{bottom:563.338500px;}
.y15{bottom:566.601000px;}
.y1e3{bottom:567.688500px;}
.ybe{bottom:569.229000px;}
.y239{bottom:569.320500px;}
.y5f{bottom:571.998000px;}
.y2d{bottom:572.011500px;}
.y174{bottom:574.195500px;}
.y297{bottom:575.733000px;}
.y151{bottom:577.008000px;}
.y266{bottom:578.220000px;}
.yf9{bottom:578.908500px;}
.y9a{bottom:582.018000px;}
.ybd{bottom:584.173500px;}
.y14{bottom:585.282000px;}
.y1e2{bottom:586.368000px;}
.y165{bottom:587.068080px;}
.y173{bottom:589.140000px;}
.y5e{bottom:590.677500px;}
.y265{bottom:593.164500px;}
.y150{bottom:595.687500px;}
.ybc{bottom:599.116500px;}
.y99{bottom:600.699000px;}
.y22a{bottom:600.703500px;}
.y84{bottom:602.980500px;}
.y13{bottom:603.961500px;}
.y1e1{bottom:605.049000px;}
.yf8{bottom:605.406000px;}
.y296{bottom:605.622000px;}
.y141{bottom:607.087500px;}
.y264{bottom:608.109000px;}
.y5d{bottom:609.357000px;}
.ybb{bottom:614.061000px;}
.y14f{bottom:614.368500px;}
.yf7{bottom:615.657000px;}
.y83{bottom:617.923500px;}
.y98{bottom:619.378500px;}
.y295{bottom:620.565000px;}
.y11{bottom:622.641000px;}
.y263{bottom:623.052000px;}
.y1e0{bottom:623.728500px;}
.y5c{bottom:628.038000px;}
.y12{bottom:628.065000px;}
.y233{bottom:631.801800px;}
.y14e{bottom:633.048000px;}
.y294{bottom:635.509500px;}
.y97{bottom:638.058000px;}
.yba{bottom:638.569500px;}
.y10{bottom:641.320500px;}
.y1df{bottom:642.408000px;}
.y5b{bottom:646.717500px;}
.y170{bottom:650.056761px;}
.y293{bottom:650.454000px;}
.y14d{bottom:651.727500px;}
.yf6{bottom:652.761000px;}
.yb9{bottom:653.512500px;}
.y96{bottom:656.737500px;}
.yf{bottom:660.001500px;}
.y1de{bottom:661.089000px;}
.y5a{bottom:665.397000px;}
.y262{bottom:665.728500px;}
.y1fb{bottom:666.511500px;}
.yb8{bottom:668.457000px;}
.y14c{bottom:670.407000px;}
.yf5{bottom:671.440500px;}
.ye4{bottom:675.418500px;}
.ye{bottom:678.681000px;}
.y292{bottom:680.341500px;}
.y261{bottom:680.671500px;}
.yb7{bottom:683.401500px;}
.y59{bottom:684.078000px;}
.y112{bottom:684.505500px;}
.y14b{bottom:689.088000px;}
.yf4{bottom:690.121500px;}
.y95{bottom:692.208000px;}
.ye3{bottom:694.098000px;}
.y291{bottom:695.286000px;}
.y260{bottom:695.616000px;}
.yd{bottom:697.360500px;}
.y58{bottom:702.757500px;}
.yb6{bottom:707.908500px;}
.yf3{bottom:708.801000px;}
.y111{bottom:709.012500px;}
.y290{bottom:710.229000px;}
.y25f{bottom:710.560500px;}
.ye2{bottom:712.777500px;}
.y1dd{bottom:715.072500px;}
.yc{bottom:716.041500px;}
.y57{bottom:721.437000px;}
.yb5{bottom:722.853000px;}
.y14a{bottom:724.623000px;}
.y28f{bottom:725.173500px;}
.y25e{bottom:725.503500px;}
.yf2{bottom:727.480500px;}
.ye1{bottom:731.458500px;}
.y110{bottom:733.521000px;}
.yb{bottom:734.721000px;}
.yb4{bottom:737.797500px;}
.y1dc{bottom:739.581000px;}
.y56{bottom:740.116500px;}
.y25d{bottom:740.448000px;}
.y229{bottom:741.649500px;}
.y149{bottom:743.304000px;}
.yf1{bottom:746.161500px;}
.y10f{bottom:748.465500px;}
.ye0{bottom:750.138000px;}
.ya{bottom:753.400500px;}
.y1db{bottom:754.525500px;}
.y28e{bottom:755.061000px;}
.y25c{bottom:755.392500px;}
.y228{bottom:756.594000px;}
.y55{bottom:758.797500px;}
.yb3{bottom:762.304500px;}
.yf0{bottom:764.841000px;}
.ydf{bottom:768.817500px;}
.y1da{bottom:769.470000px;}
.y28d{bottom:770.005500px;}
.y9{bottom:772.081500px;}
.yb2{bottom:777.249000px;}
.y54{bottom:777.477000px;}
.y8f{bottom:782.899500px;}
.yef{bottom:783.520500px;}
.y1d9{bottom:784.413000px;}
.y28c{bottom:784.948500px;}
.yde{bottom:787.498500px;}
.y10e{bottom:788.851500px;}
.y8{bottom:790.761000px;}
.yb1{bottom:792.193500px;}
.y25b{bottom:795.949500px;}
.y53{bottom:796.156500px;}
.y1d8{bottom:799.357500px;}
.y227{bottom:799.413000px;}
.y164{bottom:799.516500px;}
.y28b{bottom:799.893000px;}
.yee{bottom:802.200000px;}
.y10d{bottom:803.794500px;}
.y140{bottom:804.462000px;}
.ydd{bottom:806.178000px;}
.yb0{bottom:807.136500px;}
.y1d7{bottom:814.302000px;}
.y212{bottom:814.356000px;}
.y163{bottom:814.459500px;}
.y25a{bottom:814.629000px;}
.y77{bottom:814.837500px;}
.y10c{bottom:818.739000px;}
.y13f{bottom:819.405000px;}
.y159{bottom:820.350300px;}
.y19b{bottom:820.437000px;}
.yed{bottom:820.881000px;}
.ydc{bottom:824.857500px;}
.y1d6{bottom:829.245000px;}
.y1fd{bottom:829.300500px;}
.y162{bottom:829.404000px;}
.y28a{bottom:829.780500px;}
.yaf{bottom:831.645000px;}
.y259{bottom:833.308500px;}
.y52{bottom:833.517000px;}
.y7{bottom:839.494500px;}
.yec{bottom:839.560500px;}
.y24f{bottom:843.537000px;}
.y1d5{bottom:844.189500px;}
.y289{bottom:844.725000px;}
.yae{bottom:846.589500px;}
.y12e{bottom:850.788000px;}
.y258{bottom:851.988000px;}
.y51{bottom:852.196500px;}
.y10b{bottom:854.791500px;}
.yeb{bottom:858.240000px;}
.y1d4{bottom:859.134000px;}
.y288{bottom:859.669500px;}
.ydb{bottom:860.328000px;}
.y18a{bottom:860.785500px;}
.yad{bottom:861.532500px;}
.y10a{bottom:869.736000px;}
.y257{bottom:870.669000px;}
.y50{bottom:870.877500px;}
.y82{bottom:871.891500px;}
.y1d3{bottom:874.077000px;}
.y287{bottom:874.612500px;}
.yea{bottom:876.921000px;}
.y192{bottom:877.794000px;}
.yda{bottom:879.007500px;}
.y109{bottom:884.679000px;}
.yac{bottom:886.041000px;}
.y7a{bottom:886.834500px;}
.y256{bottom:889.348500px;}
.y4f{bottom:889.557000px;}
.y1d2{bottom:889.627500px;}
.ye9{bottom:895.600500px;}
.yab{bottom:900.985500px;}
.y286{bottom:904.500000px;}
.y1d1{bottom:904.572000px;}
.y255{bottom:908.028000px;}
.y4e{bottom:908.236500px;}
.ye8{bottom:914.280000px;}
.yaa{bottom:915.928500px;}
.yfc{bottom:916.062000px;}
.y285{bottom:919.444500px;}
.y1d0{bottom:919.515000px;}
.y254{bottom:926.709000px;}
.y4d{bottom:926.916000px;}
.ya9{bottom:930.873000px;}
.y8e{bottom:932.340000px;}
.ye7{bottom:932.961000px;}
.y284{bottom:934.389000px;}
.y1cf{bottom:934.459500px;}
.y253{bottom:945.388500px;}
.y4c{bottom:945.597000px;}
.ya8{bottom:945.816000px;}
.y6{bottom:948.606000px;}
.y283{bottom:949.332000px;}
.y1ce{bottom:949.402500px;}
.ye6{bottom:951.640500px;}
.y252{bottom:964.068000px;}
.y4b{bottom:964.276500px;}
.y1cd{bottom:964.347000px;}
.y5{bottom:967.285500px;}
.ya7{bottom:970.324500px;}
.y282{bottom:979.221000px;}
.y1cc{bottom:979.291500px;}
.y251{bottom:982.749000px;}
.y4a{bottom:982.956000px;}
.ya6{bottom:985.269000px;}
.ye5{bottom:987.109500px;}
.y281{bottom:994.164000px;}
.y1cb{bottom:994.234500px;}
.ya5{bottom:1000.212000px;}
.y250{bottom:1001.428500px;}
.y49{bottom:1001.637000px;}
.y280{bottom:1009.108500px;}
.y1ca{bottom:1009.179000px;}
.y4{bottom:1011.370500px;}
.ya4{bottom:1015.156500px;}
.y48{bottom:1020.316500px;}
.y27f{bottom:1024.053000px;}
.y1c9{bottom:1024.123500px;}
.ya3{bottom:1030.101000px;}
.y3{bottom:1038.270000px;}
.y47{bottom:1038.996000px;}
.y1c8{bottom:1044.148500px;}
.y27e{bottom:1053.940500px;}
.ya2{bottom:1054.608000px;}
.y46{bottom:1057.677000px;}
.y1c7{bottom:1059.091500px;}
.y8d{bottom:1063.099500px;}
.y27d{bottom:1068.885000px;}
.y107{bottom:1070.807555px;}
.y45{bottom:1076.356500px;}
.y8c{bottom:1081.779000px;}
.y27c{bottom:1083.828000px;}
.y44{bottom:1095.036000px;}
.ya1{bottom:1098.772500px;}
.y8b{bottom:1100.460000px;}
.y43{bottom:1113.715500px;}
.y42{bottom:1151.845500px;}
.y2{bottom:1155.493500px;}
.y1{bottom:1171.483500px;}
.h11{height:2.391024px;}
.h19{height:15.844828px;}
.he{height:17.534137px;}
.h6{height:19.456902px;}
.hd{height:20.172900px;}
.h36{height:22.101301px;}
.h2b{height:22.848570px;}
.h2c{height:22.848574px;}
.h2d{height:22.848577px;}
.h14{height:23.687089px;}
.h1d{height:25.539811px;}
.h29{height:25.870299px;}
.h23{height:26.103341px;}
.h27{height:26.185991px;}
.h7{height:26.420815px;}
.h13{height:27.783619px;}
.h1b{height:29.081343px;}
.h10{height:29.833916px;}
.h1f{height:30.202183px;}
.hb{height:30.842859px;}
.h21{height:31.075406px;}
.h33{height:31.483015px;}
.h18{height:33.432049px;}
.h39{height:35.261585px;}
.hc{height:35.617249px;}
.h38{height:35.769677px;}
.h34{height:37.479780px;}
.h5{height:38.106900px;}
.h8{height:39.810550px;}
.h9{height:41.484266px;}
.h2f{height:41.615089px;}
.h30{height:41.621089px;}
.hf{height:42.799330px;}
.h3{height:44.831700px;}
.h31{height:47.088900px;}
.h25{height:57.837619px;}
.h4{height:66.948840px;}
.h15{height:83.239330px;}
.h37{height:83.798117px;}
.h16{height:85.835700px;}
.h12{height:86.673024px;}
.h35{height:119.837880px;}
.h22{height:123.923665px;}
.h24{height:124.311024px;}
.h2e{height:165.620667px;}
.h2a{height:177.144240px;}
.h20{height:199.201320px;}
.h17{height:212.607150px;}
.ha{height:234.354260px;}
.h28{height:238.118884px;}
.h1a{height:254.047292px;}
.h26{height:267.877434px;}
.h1c{height:276.388770px;}
.h32{height:291.887696px;}
.h1e{height:308.318400px;}
.h2{height:1262.835000px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w11{width:167.772662px;}
.w12{width:167.773032px;}
.w6{width:221.926247px;}
.wc{width:238.118884px;}
.wa{width:297.124932px;}
.w8{width:308.318400px;}
.w5{width:317.165108px;}
.wf{width:321.392696px;}
.we{width:331.007201px;}
.wd{width:342.608640px;}
.w3{width:357.111785px;}
.w9{width:376.560390px;}
.wb{width:472.016199px;}
.w4{width:505.780101px;}
.w10{width:665.764521px;}
.w7{width:791.363100px;}
.w2{width:892.914000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x98{left:3.322983px;}
.x27{left:6.937322px;}
.x68{left:8.468445px;}
.x29{left:10.342068px;}
.x28{left:16.027466px;}
.x97{left:17.517994px;}
.x2d{left:19.076215px;}
.x66{left:20.821849px;}
.x96{left:22.370701px;}
.x20{left:24.629218px;}
.x6a{left:28.466978px;}
.x67{left:30.848570px;}
.x94{left:32.523181px;}
.x70{left:35.728920px;}
.x69{left:37.468541px;}
.x77{left:39.348723px;}
.x6e{left:41.183949px;}
.x91{left:43.271475px;}
.x78{left:44.924821px;}
.x6d{left:46.638979px;}
.x31{left:48.318782px;}
.x83{left:49.847403px;}
.x2a{left:53.441626px;}
.x82{left:55.512677px;}
.xae{left:56.742014px;}
.x85{left:58.404080px;}
.x2e{left:59.690086px;}
.x6{left:61.419000px;}
.x2{left:63.168000px;}
.x86{left:67.011674px;}
.x1{left:68.248500px;}
.x21{left:72.596061px;}
.x1f{left:73.674000px;}
.x90{left:75.714000px;}
.xcd{left:78.112500px;}
.x64{left:81.780347px;}
.x7f{left:84.388500px;}
.xc6{left:85.584000px;}
.x79{left:87.031728px;}
.x80{left:91.258500px;}
.x51{left:93.442500px;}
.x84{left:95.597709px;}
.x4{left:98.488500px;}
.xaf{left:100.156500px;}
.x92{left:108.389157px;}
.x5{left:110.169000px;}
.x49{left:111.862500px;}
.x2b{left:113.062500px;}
.x87{left:114.635561px;}
.x72{left:117.508933px;}
.x48{left:118.962000px;}
.x1a{left:120.570000px;}
.x30{left:122.361000px;}
.x22{left:123.405908px;}
.x7{left:129.772500px;}
.xa7{left:131.814000px;}
.x3{left:136.395000px;}
.x8{left:138.024000px;}
.x9b{left:140.197013px;}
.x4e{left:142.252500px;}
.x1b{left:144.106500px;}
.xb0{left:153.447000px;}
.x45{left:157.026000px;}
.x4f{left:159.813000px;}
.x89{left:163.930892px;}
.xa2{left:166.901994px;}
.x88{left:169.232442px;}
.x39{left:171.808500px;}
.x23{left:175.917925px;}
.x43{left:179.394000px;}
.xa6{left:181.569000px;}
.x73{left:183.373921px;}
.x3a{left:184.708500px;}
.x4a{left:186.733500px;}
.x44{left:190.539000px;}
.xad{left:191.953500px;}
.xa4{left:195.052890px;}
.x81{left:197.286000px;}
.xb9{left:199.045500px;}
.x9c{left:200.932181px;}
.xa1{left:203.033566px;}
.x4b{left:204.073500px;}
.x6f{left:207.282000px;}
.x6c{left:208.861500px;}
.x9{left:211.077000px;}
.xa0{left:213.778824px;}
.x3b{left:215.295000px;}
.xba{left:216.717000px;}
.x41{left:218.007000px;}
.xa{left:219.327000px;}
.x24{left:220.798380px;}
.x3c{left:222.165000px;}
.x42{left:224.877000px;}
.x52{left:226.873500px;}
.xb2{left:239.784502px;}
.xbb{left:241.134000px;}
.x65{left:245.782146px;}
.xb1{left:247.951231px;}
.x36{left:249.271500px;}
.x74{left:250.648412px;}
.x59{left:260.311500px;}
.x9d{left:261.433947px;}
.xb{left:263.805000px;}
.x25{left:265.922119px;}
.xb3{left:268.369535px;}
.x9a{left:269.609640px;}
.xc{left:272.056500px;}
.x5b{left:276.288000px;}
.x37{left:278.209500px;}
.x9f{left:281.521896px;}
.x6b{left:284.359500px;}
.x9e{left:287.128524px;}
.x5a{left:289.938000px;}
.x46{left:297.219000px;}
.x3d{left:306.307500px;}
.x93{left:307.601373px;}
.x47{left:310.336500px;}
.x75{left:311.805284px;}
.x26{left:313.888962px;}
.x55{left:320.206500px;}
.x38{left:325.021500px;}
.xd{left:330.316500px;}
.x3e{left:336.859500px;}
.xe{left:338.568000px;}
.x5c{left:345.658500px;}
.x54{left:348.882000px;}
.x3f{left:356.337000px;}
.x5d{left:358.338000px;}
.xa8{left:365.356500px;}
.x40{left:369.237000px;}
.x7e{left:370.281000px;}
.x4c{left:373.815000px;}
.x4d{left:388.384500px;}
.x50{left:406.396500px;}
.xf{left:416.526000px;}
.x56{left:428.238000px;}
.x71{left:433.701000px;}
.x2c{left:435.280500px;}
.x76{left:436.472708px;}
.x19{left:444.039000px;}
.x10{left:445.786500px;}
.x33{left:447.631500px;}
.x1c{left:449.791500px;}
.x99{left:453.036900px;}
.xc3{left:455.250000px;}
.xa3{left:458.915217px;}
.xbe{left:460.021500px;}
.xc4{left:463.549500px;}
.xb6{left:466.177490px;}
.xc7{left:468.202500px;}
.x58{left:472.348500px;}
.x34{left:474.391500px;}
.xb5{left:476.826972px;}
.xb4{left:480.972697px;}
.x5e{left:487.920000px;}
.x61{left:489.796500px;}
.x2f{left:491.340000px;}
.x7d{left:494.624746px;}
.x1e{left:500.706000px;}
.x35{left:503.311500px;}
.x8c{left:505.432500px;}
.xc9{left:511.452000px;}
.xab{left:513.018000px;}
.x8b{left:519.049500px;}
.x32{left:522.942000px;}
.x13{left:527.607000px;}
.x62{left:531.457500px;}
.x1d{left:536.968500px;}
.xbf{left:539.047500px;}
.x63{left:543.079500px;}
.x8d{left:544.423500px;}
.x8e{left:545.536500px;}
.x7a{left:550.679835px;}
.x95{left:552.231000px;}
.xb7{left:558.171557px;}
.x5f{left:559.180500px;}
.x60{left:567.025500px;}
.x8f{left:568.500000px;}
.x14{left:572.167500px;}
.x15{left:581.302500px;}
.xc8{left:582.399000px;}
.xc0{left:587.029500px;}
.xb8{left:593.796838px;}
.x8a{left:605.865000px;}
.xac{left:610.308000px;}
.x16{left:622.851000px;}
.x7b{left:624.538868px;}
.x53{left:629.604000px;}
.x17{left:631.984500px;}
.xcb{left:643.093500px;}
.xcc{left:664.338000px;}
.xc1{left:665.397000px;}
.xc2{left:686.350500px;}
.xa9{left:689.935500px;}
.x11{left:694.758000px;}
.xaa{left:696.805500px;}
.x7c{left:700.751749px;}
.x12{left:703.057500px;}
.xa5{left:704.704500px;}
.xc5{left:712.017000px;}
.xbc{left:785.455500px;}
.x57{left:792.075000px;}
.xce{left:796.146000px;}
.x18{left:798.723000px;}
.xbd{left:800.904000px;}
.xca{left:809.121000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v1{vertical-align:-15.941333pt;}
.v3{vertical-align:-7.973333pt;}
.v6{vertical-align:-5.648000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:7.984000pt;}
.v8{vertical-align:15.941333pt;}
.va{vertical-align:26.714667pt;}
.v7{vertical-align:27.973333pt;}
.v5{vertical-align:35.941333pt;}
.v4{vertical-align:74.917333pt;}
.v9{vertical-align:108.373333pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000058pt;}
.ls1e{letter-spacing:0.000185pt;}
.ls7{letter-spacing:0.000267pt;}
.ls16{letter-spacing:0.000278pt;}
.ls3f{letter-spacing:0.000447pt;}
.ls3e{letter-spacing:0.000525pt;}
.ls3d{letter-spacing:0.000674pt;}
.ls40{letter-spacing:0.000904pt;}
.lsa{letter-spacing:0.001014pt;}
.ls1f{letter-spacing:0.001503pt;}
.ls13{letter-spacing:0.001509pt;}
.ls41{letter-spacing:0.001799pt;}
.ls2e{letter-spacing:0.001975pt;}
.ls42{letter-spacing:0.001995pt;}
.ls11{letter-spacing:0.002694pt;}
.ls9{letter-spacing:0.002906pt;}
.lsd{letter-spacing:0.003733pt;}
.ls21{letter-spacing:0.003892pt;}
.ls2c{letter-spacing:0.004691pt;}
.ls27{letter-spacing:0.005391pt;}
.ls20{letter-spacing:0.006836pt;}
.ls12{letter-spacing:2.652911pt;}
.ls2b{letter-spacing:2.653973pt;}
.lsb{letter-spacing:2.657014pt;}
.ls19{letter-spacing:2.658245pt;}
.ls2a{letter-spacing:2.659307pt;}
.ls32{letter-spacing:2.659514pt;}
.ls15{letter-spacing:2.800479pt;}
.ls1a{letter-spacing:2.802694pt;}
.ls14{letter-spacing:2.802827pt;}
.ls18{letter-spacing:2.805812pt;}
.ls8{letter-spacing:3.801225pt;}
.ls17{letter-spacing:5.452911pt;}
.lsc{letter-spacing:6.376161pt;}
.ls34{letter-spacing:10.698024pt;}
.ls28{letter-spacing:11.803145pt;}
.lsf{letter-spacing:11.805361pt;}
.ls10{letter-spacing:11.808479pt;}
.ls30{letter-spacing:11.810387pt;}
.ls3c{letter-spacing:12.253906pt;}
.ls31{letter-spacing:14.459680pt;}
.ls2f{letter-spacing:14.757812pt;}
.ls1{letter-spacing:15.994849pt;}
.ls43{letter-spacing:17.273842pt;}
.ls22{letter-spacing:17.417645pt;}
.ls2{letter-spacing:17.714079pt;}
.ls26{letter-spacing:18.181812pt;}
.ls4{letter-spacing:18.605973pt;}
.ls1c{letter-spacing:18.648573pt;}
.ls2d{letter-spacing:20.366181pt;}
.ls5{letter-spacing:21.227919pt;}
.ls25{letter-spacing:23.135761pt;}
.ls6{letter-spacing:24.097253pt;}
.ls1b{letter-spacing:26.562079pt;}
.ls0{letter-spacing:30.554376pt;}
.ls23{letter-spacing:66.069812pt;}
.ls39{letter-spacing:66.413906pt;}
.ls1d{letter-spacing:74.125906pt;}
.ls35{letter-spacing:78.413906pt;}
.ls3b{letter-spacing:87.421906pt;}
.ls37{letter-spacing:92.109906pt;}
.ls36{letter-spacing:94.728573pt;}
.ls38{letter-spacing:95.373906pt;}
.ls3a{letter-spacing:95.421906pt;}
.ls33{letter-spacing:446.055412pt;}
.ls29{letter-spacing:480.978079pt;}
.ls24{letter-spacing:783.884745pt;}
.wsb8{word-spacing:-47.986467pt;}
.ws74{word-spacing:-34.611401pt;}
.ws78{word-spacing:-14.760588pt;}
.ws21{word-spacing:-13.327818pt;}
.ws10c{word-spacing:-6.099768pt;}
.ws76{word-spacing:-5.907683pt;}
.wsa3{word-spacing:-5.727831pt;}
.wsa8{word-spacing:-2.967591pt;}
.ws77{word-spacing:-2.964870pt;}
.wse0{word-spacing:-2.752334pt;}
.ws5a{word-spacing:-2.699200pt;}
.ws10a{word-spacing:-2.539799pt;}
.ws12e{word-spacing:-2.443358pt;}
.ws170{word-spacing:-2.398194pt;}
.wsf{word-spacing:-2.327263pt;}
.ws136{word-spacing:-2.127212pt;}
.ws88{word-spacing:-2.082048pt;}
.ws115{word-spacing:-2.068160pt;}
.ws69{word-spacing:-1.849059pt;}
.ws174{word-spacing:-1.811066pt;}
.ws144{word-spacing:-1.765902pt;}
.wsa5{word-spacing:-1.742791pt;}
.wsf0{word-spacing:-1.530255pt;}
.wsd{word-spacing:-1.477121pt;}
.ws10d{word-spacing:-1.423988pt;}
.ws123{word-spacing:-1.317720pt;}
.wsfb{word-spacing:-1.264586pt;}
.ws58{word-spacing:-1.211452pt;}
.ws15d{word-spacing:-1.178773pt;}
.ws99{word-spacing:-1.105184pt;}
.wsaf{word-spacing:-1.052051pt;}
.ws11f{word-spacing:-0.998917pt;}
.ws16a{word-spacing:-0.998119pt;}
.ws48{word-spacing:-0.945783pt;}
.ws80{word-spacing:-0.892649pt;}
.ws57{word-spacing:-0.839515pt;}
.ws9f{word-spacing:-0.786381pt;}
.wsab{word-spacing:-0.733247pt;}
.wsdd{word-spacing:-0.680113pt;}
.ws6c{word-spacing:-0.626980pt;}
.wsf1{word-spacing:-0.520712pt;}
.ws16c{word-spacing:-0.501317pt;}
.ws10f{word-spacing:-0.467578pt;}
.wse9{word-spacing:-0.414444pt;}
.ws10e{word-spacing:-0.361310pt;}
.ws13e{word-spacing:-0.320663pt;}
.wsea{word-spacing:-0.308176pt;}
.wse{word-spacing:-0.255043pt;}
.ws32{word-spacing:-0.201909pt;}
.ws142{word-spacing:-0.185171pt;}
.ws47{word-spacing:-0.148775pt;}
.ws141{word-spacing:-0.140008pt;}
.ws145{word-spacing:-0.094844pt;}
.ws28{word-spacing:-0.053134pt;}
.ws8e{word-spacing:-0.045164pt;}
.ws33{word-spacing:-0.042507pt;}
.wsa7{word-spacing:-0.037194pt;}
.ws166{word-spacing:-0.004516pt;}
.ws34{word-spacing:0.000000pt;}
.ws75{word-spacing:0.010627pt;}
.ws171{word-spacing:0.085811pt;}
.ws41{word-spacing:0.170028pt;}
.wse7{word-spacing:0.221302pt;}
.ws44{word-spacing:0.223162pt;}
.ws147{word-spacing:0.266466pt;}
.ws4f{word-spacing:0.276296pt;}
.ws49{word-spacing:0.329430pt;}
.ws94{word-spacing:0.382564pt;}
.ws12{word-spacing:0.435698pt;}
.ws4d{word-spacing:0.488832pt;}
.ws13{word-spacing:0.595099pt;}
.ws143{word-spacing:0.627776pt;}
.ws14b{word-spacing:0.672940pt;}
.ws85{word-spacing:0.701367pt;}
.ws24{word-spacing:0.754501pt;}
.wsa0{word-spacing:0.807635pt;}
.ws122{word-spacing:0.860769pt;}
.ws73{word-spacing:0.913903pt;}
.ws8{word-spacing:0.967036pt;}
.ws16b{word-spacing:1.034249pt;}
.wsc5{word-spacing:1.126438pt;}
.ws119{word-spacing:1.169741pt;}
.ws4c{word-spacing:1.179572pt;}
.ws4a{word-spacing:1.285840pt;}
.wsa2{word-spacing:1.392107pt;}
.ws13d{word-spacing:1.440723pt;}
.ws111{word-spacing:1.445241pt;}
.ws6f{word-spacing:1.498375pt;}
.ws46{word-spacing:1.604643pt;}
.ws133{word-spacing:1.621378pt;}
.ws6d{word-spacing:1.657777pt;}
.ws6e{word-spacing:1.710911pt;}
.ws89{word-spacing:1.711705pt;}
.ws7c{word-spacing:1.764044pt;}
.ws112{word-spacing:1.817178pt;}
.wsde{word-spacing:1.923446pt;}
.ws11c{word-spacing:1.976580pt;}
.ws11{word-spacing:2.029714pt;}
.ws113{word-spacing:2.082848pt;}
.ws16{word-spacing:2.135981pt;}
.ws157{word-spacing:2.163343pt;}
.wsd7{word-spacing:2.189115pt;}
.ws95{word-spacing:2.242249pt;}
.ws16d{word-spacing:2.253670pt;}
.ws90{word-spacing:2.298834pt;}
.ws12d{word-spacing:2.343998pt;}
.ws12b{word-spacing:2.348517pt;}
.ws8c{word-spacing:2.389161pt;}
.ws27{word-spacing:2.401651pt;}
.wsc1{word-spacing:2.434325pt;}
.wsd3{word-spacing:2.454785pt;}
.wsb6{word-spacing:2.479489pt;}
.ws9{word-spacing:2.507919pt;}
.ws173{word-spacing:2.524653pt;}
.ws3d{word-spacing:2.561052pt;}
.ws1c{word-spacing:2.569816pt;}
.ws43{word-spacing:2.614186pt;}
.wsbf{word-spacing:2.614980pt;}
.ws6{word-spacing:2.660144pt;}
.wsb{word-spacing:2.667320pt;}
.ws8f{word-spacing:2.668387pt;}
.ws65{word-spacing:2.705308pt;}
.ws7{word-spacing:2.720454pt;}
.ws116{word-spacing:2.750471pt;}
.ws18{word-spacing:2.773588pt;}
.ws87{word-spacing:2.795635pt;}
.ws3f{word-spacing:2.826722pt;}
.ws146{word-spacing:2.840799pt;}
.ws1b{word-spacing:2.879856pt;}
.ws1f{word-spacing:2.885963pt;}
.wsb4{word-spacing:2.931126pt;}
.ws1{word-spacing:2.932989pt;}
.ws39{word-spacing:2.986123pt;}
.wse8{word-spacing:3.021454pt;}
.ws22{word-spacing:3.039257pt;}
.ws42{word-spacing:3.092391pt;}
.ws15{word-spacing:3.145525pt;}
.ws2d{word-spacing:3.198659pt;}
.ws140{word-spacing:3.202109pt;}
.ws1a{word-spacing:3.251793pt;}
.ws14{word-spacing:3.304927pt;}
.ws12f{word-spacing:3.337600pt;}
.ws36{word-spacing:3.358060pt;}
.ws66{word-spacing:3.411194pt;}
.ws35{word-spacing:3.464328pt;}
.ws11b{word-spacing:3.517462pt;}
.ws132{word-spacing:3.518255pt;}
.ws19{word-spacing:3.570596pt;}
.wsb3{word-spacing:3.608582pt;}
.ws9c{word-spacing:3.623730pt;}
.ws72{word-spacing:3.676864pt;}
.wsad{word-spacing:3.729997pt;}
.ws161{word-spacing:3.789237pt;}
.wsa4{word-spacing:3.836265pt;}
.ws131{word-spacing:3.879565pt;}
.ws7f{word-spacing:3.889399pt;}
.ws93{word-spacing:3.942533pt;}
.ws5c{word-spacing:3.995667pt;}
.ws12c{word-spacing:4.015056pt;}
.wsa1{word-spacing:4.048801pt;}
.ws54{word-spacing:4.155068pt;}
.ws162{word-spacing:4.195711pt;}
.wsc{word-spacing:4.208202pt;}
.ws3c{word-spacing:4.261336pt;}
.ws10b{word-spacing:4.314470pt;}
.ws137{word-spacing:4.331202pt;}
.wsc2{word-spacing:4.367604pt;}
.ws15a{word-spacing:4.421529pt;}
.wsc3{word-spacing:4.473872pt;}
.ws2e{word-spacing:4.527005pt;}
.ws68{word-spacing:4.580139pt;}
.ws14a{word-spacing:4.602184pt;}
.ws17{word-spacing:4.633273pt;}
.ws164{word-spacing:4.647348pt;}
.ws31{word-spacing:4.686407pt;}
.ws159{word-spacing:4.692512pt;}
.ws4b{word-spacing:4.739541pt;}
.ws158{word-spacing:4.782839pt;}
.ws3e{word-spacing:4.792675pt;}
.ws163{word-spacing:4.828003pt;}
.ws38{word-spacing:4.898943pt;}
.ws6a{word-spacing:4.952076pt;}
.ws148{word-spacing:4.963494pt;}
.ws37{word-spacing:5.005210pt;}
.ws138{word-spacing:5.053822pt;}
.ws98{word-spacing:5.111478pt;}
.ws4e{word-spacing:5.164612pt;}
.ws126{word-spacing:5.217746pt;}
.ws9a{word-spacing:5.270880pt;}
.wsd0{word-spacing:5.377147pt;}
.ws30{word-spacing:5.430281pt;}
.ws149{word-spacing:5.460295pt;}
.wsd9{word-spacing:5.483415pt;}
.ws7d{word-spacing:5.536549pt;}
.wscd{word-spacing:5.589683pt;}
.wseb{word-spacing:5.642817pt;}
.ws165{word-spacing:5.686114pt;}
.ws52{word-spacing:5.749084pt;}
.ws15e{word-spacing:5.776441pt;}
.ws11e{word-spacing:5.802218pt;}
.ws5b{word-spacing:5.855352pt;}
.ws15b{word-spacing:5.866769pt;}
.ws14c{word-spacing:5.911933pt;}
.wsdc{word-spacing:5.961620pt;}
.ws82{word-spacing:6.014754pt;}
.ws7b{word-spacing:6.067888pt;}
.ws151{word-spacing:6.092588pt;}
.ws45{word-spacing:6.121021pt;}
.ws13b{word-spacing:6.137751pt;}
.ws59{word-spacing:6.174155pt;}
.ws67{word-spacing:6.227289pt;}
.ws2f{word-spacing:6.280423pt;}
.wsda{word-spacing:6.333557pt;}
.ws14e{word-spacing:6.363570pt;}
.ws26{word-spacing:6.439825pt;}
.ws83{word-spacing:6.492959pt;}
.ws156{word-spacing:6.544225pt;}
.wscf{word-spacing:6.546092pt;}
.ws135{word-spacing:6.589389pt;}
.wsa6{word-spacing:6.652360pt;}
.wsed{word-spacing:6.758628pt;}
.wsd1{word-spacing:6.811762pt;}
.wsa{word-spacing:6.864896pt;}
.ws121{word-spacing:6.971163pt;}
.ws50{word-spacing:7.018190pt;}
.ws40{word-spacing:7.024297pt;}
.ws110{word-spacing:7.077431pt;}
.ws150{word-spacing:7.086190pt;}
.ws12a{word-spacing:7.130565pt;}
.ws20{word-spacing:7.176517pt;}
.ws9d{word-spacing:7.183699pt;}
.ws160{word-spacing:7.221681pt;}
.ws3a{word-spacing:7.236833pt;}
.wsdf{word-spacing:7.289967pt;}
.wsd2{word-spacing:7.343100pt;}
.ws169{word-spacing:7.357172pt;}
.ws55{word-spacing:7.396234pt;}
.wse2{word-spacing:7.447500pt;}
.ws10{word-spacing:7.449368pt;}
.ws125{word-spacing:7.502502pt;}
.ws120{word-spacing:7.555636pt;}
.ws11a{word-spacing:7.608770pt;}
.ws152{word-spacing:7.628155pt;}
.ws2c{word-spacing:7.661904pt;}
.ws2b{word-spacing:7.715037pt;}
.ws79{word-spacing:7.821305pt;}
.ws2a{word-spacing:7.874439pt;}
.ws175{word-spacing:7.899137pt;}
.ws23{word-spacing:7.927573pt;}
.ws130{word-spacing:7.989464pt;}
.ws7e{word-spacing:8.033841pt;}
.ws153{word-spacing:8.079792pt;}
.ws9e{word-spacing:8.140108pt;}
.ws139{word-spacing:8.170119pt;}
.wsc4{word-spacing:8.193242pt;}
.ws6b{word-spacing:8.352644pt;}
.ws25{word-spacing:8.458912pt;}
.ws124{word-spacing:8.512045pt;}
.ws11d{word-spacing:8.565179pt;}
.ws172{word-spacing:8.576593pt;}
.wscc{word-spacing:8.618313pt;}
.ws9b{word-spacing:8.671447pt;}
.wsd6{word-spacing:8.777715pt;}
.wsce{word-spacing:8.830849pt;}
.ws92{word-spacing:8.847575pt;}
.wsae{word-spacing:8.883983pt;}
.ws13c{word-spacing:8.983067pt;}
.ws3b{word-spacing:8.990250pt;}
.wsec{word-spacing:9.043384pt;}
.ws84{word-spacing:9.149652pt;}
.wsdb{word-spacing:9.202786pt;}
.ws8d{word-spacing:9.208885pt;}
.ws81{word-spacing:9.309053pt;}
.wsac{word-spacing:9.521589pt;}
.ws97{word-spacing:9.627857pt;}
.wsee{word-spacing:9.680991pt;}
.ws13a{word-spacing:9.705686pt;}
.ws15f{word-spacing:9.750850pt;}
.ws129{word-spacing:9.840392pt;}
.ws53{word-spacing:10.052928pt;}
.ws96{word-spacing:10.106061pt;}
.ws13f{word-spacing:10.112160pt;}
.ws16f{word-spacing:10.157324pt;}
.wsd8{word-spacing:10.318597pt;}
.ws7a{word-spacing:10.424865pt;}
.ws167{word-spacing:10.473470pt;}
.ws16e{word-spacing:10.518633pt;}
.wsfd{word-spacing:10.613477pt;}
.ws128{word-spacing:10.743668pt;}
.ws127{word-spacing:10.849936pt;}
.wsef{word-spacing:10.956203pt;}
.ws56{word-spacing:12.125148pt;}
.ws14f{word-spacing:12.821984pt;}
.ws155{word-spacing:13.454276pt;}
.ws71{word-spacing:14.611813pt;}
.wsa9{word-spacing:14.642170pt;}
.ws14d{word-spacing:14.899516pt;}
.ws8a{word-spacing:15.080171pt;}
.wse6{word-spacing:15.220178pt;}
.ws168{word-spacing:16.164100pt;}
.ws118{word-spacing:16.349271pt;}
.wsd5{word-spacing:16.684034pt;}
.ws1e{word-spacing:17.067375pt;}
.wsf8{word-spacing:17.297710pt;}
.ws29{word-spacing:17.640444pt;}
.wsd4{word-spacing:17.852979pt;}
.wsc0{word-spacing:18.291312pt;}
.wsb5{word-spacing:18.336476pt;}
.ws86{word-spacing:18.381639pt;}
.ws64{word-spacing:18.426803pt;}
.wsfc{word-spacing:18.471967pt;}
.wsf2{word-spacing:18.522908pt;}
.wscb{word-spacing:18.697786pt;}
.ws70{word-spacing:18.968790pt;}
.wse4{word-spacing:19.575842pt;}
.wsb2{word-spacing:19.872043pt;}
.ws0{word-spacing:20.297137pt;}
.ws5{word-spacing:20.350271pt;}
.ws4{word-spacing:21.253547pt;}
.ws15c{word-spacing:21.357929pt;}
.wse3{word-spacing:21.678592pt;}
.ws51{word-spacing:22.635027pt;}
.ws134{word-spacing:23.394814pt;}
.ws8b{word-spacing:25.467829pt;}
.ws1d{word-spacing:25.648484pt;}
.ws154{word-spacing:25.964630pt;}
.wsf6{word-spacing:27.402910pt;}
.wsc9{word-spacing:28.382386pt;}
.ws3{word-spacing:31.795386pt;}
.ws2{word-spacing:32.475501pt;}
.ws60{word-spacing:33.409188pt;}
.ws91{word-spacing:40.913826pt;}
.ws117{word-spacing:48.553002pt;}
.wsb7{word-spacing:50.443374pt;}
.wsbe{word-spacing:52.550671pt;}
.ws62{word-spacing:54.492141pt;}
.wsf9{word-spacing:61.730714pt;}
.wse5{word-spacing:62.327134pt;}
.wsf7{word-spacing:62.535601pt;}
.ws63{word-spacing:62.600913pt;}
.wsbd{word-spacing:64.739979pt;}
.wsba{word-spacing:65.979698pt;}
.ws108{word-spacing:66.521663pt;}
.ws114{word-spacing:69.163119pt;}
.ws61{word-spacing:72.710244pt;}
.wsff{word-spacing:74.425316pt;}
.wsbc{word-spacing:74.438470pt;}
.ws104{word-spacing:78.580380pt;}
.ws109{word-spacing:79.122344pt;}
.ws107{word-spacing:88.471237pt;}
.ws102{word-spacing:95.213890pt;}
.ws101{word-spacing:98.407259pt;}
.ws103{word-spacing:101.162246pt;}
.ws106{word-spacing:103.059123pt;}
.wse1{word-spacing:106.077639pt;}
.ws105{word-spacing:119.202399pt;}
.ws100{word-spacing:119.208557pt;}
.wsfe{word-spacing:124.466733pt;}
.wsfa{word-spacing:138.162062pt;}
.wsb1{word-spacing:163.201338pt;}
.wsbb{word-spacing:166.126715pt;}
.wsb0{word-spacing:174.660374pt;}
.wsaa{word-spacing:180.551945pt;}
.wsb9{word-spacing:201.854715pt;}
.wsca{word-spacing:736.462949pt;}
.ws5d{word-spacing:1093.690487pt;}
.ws5f{word-spacing:1093.692796pt;}
.ws5e{word-spacing:1093.694527pt;}
.wsc6{word-spacing:1413.909614pt;}
.wsc8{word-spacing:1413.911525pt;}
.wsc7{word-spacing:1413.912959pt;}
.wsf3{word-spacing:1446.742686pt;}
.wsf5{word-spacing:1446.744646pt;}
.wsf4{word-spacing:1446.746116pt;}
._4{margin-left:-30.551973pt;}
._b{margin-left:-27.937780pt;}
._e{margin-left:-26.566933pt;}
._7a{margin-left:-25.528111pt;}
._7{margin-left:-23.846451pt;}
._8{margin-left:-22.810317pt;}
._7b{margin-left:-21.758283pt;}
._2{margin-left:-5.440922pt;}
._6{margin-left:-4.356977pt;}
._3{margin-left:-2.720461pt;}
._1{margin-left:-1.700284pt;}
._0{width:1.753418pt;}
._f{width:3.241166pt;}
._17{width:4.345671pt;}
._38{width:5.791189pt;}
._2f{width:7.993981pt;}
._a{width:9.139025pt;}
._18{width:11.579064pt;}
._39{width:14.771215pt;}
._9{width:16.880634pt;}
._16{width:17.850298pt;}
._d{width:19.138826pt;}
._54{width:20.146784pt;}
._47{width:21.269483pt;}
._78{width:22.929870pt;}
._53{width:27.677975pt;}
._5{width:30.565960pt;}
._76{width:35.428480pt;}
._79{width:37.406720pt;}
._4e{width:45.884612pt;}
._75{width:47.927810pt;}
._4d{width:49.705996pt;}
._12{width:54.491777pt;}
._73{width:60.426240pt;}
._77{width:62.404480pt;}
._11{width:64.601835pt;}
._3e{width:65.880507pt;}
._70{width:68.425557pt;}
._43{width:71.119124pt;}
._6e{width:73.074921pt;}
._55{width:75.452080pt;}
._71{width:77.817113pt;}
._72{width:78.762205pt;}
._4f{width:80.529133pt;}
._52{width:82.235665pt;}
._15{width:83.951116pt;}
._3d{width:85.585275pt;}
._74{width:87.402240pt;}
._13{width:88.870338pt;}
._51{width:90.124070pt;}
._42{width:93.003085pt;}
._14{width:94.925101pt;}
._50{width:100.071199pt;}
._62{width:101.849539pt;}
._41{width:103.534290pt;}
._1d{width:104.560370pt;}
._65{width:108.522175pt;}
._49{width:109.493412pt;}
._6c{width:111.069149pt;}
._64{width:113.484446pt;}
._5c{width:117.199888pt;}
._4b{width:122.831344pt;}
._2e{width:128.883931pt;}
._61{width:132.157879pt;}
._5e{width:133.549159pt;}
._4a{width:142.906317pt;}
._66{width:146.596255pt;}
._2b{width:150.630269pt;}
._56{width:151.955831pt;}
._6a{width:155.178430pt;}
._57{width:157.863058pt;}
._30{width:163.921956pt;}
._35{width:168.789282pt;}
._67{width:170.748138pt;}
._3a{width:173.396283pt;}
._1e{width:181.424423pt;}
._5d{width:184.983392pt;}
._1a{width:188.274678pt;}
._28{width:192.945235pt;}
._60{width:196.821782pt;}
._3c{width:199.181665pt;}
._6b{width:201.243311pt;}
._6d{width:216.224121pt;}
._69{width:218.208132pt;}
._3b{width:227.730098pt;}
._5b{width:229.070455pt;}
._5f{width:236.449764pt;}
._68{width:238.477616pt;}
._63{width:241.142276pt;}
._32{width:245.538403pt;}
._1c{width:249.500946pt;}
._19{width:256.295222pt;}
._6f{width:267.520025pt;}
._3f{width:308.954065pt;}
._1b{width:310.611531pt;}
._5a{width:316.266721pt;}
._2d{width:319.629142pt;}
._37{width:375.464804pt;}
._2c{width:382.423980pt;}
._40{width:426.480664pt;}
._36{width:441.105218pt;}
._34{width:499.136877pt;}
._2a{width:502.695818pt;}
._29{width:515.327298pt;}
._23{width:524.279038pt;}
._44{width:532.851698pt;}
._20{width:548.868343pt;}
._1f{width:564.125503pt;}
._27{width:565.731177pt;}
._59{width:568.617497pt;}
._46{width:609.632158pt;}
._33{width:636.616591pt;}
._22{width:676.748286pt;}
._45{width:682.401919pt;}
._31{width:699.965672pt;}
._58{width:711.729425pt;}
._21{width:746.567192pt;}
._25{width:868.334459pt;}
._26{width:876.736443pt;}
._24{width:980.674463pt;}
._4c{width:1526.197881pt;}
._10{width:1550.192548pt;}
._48{width:2303.598350pt;}
._c{width:2327.593842pt;}
.fs13{font-size:26.512282pt;}
.fse{font-size:27.408691pt;}
.fsf{font-size:27.408695pt;}
.fs10{font-size:27.408700pt;}
.fs8{font-size:30.108826pt;}
.fsc{font-size:30.870605pt;}
.fsd{font-size:31.033498pt;}
.fsb{font-size:31.313050pt;}
.fs5{font-size:31.614400pt;}
.fs7{font-size:34.885402pt;}
.fs9{font-size:36.229939pt;}
.fs4{font-size:36.360576pt;}
.fs3{font-size:37.193600pt;}
.fsa{font-size:37.277440pt;}
.fs11{font-size:37.766400pt;}
.fs6{font-size:40.104422pt;}
.fs12{font-size:44.960000pt;}
.fs2{font-size:45.163733pt;}
.fs0{font-size:53.133867pt;}
.fs1{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:2.003232pt;}
.y81{bottom:2.456323pt;}
.y232{bottom:3.271032pt;}
.y108{bottom:3.504164pt;}
.y139{bottom:4.274229pt;}
.y19a{bottom:4.537495pt;}
.y191{bottom:6.434975pt;}
.y231{bottom:15.365551pt;}
.y138{bottom:16.074021pt;}
.y80{bottom:16.706206pt;}
.y199{bottom:18.694219pt;}
.y190{bottom:18.716912pt;}
.y11d{bottom:19.224954pt;}
.y105{bottom:20.297891pt;}
.y230{bottom:24.924372pt;}
.y16f{bottom:25.156447pt;}
.y22b{bottom:25.291678pt;}
.y237{bottom:27.826783pt;}
.y193{bottom:29.574338pt;}
.y226{bottom:30.649794pt;}
.y12f{bottom:30.732135pt;}
.y161{bottom:31.426777pt;}
.y11c{bottom:32.896709pt;}
.y211{bottom:33.120252pt;}
.y18b{bottom:33.378305pt;}
.y7b{bottom:34.407908pt;}
.y1c1{bottom:35.069715pt;}
.yff{bottom:35.313277pt;}
.y16e{bottom:40.479417pt;}
.y1b3{bottom:41.298443pt;}
.y131{bottom:41.995315pt;}
.y22c{bottom:43.913334pt;}
.y1bb{bottom:46.531185pt;}
.y160{bottom:47.954350pt;}
.y225{bottom:49.130696pt;}
.y210{bottom:50.348362pt;}
.y1be{bottom:52.552964pt;}
.y166{bottom:52.707970pt;}
.y1b2{bottom:55.044231pt;}
.y1c4{bottom:56.007472pt;}
.y15a{bottom:61.518742pt;}
.y22d{bottom:62.534989pt;}
.y236{bottom:62.535252pt;}
.y100{bottom:63.481760pt;}
.y21f{bottom:63.879168pt;}
.y20a{bottom:64.488001pt;}
.y1b4{bottom:64.595571pt;}
.y238{bottom:65.943054pt;}
.y234{bottom:66.021959pt;}
.y11b{bottom:66.034033pt;}
.y167{bottom:67.991798pt;}
.y104{bottom:69.019989pt;}
.y7d{bottom:69.220094pt;}
.y132{bottom:70.132804pt;}
.y177{bottom:72.278626pt;}
.y13a{bottom:73.066921pt;}
.y1b1{bottom:73.067868pt;}
.y194{bottom:73.168860pt;}
.y18d{bottom:73.408262pt;}
.y224{bottom:74.427346pt;}
.y220{bottom:77.142555pt;}
.y20f{bottom:77.609765pt;}
.y20b{bottom:77.751389pt;}
.y235{bottom:81.156645pt;}
.y22e{bottom:81.156908pt;}
.y11a{bottom:81.947902pt;}
.y13c{bottom:84.329354pt;}
.y168{bottom:88.121538pt;}
.y221{bottom:90.405568pt;}
.y20c{bottom:91.014401pt;}
.y101{bottom:91.650243pt;}
.y16d{bottom:94.143398pt;}
.y1b5{bottom:94.247051pt;}
.y17e{bottom:94.379100pt;}
.y114{bottom:95.009076pt;}
.y172{bottom:95.497268pt;}
.y178{bottom:97.999982pt;}
.y133{bottom:98.449363pt;}
.y22f{bottom:99.778564pt;}
.y198{bottom:100.109199pt;}
.y17d{bottom:101.461736pt;}
.y1ba{bottom:101.722841pt;}
.y171{bottom:102.766524pt;}
.y119{bottom:103.140351pt;}
.y169{bottom:103.219057pt;}
.y222{bottom:103.668955pt;}
.y20d{bottom:104.277789pt;}
.y1c2{bottom:108.074857pt;}
.y124{bottom:108.220884pt;}
.y1b6{bottom:109.531809pt;}
.y1bc{bottom:111.066713pt;}
.y7e{bottom:111.857288pt;}
.y1bf{bottom:112.104921pt;}
.y15b{bottom:112.413001pt;}
.y1b7{bottom:113.473539pt;}
.y1bd{bottom:116.506491pt;}
.y189{bottom:116.726667pt;}
.y195{bottom:116.763689pt;}
.y223{bottom:116.932343pt;}
.y20e{bottom:117.541176pt;}
.y179{bottom:117.570638pt;}
.y16a{bottom:118.502574pt;}
.y1b0{bottom:118.582387pt;}
.y41{bottom:118.844000pt;}
.y102{bottom:119.818726pt;}
.y1fa{bottom:122.710667pt;}
.y2c{bottom:122.829333pt;}
.y1b9{bottom:123.109839pt;}
.y186{bottom:123.286667pt;}
.y120{bottom:125.325978pt;}
.yd1{bottom:125.674667pt;}
.y115{bottom:125.741367pt;}
.y1c0{bottom:125.809094pt;}
.y76{bottom:126.541333pt;}
.y134{bottom:126.586852pt;}
.y219{bottom:130.257550pt;}
.y204{bottom:130.866383pt;}
.y18e{bottom:131.290646pt;}
.y27b{bottom:132.128000pt;}
.y182{bottom:132.398667pt;}
.y12d{bottom:134.522667pt;}
.y24e{bottom:134.622667pt;}
.y13d{bottom:135.048612pt;}
.y40{bottom:135.448000pt;}
.y2b{bottom:136.112000pt;}
.y184{bottom:136.113333pt;}
.y17a{bottom:136.955062pt;}
.y16b{bottom:138.632314pt;}
.y1f9{bottom:139.316000pt;}
.y146{bottom:139.432000pt;}
.y2ae{bottom:139.824000pt;}
.y1b8{bottom:140.759375pt;}
.y21e{bottom:140.805353pt;}
.y185{bottom:141.385333pt;}
.y75{bottom:143.145333pt;}
.y21a{bottom:143.520563pt;}
.y15f{bottom:143.863949pt;}
.y209{bottom:143.987210pt;}
.y183{bottom:144.082667pt;}
.y205{bottom:144.129396pt;}
.y188{bottom:145.018667pt;}
.y27a{bottom:145.410667pt;}
.y1ae{bottom:146.054667pt;}
.y103{bottom:147.987208pt;}
.y187{bottom:149.004000pt;}
.y2a{bottom:149.396000pt;}
.y12c{bottom:151.126667pt;}
.y24d{bottom:151.226667pt;}
.y3f{bottom:152.053333pt;}
.y145{bottom:152.714667pt;}
.y2ad{bottom:153.108000pt;}
.y16c{bottom:153.916142pt;}
.y7f{bottom:154.494482pt;}
.y135{bottom:154.903411pt;}
.y121{bottom:155.435402pt;}
.y1f8{bottom:155.920000pt;}
.y116{bottom:156.266180pt;}
.y21b{bottom:156.783950pt;}
.y206{bottom:157.392783pt;}
.y279{bottom:158.694667pt;}
.yd0{bottom:158.882667pt;}
.yd9{bottom:159.186667pt;}
.y74{bottom:159.749333pt;}
.y196{bottom:160.543164pt;}
.y1ad{bottom:162.658667pt;}
.y29{bottom:162.680000pt;}
.y17b{bottom:162.862728pt;}
.yfd{bottom:163.107232pt;}
.y15c{bottom:163.307619pt;}
.y144{bottom:165.998667pt;}
.y2ac{bottom:166.392000pt;}
.y12b{bottom:167.730667pt;}
.y24c{bottom:167.830667pt;}
.y3e{bottom:168.657333pt;}
.y21c{bottom:170.047337pt;}
.y207{bottom:170.656171pt;}
.y278{bottom:171.978667pt;}
.y1f7{bottom:172.524000pt;}
.ycf{bottom:175.486667pt;}
.yd8{bottom:175.792000pt;}
.y73{bottom:176.354667pt;}
.y1ac{bottom:179.262667pt;}
.y2ab{bottom:179.674667pt;}
.yfe{bottom:181.201767pt;}
.y28{bottom:182.605333pt;}
.y136{bottom:183.040900pt;}
.y21d{bottom:183.310350pt;}
.y208{bottom:183.919183pt;}
.y12a{bottom:184.334667pt;}
.y24b{bottom:184.436000pt;}
.y3d{bottom:185.261333pt;}
.y122{bottom:185.752651pt;}
.y13e{bottom:185.946715pt;}
.y117{bottom:186.998471pt;}
.y1f6{bottom:189.128000pt;}
.y18f{bottom:189.173030pt;}
.y7c{bottom:189.522017pt;}
.yce{bottom:192.092000pt;}
.yd7{bottom:192.396000pt;}
.y72{bottom:192.958667pt;}
.y1ab{bottom:195.866667pt;}
.y27{bottom:195.888000pt;}
.y213{bottom:196.635370pt;}
.y1fe{bottom:197.244203pt;}
.y277{bottom:198.545333pt;}
.y129{bottom:200.940000pt;}
.y24a{bottom:201.040000pt;}
.y3c{bottom:201.866667pt;}
.y197{bottom:204.137685pt;}
.y143{bottom:204.686667pt;}
.y1f5{bottom:205.733333pt;}
.y2aa{bottom:206.242667pt;}
.y218{bottom:207.183173pt;}
.ycd{bottom:208.696000pt;}
.y26{bottom:209.172000pt;}
.y71{bottom:209.562667pt;}
.y214{bottom:209.898757pt;}
.y203{bottom:210.365967pt;}
.y1ff{bottom:210.507591pt;}
.y137{bottom:211.357459pt;}
.y276{bottom:211.828000pt;}
.y1aa{bottom:212.472000pt;}
.y13b{bottom:214.235645pt;}
.y15d{bottom:214.417802pt;}
.y123{bottom:215.862075pt;}
.y128{bottom:217.544000pt;}
.y249{bottom:217.644000pt;}
.y118{bottom:217.730762pt;}
.y1c6{bottom:218.414667pt;}
.y3b{bottom:218.470667pt;}
.y2a9{bottom:219.525333pt;}
.y1f4{bottom:222.337333pt;}
.y130{bottom:222.619892pt;}
.y215{bottom:223.162145pt;}
.y200{bottom:223.770978pt;}
.yd6{bottom:224.398667pt;}
.y275{bottom:225.112000pt;}
.ycc{bottom:225.300000pt;}
.y70{bottom:226.168000pt;}
.y1a9{bottom:229.076000pt;}
.y25{bottom:229.097333pt;}
.y18c{bottom:229.385974pt;}
.y8a{bottom:231.694667pt;}
.y1c5{bottom:231.698667pt;}
.y2a8{bottom:232.809333pt;}
.y79{bottom:233.394667pt;}
.y127{bottom:234.148000pt;}
.y248{bottom:234.249333pt;}
.y3a{bottom:235.074667pt;}
.y216{bottom:236.425157pt;}
.y201{bottom:237.033991pt;}
.y274{bottom:238.396000pt;}
.y1f3{bottom:238.941333pt;}
.yd5{bottom:241.002667pt;}
.ycb{bottom:241.905333pt;}
.y24{bottom:242.381333pt;}
.y6f{bottom:242.772000pt;}
.y88{bottom:244.978667pt;}
.y1a8{bottom:245.680000pt;}
.y2a7{bottom:246.093333pt;}
.y148{bottom:247.592000pt;}
.y89{bottom:248.964000pt;}
.y217{bottom:249.688545pt;}
.y78{bottom:249.998667pt;}
.y202{bottom:250.297378pt;}
.y247{bottom:250.853333pt;}
.y39{bottom:251.678667pt;}
.y1af{bottom:255.268800pt;}
.y1f2{bottom:255.546667pt;}
.y23{bottom:255.664000pt;}
.yd4{bottom:257.606667pt;}
.y87{bottom:258.262667pt;}
.yca{bottom:258.509333pt;}
.y6e{bottom:259.376000pt;}
.y1c3{bottom:260.493971pt;}
.y1a7{bottom:262.285333pt;}
.y147{bottom:264.197333pt;}
.y273{bottom:264.962667pt;}
.y15e{bottom:265.312060pt;}
.y246{bottom:267.457333pt;}
.y38{bottom:268.284000pt;}
.y22{bottom:268.948000pt;}
.y1f1{bottom:272.150667pt;}
.y2a6{bottom:272.660000pt;}
.yc9{bottom:275.113333pt;}
.y6d{bottom:275.981333pt;}
.y126{bottom:276.821333pt;}
.y272{bottom:278.246667pt;}
.y1a6{bottom:278.889333pt;}
.y181{bottom:280.721333pt;}
.y21{bottom:282.230667pt;}
.y245{bottom:284.062667pt;}
.y37{bottom:284.888000pt;}
.y2a5{bottom:285.944000pt;}
.y1f0{bottom:288.754667pt;}
.y125{bottom:290.105333pt;}
.y271{bottom:291.529333pt;}
.yc8{bottom:291.718667pt;}
.y6c{bottom:292.585333pt;}
.y180{bottom:294.005333pt;}
.y1a5{bottom:295.493333pt;}
.y86{bottom:296.950667pt;}
.y2a4{bottom:299.226667pt;}
.y244{bottom:300.666667pt;}
.y36{bottom:301.492000pt;}
.y270{bottom:304.813333pt;}
.y1ef{bottom:305.360000pt;}
.y176{bottom:305.447627pt;}
.y17f{bottom:307.288000pt;}
.yc7{bottom:308.322667pt;}
.y6b{bottom:309.189333pt;}
.y85{bottom:310.233333pt;}
.y1a4{bottom:312.098667pt;}
.y2a3{bottom:312.510667pt;}
.y93{bottom:315.428000pt;}
.y243{bottom:317.270667pt;}
.y1fc{bottom:317.306667pt;}
.y35{bottom:318.097333pt;}
.y20{bottom:320.997333pt;}
.y1ee{bottom:321.964000pt;}
.y94{bottom:321.989333pt;}
.yc6{bottom:324.926667pt;}
.y6a{bottom:325.793333pt;}
.y11f{bottom:328.166667pt;}
.y1a3{bottom:328.702667pt;}
.y90{bottom:331.101333pt;}
.y26f{bottom:331.380000pt;}
.y242{bottom:333.874667pt;}
.y34{bottom:334.701333pt;}
.y1f{bottom:337.601333pt;}
.y1ed{bottom:338.568000pt;}
.y2a2{bottom:339.077333pt;}
.y11e{bottom:341.449333pt;}
.yd3{bottom:341.530667pt;}
.y69{bottom:342.398667pt;}
.y92{bottom:343.720000pt;}
.y1a2{bottom:345.306667pt;}
.y91{bottom:347.705333pt;}
.y241{bottom:350.480000pt;}
.y33{bottom:351.305333pt;}
.y2a1{bottom:352.361333pt;}
.y1e{bottom:354.206667pt;}
.y113{bottom:354.733333pt;}
.y1ec{bottom:355.172000pt;}
.yc5{bottom:358.136000pt;}
.y68{bottom:359.002667pt;}
.y26e{bottom:359.588000pt;}
.y17c{bottom:361.437565pt;}
.y1a1{bottom:361.910667pt;}
.y2a0{bottom:365.644000pt;}
.y158{bottom:366.288000pt;}
.y240{bottom:367.084000pt;}
.y32{bottom:367.910667pt;}
.y1d{bottom:370.810667pt;}
.y1eb{bottom:371.777333pt;}
.y142{bottom:372.160000pt;}
.yc4{bottom:374.740000pt;}
.y67{bottom:375.606667pt;}
.y1a0{bottom:378.516000pt;}
.y29f{bottom:378.928000pt;}
.yd2{bottom:379.560000pt;}
.y23f{bottom:383.688000pt;}
.y31{bottom:384.514667pt;}
.y1c{bottom:387.414667pt;}
.y1ea{bottom:388.381333pt;}
.yc3{bottom:391.344000pt;}
.y66{bottom:392.212000pt;}
.y19f{bottom:395.120000pt;}
.y23e{bottom:400.293333pt;}
.y30{bottom:401.118667pt;}
.y1b{bottom:404.018667pt;}
.y1e9{bottom:404.985333pt;}
.y29e{bottom:405.494667pt;}
.y26d{bottom:407.705333pt;}
.yc2{bottom:407.949333pt;}
.y65{bottom:408.816000pt;}
.y157{bottom:413.269333pt;}
.y23d{bottom:416.897333pt;}
.ya0{bottom:417.722667pt;}
.y29d{bottom:418.778667pt;}
.y1a{bottom:420.624000pt;}
.y26c{bottom:420.989333pt;}
.y1e8{bottom:421.590667pt;}
.y64{bottom:425.420000pt;}
.y156{bottom:429.873333pt;}
.y29c{bottom:432.062667pt;}
.y23c{bottom:433.501333pt;}
.y2f{bottom:433.922667pt;}
.y26b{bottom:434.273333pt;}
.y9f{bottom:434.328000pt;}
.y19e{bottom:437.166667pt;}
.y19{bottom:437.228000pt;}
.y1e7{bottom:438.194667pt;}
.y63{bottom:442.025333pt;}
.y29b{bottom:445.345333pt;}
.y155{bottom:446.478667pt;}
.y26a{bottom:447.556000pt;}
.y23b{bottom:450.106667pt;}
.y9e{bottom:450.932000pt;}
.y18{bottom:453.832000pt;}
.y1e6{bottom:454.798667pt;}
.yc1{bottom:457.629333pt;}
.y62{bottom:458.629333pt;}
.y154{bottom:463.082667pt;}
.y9d{bottom:467.536000pt;}
.y17{bottom:470.437333pt;}
.yc0{bottom:470.913333pt;}
.y1e5{bottom:471.404000pt;}
.y29a{bottom:471.912000pt;}
.yfb{bottom:472.492000pt;}
.y19c{bottom:473.032000pt;}
.y269{bottom:474.124000pt;}
.y61{bottom:475.233333pt;}
.y153{bottom:479.686667pt;}
.yfa{bottom:481.604000pt;}
.y9c{bottom:484.141333pt;}
.y299{bottom:485.196000pt;}
.y16{bottom:487.041333pt;}
.y268{bottom:487.406667pt;}
.y1e4{bottom:488.008000pt;}
.y19d{bottom:488.149333pt;}
.y60{bottom:491.837333pt;}
.y2e{bottom:491.850667pt;}
.ybf{bottom:492.697333pt;}
.y23a{bottom:492.780000pt;}
.y152{bottom:496.292000pt;}
.y175{bottom:497.112000pt;}
.y298{bottom:498.480000pt;}
.y267{bottom:500.690667pt;}
.y9b{bottom:500.745333pt;}
.y15{bottom:503.645333pt;}
.y1e3{bottom:504.612000pt;}
.ybe{bottom:505.981333pt;}
.y239{bottom:506.062667pt;}
.y5f{bottom:508.442667pt;}
.y2d{bottom:508.454667pt;}
.y174{bottom:510.396000pt;}
.y297{bottom:511.762667pt;}
.y151{bottom:512.896000pt;}
.y266{bottom:513.973333pt;}
.yf9{bottom:514.585333pt;}
.y9a{bottom:517.349333pt;}
.ybd{bottom:519.265333pt;}
.y14{bottom:520.250667pt;}
.y1e2{bottom:521.216000pt;}
.y165{bottom:521.838293pt;}
.y173{bottom:523.680000pt;}
.y5e{bottom:525.046667pt;}
.y265{bottom:527.257333pt;}
.y150{bottom:529.500000pt;}
.ybc{bottom:532.548000pt;}
.y99{bottom:533.954667pt;}
.y22a{bottom:533.958667pt;}
.y84{bottom:535.982667pt;}
.y13{bottom:536.854667pt;}
.y1e1{bottom:537.821333pt;}
.yf8{bottom:538.138667pt;}
.y296{bottom:538.330667pt;}
.y141{bottom:539.633333pt;}
.y264{bottom:540.541333pt;}
.y5d{bottom:541.650667pt;}
.ybb{bottom:545.832000pt;}
.y14f{bottom:546.105333pt;}
.yf7{bottom:547.250667pt;}
.y83{bottom:549.265333pt;}
.y98{bottom:550.558667pt;}
.y295{bottom:551.613333pt;}
.y11{bottom:553.458667pt;}
.y263{bottom:553.824000pt;}
.y1e0{bottom:554.425333pt;}
.y5c{bottom:558.256000pt;}
.y12{bottom:558.280000pt;}
.y233{bottom:561.601600pt;}
.y14e{bottom:562.709333pt;}
.y294{bottom:564.897333pt;}
.y97{bottom:567.162667pt;}
.yba{bottom:567.617333pt;}
.y10{bottom:570.062667pt;}
.y1df{bottom:571.029333pt;}
.y5b{bottom:574.860000pt;}
.y170{bottom:577.828232pt;}
.y293{bottom:578.181333pt;}
.y14d{bottom:579.313333pt;}
.yf6{bottom:580.232000pt;}
.yb9{bottom:580.900000pt;}
.y96{bottom:583.766667pt;}
.yf{bottom:586.668000pt;}
.y1de{bottom:587.634667pt;}
.y5a{bottom:591.464000pt;}
.y262{bottom:591.758667pt;}
.y1fb{bottom:592.454667pt;}
.yb8{bottom:594.184000pt;}
.y14c{bottom:595.917333pt;}
.yf5{bottom:596.836000pt;}
.ye4{bottom:600.372000pt;}
.ye{bottom:603.272000pt;}
.y292{bottom:604.748000pt;}
.y261{bottom:605.041333pt;}
.yb7{bottom:607.468000pt;}
.y59{bottom:608.069333pt;}
.y112{bottom:608.449333pt;}
.y14b{bottom:612.522667pt;}
.yf4{bottom:613.441333pt;}
.y95{bottom:615.296000pt;}
.ye3{bottom:616.976000pt;}
.y291{bottom:618.032000pt;}
.y260{bottom:618.325333pt;}
.yd{bottom:619.876000pt;}
.y58{bottom:624.673333pt;}
.yb6{bottom:629.252000pt;}
.yf3{bottom:630.045333pt;}
.y111{bottom:630.233333pt;}
.y290{bottom:631.314667pt;}
.y25f{bottom:631.609333pt;}
.ye2{bottom:633.580000pt;}
.y1dd{bottom:635.620000pt;}
.yc{bottom:636.481333pt;}
.y57{bottom:641.277333pt;}
.yb5{bottom:642.536000pt;}
.y14a{bottom:644.109333pt;}
.y28f{bottom:644.598667pt;}
.y25e{bottom:644.892000pt;}
.yf2{bottom:646.649333pt;}
.ye1{bottom:650.185333pt;}
.y110{bottom:652.018667pt;}
.yb{bottom:653.085333pt;}
.yb4{bottom:655.820000pt;}
.y1dc{bottom:657.405333pt;}
.y56{bottom:657.881333pt;}
.y25d{bottom:658.176000pt;}
.y229{bottom:659.244000pt;}
.y149{bottom:660.714667pt;}
.yf1{bottom:663.254667pt;}
.y10f{bottom:665.302667pt;}
.ye0{bottom:666.789333pt;}
.ya{bottom:669.689333pt;}
.y1db{bottom:670.689333pt;}
.y28e{bottom:671.165333pt;}
.y25c{bottom:671.460000pt;}
.y228{bottom:672.528000pt;}
.y55{bottom:674.486667pt;}
.yb3{bottom:677.604000pt;}
.yf0{bottom:679.858667pt;}
.ydf{bottom:683.393333pt;}
.y1da{bottom:683.973333pt;}
.y28d{bottom:684.449333pt;}
.y9{bottom:686.294667pt;}
.yb2{bottom:690.888000pt;}
.y54{bottom:691.090667pt;}
.y8f{bottom:695.910667pt;}
.yef{bottom:696.462667pt;}
.y1d9{bottom:697.256000pt;}
.y28c{bottom:697.732000pt;}
.yde{bottom:699.998667pt;}
.y10e{bottom:701.201333pt;}
.y8{bottom:702.898667pt;}
.yb1{bottom:704.172000pt;}
.y25b{bottom:707.510667pt;}
.y53{bottom:707.694667pt;}
.y1d8{bottom:710.540000pt;}
.y227{bottom:710.589333pt;}
.y164{bottom:710.681333pt;}
.y28b{bottom:711.016000pt;}
.yee{bottom:713.066667pt;}
.y10d{bottom:714.484000pt;}
.y140{bottom:715.077333pt;}
.ydd{bottom:716.602667pt;}
.yb0{bottom:717.454667pt;}
.y1d7{bottom:723.824000pt;}
.y212{bottom:723.872000pt;}
.y163{bottom:723.964000pt;}
.y25a{bottom:724.114667pt;}
.y77{bottom:724.300000pt;}
.y10c{bottom:727.768000pt;}
.y13f{bottom:728.360000pt;}
.y159{bottom:729.200267pt;}
.y19b{bottom:729.277333pt;}
.yed{bottom:729.672000pt;}
.ydc{bottom:733.206667pt;}
.y1d6{bottom:737.106667pt;}
.y1fd{bottom:737.156000pt;}
.y162{bottom:737.248000pt;}
.y28a{bottom:737.582667pt;}
.yaf{bottom:739.240000pt;}
.y259{bottom:740.718667pt;}
.y52{bottom:740.904000pt;}
.y7{bottom:746.217333pt;}
.yec{bottom:746.276000pt;}
.y24f{bottom:749.810667pt;}
.y1d5{bottom:750.390667pt;}
.y289{bottom:750.866667pt;}
.yae{bottom:752.524000pt;}
.y12e{bottom:756.256000pt;}
.y258{bottom:757.322667pt;}
.y51{bottom:757.508000pt;}
.y10b{bottom:759.814667pt;}
.yeb{bottom:762.880000pt;}
.y1d4{bottom:763.674667pt;}
.y288{bottom:764.150667pt;}
.ydb{bottom:764.736000pt;}
.y18a{bottom:765.142667pt;}
.yad{bottom:765.806667pt;}
.y10a{bottom:773.098667pt;}
.y257{bottom:773.928000pt;}
.y50{bottom:774.113333pt;}
.y82{bottom:775.014667pt;}
.y1d3{bottom:776.957333pt;}
.y287{bottom:777.433333pt;}
.yea{bottom:779.485333pt;}
.y192{bottom:780.261333pt;}
.yda{bottom:781.340000pt;}
.y109{bottom:786.381333pt;}
.yac{bottom:787.592000pt;}
.y7a{bottom:788.297333pt;}
.y256{bottom:790.532000pt;}
.y4f{bottom:790.717333pt;}
.y1d2{bottom:790.780000pt;}
.ye9{bottom:796.089333pt;}
.yab{bottom:800.876000pt;}
.y286{bottom:804.000000pt;}
.y1d1{bottom:804.064000pt;}
.y255{bottom:807.136000pt;}
.y4e{bottom:807.321333pt;}
.ye8{bottom:812.693333pt;}
.yaa{bottom:814.158667pt;}
.yfc{bottom:814.277333pt;}
.y285{bottom:817.284000pt;}
.y1d0{bottom:817.346667pt;}
.y254{bottom:823.741333pt;}
.y4d{bottom:823.925333pt;}
.ya9{bottom:827.442667pt;}
.y8e{bottom:828.746667pt;}
.ye7{bottom:829.298667pt;}
.y284{bottom:830.568000pt;}
.y1cf{bottom:830.630667pt;}
.y253{bottom:840.345333pt;}
.y4c{bottom:840.530667pt;}
.ya8{bottom:840.725333pt;}
.y6{bottom:843.205333pt;}
.y283{bottom:843.850667pt;}
.y1ce{bottom:843.913333pt;}
.ye6{bottom:845.902667pt;}
.y252{bottom:856.949333pt;}
.y4b{bottom:857.134667pt;}
.y1cd{bottom:857.197333pt;}
.y5{bottom:859.809333pt;}
.ya7{bottom:862.510667pt;}
.y282{bottom:870.418667pt;}
.y1cc{bottom:870.481333pt;}
.y251{bottom:873.554667pt;}
.y4a{bottom:873.738667pt;}
.ya6{bottom:875.794667pt;}
.ye5{bottom:877.430667pt;}
.y281{bottom:883.701333pt;}
.y1cb{bottom:883.764000pt;}
.ya5{bottom:889.077333pt;}
.y250{bottom:890.158667pt;}
.y49{bottom:890.344000pt;}
.y280{bottom:896.985333pt;}
.y1ca{bottom:897.048000pt;}
.y4{bottom:898.996000pt;}
.ya4{bottom:902.361333pt;}
.y48{bottom:906.948000pt;}
.y27f{bottom:910.269333pt;}
.y1c9{bottom:910.332000pt;}
.ya3{bottom:915.645333pt;}
.y3{bottom:922.906667pt;}
.y47{bottom:923.552000pt;}
.y1c8{bottom:928.132000pt;}
.y27e{bottom:936.836000pt;}
.ya2{bottom:937.429333pt;}
.y46{bottom:940.157333pt;}
.y1c7{bottom:941.414667pt;}
.y8d{bottom:944.977333pt;}
.y27d{bottom:950.120000pt;}
.y107{bottom:951.828937pt;}
.y45{bottom:956.761333pt;}
.y8c{bottom:961.581333pt;}
.y27c{bottom:963.402667pt;}
.y44{bottom:973.365333pt;}
.ya1{bottom:976.686667pt;}
.y8b{bottom:978.186667pt;}
.y43{bottom:989.969333pt;}
.y42{bottom:1023.862667pt;}
.y2{bottom:1027.105333pt;}
.y1{bottom:1041.318667pt;}
.h11{height:2.125355pt;}
.h19{height:14.084291pt;}
.he{height:15.585899pt;}
.h6{height:17.295024pt;}
.hd{height:17.931467pt;}
.h36{height:19.645601pt;}
.h2b{height:20.309840pt;}
.h2c{height:20.309843pt;}
.h2d{height:20.309846pt;}
.h14{height:21.055190pt;}
.h1d{height:22.702055pt;}
.h29{height:22.995822pt;}
.h23{height:23.202970pt;}
.h27{height:23.276436pt;}
.h7{height:23.485169pt;}
.h13{height:24.696550pt;}
.h1b{height:25.850083pt;}
.h10{height:26.519037pt;}
.h1f{height:26.846385pt;}
.hb{height:27.415874pt;}
.h21{height:27.622583pt;}
.h33{height:27.984902pt;}
.h18{height:29.717377pt;}
.h39{height:31.343631pt;}
.hc{height:31.659777pt;}
.h38{height:31.795268pt;}
.h34{height:33.315360pt;}
.h5{height:33.872800pt;}
.h8{height:35.387155pt;}
.h9{height:36.874903pt;}
.h2f{height:36.991190pt;}
.h30{height:36.996524pt;}
.hf{height:38.043849pt;}
.h3{height:39.850400pt;}
.h31{height:41.856800pt;}
.h25{height:51.411217pt;}
.h4{height:59.510080pt;}
.h15{height:73.990515pt;}
.h37{height:74.487215pt;}
.h16{height:76.298400pt;}
.h12{height:77.042688pt;}
.h35{height:106.522560pt;}
.h22{height:110.154369pt;}
.h24{height:110.498688pt;}
.h2e{height:147.218370pt;}
.h2a{height:157.461547pt;}
.h20{height:177.067840pt;}
.h17{height:188.984133pt;}
.ha{height:208.314898pt;}
.h28{height:211.661230pt;}
.h1a{height:225.819815pt;}
.h26{height:238.113274pt;}
.h1c{height:245.678907pt;}
.h32{height:259.455730pt;}
.h1e{height:274.060800pt;}
.h2{height:1122.520000pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w11{width:149.131255pt;}
.w12{width:149.131584pt;}
.w6{width:197.267775pt;}
.wc{width:211.661230pt;}
.wa{width:264.111051pt;}
.w8{width:274.060800pt;}
.w5{width:281.924541pt;}
.wf{width:285.682397pt;}
.we{width:294.228623pt;}
.wd{width:304.541013pt;}
.w3{width:317.432698pt;}
.w9{width:334.720347pt;}
.wb{width:419.569954pt;}
.w4{width:449.582312pt;}
.w10{width:591.790685pt;}
.w7{width:703.433867pt;}
.w2{width:793.701333pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x98{left:2.953763pt;}
.x27{left:6.166508pt;}
.x68{left:7.527507pt;}
.x29{left:9.192949pt;}
.x28{left:14.246636pt;}
.x97{left:15.571550pt;}
.x2d{left:16.956636pt;}
.x66{left:18.508310pt;}
.x96{left:19.885068pt;}
.x20{left:21.892638pt;}
.x6a{left:25.303981pt;}
.x67{left:27.420951pt;}
.x94{left:28.909495pt;}
.x70{left:31.759040pt;}
.x69{left:33.305370pt;}
.x77{left:34.976643pt;}
.x6e{left:36.607955pt;}
.x91{left:38.463533pt;}
.x78{left:39.933174pt;}
.x6d{left:41.456870pt;}
.x31{left:42.950029pt;}
.x83{left:44.308802pt;}
.x2a{left:47.503668pt;}
.x82{left:49.344602pt;}
.xae{left:50.437346pt;}
.x85{left:51.914737pt;}
.x2e{left:53.057854pt;}
.x6{left:54.594667pt;}
.x2{left:56.149333pt;}
.x86{left:59.565932pt;}
.x1{left:60.665333pt;}
.x21{left:64.529832pt;}
.x1f{left:65.488000pt;}
.x90{left:67.301333pt;}
.xcd{left:69.433333pt;}
.x64{left:72.693642pt;}
.x7f{left:75.012000pt;}
.xc6{left:76.074667pt;}
.x79{left:77.361536pt;}
.x80{left:81.118667pt;}
.x51{left:83.060000pt;}
.x84{left:84.975741pt;}
.x4{left:87.545333pt;}
.xaf{left:89.028000pt;}
.x92{left:96.345917pt;}
.x5{left:97.928000pt;}
.x49{left:99.433333pt;}
.x2b{left:100.500000pt;}
.x87{left:101.898276pt;}
.x72{left:104.452385pt;}
.x48{left:105.744000pt;}
.x1a{left:107.173333pt;}
.x30{left:108.765333pt;}
.x22{left:109.694140pt;}
.x7{left:115.353333pt;}
.xa7{left:117.168000pt;}
.x3{left:121.240000pt;}
.x8{left:122.688000pt;}
.x9b{left:124.619567pt;}
.x4e{left:126.446667pt;}
.x1b{left:128.094667pt;}
.xb0{left:136.397333pt;}
.x45{left:139.578667pt;}
.x4f{left:142.056000pt;}
.x89{left:145.716348pt;}
.xa2{left:148.357328pt;}
.x88{left:150.428838pt;}
.x39{left:152.718667pt;}
.x23{left:156.371489pt;}
.x43{left:159.461333pt;}
.xa6{left:161.394667pt;}
.x73{left:162.999041pt;}
.x3a{left:164.185333pt;}
.x4a{left:165.985333pt;}
.x44{left:169.368000pt;}
.xad{left:170.625333pt;}
.xa4{left:173.380347pt;}
.x81{left:175.365333pt;}
.xb9{left:176.929333pt;}
.x9c{left:178.606383pt;}
.xa1{left:180.474281pt;}
.x4b{left:181.398667pt;}
.x6f{left:184.250667pt;}
.x6c{left:185.654667pt;}
.x9{left:187.624000pt;}
.xa0{left:190.025621pt;}
.x3b{left:191.373333pt;}
.xba{left:192.637333pt;}
.x41{left:193.784000pt;}
.xa{left:194.957333pt;}
.x24{left:196.265227pt;}
.x3c{left:197.480000pt;}
.x42{left:199.890667pt;}
.x52{left:201.665333pt;}
.xb2{left:213.141779pt;}
.xbb{left:214.341333pt;}
.x65{left:218.473019pt;}
.xb1{left:220.401095pt;}
.x36{left:221.574667pt;}
.x74{left:222.798589pt;}
.x59{left:231.388000pt;}
.x9d{left:232.385730pt;}
.xb{left:234.493333pt;}
.x25{left:236.375217pt;}
.xb3{left:238.550698pt;}
.x9a{left:239.653013pt;}
.xc{left:241.828000pt;}
.x5b{left:245.589333pt;}
.x37{left:247.297333pt;}
.x9f{left:250.241685pt;}
.x6b{left:252.764000pt;}
.x9e{left:255.225355pt;}
.x5a{left:257.722667pt;}
.x46{left:264.194667pt;}
.x3d{left:272.273333pt;}
.x93{left:273.423443pt;}
.x47{left:275.854667pt;}
.x75{left:277.160253pt;}
.x26{left:279.012411pt;}
.x55{left:284.628000pt;}
.x38{left:288.908000pt;}
.xd{left:293.614667pt;}
.x3e{left:299.430667pt;}
.xe{left:300.949333pt;}
.x5c{left:307.252000pt;}
.x54{left:310.117333pt;}
.x3f{left:316.744000pt;}
.x5d{left:318.522667pt;}
.xa8{left:324.761333pt;}
.x40{left:328.210667pt;}
.x7e{left:329.138667pt;}
.x4c{left:332.280000pt;}
.x4d{left:345.230667pt;}
.x50{left:361.241333pt;}
.xf{left:370.245333pt;}
.x56{left:380.656000pt;}
.x71{left:385.512000pt;}
.x2c{left:386.916000pt;}
.x76{left:387.975740pt;}
.x19{left:394.701333pt;}
.x10{left:396.254667pt;}
.x33{left:397.894667pt;}
.x1c{left:399.814667pt;}
.x99{left:402.699467pt;}
.xc3{left:404.666667pt;}
.xa3{left:407.924638pt;}
.xbe{left:408.908000pt;}
.xc4{left:412.044000pt;}
.xb6{left:414.379991pt;}
.xc7{left:416.180000pt;}
.x58{left:419.865333pt;}
.x34{left:421.681333pt;}
.xb5{left:423.846198pt;}
.xb4{left:427.531286pt;}
.x5e{left:433.706667pt;}
.x61{left:435.374667pt;}
.x2f{left:436.746667pt;}
.x7d{left:439.666441pt;}
.x1e{left:445.072000pt;}
.x35{left:447.388000pt;}
.x8c{left:449.273333pt;}
.xc9{left:454.624000pt;}
.xab{left:456.016000pt;}
.x8b{left:461.377333pt;}
.x32{left:464.837333pt;}
.x13{left:468.984000pt;}
.x62{left:472.406667pt;}
.x1d{left:477.305333pt;}
.xbf{left:479.153333pt;}
.x63{left:482.737333pt;}
.x8d{left:483.932000pt;}
.x8e{left:484.921333pt;}
.x7a{left:489.493187pt;}
.x95{left:490.872000pt;}
.xb7{left:496.152495pt;}
.x5f{left:497.049333pt;}
.x60{left:504.022667pt;}
.x8f{left:505.333333pt;}
.x14{left:508.593333pt;}
.x15{left:516.713333pt;}
.xc8{left:517.688000pt;}
.xc0{left:521.804000pt;}
.xb8{left:527.819411pt;}
.x8a{left:538.546667pt;}
.xac{left:542.496000pt;}
.x16{left:553.645333pt;}
.x7b{left:555.145660pt;}
.x53{left:559.648000pt;}
.x17{left:561.764000pt;}
.xcb{left:571.638667pt;}
.xcc{left:590.522667pt;}
.xc1{left:591.464000pt;}
.xc2{left:610.089333pt;}
.xa9{left:613.276000pt;}
.x11{left:617.562667pt;}
.xaa{left:619.382667pt;}
.x7c{left:622.890443pt;}
.x12{left:624.940000pt;}
.xa5{left:626.404000pt;}
.xc5{left:632.904000pt;}
.xbc{left:698.182667pt;}
.x57{left:704.066667pt;}
.xce{left:707.685333pt;}
.x18{left:709.976000pt;}
.xbd{left:711.914667pt;}
.xca{left:719.218667pt;}
}


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