
/* 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_996f6c1ebb38.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_59c43c9f9ab4.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_6e61403b5632.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_6d32255ac7dd.woff")format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_452b8a7ed21c.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_4b59fd8db82b.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_d6fca7396bf0.woff")format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_5080d9704405.woff")format("woff");}.ffa{font-family:ffa;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_8d10f41ee6a9.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_0c65ac4b6723.woff")format("woff");}.ffc{font-family:ffc;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:ffd;src:url("fonts/font_0012_6a6e0e45d52c.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_dca864616392.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_f3351a168dfc.woff")format("woff");}.fff{font-family:fff;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: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_281fcabdf106.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_38fbc11f130c.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_dca864616392.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_8d10f41ee6a9.woff")format("woff");}.ff14{font-family:ff14;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:ff15;src:url("fonts/font_0020_4abe6a056d80.woff")format("woff");}.ff15{font-family:ff15;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:ff16;src:url("fonts/font_0021_c6e257bfe1d3.woff")format("woff");}.ff16{font-family:ff16;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:ff17;src:url("fonts/font_0022_2bc35f1055b6.woff")format("woff");}.ff17{font-family:ff17;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:ff18;src:url("fonts/font_0023_ef8b04b7c56f.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_8d10f41ee6a9.woff")format("woff");}.ff19{font-family:ff19;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:ff1a;src:url("fonts/font_0025_f10ea6d90791.woff")format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url("fonts/font_0026_f375da6d861c.woff")format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url("fonts/font_0027_2bc35f1055b6.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_1077fb868fbc.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.914551;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_8d10f41ee6a9.woff")format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url("fonts/font_0030_7e3a53189e95.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.070312;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_16fbe7e0817a.woff")format("woff");}.ff20{font-family:ff20;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:ff21;src:url("fonts/font_0032_ef510c21aeeb.woff")format("woff");}.ff21{font-family:ff21;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.481992px;}
.v1{vertical-align:27.971400px;}
.ls49{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls20{letter-spacing:0.223344px;}
.ls33{letter-spacing:0.228096px;}
.ls32{letter-spacing:0.232848px;}
.ls19{letter-spacing:0.250560px;}
.ls3{letter-spacing:0.258912px;}
.ls43{letter-spacing:0.271584px;}
.ls1f{letter-spacing:0.278256px;}
.ls2e{letter-spacing:0.287712px;}
.ls47{letter-spacing:0.293040px;}
.ls2c{letter-spacing:0.303696px;}
.ls45{letter-spacing:0.309024px;}
.ls2b{letter-spacing:0.314352px;}
.ls29{letter-spacing:0.319680px;}
.ls30{letter-spacing:0.325008px;}
.ls2d{letter-spacing:0.330336px;}
.ls1e{letter-spacing:0.335664px;}
.ls46{letter-spacing:0.340992px;}
.ls18{letter-spacing:0.346320px;}
.ls2f{letter-spacing:0.351648px;}
.ls42{letter-spacing:0.354240px;}
.ls28{letter-spacing:0.356976px;}
.ls44{letter-spacing:0.360144px;}
.ls34{letter-spacing:0.362304px;}
.ls1c{letter-spacing:0.366048px;}
.ls48{letter-spacing:0.367632px;}
.ls14{letter-spacing:0.371952px;}
.ls17{letter-spacing:0.372960px;}
.ls2a{letter-spacing:0.377856px;}
.ls1d{letter-spacing:0.378288px;}
.ls27{letter-spacing:0.383616px;}
.ls12{letter-spacing:0.383760px;}
.ls26{letter-spacing:0.388944px;}
.ls3f{letter-spacing:0.389664px;}
.ls25{letter-spacing:0.394272px;}
.ls41{letter-spacing:0.395568px;}
.ls21{letter-spacing:0.399600px;}
.ls31{letter-spacing:0.400320px;}
.ls13{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.ls15{letter-spacing:0.407376px;}
.ls7{letter-spacing:0.413280px;}
.ls10{letter-spacing:0.419184px;}
.lsa{letter-spacing:0.425088px;}
.ls22{letter-spacing:0.426240px;}
.ls1b{letter-spacing:0.430992px;}
.ls24{letter-spacing:0.431568px;}
.ls4{letter-spacing:0.436896px;}
.ls23{letter-spacing:0.442224px;}
.ls9{letter-spacing:0.442800px;}
.lsc{letter-spacing:0.448704px;}
.ls8{letter-spacing:0.454608px;}
.lsd{letter-spacing:0.460512px;}
.ls37{letter-spacing:0.466416px;}
.ls38{letter-spacing:0.472320px;}
.lsf{letter-spacing:0.478224px;}
.lsb{letter-spacing:0.484128px;}
.ls36{letter-spacing:0.490032px;}
.ls11{letter-spacing:0.495936px;}
.lse{letter-spacing:0.501840px;}
.ls35{letter-spacing:0.507744px;}
.ls6{letter-spacing:0.513648px;}
.ls3e{letter-spacing:0.518400px;}
.ls3d{letter-spacing:0.531360px;}
.ls3b{letter-spacing:0.537264px;}
.ls5{letter-spacing:0.590400px;}
.ls3c{letter-spacing:0.602640px;}
.ls3a{letter-spacing:0.609120px;}
.ls39{letter-spacing:0.628560px;}
.ls40{letter-spacing:0.673920px;}
.ls16{letter-spacing:0.921024px;}
.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:-17.003520px;}
.ws5{word-spacing:-16.926768px;}
.ws156{word-spacing:-15.152832px;}
.ws153{word-spacing:-15.147504px;}
.ws157{word-spacing:-15.136848px;}
.ws155{word-spacing:-15.126192px;}
.ws154{word-spacing:-15.115536px;}
.ws2{word-spacing:-12.835200px;}
.ws3{word-spacing:-10.008000px;}
.ws44{word-spacing:-8.406720px;}
.ws119{word-spacing:-0.343440px;}
.wsb0{word-spacing:-0.278640px;}
.ws9c{word-spacing:-0.272160px;}
.ws62{word-spacing:-0.218448px;}
.ws61{word-spacing:-0.213120px;}
.ws60{word-spacing:-0.207792px;}
.wsec{word-spacing:-0.187920px;}
.wsb{word-spacing:-0.186480px;}
.ws13{word-spacing:-0.183024px;}
.ws5f{word-spacing:-0.181152px;}
.ws4e{word-spacing:-0.177120px;}
.wsed{word-spacing:-0.174960px;}
.ws63{word-spacing:-0.170496px;}
.wsa{word-spacing:-0.165312px;}
.ws172{word-spacing:-0.165168px;}
.ws58{word-spacing:-0.159408px;}
.wsaf{word-spacing:-0.153504px;}
.ws6{word-spacing:-0.149184px;}
.ws38{word-spacing:-0.147600px;}
.ws67{word-spacing:-0.143856px;}
.ws1e{word-spacing:-0.141696px;}
.ws48{word-spacing:-0.135792px;}
.ws65{word-spacing:-0.133200px;}
.ws5d{word-spacing:-0.129888px;}
.ws7{word-spacing:-0.127872px;}
.ws2e{word-spacing:-0.123984px;}
.ws66{word-spacing:-0.122544px;}
.ws32{word-spacing:-0.118080px;}
.ws74{word-spacing:-0.117216px;}
.ws9{word-spacing:-0.116928px;}
.wse4{word-spacing:-0.112176px;}
.ws79{word-spacing:-0.111888px;}
.ws68{word-spacing:-0.106560px;}
.wsf5{word-spacing:-0.106272px;}
.ws94{word-spacing:-0.104544px;}
.ws75{word-spacing:-0.101232px;}
.ws43{word-spacing:-0.100368px;}
.ws8{word-spacing:-0.100224px;}
.ws76{word-spacing:-0.095904px;}
.wseb{word-spacing:-0.094464px;}
.ws45{word-spacing:-0.085536px;}
.ws192{word-spacing:-0.085248px;}
.ws13b{word-spacing:-0.082656px;}
.ws46{word-spacing:-0.076032px;}
.ws0{word-spacing:-0.072000px;}
.ws77{word-spacing:-0.069264px;}
.ws14d{word-spacing:-0.064944px;}
.ws37{word-spacing:-0.053136px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:0.007200px;}
.ws95{word-spacing:0.014400px;}
.ws178{word-spacing:0.026640px;}
.ws12b{word-spacing:0.224352px;}
.ws9d{word-spacing:0.395568px;}
.wsd{word-spacing:0.454608px;}
.ws15d{word-spacing:0.468864px;}
.wscc{word-spacing:0.519552px;}
.ws15f{word-spacing:0.586080px;}
.ws89{word-spacing:0.690768px;}
.ws24{word-spacing:0.696672px;}
.ws73{word-spacing:0.714384px;}
.ws177{word-spacing:0.719280px;}
.ws2a{word-spacing:0.838368px;}
.wsc0{word-spacing:0.844272px;}
.ws10e{word-spacing:0.856080px;}
.wsb3{word-spacing:0.861984px;}
.ws109{word-spacing:0.891504px;}
.ws137{word-spacing:0.974160px;}
.wsee{word-spacing:0.985968px;}
.ws10c{word-spacing:0.997776px;}
.ws16{word-spacing:1.021392px;}
.wse3{word-spacing:1.098144px;}
.wsf4{word-spacing:1.257552px;}
.wsf9{word-spacing:1.281168px;}
.wse1{word-spacing:1.375632px;}
.ws10b{word-spacing:1.499616px;}
.ws112{word-spacing:1.605888px;}
.ws113{word-spacing:1.641312px;}
.wsda{word-spacing:1.706256px;}
.wsd4{word-spacing:1.712160px;}
.ws174{word-spacing:1.752912px;}
.ws104{word-spacing:1.788912px;}
.wsdc{word-spacing:1.812528px;}
.ws7f{word-spacing:1.918800px;}
.ws197{word-spacing:1.928736px;}
.ws6a{word-spacing:2.125440px;}
.wsfb{word-spacing:2.154960px;}
.ws3d{word-spacing:2.255328px;}
.ws150{word-spacing:2.343888px;}
.ws84{word-spacing:2.420640px;}
.ws85{word-spacing:2.450160px;}
.ws179{word-spacing:2.466864px;}
.wsc8{word-spacing:2.633184px;}
.ws21{word-spacing:2.674512px;}
.wsf2{word-spacing:2.692224px;}
.ws139{word-spacing:2.763072px;}
.wsa7{word-spacing:2.816208px;}
.wsde{word-spacing:2.869344px;}
.ws16c{word-spacing:3.052944px;}
.ws17e{word-spacing:3.106224px;}
.wsc1{word-spacing:3.123216px;}
.wsdf{word-spacing:3.135024px;}
.ws9a{word-spacing:3.164544px;}
.ws36{word-spacing:3.205872px;}
.ws148{word-spacing:3.259008px;}
.wse7{word-spacing:3.312144px;}
.ws12f{word-spacing:3.501072px;}
.wse2{word-spacing:3.625056px;}
.ws88{word-spacing:3.630960px;}
.ws18c{word-spacing:3.649680px;}
.ws10{word-spacing:3.672288px;}
.wsa4{word-spacing:3.690000px;}
.ws99{word-spacing:3.701808px;}
.ws161{word-spacing:3.921408px;}
.ws141{word-spacing:4.050144px;}
.ws59{word-spacing:4.162320px;}
.ws26{word-spacing:4.168224px;}
.ws83{word-spacing:4.191840px;}
.ws7b{word-spacing:4.333536px;}
.ws185{word-spacing:4.480848px;}
.ws103{word-spacing:4.516560px;}
.ws82{word-spacing:4.581504px;}
.ws3c{word-spacing:4.664160px;}
.wsbd{word-spacing:4.805856px;}
.ws25{word-spacing:4.894416px;}
.wse{word-spacing:4.941648px;}
.ws102{word-spacing:4.994784px;}
.ws54{word-spacing:5.059728px;}
.ws12{word-spacing:5.372640px;}
.ws8b{word-spacing:5.455296px;}
.wse8{word-spacing:5.508432px;}
.ws7c{word-spacing:5.561568px;}
.ws86{word-spacing:5.591088px;}
.wsbe{word-spacing:5.596992px;}
.wsa9{word-spacing:5.602896px;}
.ws105{word-spacing:5.874480px;}
.wsc2{word-spacing:5.933520px;}
.ws176{word-spacing:6.084576px;}
.ws120{word-spacing:6.169680px;}
.ws108{word-spacing:6.382224px;}
.wscf{word-spacing:6.488496px;}
.ws107{word-spacing:6.506208px;}
.wsfd{word-spacing:6.512112px;}
.ws1f{word-spacing:6.565248px;}
.wsd9{word-spacing:6.901776px;}
.ws15b{word-spacing:7.032960px;}
.ws11d{word-spacing:7.126128px;}
.ws7a{word-spacing:7.149744px;}
.ws34{word-spacing:7.285536px;}
.wsf8{word-spacing:7.332768px;}
.ws96{word-spacing:7.456752px;}
.wse0{word-spacing:7.486272px;}
.ws18a{word-spacing:7.555104px;}
.wsd8{word-spacing:7.722432px;}
.ws135{word-spacing:8.153424px;}
.ws2c{word-spacing:8.295120px;}
.ws164{word-spacing:8.407584px;}
.ws9b{word-spacing:8.413200px;}
.wsc{word-spacing:8.590320px;}
.ws11{word-spacing:8.596224px;}
.ws138{word-spacing:8.625744px;}
.wsa8{word-spacing:8.737920px;}
.ws23{word-spacing:8.802864px;}
.ws142{word-spacing:8.897328px;}
.ws6d{word-spacing:8.932752px;}
.ws147{word-spacing:8.968176px;}
.ws167{word-spacing:9.025632px;}
.ws117{word-spacing:9.033120px;}
.ws98{word-spacing:9.198432px;}
.ws114{word-spacing:9.269280px;}
.ws40{word-spacing:9.405072px;}
.wsf0{word-spacing:9.422784px;}
.ws13a{word-spacing:9.458208px;}
.wsb6{word-spacing:9.694368px;}
.ws19b{word-spacing:9.766224px;}
.ws12e{word-spacing:9.794736px;}
.wsa2{word-spacing:9.841968px;}
.wsa1{word-spacing:9.847872px;}
.ws110{word-spacing:9.853776px;}
.ws11f{word-spacing:9.877392px;}
.ws90{word-spacing:10.308384px;}
.wsf7{word-spacing:10.467792px;}
.ws47{word-spacing:10.485504px;}
.ws10a{word-spacing:10.497312px;}
.wsb1{word-spacing:10.644912px;}
.ws12a{word-spacing:10.668528px;}
.ws5c{word-spacing:10.721664px;}
.wsac{word-spacing:10.774800px;}
.ws1d{word-spacing:10.957824px;}
.ws163{word-spacing:11.066256px;}
.ws2f{word-spacing:11.371104px;}
.ws93{word-spacing:11.518704px;}
.ws29{word-spacing:11.554128px;}
.ws14a{word-spacing:11.577744px;}
.ws12d{word-spacing:11.589552px;}
.ws16a{word-spacing:11.641680px;}
.ws39{word-spacing:11.737584px;}
.ws35{word-spacing:11.796192px;}
.wsdd{word-spacing:11.843424px;}
.wsb5{word-spacing:12.055968px;}
.ws16b{word-spacing:12.174480px;}
.wsc9{word-spacing:12.179952px;}
.ws1a{word-spacing:12.292128px;}
.ws184{word-spacing:12.344976px;}
.wscb{word-spacing:12.386592px;}
.ws14f{word-spacing:12.605040px;}
.ws69{word-spacing:12.634560px;}
.ws14b{word-spacing:12.675888px;}
.ws116{word-spacing:12.699504px;}
.wsa5{word-spacing:12.746736px;}
.ws18b{word-spacing:12.877776px;}
.ws118{word-spacing:13.136400px;}
.wse5{word-spacing:13.189536px;}
.wsd5{word-spacing:13.207248px;}
.ws5a{word-spacing:13.213152px;}
.ws13d{word-spacing:13.236768px;}
.ws50{word-spacing:13.272192px;}
.wsfc{word-spacing:13.638240px;}
.ws152{word-spacing:13.709088px;}
.wsf{word-spacing:14.010192px;}
.wscd{word-spacing:14.317200px;}
.ws30{word-spacing:14.329008px;}
.ws199{word-spacing:14.337648px;}
.ws16d{word-spacing:14.518800px;}
.ws17b{word-spacing:14.529456px;}
.ws130{word-spacing:14.659632px;}
.ws127{word-spacing:14.712768px;}
.ws80{word-spacing:14.754096px;}
.ws19{word-spacing:14.824944px;}
.ws6b{word-spacing:14.860368px;}
.ws13c{word-spacing:14.901696px;}
.wsad{word-spacing:15.061104px;}
.ws92{word-spacing:15.078816px;}
.ws11e{word-spacing:15.120144px;}
.ws111{word-spacing:15.326784px;}
.ws18{word-spacing:15.356304px;}
.wsd6{word-spacing:15.822720px;}
.ws52{word-spacing:15.934896px;}
.ws195{word-spacing:16.053264px;}
.ws91{word-spacing:16.070688px;}
.ws191{word-spacing:16.298352px;}
.ws17f{word-spacing:16.506144px;}
.ws2d{word-spacing:16.537104px;}
.ws11b{word-spacing:16.548912px;}
.ws7d{word-spacing:16.572528px;}
.ws9f{word-spacing:16.596144px;}
.ws53{word-spacing:16.643376px;}
.ws57{word-spacing:17.133408px;}
.ws166{word-spacing:17.134848px;}
.ws126{word-spacing:17.180640px;}
.wsf6{word-spacing:17.375472px;}
.ws7e{word-spacing:17.505360px;}
.wsb9{word-spacing:17.523072px;}
.ws101{word-spacing:17.599824px;}
.ws70{word-spacing:17.652960px;}
.ws6f{word-spacing:17.918640px;}
.ws5b{word-spacing:18.007200px;}
.ws12c{word-spacing:18.196128px;}
.wsa3{word-spacing:18.202032px;}
.ws18e{word-spacing:18.259056px;}
.ws125{word-spacing:18.320112px;}
.ws123{word-spacing:18.343728px;}
.wsc4{word-spacing:18.426384px;}
.wsc3{word-spacing:18.656640px;}
.ws15a{word-spacing:18.679968px;}
.wsef{word-spacing:18.721584px;}
.wsd3{word-spacing:18.762912px;}
.ws56{word-spacing:18.922320px;}
.wsa0{word-spacing:19.058112px;}
.wsbc{word-spacing:19.117152px;}
.ws106{word-spacing:19.300176px;}
.ws121{word-spacing:19.317888px;}
.ws9e{word-spacing:19.376928px;}
.wsb4{word-spacing:19.689840px;}
.ws3b{word-spacing:19.884672px;}
.wsae{word-spacing:19.908288px;}
.wse6{word-spacing:19.955520px;}
.ws16f{word-spacing:19.958688px;}
.ws193{word-spacing:20.059920px;}
.ws1b{word-spacing:20.433744px;}
.ws8f{word-spacing:20.599056px;}
.ws4a{word-spacing:20.929680px;}
.ws8a{word-spacing:21.254400px;}
.ws134{word-spacing:21.555504px;}
.wsd7{word-spacing:21.614544px;}
.ws190{word-spacing:21.738240px;}
.ws11a{word-spacing:21.779856px;}
.ws181{word-spacing:21.882096px;}
.ws11c{word-spacing:21.909744px;}
.ws180{word-spacing:22.052592px;}
.ws20{word-spacing:22.086864px;}
.ws18f{word-spacing:22.089888px;}
.ws173{word-spacing:22.271040px;}
.ws8c{word-spacing:22.535568px;}
.ws140{word-spacing:22.724496px;}
.ws42{word-spacing:22.730400px;}
.ws115{word-spacing:23.190912px;}
.ws87{word-spacing:23.220432px;}
.ws3f{word-spacing:23.716368px;}
.ws133{word-spacing:23.799024px;}
.ws13f{word-spacing:23.917104px;}
.ws124{word-spacing:23.982048px;}
.wsca{word-spacing:24.076512px;}
.ws100{word-spacing:24.188688px;}
.ws4f{word-spacing:24.584256px;}
.wsb8{word-spacing:24.731856px;}
.wsc5{word-spacing:25.074288px;}
.ws55{word-spacing:25.215984px;}
.ws182{word-spacing:25.361280px;}
.ws22{word-spacing:25.458048px;}
.ws8d{word-spacing:25.469856px;}
.ws160{word-spacing:25.553088px;}
.ws129{word-spacing:25.989408px;}
.ws15c{word-spacing:26.037936px;}
.ws158{word-spacing:26.101872px;}
.ws6e{word-spacing:26.479440px;}
.wsce{word-spacing:26.520768px;}
.wsaa{word-spacing:26.550288px;}
.ws31{word-spacing:26.556192px;}
.wsea{word-spacing:26.562096px;}
.wsbf{word-spacing:27.010800px;}
.ws81{word-spacing:27.075744px;}
.ws151{word-spacing:27.081648px;}
.wsb7{word-spacing:27.246960px;}
.ws128{word-spacing:27.512640px;}
.ws19d{word-spacing:27.918720px;}
.wsd2{word-spacing:27.967248px;}
.wsfa{word-spacing:28.038096px;}
.ws2b{word-spacing:28.173888px;}
.wsf3{word-spacing:28.894176px;}
.ws3a{word-spacing:29.443248px;}
.ws4c{word-spacing:29.455056px;}
.ws27{word-spacing:29.868336px;}
.ws97{word-spacing:29.874240px;}
.wsc7{word-spacing:30.364272px;}
.ws143{word-spacing:30.505968px;}
.ws149{word-spacing:30.606336px;}
.ws194{word-spacing:31.024944px;}
.ws51{word-spacing:32.283072px;}
.wsb2{word-spacing:32.324400px;}
.ws10f{word-spacing:33.221808px;}
.ws13e{word-spacing:33.239520px;}
.ws33{word-spacing:33.747264px;}
.wsbb{word-spacing:33.770880px;}
.ws170{word-spacing:33.923376px;}
.ws28{word-spacing:34.030656px;}
.wsf1{word-spacing:34.508880px;}
.ws19e{word-spacing:36.262368px;}
.ws6c{word-spacing:36.563472px;}
.ws17{word-spacing:36.610704px;}
.ws4b{word-spacing:36.616608px;}
.ws17a{word-spacing:36.699264px;}
.ws131{word-spacing:37.643904px;}
.ws3e{word-spacing:38.187072px;}
.ws132{word-spacing:39.007728px;}
.wsab{word-spacing:39.196656px;}
.ws15{word-spacing:39.899232px;}
.ws49{word-spacing:40.005504px;}
.ws196{word-spacing:40.796496px;}
.ws14e{word-spacing:41.050512px;}
.wsdb{word-spacing:41.239440px;}
.ws136{word-spacing:41.534640px;}
.ws122{word-spacing:42.432048px;}
.wsba{word-spacing:44.722800px;}
.ws14c{word-spacing:44.876304px;}
.ws144{word-spacing:44.941248px;}
.ws17c{word-spacing:45.149472px;}
.ws19a{word-spacing:45.538416px;}
.ws1c{word-spacing:45.850464px;}
.wse9{word-spacing:46.600272px;}
.wsfe{word-spacing:47.137536px;}
.ws19c{word-spacing:47.365920px;}
.ws198{word-spacing:47.387232px;}
.ws146{word-spacing:48.808368px;}
.wsd0{word-spacing:50.491008px;}
.ws159{word-spacing:51.319296px;}
.wsc6{word-spacing:52.262208px;}
.ws71{word-spacing:54.133776px;}
.ws4d{word-spacing:54.263664px;}
.ws10d{word-spacing:54.511632px;}
.ws189{word-spacing:55.219392px;}
.ws72{word-spacing:56.619360px;}
.ws168{word-spacing:57.148128px;}
.ws17d{word-spacing:57.856752px;}
.wsa6{word-spacing:59.972832px;}
.ws175{word-spacing:63.861408px;}
.ws145{word-spacing:64.949904px;}
.ws15e{word-spacing:66.157776px;}
.ws41{word-spacing:67.488624px;}
.wsff{word-spacing:71.863488px;}
.ws187{word-spacing:72.162432px;}
.ws162{word-spacing:76.323600px;}
.ws171{word-spacing:86.366880px;}
.ws186{word-spacing:90.245664px;}
.ws183{word-spacing:93.192048px;}
.wsd1{word-spacing:93.820464px;}
.ws18d{word-spacing:99.361872px;}
.ws16e{word-spacing:119.256624px;}
.ws8e{word-spacing:125.566272px;}
.ws169{word-spacing:127.339200px;}
.ws188{word-spacing:219.476304px;}
.ws5e{word-spacing:254.907504px;}
.ws64{word-spacing:357.109200px;}
.ws78{word-spacing:380.493792px;}
.ws165{word-spacing:387.627984px;}
._22{margin-left:-380.642976px;}
._19{margin-left:-358.217424px;}
._1a{margin-left:-120.252960px;}
._2f{margin-left:-66.615984px;}
._1b{margin-left:-59.082192px;}
._2d{margin-left:-44.923536px;}
._2c{margin-left:-32.548752px;}
._4{margin-left:-20.016000px;}
._9{margin-left:-17.978400px;}
._2b{margin-left:-16.731936px;}
._2e{margin-left:-14.494320px;}
._8{margin-left:-11.780184px;}
._2{margin-left:-9.307200px;}
._6{margin-left:-7.977600px;}
._0{margin-left:-6.239016px;}
._5{margin-left:-5.133600px;}
._7{margin-left:-3.077784px;}
._3{margin-left:-1.512000px;}
._a{width:1.883376px;}
._1{width:12.835200px;}
._b{width:80.474112px;}
._2a{width:203.236560px;}
._d{width:206.960832px;}
._11{width:221.980464px;}
._27{width:224.910864px;}
._12{width:237.181248px;}
._1f{width:239.909184px;}
._15{width:245.183904px;}
._18{width:281.153232px;}
._21{width:284.904144px;}
._16{width:296.972064px;}
._e{width:302.028336px;}
._17{width:357.247728px;}
._13{width:359.197776px;}
._20{width:360.993312px;}
._1c{width:365.143824px;}
._14{width:374.174784px;}
._10{width:377.126496px;}
._1d{width:379.758528px;}
._f{width:394.980624px;}
._1e{width:396.999936px;}
._24{width:403.137792px;}
._c{width:404.533728px;}
._26{width:506.847312px;}
._29{width:761.408496px;}
._25{width:828.940896px;}
._28{width:867.590208px;}
._23{width:890.085024px;}
.fc3{color:rgb(64,108,108);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc4{color:rgb(130,104,168);}
.fc0{color:rgb(28,28,27);}
.fsa{font-size:11.520000px;}
.fs9{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:47.520000px;}
.fs1{font-size:48.972000px;}
.fs6{font-size:53.280000px;}
.fs5{font-size:59.040000px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:42.520500px;}
.y16{bottom:56.746500px;}
.y15{bottom:76.906500px;}
.y1a9{bottom:114.706500px;}
.y109{bottom:114.735660px;}
.yd1{bottom:115.426500px;}
.y141{bottom:118.316910px;}
.y1e6{bottom:119.334954px;}
.y172{bottom:120.112086px;}
.y9d{bottom:124.070610px;}
.y6{bottom:127.151250px;}
.ya4{bottom:127.312482px;}
.y1a8{bottom:132.000108px;}
.y108{bottom:132.015192px;}
.yd0{bottom:132.346500px;}
.y1e5{bottom:134.815458px;}
.y140{bottom:135.596442px;}
.y171{bottom:137.391618px;}
.y64{bottom:137.402274px;}
.y9c{bottom:141.350142px;}
.ya3{bottom:144.590538px;}
.y4c{bottom:144.948444px;}
.y1a7{bottom:149.278164px;}
.y107{bottom:149.293248px;}
.y1e4{bottom:150.297294px;}
.y13f{bottom:152.875974px;}
.y170{bottom:154.669674px;}
.y63{bottom:154.681806px;}
.y9b{bottom:158.629674px;}
.ya2{bottom:161.868594px;}
.y4b{bottom:162.226500px;}
.y1e3{bottom:165.777798px;}
.y1a6{bottom:166.557696px;}
.y106{bottom:166.572780px;}
.y13e{bottom:170.154030px;}
.y62{bottom:171.599718px;}
.y16f{bottom:171.949206px;}
.y9a{bottom:175.909206px;}
.ya1{bottom:179.146650px;}
.y4a{bottom:179.866500px;}
.y1e2{bottom:181.617942px;}
.y1a5{bottom:183.837228px;}
.y105{bottom:183.852312px;}
.y13d{bottom:187.433562px;}
.y61{bottom:188.879250px;}
.y16e{bottom:189.228738px;}
.y21d{bottom:191.386500px;}
.y99{bottom:193.188738px;}
.ya0{bottom:196.432986px;}
.y1e1{bottom:197.098446px;}
.y49{bottom:200.026650px;}
.y1a4{bottom:201.116760px;}
.y104{bottom:201.130368px;}
.y13c{bottom:204.713094px;}
.y16d{bottom:206.146650px;}
.y60{bottom:206.158782px;}
.y98{bottom:210.106650px;}
.y21c{bottom:212.266500px;}
.y1e0{bottom:212.580282px;}
.y9f{bottom:213.711042px;}
.y48{bottom:217.339620px;}
.y1a3{bottom:218.396292px;}
.y103{bottom:218.408424px;}
.y13b{bottom:221.991150px;}
.y5f{bottom:223.436838px;}
.y16c{bottom:223.444146px;}
.y1df{bottom:228.060786px;}
.y97{bottom:228.106650px;}
.y9e{bottom:230.990574px;}
.y21b{bottom:233.146500px;}
.y47{bottom:234.619152px;}
.y1a2{bottom:235.675824px;}
.y102{bottom:235.686480px;}
.y13a{bottom:238.910538px;}
.y5e{bottom:240.716370px;}
.y16b{bottom:240.722202px;}
.y1de{bottom:243.541290px;}
.y96{bottom:247.546356px;}
.y46{bottom:251.898684px;}
.y1a1{bottom:252.953880px;}
.y101{bottom:252.964536px;}
.y21a{bottom:254.026500px;}
.y139{bottom:256.188594px;}
.y5d{bottom:257.994426px;}
.y16a{bottom:258.000258px;}
.y1dd{bottom:259.023126px;}
.y95{bottom:263.386500px;}
.y45{bottom:269.178216px;}
.y1a0{bottom:270.233412px;}
.y100{bottom:270.242592px;}
.y138{bottom:273.466650px;}
.y1dc{bottom:274.503630px;}
.y219{bottom:274.906500px;}
.y5c{bottom:275.272482px;}
.y169{bottom:275.278314px;}
.y94{bottom:276.706500px;}
.yb7{bottom:282.826650px;}
.y44{bottom:286.457748px;}
.y19f{bottom:287.512944px;}
.yff{bottom:287.522124px;}
.y1db{bottom:289.984134px;}
.y137{bottom:291.106650px;}
.y5b{bottom:292.550538px;}
.y168{bottom:292.556370px;}
.y218{bottom:295.786500px;}
.yb6{bottom:299.385996px;}
.y43{bottom:303.737280px;}
.y19e{bottom:304.791000px;}
.yfe{bottom:304.801656px;}
.y1da{bottom:305.825610px;}
.y5a{bottom:309.828594px;}
.y167{bottom:309.834426px;}
.y136{bottom:309.842052px;}
.yb5{bottom:314.866500px;}
.y217{bottom:316.666500px;}
.y42{bottom:321.016812px;}
.y1d9{bottom:321.306114px;}
.y19d{bottom:321.710388px;}
.yfd{bottom:321.719568px;}
.y59{bottom:327.106650px;}
.y166{bottom:327.112482px;}
.y135{bottom:327.120108px;}
.yb4{bottom:331.066500px;}
.y1d8{bottom:336.786618px;}
.y216{bottom:337.546500px;}
.y41{bottom:337.934724px;}
.y19c{bottom:338.988444px;}
.yfc{bottom:338.999100px;}
.y58{bottom:343.666146px;}
.y165{bottom:344.390538px;}
.y134{bottom:344.399640px;}
.yb3{bottom:347.266500px;}
.y1d7{bottom:352.268454px;}
.y40{bottom:355.214256px;}
.y19b{bottom:356.266500px;}
.yfb{bottom:356.277156px;}
.y215{bottom:357.296754px;}
.y57{bottom:359.146650px;}
.y164{bottom:361.668594px;}
.y133{bottom:361.679172px;}
.yb2{bottom:363.466146px;}
.y1d6{bottom:367.748958px;}
.y3f{bottom:372.493788px;}
.y214{bottom:372.777258px;}
.yfa{bottom:373.555212px;}
.y19a{bottom:374.266500px;}
.y56{bottom:376.426500px;}
.yb1{bottom:378.946650px;}
.y132{bottom:378.958704px;}
.y1d5{bottom:383.229462px;}
.yf{bottom:388.075500px;}
.y213{bottom:388.617402px;}
.y3e{bottom:389.771844px;}
.yf9{bottom:390.833268px;}
.y199{bottom:394.450050px;}
.yb0{bottom:395.506146px;}
.y131{bottom:395.876616px;}
.y163{bottom:396.226500px;}
.y1d4{bottom:398.711298px;}
.y212{bottom:404.097906px;}
.y3d{bottom:407.049900px;}
.yf8{bottom:408.111324px;}
.ye{bottom:409.675500px;}
.yaf{bottom:410.986650px;}
.y198{bottom:411.728106px;}
.y130{bottom:413.156148px;}
.y1d3{bottom:414.191802px;}
.y162{bottom:414.961584px;}
.y211{bottom:419.579742px;}
.y3c{bottom:424.327956px;}
.yf7{bottom:425.389380px;}
.yae{bottom:427.186500px;}
.y197{bottom:429.006162px;}
.y1d2{bottom:430.031946px;}
.y12f{bottom:430.435680px;}
.yd{bottom:431.275500px;}
.y161{bottom:432.239640px;}
.y210{bottom:435.060246px;}
.y3b{bottom:441.606012px;}
.yf6{bottom:442.668912px;}
.yad{bottom:443.385996px;}
.y1d1{bottom:445.512450px;}
.y196{bottom:445.925550px;}
.y12e{bottom:447.715212px;}
.y160{bottom:449.519172px;}
.y20f{bottom:450.540750px;}
.ycf{bottom:457.426500px;}
.yac{bottom:458.866500px;}
.y3a{bottom:458.885544px;}
.yf5{bottom:459.948444px;}
.y1d0{bottom:460.994286px;}
.y195{bottom:463.205082px;}
.y12d{bottom:464.994744px;}
.y20e{bottom:466.022586px;}
.y15f{bottom:466.798704px;}
.yce{bottom:474.388476px;}
.yab{bottom:475.425996px;}
.y39{bottom:476.165076px;}
.y1cf{bottom:476.474790px;}
.yf4{bottom:477.226500px;}
.y194{bottom:480.483138px;}
.y20d{bottom:481.503090px;}
.y12c{bottom:482.274276px;}
.y15e{bottom:484.076760px;}
.yaa{bottom:490.906500px;}
.yc{bottom:491.179500px;}
.y1ce{bottom:491.955294px;}
.y38{bottom:493.444608px;}
.yf3{bottom:494.506650px;}
.y20c{bottom:496.983594px;}
.y193{bottom:497.762670px;}
.y12b{bottom:499.553808px;}
.y15d{bottom:501.356292px;}
.ya9{bottom:507.106500px;}
.y1cd{bottom:507.437130px;}
.y37{bottom:510.722664px;}
.y20b{bottom:512.465430px;}
.yb{bottom:512.779500px;}
.yf2{bottom:513.242988px;}
.y192{bottom:515.042202px;}
.y12a{bottom:516.833340px;}
.y15c{bottom:518.635824px;}
.y1cc{bottom:522.917634px;}
.ya8{bottom:523.305996px;}
.y36{bottom:527.642052px;}
.y20a{bottom:528.305574px;}
.yf1{bottom:530.522520px;}
.y191{bottom:532.321734px;}
.y129{bottom:534.112872px;}
.ya{bottom:534.379500px;}
.y15b{bottom:535.913880px;}
.y1cb{bottom:538.398138px;}
.ya7{bottom:538.786500px;}
.y209{bottom:543.786078px;}
.y35{bottom:544.920108px;}
.yf0{bottom:547.802052px;}
.y55{bottom:548.514888px;}
.y190{bottom:549.599790px;}
.y128{bottom:551.392404px;}
.y15a{bottom:552.833268px;}
.y1ca{bottom:553.879974px;}
.ya6{bottom:554.986506px;}
.y9{bottom:555.979500px;}
.y208{bottom:559.266582px;}
.y34{bottom:562.198164px;}
.yef{bottom:565.080108px;}
.y54{bottom:565.794420px;}
.y18f{bottom:566.879322px;}
.y127{bottom:568.671936px;}
.y1c9{bottom:569.720118px;}
.y159{bottom:570.111324px;}
.ya5{bottom:570.826650px;}
.y207{bottom:574.748418px;}
.y8{bottom:577.579500px;}
.y33{bottom:579.476220px;}
.yee{bottom:582.359640px;}
.y53{bottom:583.072476px;}
.y18e{bottom:584.158854px;}
.y1c8{bottom:585.200622px;}
.y126{bottom:585.951468px;}
.y158{bottom:587.389380px;}
.y93{bottom:588.106470px;}
.y206{bottom:590.228922px;}
.y32{bottom:596.754276px;}
.y7{bottom:599.179500px;}
.yed{bottom:599.639172px;}
.y52{bottom:600.352008px;}
.y1c7{bottom:600.682458px;}
.y18d{bottom:601.436910px;}
.y125{bottom:602.869380px;}
.y157{bottom:604.668912px;}
.y205{bottom:605.710758px;}
.y92{bottom:607.906650px;}
.y31{bottom:614.032332px;}
.y1c6{bottom:616.162962px;}
.yec{bottom:616.917228px;}
.y51{bottom:617.631540px;}
.y18c{bottom:618.716442px;}
.y124{bottom:620.148912px;}
.y204{bottom:621.191262px;}
.y156{bottom:621.948444px;}
.y91{bottom:628.426500px;}
.y30{bottom:631.310388px;}
.y1c5{bottom:631.643466px;}
.yeb{bottom:634.196760px;}
.y50{bottom:634.909596px;}
.y18b{bottom:635.635830px;}
.y203{bottom:636.671766px;}
.y123{bottom:637.428444px;}
.y155{bottom:639.226500px;}
.y90{bottom:643.906650px;}
.y1c4{bottom:647.125302px;}
.y2f{bottom:648.588444px;}
.yea{bottom:651.476292px;}
.y4f{bottom:651.828984px;}
.y202{bottom:652.511910px;}
.y18a{bottom:652.913886px;}
.y122{bottom:654.706500px;}
.y154{bottom:656.519640px;}
.y8f{bottom:660.466500px;}
.y1c3{bottom:662.605806px;}
.y2e{bottom:665.866500px;}
.y201{bottom:667.952454px;}
.ye9{bottom:668.394204px;}
.y4e{bottom:669.108516px;}
.y189{bottom:670.193418px;}
.y121{bottom:672.346500px;}
.y153{bottom:673.799172px;}
.y8e{bottom:676.666650px;}
.y1c2{bottom:678.086310px;}
.y200{bottom:683.434290px;}
.y2d{bottom:683.506650px;}
.ye8{bottom:685.673736px;}
.y4d{bottom:686.386572px;}
.y188{bottom:687.472950px;}
.y5{bottom:689.592150px;}
.y152{bottom:691.077228px;}
.y120{bottom:691.085004px;}
.y8d{bottom:692.866500px;}
.y1c1{bottom:693.926454px;}
.y1ff{bottom:698.914794px;}
.ye7{bottom:702.953268px;}
.y2c{bottom:703.679322px;}
.y187{bottom:704.751006px;}
.y151{bottom:708.356760px;}
.y11f{bottom:708.363060px;}
.y8c{bottom:709.066650px;}
.y1c0{bottom:709.408290px;}
.y1fe{bottom:714.395298px;}
.y4{bottom:719.592750px;}
.ye6{bottom:720.232800px;}
.y2b{bottom:720.957378px;}
.y186{bottom:722.030538px;}
.y1bf{bottom:724.888794px;}
.y8b{bottom:725.266500px;}
.y150{bottom:725.636292px;}
.y11e{bottom:725.641116px;}
.y1fd{bottom:729.877134px;}
.ye5{bottom:737.512332px;}
.y2a{bottom:738.236910px;}
.y185{bottom:739.308594px;}
.y1be{bottom:740.369298px;}
.y8a{bottom:741.826650px;}
.y14f{bottom:742.914348px;}
.y11d{bottom:742.919172px;}
.y1fc{bottom:745.357638px;}
.ye4{bottom:754.791864px;}
.y29{bottom:755.514966px;}
.y1bd{bottom:755.851134px;}
.y184{bottom:756.586650px;}
.y89{bottom:758.026500px;}
.y14e{bottom:759.833736px;}
.y11c{bottom:759.838560px;}
.y1fb{bottom:760.838142px;}
.y1bc{bottom:771.331638px;}
.ye3{bottom:772.071396px;}
.y28{bottom:772.793022px;}
.y88{bottom:774.226500px;}
.y1fa{bottom:776.679618px;}
.y14d{bottom:777.113268px;}
.y11b{bottom:777.118092px;}
.y3{bottom:781.284450px;}
.y1bb{bottom:786.812142px;}
.ye2{bottom:789.350928px;}
.y27{bottom:790.072554px;}
.y87{bottom:790.426500px;}
.y1f9{bottom:792.160122px;}
.y14c{bottom:794.392800px;}
.y11a{bottom:794.396148px;}
.y183{bottom:794.396838px;}
.ycd{bottom:794.428080px;}
.y1ba{bottom:802.293978px;}
.y86{bottom:806.626500px;}
.ye1{bottom:806.630460px;}
.y26{bottom:807.352086px;}
.y1f8{bottom:807.640626px;}
.y2{bottom:811.285050px;}
.y14b{bottom:811.672332px;}
.y119{bottom:811.675680px;}
.y182{bottom:811.676370px;}
.ybd{bottom:811.688424px;}
.y1b9{bottom:818.134122px;}
.y1f7{bottom:823.121130px;}
.y85{bottom:823.186716px;}
.ye0{bottom:823.909992px;}
.y25{bottom:824.631618px;}
.y14a{bottom:828.951864px;}
.y181{bottom:828.954426px;}
.y118{bottom:828.955212px;}
.ybc{bottom:828.966480px;}
.ycc{bottom:828.988620px;}
.y1b8{bottom:833.614626px;}
.y1f6{bottom:838.602966px;}
.y84{bottom:839.386500px;}
.ydf{bottom:841.189524px;}
.y1{bottom:841.285650px;}
.y24{bottom:841.909674px;}
.y149{bottom:846.231396px;}
.y180{bottom:846.233958px;}
.y117{bottom:846.234744px;}
.ybb{bottom:846.246012px;}
.ycb{bottom:846.266676px;}
.y1b7{bottom:849.095130px;}
.y1f5{bottom:854.083470px;}
.yde{bottom:858.469056px;}
.y23{bottom:858.829062px;}
.y76{bottom:859.907118px;}
.y148{bottom:863.510928px;}
.y17f{bottom:863.513490px;}
.y116{bottom:863.514276px;}
.y83{bottom:863.515938px;}
.yba{bottom:863.525544px;}
.yca{bottom:863.544732px;}
.y1b6{bottom:864.576966px;}
.y1f4{bottom:869.563974px;}
.ydd{bottom:875.388444px;}
.y22{bottom:876.108594px;}
.y75{bottom:877.186650px;}
.y1b5{bottom:880.057470px;}
.y147{bottom:880.790460px;}
.y17e{bottom:880.791546px;}
.y115{bottom:880.793808px;}
.y82{bottom:880.795470px;}
.yb9{bottom:880.805076px;}
.yc9{bottom:880.822788px;}
.y1f3{bottom:885.045810px;}
.ydc{bottom:892.666500px;}
.y21{bottom:893.386650px;}
.y74{bottom:895.186500px;}
.y1b4{bottom:895.537974px;}
.y146{bottom:898.069992px;}
.y17d{bottom:898.071078px;}
.y114{bottom:898.073340px;}
.y81{bottom:898.073526px;}
.yb8{bottom:898.083132px;}
.yc8{bottom:898.100844px;}
.y1f2{bottom:900.885954px;}
.y20{bottom:909.945852px;}
.ydb{bottom:910.306500px;}
.y1b3{bottom:911.019810px;}
.y145{bottom:915.349524px;}
.y17c{bottom:915.350610px;}
.y113{bottom:915.351396px;}
.y80{bottom:915.351582px;}
.y73{bottom:915.362664px;}
.yc7{bottom:915.378900px;}
.y1f1{bottom:916.366458px;}
.y1f{bottom:925.426356px;}
.y1b2{bottom:926.500314px;}
.yda{bottom:929.031396px;}
.y1f0{bottom:931.846962px;}
.y144{bottom:932.629056px;}
.y17b{bottom:932.630142px;}
.y112{bottom:932.630928px;}
.y7f{bottom:932.631114px;}
.y72{bottom:932.642196px;}
.yc6{bottom:932.656956px;}
.y1e{bottom:941.266500px;}
.y1b1{bottom:942.340458px;}
.yd9{bottom:946.310928px;}
.y1ef{bottom:947.328798px;}
.y17a{bottom:949.548054px;}
.y143{bottom:949.548444px;}
.y111{bottom:949.550316px;}
.y7e{bottom:949.550502px;}
.y71{bottom:949.560108px;}
.yc5{bottom:949.576344px;}
.y1d{bottom:957.468774px;}
.y1b0{bottom:957.820962px;}
.y1ee{bottom:962.809302px;}
.yd8{bottom:963.590460px;}
.y142{bottom:966.826500px;}
.y179{bottom:966.827586px;}
.y110{bottom:966.828372px;}
.y7d{bottom:966.830034px;}
.y70{bottom:966.838164px;}
.yc4{bottom:966.854400px;}
.y1af{bottom:973.302798px;}
.y1c{bottom:974.386686px;}
.y1ed{bottom:978.289806px;}
.yd7{bottom:980.869992px;}
.y178{bottom:984.107118px;}
.y10f{bottom:984.107904px;}
.y7c{bottom:984.109566px;}
.y6f{bottom:984.116220px;}
.yc3{bottom:984.132456px;}
.y1ae{bottom:988.783302px;}
.y1b{bottom:992.745924px;}
.y1ec{bottom:993.771642px;}
.yd6{bottom:998.149524px;}
.y177{bottom:1001.386650px;}
.y10e{bottom:1001.387436px;}
.y7b{bottom:1001.389098px;}
.y6e{bottom:1001.394276px;}
.yc2{bottom:1001.411988px;}
.y1ad{bottom:1004.263806px;}
.y1eb{bottom:1009.252146px;}
.yd5{bottom:1015.429056px;}
.y1a{bottom:1016.866500px;}
.y10d{bottom:1018.666968px;}
.y7a{bottom:1018.668630px;}
.y6d{bottom:1018.672332px;}
.y176{bottom:1018.672842px;}
.yc1{bottom:1018.691520px;}
.y1ac{bottom:1019.745642px;}
.y1ea{bottom:1024.732650px;}
.yd4{bottom:1032.348444px;}
.y1ab{bottom:1035.226146px;}
.y10c{bottom:1035.946500px;}
.y79{bottom:1035.948162px;}
.y6c{bottom:1035.950388px;}
.y175{bottom:1035.952374px;}
.yc0{bottom:1035.969576px;}
.y1e9{bottom:1040.572794px;}
.y19{bottom:1040.626650px;}
.yd3{bottom:1049.626500px;}
.y1aa{bottom:1050.706650px;}
.y78{bottom:1053.227694px;}
.y6b{bottom:1053.228444px;}
.y174{bottom:1053.231906px;}
.ybf{bottom:1053.249108px;}
.y10b{bottom:1053.256164px;}
.y1e8{bottom:1056.054630px;}
.y18{bottom:1061.506650px;}
.yd2{bottom:1067.626500px;}
.y6a{bottom:1070.506500px;}
.y77{bottom:1070.507226px;}
.y173{bottom:1070.511438px;}
.ybe{bottom:1070.528640px;}
.y10a{bottom:1070.535696px;}
.y1e7{bottom:1071.535134px;}
.y17{bottom:1082.386650px;}
.y69{bottom:1088.146500px;}
.y14{bottom:1106.866770px;}
.y68{bottom:1112.626590px;}
.y67{bottom:1125.946446px;}
.y13{bottom:1126.666950px;}
.y66{bottom:1144.666452px;}
.y12{bottom:1160.866950px;}
.y65{bottom:1162.667028px;}
.y11{bottom:1197.587100px;}
.h12{height:8.386875px;}
.h15{height:34.595859px;}
.h11{height:34.619062px;}
.h13{height:35.511328px;}
.h6{height:35.640000px;}
.hf{height:38.789297px;}
.h9{height:38.815312px;}
.ha{height:39.350391px;}
.h19{height:40.860703px;}
.hd{height:42.982734px;}
.h7{height:43.011562px;}
.h14{height:45.449180px;}
.h10{height:45.463242px;}
.h1a{height:45.813516px;}
.h17{height:46.385156px;}
.h16{height:47.176172px;}
.hb{height:47.988281px;}
.h18{height:49.246055px;}
.h5{height:52.148438px;}
.he{height:52.417969px;}
.h8{height:53.586563px;}
.hc{height:60.804844px;}
.h4{height:62.578125px;}
.h2{height:63.624355px;}
.h3{height:73.007812px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.447600px;}
.x1a{left:116.921784px;}
.x8{left:131.095728px;}
.xd{left:154.160508px;}
.x3{left:161.575500px;}
.xe{left:186.280500px;}
.x7{left:204.891000px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.xc{left:310.497000px;}
.x6{left:374.247000px;}
.x14{left:431.985072px;}
.x4{left:433.944000px;}
.x9{left:446.922000px;}
.xf{left:453.740772px;}
.x17{left:471.388296px;}
.xa{left:473.488968px;}
.x1b{left:481.959048px;}
.x10{left:536.150280px;}
.x18{left:557.542056px;}
.x11{left:562.032372px;}
.x15{left:579.679896px;}
.x16{left:643.409436px;}
.x13{left:647.602716px;}
.x12{left:681.749868px;}
.x19{left:782.752296px;}
.xb{left:786.903000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.761771pt;}
.v1{vertical-align:24.863467pt;}
.ls49{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls20{letter-spacing:0.198528pt;}
.ls33{letter-spacing:0.202752pt;}
.ls32{letter-spacing:0.206976pt;}
.ls19{letter-spacing:0.222720pt;}
.ls3{letter-spacing:0.230144pt;}
.ls43{letter-spacing:0.241408pt;}
.ls1f{letter-spacing:0.247339pt;}
.ls2e{letter-spacing:0.255744pt;}
.ls47{letter-spacing:0.260480pt;}
.ls2c{letter-spacing:0.269952pt;}
.ls45{letter-spacing:0.274688pt;}
.ls2b{letter-spacing:0.279424pt;}
.ls29{letter-spacing:0.284160pt;}
.ls30{letter-spacing:0.288896pt;}
.ls2d{letter-spacing:0.293632pt;}
.ls1e{letter-spacing:0.298368pt;}
.ls46{letter-spacing:0.303104pt;}
.ls18{letter-spacing:0.307840pt;}
.ls2f{letter-spacing:0.312576pt;}
.ls42{letter-spacing:0.314880pt;}
.ls28{letter-spacing:0.317312pt;}
.ls44{letter-spacing:0.320128pt;}
.ls34{letter-spacing:0.322048pt;}
.ls1c{letter-spacing:0.325376pt;}
.ls48{letter-spacing:0.326784pt;}
.ls14{letter-spacing:0.330624pt;}
.ls17{letter-spacing:0.331520pt;}
.ls2a{letter-spacing:0.335872pt;}
.ls1d{letter-spacing:0.336256pt;}
.ls27{letter-spacing:0.340992pt;}
.ls12{letter-spacing:0.341120pt;}
.ls26{letter-spacing:0.345728pt;}
.ls3f{letter-spacing:0.346368pt;}
.ls25{letter-spacing:0.350464pt;}
.ls41{letter-spacing:0.351616pt;}
.ls21{letter-spacing:0.355200pt;}
.ls31{letter-spacing:0.355840pt;}
.ls13{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.ls15{letter-spacing:0.362112pt;}
.ls7{letter-spacing:0.367360pt;}
.ls10{letter-spacing:0.372608pt;}
.lsa{letter-spacing:0.377856pt;}
.ls22{letter-spacing:0.378880pt;}
.ls1b{letter-spacing:0.383104pt;}
.ls24{letter-spacing:0.383616pt;}
.ls4{letter-spacing:0.388352pt;}
.ls23{letter-spacing:0.393088pt;}
.ls9{letter-spacing:0.393600pt;}
.lsc{letter-spacing:0.398848pt;}
.ls8{letter-spacing:0.404096pt;}
.lsd{letter-spacing:0.409344pt;}
.ls37{letter-spacing:0.414592pt;}
.ls38{letter-spacing:0.419840pt;}
.lsf{letter-spacing:0.425088pt;}
.lsb{letter-spacing:0.430336pt;}
.ls36{letter-spacing:0.435584pt;}
.ls11{letter-spacing:0.440832pt;}
.lse{letter-spacing:0.446080pt;}
.ls35{letter-spacing:0.451328pt;}
.ls6{letter-spacing:0.456576pt;}
.ls3e{letter-spacing:0.460800pt;}
.ls3d{letter-spacing:0.472320pt;}
.ls3b{letter-spacing:0.477568pt;}
.ls5{letter-spacing:0.524800pt;}
.ls3c{letter-spacing:0.535680pt;}
.ls3a{letter-spacing:0.541440pt;}
.ls39{letter-spacing:0.558720pt;}
.ls40{letter-spacing:0.599040pt;}
.ls16{letter-spacing:0.818688pt;}
.ws4{word-spacing:-15.114240pt;}
.ws5{word-spacing:-15.046016pt;}
.ws156{word-spacing:-13.469184pt;}
.ws153{word-spacing:-13.464448pt;}
.ws157{word-spacing:-13.454976pt;}
.ws155{word-spacing:-13.445504pt;}
.ws154{word-spacing:-13.436032pt;}
.ws2{word-spacing:-11.409067pt;}
.ws3{word-spacing:-8.896000pt;}
.ws44{word-spacing:-7.472640pt;}
.ws119{word-spacing:-0.305280pt;}
.wsb0{word-spacing:-0.247680pt;}
.ws9c{word-spacing:-0.241920pt;}
.ws62{word-spacing:-0.194176pt;}
.ws61{word-spacing:-0.189440pt;}
.ws60{word-spacing:-0.184704pt;}
.wsec{word-spacing:-0.167040pt;}
.wsb{word-spacing:-0.165760pt;}
.ws13{word-spacing:-0.162688pt;}
.ws5f{word-spacing:-0.161024pt;}
.ws4e{word-spacing:-0.157440pt;}
.wsed{word-spacing:-0.155520pt;}
.ws63{word-spacing:-0.151552pt;}
.wsa{word-spacing:-0.146944pt;}
.ws172{word-spacing:-0.146816pt;}
.ws58{word-spacing:-0.141696pt;}
.wsaf{word-spacing:-0.136448pt;}
.ws6{word-spacing:-0.132608pt;}
.ws38{word-spacing:-0.131200pt;}
.ws67{word-spacing:-0.127872pt;}
.ws1e{word-spacing:-0.125952pt;}
.ws48{word-spacing:-0.120704pt;}
.ws65{word-spacing:-0.118400pt;}
.ws5d{word-spacing:-0.115456pt;}
.ws7{word-spacing:-0.113664pt;}
.ws2e{word-spacing:-0.110208pt;}
.ws66{word-spacing:-0.108928pt;}
.ws32{word-spacing:-0.104960pt;}
.ws74{word-spacing:-0.104192pt;}
.ws9{word-spacing:-0.103936pt;}
.wse4{word-spacing:-0.099712pt;}
.ws79{word-spacing:-0.099456pt;}
.ws68{word-spacing:-0.094720pt;}
.wsf5{word-spacing:-0.094464pt;}
.ws94{word-spacing:-0.092928pt;}
.ws75{word-spacing:-0.089984pt;}
.ws43{word-spacing:-0.089216pt;}
.ws8{word-spacing:-0.089088pt;}
.ws76{word-spacing:-0.085248pt;}
.wseb{word-spacing:-0.083968pt;}
.ws45{word-spacing:-0.076032pt;}
.ws192{word-spacing:-0.075776pt;}
.ws13b{word-spacing:-0.073472pt;}
.ws46{word-spacing:-0.067584pt;}
.ws0{word-spacing:-0.064000pt;}
.ws77{word-spacing:-0.061568pt;}
.ws14d{word-spacing:-0.057728pt;}
.ws37{word-spacing:-0.047232pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.006400pt;}
.ws95{word-spacing:0.012800pt;}
.ws178{word-spacing:0.023680pt;}
.ws12b{word-spacing:0.199424pt;}
.ws9d{word-spacing:0.351616pt;}
.wsd{word-spacing:0.404096pt;}
.ws15d{word-spacing:0.416768pt;}
.wscc{word-spacing:0.461824pt;}
.ws15f{word-spacing:0.520960pt;}
.ws89{word-spacing:0.614016pt;}
.ws24{word-spacing:0.619264pt;}
.ws73{word-spacing:0.635008pt;}
.ws177{word-spacing:0.639360pt;}
.ws2a{word-spacing:0.745216pt;}
.wsc0{word-spacing:0.750464pt;}
.ws10e{word-spacing:0.760960pt;}
.wsb3{word-spacing:0.766208pt;}
.ws109{word-spacing:0.792448pt;}
.ws137{word-spacing:0.865920pt;}
.wsee{word-spacing:0.876416pt;}
.ws10c{word-spacing:0.886912pt;}
.ws16{word-spacing:0.907904pt;}
.wse3{word-spacing:0.976128pt;}
.wsf4{word-spacing:1.117824pt;}
.wsf9{word-spacing:1.138816pt;}
.wse1{word-spacing:1.222784pt;}
.ws10b{word-spacing:1.332992pt;}
.ws112{word-spacing:1.427456pt;}
.ws113{word-spacing:1.458944pt;}
.wsda{word-spacing:1.516672pt;}
.wsd4{word-spacing:1.521920pt;}
.ws174{word-spacing:1.558144pt;}
.ws104{word-spacing:1.590144pt;}
.wsdc{word-spacing:1.611136pt;}
.ws7f{word-spacing:1.705600pt;}
.ws197{word-spacing:1.714432pt;}
.ws6a{word-spacing:1.889280pt;}
.wsfb{word-spacing:1.915520pt;}
.ws3d{word-spacing:2.004736pt;}
.ws150{word-spacing:2.083456pt;}
.ws84{word-spacing:2.151680pt;}
.ws85{word-spacing:2.177920pt;}
.ws179{word-spacing:2.192768pt;}
.wsc8{word-spacing:2.340608pt;}
.ws21{word-spacing:2.377344pt;}
.wsf2{word-spacing:2.393088pt;}
.ws139{word-spacing:2.456064pt;}
.wsa7{word-spacing:2.503296pt;}
.wsde{word-spacing:2.550528pt;}
.ws16c{word-spacing:2.713728pt;}
.ws17e{word-spacing:2.761088pt;}
.wsc1{word-spacing:2.776192pt;}
.wsdf{word-spacing:2.786688pt;}
.ws9a{word-spacing:2.812928pt;}
.ws36{word-spacing:2.849664pt;}
.ws148{word-spacing:2.896896pt;}
.wse7{word-spacing:2.944128pt;}
.ws12f{word-spacing:3.112064pt;}
.wse2{word-spacing:3.222272pt;}
.ws88{word-spacing:3.227520pt;}
.ws18c{word-spacing:3.244160pt;}
.ws10{word-spacing:3.264256pt;}
.wsa4{word-spacing:3.280000pt;}
.ws99{word-spacing:3.290496pt;}
.ws161{word-spacing:3.485696pt;}
.ws141{word-spacing:3.600128pt;}
.ws59{word-spacing:3.699840pt;}
.ws26{word-spacing:3.705088pt;}
.ws83{word-spacing:3.726080pt;}
.ws7b{word-spacing:3.852032pt;}
.ws185{word-spacing:3.982976pt;}
.ws103{word-spacing:4.014720pt;}
.ws82{word-spacing:4.072448pt;}
.ws3c{word-spacing:4.145920pt;}
.wsbd{word-spacing:4.271872pt;}
.ws25{word-spacing:4.350592pt;}
.wse{word-spacing:4.392576pt;}
.ws102{word-spacing:4.439808pt;}
.ws54{word-spacing:4.497536pt;}
.ws12{word-spacing:4.775680pt;}
.ws8b{word-spacing:4.849152pt;}
.wse8{word-spacing:4.896384pt;}
.ws7c{word-spacing:4.943616pt;}
.ws86{word-spacing:4.969856pt;}
.wsbe{word-spacing:4.975104pt;}
.wsa9{word-spacing:4.980352pt;}
.ws105{word-spacing:5.221760pt;}
.wsc2{word-spacing:5.274240pt;}
.ws176{word-spacing:5.408512pt;}
.ws120{word-spacing:5.484160pt;}
.ws108{word-spacing:5.673088pt;}
.wscf{word-spacing:5.767552pt;}
.ws107{word-spacing:5.783296pt;}
.wsfd{word-spacing:5.788544pt;}
.ws1f{word-spacing:5.835776pt;}
.wsd9{word-spacing:6.134912pt;}
.ws15b{word-spacing:6.251520pt;}
.ws11d{word-spacing:6.334336pt;}
.ws7a{word-spacing:6.355328pt;}
.ws34{word-spacing:6.476032pt;}
.wsf8{word-spacing:6.518016pt;}
.ws96{word-spacing:6.628224pt;}
.wse0{word-spacing:6.654464pt;}
.ws18a{word-spacing:6.715648pt;}
.wsd8{word-spacing:6.864384pt;}
.ws135{word-spacing:7.247488pt;}
.ws2c{word-spacing:7.373440pt;}
.ws164{word-spacing:7.473408pt;}
.ws9b{word-spacing:7.478400pt;}
.wsc{word-spacing:7.635840pt;}
.ws11{word-spacing:7.641088pt;}
.ws138{word-spacing:7.667328pt;}
.wsa8{word-spacing:7.767040pt;}
.ws23{word-spacing:7.824768pt;}
.ws142{word-spacing:7.908736pt;}
.ws6d{word-spacing:7.940224pt;}
.ws147{word-spacing:7.971712pt;}
.ws167{word-spacing:8.022784pt;}
.ws117{word-spacing:8.029440pt;}
.ws98{word-spacing:8.176384pt;}
.ws114{word-spacing:8.239360pt;}
.ws40{word-spacing:8.360064pt;}
.wsf0{word-spacing:8.375808pt;}
.ws13a{word-spacing:8.407296pt;}
.wsb6{word-spacing:8.617216pt;}
.ws19b{word-spacing:8.681088pt;}
.ws12e{word-spacing:8.706432pt;}
.wsa2{word-spacing:8.748416pt;}
.wsa1{word-spacing:8.753664pt;}
.ws110{word-spacing:8.758912pt;}
.ws11f{word-spacing:8.779904pt;}
.ws90{word-spacing:9.163008pt;}
.wsf7{word-spacing:9.304704pt;}
.ws47{word-spacing:9.320448pt;}
.ws10a{word-spacing:9.330944pt;}
.wsb1{word-spacing:9.462144pt;}
.ws12a{word-spacing:9.483136pt;}
.ws5c{word-spacing:9.530368pt;}
.wsac{word-spacing:9.577600pt;}
.ws1d{word-spacing:9.740288pt;}
.ws163{word-spacing:9.836672pt;}
.ws2f{word-spacing:10.107648pt;}
.ws93{word-spacing:10.238848pt;}
.ws29{word-spacing:10.270336pt;}
.ws14a{word-spacing:10.291328pt;}
.ws12d{word-spacing:10.301824pt;}
.ws16a{word-spacing:10.348160pt;}
.ws39{word-spacing:10.433408pt;}
.ws35{word-spacing:10.485504pt;}
.wsdd{word-spacing:10.527488pt;}
.wsb5{word-spacing:10.716416pt;}
.ws16b{word-spacing:10.821760pt;}
.wsc9{word-spacing:10.826624pt;}
.ws1a{word-spacing:10.926336pt;}
.ws184{word-spacing:10.973312pt;}
.wscb{word-spacing:11.010304pt;}
.ws14f{word-spacing:11.204480pt;}
.ws69{word-spacing:11.230720pt;}
.ws14b{word-spacing:11.267456pt;}
.ws116{word-spacing:11.288448pt;}
.wsa5{word-spacing:11.330432pt;}
.ws18b{word-spacing:11.446912pt;}
.ws118{word-spacing:11.676800pt;}
.wse5{word-spacing:11.724032pt;}
.wsd5{word-spacing:11.739776pt;}
.ws5a{word-spacing:11.745024pt;}
.ws13d{word-spacing:11.766016pt;}
.ws50{word-spacing:11.797504pt;}
.wsfc{word-spacing:12.122880pt;}
.ws152{word-spacing:12.185856pt;}
.wsf{word-spacing:12.453504pt;}
.wscd{word-spacing:12.726400pt;}
.ws30{word-spacing:12.736896pt;}
.ws199{word-spacing:12.744576pt;}
.ws16d{word-spacing:12.905600pt;}
.ws17b{word-spacing:12.915072pt;}
.ws130{word-spacing:13.030784pt;}
.ws127{word-spacing:13.078016pt;}
.ws80{word-spacing:13.114752pt;}
.ws19{word-spacing:13.177728pt;}
.ws6b{word-spacing:13.209216pt;}
.ws13c{word-spacing:13.245952pt;}
.wsad{word-spacing:13.387648pt;}
.ws92{word-spacing:13.403392pt;}
.ws11e{word-spacing:13.440128pt;}
.ws111{word-spacing:13.623808pt;}
.ws18{word-spacing:13.650048pt;}
.wsd6{word-spacing:14.064640pt;}
.ws52{word-spacing:14.164352pt;}
.ws195{word-spacing:14.269568pt;}
.ws91{word-spacing:14.285056pt;}
.ws191{word-spacing:14.487424pt;}
.ws17f{word-spacing:14.672128pt;}
.ws2d{word-spacing:14.699648pt;}
.ws11b{word-spacing:14.710144pt;}
.ws7d{word-spacing:14.731136pt;}
.ws9f{word-spacing:14.752128pt;}
.ws53{word-spacing:14.794112pt;}
.ws57{word-spacing:15.229696pt;}
.ws166{word-spacing:15.230976pt;}
.ws126{word-spacing:15.271680pt;}
.wsf6{word-spacing:15.444864pt;}
.ws7e{word-spacing:15.560320pt;}
.wsb9{word-spacing:15.576064pt;}
.ws101{word-spacing:15.644288pt;}
.ws70{word-spacing:15.691520pt;}
.ws6f{word-spacing:15.927680pt;}
.ws5b{word-spacing:16.006400pt;}
.ws12c{word-spacing:16.174336pt;}
.wsa3{word-spacing:16.179584pt;}
.ws18e{word-spacing:16.230272pt;}
.ws125{word-spacing:16.284544pt;}
.ws123{word-spacing:16.305536pt;}
.wsc4{word-spacing:16.379008pt;}
.wsc3{word-spacing:16.583680pt;}
.ws15a{word-spacing:16.604416pt;}
.wsef{word-spacing:16.641408pt;}
.wsd3{word-spacing:16.678144pt;}
.ws56{word-spacing:16.819840pt;}
.wsa0{word-spacing:16.940544pt;}
.wsbc{word-spacing:16.993024pt;}
.ws106{word-spacing:17.155712pt;}
.ws121{word-spacing:17.171456pt;}
.ws9e{word-spacing:17.223936pt;}
.wsb4{word-spacing:17.502080pt;}
.ws3b{word-spacing:17.675264pt;}
.wsae{word-spacing:17.696256pt;}
.wse6{word-spacing:17.738240pt;}
.ws16f{word-spacing:17.741056pt;}
.ws193{word-spacing:17.831040pt;}
.ws1b{word-spacing:18.163328pt;}
.ws8f{word-spacing:18.310272pt;}
.ws4a{word-spacing:18.604160pt;}
.ws8a{word-spacing:18.892800pt;}
.ws134{word-spacing:19.160448pt;}
.wsd7{word-spacing:19.212928pt;}
.ws190{word-spacing:19.322880pt;}
.ws11a{word-spacing:19.359872pt;}
.ws181{word-spacing:19.450752pt;}
.ws11c{word-spacing:19.475328pt;}
.ws180{word-spacing:19.602304pt;}
.ws20{word-spacing:19.632768pt;}
.ws18f{word-spacing:19.635456pt;}
.ws173{word-spacing:19.796480pt;}
.ws8c{word-spacing:20.031616pt;}
.ws140{word-spacing:20.199552pt;}
.ws42{word-spacing:20.204800pt;}
.ws115{word-spacing:20.614144pt;}
.ws87{word-spacing:20.640384pt;}
.ws3f{word-spacing:21.081216pt;}
.ws133{word-spacing:21.154688pt;}
.ws13f{word-spacing:21.259648pt;}
.ws124{word-spacing:21.317376pt;}
.wsca{word-spacing:21.401344pt;}
.ws100{word-spacing:21.501056pt;}
.ws4f{word-spacing:21.852672pt;}
.wsb8{word-spacing:21.983872pt;}
.wsc5{word-spacing:22.288256pt;}
.ws55{word-spacing:22.414208pt;}
.ws182{word-spacing:22.543360pt;}
.ws22{word-spacing:22.629376pt;}
.ws8d{word-spacing:22.639872pt;}
.ws160{word-spacing:22.713856pt;}
.ws129{word-spacing:23.101696pt;}
.ws15c{word-spacing:23.144832pt;}
.ws158{word-spacing:23.201664pt;}
.ws6e{word-spacing:23.537280pt;}
.wsce{word-spacing:23.574016pt;}
.wsaa{word-spacing:23.600256pt;}
.ws31{word-spacing:23.605504pt;}
.wsea{word-spacing:23.610752pt;}
.wsbf{word-spacing:24.009600pt;}
.ws81{word-spacing:24.067328pt;}
.ws151{word-spacing:24.072576pt;}
.wsb7{word-spacing:24.219520pt;}
.ws128{word-spacing:24.455680pt;}
.ws19d{word-spacing:24.816640pt;}
.wsd2{word-spacing:24.859776pt;}
.wsfa{word-spacing:24.922752pt;}
.ws2b{word-spacing:25.043456pt;}
.wsf3{word-spacing:25.683712pt;}
.ws3a{word-spacing:26.171776pt;}
.ws4c{word-spacing:26.182272pt;}
.ws27{word-spacing:26.549632pt;}
.ws97{word-spacing:26.554880pt;}
.wsc7{word-spacing:26.990464pt;}
.ws143{word-spacing:27.116416pt;}
.ws149{word-spacing:27.205632pt;}
.ws194{word-spacing:27.577728pt;}
.ws51{word-spacing:28.696064pt;}
.wsb2{word-spacing:28.732800pt;}
.ws10f{word-spacing:29.530496pt;}
.ws13e{word-spacing:29.546240pt;}
.ws33{word-spacing:29.997568pt;}
.wsbb{word-spacing:30.018560pt;}
.ws170{word-spacing:30.154112pt;}
.ws28{word-spacing:30.249472pt;}
.wsf1{word-spacing:30.674560pt;}
.ws19e{word-spacing:32.233216pt;}
.ws6c{word-spacing:32.500864pt;}
.ws17{word-spacing:32.542848pt;}
.ws4b{word-spacing:32.548096pt;}
.ws17a{word-spacing:32.621568pt;}
.ws131{word-spacing:33.461248pt;}
.ws3e{word-spacing:33.944064pt;}
.ws132{word-spacing:34.673536pt;}
.wsab{word-spacing:34.841472pt;}
.ws15{word-spacing:35.465984pt;}
.ws49{word-spacing:35.560448pt;}
.ws196{word-spacing:36.263552pt;}
.ws14e{word-spacing:36.489344pt;}
.wsdb{word-spacing:36.657280pt;}
.ws136{word-spacing:36.919680pt;}
.ws122{word-spacing:37.717376pt;}
.wsba{word-spacing:39.753600pt;}
.ws14c{word-spacing:39.890048pt;}
.ws144{word-spacing:39.947776pt;}
.ws17c{word-spacing:40.132864pt;}
.ws19a{word-spacing:40.478592pt;}
.ws1c{word-spacing:40.755968pt;}
.wse9{word-spacing:41.422464pt;}
.wsfe{word-spacing:41.900032pt;}
.ws19c{word-spacing:42.103040pt;}
.ws198{word-spacing:42.121984pt;}
.ws146{word-spacing:43.385216pt;}
.wsd0{word-spacing:44.880896pt;}
.ws159{word-spacing:45.617152pt;}
.wsc6{word-spacing:46.455296pt;}
.ws71{word-spacing:48.118912pt;}
.ws4d{word-spacing:48.234368pt;}
.ws10d{word-spacing:48.454784pt;}
.ws189{word-spacing:49.083904pt;}
.ws72{word-spacing:50.328320pt;}
.ws168{word-spacing:50.798336pt;}
.ws17d{word-spacing:51.428224pt;}
.wsa6{word-spacing:53.309184pt;}
.ws175{word-spacing:56.765696pt;}
.ws145{word-spacing:57.733248pt;}
.ws15e{word-spacing:58.806912pt;}
.ws41{word-spacing:59.989888pt;}
.wsff{word-spacing:63.878656pt;}
.ws187{word-spacing:64.144384pt;}
.ws162{word-spacing:67.843200pt;}
.ws171{word-spacing:76.770560pt;}
.ws186{word-spacing:80.218368pt;}
.ws183{word-spacing:82.837376pt;}
.wsd1{word-spacing:83.395968pt;}
.ws18d{word-spacing:88.321664pt;}
.ws16e{word-spacing:106.005888pt;}
.ws8e{word-spacing:111.614464pt;}
.ws169{word-spacing:113.190400pt;}
.ws188{word-spacing:195.090048pt;}
.ws5e{word-spacing:226.584448pt;}
.ws64{word-spacing:317.430400pt;}
.ws78{word-spacing:338.216704pt;}
.ws165{word-spacing:344.558208pt;}
._22{margin-left:-338.349312pt;}
._19{margin-left:-318.415488pt;}
._1a{margin-left:-106.891520pt;}
._2f{margin-left:-59.214208pt;}
._1b{margin-left:-52.517504pt;}
._2d{margin-left:-39.932032pt;}
._2c{margin-left:-28.932224pt;}
._4{margin-left:-17.792000pt;}
._9{margin-left:-15.980800pt;}
._2b{margin-left:-14.872832pt;}
._2e{margin-left:-12.883840pt;}
._8{margin-left:-10.471275pt;}
._2{margin-left:-8.273067pt;}
._6{margin-left:-7.091200pt;}
._0{margin-left:-5.545792pt;}
._5{margin-left:-4.563200pt;}
._7{margin-left:-2.735808pt;}
._3{margin-left:-1.344000pt;}
._a{width:1.674112pt;}
._1{width:11.409067pt;}
._b{width:71.532544pt;}
._2a{width:180.654720pt;}
._d{width:183.965184pt;}
._11{width:197.315968pt;}
._27{width:199.920768pt;}
._12{width:210.827776pt;}
._1f{width:213.252608pt;}
._15{width:217.941248pt;}
._18{width:249.913984pt;}
._21{width:253.248128pt;}
._16{width:263.975168pt;}
._e{width:268.469632pt;}
._17{width:317.553536pt;}
._13{width:319.286912pt;}
._20{width:320.882944pt;}
._1c{width:324.572288pt;}
._14{width:332.599808pt;}
._10{width:335.223552pt;}
._1d{width:337.563136pt;}
._f{width:351.093888pt;}
._1e{width:352.888832pt;}
._24{width:358.344704pt;}
._c{width:359.585536pt;}
._26{width:450.530944pt;}
._29{width:676.807552pt;}
._25{width:736.836352pt;}
._28{width:771.191296pt;}
._23{width:791.186688pt;}
.fsa{font-size:10.240000pt;}
.fs9{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:42.240000pt;}
.fs1{font-size:43.530667pt;}
.fs6{font-size:47.360000pt;}
.fs5{font-size:52.480000pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:37.796000pt;}
.y16{bottom:50.441333pt;}
.y15{bottom:68.361333pt;}
.y1a9{bottom:101.961333pt;}
.y109{bottom:101.987253pt;}
.yd1{bottom:102.601333pt;}
.y141{bottom:105.170587pt;}
.y1e6{bottom:106.075515pt;}
.y172{bottom:106.766299pt;}
.y9d{bottom:110.284987pt;}
.y6{bottom:113.023333pt;}
.ya4{bottom:113.166651pt;}
.y1a8{bottom:117.333429pt;}
.y108{bottom:117.346837pt;}
.yd0{bottom:117.641333pt;}
.y1e5{bottom:119.835963pt;}
.y140{bottom:120.530171pt;}
.y171{bottom:122.125883pt;}
.y64{bottom:122.135355pt;}
.y9c{bottom:125.644571pt;}
.ya3{bottom:128.524923pt;}
.y4c{bottom:128.843061pt;}
.y1a7{bottom:132.691701pt;}
.y107{bottom:132.705109pt;}
.y1e4{bottom:133.597595pt;}
.y13f{bottom:135.889755pt;}
.y170{bottom:137.484155pt;}
.y63{bottom:137.494939pt;}
.y9b{bottom:141.004155pt;}
.ya2{bottom:143.883195pt;}
.y4b{bottom:144.201333pt;}
.y1e3{bottom:147.358043pt;}
.y1a6{bottom:148.051285pt;}
.y106{bottom:148.064693pt;}
.y13e{bottom:151.248027pt;}
.y62{bottom:152.533083pt;}
.y16f{bottom:152.843739pt;}
.y9a{bottom:156.363739pt;}
.ya1{bottom:159.241467pt;}
.y4a{bottom:159.881333pt;}
.y1e2{bottom:161.438171pt;}
.y1a5{bottom:163.410869pt;}
.y105{bottom:163.424277pt;}
.y13d{bottom:166.607611pt;}
.y61{bottom:167.892667pt;}
.y16e{bottom:168.203323pt;}
.y21d{bottom:170.121333pt;}
.y99{bottom:171.723323pt;}
.ya0{bottom:174.607099pt;}
.y1e1{bottom:175.198619pt;}
.y49{bottom:177.801467pt;}
.y1a4{bottom:178.770453pt;}
.y104{bottom:178.782549pt;}
.y13c{bottom:181.967195pt;}
.y16d{bottom:183.241467pt;}
.y60{bottom:183.252251pt;}
.y98{bottom:186.761467pt;}
.y21c{bottom:188.681333pt;}
.y1e0{bottom:188.960251pt;}
.y9f{bottom:189.965371pt;}
.y48{bottom:193.190773pt;}
.y1a3{bottom:194.130037pt;}
.y103{bottom:194.140821pt;}
.y13b{bottom:197.325467pt;}
.y5f{bottom:198.610523pt;}
.y16c{bottom:198.617019pt;}
.y1df{bottom:202.720699pt;}
.y97{bottom:202.761467pt;}
.y9e{bottom:205.324955pt;}
.y21b{bottom:207.241333pt;}
.y47{bottom:208.550357pt;}
.y1a2{bottom:209.489621pt;}
.y102{bottom:209.499093pt;}
.y13a{bottom:212.364923pt;}
.y5e{bottom:213.970107pt;}
.y16b{bottom:213.975291pt;}
.y1de{bottom:216.481147pt;}
.y96{bottom:220.041205pt;}
.y46{bottom:223.909941pt;}
.y1a1{bottom:224.847893pt;}
.y101{bottom:224.857365pt;}
.y21a{bottom:225.801333pt;}
.y139{bottom:227.723195pt;}
.y5d{bottom:229.328379pt;}
.y16a{bottom:229.333563pt;}
.y1dd{bottom:230.242779pt;}
.y95{bottom:234.121333pt;}
.y45{bottom:239.269525pt;}
.y1a0{bottom:240.207477pt;}
.y100{bottom:240.215637pt;}
.y138{bottom:243.081467pt;}
.y1dc{bottom:244.003227pt;}
.y219{bottom:244.361333pt;}
.y5c{bottom:244.686651pt;}
.y169{bottom:244.691835pt;}
.y94{bottom:245.961333pt;}
.yb7{bottom:251.401467pt;}
.y44{bottom:254.629109pt;}
.y19f{bottom:255.567061pt;}
.yff{bottom:255.575221pt;}
.y1db{bottom:257.763675pt;}
.y137{bottom:258.761467pt;}
.y5b{bottom:260.044923pt;}
.y168{bottom:260.050107pt;}
.y218{bottom:262.921333pt;}
.yb6{bottom:266.120885pt;}
.y43{bottom:269.988693pt;}
.y19e{bottom:270.925333pt;}
.yfe{bottom:270.934805pt;}
.y1da{bottom:271.844987pt;}
.y5a{bottom:275.403195pt;}
.y167{bottom:275.408379pt;}
.y136{bottom:275.415157pt;}
.yb5{bottom:279.881333pt;}
.y217{bottom:281.481333pt;}
.y42{bottom:285.348277pt;}
.y1d9{bottom:285.605435pt;}
.y19d{bottom:285.964789pt;}
.yfd{bottom:285.972949pt;}
.y59{bottom:290.761467pt;}
.y166{bottom:290.766651pt;}
.y135{bottom:290.773429pt;}
.yb4{bottom:294.281333pt;}
.y1d8{bottom:299.365883pt;}
.y216{bottom:300.041333pt;}
.y41{bottom:300.386421pt;}
.y19c{bottom:301.323061pt;}
.yfc{bottom:301.332533pt;}
.y58{bottom:305.481019pt;}
.y165{bottom:306.124923pt;}
.y134{bottom:306.133013pt;}
.yb3{bottom:308.681333pt;}
.y1d7{bottom:313.127515pt;}
.y40{bottom:315.746005pt;}
.y19b{bottom:316.681333pt;}
.yfb{bottom:316.690805pt;}
.y215{bottom:317.597115pt;}
.y57{bottom:319.241467pt;}
.y164{bottom:321.483195pt;}
.y133{bottom:321.492597pt;}
.yb2{bottom:323.081019pt;}
.y1d6{bottom:326.887963pt;}
.y3f{bottom:331.105589pt;}
.y214{bottom:331.357563pt;}
.yfa{bottom:332.049077pt;}
.y19a{bottom:332.681333pt;}
.y56{bottom:334.601333pt;}
.yb1{bottom:336.841467pt;}
.y132{bottom:336.852181pt;}
.y1d5{bottom:340.648411pt;}
.yf{bottom:344.956000pt;}
.y213{bottom:345.437691pt;}
.y3e{bottom:346.463861pt;}
.yf9{bottom:347.407349pt;}
.y199{bottom:350.622267pt;}
.yb0{bottom:351.561019pt;}
.y131{bottom:351.890325pt;}
.y163{bottom:352.201333pt;}
.y1d4{bottom:354.410043pt;}
.y212{bottom:359.198139pt;}
.y3d{bottom:361.822133pt;}
.yf8{bottom:362.765621pt;}
.ye{bottom:364.156000pt;}
.yaf{bottom:365.321467pt;}
.y198{bottom:365.980539pt;}
.y130{bottom:367.249909pt;}
.y1d3{bottom:368.170491pt;}
.y162{bottom:368.854741pt;}
.y211{bottom:372.959771pt;}
.y3c{bottom:377.180405pt;}
.yf7{bottom:378.123893pt;}
.yae{bottom:379.721333pt;}
.y197{bottom:381.338811pt;}
.y1d2{bottom:382.250619pt;}
.y12f{bottom:382.609493pt;}
.yd{bottom:383.356000pt;}
.y161{bottom:384.213013pt;}
.y210{bottom:386.720219pt;}
.y3b{bottom:392.538677pt;}
.yf6{bottom:393.483477pt;}
.yad{bottom:394.120885pt;}
.y1d1{bottom:396.011067pt;}
.y196{bottom:396.378267pt;}
.y12e{bottom:397.969077pt;}
.y160{bottom:399.572597pt;}
.y20f{bottom:400.480667pt;}
.ycf{bottom:406.601333pt;}
.yac{bottom:407.881333pt;}
.y3a{bottom:407.898261pt;}
.yf5{bottom:408.843061pt;}
.y1d0{bottom:409.772699pt;}
.y195{bottom:411.737851pt;}
.y12d{bottom:413.328661pt;}
.y20e{bottom:414.242299pt;}
.y15f{bottom:414.932181pt;}
.yce{bottom:421.678645pt;}
.yab{bottom:422.600885pt;}
.y39{bottom:423.257845pt;}
.y1cf{bottom:423.533147pt;}
.yf4{bottom:424.201333pt;}
.y194{bottom:427.096123pt;}
.y20d{bottom:428.002747pt;}
.y12c{bottom:428.688245pt;}
.y15e{bottom:430.290453pt;}
.yaa{bottom:436.361333pt;}
.yc{bottom:436.604000pt;}
.y1ce{bottom:437.293595pt;}
.y38{bottom:438.617429pt;}
.yf3{bottom:439.561467pt;}
.y20c{bottom:441.763195pt;}
.y193{bottom:442.455707pt;}
.y12b{bottom:444.047829pt;}
.y15d{bottom:445.650037pt;}
.ya9{bottom:450.761333pt;}
.y1cd{bottom:451.055227pt;}
.y37{bottom:453.975701pt;}
.y20b{bottom:455.524827pt;}
.yb{bottom:455.804000pt;}
.yf2{bottom:456.215989pt;}
.y192{bottom:457.815291pt;}
.y12a{bottom:459.407413pt;}
.y15c{bottom:461.009621pt;}
.y1cc{bottom:464.815675pt;}
.ya8{bottom:465.160885pt;}
.y36{bottom:469.015157pt;}
.y20a{bottom:469.604955pt;}
.yf1{bottom:471.575573pt;}
.y191{bottom:473.174875pt;}
.y129{bottom:474.766997pt;}
.ya{bottom:475.004000pt;}
.y15b{bottom:476.367893pt;}
.y1cb{bottom:478.576123pt;}
.ya7{bottom:478.921333pt;}
.y209{bottom:483.365403pt;}
.y35{bottom:484.373429pt;}
.yf0{bottom:486.935157pt;}
.y55{bottom:487.568789pt;}
.y190{bottom:488.533147pt;}
.y128{bottom:490.126581pt;}
.y15a{bottom:491.407349pt;}
.y1ca{bottom:492.337755pt;}
.ya6{bottom:493.321339pt;}
.y9{bottom:494.204000pt;}
.y208{bottom:497.125851pt;}
.y34{bottom:499.731701pt;}
.yef{bottom:502.293429pt;}
.y54{bottom:502.928373pt;}
.y18f{bottom:503.892731pt;}
.y127{bottom:505.486165pt;}
.y1c9{bottom:506.417883pt;}
.y159{bottom:506.765621pt;}
.ya5{bottom:507.401467pt;}
.y207{bottom:510.887483pt;}
.y8{bottom:513.404000pt;}
.y33{bottom:515.089973pt;}
.yee{bottom:517.653013pt;}
.y53{bottom:518.286645pt;}
.y18e{bottom:519.252315pt;}
.y1c8{bottom:520.178331pt;}
.y126{bottom:520.845749pt;}
.y158{bottom:522.123893pt;}
.y93{bottom:522.761307pt;}
.y206{bottom:524.647931pt;}
.y32{bottom:530.448245pt;}
.y7{bottom:532.604000pt;}
.yed{bottom:533.012597pt;}
.y52{bottom:533.646229pt;}
.y1c7{bottom:533.939963pt;}
.y18d{bottom:534.610587pt;}
.y125{bottom:535.883893pt;}
.y157{bottom:537.483477pt;}
.y205{bottom:538.409563pt;}
.y92{bottom:540.361467pt;}
.y31{bottom:545.806517pt;}
.y1c6{bottom:547.700411pt;}
.yec{bottom:548.370869pt;}
.y51{bottom:549.005813pt;}
.y18c{bottom:549.970171pt;}
.y124{bottom:551.243477pt;}
.y204{bottom:552.170011pt;}
.y156{bottom:552.843061pt;}
.y91{bottom:558.601333pt;}
.y30{bottom:561.164789pt;}
.y1c5{bottom:561.460859pt;}
.yeb{bottom:563.730453pt;}
.y50{bottom:564.364085pt;}
.y18b{bottom:565.009627pt;}
.y203{bottom:565.930459pt;}
.y123{bottom:566.603061pt;}
.y155{bottom:568.201333pt;}
.y90{bottom:572.361467pt;}
.y1c4{bottom:575.222491pt;}
.y2f{bottom:576.523061pt;}
.yea{bottom:579.090037pt;}
.y4f{bottom:579.403541pt;}
.y202{bottom:580.010587pt;}
.y18a{bottom:580.367899pt;}
.y122{bottom:581.961333pt;}
.y154{bottom:583.573013pt;}
.y8f{bottom:587.081333pt;}
.y1c3{bottom:588.982939pt;}
.y2e{bottom:591.881333pt;}
.y201{bottom:593.735515pt;}
.ye9{bottom:594.128181pt;}
.y4e{bottom:594.763125pt;}
.y189{bottom:595.727483pt;}
.y121{bottom:597.641333pt;}
.y153{bottom:598.932597pt;}
.y8e{bottom:601.481467pt;}
.y1c2{bottom:602.743387pt;}
.y200{bottom:607.497147pt;}
.y2d{bottom:607.561467pt;}
.ye8{bottom:609.487765pt;}
.y4d{bottom:610.121397pt;}
.y188{bottom:611.087067pt;}
.y5{bottom:612.970800pt;}
.y152{bottom:614.290869pt;}
.y120{bottom:614.297781pt;}
.y8d{bottom:615.881333pt;}
.y1c1{bottom:616.823515pt;}
.y1ff{bottom:621.257595pt;}
.ye7{bottom:624.847349pt;}
.y2c{bottom:625.492731pt;}
.y187{bottom:626.445339pt;}
.y151{bottom:629.650453pt;}
.y11f{bottom:629.656053pt;}
.y8c{bottom:630.281467pt;}
.y1c0{bottom:630.585147pt;}
.y1fe{bottom:635.018043pt;}
.y4{bottom:639.638000pt;}
.ye6{bottom:640.206933pt;}
.y2b{bottom:640.851003pt;}
.y186{bottom:641.804923pt;}
.y1bf{bottom:644.345595pt;}
.y8b{bottom:644.681333pt;}
.y150{bottom:645.010037pt;}
.y11e{bottom:645.014325pt;}
.y1fd{bottom:648.779675pt;}
.ye5{bottom:655.566517pt;}
.y2a{bottom:656.210587pt;}
.y185{bottom:657.163195pt;}
.y1be{bottom:658.106043pt;}
.y8a{bottom:659.401467pt;}
.y14f{bottom:660.368309pt;}
.y11d{bottom:660.372597pt;}
.y1fc{bottom:662.540123pt;}
.ye4{bottom:670.926101pt;}
.y29{bottom:671.568859pt;}
.y1bd{bottom:671.867675pt;}
.y184{bottom:672.521467pt;}
.y89{bottom:673.801333pt;}
.y14e{bottom:675.407765pt;}
.y11c{bottom:675.412053pt;}
.y1fb{bottom:676.300571pt;}
.y1bc{bottom:685.628123pt;}
.ye3{bottom:686.285685pt;}
.y28{bottom:686.927131pt;}
.y88{bottom:688.201333pt;}
.y1fa{bottom:690.381883pt;}
.y14d{bottom:690.767349pt;}
.y11b{bottom:690.771637pt;}
.y3{bottom:694.475067pt;}
.y1bb{bottom:699.388571pt;}
.ye2{bottom:701.645269pt;}
.y27{bottom:702.286715pt;}
.y87{bottom:702.601333pt;}
.y1f9{bottom:704.142331pt;}
.y14c{bottom:706.126933pt;}
.y11a{bottom:706.129909pt;}
.y183{bottom:706.130523pt;}
.ycd{bottom:706.158293pt;}
.y1ba{bottom:713.150203pt;}
.y86{bottom:717.001333pt;}
.ye1{bottom:717.004853pt;}
.y26{bottom:717.646299pt;}
.y1f8{bottom:717.902779pt;}
.y2{bottom:721.142267pt;}
.y14b{bottom:721.486517pt;}
.y119{bottom:721.489493pt;}
.y182{bottom:721.490107pt;}
.ybd{bottom:721.500821pt;}
.y1b9{bottom:727.230331pt;}
.y1f7{bottom:731.663227pt;}
.y85{bottom:731.721525pt;}
.ye0{bottom:732.364437pt;}
.y25{bottom:733.005883pt;}
.y14a{bottom:736.846101pt;}
.y181{bottom:736.848379pt;}
.y118{bottom:736.849077pt;}
.ybc{bottom:736.859093pt;}
.ycc{bottom:736.878773pt;}
.y1b8{bottom:740.990779pt;}
.y1f6{bottom:745.424859pt;}
.y84{bottom:746.121333pt;}
.ydf{bottom:747.724021pt;}
.y1{bottom:747.809467pt;}
.y24{bottom:748.364155pt;}
.y149{bottom:752.205685pt;}
.y180{bottom:752.207963pt;}
.y117{bottom:752.208661pt;}
.ybb{bottom:752.218677pt;}
.ycb{bottom:752.237045pt;}
.y1b7{bottom:754.751227pt;}
.y1f5{bottom:759.185307pt;}
.yde{bottom:763.083605pt;}
.y23{bottom:763.403611pt;}
.y76{bottom:764.361883pt;}
.y148{bottom:767.565269pt;}
.y17f{bottom:767.567547pt;}
.y116{bottom:767.568245pt;}
.y83{bottom:767.569723pt;}
.yba{bottom:767.578261pt;}
.yca{bottom:767.595317pt;}
.y1b6{bottom:768.512859pt;}
.y1f4{bottom:772.945755pt;}
.ydd{bottom:778.123061pt;}
.y22{bottom:778.763195pt;}
.y75{bottom:779.721467pt;}
.y1b5{bottom:782.273307pt;}
.y147{bottom:782.924853pt;}
.y17e{bottom:782.925819pt;}
.y115{bottom:782.927829pt;}
.y82{bottom:782.929307pt;}
.yb9{bottom:782.937845pt;}
.yc9{bottom:782.953589pt;}
.y1f3{bottom:786.707387pt;}
.ydc{bottom:793.481333pt;}
.y21{bottom:794.121467pt;}
.y74{bottom:795.721333pt;}
.y1b4{bottom:796.033755pt;}
.y146{bottom:798.284437pt;}
.y17d{bottom:798.285403pt;}
.y114{bottom:798.287413pt;}
.y81{bottom:798.287579pt;}
.yb8{bottom:798.296117pt;}
.yc8{bottom:798.311861pt;}
.y1f2{bottom:800.787515pt;}
.y20{bottom:808.840757pt;}
.ydb{bottom:809.161333pt;}
.y1b3{bottom:809.795387pt;}
.y145{bottom:813.644021pt;}
.y17c{bottom:813.644987pt;}
.y113{bottom:813.645685pt;}
.y80{bottom:813.645851pt;}
.y73{bottom:813.655701pt;}
.yc7{bottom:813.670133pt;}
.y1f1{bottom:814.547963pt;}
.y1f{bottom:822.601205pt;}
.y1b2{bottom:823.555835pt;}
.yda{bottom:825.805685pt;}
.y1f0{bottom:828.308411pt;}
.y144{bottom:829.003605pt;}
.y17b{bottom:829.004571pt;}
.y112{bottom:829.005269pt;}
.y7f{bottom:829.005435pt;}
.y72{bottom:829.015285pt;}
.yc6{bottom:829.028405pt;}
.y1e{bottom:836.681333pt;}
.y1b1{bottom:837.635963pt;}
.yd9{bottom:841.165269pt;}
.y1ef{bottom:842.070043pt;}
.y17a{bottom:844.042715pt;}
.y143{bottom:844.043061pt;}
.y111{bottom:844.044725pt;}
.y7e{bottom:844.044891pt;}
.y71{bottom:844.053429pt;}
.yc5{bottom:844.067861pt;}
.y1d{bottom:851.083355pt;}
.y1b0{bottom:851.396411pt;}
.y1ee{bottom:855.830491pt;}
.yd8{bottom:856.524853pt;}
.y142{bottom:859.401333pt;}
.y179{bottom:859.402299pt;}
.y110{bottom:859.402997pt;}
.y7d{bottom:859.404475pt;}
.y70{bottom:859.411701pt;}
.yc4{bottom:859.426133pt;}
.y1af{bottom:865.158043pt;}
.y1c{bottom:866.121499pt;}
.y1ed{bottom:869.590939pt;}
.yd7{bottom:871.884437pt;}
.y178{bottom:874.761883pt;}
.y10f{bottom:874.762581pt;}
.y7c{bottom:874.764059pt;}
.y6f{bottom:874.769973pt;}
.yc3{bottom:874.784405pt;}
.y1ae{bottom:878.918491pt;}
.y1b{bottom:882.440821pt;}
.y1ec{bottom:883.352571pt;}
.yd6{bottom:887.244021pt;}
.y177{bottom:890.121467pt;}
.y10e{bottom:890.122165pt;}
.y7b{bottom:890.123643pt;}
.y6e{bottom:890.128245pt;}
.yc2{bottom:890.143989pt;}
.y1ad{bottom:892.678939pt;}
.y1eb{bottom:897.113019pt;}
.yd5{bottom:902.603605pt;}
.y1a{bottom:903.881333pt;}
.y10d{bottom:905.481749pt;}
.y7a{bottom:905.483227pt;}
.y6d{bottom:905.486517pt;}
.y176{bottom:905.486971pt;}
.yc1{bottom:905.503573pt;}
.y1ac{bottom:906.440571pt;}
.y1ea{bottom:910.873467pt;}
.yd4{bottom:917.643061pt;}
.y1ab{bottom:920.201019pt;}
.y10c{bottom:920.841333pt;}
.y79{bottom:920.842811pt;}
.y6c{bottom:920.844789pt;}
.y175{bottom:920.846555pt;}
.yc0{bottom:920.861845pt;}
.y1e9{bottom:924.953595pt;}
.y19{bottom:925.001467pt;}
.yd3{bottom:933.001333pt;}
.y1aa{bottom:933.961467pt;}
.y78{bottom:936.202395pt;}
.y6b{bottom:936.203061pt;}
.y174{bottom:936.206139pt;}
.ybf{bottom:936.221429pt;}
.y10b{bottom:936.227701pt;}
.y1e8{bottom:938.715227pt;}
.y18{bottom:943.561467pt;}
.yd2{bottom:949.001333pt;}
.y6a{bottom:951.561333pt;}
.y77{bottom:951.561979pt;}
.y173{bottom:951.565723pt;}
.ybe{bottom:951.581013pt;}
.y10a{bottom:951.587285pt;}
.y1e7{bottom:952.475675pt;}
.y17{bottom:962.121467pt;}
.y69{bottom:967.241333pt;}
.y14{bottom:983.881573pt;}
.y68{bottom:989.001413pt;}
.y67{bottom:1000.841285pt;}
.y13{bottom:1001.481733pt;}
.y66{bottom:1017.481291pt;}
.y12{bottom:1031.881733pt;}
.y65{bottom:1033.481803pt;}
.y11{bottom:1064.521867pt;}
.h12{height:7.455000pt;}
.h15{height:30.751875pt;}
.h11{height:30.772500pt;}
.h13{height:31.565625pt;}
.h6{height:31.680000pt;}
.hf{height:34.479375pt;}
.h9{height:34.502500pt;}
.ha{height:34.978125pt;}
.h19{height:36.320625pt;}
.hd{height:38.206875pt;}
.h7{height:38.232500pt;}
.h14{height:40.399271pt;}
.h10{height:40.411771pt;}
.h1a{height:40.723125pt;}
.h17{height:41.231250pt;}
.h16{height:41.934375pt;}
.hb{height:42.656250pt;}
.h18{height:43.774271pt;}
.h5{height:46.354167pt;}
.he{height:46.593750pt;}
.h8{height:47.632500pt;}
.hc{height:54.048750pt;}
.h4{height:55.625000pt;}
.h2{height:56.554982pt;}
.h3{height:64.895833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.397867pt;}
.x1a{left:103.930475pt;}
.x8{left:116.529536pt;}
.xd{left:137.031563pt;}
.x3{left:143.622667pt;}
.xe{left:165.582667pt;}
.x7{left:182.125333pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.xc{left:275.997333pt;}
.x6{left:332.664000pt;}
.x14{left:383.986731pt;}
.x4{left:385.728000pt;}
.x9{left:397.264000pt;}
.xf{left:403.325131pt;}
.x17{left:419.011819pt;}
.xa{left:420.879083pt;}
.x1b{left:428.408043pt;}
.x10{left:476.578027pt;}
.x18{left:495.592939pt;}
.x11{left:499.584331pt;}
.x15{left:515.271019pt;}
.x16{left:571.919499pt;}
.x13{left:575.646859pt;}
.x12{left:605.999883pt;}
.x19{left:695.779819pt;}
.xb{left:699.469333pt;}
}


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