
/* 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_937b18b7cfee.woff")format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_97050e59546a.woff")format("woff");}.ff2{font-family:ff2;line-height:1.079590;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_580462e098a1.woff")format("woff");}.ff3{font-family:ff3;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_8c0fbace5634.woff")format("woff");}.ff4{font-family:ff4;line-height:1.079590;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_8d10f41ee6a9.woff")format("woff");}.ff5{font-family:ff5;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_025d8f3379ab.woff")format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_f9659c75e68c.woff")format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_3e953c7f03b7.woff")format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_9cfabe637ed4.woff")format("woff");}.ff9{font-family:ff9;line-height:0.821777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_8d10f41ee6a9.woff")format("woff");}.ffa{font-family:ffa;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_d9abbabb213b.woff")format("woff");}.ffb{font-family:ffb;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_1fb961821750.woff")format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_f9659c75e68c.woff")format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_b74e813488aa.woff")format("woff");}.ffe{font-family:ffe;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_ddda0d68f223.woff")format("woff");}.fff{font-family:fff;line-height:0.964000;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_8d10f41ee6a9.woff")format("woff");}.ff10{font-family:ff10;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_15aac351ca3b.woff")format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_c93b9af25e64.woff")format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_ab38a6ce3be2.woff")format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_8ac041126b01.woff")format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_2d238ca0c4a6.woff")format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_8d10f41ee6a9.woff")format("woff");}.ff16{font-family:ff16;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_816d9ebf1847.woff")format("woff");}.ff17{font-family:ff17;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_c5fbf912b648.woff")format("woff");}.ff18{font-family:ff18;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_ab38a6ce3be2.woff")format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_7378c9686f6d.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_2d238ca0c4a6.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_8d10f41ee6a9.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_1bd900ee727a.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_ded9c44aa17a.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_ab38a6ce3be2.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_8d10f41ee6a9.woff")format("woff");}.ff20{font-family:ff20;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_2ed5331f0727.woff")format("woff");}.ff21{font-family:ff21;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_13421694d6a8.woff")format("woff");}.ff22{font-family:ff22;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_ab38a6ce3be2.woff")format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_38b24208cd5b.woff")format("woff");}.ff24{font-family:ff24;line-height:0.893555;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_1ec098a650ac.woff")format("woff");}.ff25{font-family:ff25;line-height:0.893555;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_8d10f41ee6a9.woff")format("woff");}.ff26{font-family:ff26;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_08e3a44fbacd.woff")format("woff");}.ff27{font-family:ff27;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_f9fee637b414.woff")format("woff");}.ff28{font-family:ff28;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_ab38a6ce3be2.woff")format("woff");}.ff29{font-family:ff29;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_f6d4934604b8.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.481704px;}
.v1{vertical-align:27.971400px;}
.v2{vertical-align:30.231504px;}
.ls4a{letter-spacing:-1.429228px;}
.ls38{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.lsb{letter-spacing:0.050544px;}
.ls5{letter-spacing:0.054432px;}
.ls9{letter-spacing:0.062208px;}
.ls7{letter-spacing:0.066096px;}
.ls51{letter-spacing:0.159840px;}
.ls37{letter-spacing:0.213840px;}
.ls29{letter-spacing:0.218592px;}
.ls28{letter-spacing:0.232848px;}
.ls3{letter-spacing:0.233856px;}
.ls2a{letter-spacing:0.236160px;}
.ls23{letter-spacing:0.242208px;}
.lsc{letter-spacing:0.253872px;}
.ls1e{letter-spacing:0.265680px;}
.ls44{letter-spacing:0.271728px;}
.ls45{letter-spacing:0.277056px;}
.ls24{letter-spacing:0.277488px;}
.ls27{letter-spacing:0.278880px;}
.ls50{letter-spacing:0.293040px;}
.ls4d{letter-spacing:0.298368px;}
.ls52{letter-spacing:0.303696px;}
.lse{letter-spacing:0.309024px;}
.lsd{letter-spacing:0.314352px;}
.lsf{letter-spacing:0.319680px;}
.ls41{letter-spacing:0.324720px;}
.ls4f{letter-spacing:0.325008px;}
.ls47{letter-spacing:0.330336px;}
.ls4e{letter-spacing:0.335664px;}
.ls4c{letter-spacing:0.336528px;}
.ls43{letter-spacing:0.340992px;}
.ls22{letter-spacing:0.346320px;}
.ls2e{letter-spacing:0.348336px;}
.ls46{letter-spacing:0.351648px;}
.ls3d{letter-spacing:0.356976px;}
.ls40{letter-spacing:0.362304px;}
.ls42{letter-spacing:0.367632px;}
.ls2c{letter-spacing:0.371952px;}
.ls21{letter-spacing:0.372960px;}
.ls26{letter-spacing:0.377856px;}
.ls53{letter-spacing:0.378288px;}
.ls48{letter-spacing:0.383616px;}
.ls35{letter-spacing:0.383760px;}
.ls33{letter-spacing:0.389664px;}
.ls1c{letter-spacing:0.395568px;}
.ls36{letter-spacing:0.400320px;}
.ls1b{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.ls30{letter-spacing:0.407376px;}
.ls14{letter-spacing:0.413280px;}
.ls11{letter-spacing:0.419184px;}
.ls17{letter-spacing:0.425088px;}
.ls15{letter-spacing:0.430992px;}
.ls12{letter-spacing:0.436896px;}
.lsa{letter-spacing:0.442800px;}
.ls18{letter-spacing:0.448704px;}
.ls16{letter-spacing:0.454608px;}
.ls19{letter-spacing:0.460512px;}
.ls1d{letter-spacing:0.466416px;}
.ls6{letter-spacing:0.472320px;}
.ls2d{letter-spacing:0.478224px;}
.ls13{letter-spacing:0.484128px;}
.ls32{letter-spacing:0.490032px;}
.ls1a{letter-spacing:0.495936px;}
.ls34{letter-spacing:0.498960px;}
.ls31{letter-spacing:0.501840px;}
.ls20{letter-spacing:0.507744px;}
.ls8{letter-spacing:0.513648px;}
.ls2b{letter-spacing:0.519552px;}
.ls3f{letter-spacing:0.524880px;}
.ls1f{letter-spacing:0.531360px;}
.ls4{letter-spacing:0.537264px;}
.ls3b{letter-spacing:0.544320px;}
.ls39{letter-spacing:0.557280px;}
.ls3c{letter-spacing:0.563760px;}
.ls10{letter-spacing:0.590400px;}
.ls3e{letter-spacing:0.602640px;}
.ls3a{letter-spacing:0.609120px;}
.ls2f{letter-spacing:0.655344px;}
.ls49{letter-spacing:1.144727px;}
.ls4b{letter-spacing:1.179416px;}
.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;}
}
.ws4{word-spacing:-23.452416px;}
.ws9{word-spacing:-17.003520px;}
.wsa{word-spacing:-16.926768px;}
.wsbf{word-spacing:-16.680000px;}
.ws2{word-spacing:-12.835200px;}
.ws6{word-spacing:-10.874736px;}
.ws7{word-spacing:-10.870848px;}
.ws5{word-spacing:-10.863072px;}
.ws8{word-spacing:-10.859184px;}
.ws3{word-spacing:-10.008000px;}
.ws55{word-spacing:-8.406720px;}
.ws17f{word-spacing:-3.468870px;}
.ws17e{word-spacing:-2.294961px;}
.ws17d{word-spacing:-2.284715px;}
.ws17c{word-spacing:-0.520331px;}
.wsc0{word-spacing:-0.324000px;}
.ws11{word-spacing:-0.259776px;}
.wsf{word-spacing:-0.247968px;}
.wse4{word-spacing:-0.226800px;}
.ws109{word-spacing:-0.200736px;}
.ws10{word-spacing:-0.194832px;}
.wse3{word-spacing:-0.194400px;}
.wsa7{word-spacing:-0.187920px;}
.ws121{word-spacing:-0.183024px;}
.ws10f{word-spacing:-0.181440px;}
.ws130{word-spacing:-0.177120px;}
.wsf5{word-spacing:-0.171216px;}
.ws12{word-spacing:-0.165312px;}
.wse2{word-spacing:-0.159408px;}
.wsf6{word-spacing:-0.154512px;}
.ws22{word-spacing:-0.153504px;}
.wsb{word-spacing:-0.149184px;}
.ws15{word-spacing:-0.147600px;}
.ws17b{word-spacing:-0.143856px;}
.ws135{word-spacing:-0.138528px;}
.ws134{word-spacing:-0.135792px;}
.ws16c{word-spacing:-0.133200px;}
.wsee{word-spacing:-0.129888px;}
.wsa6{word-spacing:-0.129600px;}
.wsc{word-spacing:-0.127872px;}
.ws8f{word-spacing:-0.123984px;}
.ws16e{word-spacing:-0.122544px;}
.ws66{word-spacing:-0.118080px;}
.ws16d{word-spacing:-0.117216px;}
.ws7e{word-spacing:-0.112176px;}
.ws17a{word-spacing:-0.111888px;}
.wse{word-spacing:-0.108576px;}
.ws16f{word-spacing:-0.106560px;}
.wsbc{word-spacing:-0.106272px;}
.ws13{word-spacing:-0.101232px;}
.wsc3{word-spacing:-0.100368px;}
.ws57{word-spacing:-0.095040px;}
.wsa5{word-spacing:-0.094464px;}
.ws14{word-spacing:-0.090576px;}
.ws32{word-spacing:-0.088560px;}
.ws56{word-spacing:-0.085536px;}
.ws1d5{word-spacing:-0.085248px;}
.wsd{word-spacing:-0.083520px;}
.ws79{word-spacing:-0.082656px;}
.ws1ce{word-spacing:-0.079920px;}
.ws0{word-spacing:-0.072000px;}
.wsb7{word-spacing:-0.070848px;}
.ws58{word-spacing:-0.066528px;}
.ws179{word-spacing:-0.063936px;}
.ws176{word-spacing:-0.058608px;}
.ws1{word-spacing:0.000000px;}
.ws1b7{word-spacing:0.005328px;}
.ws23{word-spacing:0.007200px;}
.ws5d{word-spacing:0.165312px;}
.wsd2{word-spacing:0.188928px;}
.ws64{word-spacing:0.194832px;}
.ws7b{word-spacing:0.307008px;}
.wse9{word-spacing:0.336528px;}
.ws194{word-spacing:0.342432px;}
.wsc7{word-spacing:0.354240px;}
.ws20{word-spacing:0.395568px;}
.wsda{word-spacing:0.442800px;}
.ws86{word-spacing:0.460512px;}
.ws1ca{word-spacing:0.474192px;}
.ws12a{word-spacing:0.543168px;}
.ws13d{word-spacing:0.560880px;}
.wsdf{word-spacing:0.678960px;}
.ws31{word-spacing:0.720288px;}
.ws17{word-spacing:0.779328px;}
.ws1d4{word-spacing:0.783216px;}
.ws18{word-spacing:0.950544px;}
.ws13c{word-spacing:0.962352px;}
.ws1ac{word-spacing:0.975024px;}
.wsc4{word-spacing:0.991872px;}
.ws184{word-spacing:1.003680px;}
.ws1a6{word-spacing:1.006992px;}
.ws75{word-spacing:1.039104px;}
.ws19{word-spacing:1.050912px;}
.ws1b8{word-spacing:1.070928px;}
.wsde{word-spacing:1.080432px;}
.ws13a{word-spacing:1.092240px;}
.ws1c1{word-spacing:1.236096px;}
.wsa2{word-spacing:1.251648px;}
.ws97{word-spacing:1.304784px;}
.ws8d{word-spacing:1.334304px;}
.wsa3{word-spacing:1.381536px;}
.wsb9{word-spacing:1.399248px;}
.ws1cc{word-spacing:1.427904px;}
.ws1b1{word-spacing:1.449216px;}
.ws13f{word-spacing:1.511424px;}
.ws117{word-spacing:1.529136px;}
.ws165{word-spacing:1.540944px;}
.ws152{word-spacing:1.546848px;}
.wsfc{word-spacing:1.594080px;}
.wsb0{word-spacing:1.682640px;}
.ws6a{word-spacing:1.735776px;}
.ws98{word-spacing:1.747584px;}
.ws151{word-spacing:1.783008px;}
.wsb6{word-spacing:1.989648px;}
.ws175{word-spacing:2.104560px;}
.ws178{word-spacing:2.216448px;}
.ws15e{word-spacing:2.320272px;}
.ws82{word-spacing:2.355696px;}
.ws1a7{word-spacing:2.546784px;}
.ws54{word-spacing:2.574144px;}
.ws18c{word-spacing:2.580048px;}
.ws3f{word-spacing:2.644992px;}
.ws124{word-spacing:2.668608px;}
.ws140{word-spacing:2.674512px;}
.wse8{word-spacing:2.680416px;}
.wsa8{word-spacing:2.686320px;}
.ws96{word-spacing:2.774880px;}
.ws1d{word-spacing:2.910672px;}
.ws95{word-spacing:3.022848px;}
.wsb3{word-spacing:3.123216px;}
.ws111{word-spacing:3.146832px;}
.wse7{word-spacing:3.182256px;}
.wsd8{word-spacing:3.205872px;}
.wsd7{word-spacing:3.211776px;}
.ws1a0{word-spacing:3.223584px;}
.ws1a2{word-spacing:3.511152px;}
.ws5e{word-spacing:3.566016px;}
.ws147{word-spacing:3.595536px;}
.wsaf{word-spacing:3.607344px;}
.ws1f{word-spacing:3.613248px;}
.ws1e{word-spacing:3.642768px;}
.ws19d{word-spacing:3.654576px;}
.ws12d{word-spacing:3.672288px;}
.ws73{word-spacing:3.684096px;}
.ws197{word-spacing:3.695904px;}
.ws150{word-spacing:3.701808px;}
.ws1af{word-spacing:3.718944px;}
.ws153{word-spacing:3.760848px;}
.wsd4{word-spacing:3.790368px;}
.ws3c{word-spacing:3.949776px;}
.ws160{word-spacing:4.085568px;}
.wscd{word-spacing:4.091472px;}
.ws11b{word-spacing:4.256784px;}
.ws1b9{word-spacing:4.267728px;}
.ws16b{word-spacing:4.504752px;}
.ws164{word-spacing:4.557888px;}
.wsf8{word-spacing:4.616928px;}
.ws157{word-spacing:4.634640px;}
.ws146{word-spacing:4.876704px;}
.ws15c{word-spacing:4.918032px;}
.wsf1{word-spacing:5.142384px;}
.ws30{word-spacing:5.154192px;}
.ws72{word-spacing:5.378544px;}
.wsfa{word-spacing:5.455296px;}
.ws1ba{word-spacing:5.482512px;}
.ws1c{word-spacing:5.520240px;}
.ws181{word-spacing:5.573376px;}
.ws1d1{word-spacing:5.732928px;}
.wsc5{word-spacing:5.738688px;}
.ws1d0{word-spacing:5.775552px;}
.ws94{word-spacing:5.803632px;}
.ws129{word-spacing:6.051600px;}
.ws6e{word-spacing:6.081120px;}
.ws138{word-spacing:6.110640px;}
.ws168{word-spacing:6.134256px;}
.wsd3{word-spacing:6.358608px;}
.ws136{word-spacing:6.399936px;}
.wse0{word-spacing:6.458976px;}
.ws77{word-spacing:6.470784px;}
.ws156{word-spacing:6.535728px;}
.ws110{word-spacing:6.553440px;}
.ws118{word-spacing:6.559344px;}
.ws89{word-spacing:6.594768px;}
.ws34{word-spacing:6.624288px;}
.wsfe{word-spacing:6.659712px;}
.ws5c{word-spacing:6.724656px;}
.ws18e{word-spacing:7.031664px;}
.ws87{word-spacing:7.179264px;}
.ws141{word-spacing:7.350480px;}
.wsea{word-spacing:7.498080px;}
.wsef{word-spacing:7.539408px;}
.ws78{word-spacing:7.675200px;}
.ws12e{word-spacing:7.698816px;}
.wsaa{word-spacing:7.751952px;}
.ws196{word-spacing:7.769664px;}
.wsd6{word-spacing:7.805088px;}
.ws6f{word-spacing:7.887744px;}
.wsdd{word-spacing:7.893648px;}
.ws102{word-spacing:7.923168px;}
.ws2e{word-spacing:7.929072px;}
.ws122{word-spacing:8.082576px;}
.ws59{word-spacing:8.118000px;}
.ws159{word-spacing:8.177040px;}
.wscf{word-spacing:8.182944px;}
.ws189{word-spacing:8.188848px;}
.ws7c{word-spacing:8.218368px;}
.ws182{word-spacing:8.241984px;}
.ws1be{word-spacing:8.290368px;}
.ws5b{word-spacing:8.430912px;}
.ws26{word-spacing:8.590320px;}
.ws180{word-spacing:8.826480px;}
.ws6c{word-spacing:8.850096px;}
.ws84{word-spacing:8.938656px;}
.ws155{word-spacing:8.968176px;}
.ws1c3{word-spacing:9.057600px;}
.wsa9{word-spacing:9.092160px;}
.ws186{word-spacing:9.263376px;}
.ws1cf{word-spacing:9.670320px;}
.ws170{word-spacing:9.675648px;}
.wsdc{word-spacing:9.700272px;}
.ws14a{word-spacing:9.712080px;}
.ws4e{word-spacing:9.729792px;}
.wsa0{word-spacing:9.759312px;}
.ws6d{word-spacing:9.771120px;}
.ws38{word-spacing:9.830160px;}
.ws171{word-spacing:10.027296px;}
.ws1c9{word-spacing:10.037952px;}
.ws172{word-spacing:10.085904px;}
.wsae{word-spacing:10.213920px;}
.ws18f{word-spacing:10.290672px;}
.ws63{word-spacing:10.337904px;}
.ws19f{word-spacing:10.485504px;}
.wsec{word-spacing:10.503216px;}
.wseb{word-spacing:10.532736px;}
.ws39{word-spacing:10.591776px;}
.ws162{word-spacing:10.597680px;}
.ws13e{word-spacing:10.751184px;}
.ws114{word-spacing:10.833840px;}
.ws154{word-spacing:10.975536px;}
.ws144{word-spacing:10.999152px;}
.ws195{word-spacing:11.046384px;}
.ws1d3{word-spacing:11.050272px;}
.ws1a9{word-spacing:11.060928px;}
.ws9b{word-spacing:11.075904px;}
.ws14b{word-spacing:11.205792px;}
.ws6b{word-spacing:11.211696px;}
.ws145{word-spacing:11.288448px;}
.ws67{word-spacing:11.306160px;}
.ws68{word-spacing:11.347488px;}
.ws10a{word-spacing:11.583648px;}
.ws99{word-spacing:11.636784px;}
.ws18a{word-spacing:11.837520px;}
.ws18b{word-spacing:11.849328px;}
.ws123{word-spacing:11.996928px;}
.wsd1{word-spacing:12.097296px;}
.ws11c{word-spacing:12.132720px;}
.ws4b{word-spacing:12.374784px;}
.ws9c{word-spacing:12.410208px;}
.ws10c{word-spacing:12.599136px;}
.ws1ad{word-spacing:12.664656px;}
.ws3a{word-spacing:12.723120px;}
.wsf0{word-spacing:12.734928px;}
.ws13b{word-spacing:13.165920px;}
.wsb2{word-spacing:13.177728px;}
.ws2d{word-spacing:13.236768px;}
.ws11e{word-spacing:13.254480px;}
.ws33{word-spacing:13.272192px;}
.ws1a4{word-spacing:13.314672px;}
.ws1ab{word-spacing:13.458528px;}
.ws1c6{word-spacing:13.517136px;}
.ws1c5{word-spacing:13.522464px;}
.ws1a3{word-spacing:13.570416px;}
.ws191{word-spacing:13.632336px;}
.ws1b2{word-spacing:13.783536px;}
.ws15d{word-spacing:13.892112px;}
.ws7d{word-spacing:13.957056px;}
.ws15f{word-spacing:14.329008px;}
.ws143{word-spacing:14.535648px;}
.wsc2{word-spacing:14.641920px;}
.ws2c{word-spacing:14.706864px;}
.ws61{word-spacing:14.712768px;}
.ws14d{word-spacing:14.972544px;}
.wsb4{word-spacing:15.067008px;}
.ws69{word-spacing:15.072912px;}
.ws65{word-spacing:15.137856px;}
.ws4f{word-spacing:15.149664px;}
.ws1a{word-spacing:15.232320px;}
.ws12f{word-spacing:15.238224px;}
.ws149{word-spacing:15.409440px;}
.ws9e{word-spacing:15.740064px;}
.ws167{word-spacing:15.881760px;}
.wsfd{word-spacing:16.011648px;}
.wscc{word-spacing:16.070688px;}
.ws21{word-spacing:16.507584px;}
.ws11f{word-spacing:16.590240px;}
.ws80{word-spacing:16.596144px;}
.ws18d{word-spacing:16.855920px;}
.ws9f{word-spacing:17.103888px;}
.ws24{word-spacing:17.227872px;}
.ws15b{word-spacing:17.245584px;}
.ws16{word-spacing:17.399088px;}
.ws11a{word-spacing:17.523072px;}
.wse6{word-spacing:17.664768px;}
.ws132{word-spacing:17.930448px;}
.wsce{word-spacing:17.983584px;}
.ws51{word-spacing:18.078048px;}
.wsba{word-spacing:18.095760px;}
.wsfb{word-spacing:18.190224px;}
.ws2a{word-spacing:18.237456px;}
.ws8c{word-spacing:18.266976px;}
.ws71{word-spacing:18.379152px;}
.ws131{word-spacing:18.461808px;}
.ws192{word-spacing:18.485424px;}
.ws36{word-spacing:18.550368px;}
.wse5{word-spacing:18.568080px;}
.ws19c{word-spacing:18.597600px;}
.ws1a8{word-spacing:18.749232px;}
.ws127{word-spacing:18.810144px;}
.ws83{word-spacing:18.827856px;}
.ws106{word-spacing:18.969552px;}
.ws188{word-spacing:19.105344px;}
.ws185{word-spacing:19.270656px;}
.ws112{word-spacing:19.288368px;}
.ws4c{word-spacing:19.760688px;}
.ws60{word-spacing:19.855152px;}
.ws27{word-spacing:19.861056px;}
.ws41{word-spacing:19.914192px;}
.ws19e{word-spacing:19.955520px;}
.ws1aa{word-spacing:20.054592px;}
.ws10b{word-spacing:20.386512px;}
.ws166{word-spacing:20.421936px;}
.ws161{word-spacing:20.475072px;}
.ws1b4{word-spacing:20.566080px;}
.ws158{word-spacing:20.610864px;}
.ws91{word-spacing:20.864736px;}
.ws173{word-spacing:20.923056px;}
.wsab{word-spacing:20.947392px;}
.ws12b{word-spacing:21.018240px;}
.wse1{word-spacing:21.165840px;}
.wsff{word-spacing:21.266208px;}
.wsb8{word-spacing:21.590928px;}
.ws126{word-spacing:21.703104px;}
.ws163{word-spacing:21.886128px;}
.ws93{word-spacing:21.921552px;}
.wsed{word-spacing:22.441104px;}
.ws10d{word-spacing:22.553280px;}
.ws37{word-spacing:23.285376px;}
.ws76{word-spacing:23.592384px;}
.ws90{word-spacing:23.604192px;}
.wscb{word-spacing:23.751792px;}
.ws1b6{word-spacing:23.757552px;}
.wsc9{word-spacing:23.757696px;}
.ws85{word-spacing:23.834448px;}
.ws1c2{word-spacing:24.045264px;}
.ws108{word-spacing:24.058800px;}
.wsbd{word-spacing:24.094224px;}
.ws105{word-spacing:24.560640px;}
.wsd5{word-spacing:24.802704px;}
.ws1c7{word-spacing:24.908400px;}
.ws199{word-spacing:25.050672px;}
.ws81{word-spacing:25.210080px;}
.wsbe{word-spacing:25.399008px;}
.ws1bc{word-spacing:25.446528px;}
.wsca{word-spacing:25.623360px;}
.wsac{word-spacing:25.835904px;}
.ws104{word-spacing:26.018928px;}
.ws103{word-spacing:26.101584px;}
.ws49{word-spacing:26.379072px;}
.ws1bf{word-spacing:26.416224px;}
.ws74{word-spacing:26.461728px;}
.ws12c{word-spacing:27.223344px;}
.ws1c4{word-spacing:27.327312px;}
.ws14c{word-spacing:27.595296px;}
.ws35{word-spacing:27.654336px;}
.ws15a{word-spacing:27.707472px;}
.ws5a{word-spacing:27.719280px;}
.ws44{word-spacing:28.103040px;}
.ws169{word-spacing:28.167984px;}
.ws7f{word-spacing:28.185696px;}
.ws4a{word-spacing:28.463184px;}
.ws25{word-spacing:28.628496px;}
.ws133{word-spacing:28.805616px;}
.ws1bd{word-spacing:28.899072px;}
.ws1b{word-spacing:29.201184px;}
.wsad{word-spacing:29.714832px;}
.ws3b{word-spacing:29.856528px;}
.ws28{word-spacing:29.874240px;}
.ws11d{word-spacing:29.933280px;}
.ws3e{word-spacing:29.939184px;}
.ws1a1{word-spacing:29.968704px;}
.ws4d{word-spacing:30.381984px;}
.wsdb{word-spacing:30.411504px;}
.ws119{word-spacing:30.441024px;}
.ws40{word-spacing:31.243968px;}
.ws148{word-spacing:31.509648px;}
.ws142{word-spacing:31.615920px;}
.ws139{word-spacing:31.987872px;}
.ws193{word-spacing:32.005584px;}
.ws190{word-spacing:32.041008px;}
.ws42{word-spacing:32.176800px;}
.ws1cd{word-spacing:32.548752px;}
.ws3d{word-spacing:32.631408px;}
.ws198{word-spacing:33.097824px;}
.wsd0{word-spacing:33.103728px;}
.ws183{word-spacing:33.210000px;}
.ws100{word-spacing:33.274944px;}
.wsf2{word-spacing:33.829920px;}
.ws125{word-spacing:34.131024px;}
.ws70{word-spacing:34.686000px;}
.ws137{word-spacing:34.691904px;}
.ws1b3{word-spacing:35.452512px;}
.ws14f{word-spacing:35.471232px;}
.ws29{word-spacing:36.522144px;}
.ws2b{word-spacing:36.622512px;}
.ws174{word-spacing:36.645984px;}
.ws177{word-spacing:36.752544px;}
.ws1b5{word-spacing:36.832464px;}
.ws46{word-spacing:37.277856px;}
.ws1b0{word-spacing:37.684944px;}
.ws50{word-spacing:38.092608px;}
.ws9d{word-spacing:39.084480px;}
.wsb5{word-spacing:39.763440px;}
.wsf9{word-spacing:39.899232px;}
.ws10e{word-spacing:40.111200px;}
.wsbb{word-spacing:40.253472px;}
.ws2f{word-spacing:40.595904px;}
.wsc1{word-spacing:41.227632px;}
.wsa4{word-spacing:41.363424px;}
.ws19b{word-spacing:41.888880px;}
.ws14e{word-spacing:41.900688px;}
.ws19a{word-spacing:42.308064px;}
.ws120{word-spacing:43.754544px;}
.ws101{word-spacing:45.732384px;}
.ws1c8{word-spacing:45.804816px;}
.ws5f{word-spacing:46.434960px;}
.ws48{word-spacing:47.048976px;}
.ws62{word-spacing:47.143440px;}
.ws107{word-spacing:47.899152px;}
.wsd9{word-spacing:48.005424px;}
.wsb1{word-spacing:48.702096px;}
.ws8a{word-spacing:49.268880px;}
.ws16a{word-spacing:49.930128px;}
.ws88{word-spacing:51.246720px;}
.ws92{word-spacing:51.388416px;}
.ws9a{word-spacing:51.730848px;}
.ws187{word-spacing:55.042992px;}
.ws1d2{word-spacing:55.539072px;}
.ws8e{word-spacing:56.642976px;}
.wsf7{word-spacing:57.345552px;}
.ws113{word-spacing:57.457728px;}
.ws43{word-spacing:57.682080px;}
.ws128{word-spacing:58.449600px;}
.ws45{word-spacing:59.069520px;}
.ws115{word-spacing:61.029648px;}
.ws116{word-spacing:65.516688px;}
.ws53{word-spacing:66.473136px;}
.wsc6{word-spacing:68.303376px;}
.wsf3{word-spacing:79.987392px;}
.ws47{word-spacing:80.766720px;}
.ws7a{word-spacing:86.712048px;}
.wsa1{word-spacing:94.174704px;}
.ws52{word-spacing:96.376896px;}
.ws8b{word-spacing:103.349520px;}
.wsc8{word-spacing:118.900656px;}
.wsf4{word-spacing:121.734576px;}
.ws1bb{word-spacing:123.966576px;}
.ws1c0{word-spacing:160.324848px;}
.ws1cb{word-spacing:184.279536px;}
.ws1a5{word-spacing:209.331792px;}
.ws1ae{word-spacing:898.375392px;}
._a{margin-left:-28.410048px;}
._4{margin-left:-20.016000px;}
._8{margin-left:-17.978400px;}
._7{margin-left:-10.975200px;}
._2{margin-left:-9.307200px;}
._5{margin-left:-7.977600px;}
._0{margin-left:-6.239016px;}
._e{margin-left:-4.452000px;}
._6{margin-left:-3.077784px;}
._3{margin-left:-1.512000px;}
._9{width:1.139472px;}
._1e{width:2.699914px;}
._20{width:3.832952px;}
._1f{width:5.680791px;}
._1d{width:11.762470px;}
._1{width:12.835200px;}
._d{width:39.509568px;}
._c{width:45.466704px;}
._b{width:62.163216px;}
._23{width:104.757236px;}
._22{width:122.461597px;}
._1a{width:128.165040px;}
._13{width:137.313216px;}
._21{width:189.481760px;}
._19{width:194.210928px;}
._15{width:215.421696px;}
._1c{width:248.913504px;}
._14{width:251.486928px;}
._11{width:257.491584px;}
._17{width:263.485584px;}
._1b{width:287.184528px;}
._10{width:292.256784px;}
._f{width:578.583504px;}
._12{width:829.441728px;}
._16{width:859.491648px;}
._18{width:889.520256px;}
.fc4{color:transparent;}
.fc3{color:rgb(64,108,108);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc0{color:rgb(28,28,27);}
.fsa{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs1{font-size:48.972000px;}
.fsd{font-size:51.226800px;}
.fs6{font-size:53.280000px;}
.fs5{font-size:59.040000px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:64.800000px;}
.fsc{font-size:69.377400px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:42.520500px;}
.y18{bottom:56.746500px;}
.y17{bottom:76.906500px;}
.y70{bottom:77.266500px;}
.y1cc{bottom:93.826650px;}
.ye0{bottom:111.466650px;}
.y193{bottom:111.832950px;}
.y11e{bottom:116.524218px;}
.y145{bottom:117.593418px;}
.yff{bottom:119.760036px;}
.y20b{bottom:120.454836px;}
.y16a{bottom:121.206480px;}
.y1d4{bottom:122.266500px;}
.ya8{bottom:123.006480px;}
.y69{bottom:126.965694px;}
.y4e{bottom:126.979152px;}
.y6{bottom:127.151250px;}
.y192{bottom:129.111006px;}
.ydf{bottom:130.192512px;}
.y11d{bottom:133.803750px;}
.y144{bottom:134.872950px;}
.y20a{bottom:135.935340px;}
.yfe{bottom:137.039568px;}
.y169{bottom:138.484536px;}
.ya7{bottom:140.284536px;}
.y68{bottom:144.243750px;}
.y4d{bottom:144.258684px;}
.y191{bottom:146.390538px;}
.yde{bottom:147.472044px;}
.y1b8{bottom:149.638242px;}
.y11c{bottom:151.083282px;}
.y209{bottom:151.775484px;}
.y143{bottom:152.151006px;}
.yfd{bottom:154.319100px;}
.y168{bottom:155.762592px;}
.ya6{bottom:157.562592px;}
.y67{bottom:161.521806px;}
.y4c{bottom:161.538216px;}
.y190{bottom:163.668594px;}
.ydd{bottom:164.751576px;}
.y1b7{bottom:166.917774px;}
.y208{bottom:167.257320px;}
.y11b{bottom:168.362814px;}
.y142{bottom:169.430538px;}
.yfc{bottom:171.597156px;}
.y167{bottom:173.042124px;}
.ya5{bottom:174.842124px;}
.y66{bottom:178.799862px;}
.y4b{bottom:178.816272px;}
.y18f{bottom:180.946650px;}
.y207{bottom:182.737824px;}
.ydc{bottom:183.111540px;}
.y1b6{bottom:184.197306px;}
.y11a{bottom:185.642346px;}
.y141{bottom:186.708594px;}
.yfb{bottom:188.875212px;}
.y166{bottom:190.321656px;}
.ya4{bottom:192.121656px;}
.y65{bottom:195.719250px;}
.y4a{bottom:195.735660px;}
.y206{bottom:198.218328px;}
.y18e{bottom:198.586500px;}
.ydb{bottom:200.389596px;}
.y1b5{bottom:201.476838px;}
.y119{bottom:202.561734px;}
.y140{bottom:203.986650px;}
.yfa{bottom:206.153268px;}
.y165{bottom:207.239568px;}
.ya3{bottom:209.039568px;}
.y64{bottom:212.998782px;}
.y49{bottom:213.013716px;}
.y205{bottom:213.700164px;}
.yda{bottom:217.308984px;}
.y18d{bottom:218.746500px;}
.y1b4{bottom:218.756370px;}
.y118{bottom:219.839790px;}
.y13f{bottom:221.625930px;}
.yf9{bottom:223.431324px;}
.y164{bottom:224.519100px;}
.ya2{bottom:226.317624px;}
.y204{bottom:229.180668px;}
.y63{bottom:230.276838px;}
.y48{bottom:230.291772px;}
.y242{bottom:233.866500px;}
.yd9{bottom:235.668948px;}
.y18c{bottom:236.033022px;}
.y1b3{bottom:236.035902px;}
.y117{bottom:237.119322px;}
.y13e{bottom:240.346650px;}
.yf8{bottom:240.709380px;}
.y163{bottom:241.798632px;}
.ya1{bottom:243.595680px;}
.y203{bottom:244.661172px;}
.y62{bottom:247.556370px;}
.y47{bottom:247.571304px;}
.yd8{bottom:252.948480px;}
.y241{bottom:253.251240px;}
.y18b{bottom:253.311078px;}
.y1b2{bottom:253.315434px;}
.y116{bottom:254.397378px;}
.yf7{bottom:257.988912px;}
.y162{bottom:259.076688px;}
.y13d{bottom:259.106460px;}
.y202{bottom:260.143008px;}
.ya0{bottom:260.873736px;}
.y61{bottom:264.834426px;}
.y46{bottom:264.850836px;}
.y240{bottom:268.733076px;}
.y18a{bottom:270.590610px;}
.y1b1{bottom:270.594966px;}
.yd7{bottom:271.308444px;}
.y115{bottom:271.675434px;}
.yf6{bottom:275.268444px;}
.y201{bottom:275.983152px;}
.y161{bottom:276.356220px;}
.y13c{bottom:276.385992px;}
.y9f{bottom:278.153268px;}
.y60{bottom:282.112482px;}
.y45{bottom:282.128892px;}
.y23f{bottom:284.213580px;}
.y189{bottom:287.870142px;}
.y1b0{bottom:287.874498px;}
.yd6{bottom:288.586500px;}
.y114{bottom:288.954966px;}
.y200{bottom:291.463656px;}
.yf5{bottom:292.546500px;}
.y160{bottom:293.634276px;}
.y13b{bottom:293.665524px;}
.y9e{bottom:295.431324px;}
.y1d3{bottom:296.503579px;}
.y5f{bottom:299.390538px;}
.y44{bottom:299.408424px;}
.y23e{bottom:300.053724px;}
.y188{bottom:305.148198px;}
.y1af{bottom:305.154030px;}
.yd5{bottom:305.881188px;}
.y113{bottom:306.234498px;}
.y1ff{bottom:306.945492px;}
.yf4{bottom:309.845730px;}
.y15f{bottom:310.912332px;}
.y13a{bottom:310.943580px;}
.y9d{bottom:312.709380px;}
.y23d{bottom:315.534228px;}
.y5e{bottom:316.668594px;}
.y43{bottom:316.686480px;}
.y1fe{bottom:322.425996px;}
.y187{bottom:322.427730px;}
.y1ae{bottom:322.433562px;}
.yd4{bottom:323.159244px;}
.y112{bottom:323.514030px;}
.yf3{bottom:326.765118px;}
.y15e{bottom:328.190388px;}
.y139{bottom:328.221636px;}
.y9c{bottom:329.988912px;}
.y23c{bottom:331.016064px;}
.y5d{bottom:333.946650px;}
.y42{bottom:333.964536px;}
.y1fd{bottom:337.906500px;}
.y186{bottom:339.347118px;}
.y1ad{bottom:339.352950px;}
.yd3{bottom:340.437300px;}
.y111{bottom:340.793562px;}
.yf2{bottom:344.043174px;}
.y11{bottom:344.875500px;}
.y15d{bottom:345.468444px;}
.y138{bottom:345.499692px;}
.y23b{bottom:346.496568px;}
.y9b{bottom:347.268444px;}
.y41{bottom:351.242592px;}
.y5c{bottom:351.586500px;}
.y1fc{bottom:354.826650px;}
.y185{bottom:356.626650px;}
.y1ac{bottom:356.631006px;}
.yd2{bottom:357.715356px;}
.y110{bottom:358.073094px;}
.yf1{bottom:361.322706px;}
.y23a{bottom:361.978404px;}
.y15c{bottom:362.746500px;}
.y137{bottom:362.777748px;}
.y9a{bottom:364.546500px;}
.y10{bottom:366.475500px;}
.y40{bottom:368.522124px;}
.y5b{bottom:371.794416px;}
.y184{bottom:373.909308px;}
.y1ab{bottom:373.910538px;}
.y1fb{bottom:374.633196px;}
.yd1{bottom:374.634744px;}
.y10f{bottom:375.351150px;}
.y239{bottom:377.458908px;}
.yf0{bottom:378.602238px;}
.y15b{bottom:380.033490px;}
.y136{bottom:380.057280px;}
.y99{bottom:382.186500px;}
.y3f{bottom:385.801656px;}
.yf{bottom:388.075500px;}
.y5a{bottom:389.072472px;}
.y1aa{bottom:391.188594px;}
.y183{bottom:391.188840px;}
.y1fa{bottom:391.912728px;}
.yd0{bottom:391.914276px;}
.y10e{bottom:392.270538px;}
.y238{bottom:392.939412px;}
.yef{bottom:395.880294px;}
.y15a{bottom:396.952878px;}
.y135{bottom:396.976668px;}
.y98{bottom:402.352260px;}
.y3e{bottom:402.719568px;}
.y59{bottom:406.350528px;}
.y237{bottom:408.421248px;}
.y1a9{bottom:408.466650px;}
.y182{bottom:408.468372px;}
.y1f9{bottom:409.192260px;}
.ycf{bottom:409.192332px;}
.y10d{bottom:409.548594px;}
.yee{bottom:413.159826px;}
.y159{bottom:414.230934px;}
.y134{bottom:414.254724px;}
.y97{bottom:419.631792px;}
.y3d{bottom:419.999100px;}
.y58{bottom:423.628584px;}
.y236{bottom:424.261392px;}
.y181{bottom:425.747904px;}
.y1a8{bottom:425.748444px;}
.y1f8{bottom:426.471792px;}
.yce{bottom:426.471864px;}
.y10c{bottom:426.826650px;}
.yed{bottom:430.437882px;}
.y158{bottom:431.510466px;}
.y133{bottom:431.534256px;}
.y96{bottom:436.911324px;}
.y3c{bottom:437.277156px;}
.y235{bottom:439.741896px;}
.y57{bottom:440.906640px;}
.y1a7{bottom:443.026500px;}
.y180{bottom:443.027436px;}
.y1f7{bottom:443.751324px;}
.ycd{bottom:443.751396px;}
.y10b{bottom:444.466140px;}
.yec{bottom:447.715938px;}
.ye{bottom:447.979500px;}
.y157{bottom:448.789998px;}
.y132{bottom:448.812312px;}
.y95{bottom:454.189380px;}
.y3b{bottom:454.555212px;}
.y234{bottom:455.222400px;}
.y56{bottom:458.186172px;}
.y17f{bottom:460.306968px;}
.y1a6{bottom:460.331310px;}
.y1f6{bottom:461.029380px;}
.ycc{bottom:461.030928px;}
.y10a{bottom:463.546500px;}
.yeb{bottom:464.993994px;}
.y156{bottom:466.069530px;}
.y131{bottom:466.090368px;}
.yd{bottom:469.579500px;}
.y233{bottom:470.704236px;}
.y94{bottom:471.468912px;}
.y3a{bottom:471.833268px;}
.y55{bottom:475.465704px;}
.y17e{bottom:477.586500px;}
.y1a5{bottom:477.610842px;}
.y1f5{bottom:478.308912px;}
.ycb{bottom:478.310460px;}
.y109{bottom:482.266500px;}
.yea{bottom:482.273526px;}
.y155{bottom:483.349062px;}
.y130{bottom:483.369900px;}
.y232{bottom:486.184740px;}
.y93{bottom:488.748444px;}
.y39{bottom:489.111324px;}
.yc{bottom:491.179500px;}
.y54{bottom:492.743760px;}
.y17d{bottom:494.887488px;}
.y1a4{bottom:494.890374px;}
.y1f4{bottom:495.588444px;}
.yca{bottom:495.589992px;}
.ye9{bottom:499.553058px;}
.y108{bottom:499.565832px;}
.y154{bottom:500.628594px;}
.y12f{bottom:500.647956px;}
.y231{bottom:501.665244px;}
.y92{bottom:506.026500px;}
.y38{bottom:506.389380px;}
.y53{bottom:509.663148px;}
.y17c{bottom:512.167020px;}
.y1a3{bottom:512.169906px;}
.yb{bottom:512.779500px;}
.y1f3{bottom:512.866500px;}
.yc9{bottom:512.869524px;}
.ye8{bottom:516.470970px;}
.y107{bottom:516.485220px;}
.y230{bottom:517.147080px;}
.y153{bottom:517.906650px;}
.y12e{bottom:517.926012px;}
.y91{bottom:522.983904px;}
.y37{bottom:523.668912px;}
.y52{bottom:526.942680px;}
.y17b{bottom:529.446552px;}
.y1a2{bottom:529.449438px;}
.yc8{bottom:530.149056px;}
.y1f2{bottom:530.506650px;}
.y22f{bottom:532.627584px;}
.ye7{bottom:533.750502px;}
.y106{bottom:533.764752px;}
.ya{bottom:534.379500px;}
.y1d2{bottom:534.595500px;}
.y152{bottom:535.202526px;}
.y12d{bottom:535.205544px;}
.y90{bottom:540.261960px;}
.y36{bottom:540.948444px;}
.y51{bottom:544.222212px;}
.y17a{bottom:546.364464px;}
.y1a1{bottom:546.367350px;}
.yc7{bottom:547.428588px;}
.y22e{bottom:548.467728px;}
.y1f1{bottom:550.666650px;}
.ye6{bottom:551.030034px;}
.y105{bottom:551.044284px;}
.y151{bottom:552.480582px;}
.y12c{bottom:552.485076px;}
.y9{bottom:555.979500px;}
.y8f{bottom:557.540016px;}
.y35{bottom:558.226500px;}
.y50{bottom:561.501744px;}
.y179{bottom:563.643996px;}
.y1a0{bottom:563.645406px;}
.y22d{bottom:563.948232px;}
.yc6{bottom:564.346500px;}
.y1d1{bottom:566.236650px;}
.y1f0{bottom:567.979374px;}
.y150{bottom:569.758638px;}
.y12b{bottom:569.764608px;}
.y8e{bottom:574.819548px;}
.y34{bottom:575.866500px;}
.y8{bottom:577.579500px;}
.y4f{bottom:578.781276px;}
.y22c{bottom:579.430068px;}
.y120{bottom:580.188444px;}
.y178{bottom:580.922052px;}
.y19f{bottom:580.923462px;}
.yc5{bottom:581.986290px;}
.y1ef{bottom:585.257430px;}
.y14f{bottom:586.678026px;}
.y12a{bottom:586.682520px;}
.y8d{bottom:592.099080px;}
.y11f{bottom:592.786500px;}
.y22b{bottom:594.910572px;}
.y33{bottom:596.038812px;}
.y177{bottom:598.200108px;}
.y19e{bottom:598.201518px;}
.y7{bottom:599.179500px;}
.yc4{bottom:601.066650px;}
.y1ee{bottom:602.535486px;}
.y14e{bottom:603.957558px;}
.y129{bottom:603.960576px;}
.y8c{bottom:609.378612px;}
.y22a{bottom:610.391076px;}
.y32{bottom:613.318344px;}
.y1d0{bottom:614.746650px;}
.y176{bottom:615.478164px;}
.y19d{bottom:615.479574px;}
.y1ed{bottom:619.813542px;}
.yc3{bottom:620.146500px;}
.y14d{bottom:621.237090px;}
.y128{bottom:621.238632px;}
.y229{bottom:625.872912px;}
.y8b{bottom:626.656668px;}
.y31{bottom:630.597876px;}
.y175{bottom:632.756220px;}
.y19c{bottom:632.757630px;}
.y1ec{bottom:637.091598px;}
.y14c{bottom:638.516622px;}
.y127{bottom:638.516688px;}
.yc2{bottom:641.026500px;}
.y228{bottom:641.353416px;}
.y8a{bottom:643.936200px;}
.y30{bottom:647.877408px;}
.y174{bottom:650.034276px;}
.y19b{bottom:650.035686px;}
.y1eb{bottom:654.369654px;}
.y14b{bottom:655.796154px;}
.y126{bottom:655.796220px;}
.y227{bottom:656.835252px;}
.yc1{bottom:661.209900px;}
.y89{bottom:661.214256px;}
.y2f{bottom:665.156940px;}
.y173{bottom:667.312332px;}
.y19a{bottom:667.315218px;}
.y1ea{bottom:671.647710px;}
.y226{bottom:672.675396px;}
.y125{bottom:673.074276px;}
.y14a{bottom:673.075686px;}
.yc0{bottom:678.487956px;}
.y88{bottom:678.492312px;}
.y2e{bottom:682.436472px;}
.y172{bottom:684.590388px;}
.y199{bottom:684.594750px;}
.y225{bottom:688.155900px;}
.y1e9{bottom:688.567098px;}
.y5{bottom:689.592150px;}
.y124{bottom:690.352332px;}
.y149{bottom:690.355218px;}
.ybf{bottom:695.767488px;}
.y87{bottom:695.771844px;}
.y2d{bottom:699.716004px;}
.y171{bottom:701.868444px;}
.y198{bottom:701.872806px;}
.y224{bottom:703.636404px;}
.y1e8{bottom:705.845154px;}
.y123{bottom:707.630388px;}
.y148{bottom:707.634750px;}
.ybe{bottom:713.047020px;}
.y86{bottom:713.051376px;}
.y2c{bottom:716.633916px;}
.y223{bottom:719.118240px;}
.y170{bottom:719.146500px;}
.y197{bottom:719.152338px;}
.y4{bottom:719.592750px;}
.y1e7{bottom:723.123210px;}
.y122{bottom:724.908444px;}
.y147{bottom:724.914282px;}
.ybd{bottom:729.964932px;}
.y85{bottom:729.969288px;}
.y2b{bottom:733.913448px;}
.y222{bottom:734.598744px;}
.y16f{bottom:736.068912px;}
.y196{bottom:736.071726px;}
.y1e6{bottom:740.402742px;}
.y121{bottom:742.186500px;}
.y146{bottom:742.193814px;}
.ybc{bottom:747.244464px;}
.y84{bottom:747.248820px;}
.y221{bottom:750.079248px;}
.y2a{bottom:751.191504px;}
.y16e{bottom:753.348444px;}
.y195{bottom:753.351258px;}
.y1cb{bottom:755.145996px;}
.y1e5{bottom:757.682274px;}
.ybb{bottom:764.523996px;}
.y83{bottom:764.528352px;}
.y220{bottom:765.561084px;}
.y29{bottom:768.469560px;}
.y16d{bottom:770.626500px;}
.y16c{bottom:770.626752px;}
.y194{bottom:770.630790px;}
.y1e4{bottom:774.960330px;}
.y21f{bottom:781.041588px;}
.y3{bottom:781.284450px;}
.yba{bottom:781.802052px;}
.y82{bottom:781.807884px;}
.y16b{bottom:782.866500px;}
.y28{bottom:785.749092px;}
.y1cf{bottom:788.983026px;}
.y1e3{bottom:792.239862px;}
.y1ca{bottom:794.026500px;}
.y21e{bottom:796.522092px;}
.yb9{bottom:799.081584px;}
.y81{bottom:799.087416px;}
.y27{bottom:803.028624px;}
.y1e2{bottom:809.519394px;}
.y2{bottom:811.285050px;}
.y21d{bottom:812.362236px;}
.y1c9{bottom:816.346650px;}
.yb8{bottom:816.361116px;}
.y80{bottom:816.366948px;}
.y1e1{bottom:826.797450px;}
.y21c{bottom:827.844072px;}
.yb7{bottom:833.639172px;}
.y7f{bottom:833.645004px;}
.y26{bottom:838.306500px;}
.y1c8{bottom:839.026500px;}
.y1{bottom:841.285650px;}
.y21b{bottom:843.324576px;}
.y1e0{bottom:844.076982px;}
.yb6{bottom:850.917228px;}
.y7e{bottom:850.924536px;}
.y25{bottom:854.863512px;}
.y21a{bottom:858.805080px;}
.y1c7{bottom:861.346650px;}
.y1df{bottom:861.356514px;}
.yb5{bottom:868.196760px;}
.y7d{bottom:868.204068px;}
.y24{bottom:870.345348px;}
.y219{bottom:874.286916px;}
.y1c6{bottom:877.542828px;}
.y1c3{bottom:877.545492px;}
.y1de{bottom:878.274426px;}
.yb4{bottom:885.474816px;}
.y7c{bottom:885.483600px;}
.y23{bottom:885.825852px;}
.y218{bottom:889.767420px;}
.y1c5{bottom:893.023332px;}
.y1c2{bottom:893.025996px;}
.y1dd{bottom:895.552482px;}
.y22{bottom:901.306356px;}
.yb3{bottom:902.752872px;}
.y7b{bottom:902.761656px;}
.y217{bottom:905.247924px;}
.y1c4{bottom:908.503836px;}
.y1c1{bottom:908.506500px;}
.y1dc{bottom:912.830538px;}
.y21{bottom:917.146500px;}
.yb2{bottom:919.672260px;}
.y7a{bottom:919.681044px;}
.y216{bottom:920.729760px;}
.y1c0{bottom:924.705996px;}
.y1db{bottom:930.108594px;}
.y20{bottom:932.988624px;}
.y215{bottom:936.569904px;}
.yb1{bottom:936.951792px;}
.y79{bottom:936.960576px;}
.y1bf{bottom:940.186500px;}
.y1da{bottom:947.386650px;}
.y1f{bottom:950.266680px;}
.y214{bottom:952.050408px;}
.yb0{bottom:954.229848px;}
.y78{bottom:954.238632px;}
.y1be{bottom:962.506500px;}
.y1d9{bottom:965.386650px;}
.y213{bottom:967.530912px;}
.y1e{bottom:968.266212px;}
.yaf{bottom:971.509380px;}
.y77{bottom:971.518164px;}
.y212{bottom:983.012748px;}
.y1bd{bottom:985.186500px;}
.y1d8{bottom:985.906650px;}
.yae{bottom:988.788912px;}
.y76{bottom:988.796220px;}
.y1d{bottom:992.745924px;}
.y211{bottom:998.493252px;}
.ye5{bottom:1002.470538px;}
.yad{bottom:1006.068444px;}
.y1d7{bottom:1006.069848px;}
.y75{bottom:1006.074276px;}
.y104{bottom:1006.086228px;}
.y1bc{bottom:1007.506500px;}
.y210{bottom:1013.973756px;}
.y1c{bottom:1016.866500px;}
.ye4{bottom:1019.748594px;}
.yac{bottom:1023.346500px;}
.y1d6{bottom:1023.349380px;}
.y74{bottom:1023.352332px;}
.y103{bottom:1023.364284px;}
.y1ce{bottom:1026.336000px;}
.y20f{bottom:1029.454260px;}
.y1bb{bottom:1029.826500px;}
.ye3{bottom:1037.026650px;}
.y1b{bottom:1040.626650px;}
.y1d5{bottom:1040.628912px;}
.y73{bottom:1040.630388px;}
.y102{bottom:1040.642340px;}
.yab{bottom:1040.647488px;}
.y20e{bottom:1044.934764px;}
.y1ba{bottom:1052.146500px;}
.ye2{bottom:1054.666290px;}
.y72{bottom:1057.908444px;}
.y101{bottom:1057.920396px;}
.yaa{bottom:1057.927020px;}
.y1cd{bottom:1057.977000px;}
.y20d{bottom:1060.774908px;}
.y1a{bottom:1061.506650px;}
.ye1{bottom:1073.746650px;}
.y1b9{bottom:1074.106500px;}
.y71{bottom:1075.186500px;}
.y100{bottom:1075.198452px;}
.ya9{bottom:1075.206552px;}
.y20c{bottom:1076.255412px;}
.y19{bottom:1082.386650px;}
.y6f{bottom:1091.386266px;}
.y16{bottom:1106.866770px;}
.y6e{bottom:1110.106770px;}
.y6d{bottom:1123.426626px;}
.y15{bottom:1126.666950px;}
.y6c{bottom:1137.106446px;}
.y6b{bottom:1155.826524px;}
.y14{bottom:1160.866950px;}
.y6a{bottom:1175.986884px;}
.y13{bottom:1197.587100px;}
.h15{height:34.595859px;}
.h10{height:34.619062px;}
.h1a{height:34.718163px;}
.h7{height:35.640000px;}
.ha{height:38.789297px;}
.h18{height:38.815312px;}
.hb{height:39.350391px;}
.h8{height:42.982734px;}
.h11{height:43.011562px;}
.h13{height:43.748640px;}
.h14{height:45.448891px;}
.hf{height:45.462954px;}
.h19{height:47.019449px;}
.h12{height:47.176172px;}
.h16{height:47.980505px;}
.h17{height:47.987273px;}
.hc{height:47.988281px;}
.h6{height:52.148438px;}
.h5{height:52.417969px;}
.h9{height:53.568984px;}
.he{height:58.537207px;}
.hd{height:60.804844px;}
.h4{height:62.578125px;}
.h2{height:63.624355px;}
.h3{height:73.007812px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:100.887450px;}
.x10{left:107.368428px;}
.x5{left:108.447600px;}
.xe{left:109.527012px;}
.x16{left:116.923116px;}
.x15{left:123.500562px;}
.x14{left:125.739150px;}
.x8{left:131.095728px;}
.x3{left:161.575500px;}
.x7{left:204.891000px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.x11{left:316.886952px;}
.x6{left:374.247000px;}
.x4{left:433.944000px;}
.xa{left:446.922000px;}
.x18{left:465.013500px;}
.x9{left:473.487492px;}
.x17{left:481.961712px;}
.xb{left:500.488968px;}
.xc{left:527.489436px;}
.x12{left:550.526412px;}
.xf{left:759.810000px;}
.xd{left:762.552000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.761515pt;}
.v1{vertical-align:24.863467pt;}
.v2{vertical-align:26.872448pt;}
.ls4a{letter-spacing:-1.270425pt;}
.ls38{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.lsb{letter-spacing:0.044928pt;}
.ls5{letter-spacing:0.048384pt;}
.ls9{letter-spacing:0.055296pt;}
.ls7{letter-spacing:0.058752pt;}
.ls51{letter-spacing:0.142080pt;}
.ls37{letter-spacing:0.190080pt;}
.ls29{letter-spacing:0.194304pt;}
.ls28{letter-spacing:0.206976pt;}
.ls3{letter-spacing:0.207872pt;}
.ls2a{letter-spacing:0.209920pt;}
.ls23{letter-spacing:0.215296pt;}
.lsc{letter-spacing:0.225664pt;}
.ls1e{letter-spacing:0.236160pt;}
.ls44{letter-spacing:0.241536pt;}
.ls45{letter-spacing:0.246272pt;}
.ls24{letter-spacing:0.246656pt;}
.ls27{letter-spacing:0.247893pt;}
.ls50{letter-spacing:0.260480pt;}
.ls4d{letter-spacing:0.265216pt;}
.ls52{letter-spacing:0.269952pt;}
.lse{letter-spacing:0.274688pt;}
.lsd{letter-spacing:0.279424pt;}
.lsf{letter-spacing:0.284160pt;}
.ls41{letter-spacing:0.288640pt;}
.ls4f{letter-spacing:0.288896pt;}
.ls47{letter-spacing:0.293632pt;}
.ls4e{letter-spacing:0.298368pt;}
.ls4c{letter-spacing:0.299136pt;}
.ls43{letter-spacing:0.303104pt;}
.ls22{letter-spacing:0.307840pt;}
.ls2e{letter-spacing:0.309632pt;}
.ls46{letter-spacing:0.312576pt;}
.ls3d{letter-spacing:0.317312pt;}
.ls40{letter-spacing:0.322048pt;}
.ls42{letter-spacing:0.326784pt;}
.ls2c{letter-spacing:0.330624pt;}
.ls21{letter-spacing:0.331520pt;}
.ls26{letter-spacing:0.335872pt;}
.ls53{letter-spacing:0.336256pt;}
.ls48{letter-spacing:0.340992pt;}
.ls35{letter-spacing:0.341120pt;}
.ls33{letter-spacing:0.346368pt;}
.ls1c{letter-spacing:0.351616pt;}
.ls36{letter-spacing:0.355840pt;}
.ls1b{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.ls30{letter-spacing:0.362112pt;}
.ls14{letter-spacing:0.367360pt;}
.ls11{letter-spacing:0.372608pt;}
.ls17{letter-spacing:0.377856pt;}
.ls15{letter-spacing:0.383104pt;}
.ls12{letter-spacing:0.388352pt;}
.lsa{letter-spacing:0.393600pt;}
.ls18{letter-spacing:0.398848pt;}
.ls16{letter-spacing:0.404096pt;}
.ls19{letter-spacing:0.409344pt;}
.ls1d{letter-spacing:0.414592pt;}
.ls6{letter-spacing:0.419840pt;}
.ls2d{letter-spacing:0.425088pt;}
.ls13{letter-spacing:0.430336pt;}
.ls32{letter-spacing:0.435584pt;}
.ls1a{letter-spacing:0.440832pt;}
.ls34{letter-spacing:0.443520pt;}
.ls31{letter-spacing:0.446080pt;}
.ls20{letter-spacing:0.451328pt;}
.ls8{letter-spacing:0.456576pt;}
.ls2b{letter-spacing:0.461824pt;}
.ls3f{letter-spacing:0.466560pt;}
.ls1f{letter-spacing:0.472320pt;}
.ls4{letter-spacing:0.477568pt;}
.ls3b{letter-spacing:0.483840pt;}
.ls39{letter-spacing:0.495360pt;}
.ls3c{letter-spacing:0.501120pt;}
.ls10{letter-spacing:0.524800pt;}
.ls3e{letter-spacing:0.535680pt;}
.ls3a{letter-spacing:0.541440pt;}
.ls2f{letter-spacing:0.582528pt;}
.ls49{letter-spacing:1.017535pt;}
.ls4b{letter-spacing:1.048370pt;}
.ws4{word-spacing:-20.846592pt;}
.ws9{word-spacing:-15.114240pt;}
.wsa{word-spacing:-15.046016pt;}
.wsbf{word-spacing:-14.826667pt;}
.ws2{word-spacing:-11.409067pt;}
.ws6{word-spacing:-9.666432pt;}
.ws7{word-spacing:-9.662976pt;}
.ws5{word-spacing:-9.656064pt;}
.ws8{word-spacing:-9.652608pt;}
.ws3{word-spacing:-8.896000pt;}
.ws55{word-spacing:-7.472640pt;}
.ws17f{word-spacing:-3.083440pt;}
.ws17e{word-spacing:-2.039965pt;}
.ws17d{word-spacing:-2.030858pt;}
.ws17c{word-spacing:-0.462516pt;}
.wsc0{word-spacing:-0.288000pt;}
.ws11{word-spacing:-0.230912pt;}
.wsf{word-spacing:-0.220416pt;}
.wse4{word-spacing:-0.201600pt;}
.ws109{word-spacing:-0.178432pt;}
.ws10{word-spacing:-0.173184pt;}
.wse3{word-spacing:-0.172800pt;}
.wsa7{word-spacing:-0.167040pt;}
.ws121{word-spacing:-0.162688pt;}
.ws10f{word-spacing:-0.161280pt;}
.ws130{word-spacing:-0.157440pt;}
.wsf5{word-spacing:-0.152192pt;}
.ws12{word-spacing:-0.146944pt;}
.wse2{word-spacing:-0.141696pt;}
.wsf6{word-spacing:-0.137344pt;}
.ws22{word-spacing:-0.136448pt;}
.wsb{word-spacing:-0.132608pt;}
.ws15{word-spacing:-0.131200pt;}
.ws17b{word-spacing:-0.127872pt;}
.ws135{word-spacing:-0.123136pt;}
.ws134{word-spacing:-0.120704pt;}
.ws16c{word-spacing:-0.118400pt;}
.wsee{word-spacing:-0.115456pt;}
.wsa6{word-spacing:-0.115200pt;}
.wsc{word-spacing:-0.113664pt;}
.ws8f{word-spacing:-0.110208pt;}
.ws16e{word-spacing:-0.108928pt;}
.ws66{word-spacing:-0.104960pt;}
.ws16d{word-spacing:-0.104192pt;}
.ws7e{word-spacing:-0.099712pt;}
.ws17a{word-spacing:-0.099456pt;}
.wse{word-spacing:-0.096512pt;}
.ws16f{word-spacing:-0.094720pt;}
.wsbc{word-spacing:-0.094464pt;}
.ws13{word-spacing:-0.089984pt;}
.wsc3{word-spacing:-0.089216pt;}
.ws57{word-spacing:-0.084480pt;}
.wsa5{word-spacing:-0.083968pt;}
.ws14{word-spacing:-0.080512pt;}
.ws32{word-spacing:-0.078720pt;}
.ws56{word-spacing:-0.076032pt;}
.ws1d5{word-spacing:-0.075776pt;}
.wsd{word-spacing:-0.074240pt;}
.ws79{word-spacing:-0.073472pt;}
.ws1ce{word-spacing:-0.071040pt;}
.ws0{word-spacing:-0.064000pt;}
.wsb7{word-spacing:-0.062976pt;}
.ws58{word-spacing:-0.059136pt;}
.ws179{word-spacing:-0.056832pt;}
.ws176{word-spacing:-0.052096pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b7{word-spacing:0.004736pt;}
.ws23{word-spacing:0.006400pt;}
.ws5d{word-spacing:0.146944pt;}
.wsd2{word-spacing:0.167936pt;}
.ws64{word-spacing:0.173184pt;}
.ws7b{word-spacing:0.272896pt;}
.wse9{word-spacing:0.299136pt;}
.ws194{word-spacing:0.304384pt;}
.wsc7{word-spacing:0.314880pt;}
.ws20{word-spacing:0.351616pt;}
.wsda{word-spacing:0.393600pt;}
.ws86{word-spacing:0.409344pt;}
.ws1ca{word-spacing:0.421504pt;}
.ws12a{word-spacing:0.482816pt;}
.ws13d{word-spacing:0.498560pt;}
.wsdf{word-spacing:0.603520pt;}
.ws31{word-spacing:0.640256pt;}
.ws17{word-spacing:0.692736pt;}
.ws1d4{word-spacing:0.696192pt;}
.ws18{word-spacing:0.844928pt;}
.ws13c{word-spacing:0.855424pt;}
.ws1ac{word-spacing:0.866688pt;}
.wsc4{word-spacing:0.881664pt;}
.ws184{word-spacing:0.892160pt;}
.ws1a6{word-spacing:0.895104pt;}
.ws75{word-spacing:0.923648pt;}
.ws19{word-spacing:0.934144pt;}
.ws1b8{word-spacing:0.951936pt;}
.wsde{word-spacing:0.960384pt;}
.ws13a{word-spacing:0.970880pt;}
.ws1c1{word-spacing:1.098752pt;}
.wsa2{word-spacing:1.112576pt;}
.ws97{word-spacing:1.159808pt;}
.ws8d{word-spacing:1.186048pt;}
.wsa3{word-spacing:1.228032pt;}
.wsb9{word-spacing:1.243776pt;}
.ws1cc{word-spacing:1.269248pt;}
.ws1b1{word-spacing:1.288192pt;}
.ws13f{word-spacing:1.343488pt;}
.ws117{word-spacing:1.359232pt;}
.ws165{word-spacing:1.369728pt;}
.ws152{word-spacing:1.374976pt;}
.wsfc{word-spacing:1.416960pt;}
.wsb0{word-spacing:1.495680pt;}
.ws6a{word-spacing:1.542912pt;}
.ws98{word-spacing:1.553408pt;}
.ws151{word-spacing:1.584896pt;}
.wsb6{word-spacing:1.768576pt;}
.ws175{word-spacing:1.870720pt;}
.ws178{word-spacing:1.970176pt;}
.ws15e{word-spacing:2.062464pt;}
.ws82{word-spacing:2.093952pt;}
.ws1a7{word-spacing:2.263808pt;}
.ws54{word-spacing:2.288128pt;}
.ws18c{word-spacing:2.293376pt;}
.ws3f{word-spacing:2.351104pt;}
.ws124{word-spacing:2.372096pt;}
.ws140{word-spacing:2.377344pt;}
.wse8{word-spacing:2.382592pt;}
.wsa8{word-spacing:2.387840pt;}
.ws96{word-spacing:2.466560pt;}
.ws1d{word-spacing:2.587264pt;}
.ws95{word-spacing:2.686976pt;}
.wsb3{word-spacing:2.776192pt;}
.ws111{word-spacing:2.797184pt;}
.wse7{word-spacing:2.828672pt;}
.wsd8{word-spacing:2.849664pt;}
.wsd7{word-spacing:2.854912pt;}
.ws1a0{word-spacing:2.865408pt;}
.ws1a2{word-spacing:3.121024pt;}
.ws5e{word-spacing:3.169792pt;}
.ws147{word-spacing:3.196032pt;}
.wsaf{word-spacing:3.206528pt;}
.ws1f{word-spacing:3.211776pt;}
.ws1e{word-spacing:3.238016pt;}
.ws19d{word-spacing:3.248512pt;}
.ws12d{word-spacing:3.264256pt;}
.ws73{word-spacing:3.274752pt;}
.ws197{word-spacing:3.285248pt;}
.ws150{word-spacing:3.290496pt;}
.ws1af{word-spacing:3.305728pt;}
.ws153{word-spacing:3.342976pt;}
.wsd4{word-spacing:3.369216pt;}
.ws3c{word-spacing:3.510912pt;}
.ws160{word-spacing:3.631616pt;}
.wscd{word-spacing:3.636864pt;}
.ws11b{word-spacing:3.783808pt;}
.ws1b9{word-spacing:3.793536pt;}
.ws16b{word-spacing:4.004224pt;}
.ws164{word-spacing:4.051456pt;}
.wsf8{word-spacing:4.103936pt;}
.ws157{word-spacing:4.119680pt;}
.ws146{word-spacing:4.334848pt;}
.ws15c{word-spacing:4.371584pt;}
.wsf1{word-spacing:4.571008pt;}
.ws30{word-spacing:4.581504pt;}
.ws72{word-spacing:4.780928pt;}
.wsfa{word-spacing:4.849152pt;}
.ws1ba{word-spacing:4.873344pt;}
.ws1c{word-spacing:4.906880pt;}
.ws181{word-spacing:4.954112pt;}
.ws1d1{word-spacing:5.095936pt;}
.wsc5{word-spacing:5.101056pt;}
.ws1d0{word-spacing:5.133824pt;}
.ws94{word-spacing:5.158784pt;}
.ws129{word-spacing:5.379200pt;}
.ws6e{word-spacing:5.405440pt;}
.ws138{word-spacing:5.431680pt;}
.ws168{word-spacing:5.452672pt;}
.wsd3{word-spacing:5.652096pt;}
.ws136{word-spacing:5.688832pt;}
.wse0{word-spacing:5.741312pt;}
.ws77{word-spacing:5.751808pt;}
.ws156{word-spacing:5.809536pt;}
.ws110{word-spacing:5.825280pt;}
.ws118{word-spacing:5.830528pt;}
.ws89{word-spacing:5.862016pt;}
.ws34{word-spacing:5.888256pt;}
.wsfe{word-spacing:5.919744pt;}
.ws5c{word-spacing:5.977472pt;}
.ws18e{word-spacing:6.250368pt;}
.ws87{word-spacing:6.381568pt;}
.ws141{word-spacing:6.533760pt;}
.wsea{word-spacing:6.664960pt;}
.wsef{word-spacing:6.701696pt;}
.ws78{word-spacing:6.822400pt;}
.ws12e{word-spacing:6.843392pt;}
.wsaa{word-spacing:6.890624pt;}
.ws196{word-spacing:6.906368pt;}
.wsd6{word-spacing:6.937856pt;}
.ws6f{word-spacing:7.011328pt;}
.wsdd{word-spacing:7.016576pt;}
.ws102{word-spacing:7.042816pt;}
.ws2e{word-spacing:7.048064pt;}
.ws122{word-spacing:7.184512pt;}
.ws59{word-spacing:7.216000pt;}
.ws159{word-spacing:7.268480pt;}
.wscf{word-spacing:7.273728pt;}
.ws189{word-spacing:7.278976pt;}
.ws7c{word-spacing:7.305216pt;}
.ws182{word-spacing:7.326208pt;}
.ws1be{word-spacing:7.369216pt;}
.ws5b{word-spacing:7.494144pt;}
.ws26{word-spacing:7.635840pt;}
.ws180{word-spacing:7.845760pt;}
.ws6c{word-spacing:7.866752pt;}
.ws84{word-spacing:7.945472pt;}
.ws155{word-spacing:7.971712pt;}
.ws1c3{word-spacing:8.051200pt;}
.wsa9{word-spacing:8.081920pt;}
.ws186{word-spacing:8.234112pt;}
.ws1cf{word-spacing:8.595840pt;}
.ws170{word-spacing:8.600576pt;}
.wsdc{word-spacing:8.622464pt;}
.ws14a{word-spacing:8.632960pt;}
.ws4e{word-spacing:8.648704pt;}
.wsa0{word-spacing:8.674944pt;}
.ws6d{word-spacing:8.685440pt;}
.ws38{word-spacing:8.737920pt;}
.ws171{word-spacing:8.913152pt;}
.ws1c9{word-spacing:8.922624pt;}
.ws172{word-spacing:8.965248pt;}
.wsae{word-spacing:9.079040pt;}
.ws18f{word-spacing:9.147264pt;}
.ws63{word-spacing:9.189248pt;}
.ws19f{word-spacing:9.320448pt;}
.wsec{word-spacing:9.336192pt;}
.wseb{word-spacing:9.362432pt;}
.ws39{word-spacing:9.414912pt;}
.ws162{word-spacing:9.420160pt;}
.ws13e{word-spacing:9.556608pt;}
.ws114{word-spacing:9.630080pt;}
.ws154{word-spacing:9.756032pt;}
.ws144{word-spacing:9.777024pt;}
.ws195{word-spacing:9.819008pt;}
.ws1d3{word-spacing:9.822464pt;}
.ws1a9{word-spacing:9.831936pt;}
.ws9b{word-spacing:9.845248pt;}
.ws14b{word-spacing:9.960704pt;}
.ws6b{word-spacing:9.965952pt;}
.ws145{word-spacing:10.034176pt;}
.ws67{word-spacing:10.049920pt;}
.ws68{word-spacing:10.086656pt;}
.ws10a{word-spacing:10.296576pt;}
.ws99{word-spacing:10.343808pt;}
.ws18a{word-spacing:10.522240pt;}
.ws18b{word-spacing:10.532736pt;}
.ws123{word-spacing:10.663936pt;}
.wsd1{word-spacing:10.753152pt;}
.ws11c{word-spacing:10.784640pt;}
.ws4b{word-spacing:10.999808pt;}
.ws9c{word-spacing:11.031296pt;}
.ws10c{word-spacing:11.199232pt;}
.ws1ad{word-spacing:11.257472pt;}
.ws3a{word-spacing:11.309440pt;}
.wsf0{word-spacing:11.319936pt;}
.ws13b{word-spacing:11.703040pt;}
.wsb2{word-spacing:11.713536pt;}
.ws2d{word-spacing:11.766016pt;}
.ws11e{word-spacing:11.781760pt;}
.ws33{word-spacing:11.797504pt;}
.ws1a4{word-spacing:11.835264pt;}
.ws1ab{word-spacing:11.963136pt;}
.ws1c6{word-spacing:12.015232pt;}
.ws1c5{word-spacing:12.019968pt;}
.ws1a3{word-spacing:12.062592pt;}
.ws191{word-spacing:12.117632pt;}
.ws1b2{word-spacing:12.252032pt;}
.ws15d{word-spacing:12.348544pt;}
.ws7d{word-spacing:12.406272pt;}
.ws15f{word-spacing:12.736896pt;}
.ws143{word-spacing:12.920576pt;}
.wsc2{word-spacing:13.015040pt;}
.ws2c{word-spacing:13.072768pt;}
.ws61{word-spacing:13.078016pt;}
.ws14d{word-spacing:13.308928pt;}
.wsb4{word-spacing:13.392896pt;}
.ws69{word-spacing:13.398144pt;}
.ws65{word-spacing:13.455872pt;}
.ws4f{word-spacing:13.466368pt;}
.ws1a{word-spacing:13.539840pt;}
.ws12f{word-spacing:13.545088pt;}
.ws149{word-spacing:13.697280pt;}
.ws9e{word-spacing:13.991168pt;}
.ws167{word-spacing:14.117120pt;}
.wsfd{word-spacing:14.232576pt;}
.wscc{word-spacing:14.285056pt;}
.ws21{word-spacing:14.673408pt;}
.ws11f{word-spacing:14.746880pt;}
.ws80{word-spacing:14.752128pt;}
.ws18d{word-spacing:14.983040pt;}
.ws9f{word-spacing:15.203456pt;}
.ws24{word-spacing:15.313664pt;}
.ws15b{word-spacing:15.329408pt;}
.ws16{word-spacing:15.465856pt;}
.ws11a{word-spacing:15.576064pt;}
.wse6{word-spacing:15.702016pt;}
.ws132{word-spacing:15.938176pt;}
.wsce{word-spacing:15.985408pt;}
.ws51{word-spacing:16.069376pt;}
.wsba{word-spacing:16.085120pt;}
.wsfb{word-spacing:16.169088pt;}
.ws2a{word-spacing:16.211072pt;}
.ws8c{word-spacing:16.237312pt;}
.ws71{word-spacing:16.337024pt;}
.ws131{word-spacing:16.410496pt;}
.ws192{word-spacing:16.431488pt;}
.ws36{word-spacing:16.489216pt;}
.wse5{word-spacing:16.504960pt;}
.ws19c{word-spacing:16.531200pt;}
.ws1a8{word-spacing:16.665984pt;}
.ws127{word-spacing:16.720128pt;}
.ws83{word-spacing:16.735872pt;}
.ws106{word-spacing:16.861824pt;}
.ws188{word-spacing:16.982528pt;}
.ws185{word-spacing:17.129472pt;}
.ws112{word-spacing:17.145216pt;}
.ws4c{word-spacing:17.565056pt;}
.ws60{word-spacing:17.649024pt;}
.ws27{word-spacing:17.654272pt;}
.ws41{word-spacing:17.701504pt;}
.ws19e{word-spacing:17.738240pt;}
.ws1aa{word-spacing:17.826304pt;}
.ws10b{word-spacing:18.121344pt;}
.ws166{word-spacing:18.152832pt;}
.ws161{word-spacing:18.200064pt;}
.ws1b4{word-spacing:18.280960pt;}
.ws158{word-spacing:18.320768pt;}
.ws91{word-spacing:18.546432pt;}
.ws173{word-spacing:18.598272pt;}
.wsab{word-spacing:18.619904pt;}
.ws12b{word-spacing:18.682880pt;}
.wse1{word-spacing:18.814080pt;}
.wsff{word-spacing:18.903296pt;}
.wsb8{word-spacing:19.191936pt;}
.ws126{word-spacing:19.291648pt;}
.ws163{word-spacing:19.454336pt;}
.ws93{word-spacing:19.485824pt;}
.wsed{word-spacing:19.947648pt;}
.ws10d{word-spacing:20.047360pt;}
.ws37{word-spacing:20.698112pt;}
.ws76{word-spacing:20.971008pt;}
.ws90{word-spacing:20.981504pt;}
.wscb{word-spacing:21.112704pt;}
.ws1b6{word-spacing:21.117824pt;}
.wsc9{word-spacing:21.117952pt;}
.ws85{word-spacing:21.186176pt;}
.ws1c2{word-spacing:21.373568pt;}
.ws108{word-spacing:21.385600pt;}
.wsbd{word-spacing:21.417088pt;}
.ws105{word-spacing:21.831680pt;}
.wsd5{word-spacing:22.046848pt;}
.ws1c7{word-spacing:22.140800pt;}
.ws199{word-spacing:22.267264pt;}
.ws81{word-spacing:22.408960pt;}
.wsbe{word-spacing:22.576896pt;}
.ws1bc{word-spacing:22.619136pt;}
.wsca{word-spacing:22.776320pt;}
.wsac{word-spacing:22.965248pt;}
.ws104{word-spacing:23.127936pt;}
.ws103{word-spacing:23.201408pt;}
.ws49{word-spacing:23.448064pt;}
.ws1bf{word-spacing:23.481088pt;}
.ws74{word-spacing:23.521536pt;}
.ws12c{word-spacing:24.198528pt;}
.ws1c4{word-spacing:24.290944pt;}
.ws14c{word-spacing:24.529152pt;}
.ws35{word-spacing:24.581632pt;}
.ws15a{word-spacing:24.628864pt;}
.ws5a{word-spacing:24.639360pt;}
.ws44{word-spacing:24.980480pt;}
.ws169{word-spacing:25.038208pt;}
.ws7f{word-spacing:25.053952pt;}
.ws4a{word-spacing:25.300608pt;}
.ws25{word-spacing:25.447552pt;}
.ws133{word-spacing:25.604992pt;}
.ws1bd{word-spacing:25.688064pt;}
.ws1b{word-spacing:25.956608pt;}
.wsad{word-spacing:26.413184pt;}
.ws3b{word-spacing:26.539136pt;}
.ws28{word-spacing:26.554880pt;}
.ws11d{word-spacing:26.607360pt;}
.ws3e{word-spacing:26.612608pt;}
.ws1a1{word-spacing:26.638848pt;}
.ws4d{word-spacing:27.006208pt;}
.wsdb{word-spacing:27.032448pt;}
.ws119{word-spacing:27.058688pt;}
.ws40{word-spacing:27.772416pt;}
.ws148{word-spacing:28.008576pt;}
.ws142{word-spacing:28.103040pt;}
.ws139{word-spacing:28.433664pt;}
.ws193{word-spacing:28.449408pt;}
.ws190{word-spacing:28.480896pt;}
.ws42{word-spacing:28.601600pt;}
.ws1cd{word-spacing:28.932224pt;}
.ws3d{word-spacing:29.005696pt;}
.ws198{word-spacing:29.420288pt;}
.wsd0{word-spacing:29.425536pt;}
.ws183{word-spacing:29.520000pt;}
.ws100{word-spacing:29.577728pt;}
.wsf2{word-spacing:30.071040pt;}
.ws125{word-spacing:30.338688pt;}
.ws70{word-spacing:30.832000pt;}
.ws137{word-spacing:30.837248pt;}
.ws1b3{word-spacing:31.513344pt;}
.ws14f{word-spacing:31.529984pt;}
.ws29{word-spacing:32.464128pt;}
.ws2b{word-spacing:32.553344pt;}
.ws174{word-spacing:32.574208pt;}
.ws177{word-spacing:32.668928pt;}
.ws1b5{word-spacing:32.739968pt;}
.ws46{word-spacing:33.135872pt;}
.ws1b0{word-spacing:33.497728pt;}
.ws50{word-spacing:33.860096pt;}
.ws9d{word-spacing:34.741760pt;}
.wsb5{word-spacing:35.345280pt;}
.wsf9{word-spacing:35.465984pt;}
.ws10e{word-spacing:35.654400pt;}
.wsbb{word-spacing:35.780864pt;}
.ws2f{word-spacing:36.085248pt;}
.wsc1{word-spacing:36.646784pt;}
.wsa4{word-spacing:36.767488pt;}
.ws19b{word-spacing:37.234560pt;}
.ws14e{word-spacing:37.245056pt;}
.ws19a{word-spacing:37.607168pt;}
.ws120{word-spacing:38.892928pt;}
.ws101{word-spacing:40.651008pt;}
.ws1c8{word-spacing:40.715392pt;}
.ws5f{word-spacing:41.275520pt;}
.ws48{word-spacing:41.821312pt;}
.ws62{word-spacing:41.905280pt;}
.ws107{word-spacing:42.577024pt;}
.wsd9{word-spacing:42.671488pt;}
.wsb1{word-spacing:43.290752pt;}
.ws8a{word-spacing:43.794560pt;}
.ws16a{word-spacing:44.382336pt;}
.ws88{word-spacing:45.552640pt;}
.ws92{word-spacing:45.678592pt;}
.ws9a{word-spacing:45.982976pt;}
.ws187{word-spacing:48.927104pt;}
.ws1d2{word-spacing:49.368064pt;}
.ws8e{word-spacing:50.349312pt;}
.wsf7{word-spacing:50.973824pt;}
.ws113{word-spacing:51.073536pt;}
.ws43{word-spacing:51.272960pt;}
.ws128{word-spacing:51.955200pt;}
.ws45{word-spacing:52.506240pt;}
.ws115{word-spacing:54.248576pt;}
.ws116{word-spacing:58.237056pt;}
.ws53{word-spacing:59.087232pt;}
.wsc6{word-spacing:60.714112pt;}
.wsf3{word-spacing:71.099904pt;}
.ws47{word-spacing:71.792640pt;}
.ws7a{word-spacing:77.077376pt;}
.wsa1{word-spacing:83.710848pt;}
.ws52{word-spacing:85.668352pt;}
.ws8b{word-spacing:91.866240pt;}
.wsc8{word-spacing:105.689472pt;}
.wsf4{word-spacing:108.208512pt;}
.ws1bb{word-spacing:110.192512pt;}
.ws1c0{word-spacing:142.510976pt;}
.ws1cb{word-spacing:163.804032pt;}
.ws1a5{word-spacing:186.072704pt;}
.ws1ae{word-spacing:798.555904pt;}
._a{margin-left:-25.253376pt;}
._4{margin-left:-17.792000pt;}
._8{margin-left:-15.980800pt;}
._7{margin-left:-9.755733pt;}
._2{margin-left:-8.273067pt;}
._5{margin-left:-7.091200pt;}
._0{margin-left:-5.545792pt;}
._e{margin-left:-3.957333pt;}
._6{margin-left:-2.735808pt;}
._3{margin-left:-1.344000pt;}
._9{width:1.012864pt;}
._1e{width:2.399924pt;}
._20{width:3.407068pt;}
._1f{width:5.049592pt;}
._1d{width:10.455529pt;}
._1{width:11.409067pt;}
._d{width:35.119616pt;}
._c{width:40.414848pt;}
._b{width:55.256192pt;}
._23{width:93.117543pt;}
._22{width:108.854753pt;}
._1a{width:113.924480pt;}
._13{width:122.056192pt;}
._21{width:168.428231pt;}
._19{width:172.631936pt;}
._15{width:191.485952pt;}
._1c{width:221.256448pt;}
._14{width:223.543936pt;}
._11{width:228.881408pt;}
._17{width:234.209408pt;}
._1b{width:255.275136pt;}
._10{width:259.783808pt;}
._f{width:514.296448pt;}
._12{width:737.281536pt;}
._16{width:763.992576pt;}
._18{width:790.684672pt;}
.fsa{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs1{font-size:43.530667pt;}
.fsd{font-size:45.534933pt;}
.fs6{font-size:47.360000pt;}
.fs5{font-size:52.480000pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:57.600000pt;}
.fsc{font-size:61.668800pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:37.796000pt;}
.y18{bottom:50.441333pt;}
.y17{bottom:68.361333pt;}
.y70{bottom:68.681333pt;}
.y1cc{bottom:83.401467pt;}
.ye0{bottom:99.081467pt;}
.y193{bottom:99.407067pt;}
.y11e{bottom:103.577083pt;}
.y145{bottom:104.527483pt;}
.yff{bottom:106.453365pt;}
.y20b{bottom:107.070965pt;}
.y16a{bottom:107.739093pt;}
.y1d4{bottom:108.681333pt;}
.ya8{bottom:109.339093pt;}
.y69{bottom:112.858395pt;}
.y4e{bottom:112.870357pt;}
.y6{bottom:113.023333pt;}
.y192{bottom:114.765339pt;}
.ydf{bottom:115.726677pt;}
.y11d{bottom:118.936667pt;}
.y144{bottom:119.887067pt;}
.y20a{bottom:120.831413pt;}
.yfe{bottom:121.812949pt;}
.y169{bottom:123.097365pt;}
.ya7{bottom:124.697365pt;}
.y68{bottom:128.216667pt;}
.y4d{bottom:128.229941pt;}
.y191{bottom:130.124923pt;}
.yde{bottom:131.086261pt;}
.y1b8{bottom:133.011771pt;}
.y11c{bottom:134.296251pt;}
.y209{bottom:134.911541pt;}
.y143{bottom:135.245339pt;}
.yfd{bottom:137.172533pt;}
.y168{bottom:138.455637pt;}
.ya6{bottom:140.055637pt;}
.y67{bottom:143.574939pt;}
.y4c{bottom:143.589525pt;}
.y190{bottom:145.483195pt;}
.ydd{bottom:146.445845pt;}
.y1b7{bottom:148.371355pt;}
.y208{bottom:148.673173pt;}
.y11b{bottom:149.655835pt;}
.y142{bottom:150.604923pt;}
.yfc{bottom:152.530805pt;}
.y167{bottom:153.815221pt;}
.ya5{bottom:155.415221pt;}
.y66{bottom:158.933211pt;}
.y4b{bottom:158.947797pt;}
.y18f{bottom:160.841467pt;}
.y207{bottom:162.433621pt;}
.ydc{bottom:162.765813pt;}
.y1b6{bottom:163.730939pt;}
.y11a{bottom:165.015419pt;}
.y141{bottom:165.963195pt;}
.yfb{bottom:167.889077pt;}
.y166{bottom:169.174805pt;}
.ya4{bottom:170.774805pt;}
.y65{bottom:173.972667pt;}
.y4a{bottom:173.987253pt;}
.y206{bottom:176.194069pt;}
.y18e{bottom:176.521333pt;}
.ydb{bottom:178.124085pt;}
.y1b5{bottom:179.090523pt;}
.y119{bottom:180.054875pt;}
.y140{bottom:181.321467pt;}
.yfa{bottom:183.247349pt;}
.y165{bottom:184.212949pt;}
.ya3{bottom:185.812949pt;}
.y64{bottom:189.332251pt;}
.y49{bottom:189.345525pt;}
.y205{bottom:189.955701pt;}
.yda{bottom:193.163541pt;}
.y18d{bottom:194.441333pt;}
.y1b4{bottom:194.450107pt;}
.y118{bottom:195.413147pt;}
.y13f{bottom:197.000827pt;}
.yf9{bottom:198.605621pt;}
.y164{bottom:199.572533pt;}
.ya2{bottom:201.171221pt;}
.y204{bottom:203.716149pt;}
.y63{bottom:204.690523pt;}
.y48{bottom:204.703797pt;}
.y242{bottom:207.881333pt;}
.yd9{bottom:209.483509pt;}
.y18c{bottom:209.807131pt;}
.y1b3{bottom:209.809691pt;}
.y117{bottom:210.772731pt;}
.y13e{bottom:213.641467pt;}
.yf8{bottom:213.963893pt;}
.y163{bottom:214.932117pt;}
.ya1{bottom:216.529493pt;}
.y203{bottom:217.476597pt;}
.y62{bottom:220.050107pt;}
.y47{bottom:220.063381pt;}
.yd8{bottom:224.843093pt;}
.y241{bottom:225.112213pt;}
.y18b{bottom:225.165403pt;}
.y1b2{bottom:225.169275pt;}
.y116{bottom:226.131003pt;}
.yf7{bottom:229.323477pt;}
.y162{bottom:230.290389pt;}
.y13d{bottom:230.316853pt;}
.y202{bottom:231.238229pt;}
.ya0{bottom:231.887765pt;}
.y61{bottom:235.408379pt;}
.y46{bottom:235.422965pt;}
.y240{bottom:238.873845pt;}
.y18a{bottom:240.524987pt;}
.y1b1{bottom:240.528859pt;}
.yd7{bottom:241.163061pt;}
.y115{bottom:241.489275pt;}
.yf6{bottom:244.683061pt;}
.y201{bottom:245.318357pt;}
.y161{bottom:245.649973pt;}
.y13c{bottom:245.676437pt;}
.y9f{bottom:247.247349pt;}
.y60{bottom:250.766651pt;}
.y45{bottom:250.781237pt;}
.y23f{bottom:252.634293pt;}
.y189{bottom:255.884571pt;}
.y1b0{bottom:255.888443pt;}
.yd6{bottom:256.521333pt;}
.y114{bottom:256.848859pt;}
.y200{bottom:259.078805pt;}
.yf5{bottom:260.041333pt;}
.y160{bottom:261.008245pt;}
.y13b{bottom:261.036021pt;}
.y9e{bottom:262.605621pt;}
.y1d3{bottom:263.558737pt;}
.y5f{bottom:266.124923pt;}
.y44{bottom:266.140821pt;}
.y23e{bottom:266.714421pt;}
.y188{bottom:271.242843pt;}
.y1af{bottom:271.248027pt;}
.yd5{bottom:271.894389pt;}
.y113{bottom:272.208443pt;}
.y1ff{bottom:272.840437pt;}
.yf4{bottom:275.418427pt;}
.y15f{bottom:276.366517pt;}
.y13a{bottom:276.394293pt;}
.y9d{bottom:277.963893pt;}
.y23d{bottom:280.474869pt;}
.y5e{bottom:281.483195pt;}
.y43{bottom:281.499093pt;}
.y1fe{bottom:286.600885pt;}
.y187{bottom:286.602427pt;}
.y1ae{bottom:286.607611pt;}
.yd4{bottom:287.252661pt;}
.y112{bottom:287.568027pt;}
.yf3{bottom:290.457883pt;}
.y15e{bottom:291.724789pt;}
.y139{bottom:291.752565pt;}
.y9c{bottom:293.323477pt;}
.y23c{bottom:294.236501pt;}
.y5d{bottom:296.841467pt;}
.y42{bottom:296.857365pt;}
.y1fd{bottom:300.361333pt;}
.y186{bottom:301.641883pt;}
.y1ad{bottom:301.647067pt;}
.yd3{bottom:302.610933pt;}
.y111{bottom:302.927611pt;}
.yf2{bottom:305.816155pt;}
.y11{bottom:306.556000pt;}
.y15d{bottom:307.083061pt;}
.y138{bottom:307.110837pt;}
.y23b{bottom:307.996949pt;}
.y9b{bottom:308.683061pt;}
.y41{bottom:312.215637pt;}
.y5c{bottom:312.521333pt;}
.y1fc{bottom:315.401467pt;}
.y185{bottom:317.001467pt;}
.y1ac{bottom:317.005339pt;}
.yd2{bottom:317.969205pt;}
.y110{bottom:318.287195pt;}
.yf1{bottom:321.175739pt;}
.y23a{bottom:321.758581pt;}
.y15c{bottom:322.441333pt;}
.y137{bottom:322.469109pt;}
.y9a{bottom:324.041333pt;}
.y10{bottom:325.756000pt;}
.y40{bottom:327.575221pt;}
.y5b{bottom:330.483925pt;}
.y184{bottom:332.363829pt;}
.y1ab{bottom:332.364923pt;}
.y1fb{bottom:333.007285pt;}
.yd1{bottom:333.008661pt;}
.y10f{bottom:333.645467pt;}
.y239{bottom:335.519029pt;}
.yf0{bottom:336.535323pt;}
.y15b{bottom:337.807547pt;}
.y136{bottom:337.828693pt;}
.y99{bottom:339.721333pt;}
.y3f{bottom:342.934805pt;}
.yf{bottom:344.956000pt;}
.y5a{bottom:345.842197pt;}
.y1aa{bottom:347.723195pt;}
.y183{bottom:347.723413pt;}
.y1fa{bottom:348.366869pt;}
.yd0{bottom:348.368245pt;}
.y10e{bottom:348.684923pt;}
.y238{bottom:349.279477pt;}
.yef{bottom:351.893595pt;}
.y15a{bottom:352.847003pt;}
.y135{bottom:352.868149pt;}
.y98{bottom:357.646453pt;}
.y3e{bottom:357.972949pt;}
.y59{bottom:361.200469pt;}
.y237{bottom:363.041109pt;}
.y1a9{bottom:363.081467pt;}
.y182{bottom:363.082997pt;}
.y1f9{bottom:363.726453pt;}
.ycf{bottom:363.726517pt;}
.y10d{bottom:364.043195pt;}
.yee{bottom:367.253179pt;}
.y159{bottom:368.205275pt;}
.y134{bottom:368.226421pt;}
.y97{bottom:373.006037pt;}
.y3d{bottom:373.332533pt;}
.y58{bottom:376.558741pt;}
.y236{bottom:377.121237pt;}
.y181{bottom:378.442581pt;}
.y1a8{bottom:378.443061pt;}
.y1f8{bottom:379.086037pt;}
.yce{bottom:379.086101pt;}
.y10c{bottom:379.401467pt;}
.yed{bottom:382.611451pt;}
.y158{bottom:383.564859pt;}
.y133{bottom:383.586005pt;}
.y96{bottom:388.365621pt;}
.y3c{bottom:388.690805pt;}
.y235{bottom:390.881685pt;}
.y57{bottom:391.917013pt;}
.y1a7{bottom:393.801333pt;}
.y180{bottom:393.802165pt;}
.y1f7{bottom:394.445621pt;}
.ycd{bottom:394.445685pt;}
.y10b{bottom:395.081013pt;}
.yec{bottom:397.969723pt;}
.ye{bottom:398.204000pt;}
.y157{bottom:398.924443pt;}
.y132{bottom:398.944277pt;}
.y95{bottom:403.723893pt;}
.y3b{bottom:404.049077pt;}
.y234{bottom:404.642133pt;}
.y56{bottom:407.276597pt;}
.y17f{bottom:409.161749pt;}
.y1a6{bottom:409.183387pt;}
.y1f6{bottom:409.803893pt;}
.ycc{bottom:409.805269pt;}
.y10a{bottom:412.041333pt;}
.yeb{bottom:413.327995pt;}
.y156{bottom:414.284027pt;}
.y131{bottom:414.302549pt;}
.yd{bottom:417.404000pt;}
.y233{bottom:418.403765pt;}
.y94{bottom:419.083477pt;}
.y3a{bottom:419.407349pt;}
.y55{bottom:422.636181pt;}
.y17e{bottom:424.521333pt;}
.y1a5{bottom:424.542971pt;}
.y1f5{bottom:425.163477pt;}
.ycb{bottom:425.164853pt;}
.y109{bottom:428.681333pt;}
.yea{bottom:428.687579pt;}
.y155{bottom:429.643611pt;}
.y130{bottom:429.662133pt;}
.y232{bottom:432.164213pt;}
.y93{bottom:434.443061pt;}
.y39{bottom:434.765621pt;}
.yc{bottom:436.604000pt;}
.y54{bottom:437.994453pt;}
.y17d{bottom:439.899989pt;}
.y1a4{bottom:439.902555pt;}
.y1f4{bottom:440.523061pt;}
.yca{bottom:440.524437pt;}
.ye9{bottom:444.047163pt;}
.y108{bottom:444.058517pt;}
.y154{bottom:445.003195pt;}
.y12f{bottom:445.020405pt;}
.y231{bottom:445.924661pt;}
.y92{bottom:449.801333pt;}
.y38{bottom:450.123893pt;}
.y53{bottom:453.033909pt;}
.y17c{bottom:455.259573pt;}
.y1a3{bottom:455.262139pt;}
.yb{bottom:455.804000pt;}
.y1f3{bottom:455.881333pt;}
.yc9{bottom:455.884021pt;}
.ye8{bottom:459.085307pt;}
.y107{bottom:459.097973pt;}
.y230{bottom:459.686293pt;}
.y153{bottom:460.361467pt;}
.y12e{bottom:460.378677pt;}
.y91{bottom:464.874581pt;}
.y37{bottom:465.483477pt;}
.y52{bottom:468.393493pt;}
.y17b{bottom:470.619157pt;}
.y1a2{bottom:470.621723pt;}
.yc8{bottom:471.243605pt;}
.y1f2{bottom:471.561467pt;}
.y22f{bottom:473.446741pt;}
.ye7{bottom:474.444891pt;}
.y106{bottom:474.457557pt;}
.ya{bottom:475.004000pt;}
.y1d2{bottom:475.196000pt;}
.y152{bottom:475.735579pt;}
.y12d{bottom:475.738261pt;}
.y90{bottom:480.232853pt;}
.y36{bottom:480.843061pt;}
.y51{bottom:483.753077pt;}
.y17a{bottom:485.657301pt;}
.y1a1{bottom:485.659867pt;}
.yc7{bottom:486.603189pt;}
.y22e{bottom:487.526869pt;}
.y1f1{bottom:489.481467pt;}
.ye6{bottom:489.804475pt;}
.y105{bottom:489.817141pt;}
.y151{bottom:491.093851pt;}
.y12c{bottom:491.097845pt;}
.y9{bottom:494.204000pt;}
.y8f{bottom:495.591125pt;}
.y35{bottom:496.201333pt;}
.y50{bottom:499.112661pt;}
.y179{bottom:501.016885pt;}
.y1a0{bottom:501.018139pt;}
.y22d{bottom:501.287317pt;}
.yc6{bottom:501.641333pt;}
.y1d1{bottom:503.321467pt;}
.y1f0{bottom:504.870555pt;}
.y150{bottom:506.452123pt;}
.y12b{bottom:506.457429pt;}
.y8e{bottom:510.950709pt;}
.y34{bottom:511.881333pt;}
.y8{bottom:513.404000pt;}
.y4f{bottom:514.472245pt;}
.y22c{bottom:515.048949pt;}
.y120{bottom:515.723061pt;}
.y178{bottom:516.375157pt;}
.y19f{bottom:516.376411pt;}
.yc5{bottom:517.321147pt;}
.y1ef{bottom:520.228827pt;}
.y14f{bottom:521.491579pt;}
.y12a{bottom:521.495573pt;}
.y8d{bottom:526.310293pt;}
.y11f{bottom:526.921333pt;}
.y22b{bottom:528.809397pt;}
.y33{bottom:529.812277pt;}
.y177{bottom:531.733429pt;}
.y19e{bottom:531.734683pt;}
.y7{bottom:532.604000pt;}
.yc4{bottom:534.281467pt;}
.y1ee{bottom:535.587099pt;}
.y14e{bottom:536.851163pt;}
.y129{bottom:536.853845pt;}
.y8c{bottom:541.669877pt;}
.y22a{bottom:542.569845pt;}
.y32{bottom:545.171861pt;}
.y1d0{bottom:546.441467pt;}
.y176{bottom:547.091701pt;}
.y19d{bottom:547.092955pt;}
.y1ed{bottom:550.945371pt;}
.yc3{bottom:551.241333pt;}
.y14d{bottom:552.210747pt;}
.y128{bottom:552.212117pt;}
.y229{bottom:556.331477pt;}
.y8b{bottom:557.028149pt;}
.y31{bottom:560.531445pt;}
.y175{bottom:562.449973pt;}
.y19c{bottom:562.451227pt;}
.y1ec{bottom:566.303643pt;}
.y14c{bottom:567.570331pt;}
.y127{bottom:567.570389pt;}
.yc2{bottom:569.801333pt;}
.y228{bottom:570.091925pt;}
.y8a{bottom:572.387733pt;}
.y30{bottom:575.891029pt;}
.y174{bottom:577.808245pt;}
.y19b{bottom:577.809499pt;}
.y1eb{bottom:581.661915pt;}
.y14b{bottom:582.929915pt;}
.y126{bottom:582.929973pt;}
.y227{bottom:583.853557pt;}
.yc1{bottom:587.742133pt;}
.y89{bottom:587.746005pt;}
.y2f{bottom:591.250613pt;}
.y173{bottom:593.166517pt;}
.y19a{bottom:593.169083pt;}
.y1ea{bottom:597.020187pt;}
.y226{bottom:597.933685pt;}
.y125{bottom:598.288245pt;}
.y14a{bottom:598.289499pt;}
.yc0{bottom:603.100405pt;}
.y88{bottom:603.104277pt;}
.y2e{bottom:606.610197pt;}
.y172{bottom:608.524789pt;}
.y199{bottom:608.528667pt;}
.y225{bottom:611.694133pt;}
.y1e9{bottom:612.059643pt;}
.y5{bottom:612.970800pt;}
.y124{bottom:613.646517pt;}
.y149{bottom:613.649083pt;}
.ybf{bottom:618.459989pt;}
.y87{bottom:618.463861pt;}
.y2d{bottom:621.969781pt;}
.y171{bottom:623.883061pt;}
.y198{bottom:623.886939pt;}
.y224{bottom:625.454581pt;}
.y1e8{bottom:627.417915pt;}
.y123{bottom:629.004789pt;}
.y148{bottom:629.008667pt;}
.ybe{bottom:633.819573pt;}
.y86{bottom:633.823445pt;}
.y2c{bottom:637.007925pt;}
.y223{bottom:639.216213pt;}
.y170{bottom:639.241333pt;}
.y197{bottom:639.246523pt;}
.y4{bottom:639.638000pt;}
.y1e7{bottom:642.776187pt;}
.y122{bottom:644.363061pt;}
.y147{bottom:644.368251pt;}
.ybd{bottom:648.857717pt;}
.y85{bottom:648.861589pt;}
.y2b{bottom:652.367509pt;}
.y222{bottom:652.976661pt;}
.y16f{bottom:654.283477pt;}
.y196{bottom:654.285979pt;}
.y1e6{bottom:658.135771pt;}
.y121{bottom:659.721333pt;}
.y146{bottom:659.727835pt;}
.ybc{bottom:664.217301pt;}
.y84{bottom:664.221173pt;}
.y221{bottom:666.737109pt;}
.y2a{bottom:667.725781pt;}
.y16e{bottom:669.643061pt;}
.y195{bottom:669.645563pt;}
.y1cb{bottom:671.240885pt;}
.y1e5{bottom:673.495355pt;}
.ybb{bottom:679.576885pt;}
.y83{bottom:679.580757pt;}
.y220{bottom:680.498741pt;}
.y29{bottom:683.084053pt;}
.y16d{bottom:685.001333pt;}
.y16c{bottom:685.001557pt;}
.y194{bottom:685.005147pt;}
.y1e4{bottom:688.853627pt;}
.y21f{bottom:694.259189pt;}
.y3{bottom:694.475067pt;}
.yba{bottom:694.935157pt;}
.y82{bottom:694.940341pt;}
.y16b{bottom:695.881333pt;}
.y28{bottom:698.443637pt;}
.y1cf{bottom:701.318245pt;}
.y1e3{bottom:704.213211pt;}
.y1ca{bottom:705.801333pt;}
.y21e{bottom:708.019637pt;}
.yb9{bottom:710.294741pt;}
.y81{bottom:710.299925pt;}
.y27{bottom:713.803221pt;}
.y1e2{bottom:719.572795pt;}
.y2{bottom:721.142267pt;}
.y21d{bottom:722.099765pt;}
.y1c9{bottom:725.641467pt;}
.yb8{bottom:725.654325pt;}
.y80{bottom:725.659509pt;}
.y1e1{bottom:734.931067pt;}
.y21c{bottom:735.861397pt;}
.yb7{bottom:741.012597pt;}
.y7f{bottom:741.017781pt;}
.y26{bottom:745.161333pt;}
.y1c8{bottom:745.801333pt;}
.y1{bottom:747.809467pt;}
.y21b{bottom:749.621845pt;}
.y1e0{bottom:750.290651pt;}
.yb6{bottom:756.370869pt;}
.y7e{bottom:756.377365pt;}
.y25{bottom:759.878677pt;}
.y21a{bottom:763.382293pt;}
.y1c7{bottom:765.641467pt;}
.y1df{bottom:765.650235pt;}
.yb5{bottom:771.730453pt;}
.y7d{bottom:771.736949pt;}
.y24{bottom:773.640309pt;}
.y219{bottom:777.143925pt;}
.y1c6{bottom:780.038069pt;}
.y1c3{bottom:780.040437pt;}
.y1de{bottom:780.688379pt;}
.yb4{bottom:787.088725pt;}
.y7c{bottom:787.096533pt;}
.y23{bottom:787.400757pt;}
.y218{bottom:790.904373pt;}
.y1c5{bottom:793.798517pt;}
.y1c2{bottom:793.800885pt;}
.y1dd{bottom:796.046651pt;}
.y22{bottom:801.161205pt;}
.yb3{bottom:802.446997pt;}
.y7b{bottom:802.454805pt;}
.y217{bottom:804.664821pt;}
.y1c4{bottom:807.558965pt;}
.y1c1{bottom:807.561333pt;}
.y1dc{bottom:811.404923pt;}
.y21{bottom:815.241333pt;}
.yb2{bottom:817.486453pt;}
.y7a{bottom:817.494261pt;}
.y216{bottom:818.426453pt;}
.y1c0{bottom:821.960885pt;}
.y1db{bottom:826.763195pt;}
.y20{bottom:829.323221pt;}
.y215{bottom:832.506581pt;}
.yb1{bottom:832.846037pt;}
.y79{bottom:832.853845pt;}
.y1bf{bottom:835.721333pt;}
.y1da{bottom:842.121467pt;}
.y1f{bottom:844.681493pt;}
.y214{bottom:846.267029pt;}
.yb0{bottom:848.204309pt;}
.y78{bottom:848.212117pt;}
.y1be{bottom:855.561333pt;}
.y1d9{bottom:858.121467pt;}
.y213{bottom:860.027477pt;}
.y1e{bottom:860.681077pt;}
.yaf{bottom:863.563893pt;}
.y77{bottom:863.571701pt;}
.y212{bottom:873.789109pt;}
.y1bd{bottom:875.721333pt;}
.y1d8{bottom:876.361467pt;}
.yae{bottom:878.923477pt;}
.y76{bottom:878.929973pt;}
.y1d{bottom:882.440821pt;}
.y211{bottom:887.549557pt;}
.ye5{bottom:891.084923pt;}
.yad{bottom:894.283061pt;}
.y1d7{bottom:894.284309pt;}
.y75{bottom:894.288245pt;}
.y104{bottom:894.298869pt;}
.y1bc{bottom:895.561333pt;}
.y210{bottom:901.310005pt;}
.y1c{bottom:903.881333pt;}
.ye4{bottom:906.443195pt;}
.yac{bottom:909.641333pt;}
.y1d6{bottom:909.643893pt;}
.y74{bottom:909.646517pt;}
.y103{bottom:909.657141pt;}
.y1ce{bottom:912.298667pt;}
.y20f{bottom:915.070453pt;}
.y1bb{bottom:915.401333pt;}
.ye3{bottom:921.801467pt;}
.y1b{bottom:925.001467pt;}
.y1d5{bottom:925.003477pt;}
.y73{bottom:925.004789pt;}
.y102{bottom:925.015413pt;}
.yab{bottom:925.019989pt;}
.y20e{bottom:928.830901pt;}
.y1ba{bottom:935.241333pt;}
.ye2{bottom:937.481147pt;}
.y72{bottom:940.363061pt;}
.y101{bottom:940.373685pt;}
.yaa{bottom:940.379573pt;}
.y1cd{bottom:940.424000pt;}
.y20d{bottom:942.911029pt;}
.y1a{bottom:943.561467pt;}
.ye1{bottom:954.441467pt;}
.y1b9{bottom:954.761333pt;}
.y71{bottom:955.721333pt;}
.y100{bottom:955.731957pt;}
.ya9{bottom:955.739157pt;}
.y20c{bottom:956.671477pt;}
.y19{bottom:962.121467pt;}
.y6f{bottom:970.121125pt;}
.y16{bottom:983.881573pt;}
.y6e{bottom:986.761573pt;}
.y6d{bottom:998.601445pt;}
.y15{bottom:1001.481733pt;}
.y6c{bottom:1010.761285pt;}
.y6b{bottom:1027.401355pt;}
.y14{bottom:1031.881733pt;}
.y6a{bottom:1045.321675pt;}
.y13{bottom:1064.521867pt;}
.h15{height:30.751875pt;}
.h10{height:30.772500pt;}
.h1a{height:30.860590pt;}
.h7{height:31.680000pt;}
.ha{height:34.479375pt;}
.h18{height:34.502500pt;}
.hb{height:34.978125pt;}
.h8{height:38.206875pt;}
.h11{height:38.232500pt;}
.h13{height:38.887680pt;}
.h14{height:40.399015pt;}
.hf{height:40.411515pt;}
.h19{height:41.795066pt;}
.h12{height:41.934375pt;}
.h16{height:42.649338pt;}
.h17{height:42.655354pt;}
.hc{height:42.656250pt;}
.h6{height:46.354167pt;}
.h5{height:46.593750pt;}
.h9{height:47.616875pt;}
.he{height:52.033073pt;}
.hd{height:54.048750pt;}
.h4{height:55.625000pt;}
.h2{height:56.554982pt;}
.h3{height:64.895833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:89.677733pt;}
.x10{left:95.438603pt;}
.x5{left:96.397867pt;}
.xe{left:97.357344pt;}
.x16{left:103.931659pt;}
.x15{left:109.778277pt;}
.x14{left:111.768133pt;}
.x8{left:116.529536pt;}
.x3{left:143.622667pt;}
.x7{left:182.125333pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.x11{left:281.677291pt;}
.x6{left:332.664000pt;}
.x4{left:385.728000pt;}
.xa{left:397.264000pt;}
.x18{left:413.345333pt;}
.x9{left:420.877771pt;}
.x17{left:428.410411pt;}
.xb{left:444.879083pt;}
.xc{left:468.879499pt;}
.x12{left:489.356811pt;}
.xf{left:675.386667pt;}
.xd{left:677.824000pt;}
}


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